diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2018-11-19 12:52:56 +1300 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2019-02-07 09:31:18 +1300 |
commit | 652dd8bfc827685a5f5a02889c19dd8db790307c (patch) | |
tree | 9912a21521690f596dbfff0e5a515a2458634f34 | |
parent | 945b85af7ed04a6147455d0a2b6c129828bfee84 (diff) | |
download | gnome-control-center-652dd8bfc827685a5f5a02889c19dd8db790307c.tar.gz |
sound: Remove old panel
This has been replaced with a new implementation that uses the new designs.
94 files changed, 0 insertions, 35641 deletions
diff --git a/panels/meson.build b/panels/meson.build index 3b4c220b7..5f95fc756 100644 --- a/panels/meson.build +++ b/panels/meson.build @@ -17,7 +17,6 @@ panels = [ 'region', 'search', 'sharing', - 'sound', 'sound-new', 'universal-access', 'user-accounts' diff --git a/panels/sound/cc-sound-panel.c b/panels/sound/cc-sound-panel.c deleted file mode 100644 index 3c566a77b..000000000 --- a/panels/sound/cc-sound-panel.c +++ /dev/null @@ -1,121 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - */ - -#include "config.h" - -#include <libintl.h> -#include <stdlib.h> -#include <string.h> -#include <unistd.h> -#include <errno.h> - -#include <glib/gi18n-lib.h> -#include <glib.h> -#include <gtk/gtk.h> -#include <pulse/pulseaudio.h> - -#include "cc-sound-panel.h" -#include "gvc-mixer-dialog.h" - -struct _CcSoundPanel { - CcPanel parent_instance; - - GvcMixerControl *control; - GvcMixerDialog *dialog; - GtkWidget *connecting_label; -}; - -CC_PANEL_REGISTER (CcSoundPanel, cc_sound_panel) - -enum { - PROP_0, - PROP_PARAMETERS -}; - -static void cc_sound_panel_finalize (GObject *object); - -static void -cc_sound_panel_set_property (GObject *object, - guint property_id, - const GValue *value, - GParamSpec *pspec) -{ - CcSoundPanel *self = CC_SOUND_PANEL (object); - - switch (property_id) { - case PROP_PARAMETERS: { - GVariant *parameters; - - parameters = g_value_get_variant (value); - if (parameters && g_variant_n_children (parameters) > 0) { - g_autoptr(GVariant) v = NULL; - g_variant_get_child (parameters, 0, "v", &v); - gvc_mixer_dialog_set_page (self->dialog, g_variant_get_string (v, NULL)); - } - break; - } - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); - } -} - -static const char * -cc_sound_panel_get_help_uri (CcPanel *panel) -{ - return "help:gnome-help/media#sound"; -} - -static void -cc_sound_panel_class_init (CcSoundPanelClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - CcPanelClass *panel_class = CC_PANEL_CLASS (klass); - - panel_class->get_help_uri = cc_sound_panel_get_help_uri; - - object_class->finalize = cc_sound_panel_finalize; - object_class->set_property = cc_sound_panel_set_property; - - g_object_class_override_property (object_class, PROP_PARAMETERS, "parameters"); -} - -static void -cc_sound_panel_finalize (GObject *object) -{ - CcSoundPanel *panel = CC_SOUND_PANEL (object); - - panel->dialog = NULL; - panel->connecting_label = NULL; - g_clear_object (&panel->control); - - G_OBJECT_CLASS (cc_sound_panel_parent_class)->finalize (object); -} - -static void -cc_sound_panel_init (CcSoundPanel *self) -{ - gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), - ICON_DATA_DIR); - gtk_window_set_default_icon_name ("multimedia-volume-control"); - - self->control = gvc_mixer_control_new ("GNOME Volume Control Dialog"); - gvc_mixer_control_open (self->control); - self->dialog = gvc_mixer_dialog_new (self->control); - gtk_container_add (GTK_CONTAINER (self), GTK_WIDGET (self->dialog)); - gtk_widget_show (GTK_WIDGET (self->dialog)); -} diff --git a/panels/sound/cc-sound-panel.h b/panels/sound/cc-sound-panel.h deleted file mode 100644 index dd72ef9e8..000000000 --- a/panels/sound/cc-sound-panel.h +++ /dev/null @@ -1,34 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2010 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - */ - -#ifndef _CC_SOUND_PANEL_H -#define _CC_SOUND_PANEL_H - -#include <shell/cc-panel.h> -#include "gvc-mixer-control.h" -#include "gvc-mixer-dialog.h" - -G_BEGIN_DECLS - -#define CC_TYPE_SOUND_PANEL (cc_sound_panel_get_type ()) -G_DECLARE_FINAL_TYPE (CcSoundPanel, cc_sound_panel, CC, SOUND_PANEL, CcPanel) - -G_END_DECLS - -#endif /* _CC_SOUND_PANEL_H */ - diff --git a/panels/sound/data/gnome-sound-panel.desktop.in.in b/panels/sound/data/gnome-sound-panel.desktop.in.in deleted file mode 100644 index 1d782a171..000000000 --- a/panels/sound/data/gnome-sound-panel.desktop.in.in +++ /dev/null @@ -1,19 +0,0 @@ -[Desktop Entry] -Name=Sound -Comment=Change sound levels, inputs, outputs, and alert sounds -Exec=gnome-control-center sound -# Translators: Do NOT translate or transliterate this text (this is an icon file name)! -Icon=multimedia-volume-control -Terminal=false -Type=Application -NoDisplay=true -StartupNotify=true -Categories=GNOME;GTK;Settings;HardwareSettings;X-GNOME-Settings-Panel; -OnlyShowIn=GNOME;Unity; -X-GNOME-Bugzilla-Bugzilla=GNOME -X-GNOME-Bugzilla-Product=gnome-control-center -X-GNOME-Bugzilla-Component=sound -X-GNOME-Bugzilla-Version=@VERSION@ -X-GNOME-Settings-Panel=sound -# Translators: Search terms to find the Sound panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -Keywords=Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio; diff --git a/panels/sound/data/icons/16x16/apps/multimedia-volume-control.png b/panels/sound/data/icons/16x16/apps/multimedia-volume-control.png Binary files differdeleted file mode 100644 index 13b4b7f9a..000000000 --- a/panels/sound/data/icons/16x16/apps/multimedia-volume-control.png +++ /dev/null diff --git a/panels/sound/data/icons/16x16/apps/multimedia-volume-control.svg b/panels/sound/data/icons/16x16/apps/multimedia-volume-control.svg deleted file mode 100644 index f8014bfa7..000000000 --- a/panels/sound/data/icons/16x16/apps/multimedia-volume-control.svg +++ /dev/null @@ -1,585 +0,0 @@ -<?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://web.resource.org/cc/" - 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" - width="16" - height="16" - id="svg2" - inkscape:label="PozadÃ" - sodipodi:version="0.32" - inkscape:version="0.45" - version="1.0" - sodipodi:docbase="C:\Documents and Settings\nevim\Plocha\gnome-sound-properties\16x16" - sodipodi:docname="gnome-sound-properties.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="C:\Documents and Settings\nevim\Plocha\gnome-sound-properties\16x16\gnome-sound-properties.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:modified="TRUE"> - <defs - id="defs3"> - <linearGradient - inkscape:collect="always" - id="linearGradient3973"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop3975" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop3977" /> - </linearGradient> - <linearGradient - id="linearGradient6304" - inkscape:collect="always"> - <stop - id="stop6306" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1" /> - <stop - id="stop6308" - offset="1" - style="stop-color:#80827d;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6296"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6298" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6300" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6117"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop6119" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop6121" /> - </linearGradient> - <linearGradient - id="linearGradient6105"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop6107" /> - <stop - id="stop6113" - offset="0.45209709" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6109" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6091"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop6093" /> - <stop - style="stop-color:#81837e;stop-opacity:0.98648649" - offset="1" - id="stop6095" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6077"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop6079" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop6081" /> - </linearGradient> - <linearGradient - id="linearGradient6041" - inkscape:collect="always"> - <stop - id="stop6043" - offset="0" - style="stop-color:#729fcf;stop-opacity:1" /> - <stop - id="stop6045" - offset="1" - style="stop-color:#235195;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6017"> - <stop - style="stop-color:#729fcf;stop-opacity:1" - offset="0" - id="stop6019" /> - <stop - style="stop-color:#3465a4;stop-opacity:1" - offset="1" - id="stop6021" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6003"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop6005" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="1" - id="stop6007" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5995"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop5997" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop5999" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5995" - id="linearGradient6001" - x1="28.203571" - y1="25.09193" - x2="21.583036" - y2="35.983383" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6003" - id="linearGradient6009" - x1="15.741923" - y1="33.116215" - x2="36.696983" - y2="22.224764" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6041" - id="radialGradient6033" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6017" - id="radialGradient6037" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2463993,0,0,1.3258525,-7.2755971,-10.235034)" - cx="23.597727" - cy="19.792301" - fx="23.597727" - fy="19.792301" - r="19.736389" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6077" - id="radialGradient6049" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2463993,0,0,1.3258525,-7.2755971,-10.235034)" - cx="32.09296" - cy="33.488297" - fx="32.09296" - fy="33.488297" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6091" - id="linearGradient6097" - x1="10.602306" - y1="35.894798" - x2="47.001671" - y2="35.690231" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6105" - id="linearGradient6111" - x1="15.551565" - y1="41" - x2="23.73423" - y2="41" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3364103,0,0,0.3372732,-0.6774362,0.1274337)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6117" - id="radialGradient6123" - cx="26.927441" - cy="25.766438" - fx="26.927441" - fy="25.766438" - r="19.161766" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6304" - id="radialGradient6290" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.1930651,0,0,9.3410036e-2,2.1701348,6.6135966)" - cx="17.831682" - cy="18.914896" - fx="17.831682" - fy="18.914896" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6296" - id="linearGradient6302" - x1="34.825703" - y1="42.345951" - x2="28.763092" - y2="32.737347" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3541113,0,0,0.3635233,-0.7432896,-1.8035221)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6117" - id="radialGradient5028" - gradientUnits="userSpaceOnUse" - cx="26.927441" - cy="25.766438" - fx="26.927441" - fy="25.766438" - r="19.161766" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6091" - id="linearGradient5030" - gradientUnits="userSpaceOnUse" - x1="10.602306" - y1="35.894798" - x2="47.001671" - y2="35.690231" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6105" - id="linearGradient5032" - gradientUnits="userSpaceOnUse" - x1="15.551565" - y1="41" - x2="23.73423" - y2="41" - gradientTransform="translate(-60,0)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6041" - id="radialGradient5034" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6296" - id="linearGradient5036" - gradientUnits="userSpaceOnUse" - x1="34.825703" - y1="42.345951" - x2="28.763092" - y2="32.737347" - gradientTransform="translate(-60,0)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6304" - id="radialGradient5038" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4228001,0,0,0.3113668,-47.60226,19.545318)" - cx="17.831682" - cy="18.914896" - fx="17.831682" - fy="18.914896" - r="19.736389" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3973" - id="radialGradient6066" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="32.217553" - inkscape:cx="12.505516" - inkscape:cy="11.160076" - inkscape:document-units="px" - inkscape:current-layer="g6029" - width="16px" - height="16px" - inkscape:showpageshadow="false" - showgrid="true" - inkscape:window-width="973" - inkscape:window-height="849" - inkscape:window-x="150" - inkscape:window-y="57" - showborder="true" /> - <metadata - id="metadata6"> - <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>Sound CC applet</dc:title> - <dc:date>17.02.2007</dc:date> - <dc:creator> - <cc:Agent> - <dc:title>Josef vybÃral</dc:title> - </cc:Agent> - </dc:creator> - <dc:rights> - <cc:Agent> - <dc:title>Josef vybÃral</dc:title> - </cc:Agent> - </dc:rights> - <dc:identifier>http://blog.vybiral.info</dc:identifier> - <dc:source>http://blog.vybiral.info</dc:source> - <dc:coverage>sound, reproductor, note</dc:coverage> - <cc:license - rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> - </cc:Work> - <cc:License - rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> - <cc:permits - rdf:resource="http://web.resource.org/cc/Reproduction" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/Distribution" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/Notice" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/ShareAlike" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/SourceCode" /> - </cc:License> - </rdf:RDF> - </metadata> - <g - inkscape:label="Repros" - inkscape:groupmode="layer" - id="layer1" - style="display:inline"> - <path - transform="matrix(0.208749,0,0,0.1304682,1.8789228,9.6383004)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6051" - style="opacity:1;color:#000000;fill:url(#linearGradient6097);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:6.05948067;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:7.82422543;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6099" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.1565028,0,0,0.1043745,3.2846495,9.8106402)" /> - <path - style="opacity:0.56768559;fill:url(#linearGradient6111);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 4.2234611,13.618367 C 4.2234611,13.618367 5.0415386,14.96746 7.396411,14.96746 L 7.396411,12.943819 L 4.2311244,12.943819 L 4.2234611,13.618367 z" - id="path6103" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:2.95696092;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6011" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.3652519,0,0,0.3131236,-2.3364281,-0.5680786)" /> - <path - transform="matrix(0.3652519,0,0,0.28597,-2.3364279,-0.3887379)" - d="M 46.089207 25.766438 A 19.161766 19.161766 0 1 1 7.7656746,25.766438 A 19.161766 19.161766 0 1 1 46.089207 25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6013" - style="opacity:1;color:#000000;fill:url(#radialGradient6066);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:3.09416509;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.5753541;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.27477477;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6015" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.3131236,0,0,0.2498308,-0.9316158,0.8499497)" /> - <path - style="fill:url(#linearGradient6302);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 5.288702,12.37359 C 7.1369466,13.339783 12.937407,12.9293 14.003827,8.0640329 C 14.003827,8.0640329 11.452841,13.318809 5.288702,12.37359 z" - id="path6039" - sodipodi:nodetypes="csc" /> - <path - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.26576574;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 11.5,9.2396488 C 11.5,10.189213 9.9869494,11.092769 8.339297,11.092769 C 6.6916436,11.092769 5.6570637,10.322106 5.6570637,9.3725413 C 5.6570637,8.4229746 6.9942902,7.2700418 8.6419435,7.2700418 C 10.289597,7.2700418 11.5,8.2900852 11.5,9.2396488 z" - id="path6055" - sodipodi:nodetypes="csssc" /> - <path - style="color:#000000;fill:url(#radialGradient6290);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 10.436247,9.150001 C 10.436247,9.8952003 9.1065272,10.500001 7.4681246,10.500001 C 5.8297202,10.500001 4.5000003,9.8952003 4.5000003,9.150001 C 4.5000003,8.4048002 5.8297202,7.5000007 7.4681246,7.5000007 C 9.1065272,7.5000007 10.436247,8.4048002 10.436247,9.150001 z" - id="path6047" - sodipodi:nodetypes="csssc" /> - <g - id="g6029" - transform="matrix(0.4907271,0,0,0.4910531,3.9572021e-2,0.6295285)"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ce5c00;stroke-width:6.1113472;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 29.479615,9.1193715 L 29.479615,1.8976116" - id="path5052" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - id="path6023" - d="M 17.240597,8.1228714 L 17.240597,2.9873851" - style="fill:none;fill-rule:evenodd;stroke:#ce5c00;stroke-width:6.11134768;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:6.11134768;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 17.232473,1.8009824 L 29.459229,1.7943871" - id="path6025" - sodipodi:nodetypes="cc" /> - <path - transform="matrix(1.0394076,0,0,1.0793564,-17.878825,-8.7313604)" - d="M 35.740638 17.284103 A 3.9210651 1.8830575 0 1 1 27.898507,17.284103 A 3.9210651 1.8830575 0 1 1 35.740638 17.284103 z" - sodipodi:ry="1.8830575" - sodipodi:rx="3.9210651" - sodipodi:cy="17.284103" - sodipodi:cx="31.819572" - id="path6125" - style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.92327011;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.92326987;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6127" - sodipodi:cx="31.819572" - sodipodi:cy="17.284103" - sodipodi:rx="3.9210651" - sodipodi:ry="1.8830575" - d="M 35.740638 17.284103 A 3.9210651 1.8830575 0 1 1 27.898507,17.284103 A 3.9210651 1.8830575 0 1 1 35.740638 17.284103 z" - transform="matrix(1.0394077,0,0,1.0793564,-5.6520722,-8.7313603)" /> - <path - sodipodi:nodetypes="cc" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:2.03711605;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 17.232473,10.050765 L 17.232473,1.8275403" - id="path6163" /> - <path - sodipodi:nodetypes="cc" - id="path6165" - d="M 29.467352,9.8622978 L 29.467352,1.5938" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:2.03711605;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:2.03711605;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 17.19717,1.8126936 L 29.499999,1.7643486" - id="path6167" - sodipodi:nodetypes="cc" /> - <path - transform="matrix(0.7630495,0,0,0.5396781,3.2062471,0.5964946)" - d="M 35.740638 17.284103 A 3.9210651 1.8830575 0 1 1 27.898507,17.284103 A 3.9210651 1.8830575 0 1 1 35.740638 17.284103 z" - sodipodi:ry="1.8830575" - sodipodi:rx="3.9210651" - sodipodi:cy="17.284103" - sodipodi:cx="31.819572" - id="path6190" - style="color:#000000;fill:#ffffff;fill-opacity:0.32941176;fill-rule:evenodd;stroke:none;stroke-width:3.64232254;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:nodetypes="cc" - id="path6192" - d="M 17.22586,1.7943885 L 29.500001,1.7643483" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.03711557;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <path - id="path6212" - d="M 17.232473,8.2177037 L 17.232473,1.8711502" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.0371151;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:nodetypes="cc" /> - <path - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.03711534;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 29.467352,7.9859064 L 29.467352,1.7943879" - id="path6214" - sodipodi:nodetypes="cc" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:0.32941176;fill-rule:evenodd;stroke:none;stroke-width:3.64232254;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6069" - sodipodi:cx="31.819572" - sodipodi:cy="17.284103" - sodipodi:rx="3.9210651" - sodipodi:ry="1.8830575" - d="M 35.740638 17.284103 A 3.9210651 1.8830575 0 1 1 27.898507,17.284103 A 3.9210651 1.8830575 0 1 1 35.740638 17.284103 z" - transform="matrix(0.7630495,0,0,0.5396781,-9.1499501,0.5964943)" /> - </g> - <path - transform="matrix(2.6334455e-2,0,0,1.557043e-2,6.2594829,7.8971624)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6206" - style="opacity:1;color:#000000;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54301095;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54301095;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6208" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(3.9259173e-2,0,0,2.6213758e-2,5.695126,8.8222629)" /> - </g> -</svg> diff --git a/panels/sound/data/icons/16x16/devices/audio-headset.svg b/panels/sound/data/icons/16x16/devices/audio-headset.svg deleted file mode 100644 index f7c531b58..000000000 --- a/panels/sound/data/icons/16x16/devices/audio-headset.svg +++ /dev/null @@ -1,916 +0,0 @@ -<?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" - width="16" - height="16" - id="svg3879" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docname="16-voice.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs3881"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 12 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="24 : 12 : 1" - inkscape:persp3d-origin="12 : 8 : 1" - id="perspective111" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3617"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.0338738,0,0,1.022703,52.676208,-276.47138)" - inkscape:collect="always" - xlink:href="#linearGradient4976" - id="linearGradient4984" - x1="-24.687374" - y1="245.84587" - x2="-24.687374" - y2="247.61009" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4976"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4978" /> - <stop - style="stop-color:#808080;stop-opacity:1" - offset="1" - id="stop4980" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient5723-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0038316,0,0,0.6729174,-299.60391,95.209072)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677-7"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679-1" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient5721-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.483741,0.9216172,-1.0869289,0.5397304,34.95232,362.65704)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2-6" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient5719-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5256366,0,0,0.7489672,177.56381,107.82095)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655-9" - inkscape:collect="always"> - <stop - id="stop5657-5" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659-1" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-36.569096" - x2="-219.25159" - y1="-43.842201" - x1="-219.25159" - gradientTransform="matrix(-0.7835322,0,0,0.6382347,-152.46104,44.792937)" - gradientUnits="userSpaceOnUse" - id="linearGradient5758" - xlink:href="#linearGradient5853" - inkscape:collect="always" /> - <linearGradient - id="linearGradient5853" - inkscape:collect="always"> - <stop - id="stop5855" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop5857" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5626" - id="linearGradient5632" - x1="-25.743168" - y1="-243.09763" - x2="-23.90864" - y2="-240.62437" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3445951,0,0,0.6576193,34.636319,186.03812)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5626"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop5628" /> - <stop - style="stop-color:#babdb6;stop-opacity:0;" - offset="1" - id="stop5630" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4971" - id="linearGradient4977" - x1="-105.74262" - y1="-282.20282" - x2="-102.94624" - y2="-282.20282" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4971"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4973" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4975" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4786" - id="linearGradient4792" - x1="-106.91152" - y1="280.91522" - x2="-101.28181" - y2="282.32028" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4091592,0,0,0.502307,68.357364,-115.05489)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4786"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop4788" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop4790" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5206" - id="linearGradient5212" - x1="-304.49771" - y1="-142.89493" - x2="-262.4259" - y2="-143.92334" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5206"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5208" /> - <stop - style="stop-color:#dededd;stop-opacity:0;" - offset="1" - id="stop5210" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5388" - id="linearGradient5394" - x1="-283.80222" - y1="-143.74782" - x2="-283.80222" - y2="-141.12897" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5281215,0,0,0.5552481,177.36509,84.77443)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5388"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop5390" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop5392" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5376" - id="radialGradient5382" - cx="-284.44626" - cy="-153.18155" - fx="-284.44626" - fy="-153.18155" - r="17.449057" - gradientTransform="matrix(0.3968041,4.62157e-3,-3.9183e-3,0.5020381,139.37895,82.868755)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5376"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop5378" /> - <stop - style="stop-color:#434542;stop-opacity:1" - offset="1" - id="stop5380" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient3623" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0323022,0,0,0.6287283,19.400724,0.7360919)" /> - <linearGradient - id="linearGradient5853-9" - inkscape:collect="always"> - <stop - id="stop5855-9" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop5857-6" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9-5" - id="linearGradient2892-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7712739,0,0,0.6930923,220.91736,97.227704)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655-9-5" - inkscape:collect="always"> - <stop - id="stop5657-5-8" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659-1-7" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617-3" - id="linearGradient2894-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7773921,0,0,0.5662103,-10.810779,-1.5472934)" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3617-3"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619-4" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1-1" - id="radialGradient2896-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.483741,0.9216172,1.0869289,0.5397304,-4.6726884,359.09453)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6-1-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8-8-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2-6-8" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7-2" - id="linearGradient2898-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7492687,0,0,0.675283,-215.80931,95.061921)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677-7-2"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679-1-6" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681-4-3" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient2900-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6996164,0,0,0.8381224,167.85054,51.827596)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <linearGradient - id="linearGradient4555-8" - inkscape:collect="always"> - <stop - id="stop4557-5" - offset="0" - style="stop-color:#545652;stop-opacity:1;" /> - <stop - id="stop4559-4" - offset="1" - style="stop-color:#80837d;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-36.569096" - x2="-219.25159" - y1="-43.842201" - x1="-219.25159" - gradientTransform="matrix(0.736656,0,0,0.5879432,172.57296,38.700092)" - gradientUnits="userSpaceOnUse" - id="linearGradient2944" - xlink:href="#linearGradient5853-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient3017" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9999966,0,0,0.8487937,239.13998,55.585606)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5853" - id="linearGradient3052" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7835322,0,0,0.6382347,207.1823,44.831263)" - x1="-219.25159" - y1="-43.842201" - x2="-219.25159" - y2="-36.569096" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient3054" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5256366,0,0,0.7489672,122.84255,107.85928)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient3056" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0323022,0,0,0.6287283,-35.320535,0.7744175)" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient3058" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.483741,0.9216172,1.0869289,0.5397304,19.768939,362.69537)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient3060" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0038316,0,0,0.6729174,-269.32015,98.809898)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient3062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9751998,0,0,0.844159,287.49797,55.326011)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient9170" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0038316,0,0,0.6729174,-324.04141,98.771572)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5376" - id="radialGradient9220" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.2621103,3.0527584e-3,-2.5882462e-3,0.3316191,73.168977,46.897351)" - cx="-284.44626" - cy="-153.18155" - fx="-284.44626" - fy="-153.18155" - r="17.449057" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5388" - id="linearGradient9222" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3488524,0,0,0.3667668,98.260849,48.156136)" - x1="-283.80222" - y1="-143.74782" - x2="-283.80222" - y2="-141.12897" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5206" - id="linearGradient9224" - gradientUnits="userSpaceOnUse" - x1="-304.49771" - y1="-142.89493" - x2="-262.4259" - y2="-143.92334" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4786" - id="linearGradient9226" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4119291,0,0,0.4114337,57.073623,-117.30579)" - x1="-106.91152" - y1="280.91522" - x2="-101.28181" - y2="282.32028" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4971" - id="linearGradient9228" - gradientUnits="userSpaceOnUse" - x1="-105.74262" - y1="-282.20282" - x2="-102.94624" - y2="-282.20282" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5626" - id="linearGradient9230" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.2276208,0,0,0.4343927,20.061892,107.80235)" - x1="-25.743168" - y1="-243.09763" - x2="-23.90864" - y2="-240.62437" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5853" - id="linearGradient9232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.5916712,0,0,0.4310128,-135.57495,27.03059)" - x1="-219.25159" - y1="-43.842201" - x2="-219.25159" - y2="-36.569096" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient9234" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4980558,0,0,0.4266498,143.81016,60.307706)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient9236" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6818907,0,0,0.4153038,-16.888517,-1.0794581)" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient9238" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3195367,0.6087704,-0.7179745,0.3565166,0.6098895,237.10201)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient9240" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6630844,0,0,0.4444928,-195.14838,62.926162)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4976" - id="linearGradient9242" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6829209,0,0,0.6755499,34.157443,-164.52134)" - x1="-24.687374" - y1="245.84587" - x2="-24.687374" - y2="247.61009" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient9244" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6605511,0,0,0.5606671,181.81272,32.76467)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5853" - id="linearGradient9246" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5792132,0,0,0.4215832,131.70911,26.680541)" - x1="-219.25159" - y1="-43.842201" - x2="-219.25159" - y2="-36.569096" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient9248" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.347211,0,0,0.4947271,99.69856,69.897761)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient9250" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5066922,0,0,0.4349478,-4.6682268,-2.0853079)" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient9252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.3195367,0.6087704,0.7179745,0.3565166,-5.5585657,238.00991)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient9254" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6630844,0,0,0.4444928,-192.82983,66.076475)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient9256" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6441715,0,0,0.5576056,176.04074,36.32213)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient10040" - x1="-15.016697" - y1="4.8611984" - x2="-15.016697" - y2="7.3201365" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.8815427,10.00998,4.1786821)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient10046" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4980558,0,0,0.4266498,144.9697,60.3355)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient10048" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.8815427,11.107022,4.2064762)" - x1="-15.016697" - y1="4.8611984" - x2="-15.016697" - y2="7.3201365" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="5.6568542" - inkscape:cx="2.8071877" - inkscape:cy="-10.758803" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1280" - inkscape:window-height="752" - inkscape:window-x="0" - inkscape:window-y="28" - inkscape:snap-global="false" - showborder="false"> - <inkscape:grid - type="xygrid" - id="grid2855" - empspacing="5" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata3884"> - <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> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(8.5714283,-0.1428571)"> - <path - style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 1.5467961,11.028155 C 1.5467961,11.028155 1.1178945,13.671056 2.4969708,14.674174 C 3.8510788,15.659131 6.1429902,15.580155 6.1429902,15.580155" - id="path10054" - transform="translate(-8.5714283,0.1428571)" - sodipodi:nodetypes="czc" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M -7.0657973,7.1428571 L -7.0657973,3.1428571 C -7.0657973,2.0800731 -5.6572287,0.65848211 -4.5770212,0.65848211 L 3.4501919,0.65848211 C 4.4700239,0.65848211 5.9463789,2.0399203 5.9463789,3.1819196 L 5.9463789,7.1741071" - id="path10030" - sodipodi:nodetypes="cccccc" /> - <rect - style="fill:#cc0000;fill-opacity:0;stroke:none" - id="rect9172" - width="16.37541" - height="16.375107" - x="-8.8863544" - y="-0.31214052" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <rect - ry="0.83642817" - rx="1.0280828" - y="-3.1324847" - x="13.617022" - height="4.1100168" - width="2.0561657" - id="rect9184" - style="fill:#555753;fill-opacity:1;stroke:url(#linearGradient9226);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:220;stroke-opacity:1" - transform="matrix(0,1,1,0,0,0)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0081301" - inkscape:original="M -103.46875 -287.5 C -104.58751 -287.5 -105.5 -286.58751 -105.5 -285.46875 L -105.5 -279.53125 C -105.5 -278.41249 -104.58751 -277.5 -103.46875 -277.5 L -102.53125 -277.5 C -101.41249 -277.5 -100.5 -278.41249 -100.5 -279.53125 L -100.5 -285.46875 C -100.5 -286.58751 -101.41249 -287.5 -102.53125 -287.5 L -103.46875 -287.5 z " - style="opacity:0.6081081;fill:none;stroke:url(#linearGradient9228);stroke-width:5.6998086;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:220;stroke-opacity:1" - id="path9186" - d="M -103.46875,-286.5 C -104.03934,-286.5 -104.5,-286.03934 -104.5,-285.46875 L -104.5,-279.53125 C -104.5,-278.96066 -104.03934,-278.5 -103.46875,-278.5 L -102.53125,-278.5 C -101.96066,-278.5 -101.5,-278.96066 -101.5,-279.53125 L -101.5,-285.46875 C -101.5,-286.03934 -101.96066,-286.5 -102.53125,-286.5 L -103.46875,-286.5 z" - transform="matrix(0,0.1190101,0.25864,0,72.055109,27.003305)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient9232);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:220;stroke-opacity:1" - d="M -6.0530204,5.6943711 C -7.1787505,5.6943711 -8.0848994,6.4131016 -8.0848994,7.3060089 L -8.0848994,10.137268 C -8.0848994,11.030171 -7.1787505,11.748906 -6.0530204,11.748906 L -5.0976778,11.749784 L -5.0856781,5.6896695 C -5.8076694,5.7060953 -5.3849321,5.6943022 -6.0530204,5.6943022 L -6.0530204,5.6942643 L -6.0530204,5.6943096 L -6.0530204,5.6943711 z" - id="path9190" - sodipodi:nodetypes="ccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient9234);fill-opacity:1;stroke:none" - id="rect9192" - width="0.92862451" - height="5.0920496" - x="-6.5418701" - y="6.1249061" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="arc" - style="fill:#dee1e3;fill-opacity:1;stroke:none" - id="path9200" - sodipodi:cx="-244.01906" - sodipodi:cy="-24.045986" - sodipodi:rx="0.83739835" - sodipodi:ry="1.3739837" - d="M -243.18166,-24.045986 A 0.83739835,1.3739837 0 1 1 -244.85646,-24.045986 A 0.83739835,1.3739837 0 1 1 -243.18166,-24.045986 z" - transform="matrix(0.5796953,0,0,0.3534647,139.38331,23.141913)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - y="-0.31214052" - x="-8.8863544" - height="16.375107" - width="16.37541" - id="rect9204" - style="fill:#ffffff;fill-opacity:0;stroke:none" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <path - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - sodipodi:nodetypes="ccccccccc" - id="path9208" - d="M 4.9143554,5.8111128 C 6.0163825,5.8111128 6.9034517,6.5141198 6.9034517,7.387492 L 6.9034517,10.156809 C 6.9034517,11.030177 6.0163825,11.733188 4.9143554,11.733188 L 3.9791282,11.734047 L 3.9673811,5.8065147 C 4.6741696,5.8225812 4.2603333,5.8110461 4.9143547,5.8110461 L 4.9143547,5.811009 L 4.9143547,5.8110526 L 4.9143554,5.8111128 z" - style="fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient9246);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:220;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#linearGradient10040);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect10032" - width="1.016466" - height="7.0710664" - x="-5.5883217" - y="5.1827021" - rx="0" - ry="0" /> - <rect - style="fill:url(#linearGradient10046);fill-opacity:1;stroke:none" - id="rect10042" - width="0.92862451" - height="5.0920496" - x="-5.382329" - y="6.1527004" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:url(#linearGradient10048);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect10044" - width="1.016466" - height="7.0710664" - x="-4.4912806" - y="5.2104964" - rx="0" - ry="0" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect10050" - width="7.9770484" - height="2.0108349" - x="-4.5718555" - y="0.14456612" - rx="1.0054175" - ry="1.0054175" /> - <rect - style="opacity:1;fill:#b2b2b2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect10052" - width="6.0359039" - height="0.99436897" - x="-3.5885353" - y="0.15561464" - rx="0.76075804" - ry="0.49718449" /> - </g> -</svg> diff --git a/panels/sound/data/icons/16x16/status/audio-input-microphone-high.png b/panels/sound/data/icons/16x16/status/audio-input-microphone-high.png Binary files differdeleted file mode 100644 index fc2c114aa..000000000 --- a/panels/sound/data/icons/16x16/status/audio-input-microphone-high.png +++ /dev/null diff --git a/panels/sound/data/icons/16x16/status/audio-input-microphone-low.png b/panels/sound/data/icons/16x16/status/audio-input-microphone-low.png Binary files differdeleted file mode 100644 index 20f72113d..000000000 --- a/panels/sound/data/icons/16x16/status/audio-input-microphone-low.png +++ /dev/null diff --git a/panels/sound/data/icons/16x16/status/audio-input-microphone-medium.png b/panels/sound/data/icons/16x16/status/audio-input-microphone-medium.png Binary files differdeleted file mode 100644 index 7f782bbe9..000000000 --- a/panels/sound/data/icons/16x16/status/audio-input-microphone-medium.png +++ /dev/null diff --git a/panels/sound/data/icons/16x16/status/audio-input-microphone-muted.png b/panels/sound/data/icons/16x16/status/audio-input-microphone-muted.png Binary files differdeleted file mode 100644 index 964347612..000000000 --- a/panels/sound/data/icons/16x16/status/audio-input-microphone-muted.png +++ /dev/null diff --git a/panels/sound/data/icons/22x22/apps/multimedia-volume-control.png b/panels/sound/data/icons/22x22/apps/multimedia-volume-control.png Binary files differdeleted file mode 100644 index 8d55f04d2..000000000 --- a/panels/sound/data/icons/22x22/apps/multimedia-volume-control.png +++ /dev/null diff --git a/panels/sound/data/icons/22x22/apps/multimedia-volume-control.svg b/panels/sound/data/icons/22x22/apps/multimedia-volume-control.svg deleted file mode 100644 index 7636a75ab..000000000 --- a/panels/sound/data/icons/22x22/apps/multimedia-volume-control.svg +++ /dev/null @@ -1,595 +0,0 @@ -<?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://web.resource.org/cc/" - 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" - width="22" - height="22" - id="svg2" - inkscape:label="PozadÃ" - sodipodi:version="0.32" - inkscape:version="0.45" - version="1.0" - sodipodi:docbase="C:\Documents and Settings\nevim\Plocha\gnome-sound-properties\22x22" - sodipodi:docname="gnome-sound-properties.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="C:\Documents and Settings\nevim\Plocha\gnome-sound-properties\22x22\gnome-sound-properties.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:modified="true"> - <defs - id="defs3"> - <linearGradient - inkscape:collect="always" - id="linearGradient3744"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop3746" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop3748" /> - </linearGradient> - <linearGradient - id="linearGradient6304" - inkscape:collect="always"> - <stop - id="stop6306" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1" /> - <stop - id="stop6308" - offset="1" - style="stop-color:#80827d;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6296"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6298" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6300" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6117"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop6119" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop6121" /> - </linearGradient> - <linearGradient - id="linearGradient6105"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop6107" /> - <stop - id="stop6113" - offset="0.45209709" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6109" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6091"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop6093" /> - <stop - style="stop-color:#81837e;stop-opacity:0.98648649" - offset="1" - id="stop6095" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6077"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop6079" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop6081" /> - </linearGradient> - <linearGradient - id="linearGradient6041" - inkscape:collect="always"> - <stop - id="stop6043" - offset="0" - style="stop-color:#729fcf;stop-opacity:1" /> - <stop - id="stop6045" - offset="1" - style="stop-color:#235195;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6017"> - <stop - style="stop-color:#729fcf;stop-opacity:1" - offset="0" - id="stop6019" /> - <stop - style="stop-color:#3465a4;stop-opacity:1" - offset="1" - id="stop6021" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6003"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop6005" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="1" - id="stop6007" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5995"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop5997" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop5999" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5995" - id="linearGradient6001" - x1="28.203571" - y1="25.09193" - x2="21.583036" - y2="35.983383" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6003" - id="linearGradient6009" - x1="15.741923" - y1="33.116215" - x2="36.696983" - y2="22.224764" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6041" - id="radialGradient6033" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6017" - id="radialGradient6037" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2463993,0,0,1.3258525,-7.2755971,-10.235034)" - cx="23.597727" - cy="19.792301" - fx="23.597727" - fy="19.792301" - r="19.736389" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6077" - id="radialGradient6049" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2463993,0,0,1.3258525,-7.2755971,-10.235034)" - cx="32.09296" - cy="33.488297" - fx="32.09296" - fy="33.488297" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6091" - id="linearGradient6097" - x1="10.602306" - y1="35.894798" - x2="47.001671" - y2="35.690231" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6105" - id="linearGradient6111" - x1="15.551565" - y1="41" - x2="23.73423" - y2="41" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4566304,0,0,0.4578007,-9.82064e-2,-0.1950787)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6117" - id="radialGradient6123" - cx="26.927441" - cy="25.766438" - fx="26.927441" - fy="25.766438" - r="19.161766" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6304" - id="radialGradient6290" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.2235424,0,0,0.1245467,4.9289984,8.3181279)" - cx="17.831682" - cy="18.914896" - fx="17.831682" - fy="18.914896" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6296" - id="linearGradient6302" - x1="34.825703" - y1="42.345951" - x2="28.763092" - y2="32.737347" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.480657,0,0,0.4934313,-0.1875933,-2.8160779)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6117" - id="radialGradient5028" - gradientUnits="userSpaceOnUse" - cx="26.927441" - cy="25.766438" - fx="26.927441" - fy="25.766438" - r="19.161766" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6091" - id="linearGradient5030" - gradientUnits="userSpaceOnUse" - x1="10.602306" - y1="35.894798" - x2="47.001671" - y2="35.690231" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6105" - id="linearGradient5032" - gradientUnits="userSpaceOnUse" - x1="15.551565" - y1="41" - x2="23.73423" - y2="41" - gradientTransform="translate(-60,0)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6041" - id="radialGradient5034" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6296" - id="linearGradient5036" - gradientUnits="userSpaceOnUse" - x1="34.825703" - y1="42.345951" - x2="28.763092" - y2="32.737347" - gradientTransform="translate(-60,0)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6304" - id="radialGradient5038" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4228001,0,0,0.3113668,-47.60226,19.545318)" - cx="17.831682" - cy="18.914896" - fx="17.831682" - fy="18.914896" - r="19.736389" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3744" - id="radialGradient6066" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="34.171876" - inkscape:cx="10.729483" - inkscape:cy="17.062453" - inkscape:document-units="px" - inkscape:current-layer="g6029" - width="22px" - height="22px" - inkscape:showpageshadow="false" - showgrid="true" - inkscape:window-width="757" - inkscape:window-height="575" - inkscape:window-x="221" - inkscape:window-y="374" - showborder="false" /> - <metadata - id="metadata6"> - <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>Sound CC applet</dc:title> - <dc:date>17.02.2007</dc:date> - <dc:creator> - <cc:Agent> - <dc:title>Josef vybÃral</dc:title> - </cc:Agent> - </dc:creator> - <dc:rights> - <cc:Agent> - <dc:title>Josef vybÃral</dc:title> - </cc:Agent> - </dc:rights> - <dc:identifier>http://blog.vybiral.info</dc:identifier> - <dc:source>http://blog.vybiral.info</dc:source> - <dc:coverage>sound, reproductor, note</dc:coverage> - <cc:license - rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> - </cc:Work> - <cc:License - rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> - <cc:permits - rdf:resource="http://web.resource.org/cc/Reproduction" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/Distribution" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/Notice" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/ShareAlike" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/SourceCode" /> - </cc:License> - </rdf:RDF> - </metadata> - <g - inkscape:label="Repros" - inkscape:groupmode="layer" - id="layer1" - style="display:inline"> - <path - transform="matrix(0.5218726,0,0,0.3914044,-3.0526925,4.4149024)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6115" - style="opacity:0.78165935;color:#000000;fill:url(#radialGradient6123);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.04187703;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.2870299,0,0,0.1637207,3.2710188,13.144325)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6051" - style="opacity:1;color:#000000;fill:url(#linearGradient6097);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:4.61301279;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.82070923;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6099" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.2348426,0,0,0.1256814,4.6762892,13.853362)" /> - <path - style="opacity:0.56768559;fill:url(#linearGradient6111);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 6.5540829,18.116953 C 6.5540829,18.116953 7.66451,19.948156 10.860923,19.948156 L 10.860923,17.20135 L 6.5644849,17.20135 L 6.5540829,18.116953 z" - id="path6103" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:2.16422367;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6011" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207 25.766438 A 19.161766 19.161766 0 1 1 7.7656746,25.766438 A 19.161766 19.161766 0 1 1 46.089207 25.766438 z" - transform="matrix(0.4957789,0,0,0.430633,-2.3500582,-1.34419)" /> - <path - transform="matrix(0.4957789,0,0,0.4174981,-2.3500579,-1.2574379)" - d="M 46.089207 25.766438 A 19.161766 19.161766 0 1 1 7.7656746,25.766438 A 19.161766 19.161766 0 1 1 46.089207 25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6013" - style="opacity:1;color:#000000;fill:url(#radialGradient6066);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:2.19800472;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.48414516;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35675675;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6015" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.4435917,0,0,0.3653108,-0.9447891,8.72424e-2)" /> - <path - style="fill:url(#linearGradient6302);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 8,16.427344 C 10.508736,17.738814 18.382058,17.181643 19.829575,10.577731 C 19.829575,10.577731 16.366965,17.710345 8,16.427344 z" - id="path6039" - sodipodi:nodetypes="csc" /> - <path - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.26576574;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 14.500001,12.076181 C 14.500001,13.318181 12.946278,14.5 11.254335,14.5 C 9.5623909,14.5 8.5000002,13.491999 8.5000002,12.25 C 8.5000002,11.007998 9.873173,9.4999998 11.565117,9.4999998 C 13.257061,9.4999998 14.500001,10.834183 14.500001,12.076181 z" - id="path6055" - sodipodi:nodetypes="csssc" /> - <path - style="color:#000000;fill:url(#radialGradient6290);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 14.5,11.7 C 14.5,12.693599 12.96037,13.5 11.063329,13.5 C 9.1662861,13.5 7.6266566,12.693599 7.6266566,11.7 C 7.6266566,10.706399 9.1662861,9.5 11.063329,9.5 C 12.96037,9.5 14.5,10.706399 14.5,11.7 z" - id="path6047" - sodipodi:nodetypes="csssc" /> - <g - id="g6029" - transform="matrix(0.6660941,0,0,0.6678303,0.8804439,0.4696392)"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ce5c00;stroke-width:4.4980092;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 29.5,8.6499115 L 29.5,1.4935517" - id="path5052" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - id="path6023" - d="M 18.945615,7.5049013 L 18.945615,1.567109" - style="fill:none;fill-rule:evenodd;stroke:#ce5c00;stroke-width:4.49801016;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:4.4980092;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 18.945606,1.5722642 L 29.500001,1.4999998" - id="path6025" - sodipodi:nodetypes="cc" /> - <path - transform="matrix(0.9571947,0,0,1.186958,-13.763854,-10.748001)" - d="M 35.740638 17.284103 A 3.9210651 1.8830575 0 1 1 27.898507,17.284103 A 3.9210651 1.8830575 0 1 1 35.740638 17.284103 z" - sodipodi:ry="1.8830575" - sodipodi:rx="3.9210651" - sodipodi:cy="17.284103" - sodipodi:cx="31.819572" - id="path6125" - style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.40663421;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.40319479;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6127" - sodipodi:cx="31.819572" - sodipodi:cy="17.284103" - sodipodi:rx="3.9210651" - sodipodi:ry="1.8830575" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - transform="matrix(0.957195,0,0,1.1927835,-3.2548378,-10.837719)" /> - <path - sodipodi:nodetypes="cc" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:1.49933648;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 18.945606,9.0297806 L 18.945606,0.93297361" - id="path6163" /> - <path - sodipodi:nodetypes="cc" - id="path6165" - d="M 29.5,9.596807 L 29.5,1.5" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:1.49933648;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:1.4993366;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 19.5,1.5797955 L 29.499999,1.5" - id="path6167" - sodipodi:nodetypes="cc" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.13763928;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6188" - sodipodi:cx="31.819572" - sodipodi:cy="17.284103" - sodipodi:rx="3.9210651" - sodipodi:ry="1.8830575" - d="M 35.740638 17.284103 A 3.9210651 1.8830575 0 1 1 27.898507,17.284103 A 3.9210651 1.8830575 0 1 1 35.740638 17.284103 z" - transform="matrix(0.574317,0,0,0.3975944,-1.5808514,2.9064109)" /> - <path - transform="matrix(0.574317,0,0,0.3975946,8.9281769,2.9064074)" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - sodipodi:ry="1.8830575" - sodipodi:rx="3.9210651" - sodipodi:cy="17.284103" - sodipodi:cx="31.819572" - id="path6190" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.13763881;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:nodetypes="cc" - id="path6192" - d="M 18.945606,1.5722642 L 29.500001,1.4999998" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.49933612;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <path - id="path6212" - d="M 18.945605,9.0297805 L 18.945605,0.97658404" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.49933589;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:nodetypes="cc" /> - <path - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.499336;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 29.454632,9.0773723 L 29.454632,1.4952556" - id="path6214" - sodipodi:nodetypes="cc" /> - </g> - <path - transform="matrix(3.5745376e-2,0,0,2.1134654e-2,9.7316574,9.798915)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6206" - style="opacity:1;color:#000000;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54301095;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54301095;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6208" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(5.3288892e-2,0,0,3.5581465e-2,8.2339412,10.513453)" /> - </g> -</svg> diff --git a/panels/sound/data/icons/22x22/status/audio-input-microphone-high.png b/panels/sound/data/icons/22x22/status/audio-input-microphone-high.png Binary files differdeleted file mode 100644 index d04854be8..000000000 --- a/panels/sound/data/icons/22x22/status/audio-input-microphone-high.png +++ /dev/null diff --git a/panels/sound/data/icons/22x22/status/audio-input-microphone-low.png b/panels/sound/data/icons/22x22/status/audio-input-microphone-low.png Binary files differdeleted file mode 100644 index f0a7f2d58..000000000 --- a/panels/sound/data/icons/22x22/status/audio-input-microphone-low.png +++ /dev/null diff --git a/panels/sound/data/icons/22x22/status/audio-input-microphone-medium.png b/panels/sound/data/icons/22x22/status/audio-input-microphone-medium.png Binary files differdeleted file mode 100644 index 4148dc29a..000000000 --- a/panels/sound/data/icons/22x22/status/audio-input-microphone-medium.png +++ /dev/null diff --git a/panels/sound/data/icons/22x22/status/audio-input-microphone-muted.png b/panels/sound/data/icons/22x22/status/audio-input-microphone-muted.png Binary files differdeleted file mode 100644 index 6d14cc091..000000000 --- a/panels/sound/data/icons/22x22/status/audio-input-microphone-muted.png +++ /dev/null diff --git a/panels/sound/data/icons/24x24/apps/multimedia-volume-control.png b/panels/sound/data/icons/24x24/apps/multimedia-volume-control.png Binary files differdeleted file mode 100644 index 3b873fa4c..000000000 --- a/panels/sound/data/icons/24x24/apps/multimedia-volume-control.png +++ /dev/null diff --git a/panels/sound/data/icons/24x24/devices/audio-headset.svg b/panels/sound/data/icons/24x24/devices/audio-headset.svg deleted file mode 100644 index 004643cdb..000000000 --- a/panels/sound/data/icons/24x24/devices/audio-headset.svg +++ /dev/null @@ -1,776 +0,0 @@ -<?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" - width="24" - height="24" - id="svg3879" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docname="24-voice.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs3881"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 12 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="24 : 12 : 1" - inkscape:persp3d-origin="12 : 8 : 1" - id="perspective111" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3617"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.0338738,0,0,1.022703,49.113708,-252.03388)" - inkscape:collect="always" - xlink:href="#linearGradient4976" - id="linearGradient4984" - x1="-24.687374" - y1="245.84587" - x2="-24.687374" - y2="247.61009" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4976"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4978" /> - <stop - style="stop-color:#808080;stop-opacity:1" - offset="1" - id="stop4980" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient5723-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0038316,0,0,0.67291737,-299.60391,95.209072)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677-7"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679-1" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient5721-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.48374104,0.92161718,-1.0869289,0.53973041,10.51482,359.09454)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2-6" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient5719-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.52563657,0,0,0.74896722,153.12631,104.25845)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655-9" - inkscape:collect="always"> - <stop - id="stop5657-5" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659-1" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-36.569096" - x2="-219.25159" - y1="-43.842201" - x1="-219.25159" - gradientTransform="matrix(-0.78353222,0,0,0.63823472,-176.89854,41.230437)" - gradientUnits="userSpaceOnUse" - id="linearGradient5758" - xlink:href="#linearGradient5853" - inkscape:collect="always" /> - <linearGradient - id="linearGradient5853" - inkscape:collect="always"> - <stop - id="stop5855" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop5857" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5626" - id="linearGradient5632" - x1="-25.743168" - y1="-243.09763" - x2="-23.90864" - y2="-240.62437" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.34459514,0,0,0.65761929,31.073819,161.60062)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5626"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop5628" /> - <stop - style="stop-color:#babdb6;stop-opacity:0;" - offset="1" - id="stop5630" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4971" - id="linearGradient4977" - x1="-105.74262" - y1="-282.20282" - x2="-102.94624" - y2="-282.20282" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4971"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4973" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4975" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4786" - id="linearGradient4792" - x1="-106.91152" - y1="280.91522" - x2="-101.28181" - y2="282.32028" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.40915917,0,0,0.50230701,64.794864,-139.49239)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4786"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop4788" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop4790" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5206" - id="linearGradient5212" - x1="-304.49771" - y1="-142.89493" - x2="-262.4259" - y2="-143.92334" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5206"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5208" /> - <stop - style="stop-color:#dededd;stop-opacity:0;" - offset="1" - id="stop5210" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5388" - id="linearGradient5394" - x1="-283.80222" - y1="-143.74782" - x2="-283.80222" - y2="-141.12897" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.52812148,0,0,0.55524807,152.92759,81.21193)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5388"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop5390" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop5392" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5376" - id="radialGradient5382" - cx="-284.44626" - cy="-153.18155" - fx="-284.44626" - fy="-153.18155" - r="17.449057" - gradientTransform="matrix(0.39680407,0.00462157,-0.0039183,0.50203811,114.94145,79.306255)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5376"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop5378" /> - <stop - style="stop-color:#434542;stop-opacity:1" - offset="1" - id="stop5380" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient3623" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0323022,0,0,0.62872826,-5.0367759,-2.8264081)" /> - <linearGradient - id="linearGradient5853-9" - inkscape:collect="always"> - <stop - id="stop5855-9" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop5857-6" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9-5" - id="linearGradient2892-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.77127394,0,0,0.69309231,220.91736,97.227704)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655-9-5" - inkscape:collect="always"> - <stop - id="stop5657-5-8" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659-1-7" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617-3" - id="linearGradient2894-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.77739212,0,0,0.56621027,-10.810779,-1.5472934)" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3617-3"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619-4" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1-1" - id="radialGradient2896-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.48374104,0.92161718,1.0869289,0.53973041,-4.6726884,359.09453)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6-1-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8-8-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2-6-8" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7-2" - id="linearGradient2898-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.74926868,0,0,0.67528296,-215.80931,95.061921)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677-7-2"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679-1-6" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681-4-3" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient2900-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.69961638,0,0,0.83812243,167.85054,51.827596)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <linearGradient - id="linearGradient4555-8" - inkscape:collect="always"> - <stop - id="stop4557-5" - offset="0" - style="stop-color:#545652;stop-opacity:1;" /> - <stop - id="stop4559-4" - offset="1" - style="stop-color:#80837d;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-36.569096" - x2="-219.25159" - y1="-43.842201" - x1="-219.25159" - gradientTransform="matrix(0.736656,0,0,0.58794323,172.57296,38.700092)" - gradientUnits="userSpaceOnUse" - id="linearGradient2944" - xlink:href="#linearGradient5853-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient3017" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.99999661,0,0,0.84879369,263.57748,52.023106)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5853" - id="linearGradient3052" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.78353222,0,0,0.63823472,182.7448,41.268763)" - x1="-219.25159" - y1="-43.842201" - x2="-219.25159" - y2="-36.569096" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient3054" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.52563657,0,0,0.74896722,147.28005,104.29678)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient3056" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0323022,0,0,0.62872826,-10.883035,-2.7880825)" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient3058" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.48374104,0.92161718,1.0869289,0.53973041,-4.6685612,359.13287)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient3060" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0038316,0,0,0.67291737,-293.75765,95.247398)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient3062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.97519982,0,0,0.84415901,263.06047,51.763511)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="11.202323" - inkscape:cy="4.1597985" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1280" - inkscape:window-height="752" - inkscape:window-x="0" - inkscape:window-y="28" - inkscape:snap-global="false"> - <inkscape:grid - type="xygrid" - id="grid2855" - empspacing="5" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata3884"> - <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> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(8.5714283,-0.14285715)"> - <rect - style="fill:#cc0000;fill-opacity:0;stroke:none" - id="rect5861" - width="24.790443" - height="24.790268" - x="-9.2806616" - y="-0.527372" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <path - 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;color:#000000;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m -0.48273876,1.0629519 c -3.52465864,0 -6.05863694,2.8300983 -6.05863694,6.3428228 l 0,3.3085963 c 0,0.37141 0.035895,0.72774 0.097163,1.081347 l 0.9991275,0 c -0.065659,-0.350767 -0.097169,-0.710737 -0.097169,-1.081347 l 0,-3.3085963 c 0,-3.2355382 2.6134218,-5.8263589 5.85995222,-5.8263589 l 5.78571128,0 c 3.2465298,0 5.3244047,2.5908207 5.3244047,5.8263589 l 0,3.3085963 c 0,0.37061 -0.03151,0.73058 -0.09716,1.081347 l 1.009535,0 c 0.06128,-0.353607 0.09717,-0.709937 0.09717,-1.081347 l 0,-3.3085963 c 0,-3.5127245 -2.5943893,-6.3428228 -6.1190468,-6.3428228 l -6.80105096,0 z" - id="rect5549" - sodipodi:nodetypes="ccccccccccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - style="fill:url(#radialGradient5382);fill-opacity:1;stroke:none" - d="M -6.1124165,5.0092681 C -6.2937011,4.857301 -6.3656082,4.6552646 -6.3508656,4.3393305 c 0.015145,-0.3246281 0.074427,-0.4224572 0.5782217,-0.9542902 2.4612924,-2.59830661 7.0821101,-3.80012252 11.4352585,-2.9741749 1.9884343,0.37728499 3.8595526,1.2045329 5.1621134,2.2822431 0.700934,0.5799423 1.227547,1.2049406 1.287114,1.5275892 0.08117,0.4396387 -0.165477,0.8816512 -0.492195,0.8820587 C 11.511915,5.1028987 11.414663,5.0482236 11.192716,4.8627671 8.7626236,2.8321186 4.9304322,2.0520483 1.1786312,2.4838271 -1.3654872,2.7766089 -3.5952197,3.4219776 -5.3219525,4.7999737 -5.7481258,5.1400754 -5.9063913,5.1819745 -6.1124165,5.0092681 l 0,0 z" - id="path5202" - sodipodi:nodetypes="cssssssssscc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - 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;color:#000000;fill:url(#linearGradient5394);fill-opacity:1;stroke:none;stroke-width:1.36950052;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="M 2.2314285,0.15982254 C 1.5681819,0.18486471 0.90718512,0.24568013 0.26747679,0.33930091 -2.2757235,0.71150594 -4.5645706,1.6180373 -6.0369733,2.9956022 c -0.00903,0.00844 -0.024029,0.00944 -0.033007,0.017935 -0.012792,0.016513 -0.023888,0.034598 -0.033008,0.053804 -0.4403793,0.3375798 -0.5877622,0.9911622 -0.3135721,1.5076317 0.2695585,0.5077469 0.8359264,0.8666088 1.3203037,0.6391068 0.00871,-0.00389 0.024399,0.00444 0.033008,0 0.023394,-0.00852 0.045687,-0.020622 0.066015,-0.035869 0.00423,-0.00222 0.012306,0.00278 0.016478,0 0.00998,-0.00699 0.022974,-0.010993 0.033007,-0.017935 0.00618,-0.00389 0.010301,-0.013659 0.016478,-0.017935 3.3537088,-2.3260348 9.7006937,-2.6339833 14.0447311,-0.7955125 0.6082274,0.2574074 1.1553506,0.4018799 1.6338756,0.7237182 0.0052,0.00623 0.01073,0.012223 0.01649,0.017935 0.0063,0.00389 0.01023,0.013659 0.01649,0.017935 0.01419,0.020208 0.0309,0.038354 0.04948,0.053804 0.502483,0.3154924 1.162228,-0.038811 1.452335,-0.5852639 0.247807,-0.4667638 0.146702,-1.0421673 -0.198045,-1.399947 -0.0047,-0.012372 -0.01023,-0.024385 -0.01649,-0.035924 -0.0032,-0.00278 -0.01325,0.00278 -0.01648,0 -0.0052,-0.00623 -0.01075,-0.012222 -0.01649,-0.017935 -0.01451,-0.013159 -0.01774,-0.041477 -0.03301,-0.053804 1.69e-4,-0.00598 1.69e-4,-0.011958 0,-0.017935 C 11.063525,2.1438018 9.7288832,1.420058 8.123231,0.9136051 6.881406,0.52191092 5.5618524,0.2860859 4.2283351,0.19568594 3.5615763,0.15048887 2.8946224,0.13475869 2.2313757,0.15981702 l 5.28e-5,5.52e-6 z M 3.2216546,1.118851 C 4.8434103,1.1445592 6.47508,1.381683 7.9747488,1.8547154 l 0.016477,0 c 1.4589832,0.4622162 2.6653182,0.7504142 3.5153102,1.5177947 0.02512,0.053659 0.06618,0.098318 0.115525,0.1256361 0.255306,0.1602946 0.345445,0.5120662 0.198047,0.7897126 -0.125292,0.2360026 -0.381595,0.5148033 -0.610642,0.4416827 -0.02417,-0.023244 -0.05231,-0.041582 -0.08252,-0.053803 C 10.586764,4.2971254 9.9816422,3.6699592 9.2950271,3.3793701 7.0201121,2.4165922 4.2797424,2.0800172 1.6537692,2.2613612 -0.92727635,2.439607 -3.385666,3.4217546 -5.1622985,4.6398355 c -0.00423,0.00278 -0.012516,-0.00278 -0.016478,0 -0.011369,0.00513 -0.022407,0.011131 -0.033007,0.017935 -0.011368,0.00513 -0.022407,0.011131 -0.033008,0.017935 -0.00629,0.00444 -0.010248,0.013549 -0.016478,0.017935 -0.2519456,0.1440146 -0.5659508,-0.1350971 -0.709663,-0.4057859 -0.1414944,-0.2665301 -0.066845,-0.6038212 0.165038,-0.7717671 0.011365,-0.00513 0.022402,-0.011131 0.033007,-0.017935 0.039117,-0.020455 0.073468,-0.051585 0.099022,-0.089739 C -4.3207441,2.1583496 -2.1238168,1.6579803 0.33351644,1.2983351 1.2668605,1.1617328 2.2486277,1.1033985 3.2216811,1.1188565 l -2.65e-5,-5.5e-6 z" - id="path5194" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - sodipodi:nodetypes="csssssssssssssssssssssscssccccccsssssssssssssscscc" /> - <path - sodipodi:type="arc" - style="fill:none;stroke:url(#linearGradient5212);stroke-width:1.91763961;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - id="path5204" - sodipodi:cx="-285.49203" - sodipodi:cy="-135.7495" - sodipodi:rx="18.775068" - sodipodi:ry="9.3875341" - d="m -300.83968,-141.15673 a 18.775068,9.3875341 0 0 1 30.74554,0.0358" - transform="matrix(-0.53178943,0,0,0.51135941,-148.92763,75.903492)" - sodipodi:start="3.7554218" - sodipodi:end="5.6740176" - sodipodi:open="true" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - 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;color:#000000;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m -6.5611649,17.801468 0,0.01611 c 0,3.512724 2.8301183,6.342822 6.34286708,6.342822 L 4.5590266,23.541443 4.7566141,22.863449 0.3433825,23.189216 c -3.2355607,0 -5.8263995,-2.470095 -5.8263995,-5.705633 l 0,-0.01611 -1.0781479,0.333995 z" - id="rect5551" - sodipodi:nodetypes="ccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - ry="1.0211699" - rx="1.0211699" - y="-0.10164929" - x="21.63047" - height="5.0177956" - width="2.0423398" - id="rect4784" - style="fill:#555753;fill-opacity:1;stroke:url(#linearGradient4792);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - transform="matrix(0,1,1,0,0,0)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0081301" - inkscape:original="M -103.46875 -287.5 C -104.58751 -287.5 -105.5 -286.58751 -105.5 -285.46875 L -105.5 -279.53125 C -105.5 -278.41249 -104.58751 -277.5 -103.46875 -277.5 L -102.53125 -277.5 C -101.41249 -277.5 -100.5 -278.41249 -100.5 -279.53125 L -100.5 -285.46875 C -100.5 -286.58751 -101.41249 -287.5 -102.53125 -287.5 L -103.46875 -287.5 z " - style="opacity:0.6081081;fill:none;stroke:url(#linearGradient4977);stroke-width:3.76500607;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - id="path4967" - d="m -103.46875,-286.5 c -0.57059,0 -1.03125,0.46066 -1.03125,1.03125 l 0,5.9375 c 0,0.57059 0.46066,1.03125 1.03125,1.03125 l 0.9375,0 c 0.57059,0 1.03125,-0.46066 1.03125,-1.03125 l 0,-5.9375 c 0,-0.57059 -0.46066,-1.03125 -1.03125,-1.03125 l -0.9375,0 z" - transform="matrix(0,0.1801693,0.39155051,0,113.06595,41.440494)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - transform="matrix(0,1,1,0,0,0)" - style="fill:url(#linearGradient5632);fill-opacity:1;stroke:none" - id="rect5572" - width="1.0458575" - height="3.8989625" - x="22.13949" - y="0.49657452" - rx="0.99727494" - ry="0.99727511" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient5758);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - d="m -5.3765984,9.6362166 c -1.49077,0 -2.6907551,1.0642814 -2.6907551,2.3864794 l 0,4.192469 c 0,1.322192 1.1999851,2.38648 2.6907551,2.38648 l 1.2651311,0.0013 0.015891,-8.9736896 c -0.9561106,0.024323 -0.3962926,0.00686 -1.2810216,0.00686 l 0,-5.62e-5 1e-7,6.63e-5 z" - id="path5707" - sodipodi:nodetypes="ccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient5719-5);fill-opacity:1;stroke:none" - id="rect5709" - width="0.98004872" - height="8.9388952" - x="-5.5517335" - y="9.1426477" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient3623);fill-opacity:1;stroke:none" - id="rect5711" - width="2.0254388" - height="10.001933" - x="-4.5823889" - y="9.1315699" - rx="1.0133103" - ry="1.0133103" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:nodetypes="cccccccc" - id="path5713" - d="m -5.8661826,9.9499715 c -0.9407715,0 -1.698042,0.8558425 -1.698042,1.9190855 l 0,3.371356 c 0,1.063237 0.7572705,1.919079 1.698042,1.919079 l 1.2401832,-0.01722 0,-7.19223 c -0.6033633,0.019548 -0.6818611,0 -1.2401832,0 l 0,-7.25e-5 z" - style="opacity:0.5;fill:url(#radialGradient5721-4);fill-opacity:1;stroke:none" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="arc" - style="fill:#dee1e3;fill-opacity:1;stroke:none" - id="path5859" - sodipodi:cx="-244.01906" - sodipodi:cy="-24.045986" - sodipodi:rx="0.83739835" - sodipodi:ry="1.3739837" - d="m -243.18166,-24.045986 a 0.83739835,1.3739837 0 1 1 -1.6748,0 0.83739835,1.3739837 0 1 1 1.6748,0 z" - transform="matrix(0.62336294,0,0,0.3800951,153.07483,31.796377)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient4984);fill-opacity:1;stroke:none" - id="rect5811-4" - width="1.042106" - height="2.3800838" - x="23.119368" - y="-1.4279883" - rx="0.50398123" - ry="0.50398123" - transform="matrix(0,1,-1,0,0,0)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - y="-0.527372" - x="-9.2806616" - height="24.790268" - width="24.790443" - id="rect5863" - style="fill:#ffffff;fill-opacity:0;stroke:none" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <rect - transform="scale(-1,1)" - style="fill:url(#linearGradient3017);fill-opacity:1;stroke:none" - id="rect3015" - width="1.0079591" - height="3.0484221" - x="5.5438328" - y="8.1219101" - rx="0.50398123" - ry="0.50398123" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - sodipodi:nodetypes="ccccccccc" - id="path3040" - d="m 11.222858,9.6745422 c 1.49077,0 2.690755,1.0642818 2.690755,2.3864798 l 0,4.192469 c 0,1.322192 -1.199985,2.38648 -2.690755,2.38648 l -1.2651315,0.0013 -0.015891,-8.97369 c 0.9561105,0.024323 0.3962925,0.00686 1.2810215,0.00686 l 0,-5.62e-5 0,6.63e-5 z" - style="fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient3052);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" /> - <rect - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - y="9.1809731" - x="-11.397993" - height="8.9388952" - width="0.98004872" - id="rect3042" - style="fill:url(#linearGradient3054);fill-opacity:1;stroke:none" - transform="scale(-1,1)" /> - <rect - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - ry="1.0133103" - rx="1.0133103" - y="9.1698952" - x="-10.428648" - height="10.001933" - width="2.0254388" - id="rect3044" - style="fill:url(#linearGradient3056);fill-opacity:1;stroke:none" - transform="scale(-1,1)" /> - <path - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - style="opacity:0.5;fill:url(#radialGradient3058);fill-opacity:1;stroke:none" - d="m 11.712442,9.9882971 c 0.940771,0 1.698042,0.8558429 1.698042,1.9190859 l 0,3.371356 c 0,1.063237 -0.757271,1.919079 -1.698042,1.919079 l -1.240183,-0.01722 0,-7.1922304 c 0.603363,0.019548 0.681861,0 1.240183,0 l 0,-7.25e-5 z" - id="path3046" - sodipodi:nodetypes="cccccccc" /> - <rect - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - ry="0.50398123" - rx="0.50398123" - y="8.1020288" - x="11.425255" - height="3.0317767" - width="0.98296487" - id="rect3050" - style="fill:url(#linearGradient3062);fill-opacity:1;stroke:none" /> - </g> -</svg> diff --git a/panels/sound/data/icons/24x24/status/audio-input-microphone-high.png b/panels/sound/data/icons/24x24/status/audio-input-microphone-high.png Binary files differdeleted file mode 100644 index 0da5af3f0..000000000 --- a/panels/sound/data/icons/24x24/status/audio-input-microphone-high.png +++ /dev/null diff --git a/panels/sound/data/icons/24x24/status/audio-input-microphone-low.png b/panels/sound/data/icons/24x24/status/audio-input-microphone-low.png Binary files differdeleted file mode 100644 index 73e5c1119..000000000 --- a/panels/sound/data/icons/24x24/status/audio-input-microphone-low.png +++ /dev/null diff --git a/panels/sound/data/icons/24x24/status/audio-input-microphone-medium.png b/panels/sound/data/icons/24x24/status/audio-input-microphone-medium.png Binary files differdeleted file mode 100644 index 4d64ee1d5..000000000 --- a/panels/sound/data/icons/24x24/status/audio-input-microphone-medium.png +++ /dev/null diff --git a/panels/sound/data/icons/24x24/status/audio-input-microphone-muted.png b/panels/sound/data/icons/24x24/status/audio-input-microphone-muted.png Binary files differdeleted file mode 100644 index 85893d1e4..000000000 --- a/panels/sound/data/icons/24x24/status/audio-input-microphone-muted.png +++ /dev/null diff --git a/panels/sound/data/icons/32x32/apps/multimedia-volume-control.png b/panels/sound/data/icons/32x32/apps/multimedia-volume-control.png Binary files differdeleted file mode 100644 index 3a6c791fa..000000000 --- a/panels/sound/data/icons/32x32/apps/multimedia-volume-control.png +++ /dev/null diff --git a/panels/sound/data/icons/32x32/apps/multimedia-volume-control.svg b/panels/sound/data/icons/32x32/apps/multimedia-volume-control.svg deleted file mode 100644 index d1e308d38..000000000 --- a/panels/sound/data/icons/32x32/apps/multimedia-volume-control.svg +++ /dev/null @@ -1,633 +0,0 @@ -<?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://web.resource.org/cc/" - 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" - width="32" - height="32" - id="svg2" - inkscape:label="PozadÃ" - sodipodi:version="0.32" - inkscape:version="0.45" - version="1.0" - sodipodi:docbase="C:\Documents and Settings\nevim\Plocha\gnome-sound-properties\32x32" - sodipodi:docname="gnome-sound-properties.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="C:\Documents and Settings\nevim\Plocha\gnome-sound-properties\32x32\gnome-sound-properties.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:modified="TRUE"> - <defs - id="defs3"> - <linearGradient - inkscape:collect="always" - id="linearGradient3478"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop3480" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop3482" /> - </linearGradient> - <linearGradient - id="linearGradient6304" - inkscape:collect="always"> - <stop - id="stop6306" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1" /> - <stop - id="stop6308" - offset="1" - style="stop-color:#80827d;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6296"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6298" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6300" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6117"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop6119" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop6121" /> - </linearGradient> - <linearGradient - id="linearGradient6105"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop6107" /> - <stop - id="stop6113" - offset="0.45209709" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6109" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6091"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop6093" /> - <stop - style="stop-color:#81837e;stop-opacity:0.98648649" - offset="1" - id="stop6095" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6077"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop6079" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop6081" /> - </linearGradient> - <linearGradient - id="linearGradient6041" - inkscape:collect="always"> - <stop - id="stop6043" - offset="0" - style="stop-color:#729fcf;stop-opacity:1" /> - <stop - id="stop6045" - offset="1" - style="stop-color:#235195;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6017"> - <stop - style="stop-color:#729fcf;stop-opacity:1" - offset="0" - id="stop6019" /> - <stop - style="stop-color:#3465a4;stop-opacity:1" - offset="1" - id="stop6021" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6003"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop6005" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="1" - id="stop6007" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5995"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop5997" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop5999" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5995" - id="linearGradient6001" - x1="28.203571" - y1="25.09193" - x2="21.583036" - y2="35.983383" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6003" - id="linearGradient6009" - x1="15.741923" - y1="33.116215" - x2="36.696983" - y2="22.224764" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3478" - id="radialGradient6033" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6017" - id="radialGradient6037" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2463993,0,0,1.3258525,-7.2755971,-10.235034)" - cx="23.597727" - cy="19.792301" - fx="23.597727" - fy="19.792301" - r="19.736389" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6077" - id="radialGradient6049" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2463993,0,0,1.3258525,-7.2755971,-10.235034)" - cx="32.09296" - cy="33.488297" - fx="32.09296" - fy="33.488297" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6091" - id="linearGradient6097" - x1="10.602306" - y1="35.894798" - x2="47.001671" - y2="35.690231" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6105" - id="linearGradient6111" - x1="15.551565" - y1="41" - x2="23.73423" - y2="41" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6707857,0,0,0.6714555,0.1522499,-0.5175596)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6117" - id="radialGradient6123" - cx="26.927441" - cy="25.766438" - fx="26.927441" - fy="25.766438" - r="19.161766" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6304" - id="radialGradient6290" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.2927078,0,0,0.1868201,7.9676686,12.727192)" - cx="17.831682" - cy="18.914896" - fx="17.831682" - fy="18.914896" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6296" - id="linearGradient6302" - x1="34.825703" - y1="42.345951" - x2="28.763092" - y2="32.737347" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6707857,0,0,0.6714555,0.2643719,-0.8007536)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6117" - id="radialGradient5028" - gradientUnits="userSpaceOnUse" - cx="26.927441" - cy="25.766438" - fx="26.927441" - fy="25.766438" - r="19.161766" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6091" - id="linearGradient5030" - gradientUnits="userSpaceOnUse" - x1="10.602306" - y1="35.894798" - x2="47.001671" - y2="35.690231" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6105" - id="linearGradient5032" - gradientUnits="userSpaceOnUse" - x1="15.551565" - y1="41" - x2="23.73423" - y2="41" - gradientTransform="translate(-60,0)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6041" - id="radialGradient5034" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6296" - id="linearGradient5036" - gradientUnits="userSpaceOnUse" - x1="34.825703" - y1="42.345951" - x2="28.763092" - y2="32.737347" - gradientTransform="translate(-60,0)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6304" - id="radialGradient5038" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4228001,0,0,0.3113668,-47.60226,19.545318)" - cx="17.831682" - cy="18.914896" - fx="17.831682" - fy="18.914896" - r="19.736389" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.390625" - inkscape:cx="4.3711817" - inkscape:cy="8.9010469" - inkscape:document-units="px" - inkscape:current-layer="layer1" - width="32px" - height="32px" - inkscape:showpageshadow="false" - showgrid="true" - inkscape:window-width="973" - inkscape:window-height="575" - inkscape:window-x="137" - inkscape:window-y="364" - showborder="true" /> - <metadata - id="metadata6"> - <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>Sound CC applet</dc:title> - <dc:date>17.02.2007</dc:date> - <dc:creator> - <cc:Agent> - <dc:title>Josef vybÃral</dc:title> - </cc:Agent> - </dc:creator> - <dc:rights> - <cc:Agent> - <dc:title>Josef vybÃral</dc:title> - </cc:Agent> - </dc:rights> - <dc:identifier>http://blog.vybiral.info</dc:identifier> - <dc:source>http://blog.vybiral.info</dc:source> - <dc:coverage>sound, reproductor, note</dc:coverage> - <cc:license - rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> - </cc:Work> - <cc:License - rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> - <cc:permits - rdf:resource="http://web.resource.org/cc/Reproduction" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/Distribution" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/Notice" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/ShareAlike" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/SourceCode" /> - </cc:License> - </rdf:RDF> - </metadata> - <g - inkscape:label="Repros" - inkscape:groupmode="layer" - id="layer1" - style="display:inline"> - <path - transform="matrix(0.7306216,0,0,0.550649,-3.6737696,7.2603278)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6115" - style="opacity:0.78165935;color:#000000;fill:url(#radialGradient6123);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.04187703;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.3675679,0,0,0.2313647,6.3534448,19.105201)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6051" - style="opacity:1;color:#000000;fill:url(#linearGradient6097);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:3.4291203;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.00196743;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6099" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.3325614,0,0,0.1877503,7.2960798,20.064714)" /> - <path - style="opacity:0.56768559;fill:url(#linearGradient6111);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 9.9244001,26.34066 C 9.9244001,26.34066 11.555607,29.026482 16.251108,29.026482 L 16.251108,24.997749 L 9.9396806,24.997749 L 9.9244001,26.34066 z" - id="path6103" /> - <path - transform="matrix(0.704528,0,0,0.6001535,-2.9711354,0.536183)" - d="M 46.089207 25.766438 A 19.161766 19.161766 0 1 1 7.7656746,25.766438 A 19.161766 19.161766 0 1 1 46.089207 25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6216" - style="opacity:1;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.53786957;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.53786969;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6011" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.704528,0,0,0.6001535,-2.9711354,-0.4638168)" /> - <path - transform="matrix(0.6001535,0,0,0.5218726,-0.1605969,2.0532033)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6013" - style="opacity:1;color:#000000;fill:url(#radialGradient6033);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.78684342;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.37387384;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6089" - sodipodi:cx="19.378376" - sodipodi:cy="17.854717" - sodipodi:rx="0.44991162" - sodipodi:ry="0.72862023" - d="M 19.828288,17.854717 A 0.44991162,0.72862023 0 1 1 18.928464,17.854717 A 0.44991162,0.72862023 0 1 1 19.828288,17.854717 z" - transform="matrix(1.4909278,0,0,0.9215439,-11.969865,6.5294779)" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.67257559;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.27477477;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6015" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.6523407,0,0,0.5479662,-1.5658662,0.8808633)" /> - <path - style="fill:url(#linearGradient6302);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 11.690651,25.385463 C 14.622182,26.899688 25.803902,26.716115 28.437373,18 C 28.437373,18 24.656592,27.536969 11.690651,25.385463 z" - id="path6039" - sodipodi:nodetypes="csc" /> - <path - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.26576574;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 21.499999,18.106655 C 21.499999,19.845455 19.185416,21.5 16.664922,21.5 C 14.144429,21.5 12.561783,20.088799 12.561783,18.35 C 12.561783,16.611199 14.607402,14.5 17.127895,14.5 C 19.648389,14.5 21.499999,16.367856 21.499999,18.106655 z" - id="path6055" - sodipodi:nodetypes="csssc" /> - <path - style="color:#000000;fill:url(#radialGradient6290);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 20.500001,17.800001 C 20.500001,19.290401 18.484,20.500001 16.000001,20.500001 C 13.516001,20.500001 11.5,19.290401 11.5,17.800001 C 11.5,16.3096 13.516001,14.500001 16.000001,14.500001 C 18.484,14.500001 20.500001,16.3096 20.500001,17.800001 z" - id="path6047" - sodipodi:nodetypes="csssc" /> - <path - transform="matrix(1.4909278,0,0,0.9215439,-13.982223,6.5294779)" - d="M 19.828288,17.854717 A 0.44991162,0.72862023 0 1 1 18.928464,17.854717 A 0.44991162,0.72862023 0 1 1 19.828288,17.854717 z" - sodipodi:ry="0.72862023" - sodipodi:rx="0.44991162" - sodipodi:cy="17.854717" - sodipodi:cx="19.378376" - id="path6087" - style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.37387384;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6083" - sodipodi:cx="19.378376" - sodipodi:cy="17.854717" - sodipodi:rx="0.44991162" - sodipodi:ry="0.72862023" - d="M 19.828288,17.854717 A 0.44991162,0.72862023 0 1 1 18.928464,17.854717 A 0.44991162,0.72862023 0 1 1 19.828288,17.854717 z" - transform="matrix(1.1113294,0,0,0.9215439,-6.0357588,6.8746387)" /> - <path - transform="matrix(1.1113294,0,0,0.9215439,-4.0357588,6.8746387)" - d="M 19.828288,17.854717 A 0.44991162,0.72862023 0 1 1 18.928464,17.854717 A 0.44991162,0.72862023 0 1 1 19.828288,17.854717 z" - sodipodi:ry="0.72862023" - sodipodi:rx="0.44991162" - sodipodi:cy="17.854717" - sodipodi:cx="19.378376" - id="path6085" - style="opacity:1;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <g - id="g6029"> - <path - style="fill:none;fill-rule:evenodd;stroke:#ce5c00;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 29.5,9.596807 L 29.5,1.5" - id="path5052" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - id="path6023" - d="M 19.5,10.596807 L 19.5,2.5" - style="fill:none;fill-rule:evenodd;stroke:#ce5c00;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;opacity:1" - d="M 19.5,2.5000002 L 29.5,1.4999998" - id="path6025" - sodipodi:nodetypes="cc" /> - <path - transform="matrix(0.7698254,0,0,1.0621027,-7.0140504,-6.8574932)" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - sodipodi:ry="1.8830575" - sodipodi:rx="3.9210651" - sodipodi:cy="17.284103" - sodipodi:cx="31.819572" - id="path6125" - style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.10591173;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.10932291;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6127" - sodipodi:cx="31.819572" - sodipodi:cy="17.284103" - sodipodi:rx="3.9210651" - sodipodi:ry="1.8830575" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - transform="matrix(0.7650983,0,0,1.0621027,3.1548997,-7.8574931)" /> - <path - sodipodi:nodetypes="cc" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 19.5,10.548403 L 19.5,2.4515964" - id="path6163" /> - <path - sodipodi:nodetypes="cc" - id="path6165" - d="M 29.5,9.596807 L 29.5,1.5" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 19.5,2.5 L 29.499999,1.5" - id="path6167" - sodipodi:nodetypes="cc" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.91454017;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6188" - sodipodi:cx="31.819572" - sodipodi:cy="17.284103" - sodipodi:rx="3.9210651" - sodipodi:ry="1.8830575" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - transform="matrix(0.5100655,0,0,0.5348658,1.269933,2.2481411)" /> - <path - transform="matrix(0.5100655,0,0,0.5348658,11.269932,1.2481419)" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - sodipodi:ry="1.8830575" - sodipodi:rx="3.9210651" - sodipodi:cy="17.284103" - sodipodi:cx="31.819572" - id="path6190" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.91454005;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:nodetypes="cc" - id="path6192" - d="M 19.5,2.5000002 L 29.5,1.4999998" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999964;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <path - id="path6212" - d="M 19.5,10.550799 L 19.5,2.4976027" - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:nodetypes="cc" /> - <path - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 29.5,9.596807 L 29.5,1.4999998" - id="path6214" - sodipodi:nodetypes="cc" /> - </g> - <path - transform="matrix(5.2509619e-2,0,0,3.0998156e-2,14.592227,15.607309)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6206" - style="opacity:1;color:#000000;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54301095;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54301095;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6208" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(7.8280879e-2,0,0,5.2187263e-2,12.392096,16.65532)" /> - </g> -</svg> diff --git a/panels/sound/data/icons/32x32/devices/audio-headset.svg b/panels/sound/data/icons/32x32/devices/audio-headset.svg deleted file mode 100644 index c203139ed..000000000 --- a/panels/sound/data/icons/32x32/devices/audio-headset.svg +++ /dev/null @@ -1,964 +0,0 @@ -<?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" - width="32" - height="32" - id="svg3879" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docname="32-voice.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs3881"> - <linearGradient - inkscape:collect="always" - id="linearGradient3617"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 24 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="48 : 24 : 1" - inkscape:persp3d-origin="24 : 16 : 1" - id="perspective96" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555" - id="linearGradient4563" - gradientUnits="userSpaceOnUse" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" - gradientTransform="matrix(0.66407978,0,0,0.75715849,190.43006,50.728904)" /> - <linearGradient - id="linearGradient4555" - inkscape:collect="always"> - <stop - id="stop4557" - offset="0" - style="stop-color:#545652;stop-opacity:1;" /> - <stop - id="stop4559" - offset="1" - style="stop-color:#80837d;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.0450411,0,0,1.0014371,56.421478,-248.82007)" - inkscape:collect="always" - xlink:href="#linearGradient4976" - id="linearGradient4984" - x1="-24.687374" - y1="245.84587" - x2="-24.687374" - y2="247.61009" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4976"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4978" /> - <stop - style="stop-color:#808080;stop-opacity:1" - offset="1" - id="stop4980" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555" - id="linearGradient4553" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.68621958,0,0,0.68621958,170.73384,47.327606)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient5723-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.99553756,0,0,0.89724059,-297.05952,126.21271)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677-7"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679-1" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient5721-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.64273656,1.224542,-1.4441796,0.7171335,16.526738,477.02976)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2-6" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient5719-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0247755,0,0,0.92090367,303.84649,129.09036)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655-9" - inkscape:collect="always"> - <stop - id="stop5657-5" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659-1" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-36.569096" - x2="-219.25159" - y1="-43.842201" - x1="-219.25159" - gradientTransform="matrix(-0.97877933,0,0,0.78119332,-218.97584,51.325392)" - gradientUnits="userSpaceOnUse" - id="linearGradient5758" - xlink:href="#linearGradient5853" - inkscape:collect="always" /> - <linearGradient - id="linearGradient5853" - inkscape:collect="always"> - <stop - id="stop5855" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop5857" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5626" - id="linearGradient5632" - x1="-25.743168" - y1="-243.09763" - x2="-23.90864" - y2="-240.62437" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6571758,0,0,1.0085905,46.149483,249.53936)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5626"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop5628" /> - <stop - style="stop-color:#babdb6;stop-opacity:0;" - offset="1" - id="stop5630" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4971" - id="linearGradient4977" - x1="-105.74262" - y1="-282.20282" - x2="-102.94624" - y2="-282.20282" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4971"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4973" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4975" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4786" - id="linearGradient4792" - x1="-106.91152" - y1="280.91522" - x2="-101.28181" - y2="282.32028" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.60027296,0,0,0.696962,91.940589,-191.45315)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4786"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop4788" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop4790" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677" - id="linearGradient5449-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.68621958,0,0,0.76218683,-188.89688,109.60097)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6" - id="radialGradient5447-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.64273656,1.224542,1.4441796,0.7171335,-3.1640994,476.83323)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655" - id="linearGradient5443-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.75005399,0,0,0.85573606,208.06197,120.96548)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655" - inkscape:collect="always"> - <stop - id="stop5657" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5661" - id="linearGradient5667" - x1="-219.25159" - y1="-43.842201" - x2="-219.25159" - y2="-36.569096" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.77824526,0,0,0.72964259,189.11899,48.738021)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5661"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop5663" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop5665" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5206" - id="linearGradient5212" - x1="-304.49771" - y1="-142.89493" - x2="-262.4259" - y2="-143.92334" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5206"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5208" /> - <stop - style="stop-color:#dededd;stop-opacity:0;" - offset="1" - id="stop5210" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5388" - id="linearGradient5394" - x1="-283.80222" - y1="-143.74782" - x2="-283.80222" - y2="-141.12897" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.69617626,0,0,0.77539869,204.63341,113.36017)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5388"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop5390" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop5392" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5376" - id="radialGradient5382" - cx="-284.44626" - cy="-153.18155" - fx="-284.44626" - fy="-153.18155" - r="17.449057" - gradientTransform="matrix(0.52159422,0.00570372,-0.00515056,0.61959156,154.17873,98.370923)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5376"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop5378" /> - <stop - style="stop-color:#434542;stop-opacity:1" - offset="1" - id="stop5380" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient3623" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0329046,0,0,0.75231698,-4.0458192,-2.1508414)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient3627" - gradientUnits="userSpaceOnUse" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" - gradientTransform="translate(27.998451,0)" /> - <inkscape:perspective - id="perspective3637" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617-8" - id="linearGradient3627-1" - gradientUnits="userSpaceOnUse" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" - gradientTransform="translate(27.998451,0)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3617-8"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619-2" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621-4" /> - </linearGradient> - <linearGradient - y2="34.927505" - x2="1.421198" - y1="19.01931" - x1="1.421198" - gradientTransform="matrix(0.68621958,0,0,0.68621958,15.319865,-0.89371418)" - gradientUnits="userSpaceOnUse" - id="linearGradient3646" - xlink:href="#linearGradient3617-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5853" - id="linearGradient2890" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.97877933,0,0,0.78119332,232.83687,51.325392)" - x1="-219.25159" - y1="-43.842201" - x2="-219.25159" - y2="-36.569096" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient2892" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0247755,0,0,0.92090367,289.98546,129.09036)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient2894" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0329046,0,0,0.75231698,-17.906854,-2.1508414)" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient2896" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.64273656,1.224542,1.4441796,0.7171335,-2.6657025,477.02976)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient2898" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.99553756,0,0,0.89724059,-283.19849,126.21271)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555" - id="linearGradient2900" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.68621958,0,0,0.68621958,156.87281,47.327606)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <inkscape:perspective - id="perspective2910" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5853-9" - id="linearGradient2890-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.97877933,0,0,0.78119332,232.83687,51.325392)" - x1="-219.25159" - y1="-43.842201" - x2="-219.25159" - y2="-36.569096" /> - <linearGradient - id="linearGradient5853-9" - inkscape:collect="always"> - <stop - id="stop5855-9" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop5857-6" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9-5" - id="linearGradient2892-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0247755,0,0,0.92090367,290.97234,129.09035)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655-9-5" - inkscape:collect="always"> - <stop - id="stop5657-5-8" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659-1-7" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617-3" - id="linearGradient2894-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0329046,0,0,0.75231698,-16.919972,-2.1508407)" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3617-3"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619-4" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1-1" - id="radialGradient2896-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.64273656,1.224542,1.4441796,0.7171335,-3.6525853,477.02975)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6-1-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8-8-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2-6-8" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7-2" - id="linearGradient2898-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.99553756,0,0,0.89724059,-284.18537,126.2127)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677-7-2"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679-1-6" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681-4-3" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient2900-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9295656,0,0,1.1136035,220.46357,68.767752)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - <linearGradient - id="linearGradient4555-8" - inkscape:collect="always"> - <stop - id="stop4557-5" - offset="0" - style="stop-color:#545652;stop-opacity:1;" /> - <stop - id="stop4559-4" - offset="1" - style="stop-color:#80837d;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-36.569096" - x2="-219.25159" - y1="-43.842201" - x1="-219.25159" - gradientTransform="matrix(0.97877933,0,0,0.78119332,231.84999,51.325392)" - gradientUnits="userSpaceOnUse" - id="linearGradient2944" - xlink:href="#linearGradient5853-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555-8" - id="linearGradient3017" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9295656,0,0,1.1136035,245.41352,68.767752)" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="30.024929" - inkscape:cy="6.5961333" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1280" - inkscape:window-height="752" - inkscape:window-x="0" - inkscape:window-y="28" - inkscape:snap-global="false"> - <inkscape:grid - type="xygrid" - id="grid2855" - empspacing="5" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata3884"> - <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> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(8.5714283,-0.14285715)"> - <rect - style="fill:#cc0000;fill-opacity:0;stroke:none" - id="rect5861" - width="32.938541" - height="32.938541" - x="-9.7751017" - y="-0.79568303" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <path - 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;color:#000000;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m 1.9145026,1.3173618 c -4.6831399,0 -8.4777215,3.7603186 -8.4777215,8.4276345 l 0,4.3960947 c 0,0.493488 0.047692,0.966938 0.1290984,1.436772 l 1.0219853,0 c -0.087239,-0.46606 -0.1291054,-0.944348 -0.1291054,-1.436772 l 0,-4.3960947 c 0,-4.2990218 4.2056809,-7.7414149 8.5192778,-7.7414149 l 7.6873528,0 c 4.313596,0 7.789175,3.4423931 7.789175,7.7414149 l 0,4.3960947 c 0,0.492424 -0.04186,0.970712 -0.129105,1.436772 l 0.974072,0 c 0.08141,-0.469834 0.129105,-0.943284 0.129105,-1.436772 l 0,-4.3960947 c 0,-4.6673159 -3.794582,-8.4276345 -8.477721,-8.4276345 l -9.0364134,0 z" - id="rect5549" - sodipodi:nodetypes="ccccccccccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - style="fill:url(#radialGradient5382);fill-opacity:1;stroke:none" - d="m -4.9451328,6.6771159 c -0.2382967,-0.1875506 -0.3328176,-0.4368942 -0.3134387,-0.826805 0.019908,-0.4006407 0.097834,-0.5213766 0.7600657,-1.1777397 3.2353396,-3.2067063 9.3093493,-4.6899303 15.0315108,-3.670585 2.613773,0.4656271 5.073336,1.4865771 6.785537,2.8166358 0.921369,0.7157372 1.613595,1.4870802 1.691896,1.8852778 0.106689,0.542581 -0.217518,1.088092 -0.646986,1.0885949 C 18.22184,6.7926704 18.094005,6.725193 17.802257,6.4963114 14.60793,3.9901815 9.5705605,3.0274559 4.6388625,3.5603368 1.2946491,3.9216742 -1.6363077,4.7181575 -3.9060775,6.4188147 -4.4662772,6.8385521 -4.6743153,6.8902619 -4.9451328,6.6771159 l 0,0 z" - id="path5202" - sodipodi:nodetypes="cssssssssscc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - 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;color:#000000;fill:url(#linearGradient5394);fill-opacity:1;stroke:none;stroke-width:1.36950052;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="M 5.9838584,0.17166026 C 5.1095585,0.20663073 4.2382243,0.29156016 3.394953,0.42230013 0.04247471,0.94208089 -2.9747116,2.2080433 -4.915651,4.1317997 c -0.011904,0.011787 -0.031676,0.013182 -0.043511,0.025045 -0.016864,0.023062 -0.031489,0.048317 -0.043511,0.075137 -0.5805135,0.4714269 -0.7747954,1.3841486 -0.4133546,2.1053935 0.3553353,0.7090636 1.1019287,0.9693649 1.7404406,0.6516606 0.011487,-0.00543 0.032163,0.00621 0.043511,0 0.030839,-0.011883 0.060226,-0.028799 0.087022,-0.050091 0.00557,-0.0031 0.016221,0.00388 0.021721,0 0.013158,-0.00977 0.030284,-0.015352 0.043511,-0.025045 0.00815,-0.00543 0.013575,-0.019075 0.021721,-0.025045 4.42090043,-3.2482857 12.7875743,-3.6783329 18.513938,-1.1109257 0.801771,0.359467 1.522996,0.5612214 2.153794,1.0106657 0.0069,0.00871 0.01416,0.01707 0.02172,0.025045 0.0083,0.00543 0.0135,0.019075 0.02172,0.025045 0.01873,0.028221 0.04073,0.053561 0.06523,0.075137 0.662378,0.4405821 1.532062,0.1866468 1.914485,-0.5764698 0.32666,-0.6518311 0.193384,-1.4553767 -0.261066,-1.9550127 -0.0062,-0.017277 -0.01349,-0.034053 -0.02172,-0.050168 -0.0042,-0.00388 -0.01747,0.00388 -0.02172,0 -0.0069,-0.00871 -0.01417,-0.017069 -0.02172,-0.025045 -0.01914,-0.018377 -0.02339,-0.057923 -0.04351,-0.075137 2.23e-4,-0.00835 2.23e-4,-0.016699 0,-0.025045 C 17.626438,2.9422684 15.867096,1.9315671 13.750505,1.2243105 12.113516,0.67731325 10.374064,0.34798591 8.6162053,0.22174326 7.7372758,0.15862581 6.8580887,0.13665877 5.9837888,0.1716525 l 6.96e-5,7.76e-6 z M 7.2891889,1.1336088 c 2.1378181,0.035901 4.2887031,0.3670427 6.2655851,1.0276281 l 0.02172,0 c 1.92325,0.6454806 3.513456,1.4252715 4.633924,2.4969112 0.03311,0.074934 0.08725,0.1372993 0.152288,0.1754495 0.336545,0.2238499 0.455369,0.7150959 0.261066,1.1028263 -0.16516,0.3295754 -0.503022,0.478072 -0.804953,0.3759598 -0.03188,-0.03246 -0.06896,-0.058069 -0.108777,-0.075136 C 16.997965,5.7085187 16.200286,5.2394489 15.295181,4.833644 12.29636,3.4891337 8.6839711,2.9762928 5.2223808,3.229538 1.8200146,3.4784567 -1.420665,4.4860717 -3.7626438,6.1871102 c -0.00557,0.00388 -0.016499,-0.00388 -0.021721,0 -0.014986,0.00717 -0.029537,0.015544 -0.043511,0.025045 -0.014986,0.00717 -0.029537,0.015544 -0.043511,0.025045 -0.00829,0.00621 -0.013506,0.01892 -0.021721,0.025045 -0.3321179,0.2011152 -0.7460434,0.052185 -0.9354868,-0.3258303 -0.1865196,-0.3722068 -0.088115,-0.8432306 0.2175551,-1.0777654 0.014982,-0.00717 0.029532,-0.015544 0.043511,-0.025045 0.051565,-0.028565 0.096846,-0.072038 0.130533,-0.1253199 1.7837016,-1.7457008 4.67971835,-2.821787 7.9190054,-3.3240282 1.2303452,-0.1907636 2.524523,-0.272227 3.8072138,-0.2506399 l -3.48e-5,-7.7e-6 z" - id="path5194" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - sodipodi:nodetypes="csssssssssssssssssssssscssccccccsssssssssssssscscc" /> - <path - sodipodi:type="arc" - style="fill:none;stroke:url(#linearGradient5212);stroke-width:1.41199458;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - id="path5204" - sodipodi:cx="-285.49203" - sodipodi:cy="-135.7495" - sodipodi:rx="18.775068" - sodipodi:ry="9.3875341" - d="m -300.83968,-141.15673 a 18.775068,9.3875341 0 0 1 30.74554,0.0358" - transform="matrix(-0.70657745,0,0,0.70986232,-194.81186,105.68217)" - sodipodi:start="3.7554218" - sodipodi:end="5.6740176" - sodipodi:open="true" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - 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;color:#000000;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m -6.5233133,22.735232 0,0.02141 c 0,4.667316 3.7603187,8.427634 8.4276344,8.427634 l 6.3475307,0 0.2625302,-0.900842 -6.3475307,0 c -4.2990216,0 -7.7414148,-3.442393 -7.7414148,-7.741415 l 0,-0.02141 -0.9487498,0.214623 z" - id="rect5551" - sodipodi:nodetypes="ccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - ry="1.4981471" - rx="1.4981471" - y="1.9545606" - x="28.614576" - height="6.9623013" - width="2.9962943" - id="rect4784" - style="fill:#555753;fill-opacity:1;stroke:url(#linearGradient4792);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - transform="matrix(0,1,1,0,0,0)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0081301" - inkscape:original="M -103.46875 -287.5 C -104.58751 -287.5 -105.5 -286.58751 -105.5 -285.46875 L -105.5 -279.53125 C -105.5 -278.41249 -104.58751 -277.5 -103.46875 -277.5 L -102.53125 -277.5 C -101.41249 -277.5 -100.5 -278.41249 -100.5 -279.53125 L -100.5 -285.46875 C -100.5 -286.58751 -101.41249 -287.5 -102.53125 -287.5 L -103.46875 -287.5 z " - style="opacity:0.6081081;fill:none;stroke:url(#linearGradient4977);stroke-width:2.1435864;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - id="path4967" - d="m -103.46875,-286.5 c -0.57059,0 -1.03125,0.46066 -1.03125,1.03125 l 0,5.9375 c 0,0.57059 0.46066,1.03125 1.03125,1.03125 l 0.9375,0 c 0.57059,0 1.03125,-0.46066 1.03125,-1.03125 l 0,-5.9375 c 0,-0.57059 -0.46066,-1.03125 -1.03125,-1.03125 l -0.9375,0 z" - transform="matrix(0,0.35041293,0.62106611,0,180.86297,66.235476)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - transform="matrix(0,1,1,0,0,0)" - style="fill:url(#linearGradient5632);fill-opacity:1;stroke:none" - id="rect5572" - width="1.99455" - height="5.9798374" - x="29.110865" - y="2.4541459" - rx="0.99727499" - ry="0.99727499" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient5758);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - d="m -4.7126309,12.654361 c -1.8622525,0 -3.3612598,1.30267 -3.3612598,2.921028 l 0,5.131543 c 0,1.618351 1.4990073,2.921029 3.3612598,2.921029 l 1.5803872,0.0017 0.01985,-10.983712 c -1.1943624,0.02977 -0.4950442,0.0084 -1.6002373,0.0084 l 0,-6.9e-5 1e-7,8.1e-5 z" - id="path5707" - sodipodi:nodetypes="ccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient5719-5);fill-opacity:1;stroke:none" - id="rect5709" - width="1.9106927" - height="10.99095" - x="-5.5105519" - y="12.139328" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient3623);fill-opacity:1;stroke:none" - id="rect5711" - width="2.0266206" - height="11.968007" - x="-3.5911674" - y="12.157709" - rx="1.0133103" - ry="1.0133103" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:nodetypes="cccccccc" - id="path5713" - d="m -5.238356,13.125441 c -1.2499833,0 -2.2561527,1.137149 -2.2561527,2.549866 l 0,4.479482 c 0,1.41271 1.0061694,2.549858 2.2561527,2.549858 l 1.6478054,-0.02288 0,-9.556232 c -0.8016761,0.02597 -0.9059746,0 -1.6478054,0 l 0,-9.6e-5 z" - style="opacity:0.5;fill:url(#radialGradient5721-4);fill-opacity:1;stroke:none" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="arc" - style="fill:#dee1e3;fill-opacity:1;stroke:none" - id="path5859" - sodipodi:cx="-244.01906" - sodipodi:cy="-24.045986" - sodipodi:rx="0.83739835" - sodipodi:ry="1.3739837" - d="m -243.18166,-24.045986 a 0.83739835,1.3739837 0 1 1 -1.6748,0 0.83739835,1.3739837 0 1 1 1.6748,0 z" - transform="matrix(0.8690986,0,0,0.73826906,214.78423,47.887046)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient4984);fill-opacity:1;stroke:none" - id="rect5811-4" - width="1.0533623" - height="2.3305926" - x="30.146362" - y="-3.4252403" - rx="0.50398123" - ry="0.50398123" - transform="matrix(0,1,-1,0,0,0)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - y="-0.79568303" - x="-9.7751017" - height="32.938541" - width="32.938541" - id="rect5863" - style="fill:#ffffff;fill-opacity:0;stroke:none" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <path - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - sodipodi:nodetypes="ccccccccc" - id="path2878" - d="m 17.586784,12.654361 c 1.862252,0 3.36126,1.30267 3.36126,2.921028 l 0,5.131543 c 0,1.618351 -1.499008,2.921029 -3.36126,2.921029 l -1.580387,0.0017 -0.01985,-10.983712 c 1.194362,0.02977 0.495044,0.0084 1.600237,0.0084 l 0,-6.9e-5 0,8.1e-5 z" - style="fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient2944);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" /> - <rect - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - y="12.139328" - x="-18.384705" - height="10.99095" - width="1.9106927" - id="rect2880" - style="fill:url(#linearGradient2892-5);fill-opacity:1;stroke:none" - transform="scale(-1,1)" /> - <rect - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - ry="1.0133103" - rx="1.0133103" - y="12.157709" - x="-16.465319" - height="11.968007" - width="2.0266206" - id="rect2882" - style="fill:url(#linearGradient2894-1);fill-opacity:1;stroke:none" - transform="scale(-1,1)" /> - <path - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - style="opacity:0.5;fill:url(#radialGradient2896-0);fill-opacity:1;stroke:none" - d="m 18.112509,13.125441 c 1.249983,0 2.256153,1.137149 2.256153,2.549866 l 0,4.479482 c 0,1.41271 -1.00617,2.549858 -2.256153,2.549858 l -1.647805,-0.02288 0,-9.556232 c 0.801676,0.02597 0.905974,0 1.647805,0 l 0,-9.6e-5 z" - id="path2884" - sodipodi:nodetypes="cccccccc" /> - <rect - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - ry="0.50398123" - rx="0.50398123" - y="11.170098" - x="-19.396423" - height="3.9994802" - width="0.93696725" - id="rect2888" - style="fill:url(#linearGradient2900-3);fill-opacity:1;stroke:none" - transform="scale(-1,1)" /> - <rect - transform="scale(-1,1)" - style="fill:url(#linearGradient3017);fill-opacity:1;stroke:none" - id="rect3015" - width="0.93696725" - height="3.9994802" - x="5.5535235" - y="11.170098" - rx="0.50398123" - ry="0.50398123" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - </g> -</svg> diff --git a/panels/sound/data/icons/32x32/status/audio-input-microphone-high.png b/panels/sound/data/icons/32x32/status/audio-input-microphone-high.png Binary files differdeleted file mode 100644 index dc7288155..000000000 --- a/panels/sound/data/icons/32x32/status/audio-input-microphone-high.png +++ /dev/null diff --git a/panels/sound/data/icons/32x32/status/audio-input-microphone-low.png b/panels/sound/data/icons/32x32/status/audio-input-microphone-low.png Binary files differdeleted file mode 100644 index 467fff6c0..000000000 --- a/panels/sound/data/icons/32x32/status/audio-input-microphone-low.png +++ /dev/null diff --git a/panels/sound/data/icons/32x32/status/audio-input-microphone-medium.png b/panels/sound/data/icons/32x32/status/audio-input-microphone-medium.png Binary files differdeleted file mode 100644 index 8291c5c35..000000000 --- a/panels/sound/data/icons/32x32/status/audio-input-microphone-medium.png +++ /dev/null diff --git a/panels/sound/data/icons/32x32/status/audio-input-microphone-muted.png b/panels/sound/data/icons/32x32/status/audio-input-microphone-muted.png Binary files differdeleted file mode 100644 index fda01ac13..000000000 --- a/panels/sound/data/icons/32x32/status/audio-input-microphone-muted.png +++ /dev/null diff --git a/panels/sound/data/icons/48x48/apps/multimedia-volume-control.png b/panels/sound/data/icons/48x48/apps/multimedia-volume-control.png Binary files differdeleted file mode 100644 index 61dd43b8c..000000000 --- a/panels/sound/data/icons/48x48/apps/multimedia-volume-control.png +++ /dev/null diff --git a/panels/sound/data/icons/48x48/devices/audio-headset.svg b/panels/sound/data/icons/48x48/devices/audio-headset.svg deleted file mode 100644 index 1ba3fe215..000000000 --- a/panels/sound/data/icons/48x48/devices/audio-headset.svg +++ /dev/null @@ -1,730 +0,0 @@ -<?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" - width="48" - height="48" - id="svg3879" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docname="48-voice.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs3881"> - <linearGradient - inkscape:collect="always" - id="linearGradient3617"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 24 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="48 : 24 : 1" - inkscape:persp3d-origin="24 : 16 : 1" - id="perspective96" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555" - id="linearGradient4563" - gradientUnits="userSpaceOnUse" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" - gradientTransform="matrix(0.96773657,0,0,1.1033764,283.17944,75.227551)" /> - <linearGradient - id="linearGradient4555" - inkscape:collect="always"> - <stop - id="stop4557" - offset="0" - style="stop-color:#545652;stop-opacity:1;" /> - <stop - id="stop4559" - offset="1" - style="stop-color:#80837d;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="translate(70.143605,-254.44307)" - inkscape:collect="always" - xlink:href="#linearGradient4976" - id="linearGradient4984" - x1="-24.687374" - y1="245.84587" - x2="-24.687374" - y2="247.61009" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4976"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4978" /> - <stop - style="stop-color:#808080;stop-opacity:1" - offset="1" - id="stop4980" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4555" - id="linearGradient4553" - x1="-257.51324" - y1="-50.301723" - x2="-257.49792" - y2="-51.439991" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(254.47694,70.270976)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677-7" - id="linearGradient5723-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,1.110704,-300.45156,160.82553)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677-7"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679-1" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6-1" - id="radialGradient5721-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93663395,1.7844755,-2.1045445,1.0450496,29.790687,695.97821)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2-6" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655-9" - id="linearGradient5719-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0739995,0,0,1.2558918,322.6417,178.48569)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655-9" - inkscape:collect="always"> - <stop - id="stop5657-5" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659-1" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-36.569096" - x2="-219.25159" - y1="-43.842201" - x1="-219.25159" - gradientTransform="matrix(-1.1341053,0,0,1.0684624,-250.41566,72.38903)" - gradientUnits="userSpaceOnUse" - id="linearGradient5758" - xlink:href="#linearGradient5853" - inkscape:collect="always" /> - <linearGradient - id="linearGradient5853" - inkscape:collect="always"> - <stop - id="stop5855" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop5857" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5626" - id="linearGradient5632" - x1="-25.743168" - y1="-243.09763" - x2="-23.90864" - y2="-240.62437" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,1.4970962,69.91678,375.11023)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5626"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop5628" /> - <stop - style="stop-color:#babdb6;stop-opacity:0;" - offset="1" - id="stop5630" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4971" - id="linearGradient4977" - x1="-105.74262" - y1="-282.20282" - x2="-102.94624" - y2="-282.20282" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4971"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4973" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4975" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4786" - id="linearGradient4792" - x1="-106.91152" - y1="280.91522" - x2="-101.28181" - y2="282.32028" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.81265471,0,0,1,129.18772,-269.64677)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4786"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop4788" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop4790" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5677" - id="linearGradient5449-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,1.110704,-269.59835,161.01943)" - x1="305.89481" - y1="-120.46718" - x2="306.04715" - y2="-120.46718" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5677"> - <stop - style="stop-color:#ff2de7;stop-opacity:1" - offset="0" - id="stop5679" /> - <stop - style="stop-color:#7b009b;stop-opacity:1" - offset="1" - id="stop5681" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5043-9-6" - id="radialGradient5447-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.93663395,1.7844755,2.1045445,1.0450496,1.0625172,696.17212)" - cx="-306.03387" - cy="-120.8595" - fx="-306.03387" - fy="-120.8595" - r="3.03685" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5043-9-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5045-4-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5047-1-2" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5655" - id="linearGradient5443-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0930233,0,0,1.2470295,297.52685,177.58046)" - x1="-300.82822" - y1="-126.31032" - x2="-300.82822" - y2="-114.83224" /> - <linearGradient - id="linearGradient5655" - inkscape:collect="always"> - <stop - id="stop5657" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop5659" - offset="1" - style="stop-color:#707e83;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5661" - id="linearGradient5667" - x1="-219.25159" - y1="-43.842201" - x2="-219.25159" - y2="-36.569096" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1341053,0,0,1.0632786,281.26887,72.326317)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5661"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop5663" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop5665" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5206" - id="linearGradient5212" - x1="-304.49771" - y1="-142.89493" - x2="-262.4259" - y2="-143.92334" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5206"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5208" /> - <stop - style="stop-color:#dededd;stop-opacity:0;" - offset="1" - id="stop5210" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5388" - id="linearGradient5394" - x1="-283.80222" - y1="-143.74782" - x2="-283.80222" - y2="-141.12897" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(299.49582,147.12151)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5388"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop5390" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop5392" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5376" - id="radialGradient5382" - cx="-284.44626" - cy="-153.18155" - fx="-284.44626" - fy="-153.18155" - r="17.449057" - gradientTransform="matrix(0.7493289,0.0071443,-0.00739936,0.77608101,227.05992,124.25584)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5376"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop5378" /> - <stop - style="stop-color:#434542;stop-opacity:1" - offset="1" - id="stop5380" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient3623" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617" - id="linearGradient3627" - gradientUnits="userSpaceOnUse" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" - gradientTransform="translate(27.998451,0)" /> - <inkscape:perspective - id="perspective3637" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3617-8" - id="linearGradient3627-1" - gradientUnits="userSpaceOnUse" - x1="1.421198" - y1="19.01931" - x2="1.421198" - y2="34.927505" - gradientTransform="translate(27.998451,0)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3617-8"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3619-2" /> - <stop - style="stop-color:#0b0c0d;stop-opacity:1" - offset="1" - id="stop3621-4" /> - </linearGradient> - <linearGradient - y2="34.927505" - x2="1.421198" - y1="19.01931" - x1="1.421198" - gradientTransform="translate(27.998451,2.9924335e-7)" - gradientUnits="userSpaceOnUse" - id="linearGradient3646" - xlink:href="#linearGradient3617-8" - inkscape:collect="always" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="41.836337" - inkscape:cy="8.487141" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1280" - inkscape:window-height="752" - inkscape:window-x="0" - inkscape:window-y="28" /> - <metadata - id="metadata3884"> - <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> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(8.5714283,-0.14285715)"> - <rect - style="fill:#cc0000;fill-opacity:0;stroke:none" - id="rect5861" - width="48" - height="48" - x="-8.5714283" - y="0.14285715" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <path - 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;color:#000000;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m 8.7956674,3.2221118 c -6.82455,0 -12.3542402,5.47976 -12.3542402,12.2812502 l 0,6.40625 c 0,0.71914 0.0695,1.40908 0.18813,2.09375 l 1.0034,0 c -0.12713,-0.67917 -0.18814,-1.37616 -0.18814,-2.09375 l 0,-6.40625 c 0,-6.2647902 5.0648202,-11.2812502 11.3508502,-11.2812502 l 13.2912696,0 c 6.28603,0 11.35085,5.01646 11.35085,11.2812502 l 0,6.40625 c 0,0.71759 -0.061,1.41458 -0.18814,2.09375 l 1.00339,0 c 0.11864,-0.68467 0.18814,-1.37461 0.18814,-2.09375 l 0,-6.40625 c 0,-6.8014902 -5.52969,-12.2812502 -12.35424,-12.2812502 l -13.2912696,0 z" - id="rect5549" - sodipodi:nodetypes="ccccccccccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - style="fill:url(#radialGradient5382);fill-opacity:1;stroke:none" - d="m -1.5394328,9.4030418 c -0.34234,-0.23492 -0.47813,-0.54724 -0.45029,-1.03563 0.0286,-0.50183 0.14055,-0.65306 1.09192003,-1.4752 4.64793017,-4.01662 13.37392977,-5.87446 21.59445977,-4.59766 3.75498,0.58323 7.28842,1.86204 9.74819,3.52803 1.32365,0.89651 2.31811,1.86267 2.4306,2.36144 0.15327,0.67962 -0.31249,1.36291 -0.92947,1.36354 -0.20344,2.2e-4 -0.38709,-0.0843 -0.80622,-0.37099 -4.58901,-3.1391 -11.82576,-4.34498 -18.9107,-3.67751 -4.8043396,0.4526 -9.0149896,1.45025 -12.27576977,3.58044 -0.80479,0.52575 -1.10366003,0.59052 -1.49272003,0.32354 l 0,0 z" - id="path5202" - sodipodi:nodetypes="cssssssssscc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - 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;color:#000000;fill:url(#linearGradient5394);fill-opacity:1;stroke:none;stroke-width:1.36950052;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m 14.152067,1.1469218 c -1.25586,0.0451 -2.50746,0.15463 -3.71875,0.32324 -4.8155596,0.67034 -9.1494998,2.303 -11.9374998,4.78399 -0.0171,0.0152 -0.0455,0.017 -0.0625,0.0323 a 0.50262213,0.52231753 0 0 0 -0.0625,0.0969 c -0.83386,0.60798 -1.11293,1.78508 -0.59375,2.71524 0.51041,0.9144502 1.58283003,1.2501502 2.50000003,0.84042 0.0165,-0.007 0.0462,0.008 0.0625,0 a 0.4997817,0.5193658 0 0 0 0.125,-0.0646 c 0.008,-0.004 0.0233,0.005 0.0312,0 0.0189,-0.0126 0.0435,-0.0198 0.0625,-0.0323 0.0117,-0.007 0.0195,-0.0246 0.0312,-0.0323 6.35026017,-4.18918 18.36829977,-4.99194 26.59374977,-1.68086 1.15168,0.46359 2.18766,0.97193 3.09375,1.55156 a 0.50097,0.51819158 0 0 0 0.0312,0.0323 c 0.0119,0.007 0.0194,0.0246 0.0312,0.0323 a 0.50097,0.51819158 0 0 0 0.0937,0.0969 c 0.95145,0.5682002 2.20068,0.2407102 2.75,-0.74345 0.46922,-0.84064 0.27778,-1.87694 -0.375,-2.5213 a 0.50262213,0.52231753 0 0 0 -0.0312,-0.0647 c -0.006,-0.005 -0.0251,0.005 -0.0312,0 a 0.50262213,0.52231753 0 0 0 -0.0312,-0.0323 c -0.0275,-0.0237 -0.0336,-0.0747 -0.0625,-0.0969 a 0.50262213,0.52231753 0 0 0 0,-0.0323 c -1.77629,-1.631 -4.30344,-2.93446 -7.34375,-3.84658 -2.3514,-0.70544 -4.84998,-1.13016 -7.375,-1.29297 -1.26251,-0.0814 -2.52539,-0.10973 -3.78125,-0.0646 z m 1.875,1.03438 c 3.0708,0.0463 6.16037,0.47336 9,1.32529 l 0.0312,0 c 2.76259,0.83245 5.04679,2.04432 6.65625,3.42637 a 0.50005001,0.51723997 0 0 0 0.21875,0.22627 c 0.48342,0.28869 0.6541,0.92223 0.375,1.42227 -0.23724,0.42504 -0.72255,0.61655 -1.15625,0.48486 a 0.49889166,0.51844088 0 0 0 -0.15625,-0.0969 c -1.02284,-0.68188 -2.16864,-1.28682 -3.46875,-1.81017 -4.30756,-1.73396 -9.49646,-2.39535 -14.46875,-2.06875 -4.8872196,0.32102 -9.5421896,1.6205 -12.90624977,3.81426 -0.008,0.005 -0.0237,-0.005 -0.0312,0 a 0.50097251,0.51819418 0 0 0 -0.0625,0.0323 0.50097251,0.51819418 0 0 0 -0.0625,0.0323 c -0.0119,0.008 -0.0194,0.0244 -0.0312,0.0323 -0.47706,0.25937 -1.07163003,0.0673 -1.34375003,-0.42021 -0.26792,-0.48002 -0.12657,-1.08748 0.3125,-1.38995 a 0.50262213,0.52231753 0 0 0 0.0625,-0.0323 0.50005001,0.51723997 0 0 0 0.18750003,-0.16162 c 2.56214017,-2.25136 6.72203017,-3.84535 11.37499977,-4.49307 1.76729,-0.24602 3.62627,-0.35108 5.46875,-0.32324 z" - id="path5194" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="arc" - style="fill:none;stroke:url(#linearGradient5212);stroke-width:0.96893835;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - id="path5204" - sodipodi:cx="-285.49203" - sodipodi:cy="-135.7495" - sodipodi:rx="18.775068" - sodipodi:ry="9.3875341" - d="m -300.83968,-141.15673 c 5.97266,-4.23814 17.68585,-5.25293 26.16212,-2.26659 1.7838,0.62846 3.33482,1.4076 4.58342,2.30242" - transform="matrix(-1.0296667,0,0,1.0344536,-278.49445,154.74398)" - sodipodi:start="3.7554218" - sodipodi:end="5.6740176" - sodipodi:open="true" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - 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;color:#000000;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m -3.5925728,33.735378 0,0.0312 c 0,6.80149 5.4797602,12.28125 12.2812502,12.28125 l 9.2499996,0 0,-1 -9.2499996,0 c -6.26479,0 -11.2812502,-5.01646 -11.2812502,-11.28125 l 0,-0.0312 -1,0 z" - id="rect5551" - sodipodi:nodetypes="ccccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:nodetypes="cccccccc" - id="path5431" - d="m 33.003467,19.691354 c 2.15778,0 3.89467,1.77306 3.89467,3.975801 l 0,6.984518 c 0,2.20273 -1.73689,3.9758 -3.89467,3.9758 l -3.07307,0.04092 -0.0268,-14.992278 c 1.3839,0.04051 1.81932,0.01533 3.0999,0.01533 l 0,-9.2e-5 z" - style="fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient5667);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - y="19.212761" - x="-32.432659" - height="14.883246" - width="2.0379403" - id="rect5433" - style="fill:url(#linearGradient5443-6);fill-opacity:1;stroke:none" - transform="scale(-1,1)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - style="opacity:0.5;fill:url(#radialGradient5447-5);fill-opacity:1;stroke:none" - d="m 32.779907,20.143134 c 1.82155,0 3.2878,1.657121 3.2878,3.715816 l 0,6.527768 c 0,2.058685 -1.46625,3.715805 -3.2878,3.715805 l -2.40128,-0.03334 0,-13.925911 c 1.16825,0.03784 1.32024,0 2.40128,0 l 0,-1.39e-4 z" - id="path5437" - sodipodi:nodetypes="cccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - ry="2.0194242" - rx="2.0194242" - y="7.854322" - x="43.456417" - height="9.9894991" - width="4.0564089" - id="rect4784" - style="fill:#555753;fill-opacity:1;stroke:url(#linearGradient4792);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - transform="matrix(0,1,1,0,0,0)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0081301" - inkscape:original="M -103.46875 -287.5 C -104.58751 -287.5 -105.5 -286.58751 -105.5 -285.46875 L -105.5 -279.53125 C -105.5 -278.41249 -104.58751 -277.5 -103.46875 -277.5 L -102.53125 -277.5 C -101.41249 -277.5 -100.5 -278.41249 -100.5 -279.53125 L -100.5 -285.46875 C -100.5 -286.58751 -101.41249 -287.5 -102.53125 -287.5 L -103.46875 -287.5 z " - style="opacity:0.6081081;fill:none;stroke:url(#linearGradient4977);stroke-width:1.22016776;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - id="path4967" - d="m -103.46875,-286.5 c -0.57059,0 -1.03125,0.46066 -1.03125,1.03125 l 0,5.9375 c 0,0.57059 0.46066,1.03125 1.03125,1.03125 l 0.9375,0 c 0.57059,0 1.03125,-0.46066 1.03125,-1.03125 l 0,-5.9375 c 0,-0.57059 -0.46066,-1.03125 -1.03125,-1.03125 l -0.9375,0 z" - transform="matrix(0,0.67167761,1,0,295.34493,114.69191)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - transform="matrix(0,1,1,0,0,0)" - style="fill:url(#linearGradient5632);fill-opacity:1;stroke:none" - id="rect5572" - width="3.0350325" - height="8.8761415" - x="43.98975" - y="8.3505688" - rx="1.5175163" - ry="1.5023295" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient5758);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:220" - d="m -2.1502628,19.497458 c -2.15778,0 -3.89467,1.781702 -3.89467,3.995182 l 0,7.01857 c 0,2.213469 1.73689,3.995183 3.89467,3.995183 l 3.05582003,0.0024 0.023,-15.022765 c -1.3839,0.04071 -1.79824,0.0115 -3.07882003,0.0115 l 0,-9.6e-5 z" - id="path5707" - sodipodi:nodetypes="cccccccc" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient5719-5);fill-opacity:1;stroke:none" - id="rect5709" - width="2.0024707" - height="14.989019" - x="-1.5749686" - y="18.992523" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient3623);fill-opacity:1;stroke:none" - id="rect5711" - width="1.9620597" - height="15.908196" - x="0.44016811" - y="19.01931" - rx="0.98102987" - ry="0.98102987" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:nodetypes="cccccccc" - id="path5713" - d="m -1.9267028,19.949234 c -1.82155,0 -3.2878,1.657121 -3.2878,3.715816 l 0,6.527768 c 0,2.058685 1.46625,3.715805 3.2878,3.715805 l 2.40128003,-0.03334 0,-13.925911 c -1.16825,0.03784 -1.32024,0 -2.40128003,0 l 0,-1.39e-4 z" - style="opacity:0.5;fill:url(#radialGradient5721-4);fill-opacity:1;stroke:none" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient4553);fill-opacity:1;stroke:none" - id="rect5811" - width="1.0079625" - height="3.591476" - x="-3.557543" - y="18.549107" - rx="0.50398123" - ry="0.50398123" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <path - sodipodi:type="arc" - style="fill:#dee1e3;fill-opacity:1;stroke:none" - id="path5859" - sodipodi:cx="-244.01906" - sodipodi:cy="-24.045986" - sodipodi:rx="0.83739835" - sodipodi:ry="1.3739837" - d="m -243.18166,-24.045986 c 0,0.75883 -0.37492,1.373984 -0.8374,1.373984 -0.46248,0 -0.8374,-0.615154 -0.8374,-1.373984 0,-0.75883 0.37492,-1.373984 0.8374,-1.373984 0.46248,0 0.8374,0.615154 0.8374,1.373984 z" - transform="matrix(1.2048093,0,0,1.0941414,303.39913,71.819285)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - style="fill:url(#linearGradient4984);fill-opacity:1;stroke:none" - id="rect5811-4" - width="1.0079625" - height="2.3272483" - x="45.000946" - y="-9.4003887" - rx="0.50398123" - ry="0.50398123" - transform="matrix(0,1,-1,0,0,0)" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" /> - <rect - y="0.14285715" - x="-8.5714283" - height="48" - width="48" - id="rect5863" - style="fill:#ffffff;fill-opacity:0;stroke:none" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <rect - ry="0.50398123" - rx="0.50398123" - y="18.158859" - x="33.470028" - height="3.9627495" - width="0.97544211" - id="rect4561" - style="fill:url(#linearGradient4563);fill-opacity:1;stroke:none" - inkscape:export-xdpi="90.108963" - inkscape:export-ydpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" /> - <rect - inkscape:export-ydpi="90.108963" - inkscape:export-xdpi="90.108963" - inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/voice.png" - ry="0.98102987" - rx="0.98102987" - y="19.01931" - x="28.43862" - height="15.908196" - width="1.9620597" - id="rect3625" - style="fill:url(#linearGradient3646);fill-opacity:1;stroke:none" /> - </g> -</svg> diff --git a/panels/sound/data/icons/48x48/status/audio-input-microphone-high.png b/panels/sound/data/icons/48x48/status/audio-input-microphone-high.png Binary files differdeleted file mode 100644 index e26b9d901..000000000 --- a/panels/sound/data/icons/48x48/status/audio-input-microphone-high.png +++ /dev/null diff --git a/panels/sound/data/icons/48x48/status/audio-input-microphone-low.png b/panels/sound/data/icons/48x48/status/audio-input-microphone-low.png Binary files differdeleted file mode 100644 index 4de2d5b5e..000000000 --- a/panels/sound/data/icons/48x48/status/audio-input-microphone-low.png +++ /dev/null diff --git a/panels/sound/data/icons/48x48/status/audio-input-microphone-medium.png b/panels/sound/data/icons/48x48/status/audio-input-microphone-medium.png Binary files differdeleted file mode 100644 index 7cae08a31..000000000 --- a/panels/sound/data/icons/48x48/status/audio-input-microphone-medium.png +++ /dev/null diff --git a/panels/sound/data/icons/48x48/status/audio-input-microphone-muted.png b/panels/sound/data/icons/48x48/status/audio-input-microphone-muted.png Binary files differdeleted file mode 100644 index ba3ddf99a..000000000 --- a/panels/sound/data/icons/48x48/status/audio-input-microphone-muted.png +++ /dev/null diff --git a/panels/sound/data/icons/meson.build b/panels/sound/data/icons/meson.build deleted file mode 100644 index 0c45ed577..000000000 --- a/panels/sound/data/icons/meson.build +++ /dev/null @@ -1,69 +0,0 @@ -apps_files = [ - 'multimedia-volume-control.png', - 'multimedia-volume-control.svg' -] - -device_files = ['audio-headset.svg'] - -status_files = [ - 'audio-input-microphone-high.png', - 'audio-input-microphone-low.png', - 'audio-input-microphone-medium.png', - 'audio-input-microphone-muted.png' -] - -scalable_device_files = [ - 'audio-speaker-center-back.svg', - 'audio-speaker-center-back-testing.svg', - 'audio-speaker-center.svg', - 'audio-speaker-center-testing.svg', - 'audio-speaker-left-back.svg', - 'audio-speaker-left-back-testing.svg', - 'audio-speaker-left-side.svg', - 'audio-speaker-left-side-testing.svg', - 'audio-speaker-left.svg', - 'audio-speaker-left-testing.svg', - 'audio-speaker-mono.svg', - 'audio-speaker-mono-testing.svg', - 'audio-speaker-right-back.svg', - 'audio-speaker-right-back-testing.svg', - 'audio-speaker-right-side.svg', - 'audio-speaker-right-side-testing.svg', - 'audio-speaker-right.svg', - 'audio-speaker-right-testing.svg', - 'audio-speaker-testing.svg', - 'audio-subwoofer.svg', - 'audio-subwoofer-testing.svg' -] - -icon_sizes = [ - ['16x16', [apps_files, device_files, status_files]], - ['22x22', [apps_files, [], status_files]], - ['24x24', [['multimedia-volume-control.png'], device_files, status_files]], - ['32x32', [apps_files, device_files, status_files]], - ['48x48', [['multimedia-volume-control.png'], device_files, []]], - ['scalable', [['multimedia-volume-control.svg'], scalable_device_files, []]] -] - -foreach icon_size: icon_sizes - foreach file: icon_size[1][0] - install_data( - join_paths(icon_size[0], 'apps', file), - install_dir: join_paths(control_center_icondir, 'hicolor', icon_size[0], 'apps') - ) - endforeach - - foreach file: icon_size[1][1] - install_data( - join_paths(icon_size[0], 'devices', file), - install_dir: join_paths(control_center_pkgdatadir, 'icons', 'hicolor', icon_size[0], 'devices') - ) - endforeach - - foreach file: icon_size[1][2] - install_data( - join_paths(icon_size[0], 'status', file), - install_dir: join_paths(control_center_pkgdatadir, 'icons', 'hicolor', icon_size[0], 'status') - ) - endforeach -endforeach diff --git a/panels/sound/data/icons/render-icon-theme.py b/panels/sound/data/icons/render-icon-theme.py deleted file mode 100755 index 9e6a476c3..000000000 --- a/panels/sound/data/icons/render-icon-theme.py +++ /dev/null @@ -1,169 +0,0 @@ -#!/usr/bin/env python - -import os -import sys -import xml.sax -import subprocess - -INKSCAPE = '/usr/bin/inkscape' -OPTIPNG = '/usr/bin/optipng' -SRC = os.path.join('.', 'src') - -inkscape_process = None - -def optimize_png(png_file): - if os.path.exists(OPTIPNG): - process = subprocess.Popen([OPTIPNG, '-quiet', '-o7', png_file]) - process.wait() - -def wait_for_prompt(process, command=None): - if command is not None: - process.stdin.write(command+'\n') - - # This is kinda ugly ... - # Wait for just a '>', or '\n>' if some other char appearead first - output = process.stdout.read(1) - if output == '>': - return - - output += process.stdout.read(1) - while output != "\n>": - output += process.stdout.read(1) - output = output[1:] - -def start_inkscape(): - process = subprocess.Popen([INKSCAPE, '--shell'], bufsize=0, stdin=subprocess.PIPE, stdout=subprocess.PIPE) - wait_for_prompt(process) - return process - -def inkscape_render_rect(icon_file, rect, output_file): - global inkscape_process - if inkscape_process is None: - inkscape_process = start_inkscape() - wait_for_prompt(inkscape_process, '%s -i %s -e %s' % (icon_file, rect, output_file)) - optimize_png(output_file) - -class ContentHandler(xml.sax.ContentHandler): - ROOT = 0 - SVG = 1 - LAYER = 2 - OTHER = 3 - TEXT = 4 - def __init__(self, path, force=False, filter=None): - self.stack = [self.ROOT] - self.inside = [self.ROOT] - self.path = path - self.rects = [] - self.state = self.ROOT - self.chars = "" - self.force = force - self.filter = filter - - def endDocument(self): - pass - - def startElement(self, name, attrs): - if self.inside[-1] == self.ROOT: - if name == "svg": - self.stack.append(self.SVG) - self.inside.append(self.SVG) - return - elif self.inside[-1] == self.SVG: - if (name == "g" and attrs.has_key('inkscape:groupmode') and attrs.has_key('inkscape:label') - and attrs['inkscape:groupmode'] == 'layer' and attrs['inkscape:label'].startswith('baseplate')): - self.stack.append(self.LAYER) - self.inside.append(self.LAYER) - self.context = None - self.icon_name = None - self.rects = [] - return - elif self.inside[-1] == self.LAYER: - if name == "text" and attrs.has_key('inkscape:label') and attrs['inkscape:label'] == 'context': - self.stack.append(self.TEXT) - self.inside.append(self.TEXT) - self.text='context' - self.chars = "" - return - elif name == "text" and attrs.has_key('inkscape:label') and attrs['inkscape:label'] == 'icon-name': - self.stack.append(self.TEXT) - self.inside.append(self.TEXT) - self.text='icon-name' - self.chars = "" - return - elif name == "rect": - self.rects.append(attrs) - - self.stack.append(self.OTHER) - - - def endElement(self, name): - stacked = self.stack.pop() - if self.inside[-1] == stacked: - self.inside.pop() - - if stacked == self.TEXT and self.text is not None: - assert self.text in ['context', 'icon-name'] - if self.text == 'context': - self.context = self.chars - elif self.text == 'icon-name': - self.icon_name = self.chars - self.text = None - elif stacked == self.LAYER: - assert self.icon_name - assert self.context - - if self.filter is not None and not self.icon_name in self.filter: - return - - print '%s %s' % (self.context, self.icon_name) - for rect in self.rects: - width = rect['width'] - height = rect['height'] - id = rect['id'] - - dir = os.path.join("%sx%s" % (width, height), self.context) - outfile = os.path.join(dir, self.icon_name+'.png') - if not os.path.exists(dir): - os.makedirs(dir) - # Do a time based check! - if self.force or not os.path.exists(outfile): - inkscape_render_rect(self.path, id, outfile) - sys.stdout.write('.') - else: - stat_in = os.stat(self.path) - stat_out = os.stat(outfile) - if stat_in.st_mtime > stat_out.st_mtime: - inkscape_render_rect(self.path, id, outfile) - sys.stdout.write('.') - else: - sys.stdout.write('-') - sys.stdout.flush() - sys.stdout.write('\n') - sys.stdout.flush() - - def characters(self, chars): - self.chars += chars.strip() - -if len(sys.argv) == 1: - if not os.path.exists('gnome'): - os.mkdir('gnome') - print 'Rendering from SVGs in %s' % SRC - for file in os.listdir(SRC): - if file[-4:] == '.svg': - file = os.path.join(SRC, file) - handler = ContentHandler(file) - xml.sax.parse(open(file), handler) -else: - file = os.path.join(SRC, sys.argv[1] + '.svg') - if len(sys.argv) > 2: - icons = sys.argv[2:] - else: - icons = None - if os.path.exists(os.path.join(file)): - handler = ContentHandler(file, True, filter=icons) - xml.sax.parse(open(file), handler) - else: - print "Error: No such file %s" % file - sys.exit(1) - - diff --git a/panels/sound/data/icons/scalable/apps/multimedia-volume-control.svg b/panels/sound/data/icons/scalable/apps/multimedia-volume-control.svg deleted file mode 100644 index b22a9543d..000000000 --- a/panels/sound/data/icons/scalable/apps/multimedia-volume-control.svg +++ /dev/null @@ -1,554 +0,0 @@ -<?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://web.resource.org/cc/" - 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" - width="48" - height="48" - id="svg2" - inkscape:label="PozadÃ" - sodipodi:version="0.32" - inkscape:version="0.45" - version="1.0" - sodipodi:docbase="C:\Documents and Settings\nevim\Plocha\gnome-sound-properties\scalable" - sodipodi:docname="gnome-sound-properties.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="C:\Documents and Settings\nevim\Plocha\git-sound.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:modified="true"> - <defs - id="defs3"> - <linearGradient - id="linearGradient6304" - inkscape:collect="always"> - <stop - id="stop6306" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1" /> - <stop - id="stop6308" - offset="1" - style="stop-color:#80827d;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6296"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6298" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6300" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6117"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop6119" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop6121" /> - </linearGradient> - <linearGradient - id="linearGradient6105"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop6107" /> - <stop - id="stop6113" - offset="0.45209709" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6109" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6091"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop6093" /> - <stop - style="stop-color:#81837e;stop-opacity:0.98648649" - offset="1" - id="stop6095" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6077"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop6079" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop6081" /> - </linearGradient> - <linearGradient - id="linearGradient6041" - inkscape:collect="always"> - <stop - id="stop6043" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop6045" - offset="1" - style="stop-color:#2e3436;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6017"> - <stop - style="stop-color:#729fcf;stop-opacity:1" - offset="0" - id="stop6019" /> - <stop - style="stop-color:#3465a4;stop-opacity:1" - offset="1" - id="stop6021" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6003"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop6005" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="1" - id="stop6007" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5995"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop5997" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop5999" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5995" - id="linearGradient6001" - x1="28.203571" - y1="25.09193" - x2="21.583036" - y2="35.983383" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6003" - id="linearGradient6009" - x1="15.741923" - y1="33.116215" - x2="36.696983" - y2="22.224764" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6041" - id="radialGradient6033" - cx="29.922518" - cy="32.704834" - fx="29.922518" - fy="32.704834" - r="19.736389" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0244195,0,0,1.014266,-0.5092741,0.685707)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6017" - id="radialGradient6037" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2463993,0,0,1.3258525,-7.2755971,-10.235034)" - cx="23.597727" - cy="19.792301" - fx="23.597727" - fy="19.792301" - r="19.736389" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6077" - id="radialGradient6049" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2463993,0,0,1.3258525,-7.2755971,-10.235034)" - cx="32.09296" - cy="33.488297" - fx="32.09296" - fy="33.488297" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6091" - id="linearGradient6097" - x1="10.602306" - y1="35.894798" - x2="47.001671" - y2="35.690231" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6105" - id="linearGradient6111" - x1="15.551565" - y1="41" - x2="23.73423" - y2="41" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6117" - id="radialGradient6123" - cx="26.927441" - cy="25.766438" - fx="26.927441" - fy="25.766438" - r="19.161766" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient6304" - id="radialGradient6290" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.4228001,0,0,0.3113668,12.39774,19.545318)" - cx="17.831682" - cy="18.914896" - fx="17.831682" - fy="18.914896" - r="19.736389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6296" - id="linearGradient6302" - x1="34.825703" - y1="42.345951" - x2="28.763092" - y2="32.737347" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="5.0625" - inkscape:cx="66.935794" - inkscape:cy="36.523345" - inkscape:document-units="px" - inkscape:current-layer="layer1" - width="48px" - height="48px" - inkscape:showpageshadow="false" - showgrid="true" - inkscape:window-width="973" - inkscape:window-height="849" - inkscape:window-x="0" - inkscape:window-y="26" - showborder="false" /> - <metadata - id="metadata6"> - <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>Sound CC applet</dc:title> - <dc:date>17.02.2007</dc:date> - <dc:creator> - <cc:Agent> - <dc:title>Josef vybÃral</dc:title> - </cc:Agent> - </dc:creator> - <dc:rights> - <cc:Agent> - <dc:title>Josef vybÃral</dc:title> - </cc:Agent> - </dc:rights> - <dc:identifier>http://blog.vybiral.info</dc:identifier> - <dc:source>http://blog.vybiral.info</dc:source> - <dc:coverage>sound, reproductor, note</dc:coverage> - <cc:license - rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> - </cc:Work> - <cc:License - rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> - <cc:permits - rdf:resource="http://web.resource.org/cc/Reproduction" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/Distribution" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/Notice" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/ShareAlike" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/SourceCode" /> - </cc:License> - </rdf:RDF> - </metadata> - <g - inkscape:label="Repros" - inkscape:groupmode="layer" - id="layer1" - style="display:inline"> - <path - transform="matrix(1.0959323,0,0,0.8089025,-5.5106536,11.657465)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6115" - style="opacity:0.78165935;color:#000000;fill:url(#radialGradient6123);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.04187703;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.5479662,0,0,0.3392172,9.2446732,29.259582)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6051" - style="opacity:1;color:#000000;fill:url(#linearGradient6097);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:2.31944561;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.65089345;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6099" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.4957789,0,0,0.2870299,10.649943,30.604261)" /> - <path - style="opacity:0.56768559;fill:url(#linearGradient6111);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 14.568214,40 C 14.568214,40 17,44 24,44 L 24,38 L 14.590994,38 L 14.568214,40 z" - id="path6103" /> - <path - transform="matrix(1.0176515,0,0,0.8871834,-3.4027508,1.6404446)" - d="M 46.089207 25.766438 A 19.161766 19.161766 0 1 1 7.7656746,25.766438 A 19.161766 19.161766 0 1 1 46.089207 25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6216" - style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.05243087;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.05243087;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6011" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(1.0176515,0,0,0.8871834,-3.4027508,0.6404459)" /> - <path - transform="matrix(0.9230621,0,0,0.8089025,-0.6682001,3.1574644)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6013" - style="opacity:1;color:#000000;fill:url(#radialGradient6033);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.15727437;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.37387384;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6089" - sodipodi:cx="19.378376" - sodipodi:cy="17.854717" - sodipodi:rx="0.44991162" - sodipodi:ry="0.72862023" - d="M 19.828288,17.854717 A 0.44991162,0.72862023 0 1 1 18.928464,17.854717 A 0.44991162,0.72862023 0 1 1 19.828288,17.854717 z" - transform="matrix(2.2226587,0,0,1.3724571,-18.071516,10.495167)" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.1150111;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.27477477;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6015" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.9632898,0,0,0.8349961,-1.9805954,1.985125)" /> - <path - style="fill:url(#linearGradient6302);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 17.034171,38.999185 C 21.404465,41.254322 38.074051,40.980927 42,28 C 42,28 36.363653,42.203426 17.034171,38.999185 z" - id="path6039" - sodipodi:nodetypes="csc" /> - <path - style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.26576574;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 31.223824,28.652367 C 31.223824,31.136367 27.928944,33.500002 24.340943,33.500002 C 20.752943,33.500002 18.499998,31.484001 18.499998,29.000001 C 18.499998,26.516 21.411999,23.5 24.999999,23.5 C 28.588,23.5 31.223824,26.168366 31.223824,28.652367 z" - id="path6055" - sodipodi:nodetypes="csssc" /> - <path - style="color:#000000;fill:url(#radialGradient6290);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 30.5,28.000001 C 30.5,30.484001 27.588,32.500002 23.999999,32.500002 C 20.411999,32.500002 17.499998,30.484001 17.499998,28.000001 C 17.499998,25.516 20.411999,22.5 23.999999,22.5 C 27.588,22.5 30.5,25.516 30.5,28.000001 z" - id="path6047" - sodipodi:nodetypes="csssc" /> - <path - transform="matrix(2.2226587,0,0,1.3724571,-21.071516,10.495167)" - d="M 19.828288,17.854717 A 0.44991162,0.72862023 0 1 1 18.928464,17.854717 A 0.44991162,0.72862023 0 1 1 19.828288,17.854717 z" - sodipodi:ry="0.72862023" - sodipodi:rx="0.44991162" - sodipodi:cy="17.854717" - sodipodi:cx="19.378376" - id="path6087" - style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.37387384;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6083" - sodipodi:cx="19.378376" - sodipodi:cy="17.854717" - sodipodi:rx="0.44991162" - sodipodi:ry="0.72862023" - d="M 19.828288,17.854717 A 0.44991162,0.72862023 0 1 1 18.928464,17.854717 A 0.44991162,0.72862023 0 1 1 19.828288,17.854717 z" - transform="matrix(1.1113294,0,0,1.3724571,0.9642417,11.495167)" /> - <path - transform="matrix(1.1113294,0,0,1.3724571,3.9642417,11.495167)" - d="M 19.828288,17.854717 A 0.44991162,0.72862023 0 1 1 18.928464,17.854717 A 0.44991162,0.72862023 0 1 1 19.828288,17.854717 z" - sodipodi:ry="0.72862023" - sodipodi:rx="0.44991162" - sodipodi:cy="17.854717" - sodipodi:cx="19.378376" - id="path6085" - style="opacity:1;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35585584;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <g - id="g6194" - transform="translate(1,-1)"> - <path - sodipodi:nodetypes="cccssssccssccccssccssssssc" - id="path6129" - d="M 43.46875,1.96875 C 43.341028,1.9713959 43.211505,1.998755 43.09375,2.03125 L 29.625,3 C 29.574046,2.9958278 29.520341,2.9676689 29.46875,2.96875 C 29.027926,2.9778822 28.643139,3.1915368 28.375,3.5 C 28.202199,3.6987874 28.080462,3.9184764 28.03125,4.1875 C 28.010332,4.2875967 27.999825,4.3942071 28,4.5 C 28.000051,4.5307141 27.998058,4.562684 28,4.59375 L 28,18.5 C 27.99235,19.040954 28.282754,19.53979 28.75,19.8125 C 29.217247,20.085209 29.782753,20.085209 30.25,19.8125 C 30.717246,19.53979 31.00765,19.040954 31,18.5 L 31,7.90625 L 42,7.125 L 42,17.5 C 41.99235,18.040954 42.282754,18.53979 42.75,18.8125 C 43.217247,19.085209 43.782753,19.085209 44.25,18.8125 C 44.717246,18.53979 45.00765,18.040954 45,17.5 L 45,3.71875 C 45.009715,3.6495233 45.000118,3.5716662 45,3.5 C 45.000636,3.4696526 45.001192,3.4364034 45,3.40625 C 44.993528,3.3026966 44.963584,3.1901475 44.9375,3.09375 C 44.91387,3.0012937 44.884391,2.9299172 44.84375,2.84375 C 44.80019,2.7563932 44.7464,2.670181 44.6875,2.59375 C 44.644141,2.5354224 44.614528,2.4582776 44.5625,2.40625 C 44.273456,2.1172076 43.877428,1.960186 43.46875,1.96875 z" - style="fill:#ce5c00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - transform="matrix(1.1476473,0,0,1.3276281,-10.517647,-3.9468619)" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - sodipodi:ry="1.8830575" - sodipodi:rx="3.9210651" - sodipodi:cy="17.284103" - sodipodi:cx="31.819572" - id="path6125" - style="opacity:1;color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.81013507;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.81013507;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6127" - sodipodi:cx="31.819572" - sodipodi:cy="17.284103" - sodipodi:rx="3.9210651" - sodipodi:ry="1.8830575" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - transform="matrix(1.1476473,0,0,1.3276281,3.4823534,-4.9468619)" /> - <path - sodipodi:nodetypes="cc" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 29.5,19.5 L 29.5,4.5" - id="path6163" /> - <path - sodipodi:nodetypes="cc" - id="path6165" - d="M 43.5,18.5 L 43.5,3.5" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 29.5,4.5 L 43.5,3.5" - id="path6167" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - id="path6186" - d="M 29.5,6.5 L 43.5,5.5" - style="fill:none;fill-rule:evenodd;stroke:#f57900;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.1859163;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6188" - sodipodi:cx="31.819572" - sodipodi:cy="17.284103" - sodipodi:rx="3.9210651" - sodipodi:ry="1.8830575" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - transform="matrix(0.8926147,0,0,0.7965768,-2.4026189,5.2318838)" /> - <path - transform="matrix(0.8926146,0,0,0.7965769,11.597384,4.2318822)" - d="M 35.740638,17.284103 A 3.9210651,1.8830575 0 1 1 27.898507,17.284103 A 3.9210651,1.8830575 0 1 1 35.740638,17.284103 z" - sodipodi:ry="1.8830575" - sodipodi:rx="3.9210651" - sodipodi:cy="17.284103" - sodipodi:cx="31.819572" - id="path6190" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.18591619;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:nodetypes="cc" - id="path6192" - d="M 29.5,4.5 L 43.5,3.5" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999964;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <path - id="path6212" - d="M 29.5,19.5 L 29.5,4.5" - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999964;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:nodetypes="cc" /> - <path - style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999964;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.32882882;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 43.5,18.5 L 43.5,3.5" - id="path6214" - sodipodi:nodetypes="cc" /> - </g> - <path - transform="matrix(7.8280762e-2,0,0,4.6165615e-2,23.392097,23.925862)" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - sodipodi:ry="19.161766" - sodipodi:rx="19.161766" - sodipodi:cy="25.766438" - sodipodi:cx="26.927441" - id="path6206" - style="opacity:1;color:#000000;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54301095;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:1;color:#000000;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54301095;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path6208" - sodipodi:cx="26.927441" - sodipodi:cy="25.766438" - sodipodi:rx="19.161766" - sodipodi:ry="19.161766" - d="M 46.089207,25.766438 A 19.161766,19.161766 0 1 1 7.7656746,25.766438 A 19.161766,19.161766 0 1 1 46.089207,25.766438 z" - transform="matrix(0.1043744,0,0,7.828089e-2,19.189462,25.48298)" /> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-center-back-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-center-back-testing.svg deleted file mode 100644 index 9fc8640e7..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-center-back-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-center-back-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="31.254917" - inkscape:cy="25.749564" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="3440" - inkscape:window-height="1376" - inkscape:window-x="0" - inkscape:window-y="27" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(1.2838284e-7,-2,-2,-1.2838284e-7,434.06251,122.00041)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.50000005;marker:none;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.50000005;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-center-back.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-center-back.svg deleted file mode 100644 index d2f3e3872..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-center-back.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-center-back.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="31.254917" - inkscape:cy="25.749564" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(1.2838284e-7,-2,-2,-1.2838284e-7,434.06251,122.00041)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391027;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391027;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.16391027;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-center-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-center-testing.svg deleted file mode 100644 index 06f7d707e..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-center-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-center-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8" - inkscape:cx="1.6296281" - inkscape:cy="-11.453638" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="3440" - inkscape:window-height="1376" - inkscape:window-x="0" - inkscape:window-y="27" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(2.9261167e-8,2.0000002,-2.0000002,2.9261167e-8,434.06252,-74.000396)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-center.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-center.svg deleted file mode 100644 index 2cb83e0ea..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-center.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-center.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8" - inkscape:cx="1.6296281" - inkscape:cy="-11.453638" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title>audio-speaker-center</dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(2.9261167e-8,2.0000002,-2.0000002,2.9261167e-8,434.06252,-74.000396)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391015;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391015;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.16391015;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-left-back-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-left-back-testing.svg deleted file mode 100644 index eed2aa829..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-left-back-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-left-back-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8" - inkscape:cx="-2.4548513" - inkscape:cy="5.9299209" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="3440" - inkscape:window-height="1376" - inkscape:window-x="0" - inkscape:window-y="27" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(1.4142135,-1.4142137,1.4142137,1.4142135,-335.14805,-196.61703)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.50000004;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-left-back.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-left-back.svg deleted file mode 100644 index b9da42d8b..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-left-back.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-left-back.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8" - inkscape:cx="-2.4548513" - inkscape:cy="5.9299209" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title /> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(1.4142135,-1.4142137,1.4142137,1.4142135,-335.14805,-196.61703)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.16391024;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-left-side-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-left-side-testing.svg deleted file mode 100644 index a699398d6..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-left-side-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-left-side-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="9.5816545" - inkscape:cy="14.163095" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="3440" - inkscape:window-height="1376" - inkscape:window-x="0" - inkscape:window-y="27" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(2.0000001,-8.6649932e-8,8.6649932e-8,2.0000001,-73.937919,-386.00002)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.50000002;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-left-side.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-left-side.svg deleted file mode 100644 index 65ce1e2eb..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-left-side.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-left-side.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="20.01148" - inkscape:cy="-16.419273" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title /> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(2.0000001,-8.6649932e-8,8.6649932e-8,2.0000001,-73.937919,-386.00002)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.16391021;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-left-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-left-testing.svg deleted file mode 100644 index 87a83af51..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-left-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-left-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="80.640376" - inkscape:cy="35.349603" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="3440" - inkscape:window-height="1376" - inkscape:window-x="0" - inkscape:window-y="27" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(1.4142137,1.4142136,-1.4142136,1.4142137,244.67953,-335.21055)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.50000002;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-left.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-left.svg deleted file mode 100644 index 84e794f0a..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-left.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-left.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="5.6568542" - inkscape:cx="125.621" - inkscape:cy="44.778157" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title /> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(1.4142137,1.4142136,-1.4142136,1.4142137,244.67953,-335.21055)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.1639102;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.1639102;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.1639102;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-mono-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-mono-testing.svg deleted file mode 100644 index 9f1563485..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-mono-testing.svg +++ /dev/null @@ -1,482 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-mono-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="33.690885" - inkscape:cy="21.493021" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" - d="m 48.002713,24 c -10e-7,5.628441 -2.000001,10.343459 -5.171142,14 H 40.00271 l 10e-7,-2.96144 C 42.532031,32 44.002713,28.59984 44.002713,24 c 0,-4.59984 -1.55906,-8 -3.999999,-11.03856 V 10 h 2.76256 c 2.931499,3.28088 5.237439,8.37156 5.237439,14 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" - d="m 42.002714,23.999999 c -2e-6,4.333281 -1.477563,8.039641 -4.000003,10 l -2,10e-7 2e-6,-4 c 1.213041,-1.577559 1.999999,-3.517739 1.999999,-5.999999 10e-7,-2.482261 -0.78696,-4.43876 -1.999999,-6.000001 l 10e-7,-4 h 1.999999 c 2.445801,1.989561 4,5.7468 4.000001,9.999999 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" - mask="none" - clip-path="none" - d="m 36.002712,24.000001 c 0,2.51466 -0.6233,4.43142 -1.999999,6 L 32.002711,30 l 1e-6,-6.000002 v -0.749999 l 2e-6,-5.249999 1.999999,-1e-6 c 1.344119,1.673801 1.999999,3.485341 1.999999,6.000002 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - <path - sodipodi:nodetypes="scccscccs" - inkscape:connector-curvature="0" - id="path21788" - d="m 0.065211,24 c 1e-6,5.628441 2.000001,10.343459 5.171142,14 h 2.828861 l -10e-7,-2.96144 C 5.535893,32 4.065211,28.59984 4.065211,24 c 0,-4.59984 1.55906,-8 3.999999,-11.03856 V 10 H 5.30265 C 2.371151,13.28088 0.065211,18.37156 0.065211,24 Z" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" /> - <path - sodipodi:nodetypes="scccscccs" - inkscape:connector-curvature="0" - id="path21790" - d="m 6.06521,23.999999 c 2e-6,4.333281 1.477563,8.039641 4.000003,10 l 2,10e-7 -2e-6,-4 C 10.85217,28.422441 10.065212,26.482261 10.065212,24.000001 10.065211,21.51774 10.852172,19.561241 12.065211,18 l -10e-7,-4 h -1.999999 c -2.445801,1.989561 -4,5.7468 -4.000001,9.999999 z" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" /> - <path - sodipodi:nodetypes="zccccccz" - inkscape:connector-curvature="0" - id="path21792" - d="m 12.065212,24.000001 c 0,2.51466 0.6233,4.43142 1.999999,6 l 2.000002,-1e-6 -1e-6,-6.000002 V 23.249999 L 16.06521,18 l -1.999999,-1e-6 c -1.344119,1.673801 -1.999999,3.485341 -1.999999,6.000002 z" - clip-path="none" - mask="none" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" /> - <circle - style="opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;paint-order:normal" - id="path21794" - cx="24.019533" - cy="24.076326" - r="6.0216699" /> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-mono.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-mono.svg deleted file mode 100644 index 951fc76fd..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-mono.svg +++ /dev/null @@ -1,482 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-mono.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="-2.75781" - inkscape:cy="0.79730978" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" - d="m 48.002713,24 c -10e-7,5.628441 -2.000001,10.343459 -5.171142,14 H 40.00271 l 10e-7,-2.96144 C 42.532031,32 44.002713,28.59984 44.002713,24 c 0,-4.59984 -1.55906,-8 -3.999999,-11.03856 V 10 h 2.76256 c 2.931499,3.28088 5.237439,8.37156 5.237439,14 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" - d="m 42.002714,23.999999 c -2e-6,4.333281 -1.477563,8.039641 -4.000003,10 l -2,10e-7 2e-6,-4 c 1.213041,-1.577559 1.999999,-3.517739 1.999999,-5.999999 10e-7,-2.482261 -0.78696,-4.43876 -1.999999,-6.000001 l 10e-7,-4 h 1.999999 c 2.445801,1.989561 4,5.7468 4.000001,9.999999 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" - mask="none" - clip-path="none" - d="m 36.002712,24.000001 c 0,2.51466 -0.6233,4.43142 -1.999999,6 L 32.002711,30 l 1e-6,-6.000002 v -0.749999 l 2e-6,-5.249999 1.999999,-1e-6 c 1.344119,1.673801 1.999999,3.485341 1.999999,6.000002 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - <path - sodipodi:nodetypes="scccscccs" - inkscape:connector-curvature="0" - id="path21788" - d="m 0.065211,24 c 1e-6,5.628441 2.000001,10.343459 5.171142,14 h 2.828861 l -10e-7,-2.96144 C 5.535893,32 4.065211,28.59984 4.065211,24 c 0,-4.59984 1.55906,-8 3.999999,-11.03856 V 10 H 5.30265 C 2.371151,13.28088 0.065211,18.37156 0.065211,24 Z" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" /> - <path - sodipodi:nodetypes="scccscccs" - inkscape:connector-curvature="0" - id="path21790" - d="m 6.06521,23.999999 c 2e-6,4.333281 1.477563,8.039641 4.000003,10 l 2,10e-7 -2e-6,-4 C 10.85217,28.422441 10.065212,26.482261 10.065212,24.000001 10.065211,21.51774 10.852172,19.561241 12.065211,18 l -10e-7,-4 h -1.999999 c -2.445801,1.989561 -4,5.7468 -4.000001,9.999999 z" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" /> - <path - sodipodi:nodetypes="zccccccz" - inkscape:connector-curvature="0" - id="path21792" - d="m 12.065212,24.000001 c 0,2.51466 0.6233,4.43142 1.999999,6 l 2.000002,-1e-6 -1e-6,-6.000002 V 23.249999 L 16.06521,18 l -1.999999,-1e-6 c -1.344119,1.673801 -1.999999,3.485341 -1.999999,6.000002 z" - clip-path="none" - mask="none" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate" /> - <circle - style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;paint-order:normal" - id="path21794" - cx="24.019533" - cy="24.076326" - r="6.0216699" /> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-right-back-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-right-back-testing.svg deleted file mode 100644 index 9f866606a..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-right-back-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-right-back-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="-19.586532" - inkscape:cy="27.51471" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2027" - inkscape:window-height="1117" - inkscape:window-x="292" - inkscape:window-y="193" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="0"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(-1.4142135,-1.4142137,-1.4142137,1.4142135,383.27305,-196.61703)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.50000004;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-right-back.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-right-back.svg deleted file mode 100644 index 360f97e81..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-right-back.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-right-back.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="-16.050998" - inkscape:cy="27.51471" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title /> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(-1.4142135,-1.4142137,-1.4142137,1.4142135,383.27305,-196.61703)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.16391024;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-right-side-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-right-side-testing.svg deleted file mode 100644 index b5fdeff8c..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-right-side-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-right-side-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="3.5728476" - inkscape:cy="54.167993" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="3440" - inkscape:window-height="1376" - inkscape:window-x="0" - inkscape:window-y="27" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(-2.0000001,-8.6649932e-8,-8.6649932e-8,2.0000001,122.06292,-386.00002)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.50000002;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-right-side.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-right-side.svg deleted file mode 100644 index e42db7ef5..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-right-side.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-right-side.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="3.5728476" - inkscape:cy="54.167993" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title /> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(-2.0000001,-8.6649932e-8,-8.6649932e-8,2.0000001,122.06292,-386.00002)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.16391021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.16391021;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-right-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-right-testing.svg deleted file mode 100644 index 7863f8209..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-right-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-right-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="10.22266" - inkscape:cy="32.058291" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="3440" - inkscape:window-height="1376" - inkscape:window-x="0" - inkscape:window-y="27" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(-1.4142137,1.4142136,1.4142136,1.4142137,-196.55454,-335.21055)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.50000002;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-right.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-right.svg deleted file mode 100644 index ec8ef73e2..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-right.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-right.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="16" - inkscape:cx="23.91016" - inkscape:cy="-4.8792089" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title /> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(-1.4142137,1.4142136,1.4142136,1.4142137,-196.55454,-335.21055)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.1639102;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:1.1639102;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:1.1639102;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-speaker-testing.svg b/panels/sound/data/icons/scalable/devices/audio-speaker-testing.svg deleted file mode 100644 index 7863f8209..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-speaker-testing.svg +++ /dev/null @@ -1,475 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-speaker-right-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="10.22266" - inkscape:cy="32.058291" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="3440" - inkscape:window-height="1376" - inkscape:window-x="0" - inkscape:window-y="27" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - transform="matrix(-1.4142137,1.4142136,1.4142136,1.4142137,-196.55454,-335.21055)" - style="display:inline;stroke-width:0.5" - id="g8093" - inkscape:label="audio-volume-high"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" - id="path5491" - d="m 41.0002,202 h 2.484375 l 2.968754,-3 0.546871,0.0156 v 12 l -0.475297,8.3e-4 L 43.484575,208 H 41.0002 Z" - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none" /> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:none;stroke:none;stroke-width:0.5;marker:none" - id="rect6203" - width="16" - height="16" - x="41.000198" - y="197" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 56.00019,205.0002 c 0,-2.81422 -1,-5.17173 -2.58557,-7 h -1.41443 v 1.48072 c 1.26466,1.51928 2,3.21936 2,5.51928 0,2.29992 -0.77953,4 -2,5.51928 v 1.48072 h 1.38128 c 1.46575,-1.64044 2.61872,-4.18578 2.61872,-7 z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:0.50000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" - d="m 53.00019,205.0002 c 0,-2.16664 -0.73878,-4.01982 -2,-5 h -1 v 2 c 0.60652,0.78878 1,1.75887 1,3 0,1.24113 -0.39348,2.21938 -1,3 v 2 h 1 c 1.2229,-0.99478 2,-2.8734 2,-5 z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:0.50000002;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - mask="none" - clip-path="none" - d="m 50.00019,205.0002 c 0,-1.25733 -0.31165,-2.21571 -1,-3 h -1 v 3 0.375 2.625 h 1 c 0.67206,-0.8369 1,-1.74267 1,-3 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-subwoofer-testing.svg b/panels/sound/data/icons/scalable/devices/audio-subwoofer-testing.svg deleted file mode 100644 index 1274087a3..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-subwoofer-testing.svg +++ /dev/null @@ -1,469 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-subwoofer-testing.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="5.6568542" - inkscape:cx="29.091148" - inkscape:cy="12.927483" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - style="display:inline;stroke-width:0.50000006" - id="g9428" - inkscape:label="display-projector" - transform="matrix(1.9999998,0,0,1.9999998,-194.0632,-913.99991)"> - <path - style="fill:#729fcf;fill-opacity:1;stroke:none;stroke-width:0.75" - d="M 9.9960938,12 C 8.8902739,12 8,13.0462 8,14.3125 v 15.125 C 8,30.70378 8.8316801,32 9.9375,32 h 2 c 0,1.2663 0.948868,2 2.054688,2 h 1.992187 c 1.10582,0 1.953125,-0.7337 1.953125,-2 h 11.976562 c 0,1.2663 0.933243,2 2.039063,2 h 1.988281 c 1.10582,0 1.996094,-0.7337 1.996094,-2 h 2.003906 c 1.10584,0 1.996094,-1.29622 1.996094,-2.5625 V 14.3125 C 39.9375,13.0462 39.047246,12 37.941406,12 Z m 9.0488282,2 c 2.756,0 4.990234,2.23858 4.990234,5 0,2.76142 -2.234234,5 -4.990234,5 -2.756,0 -4.990234,-2.23858 -4.990234,-5 0,-2.76142 2.234234,-5 4.990234,-5 z m 11.970703,1.96875 c 1.665484,0 3.015625,1.350141 3.015625,3.015625 C 34.03125,20.649859 32.681109,22 31.015625,22 29.350141,22 28,20.649859 28,18.984375 28,17.318891 29.350141,15.96875 31.015625,15.96875 Z M 19,16 c -1.656854,0 -3,1.343146 -3,3 0,1.656854 1.343146,3 3,3 1.656854,0 3,-1.343146 3,-3 0,-1.656854 -1.343146,-3 -3,-3 z" - transform="matrix(0.50000005,0,0,0.50000005,97.03161,463)" - id="path9418" - inkscape:connector-curvature="0" - sodipodi:nodetypes="sssscssccsscssssssssssssssssssss" /> - </g> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:1.00000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal" - d="m 25.000001,5 c 5.62844,4e-7 10.343459,2.0000007 13.999999,5.171141 v 2.82886 H 36.03856 C 33,10.470681 29.59984,9.0000003 25,9 c -4.59984,-3e-7 -8,1.55906 -11.03856,3.999999 H 11 v -2.76256 C 14.28088,7.3059393 19.37156,4.9999996 25.000001,5 Z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;fill-rule:nonzero;stroke:none;stroke-width:1.00000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal" - d="m 25,11 c 4.33328,0 8.03964,1.477561 10,4.000001 v 2 L 31,17 c -1.57756,-1.21304 -3.51774,-2 -6,-2 -2.48226,0 -4.43876,0.78696 -6,2 l -4,-1e-6 v -2 C 16.98956,12.5542 20.7468,11 25,11 Z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#729fcf;fill-opacity:0.52697096;stroke:none;stroke-width:1.00000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;marker:none;enable-background:accumulate;font-variant-east_asian:normal" - mask="none" - clip-path="none" - d="m 25,17 c 2.51466,0 4.43142,0.6233 6,2 l -1e-6,2 h -6 -0.75 H 19 v -2 c 1.6738,-1.34412 3.48534,-2 6,-2 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> -</svg> diff --git a/panels/sound/data/icons/scalable/devices/audio-subwoofer.svg b/panels/sound/data/icons/scalable/devices/audio-subwoofer.svg deleted file mode 100644 index 8deec9487..000000000 --- a/panels/sound/data/icons/scalable/devices/audio-subwoofer.svg +++ /dev/null @@ -1,469 +0,0 @@ -<?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" - width="48" - height="48" - id="svg2643" - sodipodi:version="0.32" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - version="1.0" - sodipodi:docname="audio-subwoofer.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs2645"> - <linearGradient - id="linearGradient4389"> - <stop - style="stop-color:#555753;stop-opacity:1;" - offset="0" - id="stop4391" /> - <stop - id="stop4393" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4325"> - <stop - id="stop4327" - offset="0" - style="stop-color:#2e3436;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4329" /> - </linearGradient> - <linearGradient - id="linearGradient21608"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop21610" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop21612" /> - </linearGradient> - <linearGradient - id="linearGradient15341"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop15343" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop15345" /> - </linearGradient> - <linearGradient - id="linearGradient6371"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop6373" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="1" - id="stop6375" /> - </linearGradient> - <linearGradient - id="linearGradient10872"> - <stop - id="stop10874" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#9e9e92;stop-opacity:1;" - offset="0.25301206" - id="stop10876" /> - <stop - id="stop10878" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5254"> - <stop - id="stop5256" - offset="0" - style="stop-color:#707469;stop-opacity:1;" /> - <stop - id="stop5258" - offset="1" - style="stop-color:#2e3335;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient10055"> - <stop - style="stop-color:#bebebe;stop-opacity:1;" - offset="0" - id="stop10057" /> - <stop - id="stop10061" - offset="0.375" - style="stop-color:#e8e8e8;stop-opacity:1;" /> - <stop - style="stop-color:#5c5c5c;stop-opacity:1;" - offset="1" - id="stop10059" /> - </linearGradient> - <linearGradient - id="linearGradient4841"> - <stop - id="stop4843" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#fcaf3e;stop-opacity:0.94117647;" - offset="0" - id="stop4845" /> - <stop - id="stop4847" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop4849" /> - </linearGradient> - <linearGradient - id="linearGradient4809"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop4811" /> - <stop - id="stop4813" - offset="0" - style="stop-color:#ad7fa8;stop-opacity:1;" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop4815" /> - <stop - id="stop4817" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3345"> - <stop - id="stop3347" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3351" /> - <stop - id="stop3355" - offset="1" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3349" /> - </linearGradient> - <linearGradient - id="linearGradient3223"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3225" /> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="1" - id="stop3227" /> - </linearGradient> - <linearGradient - id="linearGradient3503"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop3239" /> - <stop - id="stop3507" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective2651" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3501" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient3232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" - spreadMethod="reflect" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5689" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)" - cx="22.276291" - cy="32.248856" - fx="22.276291" - fy="32.248856" - r="20.319138" /> - <inkscape:perspective - id="perspective3474" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient4359" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5015" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3503" - id="radialGradient5062" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276291" - cy="21.520338" - fx="22.276291" - fy="21.520338" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="radialGradient5064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient5110" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3863" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4389" - id="radialGradient3906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)" - spreadMethod="pad" - cx="22.276297" - cy="21.099283" - fx="22.276297" - fy="21.099283" - r="20.319138" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - gridtolerance="10000" - guidetolerance="10" - objecttolerance="10" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="38.229248" - inkscape:cy="37.092309" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:snap-global="false" - inkscape:window-width="2560" - inkscape:window-height="1403" - inkscape:window-x="3440" - inkscape:window-y="0" - showguides="false" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2653" - visible="true" - enabled="true" - color="#ff00ff" - opacity="0.1254902" - empcolor="#0000f2" - empopacity="0.25098039" /> - <sodipodi:guide - orientation="1,0" - position="23.969062,28.50558" - id="guide3488" - inkscape:locked="false" /> - <sodipodi:guide - orientation="0,1" - position="17.401268,34.125445" - id="guide3490" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata2648"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag> - <rdf:li>audio</rdf:li> - <rdf:li>device</rdf:li> - <rdf:li>speaker</rdf:li> - <rdf:li>output</rdf:li> - <rdf:li>center</rdf:li> - </rdf:Bag> - </dc:subject> - <dc:title></dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Evangeline McGlynn</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - style="display:inline;stroke-width:0.50000006" - id="g9428" - inkscape:label="display-projector" - transform="matrix(1.9999998,0,0,1.9999998,-194.0632,-913.99991)"> - <path - style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75" - d="M 9.9960938,12 C 8.8902739,12 8,13.0462 8,14.3125 v 15.125 C 8,30.70378 8.8316801,32 9.9375,32 h 2 c 0,1.2663 0.948868,2 2.054688,2 h 1.992187 c 1.10582,0 1.953125,-0.7337 1.953125,-2 h 11.976562 c 0,1.2663 0.933243,2 2.039063,2 h 1.988281 c 1.10582,0 1.996094,-0.7337 1.996094,-2 h 2.003906 c 1.10584,0 1.996094,-1.29622 1.996094,-2.5625 V 14.3125 C 39.9375,13.0462 39.047246,12 37.941406,12 Z m 9.0488282,2 c 2.756,0 4.990234,2.23858 4.990234,5 0,2.76142 -2.234234,5 -4.990234,5 -2.756,0 -4.990234,-2.23858 -4.990234,-5 0,-2.76142 2.234234,-5 4.990234,-5 z m 11.970703,1.96875 c 1.665484,0 3.015625,1.350141 3.015625,3.015625 C 34.03125,20.649859 32.681109,22 31.015625,22 29.350141,22 28,20.649859 28,18.984375 28,17.318891 29.350141,15.96875 31.015625,15.96875 Z M 19,16 c -1.656854,0 -3,1.343146 -3,3 0,1.656854 1.343146,3 3,3 1.656854,0 3,-1.343146 3,-3 0,-1.656854 -1.343146,-3 -3,-3 z" - transform="matrix(0.50000005,0,0,0.50000005,97.03161,463)" - id="path9418" - inkscape:connector-curvature="0" - sodipodi:nodetypes="sssscssccsscssssssssssssssssssss" /> - </g> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:2.32782054;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - d="m 25.000001,5 c 5.62844,4e-7 10.343459,2.0000007 13.999999,5.171141 v 2.82886 H 36.03856 C 33,10.470681 29.59984,9.0000003 25,9 c -4.59984,-3e-7 -8,1.55906 -11.03856,3.999999 H 11 v -2.76256 C 14.28088,7.3059393 19.37156,4.9999996 25.000001,5 Z" - id="rect11714-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;fill-rule:nonzero;stroke:none;stroke-width:2.32782054;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - d="m 25,11 c 4.33328,0 8.03964,1.477561 10,4.000001 v 2 L 31,17 c -1.57756,-1.21304 -3.51774,-2 -6,-2 -2.48226,0 -4.43876,0.78696 -6,2 l -4,-1e-6 v -2 C 16.98956,12.5542 20.7468,11 25,11 Z" - id="rect11703-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="scccscccs" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.23529412;stroke:none;stroke-width:2.32782054;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - mask="none" - clip-path="none" - d="m 25,17 c 2.51466,0 4.43142,0.6233 6,2 l -1e-6,2 h -6 -0.75 H 19 v -2 c 1.6738,-1.34412 3.48534,-2 6,-2 z" - id="path6297-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="zccccccz" /> - </g> -</svg> diff --git a/panels/sound/data/icons/src/microphone-levels.svg b/panels/sound/data/icons/src/microphone-levels.svg deleted file mode 100644 index c6b7222a0..000000000 --- a/panels/sound/data/icons/src/microphone-levels.svg +++ /dev/null @@ -1,11448 +0,0 @@ -<?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" - height="348" - id="svg11300" - inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png" - inkscape:export-xdpi="90.000000" - inkscape:export-ydpi="90.000000" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:version="0.47 r22583" - sodipodi:docname="microphone-levels.svg" - sodipodi:version="0.32" - style="display:inline;enable-background:new" - version="1.0" - width="672"> - <sodipodi:namedview - bordercolor="#666666" - borderopacity="0.25490196" - fill="#f57900" - gridtolerance="12" - guidetolerance="13" - height="300px" - id="base" - inkscape:current-layer="layer2" - inkscape:cx="270.77412" - inkscape:cy="104.07692" - inkscape:document-units="px" - inkscape:grid-bbox="true" - inkscape:guide-bbox="true" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:showpageshadow="false" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - inkscape:window-height="876" - inkscape:window-width="968" - inkscape:window-x="132" - inkscape:window-y="8" - inkscape:zoom="1" - objecttolerance="7" - pagecolor="#ffffff" - showgrid="false" - showguides="true" - stroke="#ef2929" - width="400px"> - <inkscape:grid - visible="true" - type="xygrid" - spacingy="0.5px" - spacingx="0.5px" - id="grid5883" - enabled="true" - empspacing="2" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <title - id="title8836">Optical Drive</title> - <metadata - id="metadata154"> - <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>Optical Drive</dc:title> - <dc:creator> - <cc:Agent> - <dc:title /> - </cc:Agent> - </dc:creator> - <dc:contributor> - <cc:Agent> - <dc:title /> - </cc:Agent> - </dc:contributor> - <dc:source /> - <cc:license - rdf:resource="" /> - <dc:subject> - <rdf:Bag /> - </dc:subject> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs3"> - <linearGradient - inkscape:collect="always" - id="linearGradient25422"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient25414"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418" /> - </linearGradient> - <inkscape:path-effect - is_visible="true" - id="path-effect20273" - effect="spiro" /> - <linearGradient - id="linearGradient20265" - inkscape:collect="always"> - <stop - id="stop20267" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop20269" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient20205" - inkscape:collect="always"> - <stop - id="stop20207" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop20209" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient20041" - inkscape:collect="always"> - <stop - id="stop20043" - offset="0" - style="stop-color:#606060;stop-opacity:1;" /> - <stop - id="stop20045" - offset="1" - style="stop-color:#a8a8a8;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient19969"> - <stop - id="stop19971" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop19973" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient13655" - inkscape:collect="always"> - <stop - id="stop13657" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop13659" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient11071" - inkscape:collect="always"> - <stop - id="stop11073" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop11075" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <inkscape:perspective - id="perspective171" - inkscape:persp3d-origin="200 : 100 : 1" - inkscape:vp_z="400 : 150 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 150 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - inkscape:collect="always" - id="linearGradient2920"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop2922" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop2924" /> - </linearGradient> - <linearGradient - id="linearGradient2904"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop2906" /> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0.21551724" - id="stop2910" /> - <stop - style="stop-color:#c3c4c2;stop-opacity:1;" - offset="0.70243758" - id="stop2912" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop2908" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2877"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop2879" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop2881" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2867"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop2869" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop2871" /> - </linearGradient> - <linearGradient - id="linearGradient2981"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop2983" /> - <stop - style="stop-color:white;stop-opacity:1" - offset="1" - id="stop2985" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2965"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop2967" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop2969" /> - </linearGradient> - <linearGradient - id="linearGradient2943"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop2945" /> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="1" - id="stop2947" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4499"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop4501" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop4503" /> - </linearGradient> - <linearGradient - id="linearGradient4481"> - <stop - style="stop-color:#3e403d;stop-opacity:1" - offset="0" - id="stop4483" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="1" - id="stop4485" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4475"> - <stop - style="stop-color:black;stop-opacity:1" - offset="0" - id="stop4477" /> - <stop - style="stop-color:black;stop-opacity:0" - offset="1" - id="stop4479" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4465"> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="0" - id="stop4467" /> - <stop - style="stop-color:#2e3436;stop-opacity:0" - offset="1" - id="stop4469" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3815"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop3817" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop3819" /> - </linearGradient> - <linearGradient - id="linearGradient3795"> - <stop - style="stop-color:white;stop-opacity:1" - offset="0" - id="stop3797" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop3799" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3779"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop3781" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop3783" /> - </linearGradient> - <linearGradient - id="linearGradient3734"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop3736" /> - <stop - style="stop-color:white;stop-opacity:1" - offset="1" - id="stop3738" /> - </linearGradient> - <linearGradient - id="linearGradient3726"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop3728" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop3730" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3711"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop3713" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop3715" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3703"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop3705" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop3707" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3579"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop3581" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop3583" /> - </linearGradient> - <linearGradient - id="linearGradient3228"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop3230" /> - <stop - style="stop-color:black;stop-opacity:0.42857143;" - offset="0.06770357" - id="stop3573" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="0.29894069" - id="stop3569" /> - <stop - style="stop-color:black;stop-opacity:0.49803922;" - offset="0.77437174" - id="stop3571" /> - <stop - style="stop-color:black;stop-opacity:1;" - offset="1" - id="stop3232" /> - </linearGradient> - <linearGradient - y2="10.081399" - y1="10.081399" - xlink:href="#linearGradient3228" - x2="30" - x1="17.999674" - inkscape:collect="always" - id="linearGradient3567" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,3)" /> - <linearGradient - y2="25.991137" - y1="3.4711361" - xlink:href="#linearGradient3579" - x2="28.357954" - x1="20.483149" - inkscape:collect="always" - id="linearGradient3585" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" /> - <radialGradient - xlink:href="#linearGradient3711" - r="13.08399" - inkscape:collect="always" - id="radialGradient3691" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - fy="40.578671" - fx="18.753521" - cy="40.578671" - cx="18.753521" /> - <linearGradient - y2="28.590008" - y1="41.836731" - xlink:href="#linearGradient3703" - x2="27.272261" - x1="23.8125" - inkscape:collect="always" - id="linearGradient3709" - gradientUnits="userSpaceOnUse" /> - <linearGradient - y2="30.421146" - y1="36.722809" - xlink:href="#linearGradient3726" - x2="23.640165" - x1="25.606806" - inkscape:collect="always" - id="linearGradient3732" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" /> - <linearGradient - y2="28.617105" - y1="36.75" - xlink:href="#linearGradient3734" - x2="24.6875" - x1="24.6875" - inkscape:collect="always" - id="linearGradient3740" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" /> - <linearGradient - y2="32.355263" - y1="37.835339" - xlink:href="#linearGradient3779" - x2="29.74268" - x1="23.997437" - inkscape:collect="always" - id="linearGradient3785" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" /> - <linearGradient - y2="19.231655" - y1="18.432873" - xlink:href="#linearGradient3795" - x2="13.567612" - x1="13.567612" - inkscape:collect="always" - id="linearGradient3801" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" /> - <linearGradient - y2="19.231655" - y1="18.432873" - xlink:href="#linearGradient3795" - x2="13.567612" - x1="13.567612" - inkscape:collect="always" - id="linearGradient3805" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(20,-1)" /> - <linearGradient - y2="5.5441942" - y1="13.794194" - xlink:href="#linearGradient4465" - x2="32.864544" - x1="32.864544" - inkscape:collect="always" - id="linearGradient4460" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.25,12.5)" /> - <linearGradient - y2="5.5441942" - y1="13.794194" - xlink:href="#linearGradient4475" - x2="32.864544" - x1="32.864544" - inkscape:collect="always" - id="linearGradient4473" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.25,13.5)" /> - <linearGradient - y2="5.125" - y1="20.814491" - xlink:href="#linearGradient4481" - x2="17.625" - x1="17.625" - inkscape:collect="always" - id="linearGradient4487" - gradientUnits="userSpaceOnUse" /> - <radialGradient - xlink:href="#linearGradient4499" - r="12.59534" - inkscape:collect="always" - id="radialGradient4505" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - fy="36.907261" - fx="23.82066" - cy="36.907261" - cx="23.82066" /> - <linearGradient - y2="20.381033" - y1="16.14632" - xlink:href="#linearGradient2943" - x2="16.65625" - x1="16.65625" - inkscape:collect="always" - id="linearGradient2949" - gradientUnits="userSpaceOnUse" /> - <linearGradient - y2="20.381033" - y1="16.14632" - xlink:href="#linearGradient2943" - x2="16.65625" - x1="16.65625" - inkscape:collect="always" - id="linearGradient2953" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14,0)" /> - <radialGradient - xlink:href="#linearGradient2965" - r="12.59534" - inkscape:collect="always" - id="radialGradient2971" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - fy="36.907261" - fx="23.82066" - cy="36.907261" - cx="23.82066" /> - <linearGradient - y2="25.229111" - y1="19.452076" - xlink:href="#linearGradient2981" - x2="21.649811" - x1="23.374121" - inkscape:collect="always" - id="linearGradient2987" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" /> - <radialGradient - xlink:href="#linearGradient4499" - r="12.59534" - inkscape:collect="always" - id="radialGradient3012" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - fy="36.907261" - fx="23.82066" - cy="36.907261" - cx="23.82066" /> - <linearGradient - y2="10.76408" - y1="10.76408" - xlink:href="#linearGradient2867" - x2="23.176371" - x1="19.583334" - inkscape:collect="always" - id="linearGradient2890" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" /> - <linearGradient - y2="15.94703" - y1="24.761473" - xlink:href="#linearGradient3815" - x2="23.246162" - x1="23.246162" - inkscape:collect="always" - id="linearGradient2892" - gradientUnits="userSpaceOnUse" /> - <linearGradient - y2="10.75" - y1="6.3608937" - xlink:href="#linearGradient2877" - x2="24.508121" - x1="21.961548" - inkscape:collect="always" - id="linearGradient2894" - gradientUnits="userSpaceOnUse" /> - <linearGradient - y2="13.351768" - y1="13.351768" - xlink:href="#linearGradient2904" - x2="30.230837" - x1="18.737373" - inkscape:collect="always" - id="linearGradient2902" - gradientUnits="userSpaceOnUse" /> - <radialGradient - xlink:href="#linearGradient2920" - r="6.46875" - inkscape:collect="always" - id="radialGradient2926" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - fy="10.432782" - fx="22.553526" - cy="10.432782" - cx="22.553526" /> - <linearGradient - y2="5.125" - x2="17.625" - y1="15.314491" - x1="17.375" - gradientUnits="userSpaceOnUse" - id="linearGradient10904" - xlink:href="#linearGradient4481" - inkscape:collect="always" /> - <radialGradient - r="12.59534" - fy="36.907261" - fx="23.82066" - cy="36.907261" - cx="23.82066" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient10966" - xlink:href="#linearGradient4499" - inkscape:collect="always" /> - <radialGradient - r="12.59534" - fy="36.907261" - fx="23.82066" - cy="36.907261" - cx="23.82066" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient10968" - xlink:href="#linearGradient4499" - inkscape:collect="always" /> - <linearGradient - y2="5.5441942" - x2="32.864544" - y1="13.794194" - x1="32.864544" - gradientTransform="translate(-0.25,13.5)" - gradientUnits="userSpaceOnUse" - id="linearGradient10970" - xlink:href="#linearGradient4475" - inkscape:collect="always" /> - <linearGradient - y2="5.5441942" - x2="32.864544" - y1="13.794194" - x1="32.864544" - gradientTransform="translate(-0.25,12.5)" - gradientUnits="userSpaceOnUse" - id="linearGradient10972" - xlink:href="#linearGradient4465" - inkscape:collect="always" /> - <radialGradient - r="13.08399" - fy="40.578671" - fx="18.753521" - cy="40.578671" - cx="18.753521" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - gradientUnits="userSpaceOnUse" - id="radialGradient10974" - xlink:href="#linearGradient3711" - inkscape:collect="always" /> - <radialGradient - r="12.59534" - fy="36.907261" - fx="23.82066" - cy="36.907261" - cx="23.82066" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient10976" - xlink:href="#linearGradient2965" - inkscape:collect="always" /> - <linearGradient - y2="32.355263" - x2="29.74268" - y1="37.835339" - x1="23.997437" - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - gradientUnits="userSpaceOnUse" - id="linearGradient10978" - xlink:href="#linearGradient3779" - inkscape:collect="always" /> - <linearGradient - y2="28.590008" - x2="27.272261" - y1="41.836731" - x1="23.8125" - gradientUnits="userSpaceOnUse" - id="linearGradient10980" - xlink:href="#linearGradient3703" - inkscape:collect="always" /> - <linearGradient - y2="18.992922" - x2="16.365026" - y1="27.198471" - x1="16.396276" - gradientTransform="translate(-0.5837775,-0.800515)" - gradientUnits="userSpaceOnUse" - id="linearGradient10982" - xlink:href="#linearGradient3726" - inkscape:collect="always" /> - <linearGradient - y2="19.231655" - x2="13.567612" - y1="18.432873" - x1="13.567612" - gradientTransform="translate(-0.3749995,-0.923861)" - gradientUnits="userSpaceOnUse" - id="linearGradient10984" - xlink:href="#linearGradient3795" - inkscape:collect="always" /> - <linearGradient - y2="19.231655" - x2="13.567612" - y1="18.432873" - x1="13.567612" - gradientTransform="translate(18.59884,-0.923861)" - gradientUnits="userSpaceOnUse" - id="linearGradient10986" - xlink:href="#linearGradient3795" - inkscape:collect="always" /> - <linearGradient - y2="25.229111" - x2="21.649811" - y1="19.452076" - x1="23.374121" - gradientTransform="matrix(0.93365598,0,0,0.94630428,0.1070789,1.560429)" - gradientUnits="userSpaceOnUse" - id="linearGradient10988" - xlink:href="#linearGradient2981" - inkscape:collect="always" /> - <linearGradient - y2="20.381033" - x2="16.65625" - y1="16.14632" - x1="16.65625" - gradientTransform="matrix(1.2486592,0,0,1.0113615,11.508715,-0.56075794)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990" - xlink:href="#linearGradient2943" - inkscape:collect="always" /> - <linearGradient - gradientTransform="matrix(0.98788104,0,0,1.0113615,-0.23976961,-0.56075794)" - y2="20.381033" - x2="16.65625" - y1="16.14632" - x1="16.65625" - gradientUnits="userSpaceOnUse" - id="linearGradient10992" - xlink:href="#linearGradient2943" - inkscape:collect="always" /> - <linearGradient - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" - y2="13.351768" - x2="30.230837" - y1="13.351768" - x1="18.737373" - gradientUnits="userSpaceOnUse" - id="linearGradient10994" - xlink:href="#linearGradient2904" - inkscape:collect="always" /> - <linearGradient - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" - y2="5.125" - x2="17.625" - y1="15.314491" - x1="17.375" - gradientUnits="userSpaceOnUse" - id="linearGradient10996" - xlink:href="#linearGradient4481" - inkscape:collect="always" /> - <linearGradient - y2="28.617105" - x2="24.6875" - y1="36.75" - x1="24.6875" - gradientTransform="matrix(1.0625002,0,0,0.76351725,-1.5382359,3.9735816)" - gradientUnits="userSpaceOnUse" - id="linearGradient10998" - xlink:href="#linearGradient3734" - inkscape:collect="always" /> - <linearGradient - y2="10.76408" - x2="23.176371" - y1="10.76408" - x1="19.583334" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - gradientUnits="userSpaceOnUse" - id="linearGradient11000" - xlink:href="#linearGradient2867" - inkscape:collect="always" /> - <linearGradient - y2="15.94703" - x2="23.246162" - y1="24.761473" - x1="23.246162" - gradientUnits="userSpaceOnUse" - id="linearGradient11002" - xlink:href="#linearGradient3815" - inkscape:collect="always" /> - <linearGradient - y2="10.75" - x2="24.508121" - y1="6.3608937" - x1="21.961548" - gradientUnits="userSpaceOnUse" - id="linearGradient11004" - xlink:href="#linearGradient2877" - inkscape:collect="always" /> - <radialGradient - r="6.46875" - fy="10.432782" - fx="22.553526" - cy="10.432782" - cx="22.553526" - gradientTransform="matrix(1.580773,0,0,0.75692381,-14.17818,0.21133448)" - gradientUnits="userSpaceOnUse" - id="radialGradient11006" - xlink:href="#linearGradient2920" - inkscape:collect="always" /> - <linearGradient - y2="25.991137" - x2="28.357954" - y1="3.4711361" - x1="20.483149" - gradientTransform="matrix(0.9517316,0,0,0.94372518,-0.44251773,3.1419782)" - gradientUnits="userSpaceOnUse" - id="linearGradient11008" - xlink:href="#linearGradient3579" - inkscape:collect="always" /> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - id="perspective11018" /> - <linearGradient - y2="18.305422" - x2="16.271276" - y1="23.729721" - x1="16.271276" - gradientTransform="translate(-0.5837775,-0.800515)" - gradientUnits="userSpaceOnUse" - id="linearGradient10982-1" - xlink:href="#linearGradient3726-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3726-4"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop3728-9" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop3730-2" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4" - id="linearGradient11027" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-13.271278,-18.305421)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - id="perspective11057" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.5,0,75.8125)" - r="1.875" - fy="151.625" - fx="317.625" - cy="151.625" - cx="317.625" - id="radialGradient11077" - xlink:href="#linearGradient11071" - inkscape:collect="always" /> - <linearGradient - y2="23.652916" - x2="9.249608" - y1="23.530848" - x1="14.547704" - gradientTransform="matrix(0,1,-1.8541642,0,56.847505,8.8537229)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083" - xlink:href="#linearGradient3726" - inkscape:collect="always" /> - <linearGradient - y2="23.518084" - x2="12.968358" - y1="23.530848" - x1="14.547704" - gradientTransform="matrix(0,1,-1.8541642,0,56.847505,8.8537229)" - gradientUnits="userSpaceOnUse" - id="linearGradient11093" - xlink:href="#linearGradient3726" - inkscape:collect="always" /> - <linearGradient - y2="18.305422" - x2="16.271276" - y1="23.729721" - x1="16.271276" - gradientTransform="matrix(0.85553658,0,0,0.77385304,0.52441214,2.4879707)" - gradientUnits="userSpaceOnUse" - id="linearGradient13115" - xlink:href="#linearGradient3726-4" - inkscape:collect="always" /> - <linearGradient - y2="19.231655" - x2="13.567612" - y1="18.432873" - x1="13.567612" - gradientTransform="translate(-0.3749995,-0.923861)" - gradientUnits="userSpaceOnUse" - id="linearGradient13117" - xlink:href="#linearGradient3795" - inkscape:collect="always" /> - <linearGradient - y2="19.231655" - x2="13.567612" - y1="18.432873" - x1="13.567612" - gradientTransform="matrix(0.86359943,0,0,1,16.977403,-0.923861)" - gradientUnits="userSpaceOnUse" - id="linearGradient13119" - xlink:href="#linearGradient3795" - inkscape:collect="always" /> - <linearGradient - y2="25.229111" - x2="21.649811" - y1="19.452076" - x1="23.374121" - gradientTransform="matrix(0.79373266,0,0,0.7916132,1.1565043,3.4403526)" - gradientUnits="userSpaceOnUse" - id="linearGradient13121" - xlink:href="#linearGradient2981" - inkscape:collect="always" /> - <linearGradient - y2="20.381033" - x2="16.65625" - y1="16.14632" - x1="16.65625" - gradientTransform="matrix(0.98788104,0,0,0.98347786,-0.23976961,-0.44878866)" - gradientUnits="userSpaceOnUse" - id="linearGradient13125" - xlink:href="#linearGradient2943" - inkscape:collect="always" /> - <linearGradient - y2="13.351768" - x2="30.230837" - y1="13.351768" - x1="18.737373" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - gradientUnits="userSpaceOnUse" - id="linearGradient13127" - xlink:href="#linearGradient2904" - inkscape:collect="always" /> - <linearGradient - y2="5.125" - x2="17.625" - y1="15.314491" - x1="17.375" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - gradientUnits="userSpaceOnUse" - id="linearGradient13129" - xlink:href="#linearGradient4481" - inkscape:collect="always" /> - <linearGradient - y2="10.76408" - x2="23.176371" - y1="10.76408" - x1="19.583334" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - gradientUnits="userSpaceOnUse" - id="linearGradient13131" - xlink:href="#linearGradient2867" - inkscape:collect="always" /> - <linearGradient - y2="15.94703" - x2="23.246162" - y1="24.761473" - x1="23.246162" - gradientUnits="userSpaceOnUse" - id="linearGradient13133" - xlink:href="#linearGradient3815" - inkscape:collect="always" /> - <linearGradient - y2="10.75" - x2="24.508121" - y1="6.3608937" - x1="21.961548" - gradientUnits="userSpaceOnUse" - id="linearGradient13135" - xlink:href="#linearGradient2877" - inkscape:collect="always" /> - <radialGradient - r="6.46875" - fy="10.432782" - fx="22.553526" - cy="10.432782" - cx="22.553526" - gradientTransform="matrix(1.3831764,0,0,0.73605512,-11.304892,0.24124002)" - gradientUnits="userSpaceOnUse" - id="radialGradient13137" - xlink:href="#linearGradient2920" - inkscape:collect="always" /> - <linearGradient - y2="25.991137" - x2="28.357954" - y1="3.4711361" - x1="20.483149" - gradientTransform="matrix(0.95796767,0,0,0.91036433,-1.6428678,3.1920195)" - gradientUnits="userSpaceOnUse" - id="linearGradient13139" - xlink:href="#linearGradient3579" - inkscape:collect="always" /> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - id="perspective13158" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4499-8"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop4501-6" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop4503-4" /> - </linearGradient> - <radialGradient - xlink:href="#linearGradient4499-8" - r="12.59534" - inkscape:collect="always" - id="radialGradient4505-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - fy="36.907261" - fx="23.82066" - cy="36.907261" - cx="23.82066" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4465-6"> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="0" - id="stop4467-8" /> - <stop - style="stop-color:#2e3436;stop-opacity:0" - offset="1" - id="stop4469-2" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3711-6"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop3713-6" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop3715-7" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2965-7"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop2967-3" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop2969-9" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3779-9"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop3781-5" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop3783-3" /> - </linearGradient> - <linearGradient - id="linearGradient3726-0"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop3728-1" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop3730-6" /> - </linearGradient> - <linearGradient - id="linearGradient3795-5"> - <stop - style="stop-color:white;stop-opacity:1" - offset="0" - id="stop3797-0" /> - <stop - style="stop-color:#c1c1c1;stop-opacity:1" - offset="1" - id="stop3799-6" /> - </linearGradient> - <linearGradient - id="linearGradient13206"> - <stop - style="stop-color:white;stop-opacity:1" - offset="0" - id="stop13208" /> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="1" - id="stop13210" /> - </linearGradient> - <linearGradient - id="linearGradient2981-9"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop2983-8" /> - <stop - style="stop-color:white;stop-opacity:1" - offset="1" - id="stop2985-4" /> - </linearGradient> - <linearGradient - id="linearGradient2943-2"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop2945-0" /> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="1" - id="stop2947-4" /> - </linearGradient> - <linearGradient - id="linearGradient13221"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop13223" /> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="1" - id="stop13225" /> - </linearGradient> - <linearGradient - id="linearGradient2904-5"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop2906-7" /> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0.21551724" - id="stop2910-2" /> - <stop - style="stop-color:#c3c4c2;stop-opacity:1;" - offset="0.70243758" - id="stop2912-6" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop2908-9" /> - </linearGradient> - <linearGradient - id="linearGradient4481-3"> - <stop - style="stop-color:#3e403d;stop-opacity:1" - offset="0" - id="stop4483-2" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="1" - id="stop4485-8" /> - </linearGradient> - <linearGradient - id="linearGradient3734-1"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop3736-6" /> - <stop - style="stop-color:white;stop-opacity:1" - offset="1" - id="stop3738-0" /> - </linearGradient> - <linearGradient - y2="15.94703" - y1="24.761473" - xlink:href="#linearGradient3815-9" - x2="23.246162" - x1="23.246162" - inkscape:collect="always" - id="linearGradient2892-7" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3815-9"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop3817-7" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop3819-9" /> - </linearGradient> - <linearGradient - y2="10.75" - y1="6.3608937" - xlink:href="#linearGradient2877-7" - x2="24.508121" - x1="21.961548" - inkscape:collect="always" - id="linearGradient2894-7" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient2877-7"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop2879-9" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop2881-3" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2920-3"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop2922-4" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop2924-1" /> - </linearGradient> - <linearGradient - id="linearGradient3228-3"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop3230-8" /> - <stop - style="stop-color:black;stop-opacity:0.42857143;" - offset="0.06770357" - id="stop3573-3" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="0.29894069" - id="stop3569-6" /> - <stop - style="stop-color:black;stop-opacity:0.49803922;" - offset="0.77437174" - id="stop3571-6" /> - <stop - style="stop-color:black;stop-opacity:1;" - offset="1" - id="stop3232-4" /> - </linearGradient> - <linearGradient - y2="25.991137" - y1="3.4711361" - xlink:href="#linearGradient3579-9" - x2="28.357954" - x1="20.483149" - inkscape:collect="always" - id="linearGradient3585-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3579-9"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop3581-9" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop3583-0" /> - </linearGradient> - <radialGradient - r="6.46875" - fy="10.432782" - fx="22.553526" - cy="10.432782" - cx="22.553526" - gradientTransform="matrix(7.8522058,0,0,4.7763119,-42.877754,26.136979)" - gradientUnits="userSpaceOnUse" - id="radialGradient13575" - xlink:href="#linearGradient2920-3" - inkscape:collect="always" /> - <linearGradient - y2="28.617105" - x2="24.6875" - y1="36.75" - x1="24.6875" - gradientTransform="matrix(4.9673203,0,0,4.9673203,21.300648,38.398692)" - gradientUnits="userSpaceOnUse" - id="linearGradient13586" - xlink:href="#linearGradient3734-1" - inkscape:collect="always" /> - <linearGradient - gradientTransform="matrix(4.9673203,0,0,4.9673203,21.589798,42.679612)" - y2="13.351768" - x2="30.230837" - y1="13.351768" - x1="18.737373" - gradientUnits="userSpaceOnUse" - id="linearGradient13589" - xlink:href="#linearGradient2904-5" - inkscape:collect="always" /> - <linearGradient - y2="20.381033" - x2="16.65625" - y1="16.14632" - x1="16.65625" - gradientTransform="matrix(2.7646499,0,0,2.196487,129.67901,95.617106)" - gradientUnits="userSpaceOnUse" - id="linearGradient13598" - xlink:href="#linearGradient2943-2" - inkscape:collect="always" /> - <linearGradient - y2="25.229111" - x2="21.649811" - y1="19.452076" - x1="23.374121" - gradientTransform="matrix(4.9673203,0,0,4.6739851,21.589798,50.452937)" - gradientUnits="userSpaceOnUse" - id="linearGradient13601" - xlink:href="#linearGradient2981-9" - inkscape:collect="always" /> - <linearGradient - y2="19.231655" - x2="13.567612" - y1="18.432873" - x1="13.567612" - gradientTransform="matrix(4.9673203,0,0,4.7202881,120.9362,46.715632)" - gradientUnits="userSpaceOnUse" - id="linearGradient13604" - xlink:href="#linearGradient3795-5" - inkscape:collect="always" /> - <linearGradient - y2="32.355263" - x2="29.74268" - y1="37.835339" - x1="23.997437" - gradientTransform="matrix(1.5330832,0,0,1.5232424,106.26355,166.38059)" - gradientUnits="userSpaceOnUse" - id="linearGradient13615" - xlink:href="#linearGradient3779-9" - inkscape:collect="always" /> - <linearGradient - y2="5.5441942" - x2="32.864544" - y1="13.794194" - x1="32.864544" - gradientTransform="matrix(4.9673203,0,0,4.1857158,20.347968,125.94353)" - gradientUnits="userSpaceOnUse" - id="linearGradient13620" - xlink:href="#linearGradient4465-6" - inkscape:collect="always" /> - <linearGradient - y2="20.381033" - x2="16.65625" - y1="16.14632" - x1="16.65625" - gradientTransform="matrix(2.6339873,0,0,2.092677,-154.04079,97.485687)" - gradientUnits="userSpaceOnUse" - id="linearGradient13649" - xlink:href="#linearGradient2943-2" - inkscape:collect="always" /> - <radialGradient - r="12.59534" - fy="36.907261" - fx="23.82066" - cy="36.907261" - cx="23.82066" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient13651" - xlink:href="#linearGradient2965-7" - inkscape:collect="always" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5836547,0,0,0.81072247,-82.339489,27.071966)" - r="59.41787" - fy="276.92752" - fx="141.0757" - cy="276.92752" - cx="141.0757" - id="radialGradient13661" - xlink:href="#linearGradient13655" - inkscape:collect="always" /> - <radialGradient - r="59.41787" - fy="276.92752" - fx="141.0757" - cy="276.92752" - cx="141.0757" - gradientTransform="matrix(1.5836547,0,0,0.81072247,-82.339489,27.071966)" - gradientUnits="userSpaceOnUse" - id="radialGradient13665" - xlink:href="#linearGradient13655" - inkscape:collect="always" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.5672045,-0.00538496,0.00169719,0.80911626,-224.49175,22.131973)" - r="34.296837" - fy="181.54195" - fx="143.04683" - cy="181.54195" - cx="143.04683" - id="radialGradient19975" - xlink:href="#linearGradient19969" - inkscape:collect="always" /> - <clipPath - id="clipPath20033" - clipPathUnits="userSpaceOnUse"> - <rect - y="50.130592" - x="108.51788" - width="69.542503" - style="fill:url(#linearGradient20037);fill-opacity:1;stroke:none" - ry="34.825241" - rx="34.771252" - id="rect20035" - height="119.21573" /> - </clipPath> - <linearGradient - y2="13.351768" - x2="30.230837" - y1="13.351768" - x1="18.737373" - gradientTransform="matrix(4.9673203,0,0,4.9673203,21.589798,42.679612)" - gradientUnits="userSpaceOnUse" - id="linearGradient20037" - xlink:href="#linearGradient2904-5" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="133.52888" - x2="192.89699" - y1="137.15388" - x1="192.90271" - id="linearGradient20047" - xlink:href="#linearGradient20041" - inkscape:collect="always" /> - <clipPath - id="clipPath20059" - clipPathUnits="userSpaceOnUse"> - <rect - y="132.7654" - x="179.02771" - width="17.119282" - style="fill:url(#linearGradient20063);fill-opacity:1;stroke:url(#linearGradient20065);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - id="rect20061" - height="4.7769966" /> - </clipPath> - <linearGradient - y2="19.231655" - x2="13.567612" - y1="18.432873" - x1="13.567612" - gradientTransform="matrix(4.9673203,0,0,4.7202881,120.9362,46.715632)" - gradientUnits="userSpaceOnUse" - id="linearGradient20063" - xlink:href="#linearGradient3795-5" - inkscape:collect="always" /> - <linearGradient - y2="133.52888" - x2="192.89699" - y1="137.15388" - x1="192.90271" - gradientUnits="userSpaceOnUse" - id="linearGradient20065" - xlink:href="#linearGradient20041" - inkscape:collect="always" /> - <linearGradient - y2="19.231655" - x2="13.567612" - y1="18.432873" - x1="13.567612" - gradientTransform="matrix(4.9673203,0,0,4.7202881,120.9362,46.715632)" - gradientUnits="userSpaceOnUse" - id="linearGradient20069" - xlink:href="#linearGradient3795-5" - inkscape:collect="always" /> - <linearGradient - y2="133.52888" - x2="192.89699" - y1="137.15388" - x1="192.90271" - gradientUnits="userSpaceOnUse" - id="linearGradient20071" - xlink:href="#linearGradient20041" - inkscape:collect="always" /> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - id="perspective20081" /> - <linearGradient - id="linearGradient3228-3-3"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop3230-8-6" /> - <stop - style="stop-color:black;stop-opacity:0.42857143;" - offset="0.06770357" - id="stop3573-3-2" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="0.29894069" - id="stop3569-6-8" /> - <stop - style="stop-color:black;stop-opacity:0.49803922;" - offset="0.77437174" - id="stop3571-6-3" /> - <stop - style="stop-color:black;stop-opacity:1;" - offset="1" - id="stop3232-4-9" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3228-3-3" - id="linearGradient20093" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.2750126,0,0,2.2750126,-40.95023,0)" - x1="17.999674" - y1="10.081399" - x2="30" - y2="10.081399" /> - <clipPath - id="clipPath20163" - clipPathUnits="userSpaceOnUse"> - <rect - height="119.21573" - id="rect20165" - rx="34.771252" - ry="34.825241" - style="fill:none;stroke:#000000;stroke-width:1.00000048;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - width="69.542503" - x="108.51788" - y="50.130592" /> - </clipPath> - <clipPath - id="clipPath20193" - clipPathUnits="userSpaceOnUse"> - <rect - y="56.130592" - x="-278.98212" - width="69.542503" - style="fill:url(#linearGradient20197);fill-opacity:1;stroke:none" - ry="34.825241" - rx="34.771252" - id="rect20195" - height="119.21573" /> - </clipPath> - <linearGradient - y2="13.351768" - x2="30.230837" - y1="13.351768" - x1="18.737373" - gradientTransform="matrix(4.9673203,0,0,4.9673203,-365.9102,48.679612)" - gradientUnits="userSpaceOnUse" - id="linearGradient20197" - xlink:href="#linearGradient2904-5" - inkscape:collect="always" /> - <linearGradient - y2="85.685379" - x2="14.61547" - y1="85.685379" - x1="-26.835243" - gradientTransform="matrix(1.8870302,0,0,1.8776146,-235.67019,7.1456846)" - gradientUnits="userSpaceOnUse" - id="linearGradient20199" - xlink:href="#linearGradient3228-3-3" - inkscape:collect="always" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.99978338,0.02081323,-0.09005515,4.3258853,8.3120531,-320.05743)" - r="34.771252" - fy="92.905838" - fx="-252.0392" - cy="92.905838" - cx="-252.0392" - id="radialGradient20211" - xlink:href="#linearGradient20205" - inkscape:collect="always" /> - <radialGradient - r="13.08399" - fy="38.343433" - fx="19.558981" - cy="38.343433" - cx="19.558981" - gradientTransform="matrix(1.1812972,0,0,0.62268269,-3.4824832,13.649379)" - gradientUnits="userSpaceOnUse" - id="radialGradient20239" - xlink:href="#linearGradient3711-6" - inkscape:collect="always" /> - <clipPath - id="clipPath20245" - clipPathUnits="userSpaceOnUse"> - <path - d="m 36.415999,36.907261 a 12.59534,6.4081554 0 1 1 -25.190679,0 12.59534,6.4081554 0 1 1 25.190679,0 z" - id="path20247" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="fill:none;stroke:#000000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> - </clipPath> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.3491052,0,0,1.1951588,-32.399717,-15.770463)" - r="12.59534" - fy="49.389561" - fx="24.015709" - cy="49.389561" - cx="24.015709" - id="radialGradient20271" - xlink:href="#linearGradient20265" - inkscape:collect="always" /> - <linearGradient - y2="5.5441942" - x2="32.864544" - y1="13.794194" - x1="32.864544" - gradientTransform="matrix(4.9673203,0,0,4.1857158,20.347968,126.94353)" - gradientUnits="userSpaceOnUse" - id="linearGradient20277" - xlink:href="#linearGradient4465-6" - inkscape:collect="always" /> - <linearGradient - y2="30.421146" - x2="23.640165" - y1="36.722809" - x1="25.606806" - gradientTransform="matrix(4.8418564,0,0,5.4752157,24.446802,19.661954)" - gradientUnits="userSpaceOnUse" - id="linearGradient20291" - xlink:href="#linearGradient3726-0" - inkscape:collect="always" /> - <inkscape:perspective - id="perspective13771" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - id="linearGradient3726-4-1"> - <stop - id="stop3728-9-8" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop3730-2-5" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient3795-9"> - <stop - id="stop3797-07" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop3799-60" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient13784"> - <stop - id="stop13786" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop13788" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient2981-3"> - <stop - id="stop2983-2" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop2985-7" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient2943-7"> - <stop - id="stop2945-1" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop2947-3" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient2904-7"> - <stop - id="stop2906-6" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop2910-3" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2912-9" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop2908-6" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient4481-5"> - <stop - id="stop4483-9" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop4485-81" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient2867-5" - inkscape:collect="always"> - <stop - id="stop2869-3" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2871-8" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3815-7" - inkscape:collect="always"> - <stop - id="stop3817-73" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3819-4" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient2877-5" - inkscape:collect="always"> - <stop - id="stop2879-5" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2881-5" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient2920-9" - inkscape:collect="always"> - <stop - id="stop2922-3" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2924-9" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3579-6" - inkscape:collect="always"> - <stop - id="stop3581-4" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop3583-1" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0" - id="radialGradient10966-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - id="linearGradient4499-0" - inkscape:collect="always"> - <stop - id="stop4501-7" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop4503-6" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8" - id="linearGradient10982-6" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.5837775,-0.800515)" - x1="16.396276" - y1="27.198471" - x2="16.365026" - y2="18.992922" /> - <linearGradient - id="linearGradient3726-8"> - <stop - id="stop3728-16" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop3730-8" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient13837"> - <stop - id="stop13839" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop13841" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient13844"> - <stop - id="stop13846" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop13848" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9" - id="linearGradient10986-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(18.59884,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient13851"> - <stop - id="stop13853" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop13855" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3" - id="linearGradient10988-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93365598,0,0,0.94630428,0.1070789,1.560429)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient13858"> - <stop - id="stop13860" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop13862" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7" - id="linearGradient10990-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2486592,0,0,1.0113615,11.508715,-0.56075794)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient13865"> - <stop - id="stop13867" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop13869" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7" - id="linearGradient10992-5" - gradientUnits="userSpaceOnUse" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" - gradientTransform="matrix(0.98788104,0,0,1.0113615,-0.23976961,-0.56075794)" /> - <linearGradient - id="linearGradient13872"> - <stop - id="stop13874" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop13876" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7" - id="linearGradient10994-5" - gradientUnits="userSpaceOnUse" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" /> - <linearGradient - id="linearGradient13879"> - <stop - id="stop13881" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop13883" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop13885" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop13887" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5" - id="linearGradient10996-1" - gradientUnits="userSpaceOnUse" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" /> - <linearGradient - id="linearGradient13890"> - <stop - id="stop13892" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop13894" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5" - id="linearGradient11000-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7" - id="linearGradient11002-1" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5" - id="linearGradient11004-7" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9" - id="radialGradient11006-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.75692381,-14.17818,0.21133448)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6" - id="linearGradient11008-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9517316,0,0,0.94372518,-0.44251773,3.1419782)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8" - id="linearGradient11093-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0,1,-1.8541642,0,56.847505,8.8537229)" - x1="14.547704" - y1="23.530848" - x2="12.968358" - y2="23.518084" /> - <linearGradient - id="linearGradient13932"> - <stop - id="stop13934" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop13936" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7" - id="linearGradient10998-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0625002,0,0,0.76351725,-1.5382359,3.9735816)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient3734-7"> - <stop - id="stop3736-7" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop3738-3" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient3012-3" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0" /> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient4505-3" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0" /> - <linearGradient - id="linearGradient4475-7" - inkscape:collect="always"> - <stop - id="stop4477-8" - offset="0" - style="stop-color:black;stop-opacity:1" /> - <stop - id="stop4479-9" - offset="1" - style="stop-color:black;stop-opacity:0" /> - </linearGradient> - <linearGradient - id="linearGradient4465-4" - inkscape:collect="always"> - <stop - id="stop4467-6" - offset="0" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - id="stop4469-4" - offset="1" - style="stop-color:#2e3436;stop-opacity:0" /> - </linearGradient> - <radialGradient - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - gradientUnits="userSpaceOnUse" - id="radialGradient3691-5" - inkscape:collect="always" - r="13.08399" - xlink:href="#linearGradient3711-4" /> - <linearGradient - id="linearGradient3711-4" - inkscape:collect="always"> - <stop - id="stop3713-2" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop3715-0" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient2965-77" - inkscape:collect="always"> - <stop - id="stop2967-5" - offset="0" - style="stop-color:#888a85;stop-opacity:1;" /> - <stop - id="stop2969-4" - offset="1" - style="stop-color:#888a85;stop-opacity:0;" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - gradientUnits="userSpaceOnUse" - id="linearGradient3785-4" - inkscape:collect="always" - x1="23.997437" - x2="29.74268" - xlink:href="#linearGradient3779-6" - y1="37.835339" - y2="32.355263" /> - <linearGradient - id="linearGradient3779-6" - inkscape:collect="always"> - <stop - id="stop3781-56" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3783-5" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11071-4" - id="radialGradient11077-1" - cx="317.625" - cy="151.625" - fx="317.625" - fy="151.625" - r="1.875" - gradientTransform="matrix(1,0,0,0.5,0,75.8125)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient11071-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop11073-9" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop11075-5" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient3709-2" - inkscape:collect="always" - x1="23.8125" - x2="27.272261" - xlink:href="#linearGradient3703-7" - y1="41.836731" - y2="28.590008" /> - <linearGradient - id="linearGradient3703-7" - inkscape:collect="always"> - <stop - id="stop3705-1" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop3707-7" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient3732-0" - inkscape:collect="always" - x1="25.606806" - x2="23.640165" - xlink:href="#linearGradient3726-8" - y1="36.722809" - y2="30.421146" /> - <linearGradient - id="linearGradient13985"> - <stop - id="stop13987" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop13989" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient13992"> - <stop - id="stop13994" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop13996" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(20,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient3805-6" - inkscape:collect="always" - x1="13.567612" - x2="13.567612" - xlink:href="#linearGradient3795-9" - y1="18.432873" - y2="19.231655" /> - <linearGradient - id="linearGradient13999"> - <stop - id="stop14001" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop14003" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - gradientUnits="userSpaceOnUse" - id="linearGradient2987-1" - inkscape:collect="always" - x1="23.374121" - x2="21.649811" - xlink:href="#linearGradient2981-3" - y1="19.452076" - y2="25.229111" /> - <linearGradient - id="linearGradient14006"> - <stop - id="stop14008" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop14010" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="translate(14,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient2953-0" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient14013"> - <stop - id="stop14015" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop14017" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2949-2" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient14020"> - <stop - id="stop14022" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop14024" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2902-5" - inkscape:collect="always" - x1="18.737373" - x2="30.230837" - xlink:href="#linearGradient2904-7" - y1="13.351768" - y2="13.351768" /> - <linearGradient - id="linearGradient14027"> - <stop - id="stop14029" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop14031" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop14033" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop14035" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5" - id="linearGradient10904-8" - gradientUnits="userSpaceOnUse" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" /> - <linearGradient - id="linearGradient14038"> - <stop - id="stop14040" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop14042" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient14045"> - <stop - id="stop14047" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop14049" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - gradientUnits="userSpaceOnUse" - id="linearGradient2890-3" - inkscape:collect="always" - x1="19.583334" - x2="23.176371" - xlink:href="#linearGradient2867-5" - y1="10.76408" - y2="10.76408" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2892-2" - inkscape:collect="always" - x1="23.246162" - x2="23.246162" - xlink:href="#linearGradient3815-7" - y1="24.761473" - y2="15.94703" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2894-0" - inkscape:collect="always" - x1="21.961548" - x2="24.508121" - xlink:href="#linearGradient2877-5" - y1="6.3608937" - y2="10.75" /> - <radialGradient - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - gradientUnits="userSpaceOnUse" - id="radialGradient2926-3" - inkscape:collect="always" - r="6.46875" - xlink:href="#linearGradient2920-9" /> - <linearGradient - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - gradientUnits="userSpaceOnUse" - id="linearGradient3585-1" - inkscape:collect="always" - x1="20.483149" - x2="28.357954" - xlink:href="#linearGradient3579-6" - y1="3.4711361" - y2="25.991137" /> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient14086" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0" /> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient14094" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0" /> - <linearGradient - gradientTransform="translate(-0.25,13.5)" - gradientUnits="userSpaceOnUse" - id="linearGradient14102" - inkscape:collect="always" - x1="32.864544" - x2="32.864544" - xlink:href="#linearGradient4475-7" - y1="13.794194" - y2="5.5441942" /> - <linearGradient - gradientTransform="translate(-0.25,12.5)" - gradientUnits="userSpaceOnUse" - id="linearGradient14110" - inkscape:collect="always" - x1="32.864544" - x2="32.864544" - xlink:href="#linearGradient4465-4" - y1="13.794194" - y2="5.5441942" /> - <radialGradient - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - gradientUnits="userSpaceOnUse" - id="radialGradient14118" - inkscape:collect="always" - r="13.08399" - xlink:href="#linearGradient3711-4" /> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient14126" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient2965-77" /> - <linearGradient - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - gradientUnits="userSpaceOnUse" - id="linearGradient14134" - inkscape:collect="always" - x1="23.997437" - x2="29.74268" - xlink:href="#linearGradient3779-6" - y1="37.835339" - y2="32.355263" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient14142" - inkscape:collect="always" - x1="23.8125" - x2="27.272261" - xlink:href="#linearGradient3703-7" - y1="41.836731" - y2="28.590008" /> - <linearGradient - gradientTransform="translate(0,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient14150" - inkscape:collect="always" - x1="25.606806" - x2="23.640165" - xlink:href="#linearGradient3726-8" - y1="36.722809" - y2="30.421146" /> - <linearGradient - id="linearGradient14152"> - <stop - id="stop14154" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop14156" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient14158" - inkscape:collect="always" - x1="13.567612" - x2="13.567612" - xlink:href="#linearGradient3795-9" - y1="18.432873" - y2="19.231655" /> - <linearGradient - id="linearGradient14160"> - <stop - id="stop14162" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop14164" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(20,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient14166" - inkscape:collect="always" - x1="13.567612" - x2="13.567612" - xlink:href="#linearGradient3795-9" - y1="18.432873" - y2="19.231655" /> - <linearGradient - id="linearGradient14168"> - <stop - id="stop14170" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop14172" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - gradientUnits="userSpaceOnUse" - id="linearGradient14174" - inkscape:collect="always" - x1="23.374121" - x2="21.649811" - xlink:href="#linearGradient2981-3" - y1="19.452076" - y2="25.229111" /> - <linearGradient - id="linearGradient14176"> - <stop - id="stop14178" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop14180" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="translate(14,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient14182" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient14184"> - <stop - id="stop14186" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop14188" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient14190" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient14192"> - <stop - id="stop14194" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop14196" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient14198" - inkscape:collect="always" - x1="18.737373" - x2="30.230837" - xlink:href="#linearGradient2904-7" - y1="13.351768" - y2="13.351768" /> - <linearGradient - id="linearGradient14200"> - <stop - id="stop14202" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop14204" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop14206" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop14208" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient4487-9" - inkscape:collect="always" - x1="17.625" - x2="17.625" - xlink:href="#linearGradient4481-5" - y1="20.814491" - y2="5.125" /> - <linearGradient - id="linearGradient14211"> - <stop - id="stop14213" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop14215" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient14217" - inkscape:collect="always" - x1="24.6875" - x2="24.6875" - xlink:href="#linearGradient3734-7" - y1="36.75" - y2="28.617105" /> - <linearGradient - id="linearGradient14219"> - <stop - id="stop14221" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop14223" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - gradientUnits="userSpaceOnUse" - id="linearGradient14225" - inkscape:collect="always" - x1="19.583334" - x2="23.176371" - xlink:href="#linearGradient2867-5" - y1="10.76408" - y2="10.76408" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient14233" - inkscape:collect="always" - x1="23.246162" - x2="23.246162" - xlink:href="#linearGradient3815-7" - y1="24.761473" - y2="15.94703" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient14241" - inkscape:collect="always" - x1="21.961548" - x2="24.508121" - xlink:href="#linearGradient2877-5" - y1="6.3608937" - y2="10.75" /> - <radialGradient - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - gradientUnits="userSpaceOnUse" - id="radialGradient14249" - inkscape:collect="always" - r="6.46875" - xlink:href="#linearGradient2920-9" /> - <linearGradient - gradientTransform="translate(0,3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3567-2" - inkscape:collect="always" - x1="17.999674" - x2="30" - xlink:href="#linearGradient3228-6" - y1="10.081399" - y2="10.081399" /> - <linearGradient - id="linearGradient3228-6"> - <stop - id="stop3230-6" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3573-7" - offset="0.06770357" - style="stop-color:black;stop-opacity:0.42857143;" /> - <stop - id="stop3569-4" - offset="0.29894069" - style="stop-color:black;stop-opacity:0;" /> - <stop - id="stop3571-1" - offset="0.77437174" - style="stop-color:black;stop-opacity:0.49803922;" /> - <stop - id="stop3232-3" - offset="1" - style="stop-color:black;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - gradientUnits="userSpaceOnUse" - id="linearGradient14264" - inkscape:collect="always" - x1="20.483149" - x2="28.357954" - xlink:href="#linearGradient3579-6" - y1="3.4711361" - y2="25.991137" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0" - id="radialGradient16183" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0" - id="radialGradient16185" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3711-4" - id="radialGradient16191" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - r="13.08399" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2965-77" - id="radialGradient16193" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3779-6" - id="linearGradient16195" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - x1="23.997437" - y1="37.835339" - x2="29.74268" - y2="32.355263" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3703-7" - id="linearGradient16197" - gradientUnits="userSpaceOnUse" - x1="23.8125" - y1="41.836731" - x2="27.272261" - y2="28.590008" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8" - id="linearGradient16199" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="25.606806" - y1="36.722809" - x2="23.640165" - y2="30.421146" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9" - id="linearGradient16201" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9" - id="linearGradient16203" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(20,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3" - id="linearGradient16205" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7" - id="linearGradient16207" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14,0)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7" - id="linearGradient16209" - gradientUnits="userSpaceOnUse" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7" - id="linearGradient16211" - gradientUnits="userSpaceOnUse" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7" - id="linearGradient16213" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5" - id="linearGradient16215" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7" - id="linearGradient16217" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5" - id="linearGradient16219" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9" - id="radialGradient16221" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6" - id="linearGradient16223" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2965-77" - id="radialGradient16225" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9" - id="linearGradient16227" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7" - id="linearGradient16229" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6" - id="linearGradient16231" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4-1" - id="linearGradient16233" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.5837775,-0.800515)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9" - id="linearGradient16235" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.3749995,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <inkscape:perspective - id="perspective16278" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-3" - id="radialGradient16183-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - id="linearGradient4499-0-3" - inkscape:collect="always"> - <stop - id="stop4501-7-4" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop4503-6-1" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-3" - id="radialGradient16185-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3711-4-6" - id="radialGradient16191-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - r="13.08399" /> - <linearGradient - id="linearGradient3711-4-6" - inkscape:collect="always"> - <stop - id="stop3713-2-8" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop3715-0-7" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2965-77-1" - id="radialGradient16193-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - id="linearGradient2965-77-1" - inkscape:collect="always"> - <stop - id="stop2967-5-9" - offset="0" - style="stop-color:#888a85;stop-opacity:1;" /> - <stop - id="stop2969-4-3" - offset="1" - style="stop-color:#888a85;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3779-6-3" - id="linearGradient16195-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - x1="23.997437" - y1="37.835339" - x2="29.74268" - y2="32.355263" /> - <linearGradient - id="linearGradient3779-6-3" - inkscape:collect="always"> - <stop - id="stop3781-56-9" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3783-5-4" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3703-7-5" - id="linearGradient16197-2" - gradientUnits="userSpaceOnUse" - x1="23.8125" - y1="41.836731" - x2="27.272261" - y2="28.590008" /> - <linearGradient - id="linearGradient3703-7-5" - inkscape:collect="always"> - <stop - id="stop3705-1-9" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop3707-7-4" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-8" - id="linearGradient16199-1" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="25.606806" - y1="36.722809" - x2="23.640165" - y2="30.421146" /> - <linearGradient - id="linearGradient3726-8-8"> - <stop - id="stop3728-16-4" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop3730-8-1" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-7" - id="linearGradient16201-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient3795-9-7"> - <stop - id="stop3797-07-9" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop3799-60-4" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-7" - id="linearGradient16203-0" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(20,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient16318"> - <stop - id="stop16320" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop16322" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-7" - id="linearGradient16205-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient2981-3-7"> - <stop - id="stop2983-2-5" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop2985-7-4" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-9" - id="linearGradient16207-0" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14,0)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient2943-7-9"> - <stop - id="stop2945-1-2" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop2947-3-8" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-9" - id="linearGradient16209-0" - gradientUnits="userSpaceOnUse" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient16333"> - <stop - id="stop16335" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16337" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-3" - id="linearGradient16211-0" - gradientUnits="userSpaceOnUse" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" /> - <linearGradient - id="linearGradient2904-7-3"> - <stop - id="stop2906-6-1" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop2910-3-1" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2912-9-6" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop2908-6-2" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient4487-9-6" - inkscape:collect="always" - x1="17.625" - x2="17.625" - xlink:href="#linearGradient4481-5-6" - y1="20.814491" - y2="5.125" /> - <linearGradient - id="linearGradient4481-5-6"> - <stop - id="stop4483-9-6" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop4485-81-8" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-7" - id="linearGradient16213-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient3734-7-7"> - <stop - id="stop3736-7-5" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop3738-3-4" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-1" - id="linearGradient16215-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - id="linearGradient2867-5-1" - inkscape:collect="always"> - <stop - id="stop2869-3-7" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2871-8-3" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-9" - id="linearGradient16217-8" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - id="linearGradient3815-7-9" - inkscape:collect="always"> - <stop - id="stop3817-73-9" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3819-4-9" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-8" - id="linearGradient16219-9" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <linearGradient - id="linearGradient2877-5-8" - inkscape:collect="always"> - <stop - id="stop2879-5-6" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2881-5-3" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-8" - id="radialGradient16221-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - id="linearGradient2920-9-8" - inkscape:collect="always"> - <stop - id="stop2922-3-6" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2924-9-6" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0,3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3567-2-8" - inkscape:collect="always" - x1="17.999674" - x2="30" - xlink:href="#linearGradient3228-6-8" - y1="10.081399" - y2="10.081399" /> - <linearGradient - id="linearGradient3228-6-8"> - <stop - id="stop3230-6-2" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3573-7-1" - offset="0.06770357" - style="stop-color:black;stop-opacity:0.42857143;" /> - <stop - id="stop3569-4-1" - offset="0.29894069" - style="stop-color:black;stop-opacity:0;" /> - <stop - id="stop3571-1-8" - offset="0.77437174" - style="stop-color:black;stop-opacity:0.49803922;" /> - <stop - id="stop3232-3-3" - offset="1" - style="stop-color:black;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-6" - id="linearGradient16223-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - id="linearGradient3579-6-6" - inkscape:collect="always"> - <stop - id="stop3581-4-0" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop3583-1-8" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient3012-3-0" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0-3" /> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient4505-3-7" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0-3" /> - <radialGradient - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - gradientUnits="userSpaceOnUse" - id="radialGradient3691-5-3" - inkscape:collect="always" - r="13.08399" - xlink:href="#linearGradient3711-4-6" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2965-77-1" - id="radialGradient16225-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - gradientUnits="userSpaceOnUse" - id="linearGradient3785-4-5" - inkscape:collect="always" - x1="23.997437" - x2="29.74268" - xlink:href="#linearGradient3779-6-3" - y1="37.835339" - y2="32.355263" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11071-4-6" - id="radialGradient11077-1-5" - cx="317.625" - cy="151.625" - fx="317.625" - fy="151.625" - r="1.875" - gradientTransform="matrix(1,0,0,0.5,0,75.8125)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient11071-4-6"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop11073-9-9" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop11075-5-3" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient3709-2-5" - inkscape:collect="always" - x1="23.8125" - x2="27.272261" - xlink:href="#linearGradient3703-7-5" - y1="41.836731" - y2="28.590008" /> - <linearGradient - gradientTransform="translate(0,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient3732-0-0" - inkscape:collect="always" - x1="25.606806" - x2="23.640165" - xlink:href="#linearGradient3726-8-8" - y1="36.722809" - y2="30.421146" /> - <linearGradient - id="linearGradient16427"> - <stop - id="stop16429" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16431" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-7" - id="linearGradient16227-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient16434"> - <stop - id="stop16436" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop16438" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(20,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient3805-6-4" - inkscape:collect="always" - x1="13.567612" - x2="13.567612" - xlink:href="#linearGradient3795-9-7" - y1="18.432873" - y2="19.231655" /> - <linearGradient - id="linearGradient16441"> - <stop - id="stop16443" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop16445" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - gradientUnits="userSpaceOnUse" - id="linearGradient2987-1-9" - inkscape:collect="always" - x1="23.374121" - x2="21.649811" - xlink:href="#linearGradient2981-3-7" - y1="19.452076" - y2="25.229111" /> - <linearGradient - id="linearGradient16448"> - <stop - id="stop16450" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop16452" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="translate(14,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient2953-0-3" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7-9" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient16455"> - <stop - id="stop16457" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16459" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2949-2-7" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7-9" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient16462"> - <stop - id="stop16464" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16466" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2902-5-7" - inkscape:collect="always" - x1="18.737373" - x2="30.230837" - xlink:href="#linearGradient2904-7-3" - y1="13.351768" - y2="13.351768" /> - <linearGradient - id="linearGradient16469"> - <stop - id="stop16471" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop16473" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop16475" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop16477" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-6" - id="linearGradient10904-8-1" - gradientUnits="userSpaceOnUse" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" /> - <linearGradient - id="linearGradient16480"> - <stop - id="stop16482" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop16484" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-7" - id="linearGradient16229-5" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient16487"> - <stop - id="stop16489" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop16491" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - gradientUnits="userSpaceOnUse" - id="linearGradient2890-3-6" - inkscape:collect="always" - x1="19.583334" - x2="23.176371" - xlink:href="#linearGradient2867-5-1" - y1="10.76408" - y2="10.76408" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2892-2-9" - inkscape:collect="always" - x1="23.246162" - x2="23.246162" - xlink:href="#linearGradient3815-7-9" - y1="24.761473" - y2="15.94703" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2894-0-3" - inkscape:collect="always" - x1="21.961548" - x2="24.508121" - xlink:href="#linearGradient2877-5-8" - y1="6.3608937" - y2="10.75" /> - <radialGradient - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - gradientUnits="userSpaceOnUse" - id="radialGradient2926-3-8" - inkscape:collect="always" - r="6.46875" - xlink:href="#linearGradient2920-9-8" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-6" - id="linearGradient16231-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-3" - id="radialGradient10966-5-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-8" - id="linearGradient10982-6-8" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.5837775,-0.800515)" - x1="16.396276" - y1="27.198471" - x2="16.365026" - y2="18.992922" /> - <linearGradient - id="linearGradient16536"> - <stop - id="stop16538" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16540" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4-1-5" - id="linearGradient16233-6" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.5837775,-0.800515)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <linearGradient - id="linearGradient3726-4-1-5"> - <stop - id="stop3728-9-8-5" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop3730-2-5-8" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-7" - id="linearGradient16235-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.3749995,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient16547"> - <stop - id="stop16549" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop16551" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-7" - id="linearGradient10986-3-5" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(18.59884,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient16554"> - <stop - id="stop16556" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop16558" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-7" - id="linearGradient10988-7-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93365598,0,0,0.94630428,0.1070789,1.560429)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient16561"> - <stop - id="stop16563" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop16565" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-9" - id="linearGradient10990-3-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2486592,0,0,1.0113615,11.508715,-0.56075794)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient16568"> - <stop - id="stop16570" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16572" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-9" - id="linearGradient10992-5-1" - gradientUnits="userSpaceOnUse" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" - gradientTransform="matrix(0.98788104,0,0,1.0113615,-0.23976961,-0.56075794)" /> - <linearGradient - id="linearGradient16575"> - <stop - id="stop16577" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16579" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-3" - id="linearGradient10994-5-3" - gradientUnits="userSpaceOnUse" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" /> - <linearGradient - id="linearGradient16582"> - <stop - id="stop16584" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop16586" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop16588" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop16590" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-6" - id="linearGradient10996-1-4" - gradientUnits="userSpaceOnUse" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" /> - <linearGradient - id="linearGradient16593"> - <stop - id="stop16595" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop16597" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-1" - id="linearGradient11000-8-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-9" - id="linearGradient11002-1-4" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-8" - id="linearGradient11004-7-9" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-8" - id="radialGradient11006-6-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.75692381,-14.17818,0.21133448)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-6" - id="linearGradient11008-8-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9517316,0,0,0.94372518,-0.44251773,3.1419782)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-8" - id="linearGradient11093-2-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0,1,-1.8541642,0,56.847505,8.8537229)" - x1="14.547704" - y1="23.530848" - x2="12.968358" - y2="23.518084" /> - <linearGradient - id="linearGradient16635"> - <stop - id="stop16637" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16639" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-7" - id="linearGradient10998-4-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0625002,0,0,0.76351725,-1.5382359,3.9735816)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient16642"> - <stop - id="stop16644" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop16646" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4-1-5" - id="linearGradient16237-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.85553658,0,0,0.77385304,0.52441214,2.4879707)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <linearGradient - id="linearGradient16649"> - <stop - id="stop16651" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16653" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-7" - id="linearGradient16239-9" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.3749995,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient16656"> - <stop - id="stop16658" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop16660" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-7" - id="linearGradient13119-0-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.86359943,0,0,1,16.977403,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient16663"> - <stop - id="stop16665" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop16667" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-7" - id="linearGradient13121-7-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.79373266,0,0,0.7916132,1.1565043,3.4403526)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient16670"> - <stop - id="stop16672" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop16674" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-9" - id="linearGradient13125-0-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.98788104,0,0,0.98347786,-0.23976961,-0.44878866)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient16677"> - <stop - id="stop16679" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop16681" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-3" - id="linearGradient13127-3-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" /> - <linearGradient - id="linearGradient16684"> - <stop - id="stop16686" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop16688" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop16690" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop16692" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-6" - id="linearGradient13129-9-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" /> - <linearGradient - id="linearGradient16695"> - <stop - id="stop16697" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop16699" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-1" - id="linearGradient13131-7-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-9" - id="linearGradient13133-0-9" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-8" - id="linearGradient13135-6-1" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-8" - id="radialGradient13137-8-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3831764,0,0,0.73605512,-11.304892,0.24124002)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-6" - id="linearGradient13139-6-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.95796767,0,0,0.91036433,-1.6428678,3.1920195)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4-1" - id="linearGradient17466" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.85553658,0,0,0.77385304,0.52441214,2.4879707)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9" - id="linearGradient17468" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.3749995,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9" - id="linearGradient17470" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.86359943,0,0,1,16.977403,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3" - id="linearGradient17472" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.79373266,0,0,0.7916132,1.1565043,3.4403526)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7" - id="linearGradient17474" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.98788104,0,0,0.98347786,-0.23976961,-0.44878866)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7" - id="linearGradient17476" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5" - id="linearGradient17478" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5" - id="linearGradient17480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7" - id="linearGradient17482" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5" - id="linearGradient17484" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9" - id="radialGradient17486" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3831764,0,0,0.73605512,-11.304892,0.24124002)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6" - id="linearGradient17488" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.95796767,0,0,0.91036433,-1.6428678,3.1920195)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <inkscape:perspective - id="perspective17506" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-0" - id="radialGradient16183-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - id="linearGradient4499-0-0" - inkscape:collect="always"> - <stop - id="stop4501-7-6" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop4503-6-3" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-0" - id="radialGradient16185-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3711-4-5" - id="radialGradient16191-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - r="13.08399" /> - <linearGradient - id="linearGradient3711-4-5" - inkscape:collect="always"> - <stop - id="stop3713-2-4" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop3715-0-77" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2965-77-5" - id="radialGradient16193-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - id="linearGradient2965-77-5" - inkscape:collect="always"> - <stop - id="stop2967-5-6" - offset="0" - style="stop-color:#888a85;stop-opacity:1;" /> - <stop - id="stop2969-4-9" - offset="1" - style="stop-color:#888a85;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3779-6-7" - id="linearGradient16195-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - x1="23.997437" - y1="37.835339" - x2="29.74268" - y2="32.355263" /> - <linearGradient - id="linearGradient3779-6-7" - inkscape:collect="always"> - <stop - id="stop3781-56-6" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3783-5-47" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3703-7-4" - id="linearGradient16197-4" - gradientUnits="userSpaceOnUse" - x1="23.8125" - y1="41.836731" - x2="27.272261" - y2="28.590008" /> - <linearGradient - id="linearGradient3703-7-4" - inkscape:collect="always"> - <stop - id="stop3705-1-6" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop3707-7-3" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-6" - id="linearGradient16199-9" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="25.606806" - y1="36.722809" - x2="23.640165" - y2="30.421146" /> - <linearGradient - id="linearGradient3726-8-6"> - <stop - id="stop3728-16-2" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop3730-8-3" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-1" - id="linearGradient16201-0" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient3795-9-1"> - <stop - id="stop3797-07-6" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop3799-60-6" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-1" - id="linearGradient16203-1" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(20,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17546"> - <stop - id="stop17548" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17550" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-4" - id="linearGradient16205-85" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient2981-3-4"> - <stop - id="stop2983-2-51" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop2985-7-1" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-1" - id="linearGradient16207-1" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14,0)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient2943-7-1"> - <stop - id="stop2945-1-9" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop2947-3-3" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-1" - id="linearGradient16209-6" - gradientUnits="userSpaceOnUse" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient17561"> - <stop - id="stop17563" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17565" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-2" - id="linearGradient16211-7" - gradientUnits="userSpaceOnUse" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" /> - <linearGradient - id="linearGradient2904-7-2"> - <stop - id="stop2906-6-4" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop2910-3-4" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2912-9-1" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop2908-6-9" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient4487-9-1" - inkscape:collect="always" - x1="17.625" - x2="17.625" - xlink:href="#linearGradient4481-5-5" - y1="20.814491" - y2="5.125" /> - <linearGradient - id="linearGradient4481-5-5"> - <stop - id="stop4483-9-5" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop4485-81-0" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-6" - id="linearGradient16213-1" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient3734-7-6"> - <stop - id="stop3736-7-6" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop3738-3-5" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-7" - id="linearGradient16215-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - id="linearGradient2867-5-7" - inkscape:collect="always"> - <stop - id="stop2869-3-6" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2871-8-7" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-96" - id="linearGradient16217-3" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - id="linearGradient3815-7-96" - inkscape:collect="always"> - <stop - id="stop3817-73-8" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3819-4-5" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-2" - id="linearGradient16219-3" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <linearGradient - id="linearGradient2877-5-2" - inkscape:collect="always"> - <stop - id="stop2879-5-7" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2881-5-6" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-81" - id="radialGradient16221-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - id="linearGradient2920-9-81" - inkscape:collect="always"> - <stop - id="stop2922-3-3" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2924-9-5" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0,3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3567-2-3" - inkscape:collect="always" - x1="17.999674" - x2="30" - xlink:href="#linearGradient3228-6-89" - y1="10.081399" - y2="10.081399" /> - <linearGradient - id="linearGradient3228-6-89"> - <stop - id="stop3230-6-6" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3573-7-9" - offset="0.06770357" - style="stop-color:black;stop-opacity:0.42857143;" /> - <stop - id="stop3569-4-2" - offset="0.29894069" - style="stop-color:black;stop-opacity:0;" /> - <stop - id="stop3571-1-2" - offset="0.77437174" - style="stop-color:black;stop-opacity:0.49803922;" /> - <stop - id="stop3232-3-4" - offset="1" - style="stop-color:black;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-5" - id="linearGradient16223-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - id="linearGradient3579-6-5" - inkscape:collect="always"> - <stop - id="stop3581-4-1" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop3583-1-9" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient3012-3-2" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0-0" /> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient4505-3-2" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0-0" /> - <radialGradient - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - gradientUnits="userSpaceOnUse" - id="radialGradient3691-5-6" - inkscape:collect="always" - r="13.08399" - xlink:href="#linearGradient3711-4-5" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2965-77-5" - id="radialGradient16225-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - gradientUnits="userSpaceOnUse" - id="linearGradient3785-4-0" - inkscape:collect="always" - x1="23.997437" - x2="29.74268" - xlink:href="#linearGradient3779-6-7" - y1="37.835339" - y2="32.355263" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11071-4-0" - id="radialGradient11077-1-1" - cx="317.625" - cy="151.625" - fx="317.625" - fy="151.625" - r="1.875" - gradientTransform="matrix(1,0,0,0.5,0,75.8125)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient11071-4-0"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop11073-9-8" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop11075-5-2" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient3709-2-6" - inkscape:collect="always" - x1="23.8125" - x2="27.272261" - xlink:href="#linearGradient3703-7-4" - y1="41.836731" - y2="28.590008" /> - <linearGradient - gradientTransform="translate(0,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient3732-0-3" - inkscape:collect="always" - x1="25.606806" - x2="23.640165" - xlink:href="#linearGradient3726-8-6" - y1="36.722809" - y2="30.421146" /> - <linearGradient - id="linearGradient17655"> - <stop - id="stop17657" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17659" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-1" - id="linearGradient16227-6" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17662"> - <stop - id="stop17664" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17666" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(20,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient3805-6-5" - inkscape:collect="always" - x1="13.567612" - x2="13.567612" - xlink:href="#linearGradient3795-9-1" - y1="18.432873" - y2="19.231655" /> - <linearGradient - id="linearGradient17669"> - <stop - id="stop17671" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17673" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - gradientUnits="userSpaceOnUse" - id="linearGradient2987-1-93" - inkscape:collect="always" - x1="23.374121" - x2="21.649811" - xlink:href="#linearGradient2981-3-4" - y1="19.452076" - y2="25.229111" /> - <linearGradient - id="linearGradient17676"> - <stop - id="stop17678" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop17680" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="translate(14,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient2953-0-30" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7-1" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient17683"> - <stop - id="stop17685" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17687" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2949-2-6" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7-1" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient17690"> - <stop - id="stop17692" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17694" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2902-5-8" - inkscape:collect="always" - x1="18.737373" - x2="30.230837" - xlink:href="#linearGradient2904-7-2" - y1="13.351768" - y2="13.351768" /> - <linearGradient - id="linearGradient17697"> - <stop - id="stop17699" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17701" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop17703" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop17705" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-5" - id="linearGradient10904-8-5" - gradientUnits="userSpaceOnUse" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" /> - <linearGradient - id="linearGradient17708"> - <stop - id="stop17710" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop17712" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-6" - id="linearGradient16229-6" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient17715"> - <stop - id="stop17717" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17719" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - gradientUnits="userSpaceOnUse" - id="linearGradient2890-3-9" - inkscape:collect="always" - x1="19.583334" - x2="23.176371" - xlink:href="#linearGradient2867-5-7" - y1="10.76408" - y2="10.76408" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2892-2-2" - inkscape:collect="always" - x1="23.246162" - x2="23.246162" - xlink:href="#linearGradient3815-7-96" - y1="24.761473" - y2="15.94703" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2894-0-5" - inkscape:collect="always" - x1="21.961548" - x2="24.508121" - xlink:href="#linearGradient2877-5-2" - y1="6.3608937" - y2="10.75" /> - <radialGradient - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - gradientUnits="userSpaceOnUse" - id="radialGradient2926-3-1" - inkscape:collect="always" - r="6.46875" - xlink:href="#linearGradient2920-9-81" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-5" - id="linearGradient16231-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-0" - id="radialGradient10966-5-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-6" - id="linearGradient10982-6-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.5837775,-0.800515)" - x1="16.396276" - y1="27.198471" - x2="16.365026" - y2="18.992922" /> - <linearGradient - id="linearGradient17764"> - <stop - id="stop17766" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17768" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4-1-1" - id="linearGradient16233-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.5837775,-0.800515)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <linearGradient - id="linearGradient3726-4-1-1"> - <stop - id="stop3728-9-8-55" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop3730-2-5-3" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-1" - id="linearGradient16235-36" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.3749995,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17775"> - <stop - id="stop17777" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17779" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-1" - id="linearGradient10986-3-54" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(18.59884,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17782"> - <stop - id="stop17784" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17786" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-4" - id="linearGradient10988-7-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93365598,0,0,0.94630428,0.1070789,1.560429)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient17789"> - <stop - id="stop17791" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop17793" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-1" - id="linearGradient10990-3-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2486592,0,0,1.0113615,11.508715,-0.56075794)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient17796"> - <stop - id="stop17798" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17800" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-1" - id="linearGradient10992-5-8" - gradientUnits="userSpaceOnUse" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" - gradientTransform="matrix(0.98788104,0,0,1.0113615,-0.23976961,-0.56075794)" /> - <linearGradient - id="linearGradient17803"> - <stop - id="stop17805" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17807" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-2" - id="linearGradient10994-5-5" - gradientUnits="userSpaceOnUse" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" /> - <linearGradient - id="linearGradient17810"> - <stop - id="stop17812" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17814" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop17816" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop17818" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-5" - id="linearGradient10996-1-8" - gradientUnits="userSpaceOnUse" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" /> - <linearGradient - id="linearGradient17821"> - <stop - id="stop17823" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop17825" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-7" - id="linearGradient11000-8-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-96" - id="linearGradient11002-1-0" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-2" - id="linearGradient11004-7-7" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-81" - id="radialGradient11006-6-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.75692381,-14.17818,0.21133448)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-5" - id="linearGradient11008-8-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9517316,0,0,0.94372518,-0.44251773,3.1419782)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-6" - id="linearGradient11093-2-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0,1,-1.8541642,0,56.847505,8.8537229)" - x1="14.547704" - y1="23.530848" - x2="12.968358" - y2="23.518084" /> - <linearGradient - id="linearGradient17863"> - <stop - id="stop17865" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17867" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-6" - id="linearGradient10998-4-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0625002,0,0,0.76351725,-1.5382359,3.9735816)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient17870"> - <stop - id="stop17872" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17874" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4-1-1" - id="linearGradient17466-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.85553658,0,0,0.77385304,0.52441214,2.4879707)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <linearGradient - id="linearGradient17877"> - <stop - id="stop17879" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17881" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-1" - id="linearGradient17468-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.3749995,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17884"> - <stop - id="stop17886" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17888" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-1" - id="linearGradient17470-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.86359943,0,0,1,16.977403,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17891"> - <stop - id="stop17893" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17895" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-4" - id="linearGradient17472-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.79373266,0,0,0.7916132,1.1565043,3.4403526)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient17898"> - <stop - id="stop17900" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop17902" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-1" - id="linearGradient17474-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.98788104,0,0,0.98347786,-0.23976961,-0.44878866)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient17905"> - <stop - id="stop17907" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17909" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-2" - id="linearGradient17476-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" /> - <linearGradient - id="linearGradient17912"> - <stop - id="stop17914" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17916" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop17918" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop17920" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-5" - id="linearGradient17478-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" /> - <linearGradient - id="linearGradient17923"> - <stop - id="stop17925" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop17927" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-7" - id="linearGradient17480-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-96" - id="linearGradient17482-0" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-2" - id="linearGradient17484-9" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-81" - id="radialGradient17486-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3831764,0,0,0.73605512,-11.304892,0.24124002)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-5" - id="linearGradient17488-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.95796767,0,0,0.91036433,-1.6428678,3.1920195)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <inkscape:perspective - id="perspective17506-2" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-6" - id="radialGradient16183-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - id="linearGradient4499-0-6" - inkscape:collect="always"> - <stop - id="stop4501-7-47" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop4503-6-36" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-6" - id="radialGradient16185-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3711-4-9" - id="radialGradient16191-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - r="13.08399" /> - <linearGradient - id="linearGradient3711-4-9" - inkscape:collect="always"> - <stop - id="stop3713-2-5" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop3715-0-3" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2965-77-10" - id="radialGradient16193-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - id="linearGradient2965-77-10" - inkscape:collect="always"> - <stop - id="stop2967-5-7" - offset="0" - style="stop-color:#888a85;stop-opacity:1;" /> - <stop - id="stop2969-4-2" - offset="1" - style="stop-color:#888a85;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3779-6-8" - id="linearGradient16195-88" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - x1="23.997437" - y1="37.835339" - x2="29.74268" - y2="32.355263" /> - <linearGradient - id="linearGradient3779-6-8" - inkscape:collect="always"> - <stop - id="stop3781-56-91" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3783-5-3" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3703-7-44" - id="linearGradient16197-3" - gradientUnits="userSpaceOnUse" - x1="23.8125" - y1="41.836731" - x2="27.272261" - y2="28.590008" /> - <linearGradient - id="linearGradient3703-7-44" - inkscape:collect="always"> - <stop - id="stop3705-1-1" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop3707-7-9" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-3" - id="linearGradient16199-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="25.606806" - y1="36.722809" - x2="23.640165" - y2="30.421146" /> - <linearGradient - id="linearGradient3726-8-3"> - <stop - id="stop3728-16-48" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop3730-8-9" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-2" - id="linearGradient16201-2" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient3795-9-2"> - <stop - id="stop3797-07-97" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop3799-60-1" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-2" - id="linearGradient16203-9" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(20,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17546-2"> - <stop - id="stop17548-2" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17550-6" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-1" - id="linearGradient16205-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient2981-3-1"> - <stop - id="stop2983-2-7" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop2985-7-7" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-6" - id="linearGradient16207-02" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14,0)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient2943-7-6"> - <stop - id="stop2945-1-8" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop2947-3-2" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-6" - id="linearGradient16209-5" - gradientUnits="userSpaceOnUse" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient17561-1"> - <stop - id="stop17563-5" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17565-0" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-1" - id="linearGradient16211-70" - gradientUnits="userSpaceOnUse" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" /> - <linearGradient - id="linearGradient2904-7-1"> - <stop - id="stop2906-6-7" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop2910-3-6" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2912-9-63" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop2908-6-6" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient4487-9-5" - inkscape:collect="always" - x1="17.625" - x2="17.625" - xlink:href="#linearGradient4481-5-69" - y1="20.814491" - y2="5.125" /> - <linearGradient - id="linearGradient4481-5-69"> - <stop - id="stop4483-9-65" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop4485-81-2" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-74" - id="linearGradient16213-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient3734-7-74"> - <stop - id="stop3736-7-64" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop3738-3-7" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-2" - id="linearGradient16215-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - id="linearGradient2867-5-2" - inkscape:collect="always"> - <stop - id="stop2869-3-77" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2871-8-0" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-95" - id="linearGradient16217-7" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - id="linearGradient3815-7-95" - inkscape:collect="always"> - <stop - id="stop3817-73-0" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3819-4-7" - offset="1" - style="stop-color:black;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-89" - id="linearGradient16219-5" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <linearGradient - id="linearGradient2877-5-89" - inkscape:collect="always"> - <stop - id="stop2879-5-8" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2881-5-7" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-2" - id="radialGradient16221-54" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - id="linearGradient2920-9-2" - inkscape:collect="always"> - <stop - id="stop2922-3-1" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop2924-9-1" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0,3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3567-2-0" - inkscape:collect="always" - x1="17.999674" - x2="30" - xlink:href="#linearGradient3228-6-2" - y1="10.081399" - y2="10.081399" /> - <linearGradient - id="linearGradient3228-6-2"> - <stop - id="stop3230-6-0" - offset="0" - style="stop-color:black;stop-opacity:1;" /> - <stop - id="stop3573-7-6" - offset="0.06770357" - style="stop-color:black;stop-opacity:0.42857143;" /> - <stop - id="stop3569-4-6" - offset="0.29894069" - style="stop-color:black;stop-opacity:0;" /> - <stop - id="stop3571-1-7" - offset="0.77437174" - style="stop-color:black;stop-opacity:0.49803922;" /> - <stop - id="stop3232-3-5" - offset="1" - style="stop-color:black;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-50" - id="linearGradient16223-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - id="linearGradient3579-6-50" - inkscape:collect="always"> - <stop - id="stop3581-4-8" - offset="0" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop3583-1-94" - offset="1" - style="stop-color:white;stop-opacity:0;" /> - </linearGradient> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient3012-3-8" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0-6" /> - <radialGradient - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - gradientUnits="userSpaceOnUse" - id="radialGradient4505-3-8" - inkscape:collect="always" - r="12.59534" - xlink:href="#linearGradient4499-0-6" /> - <radialGradient - cx="18.753521" - cy="40.578671" - fx="18.753521" - fy="40.578671" - gradientTransform="matrix(1.106546,0,0,0.58328,-1.909343,15.04719)" - gradientUnits="userSpaceOnUse" - id="radialGradient3691-5-4" - inkscape:collect="always" - r="13.08399" - xlink:href="#linearGradient3711-4-9" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2965-77-10" - id="radialGradient16225-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - gradientTransform="matrix(0.980843,0,0,0.974547,0.59387,-0.156861)" - gradientUnits="userSpaceOnUse" - id="linearGradient3785-4-8" - inkscape:collect="always" - x1="23.997437" - x2="29.74268" - xlink:href="#linearGradient3779-6-8" - y1="37.835339" - y2="32.355263" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11071-4-7" - id="radialGradient11077-1-16" - cx="317.625" - cy="151.625" - fx="317.625" - fy="151.625" - r="1.875" - gradientTransform="matrix(1,0,0,0.5,0,75.8125)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient11071-4-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop11073-9-86" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop11075-5-6" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient3709-2-8" - inkscape:collect="always" - x1="23.8125" - x2="27.272261" - xlink:href="#linearGradient3703-7-44" - y1="41.836731" - y2="28.590008" /> - <linearGradient - gradientTransform="translate(0,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient3732-0-5" - inkscape:collect="always" - x1="25.606806" - x2="23.640165" - xlink:href="#linearGradient3726-8-3" - y1="36.722809" - y2="30.421146" /> - <linearGradient - id="linearGradient17655-3"> - <stop - id="stop17657-4" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17659-7" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-2" - id="linearGradient16227-67" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17662-8"> - <stop - id="stop17664-9" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17666-7" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(20,-1)" - gradientUnits="userSpaceOnUse" - id="linearGradient3805-6-47" - inkscape:collect="always" - x1="13.567612" - x2="13.567612" - xlink:href="#linearGradient3795-9-2" - y1="18.432873" - y2="19.231655" /> - <linearGradient - id="linearGradient17669-7"> - <stop - id="stop17671-1" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17673-8" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.940947,0,1.564893)" - gradientUnits="userSpaceOnUse" - id="linearGradient2987-1-2" - inkscape:collect="always" - x1="23.374121" - x2="21.649811" - xlink:href="#linearGradient2981-3-1" - y1="19.452076" - y2="25.229111" /> - <linearGradient - id="linearGradient17676-1"> - <stop - id="stop17678-9" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop17680-3" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="translate(14,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient2953-0-7" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7-6" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient17683-7"> - <stop - id="stop17685-2" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17687-3" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2949-2-4" - inkscape:collect="always" - x1="16.65625" - x2="16.65625" - xlink:href="#linearGradient2943-7-6" - y1="16.14632" - y2="20.381033" /> - <linearGradient - id="linearGradient17690-2"> - <stop - id="stop17692-4" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17694-0" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2902-5-1" - inkscape:collect="always" - x1="18.737373" - x2="30.230837" - xlink:href="#linearGradient2904-7-1" - y1="13.351768" - y2="13.351768" /> - <linearGradient - id="linearGradient17697-4"> - <stop - id="stop17699-8" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17701-7" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop17703-2" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop17705-3" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-69" - id="linearGradient10904-8-2" - gradientUnits="userSpaceOnUse" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" /> - <linearGradient - id="linearGradient17708-6"> - <stop - id="stop17710-1" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop17712-8" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-74" - id="linearGradient16229-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-1)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient17715-1"> - <stop - id="stop17717-9" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17719-1" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1,0,0,0.809211,0,2.763158)" - gradientUnits="userSpaceOnUse" - id="linearGradient2890-3-7" - inkscape:collect="always" - x1="19.583334" - x2="23.176371" - xlink:href="#linearGradient2867-5-2" - y1="10.76408" - y2="10.76408" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2892-2-7" - inkscape:collect="always" - x1="23.246162" - x2="23.246162" - xlink:href="#linearGradient3815-7-95" - y1="24.761473" - y2="15.94703" /> - <linearGradient - gradientUnits="userSpaceOnUse" - id="linearGradient2894-0-0" - inkscape:collect="always" - x1="21.961548" - x2="24.508121" - xlink:href="#linearGradient2877-5-89" - y1="6.3608937" - y2="10.75" /> - <radialGradient - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - gradientTransform="matrix(1.580773,0,0,0.961547,-12.77702,-2.531609)" - gradientUnits="userSpaceOnUse" - id="radialGradient2926-3-87" - inkscape:collect="always" - r="6.46875" - xlink:href="#linearGradient2920-9-2" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-50" - id="linearGradient16231-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.09091,0,0,1.100001,-1.681827,0.84999)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4499-0-6" - id="radialGradient10966-5-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.508772,0,18.12988)" - cx="23.82066" - cy="36.907261" - fx="23.82066" - fy="36.907261" - r="12.59534" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-3" - id="linearGradient10982-6-88" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.5837775,-0.800515)" - x1="16.396276" - y1="27.198471" - x2="16.365026" - y2="18.992922" /> - <linearGradient - id="linearGradient17764-9"> - <stop - id="stop17766-5" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17768-0" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4-1-2" - id="linearGradient16233-5" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.5837775,-0.800515)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <linearGradient - id="linearGradient3726-4-1-2"> - <stop - id="stop3728-9-8-4" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop3730-2-5-9" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-2" - id="linearGradient16235-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.3749995,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17775-5"> - <stop - id="stop17777-6" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17779-3" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-2" - id="linearGradient10986-3-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(18.59884,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17782-8"> - <stop - id="stop17784-8" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17786-6" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-1" - id="linearGradient10988-7-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93365598,0,0,0.94630428,0.1070789,1.560429)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient17789-1"> - <stop - id="stop17791-7" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop17793-1" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-6" - id="linearGradient10990-3-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2486592,0,0,1.0113615,11.508715,-0.56075794)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient17796-8"> - <stop - id="stop17798-4" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17800-1" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-6" - id="linearGradient10992-5-5" - gradientUnits="userSpaceOnUse" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" - gradientTransform="matrix(0.98788104,0,0,1.0113615,-0.23976961,-0.56075794)" /> - <linearGradient - id="linearGradient17803-5"> - <stop - id="stop17805-0" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17807-5" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-1" - id="linearGradient10994-5-0" - gradientUnits="userSpaceOnUse" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" /> - <linearGradient - id="linearGradient17810-2"> - <stop - id="stop17812-3" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17814-8" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop17816-3" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop17818-1" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-69" - id="linearGradient10996-1-1" - gradientUnits="userSpaceOnUse" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" - gradientTransform="matrix(0.89850937,0,0,0.87500727,0.63399027,2.2558288)" /> - <linearGradient - id="linearGradient17821-8"> - <stop - id="stop17823-3" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop17825-7" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-2" - id="linearGradient11000-8-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-95" - id="linearGradient11002-1-9" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-89" - id="linearGradient11004-7-3" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-2" - id="radialGradient11006-6-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.580773,0,0,0.75692381,-14.17818,0.21133448)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-50" - id="linearGradient11008-8-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9517316,0,0,0.94372518,-0.44251773,3.1419782)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-8-3" - id="linearGradient11093-2-74" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0,1,-1.8541642,0,56.847505,8.8537229)" - x1="14.547704" - y1="23.530848" - x2="12.968358" - y2="23.518084" /> - <linearGradient - id="linearGradient17863-1"> - <stop - id="stop17865-6" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17867-1" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3734-7-74" - id="linearGradient10998-4-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0625002,0,0,0.76351725,-1.5382359,3.9735816)" - x1="24.6875" - y1="36.75" - x2="24.6875" - y2="28.617105" /> - <linearGradient - id="linearGradient17870-3"> - <stop - id="stop17872-4" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17874-7" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3726-4-1-2" - id="linearGradient17466-39" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.85553658,0,0,0.77385304,0.52441214,2.4879707)" - x1="16.271276" - y1="23.729721" - x2="16.271276" - y2="18.305422" /> - <linearGradient - id="linearGradient17877-8"> - <stop - id="stop17879-1" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17881-6" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-2" - id="linearGradient17468-0" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.3749995,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17884-6"> - <stop - id="stop17886-6" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17888-2" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3795-9-2" - id="linearGradient17470-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.86359943,0,0,1,16.977403,-0.923861)" - x1="13.567612" - y1="18.432873" - x2="13.567612" - y2="19.231655" /> - <linearGradient - id="linearGradient17891-6"> - <stop - id="stop17893-8" - offset="0" - style="stop-color:white;stop-opacity:1" /> - <stop - id="stop17895-4" - offset="1" - style="stop-color:#eeeeec;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2981-3-1" - id="linearGradient17472-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.79373266,0,0,0.7916132,1.1565043,3.4403526)" - x1="23.374121" - y1="19.452076" - x2="21.649811" - y2="25.229111" /> - <linearGradient - id="linearGradient17898-6"> - <stop - id="stop17900-9" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop17902-7" - offset="1" - style="stop-color:white;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2943-7-6" - id="linearGradient17474-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.98788104,0,0,0.98347786,-0.23976961,-0.44878866)" - x1="16.65625" - y1="16.14632" - x2="16.65625" - y2="20.381033" /> - <linearGradient - id="linearGradient17905-9"> - <stop - id="stop17907-2" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop17909-4" - offset="1" - style="stop-color:#2e3436;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2904-7-1" - id="linearGradient17476-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - x1="18.737373" - y1="13.351768" - x2="30.230837" - y2="13.351768" /> - <linearGradient - id="linearGradient17912-1"> - <stop - id="stop17914-9" - offset="0" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - id="stop17916-4" - offset="0.21551724" - style="stop-color:white;stop-opacity:1;" /> - <stop - id="stop17918-7" - offset="0.70243758" - style="stop-color:#c3c4c2;stop-opacity:1;" /> - <stop - id="stop17920-2" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4481-5-69" - id="linearGradient17478-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90205069,0,0,0.84683731,-0.52819355,2.298084)" - x1="17.375" - y1="15.314491" - x2="17.625" - y2="5.125" /> - <linearGradient - id="linearGradient17923-2"> - <stop - id="stop17925-7" - offset="0" - style="stop-color:#3e403d;stop-opacity:1" /> - <stop - id="stop17927-8" - offset="1" - style="stop-color:#babdb6;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2867-5-2" - id="linearGradient17480-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.72266039,0,4.7538205)" - x1="19.583334" - y1="10.76408" - x2="23.176371" - y2="10.76408" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3815-7-95" - id="linearGradient17482-8" - gradientUnits="userSpaceOnUse" - x1="23.246162" - y1="24.761473" - x2="23.246162" - y2="15.94703" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2877-5-89" - id="linearGradient17484-8" - gradientUnits="userSpaceOnUse" - x1="21.961548" - y1="6.3608937" - x2="24.508121" - y2="10.75" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2920-9-2" - id="radialGradient17486-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3831764,0,0,0.73605512,-11.304892,0.24124002)" - cx="22.553526" - cy="10.432782" - fx="22.553526" - fy="10.432782" - r="6.46875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3579-6-50" - id="linearGradient17488-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.95796767,0,0,0.91036433,-1.6428678,3.1920195)" - x1="20.483149" - y1="3.4711361" - x2="28.357954" - y2="25.991137" /> - <inkscape:perspective - id="perspective24256" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient20940-6" - id="radialGradient20946-9" - cx="1534.875" - cy="197.3125" - fx="1534.875" - fy="197.3125" - r="4.5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.7936036,0,0,1.7936036,-1218.0823,-156.58791)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient20940-6"> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0" - id="stop20942-0" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop20944-9" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient20921-3" - id="linearGradient20938-8-0" - gradientUnits="userSpaceOnUse" - x1="1540.5205" - y1="196.31589" - x2="1540.5205" - y2="204" /> - <linearGradient - inkscape:collect="always" - id="linearGradient20921-3"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop20923-9" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop20925-0" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient20940-6" - id="radialGradient20964-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.7936036,0,0,1.7936036,-1218.0823,-156.58791)" - cx="1534.875" - cy="197.3125" - fx="1534.875" - fy="197.3125" - r="4.5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient20921-3" - id="linearGradient20966-5" - gradientUnits="userSpaceOnUse" - x1="1540.5205" - y1="196.31589" - x2="1540.5205" - y2="204" /> - <filter - inkscape:collect="always" - id="filter10244-3" - x="-0.07" - width="1.14" - y="-0.41999999" - height="1.84" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.2625" - id="feGaussianBlur10246-6" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10299-6" - id="radialGradient20846-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(5.7381652,0,0,2.7438309,-3451.61,-805.90483)" - cx="728.12396" - cy="459.94751" - fx="728.12396" - fy="459.94751" - r="5.5" /> - <linearGradient - inkscape:collect="always" - id="linearGradient10299-6"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop10301-6" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop10303-1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10326-4-1" - id="radialGradient20848-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(6.8033781,0,0,2.9242241,-4114.4753,-1103.4401)" - cx="711.25" - cy="532.375" - fx="711.25" - fy="532.375" - r="4.5" /> - <linearGradient - id="linearGradient10326-4-1" - inkscape:collect="always"> - <stop - id="stop10329-8-0" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop10331-9-7" - offset="1" - style="stop-color:#2e3436;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient10181-9" - id="linearGradient20850-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3227953,0,0,1.333167,-216.67883,-256.74506)" - x1="712.64349" - y1="533.83154" - x2="716.09131" - y2="542.42279" /> - <linearGradient - inkscape:collect="always" - id="linearGradient10181-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10183-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10185-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10299-6" - id="radialGradient20776-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(5.7827838,0,0,2.7438309,-3484.0716,-805.90483)" - cx="728.12396" - cy="459.94751" - fx="728.12396" - fy="459.94751" - r="5.5" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10326-4-1" - id="radialGradient20778-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(5.6684259,0,0,2.9242241,-3307.2303,-1103.4401)" - cx="711.25" - cy="532.375" - fx="711.25" - fy="532.375" - r="4.5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient10181-9" - id="linearGradient20780-8-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.388165,0,0,1.3893363,-263.34208,-286.88003)" - x1="712.64349" - y1="533.83154" - x2="716.09131" - y2="542.42279" /> - <inkscape:perspective - id="perspective25324" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <inkscape:perspective - id="perspective25467" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-1" - id="radialGradient25400-7" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="107.37611" - fx="371.34375" - fy="107.37611" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-1"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-6" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-0" - id="radialGradient25402-8" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="104.5173" - fx="371.34375" - fy="104.5173" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-0"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-5" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-9" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-1" - id="radialGradient25479" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="107.37611" - fx="371.34375" - fy="107.37611" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-0" - id="radialGradient25487" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="104.5173" - fx="371.34375" - fy="104.5173" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-1" - id="radialGradient25495" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="107.37611" - fx="371.34375" - fy="107.37611" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-0" - id="radialGradient25503" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="104.5173" - fx="371.34375" - fy="104.5173" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-0" - id="radialGradient25428-5" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-0"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-4" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-2" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-5" - id="radialGradient25420-7" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-5"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-5" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-0" - id="radialGradient25519" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-5" - id="radialGradient25527" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-0" - id="radialGradient25535" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-5" - id="radialGradient25543" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422" - id="radialGradient25780" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414" - id="radialGradient25782" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422" - id="radialGradient25790" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414" - id="radialGradient25792" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422" - id="radialGradient25806" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414" - id="radialGradient25808" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <inkscape:perspective - id="perspective25822" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-5" - id="radialGradient25780-1" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-5"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-9" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-20" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-1" - id="radialGradient25782-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-1"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-9" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-9" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-5" - id="radialGradient25790-7" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-1" - id="radialGradient25792-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <inkscape:perspective - id="perspective25954" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17" - id="radialGradient25810-7" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="107.37611" - fx="371.34375" - fy="107.37611" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09" - id="radialGradient25812-3" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="104.5173" - fx="371.34375" - fy="104.5173" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="107.37611" - fx="371.34375" - cy="107.37611" - cx="371.34375" - gradientUnits="userSpaceOnUse" - id="radialGradient25967" - xlink:href="#linearGradient25372-17" - inkscape:collect="always" /> - <radialGradient - r="3.3928573" - fy="104.5173" - fx="371.34375" - cy="104.5173" - cx="371.34375" - gradientUnits="userSpaceOnUse" - id="radialGradient25969" - xlink:href="#linearGradient25346-09" - inkscape:collect="always" /> - <inkscape:perspective - id="perspective26008" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - r="3.3928573" - fy="107.37611" - fx="371.34375" - cy="107.37611" - cx="371.34375" - gradientUnits="userSpaceOnUse" - id="radialGradient25967-7" - xlink:href="#linearGradient25372-17-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17-3"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4-2" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7-3" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="104.5173" - fx="371.34375" - cy="104.5173" - cx="371.34375" - gradientUnits="userSpaceOnUse" - id="radialGradient25969-0" - xlink:href="#linearGradient25346-09-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09-3"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4-4" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3-0" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-5-6" - id="radialGradient25780-1-1" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-5-6"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-9-2" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-20-8" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-1-7" - id="radialGradient25782-9-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-1-7"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-9-2" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-9-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-3" - id="radialGradient26120" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="107.37611" - fx="371.34375" - fy="107.37611" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-3" - id="radialGradient26122" - gradientUnits="userSpaceOnUse" - cx="371.34375" - cy="104.5173" - fx="371.34375" - fy="104.5173" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422" - id="radialGradient26142" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414" - id="radialGradient26144" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422" - id="radialGradient26146" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414" - id="radialGradient26148" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422" - id="radialGradient26150" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414" - id="radialGradient26152" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422" - id="radialGradient26160" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414" - id="radialGradient26162" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422" - id="radialGradient26170" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414" - id="radialGradient26172" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <inkscape:perspective - id="perspective26182" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05" - id="radialGradient26170-6" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-05"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-6" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58" - id="radialGradient26172-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-58"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-6" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-19" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05" - id="radialGradient26160-3" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58" - id="radialGradient26162-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <inkscape:perspective - id="perspective26312" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient25967-75" - xlink:href="#linearGradient25372-17-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17-7"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4-3" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7-7" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient25969-5" - xlink:href="#linearGradient25346-09-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09-6"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4-9" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3-07" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="107.37611" - fx="371.34375" - cy="107.37611" - cx="371.34375" - gradientUnits="userSpaceOnUse" - id="radialGradient26325" - xlink:href="#linearGradient25372-17-7" - inkscape:collect="always" /> - <radialGradient - r="3.3928573" - fy="104.5173" - fx="371.34375" - cy="104.5173" - cx="371.34375" - gradientUnits="userSpaceOnUse" - id="radialGradient26327" - xlink:href="#linearGradient25346-09-6" - inkscape:collect="always" /> - <inkscape:perspective - id="perspective26365" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-2" - id="radialGradient26170-6-7" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-05-2"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-6-3" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-5-8" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-2" - id="radialGradient26172-5-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-58-2"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-6-7" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-19-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-2" - id="radialGradient26160-3-6" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-2" - id="radialGradient26162-9-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient25967-75-0" - xlink:href="#linearGradient25372-17-7-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17-7-4"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4-3-6" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7-7-3" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient25969-5-0" - xlink:href="#linearGradient25346-09-6-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09-6-2"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4-9-3" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3-07-2" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26407" - xlink:href="#linearGradient25372-17-7-4" - inkscape:collect="always" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26409" - xlink:href="#linearGradient25346-09-6-2" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-7-4" - id="radialGradient26490" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-6-2" - id="radialGradient26492" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-7" - id="radialGradient26563" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-6" - id="radialGradient26565" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05" - id="radialGradient26567" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58" - id="radialGradient26569" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05" - id="radialGradient26571" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58" - id="radialGradient26573" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <inkscape:perspective - id="perspective26583" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0" - id="radialGradient26571-6" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-05-0"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-6-1" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-5-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20" - id="radialGradient26573-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-58-20"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-6-4" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-19-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0" - id="radialGradient26567-4" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20" - id="radialGradient26569-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-7-1" - id="radialGradient26563-0" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17-7-1"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4-3-60" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7-7-0" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-6-1" - id="radialGradient26565-2" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09-6-1"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4-9-7" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3-07-8" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26625" - xlink:href="#linearGradient25372-17-7-1" - inkscape:collect="always" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26627" - xlink:href="#linearGradient25346-09-6-1" - inkscape:collect="always" /> - <inkscape:perspective - id="perspective26712" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8" - id="radialGradient26571-6-3" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-05-0-8"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-6-1-7" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-5-5-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6" - id="radialGradient26573-1-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-58-20-6"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-6-4-0" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-19-5-2" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8" - id="radialGradient26567-4-1" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6" - id="radialGradient26569-6-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26625-0" - xlink:href="#linearGradient25372-17-7-1-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17-7-1-9"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4-3-60-8" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7-7-0-3" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26627-8" - xlink:href="#linearGradient25346-09-6-1-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09-6-1-2"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4-9-7-6" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3-07-8-5" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26754" - xlink:href="#linearGradient25372-17-7-1-9" - inkscape:collect="always" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26756" - xlink:href="#linearGradient25346-09-6-1-2" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0" - id="radialGradient26839" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20" - id="radialGradient26841" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <inkscape:perspective - id="perspective26851" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8-8" - id="radialGradient26571-6-3-7" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-05-0-8-8"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-6-1-7-2" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-5-5-4-8" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6-2" - id="radialGradient26573-1-6-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-58-20-6-2"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-6-4-0-3" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-19-5-2-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8-8" - id="radialGradient26567-4-1-8" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6-2" - id="radialGradient26569-6-5-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26754-0" - xlink:href="#linearGradient25372-17-7-1-9-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17-7-1-9-8"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4-3-60-8-1" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7-7-0-3-2" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26756-3" - xlink:href="#linearGradient25346-09-6-1-2-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09-6-1-2-7"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4-9-7-6-2" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3-07-8-5-4" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26893" - xlink:href="#linearGradient25372-17-7-1-9-8" - inkscape:collect="always" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient26895" - xlink:href="#linearGradient25346-09-6-1-2-7" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-7-1-9-8" - id="radialGradient26976" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-6-1-2-7" - id="radialGradient26978" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-7-1-9" - id="radialGradient26996" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-6-1-2" - id="radialGradient26998" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8" - id="radialGradient27000" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6" - id="radialGradient27002" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8" - id="radialGradient27004" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6" - id="radialGradient27006" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <inkscape:perspective - id="perspective27016" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8-0" - id="radialGradient27004-3" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-05-0-8-0"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-6-1-7-8" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-5-5-4-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6-4" - id="radialGradient27006-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-58-20-6-4"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-6-4-0-5" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-19-5-2-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8-0" - id="radialGradient27000-8" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6-4" - id="radialGradient27002-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-7-1-9-2" - id="radialGradient26996-1" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17-7-1-9-2"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4-3-60-8-4" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7-7-0-3-9" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-6-1-2-2" - id="radialGradient26998-6" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09-6-1-2-2"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4-9-7-6-0" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3-07-8-5-6" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient27058" - xlink:href="#linearGradient25372-17-7-1-9-2" - inkscape:collect="always" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient27060" - xlink:href="#linearGradient25346-09-6-1-2-2" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8-0" - id="radialGradient27143" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6-4" - id="radialGradient27145" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <inkscape:perspective - id="perspective27016-0" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8-1" - id="radialGradient27004-7" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-05-0-8-1"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-6-1-7-4" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-5-5-4-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6-8" - id="radialGradient27006-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-58-20-6-8"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-6-4-0-6" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-19-5-2-2" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-8-1" - id="radialGradient27000-1" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-6-8" - id="radialGradient27002-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-7-1-9-1" - id="radialGradient26996-3" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25372-17-7-1-9-1"> - <stop - style="stop-color:#eff1ee;stop-opacity:1" - offset="0" - id="stop25374-4-3-60-8-8" /> - <stop - style="stop-color:#c2c8bc;stop-opacity:1" - offset="1" - id="stop25376-7-7-0-3-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-6-1-2-8" - id="radialGradient26998-3" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25346-09-6-1-2-8"> - <stop - style="stop-color:#babdb6;stop-opacity:1;" - offset="0" - id="stop25348-4-9-7-6-3" /> - <stop - style="stop-color:#969a90;stop-opacity:1" - offset="1" - id="stop25350-3-07-8-5-7" /> - </linearGradient> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient27058-3" - xlink:href="#linearGradient25372-17-7-1-9-1" - inkscape:collect="always" /> - <radialGradient - r="3.3928573" - fy="114.40797" - fx="63.54015" - cy="114.40797" - cx="63.54015" - gradientUnits="userSpaceOnUse" - id="radialGradient27060-7" - xlink:href="#linearGradient25346-09-6-1-2-8" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25372-17-7-1-9-1" - id="radialGradient27226" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25346-09-6-1-2-8" - id="radialGradient27228" - gradientUnits="userSpaceOnUse" - cx="63.54015" - cy="114.40797" - fx="63.54015" - fy="114.40797" - r="3.3928573" /> - <inkscape:perspective - id="perspective11811" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-9" - id="radialGradient26571-6-8" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25422-05-0-9"> - <stop - style="stop-color:#ffed91;stop-opacity:1" - offset="0" - id="stop25424-6-1-8" /> - <stop - style="stop-color:#fca220;stop-opacity:1" - offset="1" - id="stop25426-5-5-8" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-3" - id="radialGradient26573-1-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <linearGradient - inkscape:collect="always" - id="linearGradient25414-58-20-3"> - <stop - style="stop-color:#b95c00;stop-opacity:1" - offset="0" - id="stop25416-6-4-7" /> - <stop - style="stop-color:#ff8712;stop-opacity:1" - offset="1" - id="stop25418-19-5-0" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-9" - id="radialGradient26567-4-6" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-3" - id="radialGradient26569-6-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25422-05-0-9" - id="radialGradient26839-2" - gradientUnits="userSpaceOnUse" - cx="63.437336" - cy="112.84037" - fx="63.437336" - fy="112.84037" - r="1.7356977" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25414-58-20-3" - id="radialGradient26841-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9321479,0,0,1.9321479,-59.22083,-106.92629)" - cx="63.531582" - cy="114.70958" - fx="63.531582" - fy="114.70958" - r="1.7356977" /> - </defs> - <g - id="g12072" - inkscape:groupmode="layer" - style="display:inline" - inkscape:label="high" - transform="translate(6,50)"> - <g - id="g12074" - inkscape:groupmode="layer" - style="display:none" - inkscape:label="baseplate 0"> - <rect - id="rect12078" - x="18" - y="51" - inkscape:label="48x48" - height="48" - width="48" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12080" - x="18" - y="126" - inkscape:label="32x32" - height="32" - width="32" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12082" - x="18" - y="177" - inkscape:label="24x24" - height="24" - width="24" - style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12084" - x="19" - y="178" - inkscape:label="22x22" - height="22" - width="22" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12086" - x="18" - y="221" - inkscape:label="16x16" - height="16" - width="16" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <text - id="text12088" - x="12" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold" - inkscape:label="context" - y="-6" - sodipodi:linespacing="125%"> - <tspan - id="tspan12090" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold">status</tspan> - </text> - <text - id="text12092" - x="11" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold" - inkscape:label="icon-name" - y="14" - sodipodi:linespacing="125%"> - <tspan - id="tspan12094" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold">audio-input-microphone-high</tspan> - </text> - </g> - <g - inkscape:groupmode="layer" - id="layer2" - inkscape:label="icons"> - <g - id="g48" - style="display:inline;enable-background:new" - transform="translate(13.040289,51)"> - <path - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" - id="path3010" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="opacity:0.1;fill:url(#radialGradient16183);fill-opacity:1;stroke:none;display:inline" - transform="matrix(0.727673,0,0,1.235135,7.166344,-12.0556)" /> - <path - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" - id="path4489" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="opacity:0.7;fill:url(#radialGradient16185);fill-opacity:1;stroke:none;display:inline" - transform="matrix(1.233813,0,0,1.235135,-4.890235,-6.055598)" /> - <path - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" - id="path3683" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="fill:url(#radialGradient16191);fill-opacity:1;stroke:#555753;stroke-width:0.97730058;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - transform="matrix(1.032128,0,0,1.014402,-0.08596444,1.56074)" /> - <path - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" - id="path2955" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="fill:url(#radialGradient16193);fill-opacity:1;stroke:none;display:inline" - transform="matrix(0.43667,0,0,0.429141,14.09824,21.41158)" /> - <path - d="m 27.35249,32.125 c -1.738654,0.735383 -2.545819,2.052948 -3.67816,3.167277 -0.486309,0.3076 -0.5997,0.709446 -0.51965,1.276685 0.08005,0.567243 0.489446,1.055334 1.042146,1.218184 0.552698,0.162848 0.999547,0.130039 1.377887,-0.302139 C 26.676195,35.285524 28.744563,33.983863 31,32.85591 29.870496,32.536987 28.651039,32.264053 27.35249,32.125 z" - id="path3766" - sodipodi:nodetypes="ccssccc" - style="opacity:0.7;fill:url(#linearGradient16195);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> - <path - d="m 23.8125,31.5 c -3.339495,0 -6.371551,0.683256 -8.46875,1.75 -2.097199,1.066744 -3.125,2.416366 -3.125,3.65625 0,1.239884 1.027801,2.589506 3.125,3.65625 2.097199,1.066744 5.129255,1.750001 8.46875,1.75 3.339495,0 6.371551,-0.683256 8.46875,-1.75 2.097199,-1.066744 3.125,-2.416366 3.125,-3.65625 0,-1.239884 -1.027801,-2.589506 -3.125,-3.65625 C 30.184051,32.183256 27.151995,31.5 23.8125,31.5 z" - id="path3697" - inkscape:original="M 23.8125 30.5 C 16.859872 30.5 11.21875 33.368948 11.21875 36.90625 C 11.21875 40.443552 16.859872 43.312502 23.8125 43.3125 C 30.765128 43.3125 36.406249 40.443552 36.40625 36.90625 C 36.40625 33.368948 30.765128 30.5 23.8125 30.5 z " - inkscape:radius="-0.99470079" - sodipodi:type="inkscape:offset" - style="opacity:0.4;fill:none;stroke:url(#linearGradient16197);stroke-width:0.97730058;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - transform="matrix(1.032128,0,0,1.014402,-0.08596444,1.56074)" /> - <path - d="m 24.5,27.5 0,9" - id="path3589" - sodipodi:nodetypes="cc" - style="fill:none;stroke:url(#linearGradient16199);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - d="m 34.500008,18.999997 c -8e-6,4.285711 -4.46,7.500001 -10.000002,7.500001 -5.540002,0 -10.000006,-3.21429 -10.000003,-7.500001" - id="path2781" - sodipodi:nodetypes="csc" - style="fill:none;stroke:#888a85;stroke-width:3.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <rect - height="2.9999995" - id="rect2783" - style="fill:url(#linearGradient16201);fill-opacity:1;stroke:#888a85;stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="4" - x="12.5" - y="16.499998" /> - <rect - height="2.9999995" - id="rect3803" - style="fill:url(#linearGradient16203);fill-opacity:1;stroke:#888a85;stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="4" - x="32.5" - y="16.499998" /> - <path - d="m 34.500008,18.999991 c 0,4.28571 -4.46,7.500001 -10.000002,7.500001 -5.540002,0 -10.000006,-3.214291 -10.000003,-7.500001" - id="rect1882" - sodipodi:nodetypes="csc" - style="fill:none;stroke:url(#linearGradient16205);stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <rect - height="6" - id="rect2951" - rx="0.9722718" - ry="0.9722718" - style="fill:url(#linearGradient16207);fill-opacity:1;stroke:none;display:inline" - width="3.0000005" - x="30" - y="15" /> - <path - d="m 14.5,19 c 0,0.276142 -0.223858,0.5 -0.5,0.5 -0.276142,0 -0.5,-0.223858 -0.5,-0.5 0,-0.276142 0.223858,-0.5 0.5,-0.5 0.276142,0 0.5,0.223858 0.5,0.5 z" - id="path3825" - sodipodi:cx="14" - sodipodi:cy="19" - sodipodi:rx="0.5" - sodipodi:ry="0.5" - sodipodi:type="arc" - style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" - transform="matrix(1.5,0,0,1.5,12.25,-11.25)" /> - <rect - height="6" - id="rect2787" - rx="0.9722718" - ry="0.9722718" - style="fill:url(#linearGradient16209);fill-opacity:1;stroke:none;display:inline" - width="3.0000005" - x="16" - y="15" /> - <rect - height="24.000008" - id="rect1880" - rx="7.0000019" - ry="7.0108709" - style="fill:url(#linearGradient16211);fill-opacity:1;stroke:url(#linearGradient4487-9);stroke-width:1.00000048;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - width="14.000004" - x="17.499996" - y="1.5000002" /> - <path - d="m 24.5,26.5 0,10" - id="path3587" - sodipodi:nodetypes="cc" - style="fill:none;stroke:url(#linearGradient16213);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" /> - <path - d="m 14.5,19 c 0,0.276142 -0.223858,0.5 -0.5,0.5 -0.276142,0 -0.5,-0.223858 -0.5,-0.5 0,-0.276142 0.223858,-0.5 0.5,-0.5 0.276142,0 0.5,0.223858 0.5,0.5 z" - id="path3823" - sodipodi:cx="14" - sodipodi:cy="19" - sodipodi:rx="0.5" - sodipodi:ry="0.5" - sodipodi:type="arc" - style="fill:#ffffff;fill-opacity:1;stroke:none" - transform="matrix(1.5,0,0,1.5,-7.75,-11.25)" /> - <g - id="g3270" - inkscape:label="Shadow" - transform="translate(-9.25,46.68088)" /> - <g - id="g2611" - inkscape:label="Shadow" - transform="translate(-9.25,61.74691)" /> - <g - id="g2613" - inkscape:label="Lavoro" - style="display:inline" - transform="translate(-9.25,61.74691)" /> - <g - id="g2885"> - <rect - height="15.374996" - id="rect1975" - rx="2" - ry="2.1991496" - style="fill:url(#linearGradient16215);fill-opacity:1;stroke:none;display:inline" - width="4" - x="20" - y="6" /> - <path - d="m 24.5,3.03125 c -3.586223,0 -6.46875,2.8766161 -6.46875,6.46875 l 0,10 c 0,3.592133 2.882528,6.46875 6.46875,6.46875 3.586222,0 6.46875,-2.876617 6.46875,-6.46875 l 0,-10 c 0,-3.5921334 -2.882527,-6.46875 -6.46875,-6.46875 z" - id="path3811" - inkscape:original="M 24.5 2.5 C 20.621999 2.5 17.5 5.615977 17.5 9.5 L 17.5 19.5 C 17.5 23.384022 20.621999 26.5 24.5 26.5 C 28.378001 26.5 31.5 23.384022 31.5 19.5 L 31.5 9.5 C 31.5 5.6159775 28.378001 2.5 24.5 2.5 z " - inkscape:radius="-0.54470092" - sodipodi:type="inkscape:offset" - style="opacity:0.2;fill:url(#linearGradient16217);fill-opacity:1;stroke:none;display:inline" - transform="translate(0,-1)" /> - <path - d="M 27,7.6875 C 27,9.378872 25.502952,10.75 23.65625,10.75 21.809548,10.75 20.3125,9.378872 20.3125,7.6875 20.3125,5.996128 21.809548,4.625 23.65625,4.625 25.502952,4.625 27,5.996128 27,7.6875 z" - id="path2875" - sodipodi:cx="23.65625" - sodipodi:cy="7.6875" - sodipodi:rx="3.34375" - sodipodi:ry="3.0625" - sodipodi:type="arc" - style="fill:url(#linearGradient16219);fill-opacity:1;stroke:none" - transform="matrix(1,0,0,1.081633,-0.375,-1.252551)" /> - </g> - <path - d="m 24.5,3.03125 c -3.586223,0 -6.46875,2.8766161 -6.46875,6.46875 l 0,5 12.9375,0 0,-5 c 0,-3.5921334 -2.882527,-6.46875 -6.46875,-6.46875 z" - id="path2916" - sodipodi:nodetypes="cccccc" - style="opacity:0.9;fill:url(#radialGradient16221);fill-opacity:1;stroke:none;display:inline" - transform="translate(0,-1)" /> - <path - d="M 22.5,3 C 22.224,3 22,3.224 22,3.5 22,3.776 22.224,4 22.5,4 22.776,4 23,3.776 23,3.5 23,3.224 22.776,3 22.5,3 z m 2,0 C 24.224,3 24,3.224 24,3.5 24,3.776 24.224,4 24.5,4 24.776,4 25,3.776 25,3.5 25,3.224 24.776,3 24.5,3 z m 2,0 C 26.224,3 26,3.224 26,3.5 26,3.776 26.224,4 26.5,4 26.776,4 27,3.776 27,3.5 27,3.224 26.776,3 26.5,3 z m -5,1 C 21.224,4 21,4.224 21,4.5 21,4.776 21.224,5 21.5,5 21.776,5 22,4.776 22,4.5 22,4.224 21.776,4 21.5,4 z m 2,0 C 23.224,4 22.999999,4.2240007 23,4.5 23,4.7759993 23.223999,5 23.5,5 23.776,5 24,4.7759993 24,4.5 24,4.2240007 23.776,4 23.5,4 z m 2,0 C 25.224,4 24.999999,4.2240007 25,4.5 25,4.7759993 25.223999,5 25.5,5 25.776,5 26,4.7759993 26,4.5 26,4.2240007 25.776,4 25.5,4 z m 2,0 C 27.224,4 27,4.224 27,4.5 27,4.776 27.224,5 27.5,5 27.776,5 28,4.776 28,4.5 28,4.224 27.776,4 27.5,4 z m -7,1 C 20.224,5 19.999999,5.2240008 20,5.5 20,5.7759993 20.223999,6 20.5,6 20.776,6 21,5.7759994 21,5.5 21,5.2240007 20.776,5 20.5,5 z m 2,0 C 22.224,5 21.999999,5.2240008 22,5.5 22,5.7759993 22.223999,6 22.5,6 22.776,6 23,5.7759994 23,5.5 23,5.2240007 22.776,5 22.5,5 z m 2,0 C 24.224,5 23.999999,5.2240008 24,5.5 24,5.7759993 24.223999,6 24.5,6 24.776,6 25,5.7759994 25,5.5 25,5.2240007 24.776,5 24.5,5 z m 2,0 C 26.224,5 25.999999,5.2240008 26,5.5 26,5.7759993 26.223999,6 26.5,6 26.776,6 27,5.7759994 27,5.5 27,5.2240007 26.776,5 26.5,5 z m 2,0 C 28.224,5 28,5.224 28,5.5 28,5.776 28.224,6 28.5,6 28.776,6 29,5.776 29,5.5 29,5.224 28.776,5 28.5,5 z m -9,1 C 19.224,6 18.999999,6.2240008 19,6.5 19,6.7759993 19.223999,7 19.5,7 19.776,7 20,6.7759994 20,6.5 20,6.2240007 19.776,6 19.5,6 z m 2,0 C 21.224,6 20.999999,6.2240008 21,6.5 21,6.7759993 21.223999,7 21.5,7 21.776,7 22,6.7759994 22,6.5 22,6.2240007 21.776,6 21.5,6 z m 2,0 C 23.224,6 22.999999,6.2240008 23,6.5 23,6.7759993 23.223999,7 23.5,7 23.776,7 24,6.7759994 24,6.5 24,6.2240007 23.776,6 23.5,6 z m 2,0 C 25.224,6 24.999999,6.2240008 25,6.5 25,6.7759993 25.223999,7 25.5,7 25.776,7 26,6.7759994 26,6.5 26,6.2240007 25.776,6 25.5,6 z m 2,0 C 27.224,6 26.999999,6.2240008 27,6.5 27,6.7759993 27.223999,7 27.5,7 27.776,7 28,6.7759994 28,6.5 28,6.2240007 27.776,6 27.5,6 z m 2,0 C 29.224,6 29,6.224 29,6.5 29,6.776 29.224,7 29.5,7 29.776,7 30,6.776 30,6.5 30,6.224 29.776,6 29.5,6 z m -9,1 C 20.224,7 19.999999,7.2240008 20,7.5 20,7.7759993 20.223999,8.0000002 20.5,8 20.776,8 21,7.7759994 21,7.5 21,7.2240007 20.776,7 20.5,7 z m 2,0 C 22.224,7 21.999999,7.2240008 22,7.5 22,7.7759993 22.223999,8.0000002 22.5,8 22.776,8 23,7.7759994 23,7.5 23,7.2240007 22.776,7 22.5,7 z m 2,0 C 24.224,7 23.999999,7.2240008 24,7.5 24,7.7759993 24.223999,8.0000002 24.5,8 24.776,8 25,7.7759994 25,7.5 25,7.2240007 24.776,7 24.5,7 z m 2,0 C 26.224,7 25.999999,7.2240008 26,7.5 26,7.7759993 26.223999,8.0000002 26.5,8 26.776,8 27,7.7759994 27,7.5 27,7.2240007 26.776,7 26.5,7 z m 2,0 C 28.224,7 27.999999,7.2240008 28,7.5 28,7.7759993 28.223999,8.0000002 28.5,8 28.776,8 29,7.7759994 29,7.5 29,7.2240007 28.776,7 28.5,7 z m 2,0 C 30.224,7 30,7.224 30,7.5 30,7.776 30.224,8 30.5,8 30.776,8 31,7.776 31,7.5 31,7.224 30.776,7 30.5,7 z m -11,1 C 19.224,8 18.999999,8.2240008 19,8.5 19,8.7759993 19.223999,9 19.5,9 19.776,9 20,8.7759994 20,8.5 20,8.2240007 19.776,8 19.5,8 z m 2,0 C 21.224,8 20.999999,8.2240008 21,8.5 21,8.7759993 21.223999,9 21.5,9 21.776,9 22,8.7759994 22,8.5 22,8.2240007 21.776,8 21.5,8 z m 2,0 C 23.224,8 22.999999,8.2240008 23,8.5 23,8.7759993 23.223999,9 23.5,9 23.776,9 24,8.7759994 24,8.5 24,8.2240007 23.776,8 23.5,8 z m 2,0 C 25.224,8 24.999999,8.2240008 25,8.5 25,8.7759993 25.223999,9 25.5,9 25.776,9 26,8.7759994 26,8.5 26,8.2240007 25.776,8 25.5,8 z m 2,0 C 27.224,8 26.999999,8.2240008 27,8.5 27,8.7759993 27.223999,9 27.5,9 27.776,9 28,8.7759994 28,8.5 28,8.2240007 27.776,8 27.5,8 z m 2,0 C 29.224,8 28.999999,8.2240008 29,8.5 29,8.7759993 29.223999,9 29.5,9 29.776,9 30,8.7759994 30,8.5 30,8.2240007 29.776,8 29.5,8 z m -11,1 C 18.224,9 17.999999,9.224001 18,9.5 18,9.775999 18.223999,10 18.5,10 18.776,10 19,9.775999 19,9.5 19,9.224001 18.776,9 18.5,9 z m 2,0 C 20.224,9 19.999999,9.224001 20,9.5 20,9.775999 20.223999,10 20.5,10 20.776,10 21,9.775999 21,9.5 21,9.224001 20.776,9 20.5,9 z m 2,0 C 22.224,9 21.999999,9.224001 22,9.5 22,9.775999 22.223999,10 22.5,10 22.776,10 23,9.775999 23,9.5 23,9.224001 22.776,9 22.5,9 z m 2,0 C 24.224,9 23.999999,9.224001 24,9.5 24,9.775999 24.223999,10 24.5,10 24.776,10 25,9.775999 25,9.5 25,9.224001 24.776,9 24.5,9 z m 2,0 C 26.224,9 25.999999,9.224001 26,9.5 26,9.775999 26.223999,10 26.5,10 26.776,10 27,9.775999 27,9.5 27,9.224001 26.776,9 26.5,9 z m 2,0 C 28.224,9 27.999999,9.224001 28,9.5 28,9.775999 28.223999,10 28.5,10 28.776,10 29,9.775999 29,9.5 29,9.224001 28.776,9 28.5,9 z m 2,0 C 30.224,9 30,9.224 30,9.5 30,9.776 30.224,10 30.5,10 30.776,10 31,9.776 31,9.5 31,9.224 30.776,9 30.5,9 z m -11,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 19.776,11 20,10.775999 20,10.5 20,10.224001 19.776,10 19.5,10 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 21.776,11 22,10.775999 22,10.5 22,10.224001 21.776,10 21.5,10 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 23.776,11 24,10.775999 24,10.5 24,10.224001 23.776,10 23.5,10 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 25.776,11 26,10.775999 26,10.5 26,10.224001 25.776,10 25.5,10 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 27.776,11 28,10.775999 28,10.5 28,10.224001 27.776,10 27.5,10 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 29.776,11 30,10.775999 30,10.5 30,10.224001 29.776,10 29.5,10 z m -11,1 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 18.776,12 19,11.775999 19,11.5 19,11.224001 18.776,11 18.5,11 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 20.776,12 21,11.775999 21,11.5 21,11.224001 20.776,11 20.5,11 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 22.776,12 23,11.775999 23,11.5 23,11.224001 22.776,11 22.5,11 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 24.776,12 25,11.775999 25,11.5 25,11.224001 24.776,11 24.5,11 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 26.776,12 27,11.775999 27,11.5 27,11.224001 26.776,11 26.5,11 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 28.776,12 29,11.775999 29,11.5 29,11.224001 28.776,11 28.5,11 z m 2,0 C 30.224,11 30,11.224 30,11.5 30,11.776 30.224,12 30.5,12 30.776,12 31,11.776 31,11.5 31,11.224 30.776,11 30.5,11 z m -11,1 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 19.776,13 20,12.775999 20,12.5 20,12.224001 19.776,12 19.5,12 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 21.776,13 22,12.775999 22,12.5 22,12.224001 21.776,12 21.5,12 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 23.776,13 24,12.775999 24,12.5 24,12.224001 23.776,12 23.5,12 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 25.776,13 26,12.775999 26,12.5 26,12.224001 25.776,12 25.5,12 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 27.776,13 28,12.775999 28,12.5 28,12.224001 27.776,12 27.5,12 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 29.776,13 30,12.775999 30,12.5 30,12.224001 29.776,12 29.5,12 z m -11,1 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 18.776,14 19,13.775999 19,13.5 19,13.224001 18.776,13 18.5,13 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 20.776,14 21,13.775999 21,13.5 21,13.224001 20.776,13 20.5,13 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 22.776,14 23,13.775999 23,13.5 23,13.224001 22.776,13 22.5,13 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 24.776,14 25,13.775999 25,13.5 25,13.224001 24.776,13 24.5,13 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 26.776,14 27,13.775999 27,13.5 27,13.224001 26.776,13 26.5,13 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 28.776,14 29,13.775999 29,13.5 29,13.224001 28.776,13 28.5,13 z m 2,0 C 30.224,13 30,13.224 30,13.5 30,13.776 30.224,14 30.5,14 30.776,14 31,13.776 31,13.5 31,13.224 30.776,13 30.5,13 z m -11,1 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 19.776,15 20,14.775999 20,14.5 20,14.224001 19.776,14 19.5,14 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 21.776,15 22,14.775999 22,14.5 22,14.224001 21.776,14 21.5,14 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 23.776,15 24,14.775999 24,14.5 24,14.224001 23.776,14 23.5,14 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 25.776,15 26,14.775999 26,14.5 26,14.224001 25.776,14 25.5,14 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 27.776,15 28,14.775999 28,14.5 28,14.224001 27.776,14 27.5,14 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 29.776,15 30,14.775999 30,14.5 30,14.224001 29.776,14 29.5,14 z m -11,1 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 18.776,16 19,15.775999 19,15.5 19,15.224001 18.776,15 18.5,15 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 20.776,16 21,15.775999 21,15.5 21,15.224001 20.776,15 20.5,15 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 22.776,16 23,15.775999 23,15.5 23,15.224001 22.776,15 22.5,15 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 24.776,16 25,15.775999 25,15.5 25,15.224001 24.776,15 24.5,15 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 26.776,16 27,15.775999 27,15.5 27,15.224001 26.776,15 26.5,15 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 28.776,16 29,15.775999 29,15.5 29,15.224001 28.776,15 28.5,15 z m 2,0 C 30.224,15 30,15.224 30,15.5 30,15.776 30.224,16 30.5,16 30.776,16 31,15.776 31,15.5 31,15.224 30.776,15 30.5,15 z m -11,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 19.776,17 20,16.776 20,16.5 20,16.224001 19.776,16 19.5,16 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 21.776,17 22,16.776 22,16.5 22,16.224001 21.776,16 21.5,16 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 23.776,17 24,16.776 24,16.5 24,16.224001 23.776,16 23.5,16 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 25.776,17 26,16.776 26,16.5 26,16.224001 25.776,16 25.5,16 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 27.776,17 28,16.776 28,16.5 28,16.224001 27.776,16 27.5,16 z m 2,0 c -0.276,0 -0.500001,0.224 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 29.776,17 30,16.775999 30,16.5 30,16.224001 29.776,16 29.5,16 z m -11,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 18.776,18 19,17.776 19,17.5 19,17.224001 18.776,17 18.5,17 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 20.776,18 21,17.776 21,17.5 21,17.224001 20.776,17 20.5,17 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 22.776,18 23,17.776 23,17.5 23,17.224001 22.776,17 22.5,17 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 24.776,18 25,17.776 25,17.5 25,17.224001 24.776,17 24.5,17 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 26.776,18 27,17.776 27,17.5 27,17.224001 26.776,17 26.5,17 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 28.776,18 29,17.776 29,17.5 29,17.224001 28.776,17 28.5,17 z m 2,0 C 30.224,17 30,17.224 30,17.5 30,17.776 30.224,18 30.5,18 30.776,18 31,17.776 31,17.5 31,17.224 30.776,17 30.5,17 z m -11,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 19.776,19 20,18.776 20,18.5 20,18.224001 19.776,18 19.5,18 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 21.776,19 22,18.776 22,18.5 22,18.224001 21.776,18 21.5,18 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 23.776,19 24,18.776 24,18.5 24,18.224001 23.776,18 23.5,18 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 25.776,19 26,18.776 26,18.5 26,18.224001 25.776,18 25.5,18 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 27.776,19 28,18.776 28,18.5 28,18.224001 27.776,18 27.5,18 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.5 0.5,0.5 C 29.776,19 30,18.776 30,18.5 30,18.224001 29.776,18 29.5,18 z m -11,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 18.776,20 19,19.776 19,19.5 19,19.224001 18.776,19 18.5,19 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 20.776,20 21,19.776 21,19.5 21,19.224001 20.776,19 20.5,19 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 22.776,20 23,19.776 23,19.5 23,19.224001 22.776,19 22.5,19 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 24.776,20 25,19.776 25,19.5 25,19.224001 24.776,19 24.5,19 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 26.776,20 27,19.776 27,19.5 27,19.224001 26.776,19 26.5,19 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 28.776,20 29,19.776 29,19.5 29,19.224001 28.776,19 28.5,19 z m 2,0 C 30.224,19 30,19.224 30,19.5 30,19.776 30.224,20 30.5,20 30.776,20 31,19.776 31,19.5 31,19.224 30.776,19 30.5,19 z m -11,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 19.776,21 20,20.776 20,20.5 20,20.224001 19.776,20 19.5,20 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 21.776,21 22,20.776 22,20.5 22,20.224001 21.776,20 21.5,20 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 23.776,21 24,20.776 24,20.5 24,20.224001 23.776,20 23.5,20 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 25.776,21 26,20.776 26,20.5 26,20.224001 25.776,20 25.5,20 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 27.776,21 28,20.776 28,20.5 28,20.224001 27.776,20 27.5,20 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 29.776,21 30,20.776 30,20.5 30,20.224001 29.776,20 29.5,20 z m -9,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 20.776,22 21,21.776 21,21.5 21,21.224001 20.776,21 20.5,21 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 22.776,22 23,21.776 23,21.5 23,21.224001 22.776,21 22.5,21 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 24.776,22 25,21.776 25,21.5 25,21.224001 24.776,21 24.5,21 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 26.776,22 27,21.776 27,21.5 27,21.224001 26.776,21 26.5,21 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 28.776,22 29,21.776 29,21.5 29,21.224001 28.776,21 28.5,21 z m -7,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 21.776,23 22,22.776 22,22.5 22,22.224001 21.776,22 21.5,22 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 23.776,23 24,22.776 24,22.5 24,22.224001 23.776,22 23.5,22 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 25.776,23 26,22.776 26,22.5 26,22.224001 25.776,22 25.5,22 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 27.776,23 28,22.776 28,22.5 28,22.224001 27.776,22 27.5,22 z m -5,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 22.776,24 23,23.776 23,23.5 23,23.224001 22.776,23 22.5,23 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 24.776,24 25,23.776 25,23.5 25,23.224001 24.776,23 24.5,23 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 26.776,24 27,23.776 27,23.5 27,23.224001 26.776,23 26.5,23 z m -3,1 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 23.776,25 24,24.776 24,24.5 24,24.224001 23.776,24 23.5,24 z m 2,0 c -0.276,0 -0.500001,0.224001 -0.5,0.5 0,0.275999 0.223999,0.499999 0.5,0.5 C 25.776,25 26,24.776 26,24.5 26,24.224001 25.776,24 25.5,24 z" - id="path2902" - sodipodi:nodetypes="csssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssc" - style="opacity:0.5;fill:url(#linearGradient3567-2);fill-opacity:1;stroke:none;display:inline" /> - <rect - height="22.000008" - id="rect3575" - rx="6.0000024" - ry="6.0500031" - style="fill:none;stroke:url(#linearGradient16223);stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="12.000005" - x="18.500008" - y="2.5000026" /> - </g> - <g - id="g32" - style="display:inline;enable-background:new" - transform="translate(16.061531,126)"> - <path - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" - id="path137" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="opacity:0.1;fill:url(#radialGradient3012-3);fill-opacity:1;stroke:none;display:inline" - transform="matrix(0.47798,0,0,0.814173,3.385476,-7.268726)" /> - <path - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" - id="path139" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="opacity:0.7;fill:url(#radialGradient4505-3);fill-opacity:1;stroke:none;display:inline" - transform="matrix(0.810444,0,0,0.814173,-4.534024,-3.31366)" /> - <path - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" - id="path145" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="fill:url(#radialGradient3691-5);fill-opacity:1;stroke:#555753;stroke-width:1.48521817;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - transform="matrix(0.677965,0,0,0.668671,-1.378282,1.706858)" /> - <path - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" - id="path147" - sodipodi:cx="23.82066" - sodipodi:cy="36.907261" - sodipodi:rx="12.59534" - sodipodi:ry="6.4081554" - sodipodi:type="arc" - style="fill:url(#radialGradient16225);fill-opacity:1;stroke:none;display:inline" - transform="matrix(0.286831,0,0,0.28288,7.938768,14.79209)" /> - <path - d="m 16.644967,21.85413 c -1.142054,0.484748 -1.672249,1.353257 -2.41604,2.087798 -0.319437,0.202763 -0.393919,0.46765 -0.341337,0.841562 0.05258,0.373913 0.321497,0.695652 0.684545,0.802999 0.363045,0.107346 0.656563,0.08572 0.90508,-0.199163 0.72352,-1.44985 2.08215,-2.307875 3.563659,-3.051397 -0.741927,-0.210226 -1.542941,-0.390138 -2.395907,-0.481799 z" - id="path149" - sodipodi:nodetypes="ccssccc" - style="opacity:0.7;fill:url(#linearGradient3785-4);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> - <path - sodipodi:type="arc" - style="opacity:0.33632286;color:#000000;fill:url(#radialGradient11077-1);fill-opacity:1;stroke:none;stroke-width:2.99999905;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path11047" - sodipodi:cx="317.625" - sodipodi:cy="151.625" - sodipodi:rx="1.875" - sodipodi:ry="0.9375" - d="m 319.5,151.625 c 0,0.51777 -0.83947,0.9375 -1.875,0.9375 -1.03553,0 -1.875,-0.41973 -1.875,-0.9375 0,-0.51777 0.83947,-0.9375 1.875,-0.9375 1.03553,0 1.875,0.41973 1.875,0.9375 z" - transform="matrix(1.2333333,0,0,1.2333333,-377.05,-161.16042)" /> - <path - d="m 23.8125,31.5 c -3.339495,0 -6.371551,0.683256 -8.46875,1.75 -2.097199,1.066744 -3.125,2.416366 -3.125,3.65625 0,1.239884 1.027801,2.589506 3.125,3.65625 2.097199,1.066744 5.129255,1.750001 8.46875,1.75 3.339495,0 6.371551,-0.683256 8.46875,-1.75 2.097199,-1.066744 3.125,-2.416366 3.125,-3.65625 0,-1.239884 -1.027801,-2.589506 -3.125,-3.65625 C 30.184051,32.183256 27.151995,31.5 23.8125,31.5 z" - id="path151" - inkscape:original="M 23.8125 30.5 C 16.859872 30.5 11.21875 33.368948 11.21875 36.90625 C 11.21875 40.443552 16.859872 43.312502 23.8125 43.3125 C 30.765128 43.3125 36.406249 40.443552 36.40625 36.90625 C 36.40625 33.368948 30.765128 30.5 23.8125 30.5 z " - inkscape:radius="-0.99470079" - sodipodi:type="inkscape:offset" - style="opacity:0.4;fill:none;stroke:url(#linearGradient3709-2);stroke-width:1.48521817;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - transform="matrix(0.677965,0,0,0.668671,-1.378282,1.706858)" /> - <path - d="m 14.771278,18.805421 0,5.932594" - id="path153" - sodipodi:nodetypes="cc" - style="fill:none;stroke:url(#linearGradient3732-0);stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - d="m 22.375002,13.702415 c -7e-6,2.825042 -3.317126,4.943828 -7.4375,4.943828 -4.120376,0 -7.4375035,-2.118786 -7.4375013,-4.943828" - id="path155" - sodipodi:nodetypes="csc" - style="fill:none;stroke:#888a85;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <rect - height="1.9775307" - id="rect157" - style="fill:url(#linearGradient16227);fill-opacity:1;stroke:#888a85;stroke-width:0.99999976;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="3.5773213" - x="6.5000014" - y="11.554473" /> - <rect - height="1.9775307" - id="rect159" - style="fill:url(#linearGradient3805-6);fill-opacity:1;stroke:#888a85;stroke-width:0.99999946;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="3.4738331" - x="20.026165" - y="11.554473" /> - <path - d="m 22.500011,12.999996 c 0,3.110755 -3.345,5.443827 -7.500003,5.443827 -4.155002,0 -7.5000061,-2.333072 -7.5000039,-5.443827" - id="path161" - sodipodi:nodetypes="csc" - style="fill:none;stroke:url(#linearGradient2987-1);stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <rect - height="3.9550648" - id="rect163" - rx="0.68577099" - ry="0.64089966" - style="fill:url(#linearGradient2953-0);fill-opacity:1;stroke:none;display:inline" - width="2.1159859" - x="18.384014" - y="10.565716" /> - <path - d="m 14.5,19 c 0,0.276142 -0.223858,0.5 -0.5,0.5 -0.276142,0 -0.5,-0.223858 -0.5,-0.5 0,-0.276142 0.223858,-0.5 0.5,-0.5 0.276142,0 0.5,0.223858 0.5,0.5 z" - id="path165" - sodipodi:cx="14" - sodipodi:cy="19" - sodipodi:rx="0.5" - sodipodi:ry="0.5" - sodipodi:type="arc" - style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" - transform="matrix(0.985291,0,0,0.988766,6.724731,-6.737693)" /> - <rect - height="3.9550648" - id="rect167" - rx="0.69956332" - ry="0.64089966" - style="fill:url(#linearGradient2949-2);fill-opacity:1;stroke:none;display:inline" - width="2.1585429" - x="9" - y="10.565716" /> - <rect - height="15.485228" - id="rect169" - rx="4.4971528" - ry="4.5235372" - style="fill:url(#linearGradient2902-5);fill-opacity:1;stroke:url(#linearGradient10904-8);stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - width="8.9943056" - x="10.500002" - y="1.5000007" /> - <path - d="m 14.771278,18.146244 0,6.591771" - id="path171" - sodipodi:nodetypes="cc" - style="fill:none;stroke:url(#linearGradient16229);stroke-width:0.9999997px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" /> - <path - d="m 14.5,19 c 0,0.276142 -0.223858,0.5 -0.5,0.5 -0.276142,0 -0.5,-0.223858 -0.5,-0.5 0,-0.276142 0.223858,-0.5 0.5,-0.5 0.276142,0 0.5,0.223858 0.5,0.5 z" - id="path173" - sodipodi:cx="14" - sodipodi:cy="19" - sodipodi:rx="0.5" - sodipodi:ry="0.5" - sodipodi:type="arc" - style="fill:#ffffff;fill-opacity:1;stroke:none" - transform="matrix(0.985291,0,0,0.988766,-6.41249,-6.737693)" /> - <g - id="g175" - inkscape:label="Shadow" - transform="translate(-9.25,46.68088)" /> - <g - id="g177" - inkscape:label="Shadow" - transform="translate(-9.25,61.74691)" /> - <g - id="g179" - inkscape:label="Lavoro" - style="display:inline" - transform="translate(-9.25,61.74691)" /> - <g - id="g181" - transform="matrix(0.61993,0,0,0.629204,-0.178118,0.738936)"> - <rect - height="15.374996" - id="rect183" - rx="2" - ry="2.1991496" - style="fill:url(#linearGradient2890-3);fill-opacity:1;stroke:none;display:inline" - width="4" - x="20" - y="6" /> - <path - d="m 24.5,3.03125 c -3.586223,0 -6.46875,2.8766161 -6.46875,6.46875 l 0,10 c 0,3.592133 2.882528,6.46875 6.46875,6.46875 3.586222,0 6.46875,-2.876617 6.46875,-6.46875 l 0,-10 c 0,-3.5921334 -2.882527,-6.46875 -6.46875,-6.46875 z" - id="path185" - inkscape:original="M 24.5 2.5 C 20.621999 2.5 17.5 5.615977 17.5 9.5 L 17.5 19.5 C 17.5 23.384022 20.621999 26.5 24.5 26.5 C 28.378001 26.5 31.5 23.384022 31.5 19.5 L 31.5 9.5 C 31.5 5.6159775 28.378001 2.5 24.5 2.5 z " - inkscape:radius="-0.54470092" - sodipodi:type="inkscape:offset" - style="opacity:0.2;fill:url(#linearGradient2892-2);fill-opacity:1;stroke:none;display:inline" - transform="translate(0,-1)" /> - <path - d="M 27,7.6875 C 27,9.378872 25.502952,10.75 23.65625,10.75 21.809548,10.75 20.3125,9.378872 20.3125,7.6875 20.3125,5.996128 21.809548,4.625 23.65625,4.625 25.502952,4.625 27,5.996128 27,7.6875 z" - id="path187" - sodipodi:cx="23.65625" - sodipodi:cy="7.6875" - sodipodi:rx="3.34375" - sodipodi:ry="3.0625" - sodipodi:type="arc" - style="fill:url(#linearGradient2894-0);fill-opacity:1;stroke:none" - transform="matrix(1,0,0,1.081633,-0.375,-1.252551)" /> - </g> - <path - d="m 15,2.4400583 c -2.217567,0 -4,1.8962005 -4,4.2640543 L 11,10 19,10 19,6.7041126 C 19,4.3362592 17.217568,2.4400583 15,2.4400583 z" - id="path189" - sodipodi:nodetypes="cccccc" - style="opacity:0.9;fill:url(#radialGradient2926-3);fill-opacity:1;stroke:none;display:inline" /> - <rect - height="13.472397" - id="rect191" - rx="3.4931109" - ry="3.7049098" - style="opacity:0.57847535;fill:none;stroke:url(#linearGradient16231);stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="6.9862218" - x="11.500002" - y="2.4999995" /> - <path - id="path13145" - style="opacity:0.29142857;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - d="M 18,6.5 C 18,6.776 17.776,7 17.5,7 17.224,7 17,6.776 17,6.5 17,6.224 17.224,6 17.5,6 17.776,6 18,6.224 18,6.5 z m 0,4 C 18,10.776 17.776,11 17.5,11 17.224,11 17,10.776 17,10.5 17,10.224 17.224,10 17.5,10 c 0.276,0 0.5,0.224 0.5,0.5 z m 0,-2 C 18,8.776 17.776,9 17.5,9 17.224,9 17,8.776 17,8.5 17,8.224 17.224,8 17.5,8 17.776,8 18,8.224 18,8.5 z m 0,4 C 18,12.776 17.776,13 17.5,13 17.224,13 17,12.776 17,12.5 17,12.224 17.224,12 17.5,12 c 0.276,0 0.5,0.224 0.5,0.5 z m -4,-8 C 14,4.776 13.776,5 13.5,5 13.224,5 13,4.776 13,4.5 13,4.224 13.224,4 13.5,4 13.776,4 14,4.224 14,4.5 z m 2,0 C 16,4.776 15.776,5 15.5,5 15.224,5 15,4.776 15,4.5 15,4.224 15.224,4 15.5,4 15.776,4 16,4.224 16,4.5 z m -1,1 C 15,5.776 14.776,6 14.5,6 14.224,6 14,5.776 14,5.5 14,5.224 14.224,5 14.5,5 14.776,5 15,5.224 15,5.5 z m -2,0 C 13,5.776 12.776,6 12.5,6 12.224,6 12,5.776 12,5.5 12,5.224 12.224,5 12.5,5 12.776,5 13,5.224 13,5.5 z m 2,-2 C 15,3.776 14.776,4 14.5,4 14.224,4 14,3.776 14,3.5 14,3.224 14.224,3 14.5,3 14.776,3 15,3.224 15,3.5 z m 2,2 C 17,5.776 16.776,6 16.5,6 16.224,6 16,5.776 16,5.5 16,5.224 16.224,5 16.5,5 16.776,5 17,5.224 17,5.5 z m -1,1 C 16,6.776 15.776,7 15.5,7 15.224,7 15,6.776 15,6.5 15,6.224 15.224,6 15.5,6 15.776,6 16,6.224 16,6.5 z m -2,0 C 14,6.776 13.776,7 13.5,7 13.224,7 13,6.776 13,6.5 13,6.224 13.224,6 13.5,6 13.776,6 14,6.224 14,6.5 z m 0,2 C 14,8.776 13.776,9 13.5,9 13.224,9 13,8.776 13,8.5 13,8.224 13.224,8 13.5,8 13.776,8 14,8.224 14,8.5 z m 2,0 C 16,8.776 15.776,9 15.5,9 15.224,9 15,8.776 15,8.5 15,8.224 15.224,8 15.5,8 15.776,8 16,8.224 16,8.5 z m -1,1 C 15,9.776 14.776,10 14.5,10 14.224,10 14,9.776 14,9.5 14,9.224 14.224,9 14.5,9 14.776,9 15,9.224 15,9.5 z m -2,0 C 13,9.776 12.776,10 12.5,10 12.224,10 12,9.776 12,9.5 12,9.224 12.224,9 12.5,9 12.776,9 13,9.224 13,9.5 z m 2,-2 C 15,7.776 14.776,8 14.5,8 14.224,8 14,7.776 14,7.5 14,7.224 14.224,7 14.5,7 14.776,7 15,7.224 15,7.5 z m -2,0 C 13,7.776 12.776,8 12.5,8 12.224,8 12,7.776 12,7.5 12,7.224 12.224,7 12.5,7 12.776,7 13,7.224 13,7.5 z m 4,0 C 17,7.776 16.776,8 16.5,8 16.224,8 16,7.776 16,7.5 16,7.224 16.224,7 16.5,7 16.776,7 17,7.224 17,7.5 z m 0,2 C 17,9.776 16.776,10 16.5,10 16.224,10 16,9.776 16,9.5 16,9.224 16.224,9 16.5,9 16.776,9 17,9.224 17,9.5 z m -1,1 C 16,10.776 15.776,11 15.5,11 15.224,11 15,10.776 15,10.5 15,10.224 15.224,10 15.5,10 c 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 C 14,10.776 13.776,11 13.5,11 13.224,11 13,10.776 13,10.5 13,10.224 13.224,10 13.5,10 c 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 C 14,12.776 13.776,13 13.5,13 13.224,13 13,12.776 13,12.5 13,12.224 13.224,12 13.5,12 c 0.276,0 0.5,0.224 0.5,0.5 z m 2,0 C 16,12.776 15.776,13 15.5,13 15.224,13 15,12.776 15,12.5 15,12.224 15.224,12 15.5,12 c 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 C 15,13.776 14.776,14 14.5,14 14.224,14 14,13.776 14,13.5 14,13.224 14.224,13 14.5,13 c 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 C 13,13.776 12.776,14 12.5,14 12.224,14 12,13.776 12,13.5 12,13.224 12.224,13 12.5,13 c 0.276,0 0.5,0.224 0.5,0.5 z m 2,-2 C 15,11.776 14.776,12 14.5,12 14.224,12 14,11.776 14,11.5 14,11.224 14.224,11 14.5,11 c 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 C 13,11.776 12.776,12 12.5,12 12.224,12 12,11.776 12,11.5 12,11.224 12.224,11 12.5,11 c 0.276,0 0.5,0.224 0.5,0.5 z m 4,0 C 17,11.776 16.776,12 16.5,12 16.224,12 16,11.776 16,11.5 16,11.224 16.224,11 16.5,11 c 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 C 17,13.776 16.776,14 16.5,14 16.224,14 16,13.776 16,13.5 16,13.224 16.224,13 16.5,13 c 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 C 16,14.776 15.776,15 15.5,15 15.224,15 15,14.776 15,14.5 15,14.224 15.224,14 15.5,14 c 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 C 14,14.776 13.776,15 13.5,15 13.224,15 13,14.776 13,14.5 13,14.224 13.224,14 13.5,14 c 0.276,0 0.5,0.224 0.5,0.5 z" /> - </g> - <g - transform="translate(13.401161,174.875)" - style="display:inline;enable-background:new" - id="g10906"> - <path - transform="matrix(0.47798,0,0,0.814173,1.9843165,-7.192587)" - style="opacity:0.1;fill:url(#radialGradient10966-5);fill-opacity:1;stroke:none;display:inline" - sodipodi:type="arc" - sodipodi:ry="6.4081554" - sodipodi:rx="12.59534" - sodipodi:cy="36.907261" - sodipodi:cx="23.82066" - id="path10908" - d="m 36.415999,36.907261 c 0,3.539126 -5.639125,6.408155 -12.595339,6.408155 -6.956214,0 -12.59534,-2.869029 -12.59534,-6.408155 0,-3.539127 5.639126,-6.408156 12.59534,-6.408156 6.956214,0 12.595339,2.869029 12.595339,6.408156 z" /> - <path - style="fill:none;stroke:url(#linearGradient10982-6);stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - sodipodi:nodetypes="cs" - id="path10924" - d="m 14.1875,19.004906 0,4.474186" /> - <path - style="color:#000000;fill:none;stroke:url(#linearGradient16233);stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:nodetypes="csc" - id="path10926" - d="m 21.011545,13.740851 c -7e-6,2.868131 -3.105108,5.019234 -6.962124,5.019234 -3.857017,0 -6.9621263,-2.151103 -6.9621242,-5.019234" /> - <rect - y="11.630612" - x="6.1250019" - width="3.5773213" - style="fill:url(#linearGradient16235);fill-opacity:1;stroke:#888a85;stroke-width:0.99999976;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - id="rect10928" - height="1.9775307" /> - <rect - y="11.630612" - x="18.625006" - width="3.4738331" - style="fill:url(#linearGradient10986-3);fill-opacity:1;stroke:#888a85;stroke-width:0.99999946;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - id="rect10930" - height="1.9775307" /> - <path - style="fill:none;stroke:url(#linearGradient10988-7);stroke-width:0.96900517;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:nodetypes="csc" - id="path10932" - d="m 21.114348,13.060638 c 0,3.128466 -3.123079,5.474821 -7.002422,5.474821 -3.879343,0 -7.0024255,-2.346355 -7.0024234,-5.474821" /> - <rect - y="10.125" - x="16.982855" - width="2.6421452" - style="fill:url(#linearGradient10990-3);fill-opacity:1;stroke:none;display:inline" - ry="0.64089966" - rx="0.68577099" - id="rect10934" - height="4" /> - <path - transform="matrix(0.985291,0,0,0.988766,5.3235715,-6.661554)" - style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" - sodipodi:type="arc" - sodipodi:ry="0.5" - sodipodi:rx="0.5" - sodipodi:cy="19" - sodipodi:cx="14" - id="path10936" - d="m 14.5,19 c 0,0.276142 -0.223858,0.5 -0.5,0.5 -0.276142,0 -0.5,-0.223858 -0.5,-0.5 0,-0.276142 0.223858,-0.5 0.5,-0.5 0.276142,0 0.5,0.223858 0.5,0.5 z" /> - <rect - y="10.125" - x="8.6511602" - width="2.1323836" - style="fill:url(#linearGradient10992-5);fill-opacity:1;stroke:none;display:inline" - ry="0.64089966" - rx="0.69956332" - id="rect10938" - height="4" /> - <rect - y="3.5683403" - x="10.06834" - width="8.0814676" - style="fill:url(#linearGradient10994-5);fill-opacity:1;stroke:url(#linearGradient10996-1);stroke-width:0.88668066;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - ry="4.5235372" - rx="4.4971528" - id="rect10940" - height="13.549686" /> - <path - transform="matrix(0.985291,0,0,0.988766,-6.7874895,-6.661554)" - style="fill:#ffffff;fill-opacity:1;stroke:none" - sodipodi:type="arc" - sodipodi:ry="0.5" - sodipodi:rx="0.5" - sodipodi:cy="19" - sodipodi:cx="14" - id="path10944" - d="m 14.5,19 c 0,0.276142 -0.223858,0.5 -0.5,0.5 -0.276142,0 -0.5,-0.223858 -0.5,-0.5 0,-0.276142 0.223858,-0.5 0.5,-0.5 0.276142,0 0.5,0.223858 0.5,0.5 z" /> - <g - transform="translate(-9.25,46.68088)" - inkscape:label="Shadow" - id="g10946" /> - <g - transform="translate(-9.25,61.74691)" - inkscape:label="Shadow" - id="g10948" /> - <g - transform="translate(-9.25,61.74691)" - style="display:inline" - inkscape:label="Lavoro" - id="g10950" /> - <g - transform="matrix(0.61993,0,0,0.629204,-1.5792775,0.815075)" - id="g10952"> - <rect - y="7.6444602" - x="20" - width="4" - style="fill:url(#linearGradient11000-8);fill-opacity:1;stroke:none;display:inline" - ry="2.1991496" - rx="2" - id="rect10954" - height="13.730536" /> - <path - transform="matrix(1,0,0,0.85921544,0,2.655999)" - style="opacity:0.2;fill:url(#linearGradient11002-1);fill-opacity:1;stroke:none;display:inline" - sodipodi:type="inkscape:offset" - inkscape:radius="-0.54470092" - inkscape:original="M 24.5 2.5 C 20.621999 2.5 17.5 5.615977 17.5 9.5 L 17.5 19.5 C 17.5 23.384022 20.621999 26.5 24.5 26.5 C 28.378001 26.5 31.5 23.384022 31.5 19.5 L 31.5 9.5 C 31.5 5.6159775 28.378001 2.5 24.5 2.5 z " - id="path10956" - d="m 24.5,3.03125 c -3.586223,0 -6.46875,2.8766161 -6.46875,6.46875 l 0,10 c 0,3.592133 2.882528,6.46875 6.46875,6.46875 3.586222,0 6.46875,-2.876617 6.46875,-6.46875 l 0,-10 c 0,-3.5921334 -2.882527,-6.46875 -6.46875,-6.46875 z" /> - <path - transform="matrix(1,0,0,1.081633,-0.375,1.9260683)" - style="fill:url(#linearGradient11004-7);fill-opacity:1;stroke:none" - sodipodi:type="arc" - sodipodi:ry="3.0625" - sodipodi:rx="3.34375" - sodipodi:cy="7.6875" - sodipodi:cx="23.65625" - id="path10958" - d="M 27,7.6875 C 27,9.378872 25.502952,10.75 23.65625,10.75 21.809548,10.75 20.3125,9.378872 20.3125,7.6875 20.3125,5.996128 21.809548,4.625 23.65625,4.625 25.502952,4.625 27,5.996128 27,7.6875 z" /> - </g> - <path - style="opacity:0.9;fill:url(#radialGradient11006-6);fill-opacity:1;stroke:none;display:inline" - sodipodi:nodetypes="cccccc" - id="path10960" - d="m 13.59884,4.125 c -2.217567,0 -4,1.4926772 -4,3.356637 l 0,2.594502 8,0 0,-2.594502 c 0,-1.8639595 -1.782432,-3.356637 -4,-3.356637 z" /> - <rect - y="4.5575728" - x="11.057572" - width="6.0949187" - style="opacity:0.33632286;fill:none;stroke:url(#linearGradient11008-8);stroke-width:0.86514533;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - ry="3.7049098" - rx="3.4931111" - id="rect10962" - height="11.55839" /> - <path - style="opacity:0.29142857;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - id="path10964" - d="m 14.625,5.576139 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 2,-2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 4,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 2,-2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 4,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z" - sodipodi:nodetypes="csssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssc" /> - <path - 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;color:#000000;fill:url(#linearGradient11093-2);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m 8.96875,22.125 c -0.7853982,0.04091 -1.4627805,0.792727 -1.4218743,1.578125 0,0 0.015624,1.421875 0.015624,1.421875 l 14.0625003,0 c 0,0 0.02136,-1.5 0.02136,-1.5 0.01129,-0.792468 -0.728894,-1.511207 -1.521363,-1.5 l -11.0000003,0 c -0.052036,-0.0027 -0.1042138,-0.0027 -0.15625,0 z" - id="path11081" - sodipodi:nodetypes="csccsccc" /> - <path - style="fill:none;stroke:url(#linearGradient10998-4);stroke-width:0.99999958px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" - sodipodi:nodetypes="cc" - id="path10942" - d="m 14.156249,18.592069 0,5.032931" /> - <path - 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;color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:0.99999958px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" - d="m 9,23.125 c -0.2618129,0.02453 -0.4777049,0.285067 -0.4531601,0.546878 0,0 0.01566,0.453122 0.01566,0.453122 l 12.0937501,0 c 0,0 -0.02414,-0.5 -0.02414,-0.5 -0.01274,-0.26387 -0.242955,-0.503728 -0.507106,-0.5 l -11.0312501,0 c -0.031158,-0.0029 -0.062592,-0.0029 -0.09375,0 z" - id="path11085" - sodipodi:nodetypes="csccsccc" /> - </g> - <g - id="g13061" - style="display:inline;enable-background:new" - transform="translate(12.509548,217.875)"> - <path - d="m 19.000001,13.740851 c -7e-6,2.219512 -2.656534,3.88415 -5.956352,3.88415 -3.2998194,0 -5.956354,-1.664638 -5.9563522,-3.88415" - id="path13067" - sodipodi:nodetypes="csc" - style="color:#000000;fill:none;stroke:url(#linearGradient17466);stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <rect - height="1.9775307" - id="rect13069" - style="fill:url(#linearGradient17468);fill-opacity:1;stroke:#888a85;stroke-width:0.99999976;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="3.5773213" - x="6.1250019" - y="11.630612" /> - <rect - height="1.9775307" - id="rect13071" - style="fill:url(#linearGradient17470);fill-opacity:1;stroke:#888a85;stroke-width:0.9999994;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="3.0000002" - x="17" - y="11.630612" /> - <path - d="m 19.015497,13.060638 c 0,2.61706 -2.655035,4.579859 -5.952996,4.579859 -3.2979617,0 -5.9530002,-1.962799 -5.9529984,-4.579859" - id="path13073" - sodipodi:nodetypes="csc" - style="fill:none;stroke:url(#linearGradient17472);stroke-width:0.96900517;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <rect - height="3.8897185" - id="rect13079" - rx="0.69956332" - ry="0.6232298" - style="fill:url(#linearGradient17474);fill-opacity:1;stroke:none;display:inline" - width="2.1323836" - x="8.6511602" - y="9.942359" /> - <rect - height="13.113468" - id="rect13081" - rx="4.5148778" - ry="4.3779068" - style="fill:url(#linearGradient17476);fill-opacity:1;stroke:url(#linearGradient17478);stroke-width:0.88668066;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - width="8.1133194" - x="8.9433403" - y="3.5683405" /> - <path - d="m 14.5,19 c 0,0.276142 -0.223858,0.5 -0.5,0.5 -0.276142,0 -0.5,-0.223858 -0.5,-0.5 0,-0.276142 0.223858,-0.5 0.5,-0.5 0.276142,0 0.5,0.223858 0.5,0.5 z" - id="path13083" - sodipodi:cx="14" - sodipodi:cy="19" - sodipodi:rx="0.5" - sodipodi:ry="0.5" - sodipodi:type="arc" - style="fill:#ffffff;fill-opacity:1;stroke:none" - transform="matrix(0.985291,0,0,0.988766,-6.7874895,-6.661554)" /> - <g - id="g13085" - inkscape:label="Shadow" - transform="translate(-9.25,46.68088)" /> - <g - id="g13087" - inkscape:label="Shadow" - transform="translate(-9.25,61.74691)" /> - <g - id="g13089" - inkscape:label="Lavoro" - style="display:inline" - transform="translate(-9.25,61.74691)" /> - <g - id="g13091" - transform="matrix(0.61993,0,0,0.6118566,-2.3917775,0.82833518)"> - <rect - height="13.730536" - id="rect13093" - rx="2" - ry="2.1991496" - style="fill:url(#linearGradient17480);fill-opacity:1;stroke:none;display:inline" - width="4" - x="20" - y="7.6444602" /> - <path - d="m 24.5,3.03125 c -3.586223,0 -6.46875,2.8766161 -6.46875,6.46875 l 0,10 c 0,3.592133 2.882528,6.46875 6.46875,6.46875 3.586222,0 6.46875,-2.876617 6.46875,-6.46875 l 0,-10 c 0,-3.5921334 -2.882527,-6.46875 -6.46875,-6.46875 z" - id="path13095" - inkscape:original="M 24.5 2.5 C 20.621999 2.5 17.5 5.615977 17.5 9.5 L 17.5 19.5 C 17.5 23.384022 20.621999 26.5 24.5 26.5 C 28.378001 26.5 31.5 23.384022 31.5 19.5 L 31.5 9.5 C 31.5 5.6159775 28.378001 2.5 24.5 2.5 z " - inkscape:radius="-0.54470092" - sodipodi:type="inkscape:offset" - style="opacity:0.2;fill:url(#linearGradient17482);fill-opacity:1;stroke:none;display:inline" - transform="matrix(0.9110182,0,0,0.85921544,2.7556552,2.655999)" /> - <path - d="M 27,7.6875 C 27,9.378872 25.502952,10.75 23.65625,10.75 21.809548,10.75 20.3125,9.378872 20.3125,7.6875 20.3125,5.996128 21.809548,4.625 23.65625,4.625 25.502952,4.625 27,5.996128 27,7.6875 z" - id="path13097" - sodipodi:cx="23.65625" - sodipodi:cy="7.6875" - sodipodi:rx="3.34375" - sodipodi:ry="3.0625" - sodipodi:type="arc" - style="fill:url(#linearGradient17484);fill-opacity:1;stroke:none" - transform="matrix(1,0,0,1.081633,-0.375,1.9260683)" /> - </g> - <path - d="m 13,4.0470042 c -1.940371,0 -3.5,1.4515235 -3.5,3.2640932 l 0,2.5229706 7,0 0,-2.5229706 C 16.5,5.498528 14.940372,4.0470042 13,4.0470042 z" - id="path13099" - sodipodi:nodetypes="cccccc" - style="opacity:0.9;fill:url(#radialGradient17486);fill-opacity:1;stroke:none;display:inline" /> - <rect - height="11.149798" - id="rect13101" - rx="3.5159991" - ry="3.5739405" - style="opacity:0.33632286;fill:none;stroke:url(#linearGradient17488);stroke-width:0.86514533;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - width="6.1348543" - x="9.9325743" - y="4.5575728" /> - <path - sodipodi:nodetypes="csssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssc" - d="m 13.5,5.625 c 0,0.2759999 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.2240001 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 1,1 c 0,0.2759999 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.2240001 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.2759999 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.2240001 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 2,-2 c 0,0.2759999 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.2240001 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.2759999 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.2240001 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 4,0 c 0,0.2759999 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.2240001 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 2,-2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 4,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m 0,2 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -1,1 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z m -2,0 c 0,0.276 -0.224,0.5 -0.5,0.5 -0.276,0 -0.5,-0.224 -0.5,-0.5 0,-0.276 0.224,-0.5 0.5,-0.5 0.276,0 0.5,0.224 0.5,0.5 z" - id="path13103" - style="opacity:0.29142857;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - </g> - <g - id="g25435"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path25404" - style="color:#000000;fill:url(#radialGradient25806);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25808);stroke-width:0.50264549;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path25433" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - id="use25439" - transform="translate(0,10)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient25790);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25792);stroke-width:0.50264549;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25786" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25788" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - id="use25441" - transform="translate(0,20)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient25780);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25782);stroke-width:0.50264549;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25776" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25778" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - id="g26124" - transform="matrix(0.67041768,0,0,0.67041768,5.9921062,90.918773)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26142);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26144);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26126" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26128" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - transform="matrix(0.67041768,0,0,0.67041768,5.9921062,98.91877)" - id="g26154"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26156" - style="color:#000000;fill:url(#radialGradient26160);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26162);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path26158" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - id="g26164" - transform="matrix(0.67041768,0,0,0.67041768,5.9921062,106.91877)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26170);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26172);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26166" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26168" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - style="display:inline;enable-background:new" - transform="matrix(0.67041768,0,0,0.67041768,-7.04824,185.95912)" - id="g26984-6"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26986-5" - style="color:#000000;fill:url(#radialGradient27000-8);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient27002-8);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path26988-8" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - style="display:inline;enable-background:new" - id="g26990-9" - transform="matrix(0.67041768,0,0,0.67041768,-7.00789,190.95912)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient27004-3);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient27006-2);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26992-0" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26994-6" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - id="g27137" - transform="matrix(0.67041768,0,0,0.67041768,-7.04824,180.95912)" - style="display:inline;enable-background:new"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient27143);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient27145);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path27139" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path27141" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - id="g26551-4" - transform="matrix(0.67041768,0,0,0.67041768,-0.00789045,145.91877)" - style="display:inline;enable-background:new"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26567-4-6);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26569-6-9);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26553-9" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26555-4" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - transform="matrix(0.67041768,0,0,0.67041768,-0.00789045,153.91877)" - id="g26557-2" - style="display:inline;enable-background:new"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26559-7" - style="color:#000000;fill:url(#radialGradient26571-6-8);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26573-1-0);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path26561-5" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - style="display:inline;enable-background:new" - transform="matrix(0.67041768,0,0,0.67041768,-0.00789045,137.91877)" - id="g26833"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26835" - style="color:#000000;fill:url(#radialGradient26839-2);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26841-1);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path26837" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - </g> - </g> - <g - id="g12096" - inkscape:groupmode="layer" - style="display:inline" - inkscape:label="medium" - transform="translate(6,50)"> - <g - id="g12098" - inkscape:groupmode="layer" - style="display:none" - inkscape:label="baseplate 1"> - <rect - id="rect12102" - x="162" - y="51" - inkscape:label="48x48" - height="48" - width="48" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12104" - x="162" - y="126" - inkscape:label="32x32" - height="32" - width="32" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12106" - x="162" - y="177" - inkscape:label="24x24" - height="24" - width="24" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12108" - x="163" - y="178" - inkscape:label="22x22" - height="22" - width="22" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12110" - x="162" - y="221" - inkscape:label="16x16" - height="16" - width="16" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <text - id="text12112" - x="160" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold" - inkscape:label="context" - y="-8" - sodipodi:linespacing="125%"> - <tspan - id="tspan12114" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold">status</tspan> - </text> - <text - id="text12116" - x="161" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold" - inkscape:label="icon-name" - y="14" - sodipodi:linespacing="125%"> - <tspan - id="tspan12118" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold">audio-input-microphone-medium</tspan> - </text> - </g> - <g - inkscape:groupmode="layer" - id="layer3" - inkscape:label="icons#1"> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#g48" - id="use16262" - width="1" - height="1" - transform="translate(144,0)" /> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#g32" - id="use16264" - width="1" - height="1" - transform="translate(144,0)" /> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#g10906" - id="use16266" - width="1" - height="1" - transform="translate(144,0)" /> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#g13061" - id="use16268" - width="1" - height="1" - transform="translate(143.90625,0)" /> - <g - style="display:inline;enable-background:new" - id="use25439-9" - transform="translate(144,10)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient25790-7);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25792-3);stroke-width:0.50264549;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25786-6" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25788-2" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - style="display:inline;enable-background:new" - id="use25441-3" - transform="translate(144,20)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient25780-1);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25782-9);stroke-width:0.50264549;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25776-3" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25778-0" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <path - transform="matrix(1.0275229,0,0,1.0275229,-180.06421,-45.70642)" - d="m 374.25,106.28125 c 0,1.60508 -1.30117,2.90625 -2.90625,2.90625 -1.60508,0 -2.90625,-1.30117 -2.90625,-2.90625 0,-1.60508 1.30117,-2.90625 2.90625,-2.90625 1.60508,0 2.90625,1.30117 2.90625,2.90625 z" - sodipodi:ry="2.90625" - sodipodi:rx="2.90625" - sodipodi:cy="106.28125" - sodipodi:cx="371.34375" - id="path25944" - style="color:#000000;fill:url(#radialGradient25967);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25969);stroke-width:0.97321433;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.69999992;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <g - style="display:inline;enable-background:new" - id="g26124-3" - transform="matrix(0.67041768,0,0,0.67041768,149.99211,90.918773)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient25967-75);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25969-5);stroke-width:0.74974976999999998;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:0.53926947999999997" - id="path26126-2" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - </g> - <g - style="display:inline;enable-background:new" - transform="matrix(0.67041768,0,0,0.67041768,149.99211,98.918773)" - id="g26154-1"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26156-2" - style="color:#000000;fill:url(#radialGradient26160-3);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26162-9);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path26158-3" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - style="display:inline;enable-background:new" - id="g26164-2" - transform="matrix(0.67041768,0,0,0.67041768,149.99211,106.91877)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26170-6);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26172-5);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26166-2" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26168-0" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - transform="matrix(0.67041768,0,0,0.67041768,143.99211,137.91877)" - id="g26547-2-4" - style="display:inline;enable-background:new"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26549-3-7" - style="color:#000000;fill:url(#radialGradient26754);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26756);stroke-width:0.74974978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.53926948;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - id="g26551-4-6" - transform="matrix(0.67041768,0,0,0.67041768,143.99211,145.91877)" - style="display:inline;enable-background:new"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26567-4-1);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26569-6-5);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26553-9-2" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26555-4-4" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - transform="matrix(0.67041768,0,0,0.67041768,143.99211,153.91877)" - id="g26557-2-9" - style="display:inline;enable-background:new"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26559-7-4" - style="color:#000000;fill:url(#radialGradient26571-6-3);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26573-1-6);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path26561-5-9" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - style="display:inline;enable-background:new" - id="g26980" - transform="matrix(0.67041768,0,0,0.67041768,136.99211,180.95912)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26996);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26998);stroke-width:0.74974978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.53926948;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26982" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - </g> - <g - style="display:inline;enable-background:new" - transform="matrix(0.67041768,0,0,0.67041768,136.95176,185.95912)" - id="g26984"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26986" - style="color:#000000;fill:url(#radialGradient27000);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient27002);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path26988" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - style="display:inline;enable-background:new" - id="g26990" - transform="matrix(0.67041768,0,0,0.67041768,136.99211,190.95912)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient27004);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient27006);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26992" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26994" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - </g> - </g> - <g - id="g12120" - inkscape:groupmode="layer" - style="display:inline" - inkscape:label="low" - transform="translate(6,50)"> - <g - id="g12122" - inkscape:groupmode="layer" - style="display:none" - inkscape:label="baseplate 2"> - <rect - id="rect12126" - x="322" - y="51" - inkscape:label="48x48" - height="48" - width="48" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12128" - x="322" - y="126" - inkscape:label="32x32" - height="32" - width="32" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12130" - x="322" - y="177" - inkscape:label="24x24" - height="24" - width="24" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12132" - x="323" - y="178" - inkscape:label="22x22" - height="22" - width="22" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12134" - x="322" - y="221" - inkscape:label="16x16" - height="16" - width="16" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <text - id="text12136" - x="336" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold" - inkscape:label="context" - y="-11" - sodipodi:linespacing="125%"> - <tspan - id="tspan12138" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold">status</tspan> - </text> - <text - id="text12140" - x="335" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold" - inkscape:label="icon-name" - y="14" - sodipodi:linespacing="125%"> - <tspan - id="tspan12142" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold">audio-input-microphone-low</tspan> - </text> - </g> - <g - inkscape:groupmode="layer" - id="layer4" - inkscape:label="icons#2"> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#use16262" - id="use17490" - width="1" - height="1" - transform="translate(160.00001,0)" /> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#use16264" - id="use17492" - width="1" - height="1" - transform="translate(160.00001,0)" /> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#use16266" - id="use17494" - width="1" - height="1" - transform="translate(160.00001,0)" /> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#use16268" - id="use17496" - width="1" - height="1" - transform="translate(160.00001,0)" /> - <g - style="display:inline;enable-background:new" - id="use25441-3-6" - transform="translate(304,20)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient25780-1-1);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25782-9-6);stroke-width:0.50264549;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25776-3-6" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path25778-0-5" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <path - transform="matrix(1.0275229,0,0,1.0275229,-20.06421,-45.70642)" - d="m 374.25,106.28125 c 0,1.60508 -1.30117,2.90625 -2.90625,2.90625 -1.60508,0 -2.90625,-1.30117 -2.90625,-2.90625 0,-1.60508 1.30117,-2.90625 2.90625,-2.90625 1.60508,0 2.90625,1.30117 2.90625,2.90625 z" - sodipodi:ry="2.90625" - sodipodi:rx="2.90625" - sodipodi:cy="106.28125" - sodipodi:cx="371.34375" - id="path25944-9" - style="color:#000000;fill:url(#radialGradient25967-7);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient25969-0);stroke-width:0.97321433;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.69999992;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26120);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26122);stroke-width:0.97321433;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.69999992;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26118" - sodipodi:cx="371.34375" - sodipodi:cy="106.28125" - sodipodi:rx="2.90625" - sodipodi:ry="2.90625" - d="m 374.25,106.28125 c 0,1.60508 -1.30117,2.90625 -2.90625,2.90625 -1.60508,0 -2.90625,-1.30117 -2.90625,-2.90625 0,-1.60508 1.30117,-2.90625 2.90625,-2.90625 1.60508,0 2.90625,1.30117 2.90625,2.90625 z" - transform="matrix(1.0275229,0,0,1.0275229,-20.06421,-35.70642)" /> - <g - style="display:inline;enable-background:new" - id="g26124-3-6" - transform="matrix(0.67041768,0,0,0.67041768,309.99211,90.918773)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26407);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26409);stroke-width:0.74974978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.53926948;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26126-2-0" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - </g> - <g - style="display:inline;enable-background:new" - id="g26164-2-0" - transform="matrix(0.67041768,0,0,0.67041768,309.99211,106.91877)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26170-6-7);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26172-5-5);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26166-2-4" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26168-0-2" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - transform="matrix(0.67041768,0,0,0.67041768,309.99211,98.918773)" - id="g26486" - style="display:inline;enable-background:new"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26488" - style="color:#000000;fill:url(#radialGradient26490);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26492);stroke-width:0.74974978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.53926948;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - transform="matrix(0.67041768,0,0,0.67041768,303.99211,137.91877)" - id="g26547-2-4-7" - style="display:inline;enable-background:new"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26549-3-7-3" - style="color:#000000;fill:url(#radialGradient26893);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26895);stroke-width:0.74974978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.53926948;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - transform="matrix(0.67041768,0,0,0.67041768,303.99211,153.91877)" - id="g26557-2-9-9" - style="display:inline;enable-background:new"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path26559-7-4-3" - style="color:#000000;fill:url(#radialGradient26571-6-3-7);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26573-1-6-5);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - <path - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - sodipodi:ry="0.953125" - sodipodi:rx="1.859375" - sodipodi:cy="112.14062" - sodipodi:cx="63.359375" - id="path26561-5-9-1" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - <g - style="display:inline;enable-background:new" - id="g26972" - transform="matrix(0.67041768,0,0,0.67041768,303.99211,145.91877)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient26976);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient26978);stroke-width:0.74974978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.53926948;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26974" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - </g> - <g - style="display:inline;enable-background:new" - id="g26980-1" - transform="matrix(0.67041768,0,0,0.67041768,296.99211,180.95912)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient27058-3);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient27060-7);stroke-width:0.74974978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.53926948;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26982-2" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - </g> - <g - style="display:inline;enable-background:new" - id="g26990-5" - transform="matrix(0.67041768,0,0,0.67041768,296.99211,190.95912)"> - <path - sodipodi:type="arc" - style="color:#000000;fill:url(#radialGradient27004-7);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient27006-9);stroke-width:0.74974972;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26992-9" - sodipodi:cx="63.46875" - sodipodi:cy="113.48438" - sodipodi:rx="1.484375" - sodipodi:ry="1.484375" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" /> - <path - sodipodi:type="arc" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path26994-1" - sodipodi:cx="63.359375" - sodipodi:cy="112.14062" - sodipodi:rx="1.859375" - sodipodi:ry="0.953125" - d="m 65.21875,112.14062 c 0,0.52639 -0.832471,0.95312 -1.859375,0.95312 -1.026904,0 -1.859375,-0.42673 -1.859375,-0.95312 0,-0.5264 0.832471,-0.95313 1.859375,-0.95313 1.026904,0 1.859375,0.42673 1.859375,0.95313 z" - transform="matrix(0.92436975,0,0,1.0819672,-1.0674895,-59.269979)" /> - </g> - <g - transform="matrix(0.67041768,0,0,0.67041768,296.99211,185.95912)" - id="g27222" - style="display:inline;enable-background:new"> - <path - transform="matrix(1.9894737,0,0,1.9894737,-68.800658,-162.28981)" - d="m 64.953125,113.48438 c 0,0.8198 -0.664577,1.48438 -1.484375,1.48438 -0.819798,0 -1.484375,-0.66458 -1.484375,-1.48438 0,-0.8198 0.664577,-1.48437 1.484375,-1.48437 0.819798,0 1.484375,0.66457 1.484375,1.48437 z" - sodipodi:ry="1.484375" - sodipodi:rx="1.484375" - sodipodi:cy="113.48438" - sodipodi:cx="63.46875" - id="path27224" - style="color:#000000;fill:url(#radialGradient27226);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient27228);stroke-width:0.74974978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.53926948;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - sodipodi:type="arc" /> - </g> - </g> - </g> - <g - id="g12144" - inkscape:groupmode="layer" - style="display:inline" - inkscape:label="muted" - transform="translate(6,50)"> - <g - id="g12146" - inkscape:groupmode="layer" - style="display:none" - inkscape:label="baseplate 3"> - <rect - id="rect12150" - x="506" - y="51" - inkscape:label="48x48" - height="48" - width="48" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12152" - x="506" - y="126" - inkscape:label="32x32" - height="32" - width="32" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12154" - x="506" - y="177" - inkscape:label="24x24" - height="24" - width="24" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12156" - x="507" - y="178" - inkscape:label="22x22" - height="22" - width="22" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <rect - id="rect12158" - x="506" - y="221" - inkscape:label="16x16" - height="16" - width="16" - style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;enable-background:accumulate" /> - <text - id="text12160" - x="509" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold" - inkscape:label="context" - y="-14" - sodipodi:linespacing="125%"> - <tspan - id="tspan12162" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold">status</tspan> - </text> - <text - id="text12164" - x="509" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold" - inkscape:label="icon-name" - y="14" - sodipodi:linespacing="125%"> - <tspan - id="tspan12166" - style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:RaveIn;-inkscape-font-specification:RaveIn Bold">audio-input-microphone-muted</tspan> - </text> - </g> - <g - inkscape:groupmode="layer" - id="layer5" - inkscape:label="icons#3" - style="opacity:1"> - <use - style="opacity:0.5;display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#use16262" - id="use17490-9" - width="1" - height="1" - transform="translate(344.00001,0)" /> - <use - style="opacity:0.5;display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#use16264" - id="use17492-5" - width="1" - height="1" - transform="translate(344.00001,0)" /> - <use - style="opacity:0.5;display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#use16266" - id="use17494-2" - width="1" - height="1" - transform="translate(344.00001,0)" /> - <use - style="opacity:0.5;display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#use16268" - id="use17496-3" - width="1" - height="1" - transform="translate(344.00001,0)" /> - <g - style="display:inline;enable-background:new" - id="g20762" - transform="translate(-1009.9765,1.99158)"> - <g - transform="translate(816.00404,-305.99658)" - id="g10428" - style="display:inline;enable-background:new"> - <rect - style="opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter10244-3);enable-background:new" - id="rect10362" - width="9" - height="1.5" - x="723" - y="461" - rx="0.75" - ry="0.75" - transform="matrix(1.4444453,0,0,1,-314.33396,-61)" /> - <g - id="g10364" - transform="matrix(1.200385,0,0,1.2002319,-137.98259,-155.80859)"> - <rect - ry="1.5" - rx="1.5" - y="453.5" - x="723.5" - height="10" - width="10" - id="rect10366" - style="fill:url(#radialGradient20776-9);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient20778-1);stroke-width:0.83311915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - ry="0.58623022" - rx="0.58575082" - y="454.33603" - x="724.33643" - height="8.3317547" - width="8.3306608" - id="rect10369" - style="opacity:0.4;fill:none;stroke:url(#linearGradient20780-8-3);stroke-width:0.83311915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <path - inkscape:connector-curvature="0" - d="" - id="path10371" - style="fill:none;stroke:#ffffff;stroke-width:1.24967861;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - sodipodi:nodetypes="cc" /> - </g> - </g> - <g - transform="translate(0,1)" - id="g20756" - style="stroke:#babdb6;display:inline;enable-background:new"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" - style="fill:#555753;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.49999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" - d="m 1555.504,85.503418 -6,5.999995" - id="path20758" /> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" - style="fill:#555753;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.49999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" - d="m 1549.504,85.503418 6,5.999995" - id="path20760" /> - </g> - <g - id="g20752"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" - style="fill:#555753;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.49999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" - d="m 1555.504,85.503418 -6,5.999995" - id="path20748" /> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" - style="fill:#555753;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.49999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" - d="m 1549.504,85.503418 6,5.999995" - id="path20750" /> - </g> - </g> - <g - style="display:inline;enable-background:new" - id="g20832" - transform="translate(-1013.9575,0.99158003)"> - <rect - transform="matrix(1.2222231,0,0,1,656.33267,-305.99658)" - ry="0.75" - rx="0.75" - y="461" - x="723" - height="1.5" - width="9" - id="rect20786" - style="opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter10244-3);enable-background:new" /> - <g - transform="matrix(0.8395408,0,0,0.8332624,927.22191,-178.21992)" - id="g20784" - style="display:inline;enable-background:new"> - <g - id="g20788" - transform="matrix(1.200385,0,0,1.2002319,-137.98259,-155.80859)"> - <rect - ry="1.5" - rx="1.4884264" - y="453.5" - x="723.49695" - height="10" - width="9.922842" - id="rect20790" - style="fill:url(#radialGradient20846-6);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient20848-8);stroke-width:0.99608243;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - ry="0.56252956" - rx="0.55816746" - y="454.50446" - x="724.48926" - height="7.9949112" - width="7.938364" - id="rect20792" - style="opacity:0.4;fill:none;stroke:url(#linearGradient20850-9);stroke-width:0.99608254;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <path - inkscape:connector-curvature="0" - d="" - id="path20794" - style="fill:none;stroke:#ffffff;stroke-width:1.49412358;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - sodipodi:nodetypes="cc" /> - </g> - </g> - <g - transform="matrix(0.8395408,0,0,0.8332624,242.15323,77.75552)" - id="g20826" - style="stroke:#babdb6;display:inline;enable-background:new"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" - style="fill:#555753;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.79340911;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" - d="m 1554.8342,86.100705 -4.7645,4.800409" - id="path20828" /> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" - style="fill:#555753;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.79340911;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" - d="m 1550.0697,86.100705 4.7645,4.800409" - id="path20830" /> - </g> - <g - transform="matrix(0.8395408,0,0,0.8332624,242.15323,76.75552)" - id="g20802"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" - style="fill:#555753;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.55428827;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" - d="m 1554.8342,86.100705 -4.7645,4.800409" - id="path20804" /> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" - style="fill:#555753;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.55428827;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" - d="m 1550.0697,86.100705 4.7645,4.800409" - id="path20806" /> - </g> - </g> - <g - style="display:inline;enable-background:new" - id="g20929" - transform="translate(-1019,33)"> - <rect - ry="1" - rx="1" - y="195.5" - x="1532.5" - height="8" - width="8" - id="rect9401" - style="fill:url(#radialGradient20946-9);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient20938-8-0);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - ry="0" - rx="0" - y="196.50366" - x="1533.4994" - height="5.9969311" - width="6.001204" - id="rect20867" - style="opacity:0.2;fill:none;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="200" - x="1534" - height="2" - width="2" - id="rect10189" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="200" - x="1537" - height="2" - width="2" - id="rect10191-6" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="197" - x="1537" - height="2" - width="2" - id="rect10193" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="197" - x="1534" - height="2" - width="2" - id="rect10195" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="198" - x="1535" - height="3" - width="3" - id="rect10197" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - </g> - <g - style="display:inline;enable-background:new" - id="g20948" - transform="translate(-1011,-3.0000001)"> - <rect - ry="1" - rx="1" - y="195.5" - x="1532.5" - height="8" - width="8" - id="rect20950" - style="fill:url(#radialGradient20964-2);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient20966-5);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - ry="0" - rx="0" - y="196.50366" - x="1533.4994" - height="5.9969311" - width="6.001204" - id="rect20952" - style="opacity:0.2;fill:none;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="200" - x="1534" - height="2" - width="2" - id="rect20954" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="200" - x="1537" - height="2" - width="2" - id="rect20956" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="197" - x="1537" - height="2" - width="2" - id="rect20958" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="197" - x="1534" - height="2" - width="2" - id="rect20960" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - <rect - y="198" - x="1535" - height="3" - width="3" - id="rect20962" - style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> - </g> - </g> - </g> -</svg> diff --git a/panels/sound/data/sounds/bark.ogg b/panels/sound/data/sounds/bark.ogg Binary files differdeleted file mode 100644 index 480950c68..000000000 --- a/panels/sound/data/sounds/bark.ogg +++ /dev/null diff --git a/panels/sound/data/sounds/drip.ogg b/panels/sound/data/sounds/drip.ogg Binary files differdeleted file mode 100644 index 144d2b367..000000000 --- a/panels/sound/data/sounds/drip.ogg +++ /dev/null diff --git a/panels/sound/data/sounds/glass.ogg b/panels/sound/data/sounds/glass.ogg Binary files differdeleted file mode 100644 index 902a3c896..000000000 --- a/panels/sound/data/sounds/glass.ogg +++ /dev/null diff --git a/panels/sound/data/sounds/gnome-sounds-default.xml.in.in b/panels/sound/data/sounds/gnome-sounds-default.xml.in.in deleted file mode 100644 index 9563fa9da..000000000 --- a/panels/sound/data/sounds/gnome-sounds-default.xml.in.in +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<sounds> - <sound deleted="false"> - <!-- Translators: This is the name of an audio file that sounds like the bark of a dog. - You might want to translate it into the equivalent words of your language. --> - <name>Bark</name> - <filename>@datadir@/sounds/gnome/default/alerts/bark.ogg</filename> - </sound> - <sound deleted="false"> - <!-- Translators: This is the name of an audio file that sounds like a water drip. - You might want to translate it into the equivalent words of your language. --> - <name>Drip</name> - <filename>@datadir@/sounds/gnome/default/alerts/drip.ogg</filename> - </sound> - <sound deleted="false"> - <!-- Translators: This is the name of an audio file that sounds like tapping glass. - You might want to translate it into the equivalent words of your language. --> - <name>Glass</name> - <filename>@datadir@/sounds/gnome/default/alerts/glass.ogg</filename> - </sound> - <sound deleted="false"> - <!-- Translators: This is the name of an audio file that sounds sort of like a submarine sonar ping. - You might want to translate it into the equivalent words of your language. --> - <name>Sonar</name> - <filename>@datadir@/sounds/gnome/default/alerts/sonar.ogg</filename> - </sound> -</sounds> diff --git a/panels/sound/data/sounds/meson.build b/panels/sound/data/sounds/meson.build deleted file mode 100644 index 0cdc48267..000000000 --- a/panels/sound/data/sounds/meson.build +++ /dev/null @@ -1,32 +0,0 @@ -sound_data = files( - 'bark.ogg', - 'drip.ogg', - 'glass.ogg', - 'sonar.ogg' -) - -install_data( - sound_data, - install_dir: join_paths(control_center_datadir, 'sounds', 'gnome', 'default', 'alerts') -) - -metadata_conf = configuration_data() -metadata_conf.set('datadir', control_center_datadir) - -metadata = 'gnome-sounds-default.xml' - -metadata_in = configure_file( - input: metadata + '.in.in', - output: metadata + '.in', - configuration: metadata_conf -) - -i18n.merge_file( - metadata, - input: metadata_in, - output: metadata, - po_dir: po_dir, - data_dirs: its_dir, - install: true, - install_dir: join_paths(control_center_pkgdatadir, 'sounds') -) diff --git a/panels/sound/data/sounds/sonar.ogg b/panels/sound/data/sounds/sonar.ogg Binary files differdeleted file mode 100644 index 77aadec27..000000000 --- a/panels/sound/data/sounds/sonar.ogg +++ /dev/null diff --git a/panels/sound/data/symbolic-icons/meson.build b/panels/sound/data/symbolic-icons/meson.build deleted file mode 100644 index 0fa3cafa1..000000000 --- a/panels/sound/data/symbolic-icons/meson.build +++ /dev/null @@ -1,13 +0,0 @@ -status_files = [ - 'audio-input-microphone-high-symbolic.svg', - 'audio-input-microphone-low-symbolic.svg', - 'audio-input-microphone-medium-symbolic.svg', - 'audio-input-microphone-muted-symbolic.svg' -] - -foreach file: status_files - install_data( - join_paths('scalable', 'status', file), - install_dir: join_paths(control_center_icondir, 'hicolor', 'scalable', 'status') - ) -endforeach diff --git a/panels/sound/data/symbolic-icons/r.rb b/panels/sound/data/symbolic-icons/r.rb deleted file mode 100755 index a15ace233..000000000 --- a/panels/sound/data/symbolic-icons/r.rb +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/env ruby - -require "rexml/document" -require "fileutils" -include REXML - - -#INKSCAPE = '/opt/artlibre/bin/inkscape' -INKSCAPE = '/usr/bin/inkscape' # like this works for me, while using `which` inkscape hangs -SRC = "src/gnome-media.svg" -PREFIX = "scalable" - -def chopSVG(icon) - FileUtils.mkdir_p(icon[:dir]) unless File.exists?(icon[:dir]) - unless (File.exists?(icon[:file]) && !icon[:forcerender]) - FileUtils.cp(SRC,icon[:file]) - puts " >> #{icon[:name]}" - cmd = "#{INKSCAPE} -f #{icon[:file]} --select #{icon[:id]} --verb=FitCanvasToSelection --verb=EditInvertInAllLayers " - cmd += "--verb=EditDelete --verb=EditSelectAll --verb=SelectionUnGroup --verb=StrokeToPath --verb=FileVacuum " - cmd += "--verb=FileSave --verb=FileClose > /dev/null 2>&1" - system(cmd) - #saving as plain SVG gets rid of the classes :/ - #cmd = "#{INKSCAPE} -f #{icon[:file]} -z --vacuum-defs -l #{icon[:file]} > /dev/null 2>&1" - #system(cmd) - svgcrop = Document.new(File.new(icon[:file], 'r')) - svgcrop.root.each_element("//rect") do |rect| - if rect.attributes["width"] == '16' && rect.attributes["height"] == '16' - rect.remove - end - end - icon_f = File.new(icon[:file],'w+') - icon_f.puts svgcrop - icon_f.close - else - puts " -- #{icon[:name]} already exists" - end -end #end of function - - -#main -# Open SVG file. -svg = Document.new(File.new(SRC, 'r')) - -if (ARGV[0].nil?) #render all SVGs - puts "Rendering from icons in #{SRC}" - # Go through every layer. - svg.root.each_element("/svg/g[@inkscape:groupmode='layer']") do |context| - context_name = context.attributes.get_attribute("inkscape:label").value - puts "Going through layer '" + context_name + "'" - context.each_element("g") do |icon| - #puts "DEBUG #{icon.attributes.get_attribute('id')}" - dir = "#{PREFIX}/#{context_name}" - icon_name = icon.attributes.get_attribute("inkscape:label").value - chopSVG({ :name => icon_name, - :id => icon.attributes.get_attribute("id"), - :dir => dir, - :file => "#{dir}/#{icon_name}-symbolic.svg"}) - end - end - puts "\nrendered all SVGs" -else #only render the icons passed - icons = ARGV - ARGV.each do |icon_name| - icon = svg.root.elements["//g[@inkscape:label='#{icon_name}']"] - dir = "#{PREFIX}/#{icon.parent.attributes['inkscape:label']}" - chopSVG({ :name => icon_name, - :id => icon.attributes["id"], - :dir => dir, - :file => "#{dir}/#{icon_name}-symbolic.svg", - :forcerender => true}) - end - puts "\nrendered #{ARGV.length} icons" -end diff --git a/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-high-symbolic.svg b/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-high-symbolic.svg deleted file mode 100644 index 6cf30e72f..000000000 --- a/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-high-symbolic.svg +++ /dev/null @@ -1,37 +0,0 @@ -<?xml version='1.0' encoding='UTF-8'?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg xmlns:cc='http://creativecommons.org/ns#' xmlns:svg='http://www.w3.org/2000/svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' id='svg7384' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' version='1.1' inkscape:version='0.47 r22583' height='16' sodipodi:docname='audio-input-microphone-high-symbolic.svg' xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns='http://www.w3.org/2000/svg' width='16'> - <metadata id='metadata90'> - <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>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview inkscape:cy='-15.613019' inkscape:current-layer='layer9' inkscape:window-width='1310' pagecolor='#555753' showborder='false' showguides='true' inkscape:snap-nodes='true' objecttolerance='10' showgrid='false' inkscape:object-nodes='true' inkscape:pageshadow='2' inkscape:guide-bbox='true' inkscape:window-x='54' inkscape:snap-bbox='true' bordercolor='#666666' id='namedview88' inkscape:window-maximized='0' inkscape:snap-global='true' inkscape:window-y='25' gridtolerance='10' inkscape:zoom='1' inkscape:window-height='690' borderopacity='1' guidetolerance='10' inkscape:cx='18.133577' inkscape:bbox-paths='false' inkscape:snap-grids='true' inkscape:pageopacity='1' inkscape:snap-to-guides='true'> - <inkscape:grid visible='true' spacingx='1px' type='xygrid' spacingy='1px' id='grid4866' empspacing='2' enabled='true' snapvisiblegridlinesonly='true'/> - </sodipodi:namedview> - <title id='title9167'>Gnome Symbolic Icon Theme</title> - <defs id='defs7386'> - <clipPath id='clipPath6810-7-0-7' clipPathUnits='userSpaceOnUse'> - <rect x='21' y='281' id='rect6812-2-2-4' height='11' width='14' style='color:#bebebe;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible'/> - </clipPath> - </defs> - <g transform='translate(-41.0002,-177)' inkscape:groupmode='layer' id='layer9' inkscape:label='status' style='display:inline'> - - - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,12.5,-123)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path4959' sodipodi:rx='1' sodipodi:ry='1' style='fill:#bebebe;fill-opacity:1;stroke:none;display:inline' sodipodi:cx='28'/> - <rect x='45' y='177.98712' id='rect6796-1' rx='2.5' height='10.012877' ry='2.5' style='color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible' width='5'/> - <path transform='matrix(0.993968,0,0,1,19.706899,-98.486138)' clip-path='url(#clipPath6810-7-0-7)' d='m 27.96875,273.625 c -2.502477,0 -4.53125,2.02877 -4.53125,4.53125 l 0,5.8125 c 0,2.50248 2.028773,4.53125 4.53125,4.53125 2.502477,0 4.53125,-2.02877 4.53125,-4.53125 l 0,-5.8125 c 0,-2.50248 -2.028773,-4.53125 -4.53125,-4.53125 z m 0,1 c 1.964148,0 3.53125,1.5671 3.53125,3.53125 l 0,5.8125 c 0,1.96415 -1.567102,3.53125 -3.53125,3.53125 -1.964148,0 -3.53125,-1.5671 -3.53125,-3.53125 l 0,-5.8125 c 0,-1.96415 1.567102,-3.53125 3.53125,-3.53125 z' id='rect6806-6' 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;color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1.00302994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans'/> - <path sodipodi:cy='361' transform='matrix(0.5,0,0,0.5,32,2.000002)' sodipodi:type='arc' d='m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path6814-3' sodipodi:rx='1' sodipodi:ry='1' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible' sodipodi:cx='23'/> - <path sodipodi:cy='361' transform='matrix(0.5,0,0,0.5,40,2.000002)' sodipodi:type='arc' d='m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path6816-8' sodipodi:rx='1' sodipodi:ry='1' sodipodi:cx='23' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible'/> - <path d='M 43.875,191 A 1.0019512,1.0019512 0 1 0 44,193 l 7.03125,0 a 1.0001,1.0001 0 1 0 0,-2 L 44,191 a 1.0001,1.0001 0 0 0 -0.125,0 z' id='path6818-5' 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;color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans'/> - <rect x='43' y='192' id='rect6822-5' height='1' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible' width='9'/> - <rect x='46' y='189' id='rect6824-0' height='4' width='3' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible'/> - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,12.5,-128)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13930' sodipodi:rx='1' sodipodi:ry='1' sodipodi:cx='28' style='fill:#bebebe;fill-opacity:1;stroke:none;display:inline'/> - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,12.5,-133)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13932' sodipodi:rx='1' sodipodi:ry='1' style='fill:#bebebe;fill-opacity:1;stroke:none;display:inline' sodipodi:cx='28'/> - </g> -</svg> diff --git a/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-low-symbolic.svg b/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-low-symbolic.svg deleted file mode 100644 index 3119fa4f8..000000000 --- a/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-low-symbolic.svg +++ /dev/null @@ -1,37 +0,0 @@ -<?xml version='1.0' encoding='UTF-8'?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg xmlns:cc='http://creativecommons.org/ns#' xmlns:svg='http://www.w3.org/2000/svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' id='svg7384' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' version='1.1' inkscape:version='0.47 r22583' height='16' sodipodi:docname='audio-input-microphone-low-symbolic.svg' xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns='http://www.w3.org/2000/svg' width='16'> - <metadata id='metadata90'> - <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>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview inkscape:cy='-15.613019' inkscape:current-layer='layer9' inkscape:window-width='1310' pagecolor='#555753' showborder='false' showguides='true' inkscape:snap-nodes='true' objecttolerance='10' showgrid='false' inkscape:object-nodes='true' inkscape:pageshadow='2' inkscape:guide-bbox='true' inkscape:window-x='54' inkscape:snap-bbox='true' bordercolor='#666666' id='namedview88' inkscape:window-maximized='0' inkscape:snap-global='true' inkscape:window-y='25' gridtolerance='10' inkscape:zoom='1' inkscape:window-height='690' borderopacity='1' guidetolerance='10' inkscape:cx='-21.866423' inkscape:bbox-paths='false' inkscape:snap-grids='true' inkscape:pageopacity='1' inkscape:snap-to-guides='true'> - <inkscape:grid visible='true' spacingx='1px' type='xygrid' spacingy='1px' id='grid4866' empspacing='2' enabled='true' snapvisiblegridlinesonly='true'/> - </sodipodi:namedview> - <title id='title9167'>Gnome Symbolic Icon Theme</title> - <defs id='defs7386'> - <clipPath id='clipPath6810-7-0-7' clipPathUnits='userSpaceOnUse'> - <rect x='21' y='281' id='rect6812-2-2-4' height='11' width='14' style='color:#bebebe;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible'/> - </clipPath> - </defs> - <g transform='translate(-81.0002,-177)' inkscape:groupmode='layer' id='layer9' inkscape:label='status' style='display:inline'> - - - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,52.5,-123)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13966' sodipodi:rx='1' sodipodi:ry='1' style='fill:#bebebe;fill-opacity:1;stroke:none;display:inline' sodipodi:cx='28'/> - <rect x='85' y='177.98712' id='rect13968' rx='2.5' height='10.012877' ry='2.5' style='color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible' width='5'/> - <path transform='matrix(0.993968,0,0,1,59.706899,-98.486138)' clip-path='url(#clipPath6810-7-0-7)' d='m 27.96875,273.625 c -2.502477,0 -4.53125,2.02877 -4.53125,4.53125 l 0,5.8125 c 0,2.50248 2.028773,4.53125 4.53125,4.53125 2.502477,0 4.53125,-2.02877 4.53125,-4.53125 l 0,-5.8125 c 0,-2.50248 -2.028773,-4.53125 -4.53125,-4.53125 z m 0,1 c 1.964148,0 3.53125,1.5671 3.53125,3.53125 l 0,5.8125 c 0,1.96415 -1.567102,3.53125 -3.53125,3.53125 -1.964148,0 -3.53125,-1.5671 -3.53125,-3.53125 l 0,-5.8125 c 0,-1.96415 1.567102,-3.53125 3.53125,-3.53125 z' id='rect13970' 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;color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1.00302994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans'/> - <path sodipodi:cy='361' transform='matrix(0.5,0,0,0.5,72,2.000002)' sodipodi:type='arc' d='m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13972' sodipodi:rx='1' sodipodi:ry='1' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible' sodipodi:cx='23'/> - <path sodipodi:cy='361' transform='matrix(0.5,0,0,0.5,80,2.000002)' sodipodi:type='arc' d='m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13974' sodipodi:rx='1' sodipodi:ry='1' sodipodi:cx='23' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible'/> - <path d='M 83.875,191 A 1.0019512,1.0019512 0 1 0 84,193 l 7.03125,0 a 1.0001,1.0001 0 1 0 0,-2 L 84,191 a 1.0001,1.0001 0 0 0 -0.125,0 z' id='path13976' 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;color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans'/> - <rect x='83' y='192' id='rect13978' height='1' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible' width='9'/> - <rect x='86' y='189' id='rect13980' height='4' width='3' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible'/> - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,52.5,-128)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13982' sodipodi:rx='1' sodipodi:ry='1' sodipodi:cx='28' style='opacity:0.25;fill:#bebebe;fill-opacity:1;stroke:none;display:inline'/> - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,52.5,-133)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13984' sodipodi:rx='1' sodipodi:ry='1' style='opacity:0.25;fill:#bebebe;fill-opacity:1;stroke:none;display:inline' sodipodi:cx='28'/> - </g> -</svg> diff --git a/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-medium-symbolic.svg b/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-medium-symbolic.svg deleted file mode 100644 index 64ec37a61..000000000 --- a/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-medium-symbolic.svg +++ /dev/null @@ -1,37 +0,0 @@ -<?xml version='1.0' encoding='UTF-8'?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg xmlns:cc='http://creativecommons.org/ns#' xmlns:svg='http://www.w3.org/2000/svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' id='svg7384' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' version='1.1' inkscape:version='0.47 r22583' height='16' sodipodi:docname='audio-input-microphone-medium-symbolic.svg' xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns='http://www.w3.org/2000/svg' width='16'> - <metadata id='metadata90'> - <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>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview inkscape:cy='-15.613019' inkscape:current-layer='layer9' inkscape:window-width='1310' pagecolor='#555753' showborder='false' showguides='true' inkscape:snap-nodes='true' objecttolerance='10' showgrid='false' inkscape:object-nodes='true' inkscape:pageshadow='2' inkscape:guide-bbox='true' inkscape:window-x='54' inkscape:snap-bbox='true' bordercolor='#666666' id='namedview88' inkscape:window-maximized='0' inkscape:snap-global='true' inkscape:window-y='25' gridtolerance='10' inkscape:zoom='1' inkscape:window-height='690' borderopacity='1' guidetolerance='10' inkscape:cx='-1.866423' inkscape:bbox-paths='false' inkscape:snap-grids='true' inkscape:pageopacity='1' inkscape:snap-to-guides='true'> - <inkscape:grid visible='true' spacingx='1px' type='xygrid' spacingy='1px' id='grid4866' empspacing='2' enabled='true' snapvisiblegridlinesonly='true'/> - </sodipodi:namedview> - <title id='title9167'>Gnome Symbolic Icon Theme</title> - <defs id='defs7386'> - <clipPath id='clipPath6810-7-0-7' clipPathUnits='userSpaceOnUse'> - <rect x='21' y='281' id='rect6812-2-2-4' height='11' width='14' style='color:#bebebe;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible'/> - </clipPath> - </defs> - <g transform='translate(-61.0002,-177)' inkscape:groupmode='layer' id='layer9' inkscape:label='status' style='display:inline'> - - - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,32.5,-123)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13940' sodipodi:rx='1' sodipodi:ry='1' sodipodi:cx='28' style='fill:#bebebe;fill-opacity:1;stroke:none;display:inline'/> - <rect x='65' y='177.98712' id='rect13942' rx='2.5' ry='2.5' height='10.012877' width='5' style='color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible'/> - <path transform='matrix(0.993968,0,0,1,39.706899,-98.486138)' clip-path='url(#clipPath6810-7-0-7)' d='m 27.96875,273.625 c -2.502477,0 -4.53125,2.02877 -4.53125,4.53125 l 0,5.8125 c 0,2.50248 2.028773,4.53125 4.53125,4.53125 2.502477,0 4.53125,-2.02877 4.53125,-4.53125 l 0,-5.8125 c 0,-2.50248 -2.028773,-4.53125 -4.53125,-4.53125 z m 0,1 c 1.964148,0 3.53125,1.5671 3.53125,3.53125 l 0,5.8125 c 0,1.96415 -1.567102,3.53125 -3.53125,3.53125 -1.964148,0 -3.53125,-1.5671 -3.53125,-3.53125 l 0,-5.8125 c 0,-1.96415 1.567102,-3.53125 3.53125,-3.53125 z' id='rect13944' 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;color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1.00302994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans'/> - <path sodipodi:cy='361' transform='matrix(0.5,0,0,0.5,52,2.000002)' sodipodi:type='arc' d='m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13946' sodipodi:rx='1' sodipodi:ry='1' sodipodi:cx='23' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible'/> - <path sodipodi:cy='361' transform='matrix(0.5,0,0,0.5,60,2.000002)' sodipodi:type='arc' d='m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13948' sodipodi:rx='1' sodipodi:ry='1' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible' sodipodi:cx='23'/> - <path d='M 63.875,191 A 1.0019512,1.0019512 0 1 0 64,193 l 7.03125,0 a 1.0001,1.0001 0 1 0 0,-2 L 64,191 a 1.0001,1.0001 0 0 0 -0.125,0 z' id='path13950' 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;color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans'/> - <rect x='63' y='192' id='rect13952' height='1' width='9' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible'/> - <rect x='66' y='189' id='rect13954' height='4' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible' width='3'/> - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,32.5,-128)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13956' sodipodi:rx='1' sodipodi:ry='1' style='fill:#bebebe;fill-opacity:1;stroke:none;display:inline' sodipodi:cx='28'/> - <path sodipodi:cy='209' transform='matrix(1.5,0,0,1.5,32.5,-133)' sodipodi:type='arc' d='m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z' id='path13958' sodipodi:rx='1' sodipodi:ry='1' sodipodi:cx='28' style='opacity:0.25;fill:#bebebe;fill-opacity:1;stroke:none;display:inline'/> - </g> -</svg> diff --git a/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-muted-symbolic.svg b/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-muted-symbolic.svg deleted file mode 100644 index d17baa9ea..000000000 --- a/panels/sound/data/symbolic-icons/scalable/status/audio-input-microphone-muted-symbolic.svg +++ /dev/null @@ -1,37 +0,0 @@ -<?xml version='1.0' encoding='UTF-8'?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg xmlns:cc='http://creativecommons.org/ns#' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:svg='http://www.w3.org/2000/svg' id='svg7384' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' sodipodi:docname='audio-input-microphone-muted-symbolic.svg' version='1.1' inkscape:version='0.47 r22583' height='16' xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns='http://www.w3.org/2000/svg' width='16'> - <metadata id='metadata90'> - <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>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview inkscape:cy='-19.613018' pagecolor='#555753' borderopacity='1' showborder='false' inkscape:bbox-paths='false' guidetolerance='10' inkscape:window-width='1310' showguides='false' inkscape:object-nodes='true' inkscape:snap-bbox='true' inkscape:pageshadow='2' inkscape:guide-bbox='true' inkscape:snap-nodes='true' bordercolor='#666666' objecttolerance='10' id='namedview88' showgrid='false' inkscape:window-maximized='0' inkscape:window-x='54' inkscape:snap-global='true' inkscape:window-y='25' gridtolerance='10' inkscape:window-height='690' inkscape:snap-to-guides='true' inkscape:current-layer='layer9' inkscape:zoom='1' inkscape:cx='-41.866423' inkscape:snap-grids='true' inkscape:pageopacity='1'> - <inkscape:grid spacingx='1px' spacingy='1px' id='grid4866' empspacing='2' enabled='true' type='xygrid' snapvisiblegridlinesonly='true' visible='true'/> - </sodipodi:namedview> - <title id='title9167'>Gnome Symbolic Icon Theme</title> - <defs id='defs7386'> - <clipPath id='clipPath6810-7-0-7-1' clipPathUnits='userSpaceOnUse'> - <rect x='21' y='281' id='rect6812-2-2-4-8' height='11' width='14' style='color:#bebebe;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible'/> - </clipPath> - </defs> - <g inkscape:label='status' transform='translate(-101.0002,-177)' inkscape:groupmode='layer' id='layer9' style='display:inline'> - - <path inkscape:connector-curvature='0' d='m 111.99995,188 1.375,0 1.125,1.09375 1.09375,-1.09375 1.40625,0 0,1.46875 -1.09375,1.0625 1.09375,1.0625 0,1.40625 -1.4375,0 -1.0625,-1.0625 -1.0625,1.0625 -1.4375,0 0,-1.40625 1.0625,-1.0625 -1.0625,-1.0625 0,-1.46875 z' id='path3761-2-3-5-4-8-9-8-0-1-7' sodipodi:nodetypes='ccccccccccccccccc' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible'/> - <g transform='translate(81.0002,-39.999999)' id='g14804' style='opacity:0.25'> - <rect x='23.999798' y='217.98712' id='rect13968-5' rx='2.5' ry='2.5' height='10.012877' width='5' style='color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible'/> - <rect transform='matrix(0.993968,0,0,1,-1.2933,-58.486138)' x='23.9375' y='274.13098' clip-path='url(#clipPath6810-7-0-7-1)' id='rect13970-1' rx='4.0312505' height='13.869018' ry='4.0312505' style='color:#bebebe;fill:none;stroke:#bebebe;stroke-width:1.00302994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible' width='8.062501'/> - <path sodipodi:cy='361' transform='matrix(0.5,0,0,0.5,10.9998,42.000002)' d='m 24,361 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z' id='path13972-1' sodipodi:type='arc' sodipodi:rx='1' sodipodi:ry='1' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible' sodipodi:cx='23'/> - <path sodipodi:cy='361' transform='matrix(0.5,0,0,0.5,18.9998,42.000002)' d='m 24,361 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z' id='path13974-3' sodipodi:type='arc' sodipodi:rx='1' sodipodi:ry='1' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible' sodipodi:cx='23'/> - <path inkscape:connector-curvature='0' d='m 22.98733,232 6.01247,0' id='path13976-0' sodipodi:nodetypes='cc' style='color:#bebebe;fill:none;stroke:#bebebe;stroke-width:2;stroke-linecap:round;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible'/> - <rect x='21.999798' y='232' id='rect13978-6' height='1' width='1.0000021' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible'/> - <rect x='24.999798' y='229' id='rect13980-4' height='4' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible' width='3'/> - <rect x='28.9998' y='231' id='rect14813' height='2.000001' style='color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible' width='0.9999997'/> - </g> - </g> -</svg> diff --git a/panels/sound/data/symbolic-icons/src/gnome-media.svg b/panels/sound/data/symbolic-icons/src/gnome-media.svg deleted file mode 100644 index 6fd726860..000000000 --- a/panels/sound/data/symbolic-icons/src/gnome-media.svg +++ /dev/null @@ -1,990 +0,0 @@ -<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - width="400" - height="100" - id="svg7384" - inkscape:version="0.47 r22583" - sodipodi:docname="gnome-media.svg"> - <metadata - id="metadata90"> - <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>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#555753" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:window-width="1310" - inkscape:window-height="690" - id="namedview88" - showgrid="false" - inkscape:zoom="1" - inkscape:cx="59.133777" - inkscape:cy="-108.61302" - inkscape:window-x="54" - inkscape:window-y="25" - inkscape:window-maximized="0" - inkscape:current-layer="layer9" - showborder="false" - inkscape:snap-nodes="true" - inkscape:snap-bbox="true" - inkscape:bbox-paths="false" - showguides="true" - inkscape:guide-bbox="true" - inkscape:snap-to-guides="true" - inkscape:snap-grids="true" - inkscape:snap-global="true" - inkscape:object-nodes="true"> - <inkscape:grid - type="xygrid" - id="grid4866" - empspacing="2" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - spacingx="1px" - spacingy="1px" /> - </sodipodi:namedview> - <title - id="title9167">Gnome Symbolic Icon Theme</title> - <defs - id="defs7386"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 50 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="400 : 50 : 1" - inkscape:persp3d-origin="200 : 33.333333 : 1" - id="perspective778" /> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6279-6-1-4-5"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6281-3-0-3-5" - width="3.8250003" - height="6.3750005" - x="26.85" - y="220.75" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6265-33-6-5-1-3"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6267-6-9-1-4-8" - width="2.8977277" - height="5.21591" - x="26.96591" - y="221.32954" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6259-6-8-2-1-6-6"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6261-4-9-2-0-9-0" - width="1.8762827" - height="4.8734746" - x="26.998718" - y="221.50153" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6279-2-3"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6281-5-3" - width="3.8250003" - height="6.3750005" - x="26.85" - y="220.75" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6265-3-5-6"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6267-1-8-1" - width="2.8977277" - height="5.21591" - x="26.96591" - y="221.32954" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6259-8-8-8"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6261-6-0-7" - width="1.8762827" - height="4.8734746" - x="26.998718" - y="221.50153" /> - </clipPath> - <clipPath - id="clipPath3157-7-0" - clipPathUnits="userSpaceOnUse"> - <rect - y="221.32954" - x="28.124998" - height="5.21591" - width="1.7386366" - id="rect3159-5-5" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6279-6-1"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6281-3-1" - width="3.8250003" - height="6.3750005" - x="26.85" - y="220.75" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6265-33-6-4-0"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6267-6-9-19-3" - width="2.8977277" - height="5.21591" - x="26.96591" - y="221.32954" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6259-6-8-2-8-0"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6261-4-9-2-7-0" - width="1.8762827" - height="4.8734746" - x="26.998718" - y="221.50153" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6265-33-4"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6267-6-5" - width="2.8977277" - height="5.21591" - x="26.96591" - y="221.32954" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6259-6-8-25-4"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6261-4-9-24-2" - width="1.8762827" - height="4.8734746" - x="26.998718" - y="221.50153" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6259-6-4"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6261-4-9" - width="1.8762827" - height="4.8734746" - x="26.998718" - y="221.50153" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6279-7-9"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6281-1-9" - width="3.8250003" - height="6.3750005" - x="26.85" - y="220.75" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6265-3-4"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6267-1-9" - width="2.8977277" - height="5.21591" - x="26.96591" - y="221.32954" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6259-8-81"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6261-6-6" - width="1.8762827" - height="4.8734746" - x="26.998718" - y="221.50153" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6279-3"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6281-9" - width="3.8250003" - height="6.3750005" - x="26.85" - y="220.75" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6265-334"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6267-61" - width="2.8977277" - height="5.21591" - x="26.96591" - y="221.32954" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6259-5"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6261-61" - width="1.8762827" - height="4.8734746" - x="26.998718" - y="221.50153" /> - </clipPath> - <clipPath - id="clipPath6810-7" - clipPathUnits="userSpaceOnUse"> - <rect - y="281" - x="21" - height="11" - width="14" - id="rect6812-2" - style="color:#bebebe;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3668"> - <rect - y="221.50153" - x="26.998718" - height="3.3729413" - width="1.8762826" - id="rect3670" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3697"> - <path - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - d="m 26.965789,221.32959 0,5.21591 0.579546,0 0,-1.15909 2.318182,0 0,-4.05682 -2.897728,0 z" - id="path3699" /> - </clipPath> - <inkscape:perspective - id="perspective10762" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <clipPath - id="clipPath6810-7-0" - clipPathUnits="userSpaceOnUse"> - <rect - y="281" - x="21" - height="11" - width="14" - id="rect6812-2-2" - style="color:#bebebe;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" /> - </clipPath> - <inkscape:perspective - id="perspective13870" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <inkscape:perspective - id="perspective13892" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <clipPath - id="clipPath6810-7-0-7" - clipPathUnits="userSpaceOnUse"> - <rect - y="281" - x="21" - height="11" - width="14" - id="rect6812-2-2-4" - style="color:#bebebe;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" /> - </clipPath> - <inkscape:perspective - id="perspective14766" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 0.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <clipPath - id="clipPath6810-7-0-7-1" - clipPathUnits="userSpaceOnUse"> - <rect - y="281" - x="21" - height="11" - width="14" - id="rect6812-2-2-4-8" - style="color:#bebebe;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" /> - </clipPath> - </defs> - <g - transform="translate(-19.9998,-272)" - id="layer3" - style="display:inline" /> - <g - transform="translate(-19.9998,-272)" - id="layer2" - style="display:inline"> - <g - transform="translate(99.9998,334)" - id="g11578" - style="display:inline"> - <g - transform="translate(-93.968752,-337)" - id="g11582" - style="display:inline" /> - </g> - </g> - <g - transform="translate(0,-243)" - id="layer4" - style="display:inline"> - <g - transform="translate(-20.99975,-28)" - id="layer3-5" - style="display:inline" /> - <g - transform="translate(-20.99975,-28)" - id="layer2-1" - style="display:inline" /> - <g - transform="translate(-1,1)" - id="layer4-4" - style="display:inline" /> - <g - transform="translate(-1,244)" - id="layer5-9" /> - <g - transform="translate(-20.99975,-28)" - id="layer1-8" - style="display:inline" /> - </g> - <g - id="layer8" /> - <g - id="layer7" /> - <g - id="layer5"> - <g - transform="translate(14,0)" - id="g11716" /> - </g> - <g - id="layer6" /> - <g - transform="translate(-19.9998,-272)" - id="layer1" - style="display:inline"> - <path - d="m 73.282111,317.71964 c -5.520162,0 -9.427702,-4.34171 -9.427702,-9.6758 0,-5.33408 3.659442,-9.64478 9.179604,-9.64478 3.442349,0 5.39612,1.39555 6.357497,2.23287 l 1.550609,-1.67465 c -2.139838,-1.95377 -4.868915,-2.51199 -7.908106,-2.51199 -6.946721,0 -11.53653,5.21005 -11.53653,11.59855 0,6.26446 4.3107,11.62957 11.846652,11.62957 2.822106,0 6.171426,-0.71328 8.24924,-1.89174 l 0,-10.60617 -7.25685,0 0,1.95377 5.117009,0 0,7.19483 -0.248097,0.12404 c -0.496194,0.27911 -2.387941,1.2715 -5.923326,1.2715" - id="path11291" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 87.219663,306.49324 -0.186073,0.37214 -0.06202,0 0,-1.08542 c 0,-0.58924 0,-0.71329 -0.09304,-1.33353 l -2.077816,0 c 0.09304,0.43417 0.217085,0.99239 0.217085,1.89174 l 0,12.74601 1.953768,0 0,-7.90811 c 0,-4.06259 2.698061,-5.33409 4.682839,-5.33409 1.984777,0 4.124619,0.7443 4.124619,4.31069 l 0,8.93151 1.953765,0 0,-9.24163 c 0,-4.52777 -3.070205,-5.73725 -5.117007,-5.73725 -2.88413,0 -4.8379,1.39555 -5.396119,2.38794" - id="path11293" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 108.09425,319.45633 c 4.40373,0 7.69102,-3.44236 7.69102,-7.629 0,-4.12462 -3.28729,-7.59798 -7.69102,-7.59798 -4.40372,0 -7.72203,3.44235 -7.72203,7.59798 0,4.43474 3.53539,7.629 7.72203,7.629 m 5.55118,-7.629 c 0,3.47336 -2.26389,5.8613 -5.55118,5.8613 -3.3183,0 -5.58219,-2.38794 -5.58219,-5.8613 0,-3.44235 2.26389,-5.8613 5.58219,-5.8613 3.28729,0 5.55118,2.41895 5.55118,5.8613" - id="path11295" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 121.1998,306.49324 -0.18607,0.37214 -0.062,0 0,-1.08542 c 0,-0.58924 0,-0.71329 -0.093,-1.33353 l -2.07782,0 c 0.093,0.43417 0.21709,0.99239 0.21709,1.89174 l 0,12.68399 1.95376,0 0,-7.84609 c 0,-4.06259 2.69807,-5.33409 4.68284,-5.33409 1.98478,0 4.12462,0.7443 4.12462,4.31069 l 0,8.86949 1.98478,0 -0.031,-9.17961 c 0,-0.62024 -0.062,-1.17846 -0.18607,-1.67466 0.93036,-1.70566 2.63603,-2.32591 4.03158,-2.32591 1.98478,0 4.12462,0.7443 4.12462,4.31069 l 0,8.86949 1.95377,0 0,-9.17961 c 0,-4.52777 -3.07021,-5.73725 -5.11701,-5.73725 -2.88413,0 -4.8379,1.39555 -5.39612,2.38794 l -0.093,0.21708 c -1.0234,-1.98478 -2.97717,-2.60502 -4.43474,-2.60502 -2.88413,0 -4.8379,1.39555 -5.39612,2.38794" - id="path11297" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 146.76692,310.99 0,-0.49619 c 0,-2.35693 2.44997,-4.74487 5.27207,-4.74487 2.94616,0 4.8379,1.73669 4.93094,4.74487 l 0.031,0.49619 -10.23402,0 m 5.3341,-6.69863 c -4.49676,0 -7.50495,3.31831 -7.50495,7.47394 0,4.3417 2.82211,7.62899 7.47394,7.62899 2.79109,0 3.90753,-0.43417 5.45814,-0.89935 l -0.34114,-1.42656 c -1.58161,0.46518 -2.94615,0.7753 -4.74486,0.7753 -3.00818,0 -5.67523,-2.07782 -5.67523,-4.99296 l 0,-0.49619 12.37386,0 0,-0.55822 c 0,-4.06259 -2.20187,-7.50495 -7.03976,-7.50495" - id="path11299" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 185.47593,313.03681 c 0,-1.42656 -0.2481,-3.38033 -2.69806,-4.74487 -3.22526,-1.7987 -8.65239,-1.55061 -8.65239,-5.89231 0,-1.5196 1.05442,-4.00057 4.99296,-4.00057 2.20186,0 3.50437,0.99239 4.15563,1.76769 l 1.79871,-1.61263 c -1.0234,-1.11644 -2.57402,-2.10883 -5.95434,-2.10883 -5.39612,0 -7.34989,3.62843 -7.34989,5.95434 0,1.2715 0.15506,3.62842 2.72907,5.24106 3.3183,2.07781 8.6524,1.79871 8.6524,5.76826 0,2.69806 -2.60502,4.31069 -5.086,4.31069 -1.7987,0 -3.69045,-0.68227 -4.96194,-2.23287 l -1.82972,1.55061 c 1.5506,1.86073 4.15563,2.63603 6.69863,2.63603 4.37271,0 7.50494,-2.63604 7.50494,-6.6366" - id="path11301" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 186.64132,304.29137 6.1094,14.42066 -0.4962,1.2715 c -0.86834,2.17085 -2.94615,3.44236 -5.05498,4.34171 l 0.71328,1.73668 c 3.0702,-1.2715 5.39612,-3.25628 6.32648,-5.89231 l 5.5822,-15.87824 -2.07782,0 -4.00057,12.06374 -0.093,0 -4.99296,-12.06374 -2.01579,0" - id="path11303" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 203.93933,306.49324 -0.18607,0.37214 -0.062,0 0,-1.08542 c 0,-0.58924 0,-0.71329 -0.093,-1.33353 l -2.07782,0 c 0.093,0.43417 0.21709,0.99239 0.21709,1.89174 l 0,12.68399 1.95377,0 0,-7.84609 c 0,-4.06259 2.69806,-5.33409 4.68284,-5.33409 1.98477,0 4.12462,0.7443 4.12462,4.31069 l 0,8.86949 1.98478,0 -0.031,-9.17961 c 0,-0.62024 -0.062,-1.17846 -0.18607,-1.67466 0.93036,-1.70566 2.63604,-2.32591 4.03158,-2.32591 1.98478,0 4.12462,0.7443 4.12462,4.31069 l 0,8.86949 1.95377,0 0,-9.17961 c 0,-4.52777 -3.07021,-5.73725 -5.11701,-5.73725 -2.88413,0 -4.8379,1.39555 -5.39612,2.38794 l -0.093,0.21708 c -1.0234,-1.98478 -2.97717,-2.60502 -4.43474,-2.60502 -2.88413,0 -4.8379,1.39555 -5.39612,2.38794" - id="path11305" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 235.61585,306.02805 c 3.3183,0 5.58219,2.38794 5.58219,5.8613 0,3.47337 -2.26389,5.86131 -5.58219,5.86131 -2.26389,0 -4.46576,-1.58163 -5.52017,-3.72146 l -0.031,-0.093 0,-4.0626 0.062,-0.093 c 0.7753,-1.42656 2.20187,-3.75248 5.48916,-3.75248 m -5.76827,13.08714 c 0.12405,-0.65125 0.18607,-1.33352 0.21709,-2.07781 l 0.062,-1.05442 0.80632,1.24049 c 1.36453,1.33352 3.13223,2.2949 5.05498,2.2949 4.68284,0 7.34989,-3.50438 7.34989,-7.629 0,-4.43473 -2.94616,-7.59798 -7.34989,-7.59798 -2.2949,0 -4.18664,1.05442 -5.02397,2.35693 l -0.89935,1.39554 0,-12.43588 -1.95377,0 0,21.46043 c 0,0.68227 -0.031,1.33352 -0.12405,2.0468 l 1.86073,0" - id="path11307" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 252.37357,319.45633 c 4.40373,0 7.69102,-3.44236 7.69102,-7.629 0,-4.12462 -3.28729,-7.59798 -7.69102,-7.59798 -4.40372,0 -7.72203,3.44235 -7.72203,7.59798 0,4.43474 3.53539,7.629 7.72203,7.629 m 5.55118,-7.629 c 0,3.47336 -2.26389,5.8613 -5.55118,5.8613 -3.3183,0 -5.58219,-2.38794 -5.58219,-5.8613 0,-3.44235 2.26389,-5.8613 5.58219,-5.8613 3.28729,0 5.55118,2.41895 5.55118,5.8613" - id="path11309" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 263.43231,295.57695 0,20.49905 c -0.031,2.72907 1.61263,2.94616 2.60502,2.94616 l 0.65126,0 0,-1.55061 -0.55822,0 c -0.43417,0 -0.7753,-0.12405 -0.7753,-0.83733 l 0,-21.05727 -1.92276,0" - id="path11311" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 270.27535,319.02216 1.89174,0 0,-14.57573 -1.89174,0 0,14.57573 m 2.57401,-19.78577 c 0,-0.86834 -0.68227,-1.61264 -1.58162,-1.61264 -0.86834,0 -1.61264,0.68227 -1.61264,1.61264 0,0.83732 0.68227,1.58162 1.61264,1.58162 0.83732,0 1.58162,-0.68227 1.58162,-1.58162" - id="path11313" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 275.88661,311.85834 c 0,4.68284 3.25628,7.53596 7.56697,7.53596 2.88413,0 4.43474,-1.14745 5.17903,-1.86073 l -1.39555,-1.39555 c -1.48858,1.45757 -2.94615,1.48859 -3.75247,1.48859 -3.44235,0 -5.45814,-2.76009 -5.45814,-5.70624 0,-2.94616 1.67466,-5.95434 5.30308,-5.95434 0.83733,0 2.26389,0.062 3.84551,1.5196 l 1.5196,-1.36454 c -1.24049,-1.14745 -3.00819,-1.92276 -5.24106,-1.92276 -4.5898,0 -7.56697,3.19426 -7.56697,7.66001" - id="path11315" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 301.90486,297.03452 0,22.04966 2.13984,0 0,-22.04966 -2.13984,0" - id="path11317" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 307.98907,311.85834 c 0,4.68284 3.25628,7.53596 7.56697,7.53596 2.88413,0 4.43474,-1.14745 5.17903,-1.86073 l -1.39554,-1.39555 c -1.48859,1.45757 -2.94616,1.48859 -3.75248,1.48859 -3.44235,0 -5.45814,-2.76009 -5.45814,-5.70624 0,-2.94616 1.67466,-5.95434 5.30308,-5.95434 0.83733,0 2.26389,0.062 3.84551,1.5196 l 1.5196,-1.36454 c -1.24049,-1.14745 -3.00818,-1.92276 -5.24106,-1.92276 -4.5898,0 -7.56697,3.19426 -7.56697,7.66001" - id="path11319" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 329.90402,319.45633 c 4.40372,0 7.69102,-3.44236 7.69102,-7.629 0,-4.12462 -3.2873,-7.59798 -7.69102,-7.59798 -4.40373,0 -7.72204,3.44235 -7.72204,7.59798 0,4.43474 3.5354,7.629 7.72204,7.629 m 5.55118,-7.629 c 0,3.47336 -2.2639,5.8613 -5.55118,5.8613 -3.3183,0 -5.5822,-2.38794 -5.5822,-5.8613 0,-3.44235 2.2639,-5.8613 5.5822,-5.8613 3.28728,0 5.55118,2.41895 5.55118,5.8613" - id="path11321" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 343.00957,306.49324 -0.18607,0.37214 -0.062,0 0,-1.08542 c 0,-0.58924 0,-0.71329 -0.093,-1.33353 l -2.07782,0 c 0.093,0.43417 0.21709,0.99239 0.21709,1.89174 l 0,12.74601 1.95376,0 0,-7.90811 c 0,-4.06259 2.69806,-5.33409 4.68284,-5.33409 1.98478,0 4.12462,0.7443 4.12462,4.31069 l 0,8.93151 1.95377,0 0,-9.24163 c 0,-4.52777 -3.07021,-5.73725 -5.11701,-5.73725 -2.88413,0 -4.8379,1.39555 -5.39612,2.38794" - id="path11323" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 356.56527,308.32295 c 0,5.42713 8.43532,2.69807 8.43532,6.79167 0,1.45757 -1.5196,2.41895 -3.62843,2.41895 -0.96137,0 -2.10883,-0.12405 -3.75247,-1.64364 l -1.5196,1.24048 c 0.83733,1.05442 2.20187,2.17086 5.27207,2.17086 2.94616,0 5.76827,-1.27151 5.76827,-4.34171 0,-2.44996 -1.48859,-3.41134 -4.12462,-4.03158 l -1.14745,-0.21709 c -1.55061,-0.31012 -3.16325,-1.08543 -3.16325,-2.66705 0,-1.76769 1.95377,-2.20186 3.07021,-2.20186 0.55822,0 1.95377,0.031 3.22527,1.33352 l 1.55061,-1.17846 c -0.99239,-1.2715 -2.63604,-1.92275 -4.62082,-1.92275 -2.63603,0 -5.36511,1.33352 -5.36511,4.24866" - id="path11325" - style="font-size:31.0121994px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 70.96012,347.46538 c 0,-0.68957 -0.119928,-1.634 -1.304201,-2.29359 -1.559044,-0.86947 -4.182438,-0.74954 -4.182438,-2.84826 0,-0.73455 0.509689,-1.93381 2.413521,-1.93381 1.064347,0 1.693963,0.47971 2.00877,0.85448 l 0.869467,-0.77953 C 70.270543,339.925 69.521,339.4453 67.887002,339.4453 c -2.608399,0 -3.552824,1.75392 -3.552824,2.87823 0,0.61463 0.07496,1.75393 1.319192,2.53345 1.604016,1.00439 4.182438,0.86947 4.182438,2.78829 0,1.3042 -1.259229,2.08373 -2.458494,2.08373 -0.869466,0 -1.783907,-0.3298 -2.39853,-1.07934 l -0.884459,0.74954 c 0.749541,0.89945 2.008771,1.27422 3.238017,1.27422 2.113703,0 3.627778,-1.27422 3.627778,-3.20804" - id="path11272" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 84.340983,350.56848 c 2.128693,0 3.717722,-1.66398 3.717722,-3.68774 0,-1.99377 -1.589029,-3.67275 -3.717722,-3.67275 -2.128694,0 -3.732714,1.66399 -3.732714,3.67275 0,2.14369 1.708955,3.68774 3.732714,3.68774 m 2.683356,-3.68774 c 0,1.67897 -1.094331,2.83327 -2.683356,2.83327 -1.604016,0 -2.698348,-1.1543 -2.698348,-2.83327 0,-1.66398 1.094332,-2.83326 2.698348,-2.83326 1.589025,0 2.683356,1.16928 2.683356,2.83326" - id="path11274" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 103.41859,349.36922 0.0899,-0.1649 0.03,0 0,0.50969 c 0,0.28482 0,0.34479 0.045,0.65959 l 1.00438,0 c -0.045,-0.20987 -0.10493,-0.49469 -0.10493,-0.91444 l 0,-6.17621 -0.94442,0 0,3.83765 c 0,1.9488 -1.28922,2.56343 -2.26362,2.56343 -0.94442,0 -1.993776,-0.3448 -1.993776,-2.06874 l 0,-4.33234 -0.944422,0 0,4.46726 c 0,2.18866 1.484092,2.7733 2.473488,2.7733 1.39414,0 2.33856,-0.6596 2.6084,-1.15429" - id="path11276" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 119.05604,343.193 c -0.22486,-0.075 -0.44972,-0.0899 -0.56965,-0.0899 -0.47971,0 -1.55905,0.17989 -2.08372,1.43912 l -0.25485,0.58464 0,-1.85886 -0.94442,0 0,7.09065 0.94442,0 0,-3.61278 c 0,-0.79452 0.64461,-2.63839 2.09872,-2.63839 0.20987,0 0.41974,0.015 0.65959,0.075 l 0.14991,-0.9894" - id="path11278" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 128.78242,346.89573 c 0,2.26361 1.57404,3.64277 3.65776,3.64277 1.39415,0 2.14369,-0.55466 2.50347,-0.89945 l -0.67459,-0.67458 c -0.71956,0.70456 -1.42412,0.71956 -1.81389,0.71956 -1.66397,0 -2.63838,-1.33419 -2.63838,-2.75832 0,-1.42412 0.80951,-2.87823 2.56343,-2.87823 0.40475,0 1.09433,0.03 1.85886,0.73455 l 0.73455,-0.6596 c -0.59963,-0.55466 -1.45411,-0.92943 -2.53345,-0.92943 -2.21863,0 -3.65776,1.54406 -3.65776,3.70273" - id="path11280" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 145.64233,346.47599 0,-0.23985 c 0,-1.1393 1.18427,-2.2936 2.54843,-2.2936 1.42413,0 2.33857,0.83949 2.38354,2.2936 l 0.015,0.23985 -4.94697,0 m 2.57842,-3.23802 c -2.17367,0 -3.62778,1.60402 -3.62778,3.61279 0,2.09871 1.36417,3.68774 3.61279,3.68774 1.34917,0 1.88884,-0.20987 2.63838,-0.43473 l -0.1649,-0.68958 c -0.76453,0.22486 -1.42413,0.37477 -2.29359,0.37477 -1.45411,0 -2.74332,-1.00439 -2.74332,-2.41352 l 0,-0.23985 5.98133,0 0,-0.26984 c 0,-1.96379 -1.06435,-3.62778 -3.40291,-3.62778" - id="path11282" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 181.95367,347.46538 c 0,-0.68957 -0.11992,-1.634 -1.3042,-2.29359 -1.55904,-0.86947 -4.18244,-0.74954 -4.18244,-2.84826 0,-0.73455 0.50969,-1.93381 2.41353,-1.93381 1.06434,0 1.69396,0.47971 2.00876,0.85448 l 0.86947,-0.77953 c -0.49469,-0.53967 -1.24424,-1.01937 -2.87823,-1.01937 -2.6084,0 -3.55283,1.75392 -3.55283,2.87823 0,0.61463 0.075,1.75393 1.31919,2.53345 1.60402,1.00439 4.18244,0.86947 4.18244,2.78829 0,1.3042 -1.25923,2.08373 -2.45849,2.08373 -0.86947,0 -1.78391,-0.3298 -2.39853,-1.07934 l -0.88446,0.74954 c 0.74954,0.89945 2.00877,1.27422 3.23802,1.27422 2.1137,0 3.62777,-1.27422 3.62777,-3.20804" - id="path11284" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 191.04716,339.73012 4.12247,10.65847 0.83949,0 4.19743,-10.65847 -1.1393,0 -3.40292,9.05446 -0.10493,0 -3.268,-9.05446 -1.24424,0" - id="path11286" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - <path - d="m 214.9462,349.729 c -2.66837,0 -4.55721,-2.09872 -4.55721,-4.67714 0,-2.57842 1.76892,-4.66214 4.43728,-4.66214 1.66398,0 2.6084,0.67459 3.07312,1.07934 l 0.74954,-0.80951 c -1.03437,-0.94442 -2.35356,-1.21425 -3.82266,-1.21425 -3.35794,0 -5.57658,2.51846 -5.57658,5.60656 0,3.02814 2.08372,5.62156 5.72649,5.62156 1.36416,0 2.98317,-0.34479 3.98756,-0.91444 l 0,-5.12686 -3.50786,0 0,0.94442 2.47349,0 0,3.47787 -0.11993,0.06 c -0.23985,0.13492 -1.15429,0.61463 -2.86324,0.61463" - id="path11288" - style="font-size:14.9907999px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0pt;text-align:start;text-decoration:none;line-height:125%;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.58435011;marker:none;visibility:visible;font-family:RaveIn" /> - </g> - <g - inkscape:groupmode="layer" - id="layer9" - inkscape:label="status" - style="display:inline"> - <g - style="display:inline" - id="g5493" - transform="translate(21.0002,-39.999999)" - inkscape:label="audio-input-microphone-high"> - <rect - style="color:#bebebe;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect5499" - width="16" - height="16" - x="20" - y="217" - inkscape:label="audio-volume-high" /> - <rect - inkscape:label="audio-volume-high" - y="217" - x="20" - height="16" - width="16" - id="rect3704" - style="color:#bebebe;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <path - transform="matrix(1.5,0,0,1.5,-8.5002,-83.000001)" - d="m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="209" - sodipodi:cx="28" - id="path4959" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline" - sodipodi:type="arc" /> - <rect - ry="2.5" - rx="2.5" - y="217.98712" - x="23.9998" - height="10.012877" - width="5" - id="rect6796-1" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" /> - <rect - transform="matrix(0.993968,0,0,1,-1.293301,-58.486139)" - clip-path="url(#clipPath6810-7-0-7)" - style="color:#bebebe;fill:none;stroke:#bebebe;stroke-width:1.00302994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6806-6" - width="8.062501" - height="13.869018" - x="23.9375" - y="274.13098" - rx="4.0312505" - ry="4.0312505" /> - <path - transform="matrix(0.5,0,0,0.5,10.9998,42.000001)" - d="m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="361" - sodipodi:cx="23" - id="path6814-3" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="path6816-8" - sodipodi:cx="23" - sodipodi:cy="361" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" - transform="matrix(0.5,0,0,0.5,18.9998,42.000001)" /> - <path - inkscape:connector-curvature="0" - id="path6818-5" - d="m 22.98733,232 7.047969,0" - style="color:#bebebe;fill:none;stroke:#bebebe;stroke-width:2;stroke-linecap:round;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <rect - y="232" - x="21.9998" - height="1" - width="9" - id="rect6822-5" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect6824-0" - width="3" - height="4" - x="24.9998" - y="229" /> - <path - sodipodi:type="arc" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline" - id="path13930" - sodipodi:cx="28" - sodipodi:cy="209" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" - transform="matrix(1.5,0,0,1.5,-8.5002,-88.000001)" /> - <path - transform="matrix(1.5,0,0,1.5,-8.5002,-93.000001)" - d="m 29,209 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="209" - sodipodi:cx="28" - id="path13932" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline" - sodipodi:type="arc" /> - </g> - <text - sodipodi:linespacing="125%" - id="text6726" - y="165.94501" - x="41.823399" - style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Droid Sans" - xml:space="preserve"><tspan - y="165.94501" - x="41.823399" - id="tspan6728" - sodipodi:role="line">status</tspan></text> - <g - style="display:inline" - inkscape:label="audio-input-microphone-muted" - transform="translate(81.0002,-39.999999)" - id="g3266"> - <rect - inkscape:label="audio-volume-high" - y="217" - x="20" - height="16" - width="16" - id="rect3270" - style="color:#bebebe;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccccc" - id="path3761-2-3-5-4-8-9-8-0-1-7" - d="m 30.99975,228 1.375,0 1.125,1.09375 L 34.5935,228 l 1.40625,0 0,1.46875 -1.09375,1.0625 1.09375,1.0625 0,1.40625 -1.4375,0 -1.0625,-1.0625 -1.0625,1.0625 -1.4375,0 0,-1.40625 1.0625,-1.0625 -1.0625,-1.0625 0,-1.46875 z" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" /> - <g - id="g14804" - style="opacity:0.25"> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect13968-5" - width="5" - height="10.012877" - x="23.999798" - y="217.98712" - rx="2.5" - ry="2.5" /> - <rect - ry="4.0312505" - rx="4.0312505" - y="274.13098" - x="23.9375" - height="13.869018" - width="8.062501" - id="rect13970-1" - style="color:#bebebe;fill:none;stroke:#bebebe;stroke-width:1.00302994000000001;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible" - clip-path="url(#clipPath6810-7-0-7-1)" - transform="matrix(0.993968,0,0,1,-1.2933,-58.486138)" /> - <path - sodipodi:type="arc" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="path13972-1" - sodipodi:cx="23" - sodipodi:cy="361" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" - transform="matrix(0.5,0,0,0.5,10.9998,42.000002)" /> - <path - transform="matrix(0.5,0,0,0.5,18.9998,42.000002)" - d="m 24,361 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="361" - sodipodi:cx="23" - id="path13974-3" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - sodipodi:type="arc" /> - <path - style="color:#bebebe;fill:none;stroke:#bebebe;stroke-width:2;stroke-linecap:round;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible" - d="m 22.98733,232 6.01247,0" - id="path13976-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect13978-6" - width="1.0000021" - height="1" - x="21.999798" - y="232" /> - <rect - y="229" - x="24.999798" - height="4" - width="3" - id="rect13980-4" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <rect - y="231" - x="28.9998" - height="2.000001" - width="0.9999997" - id="rect14813" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - </g> - </g> - <g - inkscape:label="audio-input-microphone-medium" - transform="translate(41.0002,-39.999999)" - id="g13934" - style="display:inline"> - <rect - inkscape:label="audio-volume-high" - y="217" - x="20" - height="16" - width="16" - id="rect13936" - style="color:#bebebe;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <rect - style="color:#bebebe;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect13938" - width="16" - height="16" - x="20" - y="217" - inkscape:label="audio-volume-high" /> - <path - sodipodi:type="arc" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline" - id="path13940" - sodipodi:cx="28" - sodipodi:cy="209" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 29,209 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - transform="matrix(1.5,0,0,1.5,-8.5002,-83.000001)" /> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect13942" - width="5" - height="10.012877" - x="23.9998" - y="217.98712" - rx="2.5" - ry="2.5" /> - <rect - ry="4.0312505" - rx="4.0312505" - y="274.13098" - x="23.9375" - height="13.869018" - width="8.062501" - id="rect13944" - style="color:#bebebe;fill:none;stroke:#bebebe;stroke-width:1.00302994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible" - clip-path="url(#clipPath6810-7-0-7)" - transform="matrix(0.993968,0,0,1,-1.293301,-58.486139)" /> - <path - sodipodi:type="arc" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="path13946" - sodipodi:cx="23" - sodipodi:cy="361" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 24,361 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - transform="matrix(0.5,0,0,0.5,10.9998,42.000001)" /> - <path - transform="matrix(0.5,0,0,0.5,18.9998,42.000001)" - d="m 24,361 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="361" - sodipodi:cx="23" - id="path13948" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - sodipodi:type="arc" /> - <path - style="color:#bebebe;fill:none;stroke:#bebebe;stroke-width:2;stroke-linecap:round;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible" - d="m 22.98733,232 7.047969,0" - id="path13950" - inkscape:connector-curvature="0" /> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect13952" - width="9" - height="1" - x="21.9998" - y="232" /> - <rect - y="229" - x="24.9998" - height="4" - width="3" - id="rect13954" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <path - transform="matrix(1.5,0,0,1.5,-8.5002,-88.000001)" - d="m 29,209 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="209" - sodipodi:cx="28" - id="path13956" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline;opacity:0.25" - id="path13958" - sodipodi:cx="28" - sodipodi:cy="209" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 29,209 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - transform="matrix(1.5,0,0,1.5,-8.5002,-93.000001)" /> - </g> - <g - style="display:inline" - id="g13960" - transform="translate(61.0002,-39.999999)" - inkscape:label="audio-input-microphone-low"> - <rect - style="color:#bebebe;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect13962" - width="16" - height="16" - x="20" - y="217" - inkscape:label="audio-volume-high" /> - <rect - inkscape:label="audio-volume-high" - y="217" - x="20" - height="16" - width="16" - id="rect13964" - style="color:#bebebe;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <path - transform="matrix(1.5,0,0,1.5,-8.5002,-83.000001)" - d="m 29,209 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="209" - sodipodi:cx="28" - id="path13966" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline" - sodipodi:type="arc" /> - <rect - ry="2.5" - rx="2.5" - y="217.98712" - x="23.9998" - height="10.012877" - width="5" - id="rect13968" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" /> - <rect - transform="matrix(0.993968,0,0,1,-1.293301,-58.486139)" - clip-path="url(#clipPath6810-7-0-7)" - style="color:#bebebe;fill:none;stroke:#bebebe;stroke-width:1.00302994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect13970" - width="8.062501" - height="13.869018" - x="23.9375" - y="274.13098" - rx="4.0312505" - ry="4.0312505" /> - <path - transform="matrix(0.5,0,0,0.5,10.9998,42.000001)" - d="m 24,361 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="361" - sodipodi:cx="23" - id="path13972" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" - id="path13974" - sodipodi:cx="23" - sodipodi:cy="361" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 24,361 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - transform="matrix(0.5,0,0,0.5,18.9998,42.000001)" /> - <path - inkscape:connector-curvature="0" - id="path13976" - d="m 22.98733,232 7.047969,0" - style="color:#bebebe;fill:none;stroke:#bebebe;stroke-width:2;stroke-linecap:round;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <rect - y="232" - x="21.9998" - height="1" - width="9" - id="rect13978" - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" /> - <rect - style="color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" - id="rect13980" - width="3" - height="4" - x="24.9998" - y="229" /> - <path - sodipodi:type="arc" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline;opacity:0.25" - id="path13982" - sodipodi:cx="28" - sodipodi:cy="209" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 29,209 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - transform="matrix(1.5,0,0,1.5,-8.5002,-88.000001)" /> - <path - transform="matrix(1.5,0,0,1.5,-8.5002,-93.000001)" - d="m 29,209 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="209" - sodipodi:cx="28" - id="path13984" - style="fill:#bebebe;fill-opacity:1;stroke:none;display:inline;opacity:0.25" - sodipodi:type="arc" /> - </g> - </g> -</svg> diff --git a/panels/sound/gvc-balance-bar.c b/panels/sound/gvc-balance-bar.c deleted file mode 100644 index 063b99736..000000000 --- a/panels/sound/gvc-balance-bar.c +++ /dev/null @@ -1,543 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 William Jon McCann - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#include "config.h" - -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> - -#include <glib.h> -#include <glib/gi18n-lib.h> -#include <gtk/gtk.h> -#include <canberra-gtk.h> -#include <pulse/pulseaudio.h> - -#include "gvc-balance-bar.h" -#include "gvc-channel-map-private.h" - -#define SCALE_SIZE 128 -#define ADJUSTMENT_MAX_NORMAL 65536.0 /* PA_VOLUME_NORM */ - -struct _GvcBalanceBar -{ - GtkBox parent_instance; - - GvcChannelMap *channel_map; - GvcBalanceType btype; - GtkWidget *scale_box; - GtkWidget *start_box; - GtkWidget *end_box; - GtkWidget *label; - GtkWidget *scale; - GtkAdjustment *adjustment; - GtkSizeGroup *size_group; - gboolean symmetric; - gboolean click_lock; -}; - -enum -{ - PROP_0, - PROP_CHANNEL_MAP, - PROP_BALANCE_TYPE, -}; - -static void gvc_balance_bar_class_init (GvcBalanceBarClass *klass); -static void gvc_balance_bar_init (GvcBalanceBar *balance_bar); -static void gvc_balance_bar_finalize (GObject *object); - -static gboolean on_scale_button_press_event (GtkWidget *widget, - GdkEventButton *event, - GvcBalanceBar *bar); -static gboolean on_scale_button_release_event (GtkWidget *widget, - GdkEventButton *event, - GvcBalanceBar *bar); -static gboolean on_scale_scroll_event (GtkWidget *widget, - GdkEventScroll *event, - GvcBalanceBar *bar); -static void on_adjustment_value_changed (GtkAdjustment *adjustment, - GvcBalanceBar *bar); - -G_DEFINE_TYPE (GvcBalanceBar, gvc_balance_bar, GTK_TYPE_BOX) - -static GtkWidget * -_scale_box_new (GvcBalanceBar *bar) -{ - GtkWidget *box; - GtkWidget *sbox; - GtkWidget *ebox; - GtkAdjustment *adjustment = bar->adjustment; - char *str_lower, *str_upper; - gdouble lower, upper; - - bar->scale_box = box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - bar->scale = gtk_scale_new (GTK_ORIENTATION_HORIZONTAL, bar->adjustment); - gtk_widget_show (bar->scale); - gtk_scale_set_has_origin (GTK_SCALE (bar->scale), FALSE); - gtk_widget_set_size_request (bar->scale, SCALE_SIZE, -1); - - bar->start_box = sbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (sbox); - gtk_box_pack_start (GTK_BOX (box), sbox, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (sbox), bar->label, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (box), bar->scale, TRUE, TRUE, 0); - - switch (bar->btype) { - case BALANCE_TYPE_RL: - str_lower = g_strdup_printf ("<small>%s</small>", C_("balance", "Left")); - str_upper = g_strdup_printf ("<small>%s</small>", C_("balance", "Right")); - break; - case BALANCE_TYPE_FR: - str_lower = g_strdup_printf ("<small>%s</small>", C_("balance", "Rear")); - str_upper = g_strdup_printf ("<small>%s</small>", C_("balance", "Front")); - break; - case BALANCE_TYPE_LFE: - str_lower = g_strdup_printf ("<small>%s</small>", C_("balance", "Minimum")); - str_upper = g_strdup_printf ("<small>%s</small>", C_("balance", "Maximum")); - break; - default: - g_assert_not_reached (); - } - - lower = gtk_adjustment_get_lower (adjustment); - gtk_scale_add_mark (GTK_SCALE (bar->scale), lower, - GTK_POS_BOTTOM, str_lower); - g_free (str_lower); - upper = gtk_adjustment_get_upper (adjustment); - gtk_scale_add_mark (GTK_SCALE (bar->scale), upper, - GTK_POS_BOTTOM, str_upper); - g_free (str_upper); - - if (bar->btype != BALANCE_TYPE_LFE) { - gtk_scale_add_mark (GTK_SCALE (bar->scale), - (upper - lower)/2 + lower, - GTK_POS_BOTTOM, NULL); - } - - bar->end_box = ebox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (ebox); - gtk_box_pack_start (GTK_BOX (box), ebox, FALSE, FALSE, 0); - - ca_gtk_widget_disable_sounds (bar->scale, FALSE); - gtk_widget_add_events (bar->scale, GDK_SCROLL_MASK); - - g_signal_connect (G_OBJECT (bar->scale), "button-press-event", - G_CALLBACK (on_scale_button_press_event), bar); - g_signal_connect (G_OBJECT (bar->scale), "button-release-event", - G_CALLBACK (on_scale_button_release_event), bar); - g_signal_connect (G_OBJECT (bar->scale), "scroll-event", - G_CALLBACK (on_scale_scroll_event), bar); - - if (bar->size_group != NULL) { - gtk_size_group_add_widget (bar->size_group, sbox); - - if (bar->symmetric) { - gtk_size_group_add_widget (bar->size_group, ebox); - } - } - - gtk_scale_set_draw_value (GTK_SCALE (bar->scale), FALSE); - - return box; -} - -void -gvc_balance_bar_set_size_group (GvcBalanceBar *bar, - GtkSizeGroup *group, - gboolean symmetric) -{ - g_return_if_fail (GVC_IS_BALANCE_BAR (bar)); - - bar->size_group = group; - bar->symmetric = symmetric; - - if (bar->size_group != NULL) { - gtk_size_group_add_widget (bar->size_group, - bar->start_box); - - if (bar->symmetric) { - gtk_size_group_add_widget (bar->size_group, - bar->end_box); - } - } - gtk_widget_queue_draw (GTK_WIDGET (bar)); -} - -static const char * -btype_to_string (guint btype) -{ - switch (btype) { - case BALANCE_TYPE_RL: - return "Balance"; - case BALANCE_TYPE_FR: - return "Fade"; - break; - case BALANCE_TYPE_LFE: - return "LFE"; - default: - g_assert_not_reached (); - } - return NULL; -} - -static void -update_level_from_map (GvcBalanceBar *bar, - GvcChannelMap *map) -{ - const gdouble *volumes; - gdouble val; - - g_debug ("Volume changed (for %s bar)", btype_to_string (bar->btype)); - - volumes = gvc_channel_map_get_volume (map); - switch (bar->btype) { - case BALANCE_TYPE_RL: - val = volumes[BALANCE]; - break; - case BALANCE_TYPE_FR: - val = volumes[FADE]; - break; - case BALANCE_TYPE_LFE: - val = volumes[LFE]; - break; - default: - g_assert_not_reached (); - } - - gtk_adjustment_set_value (bar->adjustment, val); -} - -static void -on_channel_map_volume_changed (GvcChannelMap *map, - gboolean set, - GvcBalanceBar *bar) -{ - update_level_from_map (bar, map); -} - -static void -gvc_balance_bar_set_channel_map (GvcBalanceBar *bar, - GvcChannelMap *map) -{ - g_return_if_fail (GVC_BALANCE_BAR (bar)); - - if (bar->channel_map != NULL) { - g_signal_handlers_disconnect_by_func (G_OBJECT (bar->channel_map), - on_channel_map_volume_changed, bar); - g_object_unref (bar->channel_map); - } - bar->channel_map = g_object_ref (map); - - update_level_from_map (bar, map); - - g_signal_connect (G_OBJECT (map), "volume-changed", - G_CALLBACK (on_channel_map_volume_changed), bar); - - g_object_notify (G_OBJECT (bar), "channel-map"); -} - -static void -gvc_balance_bar_set_balance_type (GvcBalanceBar *bar, - GvcBalanceType btype) -{ - GtkWidget *frame; - - g_return_if_fail (GVC_BALANCE_BAR (bar)); - - bar->btype = btype; - if (bar->btype != BALANCE_TYPE_LFE) { - bar->adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, - -1.0, - 1.0, - 0.5, - 0.5, - 0.0)); - } else { - bar->adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, - 0.0, - ADJUSTMENT_MAX_NORMAL, - ADJUSTMENT_MAX_NORMAL/100.0, - ADJUSTMENT_MAX_NORMAL/10.0, - 0.0)); - } - - g_object_ref_sink (bar->adjustment); - g_signal_connect (bar->adjustment, - "value-changed", - G_CALLBACK (on_adjustment_value_changed), - bar); - - switch (btype) { - case BALANCE_TYPE_RL: - bar->label = gtk_label_new_with_mnemonic (_("_Balance:")); - break; - case BALANCE_TYPE_FR: - bar->label = gtk_label_new_with_mnemonic (_("_Fade:")); - break; - case BALANCE_TYPE_LFE: - bar->label = gtk_label_new_with_mnemonic (_("_Subwoofer:")); - break; - default: - g_assert_not_reached (); - } - gtk_widget_show (bar->label); - gtk_widget_set_halign (bar->label, GTK_ALIGN_START); - gtk_widget_set_valign (bar->label, GTK_ALIGN_START); - - /* frame */ - frame = gtk_frame_new (NULL); - gtk_widget_show (frame); - gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_NONE); - gtk_box_pack_start (GTK_BOX (bar), frame, TRUE, TRUE, 0); - - /* box with scale */ - bar->scale_box = _scale_box_new (bar); - gtk_widget_show (bar->scale_box); - gtk_container_add (GTK_CONTAINER (frame), bar->scale_box); - - gtk_widget_set_direction (bar->scale, GTK_TEXT_DIR_LTR); - gtk_label_set_mnemonic_widget (GTK_LABEL (bar->label), - bar->scale); - - g_object_notify (G_OBJECT (bar), "balance-type"); -} - -static void -gvc_balance_bar_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec) -{ - GvcBalanceBar *self = GVC_BALANCE_BAR (object); - - switch (prop_id) { - case PROP_CHANNEL_MAP: - gvc_balance_bar_set_channel_map (self, g_value_get_object (value)); - break; - case PROP_BALANCE_TYPE: - gvc_balance_bar_set_balance_type (self, g_value_get_int (value)); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gvc_balance_bar_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec) -{ - GvcBalanceBar *self = GVC_BALANCE_BAR (object); - - switch (prop_id) { - case PROP_CHANNEL_MAP: - g_value_set_object (value, self->channel_map); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static GObject * -gvc_balance_bar_constructor (GType type, - guint n_construct_properties, - GObjectConstructParam *construct_params) -{ - return G_OBJECT_CLASS (gvc_balance_bar_parent_class)->constructor (type, n_construct_properties, construct_params); -} - -static void -gvc_balance_bar_class_init (GvcBalanceBarClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - - object_class->constructor = gvc_balance_bar_constructor; - object_class->finalize = gvc_balance_bar_finalize; - object_class->set_property = gvc_balance_bar_set_property; - object_class->get_property = gvc_balance_bar_get_property; - - g_object_class_install_property (object_class, - PROP_CHANNEL_MAP, - g_param_spec_object ("channel-map", - "channel map", - "The channel map", - GVC_TYPE_CHANNEL_MAP, - G_PARAM_READWRITE)); - g_object_class_install_property (object_class, - PROP_BALANCE_TYPE, - g_param_spec_int ("balance-type", - "balance type", - "Whether the balance is right-left or front-rear", - BALANCE_TYPE_RL, NUM_BALANCE_TYPES - 1, BALANCE_TYPE_RL, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT_ONLY)); -} - - -static gboolean -on_scale_button_press_event (GtkWidget *widget, - GdkEventButton *event, - GvcBalanceBar *bar) -{ - bar->click_lock = TRUE; - - return FALSE; -} - -static gboolean -on_scale_button_release_event (GtkWidget *widget, - GdkEventButton *event, - GvcBalanceBar *bar) -{ - bar->click_lock = FALSE; - - return FALSE; -} - -static gboolean -on_scale_scroll_event (GtkWidget *widget, - GdkEventScroll *event, - GvcBalanceBar *bar) -{ - gdouble value; - gdouble dx, dy; - - value = gtk_adjustment_get_value (bar->adjustment); - - if (!gdk_event_get_scroll_deltas ((GdkEvent*)event, &dx, &dy)) { - dx = 0.0; - dy = 0.0; - - switch (event->direction) { - case GDK_SCROLL_UP: - case GDK_SCROLL_RIGHT: - dy = 1.0; - break; - case GDK_SCROLL_DOWN: - case GDK_SCROLL_LEFT: - dy = -1.0; - break; - default: - ; - } - } - - if (bar->btype == BALANCE_TYPE_LFE) { - if (dy > 0) { - if (value + dy * ADJUSTMENT_MAX_NORMAL/100.0 > ADJUSTMENT_MAX_NORMAL) - value = ADJUSTMENT_MAX_NORMAL; - else - value = value + dy * ADJUSTMENT_MAX_NORMAL/100.0; - } else if (dy < 0) { - if (value + dy * ADJUSTMENT_MAX_NORMAL/100.0 < 0) - value = 0.0; - else - value = value + dy * ADJUSTMENT_MAX_NORMAL/100.0; - } - } else { - if (dy > 0) { - if (value + dy * 0.01 > 1.0) - value = 1.0; - else - value = value + dy * 0.01; - } else if (dy < 0) { - if (value + dy * 0.01 < -1.0) - value = -1.0; - else - value = value + dy * 0.01; - } - } - gtk_adjustment_set_value (bar->adjustment, value); - - return TRUE; -} - -static void -on_adjustment_value_changed (GtkAdjustment *adjustment, - GvcBalanceBar *bar) -{ - gdouble val; - pa_cvolume cv; - const pa_channel_map *pa_map; - - if (bar->channel_map == NULL) - return; - - cv = *gvc_channel_map_get_cvolume (bar->channel_map); - val = gtk_adjustment_get_value (adjustment); - - pa_map = gvc_channel_map_get_pa_channel_map (bar->channel_map); - - switch (bar->btype) { - case BALANCE_TYPE_RL: - pa_cvolume_set_balance (&cv, pa_map, val); - break; - case BALANCE_TYPE_FR: - pa_cvolume_set_fade (&cv, pa_map, val); - break; - case BALANCE_TYPE_LFE: - pa_cvolume_set_position (&cv, pa_map, PA_CHANNEL_POSITION_LFE, val); - break; - } - - gvc_channel_map_volume_changed (bar->channel_map, &cv, TRUE); -} - -static void -gvc_balance_bar_init (GvcBalanceBar *bar) -{ -} - -static void -gvc_balance_bar_finalize (GObject *object) -{ - GvcBalanceBar *bar; - - g_return_if_fail (object != NULL); - g_return_if_fail (GVC_IS_BALANCE_BAR (object)); - - bar = GVC_BALANCE_BAR (object); - - g_return_if_fail (bar != NULL); - - if (bar->channel_map != NULL) { - g_signal_handlers_disconnect_by_func (G_OBJECT (bar->channel_map), - on_channel_map_volume_changed, bar); - g_object_unref (bar->channel_map); - } - - G_OBJECT_CLASS (gvc_balance_bar_parent_class)->finalize (object); -} - -GtkWidget * -gvc_balance_bar_new (const GvcChannelMap *channel_map, GvcBalanceType btype) -{ - GObject *bar; - bar = g_object_new (GVC_TYPE_BALANCE_BAR, - "channel-map", channel_map, - "balance-type", btype, - "orientation", GTK_ORIENTATION_HORIZONTAL, - NULL); - return GTK_WIDGET (bar); -} diff --git a/panels/sound/gvc-balance-bar.h b/panels/sound/gvc-balance-bar.h deleted file mode 100644 index 4638b0697..000000000 --- a/panels/sound/gvc-balance-bar.h +++ /dev/null @@ -1,49 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_BALANCE_BAR_H -#define __GVC_BALANCE_BAR_H - -#include <glib-object.h> - -#include "gvc-channel-map.h" - -G_BEGIN_DECLS - -#define GVC_TYPE_BALANCE_BAR (gvc_balance_bar_get_type ()) -G_DECLARE_FINAL_TYPE (GvcBalanceBar, gvc_balance_bar, GVC, BALANCE_BAR, GtkBox) - -typedef enum { - BALANCE_TYPE_RL, - BALANCE_TYPE_FR, - BALANCE_TYPE_LFE, -} GvcBalanceType; - -#define NUM_BALANCE_TYPES BALANCE_TYPE_LFE + 1 - -GtkWidget * gvc_balance_bar_new (const GvcChannelMap *map, - GvcBalanceType btype); - -void gvc_balance_bar_set_size_group (GvcBalanceBar *bar, - GtkSizeGroup *group, - gboolean symmetric); - -G_END_DECLS - -#endif /* __GVC_BALANCE_BAR_H */ diff --git a/panels/sound/gvc-channel-bar.c b/panels/sound/gvc-channel-bar.c deleted file mode 100644 index ec81c89b3..000000000 --- a/panels/sound/gvc-channel-bar.c +++ /dev/null @@ -1,978 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 William Jon McCann - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#include "config.h" - -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> - -#include <pulse/pulseaudio.h> - -#include <glib.h> -#include <glib/gi18n-lib.h> -#include <gtk/gtk.h> -#include <canberra-gtk.h> - -#include "gvc-channel-bar.h" -#include "gvc-mixer-control.h" - -#define SCALE_SIZE 128 -#define ADJUSTMENT_MAX_NORMAL gvc_mixer_control_get_vol_max_norm(NULL) -#define ADJUSTMENT_MAX_AMPLIFIED gvc_mixer_control_get_vol_max_amplified(NULL) -#define ADJUSTMENT_MAX (bar->is_amplified ? ADJUSTMENT_MAX_AMPLIFIED : ADJUSTMENT_MAX_NORMAL) -#define SCROLLSTEP (ADJUSTMENT_MAX / 100.0 * 5.0) - -struct _GvcChannelBar -{ - GtkBox parent_instance; - - GtkOrientation orientation; - GtkWidget *scale_box; - GtkWidget *start_box; - GtkWidget *end_box; - GtkWidget *image; - GtkWidget *label; - GtkWidget *low_image; - GtkWidget *scale; - GtkWidget *high_image; - GtkWidget *mute_switch; - GtkAdjustment *adjustment; - GtkAdjustment *zero_adjustment; - gboolean show_mute; - gboolean is_muted; - char *name; - char *icon_name; - char *low_icon_name; - char *high_icon_name; - GtkSizeGroup *size_group; - gboolean symmetric; - gboolean click_lock; - gboolean is_amplified; - guint32 base_volume; -}; - -enum -{ - PROP_0, - PROP_ORIENTATION, - PROP_SHOW_MUTE, - PROP_IS_MUTED, - PROP_ADJUSTMENT, - PROP_NAME, - PROP_ICON_NAME, - PROP_LOW_ICON_NAME, - PROP_HIGH_ICON_NAME, - PROP_IS_AMPLIFIED, - PROP_ELLIPSIZE -}; - -static void gvc_channel_bar_class_init (GvcChannelBarClass *klass); -static void gvc_channel_bar_init (GvcChannelBar *channel_bar); -static void gvc_channel_bar_finalize (GObject *object); - -static gboolean on_scale_button_press_event (GtkWidget *widget, - GdkEventButton *event, - GvcChannelBar *bar); -static gboolean on_scale_button_release_event (GtkWidget *widget, - GdkEventButton *event, - GvcChannelBar *bar); -static gboolean on_scale_scroll_event (GtkWidget *widget, - GdkEventScroll *event, - GvcChannelBar *bar); - -G_DEFINE_TYPE (GvcChannelBar, gvc_channel_bar, GTK_TYPE_BOX) - -static GtkWidget * -_scale_box_new (GvcChannelBar *bar) -{ - GtkWidget *box; - GtkWidget *sbox; - GtkWidget *ebox; - - if (bar->orientation == GTK_ORIENTATION_VERTICAL) { - bar->scale_box = box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - - bar->scale = gtk_scale_new (GTK_ORIENTATION_VERTICAL, bar->adjustment); - gtk_widget_show (bar->scale); - - gtk_widget_set_size_request (bar->scale, -1, SCALE_SIZE); - gtk_range_set_inverted (GTK_RANGE (bar->scale), TRUE); - - bar->start_box = sbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_widget_show (sbox); - gtk_box_pack_start (GTK_BOX (box), sbox, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (sbox), bar->image, FALSE, FALSE, 0); - gtk_box_pack_start (GTK_BOX (sbox), bar->label, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (sbox), bar->high_image, FALSE, FALSE, 0); - gtk_box_pack_start (GTK_BOX (box), bar->scale, TRUE, TRUE, 0); - - bar->end_box = ebox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_widget_show (ebox); - gtk_box_pack_start (GTK_BOX (box), ebox, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (ebox), bar->low_image, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (ebox), bar->mute_switch, FALSE, FALSE, 0); - } else { - bar->scale_box = box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_box_pack_start (GTK_BOX (box), bar->image, FALSE, FALSE, 0); - - bar->scale = gtk_scale_new (GTK_ORIENTATION_HORIZONTAL, bar->adjustment); - gtk_widget_show (bar->scale); - - gtk_widget_set_size_request (bar->scale, SCALE_SIZE, -1); - - bar->start_box = sbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (sbox); - gtk_box_pack_start (GTK_BOX (box), sbox, FALSE, FALSE, 0); - - gtk_box_pack_end (GTK_BOX (sbox), bar->low_image, FALSE, FALSE, 0); - gtk_widget_show (bar->low_image); - - gtk_box_pack_start (GTK_BOX (sbox), bar->label, TRUE, TRUE, 0); - gtk_box_pack_start (GTK_BOX (box), bar->scale, TRUE, TRUE, 0); - - bar->end_box = ebox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (ebox); - gtk_box_pack_start (GTK_BOX (box), ebox, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (ebox), bar->high_image, FALSE, FALSE, 0); - gtk_widget_show (bar->high_image); - gtk_box_pack_start (GTK_BOX (ebox), bar->mute_switch, FALSE, FALSE, 0); - gtk_widget_show (bar->mute_switch); - } - - ca_gtk_widget_disable_sounds (bar->scale, FALSE); - gtk_widget_add_events (bar->scale, GDK_SCROLL_MASK); - - g_signal_connect (G_OBJECT (bar->scale), "button-press-event", - G_CALLBACK (on_scale_button_press_event), bar); - g_signal_connect (G_OBJECT (bar->scale), "button-release-event", - G_CALLBACK (on_scale_button_release_event), bar); - g_signal_connect (G_OBJECT (bar->scale), "scroll-event", - G_CALLBACK (on_scale_scroll_event), bar); - - if (bar->size_group != NULL) { - gtk_size_group_add_widget (bar->size_group, sbox); - - if (bar->symmetric) { - gtk_size_group_add_widget (bar->size_group, ebox); - } - } - - gtk_scale_set_draw_value (GTK_SCALE (bar->scale), FALSE); - - return box; -} - -static void -update_image (GvcChannelBar *bar) -{ - gtk_image_set_from_icon_name (GTK_IMAGE (bar->image), - bar->icon_name, - GTK_ICON_SIZE_DIALOG); - - if (bar->icon_name != NULL) { - gtk_widget_show (bar->image); - } else { - gtk_widget_hide (bar->image); - } -} - -static void -update_label (GvcChannelBar *bar) -{ - if (bar->name != NULL) { - gtk_label_set_text_with_mnemonic (GTK_LABEL (bar->label), - bar->name); - gtk_label_set_mnemonic_widget (GTK_LABEL (bar->label), - bar->scale); - gtk_widget_show (bar->label); - } else { - gtk_label_set_text (GTK_LABEL (bar->label), NULL); - gtk_widget_hide (bar->label); - } -} - -static void -update_layout (GvcChannelBar *bar) -{ - GtkWidget *box; - GtkWidget *frame; - - if (bar->scale == NULL) { - return; - } - - box = bar->scale_box; - frame = gtk_widget_get_parent (box); - - g_object_ref (bar->image); - g_object_ref (bar->label); - g_object_ref (bar->mute_switch); - g_object_ref (bar->low_image); - g_object_ref (bar->high_image); - - gtk_container_remove (GTK_CONTAINER (bar->start_box), bar->image); - gtk_container_remove (GTK_CONTAINER (bar->start_box), bar->label); - gtk_container_remove (GTK_CONTAINER (bar->end_box), bar->mute_switch); - - if (bar->orientation == GTK_ORIENTATION_VERTICAL) { - gtk_container_remove (GTK_CONTAINER (bar->start_box), bar->low_image); - gtk_container_remove (GTK_CONTAINER (bar->end_box), bar->high_image); - } else { - gtk_container_remove (GTK_CONTAINER (bar->end_box), bar->low_image); - gtk_container_remove (GTK_CONTAINER (bar->start_box), bar->high_image); - } - - gtk_container_remove (GTK_CONTAINER (box), bar->start_box); - gtk_container_remove (GTK_CONTAINER (box), bar->scale); - gtk_container_remove (GTK_CONTAINER (box), bar->end_box); - gtk_container_remove (GTK_CONTAINER (frame), box); - - bar->scale_box = _scale_box_new (bar); - gtk_widget_show (bar->scale_box); - gtk_container_add (GTK_CONTAINER (frame), bar->scale_box); - - g_object_unref (bar->image); - g_object_unref (bar->label); - g_object_unref (bar->mute_switch); - g_object_unref (bar->low_image); - g_object_unref (bar->high_image); -} - -void -gvc_channel_bar_set_size_group (GvcChannelBar *bar, - GtkSizeGroup *group, - gboolean symmetric) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - bar->size_group = group; - bar->symmetric = symmetric; - - if (bar->size_group != NULL) { - gtk_size_group_add_widget (bar->size_group, - bar->start_box); - - if (bar->symmetric) { - gtk_size_group_add_widget (bar->size_group, - bar->end_box); - } - } - gtk_widget_queue_draw (GTK_WIDGET (bar)); -} - -void -gvc_channel_bar_set_name (GvcChannelBar *bar, - const char *name) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - g_free (bar->name); - bar->name = g_strdup (name); - update_label (bar); - g_object_notify (G_OBJECT (bar), "name"); -} - -void -gvc_channel_bar_set_icon_name (GvcChannelBar *bar, - const char *name) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - g_free (bar->icon_name); - bar->icon_name = g_strdup (name); - update_image (bar); - g_object_notify (G_OBJECT (bar), "icon-name"); -} - -void -gvc_channel_bar_set_low_icon_name (GvcChannelBar *bar, - const char *name) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - if (name != NULL && strcmp (bar->low_icon_name, name) != 0) { - g_free (bar->low_icon_name); - bar->low_icon_name = g_strdup (name); - gtk_image_set_from_icon_name (GTK_IMAGE (bar->low_image), - bar->low_icon_name, - GTK_ICON_SIZE_MENU); - g_object_notify (G_OBJECT (bar), "low-icon-name"); - } -} - -void -gvc_channel_bar_set_high_icon_name (GvcChannelBar *bar, - const char *name) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - if (name != NULL && strcmp (bar->high_icon_name, name) != 0) { - g_free (bar->high_icon_name); - bar->high_icon_name = g_strdup (name); - gtk_image_set_from_icon_name (GTK_IMAGE (bar->high_image), - bar->high_icon_name, - GTK_ICON_SIZE_MENU); - g_object_notify (G_OBJECT (bar), "high-icon-name"); - } -} - -void -gvc_channel_bar_set_orientation (GvcChannelBar *bar, - GtkOrientation orientation) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - if (orientation != bar->orientation) { - bar->orientation = orientation; - update_layout (bar); - g_object_notify (G_OBJECT (bar), "orientation"); - } -} - -static void -gvc_channel_bar_set_adjustment (GvcChannelBar *bar, - GtkAdjustment *adjustment) -{ - g_return_if_fail (GVC_CHANNEL_BAR (bar)); - g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment)); - - if (bar->adjustment != NULL) { - g_object_unref (bar->adjustment); - } - bar->adjustment = g_object_ref_sink (adjustment); - - if (bar->scale != NULL) { - gtk_range_set_adjustment (GTK_RANGE (bar->scale), adjustment); - } - - g_object_notify (G_OBJECT (bar), "adjustment"); -} - -GtkAdjustment * -gvc_channel_bar_get_adjustment (GvcChannelBar *bar) -{ - g_return_val_if_fail (GVC_IS_CHANNEL_BAR (bar), NULL); - - return bar->adjustment; -} - -static gboolean -on_scale_button_press_event (GtkWidget *widget, - GdkEventButton *event, - GvcChannelBar *bar) -{ - bar->click_lock = TRUE; - - return FALSE; -} - -static gboolean -on_scale_button_release_event (GtkWidget *widget, - GdkEventButton *event, - GvcChannelBar *bar) -{ - GtkAdjustment *adj; - gdouble value; - - bar->click_lock = FALSE; - - adj = gtk_range_get_adjustment (GTK_RANGE (widget)); - - value = gtk_adjustment_get_value (adj); - - /* this means the adjustment moved away from zero and - * therefore we should unmute and set the volume. */ - gvc_channel_bar_set_is_muted (bar, (value == 0.0)); - - /* Play a sound! */ - ca_gtk_play_for_widget (GTK_WIDGET (bar), 0, - CA_PROP_EVENT_ID, "audio-volume-change", - CA_PROP_EVENT_DESCRIPTION, "foobar event happened", - CA_PROP_APPLICATION_ID, "org.gnome.VolumeControl", - NULL); - - return FALSE; -} - -gboolean -gvc_channel_bar_scroll (GvcChannelBar *bar, GdkEventScroll *event) -{ - GtkAdjustment *adj; - gdouble value; - GdkScrollDirection direction; - gdouble dx, dy; - - g_return_val_if_fail (bar != NULL, FALSE); - g_return_val_if_fail (GVC_IS_CHANNEL_BAR (bar), FALSE); - - direction = event->direction; - - if (bar->orientation == GTK_ORIENTATION_VERTICAL) { - if (direction == GDK_SCROLL_LEFT || direction == GDK_SCROLL_RIGHT) - return FALSE; - } else { - /* Switch direction for RTL */ - if (gtk_widget_get_direction (GTK_WIDGET (bar)) == GTK_TEXT_DIR_RTL) { - if (direction == GDK_SCROLL_RIGHT) - direction = GDK_SCROLL_LEFT; - else if (direction == GDK_SCROLL_LEFT) - direction = GDK_SCROLL_RIGHT; - } - /* Switch side scroll to vertical */ - if (direction == GDK_SCROLL_RIGHT) - direction = GDK_SCROLL_UP; - else if (direction == GDK_SCROLL_LEFT) - direction = GDK_SCROLL_DOWN; - } - - if (!gdk_event_get_scroll_deltas ((GdkEvent*)event, &dx, &dy)) { - dx = 0.0; - dy = 0.0; - - switch (direction) { - case GDK_SCROLL_UP: - case GDK_SCROLL_LEFT: - dy = 1.0; - break; - case GDK_SCROLL_DOWN: - case GDK_SCROLL_RIGHT: - dy = -1.0; - break; - default: - ; - } - } - - adj = gtk_range_get_adjustment (GTK_RANGE (bar->scale)); - if (adj == bar->zero_adjustment) { - if (dy > 0) - gvc_channel_bar_set_is_muted (bar, FALSE); - return TRUE; - } - - value = gtk_adjustment_get_value (adj); - - if (dy > 0) { - if (value + dy * SCROLLSTEP > ADJUSTMENT_MAX) - value = ADJUSTMENT_MAX; - else - value = value + dy * SCROLLSTEP; - } else if (dy < 0) { - if (value + dy * SCROLLSTEP < 0) - value = 0.0; - else - value = value + dy * SCROLLSTEP; - } - - gvc_channel_bar_set_is_muted (bar, (value == 0.0)); - adj = gtk_range_get_adjustment (GTK_RANGE (bar->scale)); - gtk_adjustment_set_value (adj, value); - - return TRUE; -} - -static gboolean -on_scale_scroll_event (GtkWidget *widget, - GdkEventScroll *event, - GvcChannelBar *bar) -{ - return gvc_channel_bar_scroll (bar, event); -} - -static void -on_zero_adjustment_value_changed (GtkAdjustment *adjustment, - GvcChannelBar *bar) -{ - gdouble value; - - if (bar->click_lock != FALSE) { - return; - } - - value = gtk_adjustment_get_value (bar->zero_adjustment); - gtk_adjustment_set_value (bar->adjustment, value); - - - if (bar->show_mute == FALSE) { - /* this means the adjustment moved away from zero and - * therefore we should unmute and set the volume. */ - gvc_channel_bar_set_is_muted (bar, value > 0.0); - } -} - -static void -update_mute_switch (GvcChannelBar *bar) -{ - if (bar->show_mute) { - gtk_widget_show (bar->mute_switch); - gtk_switch_set_active (GTK_SWITCH (bar->mute_switch), - !bar->is_muted); - } else { - gtk_widget_hide (bar->mute_switch); - } - - if (bar->is_muted) { - /* If we aren't showing the mute button then - * move slider to the zero. But we don't want to - * change the adjustment. */ - g_signal_handlers_block_by_func (bar->zero_adjustment, - on_zero_adjustment_value_changed, - bar); - gtk_adjustment_set_value (bar->zero_adjustment, 0); - g_signal_handlers_unblock_by_func (bar->zero_adjustment, - on_zero_adjustment_value_changed, - bar); - gtk_range_set_adjustment (GTK_RANGE (bar->scale), - bar->zero_adjustment); - } else { - /* no longer muted so restore the original adjustment - * and tell the front-end that the value changed */ - gtk_range_set_adjustment (GTK_RANGE (bar->scale), - bar->adjustment); - gtk_adjustment_value_changed (bar->adjustment); - } -} - -void -gvc_channel_bar_set_is_muted (GvcChannelBar *bar, - gboolean is_muted) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - if (is_muted != bar->is_muted) { - /* Update our internal state before telling the - * front-end about our changes */ - bar->is_muted = is_muted; - update_mute_switch (bar); - g_object_notify (G_OBJECT (bar), "is-muted"); - } -} - -gboolean -gvc_channel_bar_get_is_muted (GvcChannelBar *bar) -{ - g_return_val_if_fail (GVC_IS_CHANNEL_BAR (bar), FALSE); - return bar->is_muted; -} - -void -gvc_channel_bar_set_show_mute (GvcChannelBar *bar, - gboolean show_mute) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - if (show_mute != bar->show_mute) { - bar->show_mute = show_mute; - g_object_notify (G_OBJECT (bar), "show-mute"); - update_mute_switch (bar); - } -} - -gboolean -gvc_channel_bar_get_show_mute (GvcChannelBar *bar) -{ - g_return_val_if_fail (GVC_IS_CHANNEL_BAR (bar), FALSE); - return bar->show_mute; -} - -void -gvc_channel_bar_set_is_amplified (GvcChannelBar *bar, gboolean amplified) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - bar->is_amplified = amplified; - gtk_adjustment_set_upper (bar->adjustment, ADJUSTMENT_MAX); - gtk_adjustment_set_upper (bar->zero_adjustment, ADJUSTMENT_MAX); - gtk_scale_clear_marks (GTK_SCALE (bar->scale)); - - if (amplified) { - g_autofree gchar *str = NULL; - - if (bar->base_volume == ADJUSTMENT_MAX_NORMAL) { - str = g_strdup_printf ("<small>%s</small>", C_("volume", "100%")); - gtk_scale_add_mark (GTK_SCALE (bar->scale), ADJUSTMENT_MAX_NORMAL, - GTK_POS_BOTTOM, str); - } else { - str = g_strdup_printf ("<small>%s</small>", C_("volume", "Unamplified")); - gtk_scale_add_mark (GTK_SCALE (bar->scale), bar->base_volume, - GTK_POS_BOTTOM, str); - /* Only show 100% if it's higher than the base volume */ - if (bar->base_volume < ADJUSTMENT_MAX_NORMAL) { - str = g_strdup_printf ("<small>%s</small>", C_("volume", "100%")); - gtk_scale_add_mark (GTK_SCALE (bar->scale), ADJUSTMENT_MAX_NORMAL, - GTK_POS_BOTTOM, str); - } - } - - /* Ideally we would use baseline alignment for all - * these widgets plus the scale but neither GtkScale - * nor GtkSwitch support baseline alignment yet. */ - - gtk_widget_set_valign (bar->mute_switch, GTK_ALIGN_START); -G_GNUC_BEGIN_IGNORE_DEPRECATIONS - gtk_misc_set_alignment (GTK_MISC (bar->low_image), 0.5, 0.15); - gtk_misc_set_alignment (GTK_MISC (bar->high_image), 0.5, 0.15); -G_GNUC_END_IGNORE_DEPRECATIONS - gtk_widget_set_valign (bar->label, GTK_ALIGN_START); - } else { - gtk_widget_set_valign (bar->mute_switch, GTK_ALIGN_CENTER); -G_GNUC_BEGIN_IGNORE_DEPRECATIONS - gtk_misc_set_alignment (GTK_MISC (bar->low_image), 0.5, 0.5); - gtk_misc_set_alignment (GTK_MISC (bar->high_image), 0.5, 0.5); -G_GNUC_END_IGNORE_DEPRECATIONS - gtk_widget_set_valign (bar->label, GTK_ALIGN_CENTER); - } -} - -gboolean -gvc_channel_bar_get_ellipsize (GvcChannelBar *bar) -{ - g_return_val_if_fail (GVC_IS_CHANNEL_BAR (bar), FALSE); - - return gtk_label_get_ellipsize (GTK_LABEL (bar->label)) != PANGO_ELLIPSIZE_NONE; -} - -void -gvc_channel_bar_set_ellipsize (GvcChannelBar *bar, - gboolean ellipsized) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - if (ellipsized) - gtk_label_set_ellipsize (GTK_LABEL (bar->label), PANGO_ELLIPSIZE_END); - else - gtk_label_set_ellipsize (GTK_LABEL (bar->label), PANGO_ELLIPSIZE_NONE); -} - -void -gvc_channel_bar_set_base_volume (GvcChannelBar *bar, - pa_volume_t base_volume) -{ - g_return_if_fail (GVC_IS_CHANNEL_BAR (bar)); - - if (base_volume == 0) { - bar->base_volume = ADJUSTMENT_MAX_NORMAL; - return; - } - - /* Note that you need to call _is_amplified() afterwards to update the marks */ - bar->base_volume = base_volume; -} - -static void -gvc_channel_bar_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec) -{ - GvcChannelBar *self = GVC_CHANNEL_BAR (object); - - switch (prop_id) { - case PROP_ORIENTATION: - gvc_channel_bar_set_orientation (self, g_value_get_enum (value)); - break; - case PROP_IS_MUTED: - gvc_channel_bar_set_is_muted (self, g_value_get_boolean (value)); - break; - case PROP_SHOW_MUTE: - gvc_channel_bar_set_show_mute (self, g_value_get_boolean (value)); - break; - case PROP_NAME: - gvc_channel_bar_set_name (self, g_value_get_string (value)); - break; - case PROP_ICON_NAME: - gvc_channel_bar_set_icon_name (self, g_value_get_string (value)); - break; - case PROP_LOW_ICON_NAME: - gvc_channel_bar_set_low_icon_name (self, g_value_get_string (value)); - break; - case PROP_HIGH_ICON_NAME: - gvc_channel_bar_set_high_icon_name (self, g_value_get_string (value)); - break; - case PROP_ADJUSTMENT: - gvc_channel_bar_set_adjustment (self, g_value_get_object (value)); - break; - case PROP_IS_AMPLIFIED: - gvc_channel_bar_set_is_amplified (self, g_value_get_boolean (value)); - break; - case PROP_ELLIPSIZE: - gvc_channel_bar_set_ellipsize (self, g_value_get_boolean (value)); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gvc_channel_bar_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec) -{ - GvcChannelBar *self = GVC_CHANNEL_BAR (object); - - switch (prop_id) { - case PROP_ORIENTATION: - g_value_set_enum (value, self->orientation); - break; - case PROP_IS_MUTED: - g_value_set_boolean (value, self->is_muted); - break; - case PROP_SHOW_MUTE: - g_value_set_boolean (value, self->show_mute); - break; - case PROP_NAME: - g_value_set_string (value, self->name); - break; - case PROP_ICON_NAME: - g_value_set_string (value, self->icon_name); - break; - case PROP_LOW_ICON_NAME: - g_value_set_string (value, self->low_icon_name); - break; - case PROP_HIGH_ICON_NAME: - g_value_set_string (value, self->high_icon_name); - break; - case PROP_ADJUSTMENT: - g_value_set_object (value, gvc_channel_bar_get_adjustment (self)); - break; - case PROP_IS_AMPLIFIED: - g_value_set_boolean (value, self->is_amplified); - break; - case PROP_ELLIPSIZE: - g_value_set_boolean (value, gvc_channel_bar_get_ellipsize (self)); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static GObject * -gvc_channel_bar_constructor (GType type, - guint n_construct_properties, - GObjectConstructParam *construct_params) -{ - GObject *object; - GvcChannelBar *self; - - object = G_OBJECT_CLASS (gvc_channel_bar_parent_class)->constructor (type, n_construct_properties, construct_params); - - self = GVC_CHANNEL_BAR (object); - - update_mute_switch (self); - - return object; -} - -static void -gvc_channel_bar_class_init (GvcChannelBarClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - - object_class->constructor = gvc_channel_bar_constructor; - object_class->finalize = gvc_channel_bar_finalize; - object_class->set_property = gvc_channel_bar_set_property; - object_class->get_property = gvc_channel_bar_get_property; - - g_object_class_install_property (object_class, - PROP_ORIENTATION, - g_param_spec_enum ("orientation", - "Orientation", - "The orientation of the scale", - GTK_TYPE_ORIENTATION, - GTK_ORIENTATION_HORIZONTAL, - G_PARAM_READWRITE)); - g_object_class_install_property (object_class, - PROP_IS_MUTED, - g_param_spec_boolean ("is-muted", - "is muted", - "Whether stream is muted", - FALSE, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_SHOW_MUTE, - g_param_spec_boolean ("show-mute", - "show mute", - "Whether stream is muted", - FALSE, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - - g_object_class_install_property (object_class, - PROP_ADJUSTMENT, - g_param_spec_object ("adjustment", - "Adjustment", - "The GtkAdjustment that contains the current value of this scale button object", - GTK_TYPE_ADJUSTMENT, - G_PARAM_READWRITE)); - g_object_class_install_property (object_class, - PROP_NAME, - g_param_spec_string ("name", - "Name", - "Name to display for this stream", - NULL, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_ICON_NAME, - g_param_spec_string ("icon-name", - "Icon Name", - "Name of icon to display for this stream", - NULL, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_LOW_ICON_NAME, - g_param_spec_string ("low-icon-name", - "Icon Name", - "Name of icon to display for this stream", - "audio-volume-low-symbolic", - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_HIGH_ICON_NAME, - g_param_spec_string ("high-icon-name", - "Icon Name", - "Name of icon to display for this stream", - "audio-volume-high-symbolic", - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_IS_AMPLIFIED, - g_param_spec_boolean ("is-amplified", - "Is amplified", - "Whether the stream is digitally amplified", - FALSE, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_ELLIPSIZE, - g_param_spec_boolean ("ellipsize", - "Label is ellipsized", - "Whether the label is ellipsized", - FALSE, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); -} - -static void -on_mute_switch_toggled (GtkSwitch *sw, - GParamSpec *pspec, - GvcChannelBar *bar) -{ - gboolean is_muted; - is_muted = gtk_switch_get_active (sw); - gvc_channel_bar_set_is_muted (bar, !is_muted); -} - -static void -gvc_channel_bar_init (GvcChannelBar *bar) -{ - GtkWidget *frame; - - bar->base_volume = ADJUSTMENT_MAX_NORMAL; - bar->low_icon_name = g_strdup ("audio-volume-low-symbolic"); - bar->high_icon_name = g_strdup ("audio-volume-high-symbolic"); - - bar->orientation = GTK_ORIENTATION_HORIZONTAL; - bar->adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, - 0.0, - ADJUSTMENT_MAX_NORMAL, - ADJUSTMENT_MAX_NORMAL/100.0, - ADJUSTMENT_MAX_NORMAL/10.0, - 0.0)); - g_object_ref_sink (bar->adjustment); - - bar->zero_adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, - 0.0, - ADJUSTMENT_MAX_NORMAL, - ADJUSTMENT_MAX_NORMAL/100.0, - ADJUSTMENT_MAX_NORMAL/10.0, - 0.0)); - g_object_ref_sink (bar->zero_adjustment); - - g_signal_connect (bar->zero_adjustment, - "value-changed", - G_CALLBACK (on_zero_adjustment_value_changed), - bar); - - bar->mute_switch = gtk_switch_new (); - gtk_widget_hide (bar->mute_switch); - g_signal_connect (bar->mute_switch, - "notify::active", - G_CALLBACK (on_mute_switch_toggled), - bar); - - bar->low_image = gtk_image_new_from_icon_name ("audio-volume-low-symbolic", - GTK_ICON_SIZE_MENU); - gtk_widget_hide (bar->low_image); - gtk_style_context_add_class (gtk_widget_get_style_context (bar->low_image), "dim-label"); - bar->high_image = gtk_image_new_from_icon_name ("audio-volume-high-symbolic", - GTK_ICON_SIZE_MENU); - gtk_widget_hide (bar->high_image); - gtk_style_context_add_class (gtk_widget_get_style_context (bar->high_image), "dim-label"); - - bar->image = gtk_image_new (); - - bar->label = gtk_label_new (NULL); - gtk_widget_set_halign (bar->label, GTK_ALIGN_START); - - /* frame */ - frame = gtk_frame_new (NULL); - gtk_widget_show (frame); - gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_NONE); - gtk_box_pack_start (GTK_BOX (bar), frame, TRUE, TRUE, 0); - - /* box with scale */ - bar->scale_box = _scale_box_new (bar); - gtk_widget_show (bar->scale_box); - - gtk_container_add (GTK_CONTAINER (frame), bar->scale_box); -} - -static void -gvc_channel_bar_finalize (GObject *object) -{ - GvcChannelBar *channel_bar; - - g_return_if_fail (object != NULL); - g_return_if_fail (GVC_IS_CHANNEL_BAR (object)); - - channel_bar = GVC_CHANNEL_BAR (object); - - g_return_if_fail (channel_bar != NULL); - - g_free (channel_bar->name); - g_free (channel_bar->icon_name); - g_free (channel_bar->low_icon_name); - g_free (channel_bar->high_icon_name); - - G_OBJECT_CLASS (gvc_channel_bar_parent_class)->finalize (object); -} - -GtkWidget * -gvc_channel_bar_new (void) -{ - GObject *bar; - bar = g_object_new (GVC_TYPE_CHANNEL_BAR, - "orientation", GTK_ORIENTATION_HORIZONTAL, - NULL); - return GTK_WIDGET (bar); -} diff --git a/panels/sound/gvc-channel-bar.h b/panels/sound/gvc-channel-bar.h deleted file mode 100644 index f0ded18f9..000000000 --- a/panels/sound/gvc-channel-bar.h +++ /dev/null @@ -1,69 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_CHANNEL_BAR_H -#define __GVC_CHANNEL_BAR_H - -#include <glib-object.h> - -G_BEGIN_DECLS - -#define GVC_TYPE_CHANNEL_BAR (gvc_channel_bar_get_type ()) -G_DECLARE_FINAL_TYPE (GvcChannelBar, gvc_channel_bar, GVC, CHANNEL_BAR, GtkBox) - -GtkWidget * gvc_channel_bar_new (void); - -void gvc_channel_bar_set_name (GvcChannelBar *bar, - const char *name); -void gvc_channel_bar_set_icon_name (GvcChannelBar *bar, - const char *icon_name); -void gvc_channel_bar_set_low_icon_name (GvcChannelBar *bar, - const char *icon_name); -void gvc_channel_bar_set_high_icon_name (GvcChannelBar *bar, - const char *icon_name); - -void gvc_channel_bar_set_orientation (GvcChannelBar *bar, - GtkOrientation orientation); -GtkOrientation gvc_channel_bar_get_orientation (GvcChannelBar *bar); - -GtkAdjustment * gvc_channel_bar_get_adjustment (GvcChannelBar *bar); - -gboolean gvc_channel_bar_get_is_muted (GvcChannelBar *bar); -void gvc_channel_bar_set_is_muted (GvcChannelBar *bar, - gboolean is_muted); -gboolean gvc_channel_bar_get_show_mute (GvcChannelBar *bar); -void gvc_channel_bar_set_show_mute (GvcChannelBar *bar, - gboolean show_mute); -void gvc_channel_bar_set_size_group (GvcChannelBar *bar, - GtkSizeGroup *group, - gboolean symmetric); -void gvc_channel_bar_set_is_amplified (GvcChannelBar *bar, - gboolean amplified); -void gvc_channel_bar_set_base_volume (GvcChannelBar *bar, - guint32 base_volume); -gboolean gvc_channel_bar_get_ellipsize (GvcChannelBar *bar); -void gvc_channel_bar_set_ellipsize (GvcChannelBar *bar, - gboolean ellipsized); - -gboolean gvc_channel_bar_scroll (GvcChannelBar *bar, - GdkEventScroll *event); - -G_END_DECLS - -#endif /* __GVC_CHANNEL_BAR_H */ diff --git a/panels/sound/gvc-combo-box.c b/panels/sound/gvc-combo-box.c deleted file mode 100644 index 4b4663c5b..000000000 --- a/panels/sound/gvc-combo-box.c +++ /dev/null @@ -1,396 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2009 Bastien Nocera - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#include "config.h" - -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> - -#include <glib.h> -#include <glib/gi18n-lib.h> -#include <gtk/gtk.h> -#include <canberra-gtk.h> -#include <pulse/pulseaudio.h> - -#include "gvc-combo-box.h" -#include "gvc-mixer-stream.h" -#include "gvc-mixer-card.h" - -struct _GvcComboBox -{ - GtkBox parent_instance; - - GtkWidget *drop_box; - GtkWidget *start_box; - GtkWidget *end_box; - GtkWidget *label; - GtkWidget *button; - GtkTreeModel *model; - GtkWidget *combobox; - gboolean set_called; - GtkSizeGroup *size_group; - gboolean symmetric; -}; - -enum { - COL_NAME, - COL_HUMAN_NAME, - NUM_COLS -}; - -enum { - CHANGED, - BUTTON_CLICKED, - LAST_SIGNAL -}; - -enum { - PROP_0, - PROP_LABEL, - PROP_SHOW_BUTTON, - PROP_BUTTON_LABEL -}; - -static guint signals [LAST_SIGNAL] = { 0, }; - -static void gvc_combo_box_class_init (GvcComboBoxClass *klass); -static void gvc_combo_box_init (GvcComboBox *combo_box); -static void gvc_combo_box_finalize (GObject *object); - -G_DEFINE_TYPE (GvcComboBox, gvc_combo_box, GTK_TYPE_BOX) - -void -gvc_combo_box_set_size_group (GvcComboBox *combo_box, - GtkSizeGroup *group, - gboolean symmetric) -{ - g_return_if_fail (GVC_IS_COMBO_BOX (combo_box)); - - combo_box->size_group = group; - combo_box->symmetric = symmetric; - - if (combo_box->size_group != NULL) { - gtk_size_group_add_widget (combo_box->size_group, - combo_box->start_box); - - if (combo_box->symmetric) { - gtk_size_group_add_widget (combo_box->size_group, - combo_box->end_box); - } - } - gtk_widget_queue_draw (GTK_WIDGET (combo_box)); -} - -static void -gvc_combo_box_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec) -{ - GvcComboBox *self = GVC_COMBO_BOX (object); - - switch (prop_id) { - case PROP_LABEL: - gtk_label_set_text_with_mnemonic (GTK_LABEL (self->label), g_value_get_string (value)); - break; - case PROP_BUTTON_LABEL: - gtk_button_set_label (GTK_BUTTON (self->button), g_value_get_string (value)); - break; - case PROP_SHOW_BUTTON: - gtk_widget_set_visible (self->button, g_value_get_boolean (value)); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gvc_combo_box_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec) -{ - GvcComboBox *self = GVC_COMBO_BOX (object); - - switch (prop_id) { - case PROP_LABEL: - g_value_set_string (value, - gtk_label_get_text (GTK_LABEL (self->label))); - break; - case PROP_BUTTON_LABEL: - g_value_set_string (value, - gtk_button_get_label (GTK_BUTTON (self->button))); - break; - case PROP_SHOW_BUTTON: - g_value_set_boolean (value, - gtk_widget_get_visible (self->button)); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gvc_combo_box_class_init (GvcComboBoxClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - - object_class->finalize = gvc_combo_box_finalize; - object_class->set_property = gvc_combo_box_set_property; - object_class->get_property = gvc_combo_box_get_property; - - g_object_class_install_property (object_class, - PROP_LABEL, - g_param_spec_string ("label", - "label", - "The combo box label", - _("_Profile:"), - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_SHOW_BUTTON, - g_param_spec_boolean ("show-button", - "show-button", - "Whether to show the button", - FALSE, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_BUTTON_LABEL, - g_param_spec_string ("button-label", - "button-label", - "The button's label", - "APPLICATION BUG", - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - signals [CHANGED] = - g_signal_new ("changed", - G_TYPE_FROM_CLASS (klass), - G_SIGNAL_RUN_LAST, - 0, - NULL, NULL, - g_cclosure_marshal_VOID__STRING, - G_TYPE_NONE, 1, G_TYPE_STRING); - signals [BUTTON_CLICKED] = - g_signal_new ("button-clicked", - G_TYPE_FROM_CLASS (klass), - G_SIGNAL_RUN_LAST, - 0, - NULL, NULL, - g_cclosure_marshal_VOID__VOID, - G_TYPE_NONE, 0, G_TYPE_NONE); -} - -void -gvc_combo_box_set_profiles (GvcComboBox *combo_box, - const GList *profiles) -{ - const GList *l; - - g_return_if_fail (GVC_IS_COMBO_BOX (combo_box)); - g_return_if_fail (combo_box->set_called == FALSE); - - for (l = profiles; l != NULL; l = l->next) { - GvcMixerCardProfile *p = l->data; - - gtk_list_store_insert_with_values (GTK_LIST_STORE (combo_box->model), - NULL, - G_MAXINT, - COL_NAME, p->profile, - COL_HUMAN_NAME, p->human_profile, - -1); - } - combo_box->set_called = TRUE; -} - -void -gvc_combo_box_set_ports (GvcComboBox *combo_box, - const GList *ports) -{ - const GList *l; - - g_return_if_fail (GVC_IS_COMBO_BOX (combo_box)); - g_return_if_fail (combo_box->set_called == FALSE); - - for (l = ports; l != NULL; l = l->next) { - GvcMixerStreamPort *p = l->data; - - gtk_list_store_insert_with_values (GTK_LIST_STORE (combo_box->model), - NULL, - G_MAXINT, - COL_NAME, p->port, - COL_HUMAN_NAME, p->human_port, - -1); - } - combo_box->set_called = TRUE; -} - -void -gvc_combo_box_set_active (GvcComboBox *combo_box, - const char *id) -{ - GtkTreeIter iter; - gboolean cont; - - cont = gtk_tree_model_get_iter_first (combo_box->model, &iter); - while (cont != FALSE) { - char *name; - - gtk_tree_model_get (combo_box->model, &iter, - COL_NAME, &name, - -1); - if (g_strcmp0 (name, id) == 0) { - gtk_combo_box_set_active_iter (GTK_COMBO_BOX (combo_box->combobox), &iter); - return; - } - cont = gtk_tree_model_iter_next (combo_box->model, &iter); - } - g_warning ("Could not find id '%s' in combo box", id); -} - -static void -on_combo_box_changed (GtkComboBox *widget, - GvcComboBox *combo_box) -{ - GtkTreeIter iter; - g_autofree gchar *profile = NULL; - - if (gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter) == FALSE) { - g_warning ("Could not find an active profile or port"); - return; - } - - gtk_tree_model_get (combo_box->model, &iter, - COL_NAME, &profile, - -1); - g_signal_emit (combo_box, signals[CHANGED], 0, profile); -} - -static void -on_combo_box_button_clicked (GtkButton *button, - GvcComboBox *combo_box) -{ - g_signal_emit (combo_box, signals[BUTTON_CLICKED], 0); -} - -static void -gvc_combo_box_init (GvcComboBox *combo_box) -{ - GtkWidget *frame; - GtkWidget *box; - GtkWidget *sbox; - GtkWidget *ebox; - GtkCellRenderer *renderer; - - combo_box->model = GTK_TREE_MODEL (gtk_list_store_new (NUM_COLS, - G_TYPE_STRING, - G_TYPE_STRING)); - - combo_box->label = gtk_label_new (NULL); - gtk_widget_show (combo_box->label); - gtk_widget_set_halign (combo_box->label, GTK_ALIGN_START); - - /* frame */ - frame = gtk_frame_new (NULL); - gtk_widget_show (frame); - gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_NONE); - gtk_box_pack_start (GTK_BOX (combo_box), frame, TRUE, TRUE, 0); - - combo_box->drop_box = box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (box); - combo_box->combobox = gtk_combo_box_new_with_model (combo_box->model); - gtk_widget_show (combo_box->combobox); - renderer = gtk_cell_renderer_text_new (); - gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box->combobox), - renderer, TRUE); - gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo_box->combobox), - renderer, - "text", COL_HUMAN_NAME); - - /* Make sure that the combo box isn't too wide when human names are overly long, - * but that we can still read the full length of it */ - g_object_set (G_OBJECT (renderer), "ellipsize", PANGO_ELLIPSIZE_END, NULL); - g_object_set (G_OBJECT (combo_box->combobox), "popup-fixed-width", FALSE, NULL); - - combo_box->start_box = sbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (sbox); - gtk_box_pack_start (GTK_BOX (box), sbox, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (sbox), combo_box->label, FALSE, FALSE, 0); - - gtk_box_pack_start (GTK_BOX (box), combo_box->combobox, TRUE, TRUE, 0); - - combo_box->button = gtk_button_new_with_label ("APPLICATION BUG"); - gtk_widget_hide (combo_box->button); - gtk_button_set_use_underline (GTK_BUTTON (combo_box->button), TRUE); - gtk_box_pack_start (GTK_BOX (box), combo_box->button, FALSE, FALSE, 0); - - - combo_box->end_box = ebox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (ebox); - gtk_box_pack_start (GTK_BOX (box), ebox, FALSE, FALSE, 0); - - if (combo_box->size_group != NULL) { - gtk_size_group_add_widget (combo_box->size_group, sbox); - - if (combo_box->symmetric) { - gtk_size_group_add_widget (combo_box->size_group, ebox); - } - } - - gtk_container_add (GTK_CONTAINER (frame), combo_box->drop_box); - - gtk_label_set_mnemonic_widget (GTK_LABEL (combo_box->label), - combo_box->combobox); - - g_signal_connect (G_OBJECT (combo_box->combobox), "changed", - G_CALLBACK (on_combo_box_changed), combo_box); - g_signal_connect (G_OBJECT (combo_box->button), "clicked", - G_CALLBACK (on_combo_box_button_clicked), combo_box); -} - -static void -gvc_combo_box_finalize (GObject *object) -{ - GvcComboBox *combo_box; - - g_return_if_fail (object != NULL); - g_return_if_fail (GVC_IS_COMBO_BOX (object)); - - combo_box = GVC_COMBO_BOX (object); - - g_return_if_fail (combo_box != NULL); - - g_object_unref (combo_box->model); - combo_box->model = NULL; - - G_OBJECT_CLASS (gvc_combo_box_parent_class)->finalize (object); -} - -GtkWidget * -gvc_combo_box_new (const char *label) -{ - GObject *combo_box; - combo_box = g_object_new (GVC_TYPE_COMBO_BOX, - "label", label, - "orientation", GTK_ORIENTATION_HORIZONTAL, - NULL); - return GTK_WIDGET (combo_box); -} - diff --git a/panels/sound/gvc-combo-box.h b/panels/sound/gvc-combo-box.h deleted file mode 100644 index 77937c2b2..000000000 --- a/panels/sound/gvc-combo-box.h +++ /dev/null @@ -1,45 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_COMBO_BOX_H -#define __GVC_COMBO_BOX_H - -#include <glib-object.h> - -G_BEGIN_DECLS - -#define GVC_TYPE_COMBO_BOX (gvc_combo_box_get_type ()) -G_DECLARE_FINAL_TYPE (GvcComboBox, gvc_combo_box, GVC, COMBO_BOX, GtkBox) - -GtkWidget * gvc_combo_box_new (const char *label); - -void gvc_combo_box_set_size_group (GvcComboBox *combo_box, - GtkSizeGroup *group, - gboolean symmetric); - -void gvc_combo_box_set_profiles (GvcComboBox *combo_box, - const GList *profiles); -void gvc_combo_box_set_ports (GvcComboBox *combo_box, - const GList *ports); -void gvc_combo_box_set_active (GvcComboBox *combo_box, - const char *id); - -G_END_DECLS - -#endif /* __GVC_COMBO_BOX_H */ diff --git a/panels/sound/gvc-level-bar.c b/panels/sound/gvc-level-bar.c deleted file mode 100644 index 39419465f..000000000 --- a/panels/sound/gvc-level-bar.c +++ /dev/null @@ -1,772 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 William Jon McCann <william.jon.mccann@gmail.com> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#include "config.h" - -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> -#include <math.h> - -#include <glib.h> -#include <glib/gi18n-lib.h> -#include <gtk/gtk.h> - -#include "gvc-level-bar.h" - -#define NUM_BOXES 30 - -#define MIN_HORIZONTAL_BAR_WIDTH 150 -#define HORIZONTAL_BAR_HEIGHT 6 -#define VERTICAL_BAR_WIDTH 6 -#define MIN_VERTICAL_BAR_HEIGHT 400 - -typedef struct { - int peak_num; - int max_peak_num; - - GdkRectangle area; - int delta; - int box_width; - int box_height; - int box_radius; - double bg_r; - double bg_g; - double bg_b; - double bdr_r; - double bdr_g; - double bdr_b; - double fl_r; - double fl_g; - double fl_b; -} LevelBarLayout; - -struct _GvcLevelBar -{ - GtkWidget parent_instance; - - GtkOrientation orientation; - GtkAdjustment *peak_adjustment; - GtkAdjustment *rms_adjustment; - GvcLevelScale scale; - gdouble peak_fraction; - gdouble rms_fraction; - gdouble max_peak; - guint max_peak_id; - LevelBarLayout layout; -}; - -enum -{ - PROP_0, - PROP_PEAK_ADJUSTMENT, - PROP_RMS_ADJUSTMENT, - PROP_SCALE, - PROP_ORIENTATION, -}; - -static void gvc_level_bar_class_init (GvcLevelBarClass *klass); -static void gvc_level_bar_init (GvcLevelBar *level_bar); -static void gvc_level_bar_finalize (GObject *object); - -G_DEFINE_TYPE (GvcLevelBar, gvc_level_bar, GTK_TYPE_WIDGET) - -#define check_rectangle(rectangle1, rectangle2) \ - { \ - /* .x and .y are always 0 */ \ - if (rectangle1.width != rectangle2.width) return TRUE; \ - if (rectangle1.height != rectangle2.height) return TRUE; \ - } - -static gboolean -layout_changed (LevelBarLayout *layout1, - LevelBarLayout *layout2) -{ - check_rectangle (layout1->area, layout2->area); - if (layout1->delta != layout2->delta) return TRUE; - if (layout1->peak_num != layout2->peak_num) return TRUE; - if (layout1->max_peak_num != layout2->max_peak_num) return TRUE; - if (layout1->bg_r != layout2->bg_r - || layout1->bg_g != layout2->bg_g - || layout1->bg_b != layout2->bg_b) - return TRUE; - if (layout1->bdr_r != layout2->bdr_r - || layout1->bdr_g != layout2->bdr_g - || layout1->bdr_b != layout2->bdr_b) - return TRUE; - if (layout1->fl_r != layout2->fl_r - || layout1->fl_g != layout2->fl_g - || layout1->fl_b != layout2->fl_b) - return TRUE; - - return FALSE; -} - -static gdouble -fraction_from_adjustment (GvcLevelBar *bar, - GtkAdjustment *adjustment) -{ - gdouble level; - gdouble fraction; - gdouble min; - gdouble max; - - level = gtk_adjustment_get_value (adjustment); - - min = gtk_adjustment_get_lower (adjustment); - max = gtk_adjustment_get_upper (adjustment); - - switch (bar->scale) { - case GVC_LEVEL_SCALE_LINEAR: - fraction = (level - min) / (max - min); - break; - case GVC_LEVEL_SCALE_LOG: - fraction = log10 ((level - min + 1) / (max - min + 1)); - break; - default: - g_assert_not_reached (); - } - - return fraction; -} - -static gboolean -reset_max_peak (GvcLevelBar *bar) -{ - gdouble min; - - min = gtk_adjustment_get_lower (bar->peak_adjustment); - bar->max_peak = min; - bar->layout.max_peak_num = 0; - gtk_widget_queue_draw (GTK_WIDGET (bar)); - bar->max_peak_id = 0; - return FALSE; -} - -static void -bar_calc_layout (GvcLevelBar *bar) -{ - GdkColor color; - int peak_level; - int max_peak_level; - GtkAllocation allocation; - GtkStyle *style; - - gtk_widget_get_allocation (GTK_WIDGET (bar), &allocation); - bar->layout.area.width = allocation.width - 2; - bar->layout.area.height = allocation.height - 2; - - style = gtk_widget_get_style (GTK_WIDGET (bar)); - color = style->bg [GTK_STATE_NORMAL]; - bar->layout.bg_r = (float)color.red / 65535.0; - bar->layout.bg_g = (float)color.green / 65535.0; - bar->layout.bg_b = (float)color.blue / 65535.0; - color = style->dark [GTK_STATE_NORMAL]; - bar->layout.bdr_r = (float)color.red / 65535.0; - bar->layout.bdr_g = (float)color.green / 65535.0; - bar->layout.bdr_b = (float)color.blue / 65535.0; - color = style->bg [GTK_STATE_SELECTED]; - bar->layout.fl_r = (float)color.red / 65535.0; - bar->layout.fl_g = (float)color.green / 65535.0; - bar->layout.fl_b = (float)color.blue / 65535.0; - - if (bar->orientation == GTK_ORIENTATION_VERTICAL) { - peak_level = bar->peak_fraction * bar->layout.area.height; - max_peak_level = bar->max_peak * bar->layout.area.height; - - bar->layout.delta = bar->layout.area.height / NUM_BOXES; - bar->layout.area.x = 0; - bar->layout.area.y = 0; - bar->layout.box_height = bar->layout.delta / 2; - bar->layout.box_width = bar->layout.area.width; - bar->layout.box_radius = bar->layout.box_width / 2; - } else { - peak_level = bar->peak_fraction * bar->layout.area.width; - max_peak_level = bar->max_peak * bar->layout.area.width; - - bar->layout.delta = bar->layout.area.width / NUM_BOXES; - bar->layout.area.x = 0; - bar->layout.area.y = 0; - bar->layout.box_width = bar->layout.delta / 2; - bar->layout.box_height = bar->layout.area.height; - bar->layout.box_radius = bar->layout.box_height / 2; - } - - /* This can happen if the level bar isn't realized */ - if (bar->layout.delta == 0) - return; - - bar->layout.peak_num = peak_level / bar->layout.delta; - bar->layout.max_peak_num = max_peak_level / bar->layout.delta; -} - -static void -update_peak_value (GvcLevelBar *bar) -{ - gdouble val; - LevelBarLayout layout; - - layout = bar->layout; - - val = fraction_from_adjustment (bar, bar->peak_adjustment); - bar->peak_fraction = val; - - if (val > bar->max_peak) { - if (bar->max_peak_id > 0) { - g_source_remove (bar->max_peak_id); - } - bar->max_peak_id = g_timeout_add_seconds (1, (GSourceFunc)reset_max_peak, bar); - bar->max_peak = val; - } - - bar_calc_layout (bar); - - if (layout_changed (&bar->layout, &layout)) { - gtk_widget_queue_draw (GTK_WIDGET (bar)); - } -} - -static void -update_rms_value (GvcLevelBar *bar) -{ - gdouble val; - - val = fraction_from_adjustment (bar, bar->rms_adjustment); - bar->rms_fraction = val; -} - -GtkOrientation -gvc_level_bar_get_orientation (GvcLevelBar *bar) -{ - g_return_val_if_fail (GVC_IS_LEVEL_BAR (bar), 0); - return bar->orientation; -} - -void -gvc_level_bar_set_orientation (GvcLevelBar *bar, - GtkOrientation orientation) -{ - g_return_if_fail (GVC_IS_LEVEL_BAR (bar)); - - if (orientation != bar->orientation) { - bar->orientation = orientation; - gtk_widget_queue_draw (GTK_WIDGET (bar)); - g_object_notify (G_OBJECT (bar), "orientation"); - } -} - -static void -on_peak_adjustment_value_changed (GtkAdjustment *adjustment, - GvcLevelBar *bar) -{ - update_peak_value (bar); -} - -static void -on_rms_adjustment_value_changed (GtkAdjustment *adjustment, - GvcLevelBar *bar) -{ - update_rms_value (bar); -} - -void -gvc_level_bar_set_peak_adjustment (GvcLevelBar *bar, - GtkAdjustment *adjustment) -{ - g_return_if_fail (GVC_LEVEL_BAR (bar)); - g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment)); - - if (bar->peak_adjustment != NULL) { - g_signal_handlers_disconnect_by_func (bar->peak_adjustment, - G_CALLBACK (on_peak_adjustment_value_changed), - bar); - g_object_unref (bar->peak_adjustment); - } - - bar->peak_adjustment = g_object_ref_sink (adjustment); - - g_signal_connect (bar->peak_adjustment, - "value-changed", - G_CALLBACK (on_peak_adjustment_value_changed), - bar); - - update_peak_value (bar); - - g_object_notify (G_OBJECT (bar), "peak-adjustment"); -} - -void -gvc_level_bar_set_rms_adjustment (GvcLevelBar *bar, - GtkAdjustment *adjustment) -{ - g_return_if_fail (GVC_LEVEL_BAR (bar)); - g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment)); - - if (bar->rms_adjustment != NULL) { - g_signal_handlers_disconnect_by_func (bar->peak_adjustment, - G_CALLBACK (on_rms_adjustment_value_changed), - bar); - g_object_unref (bar->rms_adjustment); - } - - bar->rms_adjustment = g_object_ref_sink (adjustment); - - - g_signal_connect (bar->peak_adjustment, - "value-changed", - G_CALLBACK (on_peak_adjustment_value_changed), - bar); - - update_rms_value (bar); - - g_object_notify (G_OBJECT (bar), "rms-adjustment"); -} - -GtkAdjustment * -gvc_level_bar_get_peak_adjustment (GvcLevelBar *bar) -{ - g_return_val_if_fail (GVC_IS_LEVEL_BAR (bar), NULL); - - return bar->peak_adjustment; -} - -GtkAdjustment * -gvc_level_bar_get_rms_adjustment (GvcLevelBar *bar) -{ - g_return_val_if_fail (GVC_IS_LEVEL_BAR (bar), NULL); - - return bar->rms_adjustment; -} - -void -gvc_level_bar_set_scale (GvcLevelBar *bar, - GvcLevelScale scale) -{ - g_return_if_fail (GVC_IS_LEVEL_BAR (bar)); - - if (scale != bar->scale) { - bar->scale = scale; - - update_peak_value (bar); - update_rms_value (bar); - - g_object_notify (G_OBJECT (bar), "scale"); - } -} - -static void -gvc_level_bar_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec) -{ - GvcLevelBar *self = GVC_LEVEL_BAR (object); - - switch (prop_id) { - case PROP_SCALE: - gvc_level_bar_set_scale (self, g_value_get_int (value)); - break; - case PROP_ORIENTATION: - gvc_level_bar_set_orientation (self, g_value_get_enum (value)); - break; - case PROP_PEAK_ADJUSTMENT: - gvc_level_bar_set_peak_adjustment (self, g_value_get_object (value)); - break; - case PROP_RMS_ADJUSTMENT: - gvc_level_bar_set_rms_adjustment (self, g_value_get_object (value)); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gvc_level_bar_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec) -{ - GvcLevelBar *self = GVC_LEVEL_BAR (object); - - switch (prop_id) { - case PROP_SCALE: - g_value_set_int (value, self->scale); - break; - case PROP_ORIENTATION: - g_value_set_enum (value, self->orientation); - break; - case PROP_PEAK_ADJUSTMENT: - g_value_set_object (value, self->peak_adjustment); - break; - case PROP_RMS_ADJUSTMENT: - g_value_set_object (value, self->rms_adjustment); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static GObject * -gvc_level_bar_constructor (GType type, - guint n_construct_properties, - GObjectConstructParam *construct_params) -{ - return G_OBJECT_CLASS (gvc_level_bar_parent_class)->constructor (type, n_construct_properties, construct_params); -} - -static void -gvc_level_bar_size_request (GtkWidget *widget, - GtkRequisition *requisition) -{ - GvcLevelBar *bar = GVC_LEVEL_BAR (widget); - - switch (bar->orientation) { - case GTK_ORIENTATION_VERTICAL: - requisition->width = VERTICAL_BAR_WIDTH; - requisition->height = MIN_VERTICAL_BAR_HEIGHT; - break; - case GTK_ORIENTATION_HORIZONTAL: - requisition->width = MIN_HORIZONTAL_BAR_WIDTH; - requisition->height = HORIZONTAL_BAR_HEIGHT; - break; - default: - g_assert_not_reached (); - break; - } -} - -static void -gvc_level_bar_get_preferred_width (GtkWidget *widget, - gint *minimum, - gint *natural) -{ - GtkRequisition requisition; - - gvc_level_bar_size_request (widget, &requisition); - - if (minimum != NULL) { - *minimum = requisition.width; - } - if (natural != NULL) { - *natural = requisition.width; - } -} - -static void -gvc_level_bar_get_preferred_height (GtkWidget *widget, - gint *minimum, - gint *natural) -{ - GtkRequisition requisition; - - gvc_level_bar_size_request (widget, &requisition); - - if (minimum != NULL) { - *minimum = requisition.height; - } - if (natural != NULL) { - *natural = requisition.height; - } -} - -static void -gvc_level_bar_size_allocate (GtkWidget *widget, - GtkAllocation *allocation) -{ - GvcLevelBar *bar; - - g_return_if_fail (GVC_IS_LEVEL_BAR (widget)); - g_return_if_fail (allocation != NULL); - - bar = GVC_LEVEL_BAR (widget); - - /* FIXME: add height property, labels, etc */ - GTK_WIDGET_CLASS (gvc_level_bar_parent_class)->size_allocate (widget, allocation); - - gtk_widget_set_allocation (widget, allocation); - gtk_widget_get_allocation (widget, allocation); - - if (bar->orientation == GTK_ORIENTATION_VERTICAL) { - allocation->height = MIN (allocation->height, MIN_VERTICAL_BAR_HEIGHT); - allocation->width = MAX (allocation->width, VERTICAL_BAR_WIDTH); - } else { - allocation->width = MIN (allocation->width, MIN_HORIZONTAL_BAR_WIDTH); - allocation->height = MAX (allocation->height, HORIZONTAL_BAR_HEIGHT); - } - - bar_calc_layout (bar); -} - -static void -curved_rectangle (cairo_t *cr, - double _x0, - double _y0, - double width, - double height, - double radius) -{ - double x1; - double _y1; - - x1 = _x0 + width; - _y1 = _y0 + height; - - if (!width || !height) { - return; - } - - if (width / 2 < radius) { - if (height / 2 < radius) { - cairo_move_to (cr, _x0, (_y0 + _y1) / 2); - cairo_curve_to (cr, _x0 ,_y0, _x0, _y0, (_x0 + x1) / 2, _y0); - cairo_curve_to (cr, x1, _y0, x1, _y0, x1, (_y0 + _y1) / 2); - cairo_curve_to (cr, x1, _y1, x1, _y1, (x1 + _x0) / 2, _y1); - cairo_curve_to (cr, _x0, _y1, _x0, _y1, _x0, (_y0 + _y1) / 2); - } else { - cairo_move_to (cr, _x0, _y0 + radius); - cairo_curve_to (cr, _x0, _y0, _x0, _y0, (_x0 + x1) / 2, _y0); - cairo_curve_to (cr, x1, _y0, x1, _y0, x1, _y0 + radius); - cairo_line_to (cr, x1, _y1 - radius); - cairo_curve_to (cr, x1, _y1, x1, _y1, (x1 + _x0) / 2, _y1); - cairo_curve_to (cr, _x0, _y1, _x0, _y1, _x0, _y1 - radius); - } - } else { - if (height / 2 < radius) { - cairo_move_to (cr, _x0, (_y0 + _y1) / 2); - cairo_curve_to (cr, _x0, _y0, _x0 , _y0, _x0 + radius, _y0); - cairo_line_to (cr, x1 - radius, _y0); - cairo_curve_to (cr, x1, _y0, x1, _y0, x1, (_y0 + _y1) / 2); - cairo_curve_to (cr, x1, _y1, x1, _y1, x1 - radius, _y1); - cairo_line_to (cr, _x0 + radius, _y1); - cairo_curve_to (cr, _x0, _y1, _x0, _y1, _x0, (_y0 + _y1) / 2); - } else { - cairo_move_to (cr, _x0, _y0 + radius); - cairo_curve_to (cr, _x0 , _y0, _x0 , _y0, _x0 + radius, _y0); - cairo_line_to (cr, x1 - radius, _y0); - cairo_curve_to (cr, x1, _y0, x1, _y0, x1, _y0 + radius); - cairo_line_to (cr, x1, _y1 - radius); - cairo_curve_to (cr, x1, _y1, x1, _y1, x1 - radius, _y1); - cairo_line_to (cr, _x0 + radius, _y1); - cairo_curve_to (cr, _x0, _y1, _x0, _y1, _x0, _y1 - radius); - } - } - - cairo_close_path (cr); -} - -static int -gvc_level_bar_draw (GtkWidget *widget, - cairo_t *cr) -{ - GvcLevelBar *bar; - - g_return_val_if_fail (GVC_IS_LEVEL_BAR (widget), FALSE); - - bar = GVC_LEVEL_BAR (widget); - - cairo_save (cr); - - if (bar->orientation == GTK_ORIENTATION_VERTICAL) { - int i; - int by; - - for (i = 0; i < NUM_BOXES; i++) { - by = i * bar->layout.delta; - curved_rectangle (cr, - bar->layout.area.x + 0.5, - by + 0.5, - bar->layout.box_width - 1, - bar->layout.box_height - 1, - bar->layout.box_radius); - if ((bar->layout.max_peak_num - 1) == i) { - /* fill peak foreground */ - cairo_set_source_rgb (cr, bar->layout.fl_r, bar->layout.fl_g, bar->layout.fl_b); - cairo_fill_preserve (cr); - } else if ((bar->layout.peak_num - 1) >= i) { - /* fill background */ - cairo_set_source_rgb (cr, bar->layout.bg_r, bar->layout.bg_g, bar->layout.bg_b); - cairo_fill_preserve (cr); - /* fill foreground */ - cairo_set_source_rgba (cr, bar->layout.fl_r, bar->layout.fl_g, bar->layout.fl_b, 0.5); - cairo_fill_preserve (cr); - } else { - /* fill background */ - cairo_set_source_rgb (cr, bar->layout.bg_r, bar->layout.bg_g, bar->layout.bg_b); - cairo_fill_preserve (cr); - } - - /* stroke border */ - cairo_set_source_rgb (cr, bar->layout.bdr_r, bar->layout.bdr_g, bar->layout.bdr_b); - cairo_set_line_width (cr, 1); - cairo_stroke (cr); - } - - } else { - int i; - int bx; - - if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) { - cairo_scale (cr, -1, 1); - cairo_translate (cr, -gtk_widget_get_allocated_width (widget), 0); - } - - for (i = 0; i < NUM_BOXES; i++) { - bx = i * bar->layout.delta; - curved_rectangle (cr, - bx + 0.5, - bar->layout.area.y + 0.5, - bar->layout.box_width - 1, - bar->layout.box_height - 1, - bar->layout.box_radius); - - if ((bar->layout.max_peak_num - 1) == i) { - /* fill peak foreground */ - cairo_set_source_rgb (cr, bar->layout.fl_r, bar->layout.fl_g, bar->layout.fl_b); - cairo_fill_preserve (cr); - } else if ((bar->layout.peak_num - 1) >= i) { - /* fill background */ - cairo_set_source_rgb (cr, bar->layout.bg_r, bar->layout.bg_g, bar->layout.bg_b); - cairo_fill_preserve (cr); - /* fill foreground */ - cairo_set_source_rgba (cr, bar->layout.fl_r, bar->layout.fl_g, bar->layout.fl_b, 0.5); - cairo_fill_preserve (cr); - } else { - /* fill background */ - cairo_set_source_rgb (cr, bar->layout.bg_r, bar->layout.bg_g, bar->layout.bg_b); - cairo_fill_preserve (cr); - } - - /* stroke border */ - cairo_set_source_rgb (cr, bar->layout.bdr_r, bar->layout.bdr_g, bar->layout.bdr_b); - cairo_set_line_width (cr, 1); - cairo_stroke (cr); - } - } - - cairo_restore (cr); - - return FALSE; -} - -static void -gvc_level_bar_class_init (GvcLevelBarClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); - - object_class->constructor = gvc_level_bar_constructor; - object_class->finalize = gvc_level_bar_finalize; - object_class->set_property = gvc_level_bar_set_property; - object_class->get_property = gvc_level_bar_get_property; - - widget_class->draw = gvc_level_bar_draw; - widget_class->get_preferred_width = gvc_level_bar_get_preferred_width; - widget_class->get_preferred_height = gvc_level_bar_get_preferred_height; - widget_class->size_allocate = gvc_level_bar_size_allocate; - - g_object_class_install_property (object_class, - PROP_ORIENTATION, - g_param_spec_enum ("orientation", - "Orientation", - "The orientation of the bar", - GTK_TYPE_ORIENTATION, - GTK_ORIENTATION_HORIZONTAL, - G_PARAM_READWRITE)); - g_object_class_install_property (object_class, - PROP_PEAK_ADJUSTMENT, - g_param_spec_object ("peak-adjustment", - "Peak Adjustment", - "The GtkAdjustment that contains the current peak value", - GTK_TYPE_ADJUSTMENT, - G_PARAM_READWRITE)); - g_object_class_install_property (object_class, - PROP_RMS_ADJUSTMENT, - g_param_spec_object ("rms-adjustment", - "RMS Adjustment", - "The GtkAdjustment that contains the current rms value", - GTK_TYPE_ADJUSTMENT, - G_PARAM_READWRITE)); - g_object_class_install_property (object_class, - PROP_SCALE, - g_param_spec_int ("scale", - "Scale", - "Scale", - 0, - G_MAXINT, - GVC_LEVEL_SCALE_LINEAR, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); -} - -static void -gvc_level_bar_init (GvcLevelBar *bar) -{ - bar->peak_adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, - 0.0, - 1.0, - 0.05, - 0.1, - 0.1)); - g_object_ref_sink (bar->peak_adjustment); - g_signal_connect (bar->peak_adjustment, - "value-changed", - G_CALLBACK (on_peak_adjustment_value_changed), - bar); - - bar->rms_adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, - 0.0, - 1.0, - 0.05, - 0.1, - 0.1)); - g_object_ref_sink (bar->rms_adjustment); - g_signal_connect (bar->rms_adjustment, - "value-changed", - G_CALLBACK (on_rms_adjustment_value_changed), - bar); - - gtk_widget_set_has_window (GTK_WIDGET (bar), FALSE); -} - -static void -gvc_level_bar_finalize (GObject *object) -{ - GvcLevelBar *bar; - - g_return_if_fail (object != NULL); - g_return_if_fail (GVC_IS_LEVEL_BAR (object)); - - bar = GVC_LEVEL_BAR (object); - - if (bar->max_peak_id > 0) { - g_source_remove (bar->max_peak_id); - } - - G_OBJECT_CLASS (gvc_level_bar_parent_class)->finalize (object); -} - -GtkWidget * -gvc_level_bar_new (void) -{ - GObject *bar; - bar = g_object_new (GVC_TYPE_LEVEL_BAR, - NULL); - return GTK_WIDGET (bar); -} diff --git a/panels/sound/gvc-level-bar.h b/panels/sound/gvc-level-bar.h deleted file mode 100644 index 758b01118..000000000 --- a/panels/sound/gvc-level-bar.h +++ /dev/null @@ -1,55 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 William Jon McCann <william.jon.mccann@gmail.com> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_LEVEL_BAR_H -#define __GVC_LEVEL_BAR_H - -#include <glib-object.h> -#include <gtk/gtk.h> - -G_BEGIN_DECLS - -#define GVC_TYPE_LEVEL_BAR (gvc_level_bar_get_type ()) -G_DECLARE_FINAL_TYPE (GvcLevelBar, gvc_level_bar, GVC, LEVEL_BAR, GtkBox) - -typedef enum -{ - GVC_LEVEL_SCALE_LINEAR, - GVC_LEVEL_SCALE_LOG, - GVC_LEVEL_SCALE_LAST -} GvcLevelScale; - -GtkWidget * gvc_level_bar_new (void); -void gvc_level_bar_set_orientation (GvcLevelBar *bar, - GtkOrientation orientation); -GtkOrientation gvc_level_bar_get_orientation (GvcLevelBar *bar); - -void gvc_level_bar_set_peak_adjustment (GvcLevelBar *bar, - GtkAdjustment *adjustment); -GtkAdjustment * gvc_level_bar_get_peak_adjustment (GvcLevelBar *bar); -void gvc_level_bar_set_rms_adjustment (GvcLevelBar *bar, - GtkAdjustment *adjustment); -GtkAdjustment * gvc_level_bar_get_rms_adjustment (GvcLevelBar *bar); -void gvc_level_bar_set_scale (GvcLevelBar *bar, - GvcLevelScale scale); - - -G_END_DECLS - -#endif /* __GVC_LEVEL_BAR_H */ diff --git a/panels/sound/gvc-mixer-control-private.h b/panels/sound/gvc-mixer-control-private.h deleted file mode 100644 index ab7dd90b3..000000000 --- a/panels/sound/gvc-mixer-control-private.h +++ /dev/null @@ -1,34 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_MIXER_CONTROL_PRIVATE_H -#define __GVC_MIXER_CONTROL_PRIVATE_H - -#include <glib-object.h> -#include <pulse/pulseaudio.h> -#include "gvc-mixer-stream.h" -#include "gvc-mixer-card.h" - -G_BEGIN_DECLS - -pa_context * gvc_mixer_control_get_pa_context (GvcMixerControl *control); - -G_END_DECLS - -#endif /* __GVC_MIXER_CONTROL_PRIVATE_H */ diff --git a/panels/sound/gvc-mixer-dialog.c b/panels/sound/gvc-mixer-dialog.c deleted file mode 100644 index cc3ea9106..000000000 --- a/panels/sound/gvc-mixer-dialog.c +++ /dev/null @@ -1,2014 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 William Jon McCann - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#include "config.h" - -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> -#include <math.h> - -#include <glib.h> -#include <glib/gi18n-lib.h> -#include <gdk/gdkkeysyms.h> -#include <gtk/gtk.h> -#include <pulse/pulseaudio.h> - -#include "gvc-channel-bar.h" -#include "gvc-balance-bar.h" -#include "gvc-combo-box.h" -#include "gvc-mixer-control.h" -#include "gvc-mixer-card.h" -#include "gvc-mixer-sink.h" -#include "gvc-mixer-source.h" -#include "gvc-mixer-source-output.h" -#include "gvc-mixer-dialog.h" -#include "gvc-sound-theme-chooser.h" -#include "gvc-level-bar.h" -#include "gvc-speaker-test.h" -#include "gvc-mixer-control-private.h" - -#define KEY_SOUNDS_SCHEMA "org.gnome.desktop.sound" -#define SCALE_SIZE 128 - -struct _GvcMixerDialog -{ - GtkBox parent_instance; - - GvcMixerControl *mixer_control; - GHashTable *bars; /* Application and event bars only */ - GtkWidget *notebook; - GtkWidget *output_bar; - GtkWidget *input_bar; - GtkWidget *input_level_bar; - GtkWidget *effects_bar; - GtkWidget *output_stream_box; - GtkWidget *sound_effects_box; - GtkWidget *input_box; - GtkWidget *output_box; - GtkWidget *applications_box; - GtkWidget *no_apps_label; - GtkWidget *output_treeview; - GtkWidget *output_settings_box; - GtkWidget *output_balance_bar; - GtkWidget *output_fade_bar; - GtkWidget *output_lfe_bar; - GtkWidget *output_profile_combo; - GtkWidget *input_treeview; - GtkWidget *input_profile_combo; - GtkWidget *input_settings_box; - GtkWidget *sound_theme_chooser; - GtkWidget *click_feedback_button; - GtkWidget *audible_bell_button; - GtkWidget *test_dialog; - GtkSizeGroup *size_group; - - GSettings *settings; - gboolean allow_volume_above_100_percent; - gdouble last_input_peak; - guint num_apps; -}; - -enum { - NAME_COLUMN, - DEVICE_COLUMN, - ACTIVE_COLUMN, - ID_COLUMN, - ICON_COLUMN, - NUM_COLUMNS -}; - -enum -{ - PROP_0, - PROP_MIXER_CONTROL -}; - -static void gvc_mixer_dialog_class_init (GvcMixerDialogClass *klass); -static void gvc_mixer_dialog_init (GvcMixerDialog *mixer_dialog); -static void gvc_mixer_dialog_finalize (GObject *object); - -static void bar_set_stream (GvcMixerDialog *dialog, - GtkWidget *bar, - GvcMixerStream *stream); - -static void on_adjustment_value_changed (GtkAdjustment *adjustment, - GvcMixerDialog *dialog); -static void on_control_active_output_update (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog); - -static void on_control_active_input_update (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog); - -static void on_test_speakers_clicked (GvcComboBox *widget, - gpointer user_data); - - -G_DEFINE_TYPE (GvcMixerDialog, gvc_mixer_dialog, GTK_TYPE_BOX) - -static void -profile_selection_changed (GvcComboBox *combo_box, - const char *profile, - GvcMixerDialog *dialog) -{ - GvcMixerUIDevice *output; - - g_debug ("profile_selection_changed() to %s", profile); - - output = g_object_get_data (G_OBJECT (combo_box), "uidevice"); - - if (output == NULL) { - g_warning ("Could not find Output for profile combo box"); - return; - } - - g_debug ("on profile selection changed on output '%s' (origin: %s, id: %i)", - gvc_mixer_ui_device_get_description (output), - gvc_mixer_ui_device_get_origin (output), - gvc_mixer_ui_device_get_id (output)); - - if (gvc_mixer_control_change_profile_on_selected_device (dialog->mixer_control, output, profile) == FALSE) { - g_warning ("Could not change profile on device %s", - gvc_mixer_ui_device_get_description (output)); - } -} - -static void -update_output_settings (GvcMixerDialog *dialog, - GvcMixerUIDevice *device) -{ - GvcMixerStream *stream; - const GvcChannelMap *map; - const GList *profiles; - GtkAdjustment *adj; - - g_debug ("Updating output settings"); - if (dialog->output_balance_bar != NULL) { - gtk_container_remove (GTK_CONTAINER (dialog->output_settings_box), - dialog->output_balance_bar); - dialog->output_balance_bar = NULL; - } - if (dialog->output_fade_bar != NULL) { - gtk_container_remove (GTK_CONTAINER (dialog->output_settings_box), - dialog->output_fade_bar); - dialog->output_fade_bar = NULL; - } - if (dialog->output_lfe_bar != NULL) { - gtk_container_remove (GTK_CONTAINER (dialog->output_settings_box), - dialog->output_lfe_bar); - dialog->output_lfe_bar = NULL; - } - if (dialog->output_profile_combo != NULL) { - gtk_container_remove (GTK_CONTAINER (dialog->output_settings_box), - dialog->output_profile_combo); - dialog->output_profile_combo = NULL; - } - - stream = gvc_mixer_control_get_stream_from_device (dialog->mixer_control, - device); - if (stream == NULL) { - g_warning ("Default sink stream not found"); - return; - } - - gvc_channel_bar_set_base_volume (GVC_CHANNEL_BAR (dialog->output_bar), - gvc_mixer_stream_get_base_volume (stream)); - gvc_channel_bar_set_is_amplified (GVC_CHANNEL_BAR (dialog->output_bar), - dialog->allow_volume_above_100_percent && - gvc_mixer_stream_get_can_decibel (stream)); - - /* Update the adjustment in case the previous bar wasn't decibel - * capable, and we clipped it */ - adj = GTK_ADJUSTMENT (gvc_channel_bar_get_adjustment (GVC_CHANNEL_BAR (dialog->output_bar))); - gtk_adjustment_set_value (adj, - gvc_mixer_stream_get_volume (stream)); - - map = gvc_mixer_stream_get_channel_map (stream); - if (map == NULL) { - g_warning ("Default sink stream has no channel map"); - return; - } - - dialog->output_balance_bar = gvc_balance_bar_new (map, BALANCE_TYPE_RL); - if (dialog->size_group != NULL) { - gvc_balance_bar_set_size_group (GVC_BALANCE_BAR (dialog->output_balance_bar), - dialog->size_group, - TRUE); - } - gtk_box_pack_start (GTK_BOX (dialog->output_settings_box), - dialog->output_balance_bar, - FALSE, FALSE, 6); - gtk_widget_show (dialog->output_balance_bar); - - if (gvc_channel_map_can_fade (map)) { - dialog->output_fade_bar = gvc_balance_bar_new (map, BALANCE_TYPE_FR); - if (dialog->size_group != NULL) { - gvc_balance_bar_set_size_group (GVC_BALANCE_BAR (dialog->output_fade_bar), - dialog->size_group, - TRUE); - } - gtk_box_pack_start (GTK_BOX (dialog->output_settings_box), - dialog->output_fade_bar, - FALSE, FALSE, 6); - gtk_widget_show (dialog->output_fade_bar); - } - - if (gvc_channel_map_has_lfe (map)) { - dialog->output_lfe_bar = gvc_balance_bar_new (map, BALANCE_TYPE_LFE); - if (dialog->size_group != NULL) { - gvc_balance_bar_set_size_group (GVC_BALANCE_BAR (dialog->output_lfe_bar), - dialog->size_group, - TRUE); - } - gtk_box_pack_start (GTK_BOX (dialog->output_settings_box), - dialog->output_lfe_bar, - FALSE, FALSE, 6); - gtk_widget_show (dialog->output_lfe_bar); - } - - profiles = gvc_mixer_ui_device_get_profiles (device); - /* FIXME: How do we make sure the "Test speakers" button is shown - * even when there are no profiles to choose between? */ - if (TRUE /*g_list_length((GList *) profiles) >= 2 */) { - const gchar *active_profile; - - dialog->output_profile_combo = gvc_combo_box_new (_("_Profile:")); - - g_object_set (G_OBJECT (dialog->output_profile_combo), "button-label", _("_Test Speakers"), NULL); - g_object_set (G_OBJECT (dialog->output_profile_combo), - "show-button", TRUE, NULL); - g_signal_connect (G_OBJECT (dialog->output_profile_combo), "button-clicked", - G_CALLBACK (on_test_speakers_clicked), dialog); - - if (profiles) - gvc_combo_box_set_profiles (GVC_COMBO_BOX (dialog->output_profile_combo), - profiles); - gtk_box_pack_start (GTK_BOX (dialog->output_settings_box), - dialog->output_profile_combo, - TRUE, FALSE, 6); - - if (dialog->size_group != NULL) { - gvc_combo_box_set_size_group (GVC_COMBO_BOX (dialog->output_profile_combo), - dialog->size_group, FALSE); - } - - active_profile = gvc_mixer_ui_device_get_active_profile (device); - if (active_profile) - gvc_combo_box_set_active (GVC_COMBO_BOX (dialog->output_profile_combo), active_profile); - - g_object_set_data (G_OBJECT (dialog->output_profile_combo), - "uidevice", - device); - if (g_list_length((GList *) profiles)) - g_signal_connect (G_OBJECT (dialog->output_profile_combo), "changed", - G_CALLBACK (profile_selection_changed), dialog); - - gtk_widget_show (dialog->output_profile_combo); - } - - /* FIXME: We could make this into a "No settings" label instead */ - gtk_widget_set_sensitive (dialog->output_balance_bar, gvc_channel_map_can_balance (map)); -} - -#define DECAY_STEP .15 - -static void -update_input_peak (GvcMixerDialog *dialog, - gdouble v) -{ - GtkAdjustment *adj; - - if (dialog->last_input_peak >= DECAY_STEP) { - if (v < dialog->last_input_peak - DECAY_STEP) { - v = dialog->last_input_peak - DECAY_STEP; - } - } - - dialog->last_input_peak = v; - - adj = gvc_level_bar_get_peak_adjustment (GVC_LEVEL_BAR (dialog->input_level_bar)); - if (v >= 0) { - gtk_adjustment_set_value (adj, v); - } else { - gtk_adjustment_set_value (adj, 0.0); - } -} - -static void -update_input_meter (GvcMixerDialog *dialog, - uint32_t source_index, - uint32_t sink_input_idx, - double v) -{ - update_input_peak (dialog, v); -} - -static void -on_monitor_suspended_callback (pa_stream *s, - void *userdata) -{ - GvcMixerDialog *dialog; - - dialog = userdata; - - if (pa_stream_is_suspended (s)) { - g_debug ("Stream suspended"); - update_input_meter (dialog, - pa_stream_get_device_index (s), - PA_INVALID_INDEX, - -1); - } -} - -static void -on_monitor_read_callback (pa_stream *s, - size_t length, - void *userdata) -{ - GvcMixerDialog *dialog; - const void *data; - double v; - - dialog = userdata; - - if (pa_stream_peek (s, &data, &length) < 0) { - g_warning ("Failed to read data from stream"); - return; - } - - if (!data) { - pa_stream_drop (s); - return; - } - - assert (length > 0); - assert (length % sizeof (float) == 0); - - v = ((const float *) data)[length / sizeof (float) -1]; - - pa_stream_drop (s); - - if (v < 0) { - v = 0; - } - if (v > 1) { - v = 1; - } - - update_input_meter (dialog, - pa_stream_get_device_index (s), - pa_stream_get_monitor_stream (s), - v); -} - -static void -create_monitor_stream_for_source (GvcMixerDialog *dialog, - GvcMixerStream *stream) -{ - pa_stream *s; - char t[16]; - pa_buffer_attr attr; - pa_sample_spec ss; - pa_context *context; - int res; - pa_proplist *proplist; - gboolean has_monitor; - - if (stream == NULL) { - return; - } - has_monitor = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (stream), "has-monitor")); - if (has_monitor != FALSE) { - return; - } - - g_debug ("Create monitor for %u", - gvc_mixer_stream_get_index (stream)); - - context = gvc_mixer_control_get_pa_context (dialog->mixer_control); - - if (pa_context_get_server_protocol_version (context) < 13) { - return; - } - - ss.channels = 1; - ss.format = PA_SAMPLE_FLOAT32; - ss.rate = 25; - - memset (&attr, 0, sizeof (attr)); - attr.fragsize = sizeof (float); - attr.maxlength = (uint32_t) -1; - - snprintf (t, sizeof (t), "%u", gvc_mixer_stream_get_index (stream)); - - proplist = pa_proplist_new (); - pa_proplist_sets (proplist, PA_PROP_APPLICATION_ID, "org.gnome.VolumeControl"); - s = pa_stream_new_with_proplist (context, _("Peak detect"), &ss, NULL, proplist); - pa_proplist_free (proplist); - if (s == NULL) { - g_warning ("Failed to create monitoring stream"); - return; - } - - pa_stream_set_read_callback (s, on_monitor_read_callback, dialog); - pa_stream_set_suspended_callback (s, on_monitor_suspended_callback, dialog); - - res = pa_stream_connect_record (s, - t, - &attr, - (pa_stream_flags_t) (PA_STREAM_DONT_MOVE - |PA_STREAM_PEAK_DETECT - |PA_STREAM_ADJUST_LATENCY)); - if (res < 0) { - g_warning ("Failed to connect monitoring stream"); - pa_stream_unref (s); - } else { - g_object_set_data (G_OBJECT (stream), "has-monitor", GINT_TO_POINTER (TRUE)); - g_object_set_data (G_OBJECT (dialog->input_level_bar), "pa_stream", s); - g_object_set_data (G_OBJECT (dialog->input_level_bar), "stream", stream); - } -} - -static void -stop_monitor_stream_for_source (GvcMixerDialog *dialog) -{ - pa_stream *s; - pa_context *context; - int res; - GvcMixerStream *stream; - - s = g_object_get_data (G_OBJECT (dialog->input_level_bar), "pa_stream"); - if (s == NULL) - return; - stream = g_object_get_data (G_OBJECT (dialog->input_level_bar), "stream"); - g_assert (stream != NULL); - - g_debug ("Stopping monitor for %u", pa_stream_get_index (s)); - - context = gvc_mixer_control_get_pa_context (dialog->mixer_control); - - if (pa_context_get_server_protocol_version (context) < 13) { - return; - } - - res = pa_stream_disconnect (s); - if (res == 0) - g_object_set_data (G_OBJECT (stream), "has-monitor", GINT_TO_POINTER (FALSE)); - g_object_set_data (G_OBJECT (dialog->input_level_bar), "pa_stream", NULL); - g_object_set_data (G_OBJECT (dialog->input_level_bar), "stream", NULL); -} - -static void -update_input_settings (GvcMixerDialog *dialog, - GvcMixerUIDevice *device) -{ - GvcMixerStream *stream; - const GList *profiles; - GtkAdjustment *adj; - - g_debug ("Updating input settings"); - - stop_monitor_stream_for_source (dialog); - - if (dialog->input_profile_combo != NULL) { - gtk_container_remove (GTK_CONTAINER (dialog->input_settings_box), - dialog->input_profile_combo); - dialog->input_profile_combo = NULL; - } - - stream = gvc_mixer_control_get_stream_from_device (dialog->mixer_control, - device); - if (stream == NULL) { - g_debug ("Default source stream not found"); - return; - } - - gvc_channel_bar_set_base_volume (GVC_CHANNEL_BAR (dialog->input_bar), - gvc_mixer_stream_get_base_volume (stream)); - gvc_channel_bar_set_is_amplified (GVC_CHANNEL_BAR (dialog->input_bar), - dialog->allow_volume_above_100_percent && - gvc_mixer_stream_get_can_decibel (stream)); - - /* Update the adjustment in case the previous bar wasn't decibel - * capable, and we clipped it */ - adj = GTK_ADJUSTMENT (gvc_channel_bar_get_adjustment (GVC_CHANNEL_BAR (dialog->input_bar))); - gtk_adjustment_set_value (adj, - gvc_mixer_stream_get_volume (stream)); - - profiles = gvc_mixer_ui_device_get_profiles (device); - if (g_list_length ((GList *) profiles) >= 2) { - const gchar *active_profile; - - dialog->input_profile_combo = gvc_combo_box_new (_("_Profile:")); - gvc_combo_box_set_profiles (GVC_COMBO_BOX (dialog->input_profile_combo), - profiles); - - gtk_box_pack_start (GTK_BOX (dialog->input_settings_box), - dialog->input_profile_combo, - TRUE, TRUE, 0); - - if (dialog->size_group != NULL) { - gvc_combo_box_set_size_group (GVC_COMBO_BOX (dialog->input_profile_combo), - dialog->size_group, FALSE); - } - - active_profile = gvc_mixer_ui_device_get_active_profile (device); - if (active_profile) - gvc_combo_box_set_active (GVC_COMBO_BOX (dialog->input_profile_combo), active_profile); - - g_object_set_data (G_OBJECT (dialog->input_profile_combo), - "uidevice", - device); - g_signal_connect (G_OBJECT (dialog->input_profile_combo), "changed", - G_CALLBACK (profile_selection_changed), dialog); - - gtk_widget_show (dialog->input_profile_combo); - } - - create_monitor_stream_for_source (dialog, stream); -} - -static void -gvc_mixer_dialog_set_mixer_control (GvcMixerDialog *dialog, - GvcMixerControl *control) -{ - g_return_if_fail (GVC_MIXER_DIALOG (dialog)); - g_return_if_fail (GVC_IS_MIXER_CONTROL (control)); - - g_object_ref (control); - - if (dialog->mixer_control != NULL) { - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - G_CALLBACK (on_control_active_input_update), - dialog); - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - G_CALLBACK (on_control_active_output_update), - dialog); - g_object_unref (dialog->mixer_control); - } - - dialog->mixer_control = control; - - /* FIXME: Why are some mixer_control signals connected here, - * and others in the dialog constructor? (And similar for disconnect) */ - g_signal_connect (dialog->mixer_control, - "active-input-update", - G_CALLBACK (on_control_active_input_update), - dialog); - g_signal_connect (dialog->mixer_control, - "active-output-update", - G_CALLBACK (on_control_active_output_update), - dialog); - - g_object_notify (G_OBJECT (dialog), "mixer-control"); -} - -static GvcMixerControl * -gvc_mixer_dialog_get_mixer_control (GvcMixerDialog *dialog) -{ - g_return_val_if_fail (GVC_IS_MIXER_DIALOG (dialog), NULL); - - return dialog->mixer_control; -} - -static void -gvc_mixer_dialog_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec) -{ - GvcMixerDialog *self = GVC_MIXER_DIALOG (object); - - switch (prop_id) { - case PROP_MIXER_CONTROL: - gvc_mixer_dialog_set_mixer_control (self, g_value_get_object (value)); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gvc_mixer_dialog_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec) -{ - GvcMixerDialog *self = GVC_MIXER_DIALOG (object); - - switch (prop_id) { - case PROP_MIXER_CONTROL: - g_value_set_object (value, gvc_mixer_dialog_get_mixer_control (self)); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -on_adjustment_value_changed (GtkAdjustment *adjustment, - GvcMixerDialog *dialog) -{ - GvcMixerStream *stream; - - stream = g_object_get_data (G_OBJECT (adjustment), "gvc-mixer-dialog-stream"); - if (stream != NULL) { - GObject *bar; - gdouble volume, rounded; - g_autofree gchar *name = NULL; - - volume = gtk_adjustment_get_value (adjustment); - rounded = round (volume); - - bar = g_object_get_data (G_OBJECT (adjustment), "gvc-mixer-dialog-bar"); - g_object_get (bar, "name", &name, NULL); - g_debug ("Setting stream volume %lf (rounded: %lf) for bar '%s'", volume, rounded, name); - - /* FIXME would need to do that in the balance bar really... */ - /* Make sure we do not unmute muted streams, there's a button for that */ - if (volume == 0.0) - gvc_mixer_stream_set_is_muted (stream, TRUE); - /* Only push the volume if it's actually changed */ - if (gvc_mixer_stream_set_volume (stream, (pa_volume_t) rounded) != FALSE) - gvc_mixer_stream_push_volume (stream); - } -} - -static void -on_bar_is_muted_notify (GObject *object, - GParamSpec *pspec, - GvcMixerDialog *dialog) -{ - gboolean is_muted; - GvcMixerStream *stream; - - is_muted = gvc_channel_bar_get_is_muted (GVC_CHANNEL_BAR (object)); - - stream = g_object_get_data (object, "gvc-mixer-dialog-stream"); - if (stream != NULL) { - gvc_mixer_stream_change_is_muted (stream, is_muted); - } else { - g_autofree gchar *name = NULL; - g_object_get (object, "name", &name, NULL); - g_warning ("Unable to find stream for bar '%s'", name); - } -} - -static GtkWidget * -lookup_bar_for_stream (GvcMixerDialog *dialog, - GvcMixerStream *stream) -{ - GtkWidget *bar; - - bar = g_hash_table_lookup (dialog->bars, GUINT_TO_POINTER (gvc_mixer_stream_get_id (stream))); - if (bar) - return bar; - - if (g_object_get_data (G_OBJECT (dialog->output_bar), "gvc-mixer-dialog-stream") == stream) - return dialog->output_bar; - if (g_object_get_data (G_OBJECT (dialog->input_bar), "gvc-mixer-dialog-stream") == stream) - return dialog->input_bar; - - return NULL; -} - -static void -on_stream_volume_notify (GObject *object, - GParamSpec *pspec, - GvcMixerDialog *dialog) -{ - GvcMixerStream *stream; - GtkWidget *bar; - GtkAdjustment *adj; - - stream = GVC_MIXER_STREAM (object); - - bar = lookup_bar_for_stream (dialog, stream); - - if (bar == NULL) { - g_warning ("Unable to find bar for stream %s in on_stream_volume_notify()", - gvc_mixer_stream_get_name (stream)); - return; - } - - adj = GTK_ADJUSTMENT (gvc_channel_bar_get_adjustment (GVC_CHANNEL_BAR (bar))); - - g_signal_handlers_block_by_func (adj, - on_adjustment_value_changed, - dialog); - - gtk_adjustment_set_value (adj, - gvc_mixer_stream_get_volume (stream)); - - g_signal_handlers_unblock_by_func (adj, - on_adjustment_value_changed, - dialog); -} - -static void -on_stream_is_muted_notify (GObject *object, - GParamSpec *pspec, - GvcMixerDialog *dialog) -{ - GvcMixerStream *stream; - GtkWidget *bar; - gboolean is_muted; - - stream = GVC_MIXER_STREAM (object); - bar = lookup_bar_for_stream (dialog, stream); - - if (bar == NULL) { - g_warning ("Unable to find bar for stream %s in on_stream_is_muted_notify()", - gvc_mixer_stream_get_name (stream)); - return; - } - - is_muted = gvc_mixer_stream_get_is_muted (stream); - gvc_channel_bar_set_is_muted (GVC_CHANNEL_BAR (bar), - is_muted); - - if (stream == gvc_mixer_control_get_default_sink (dialog->mixer_control)) { - gtk_widget_set_sensitive (dialog->applications_box, - !is_muted); - } - -} - -static void -save_bar_for_stream (GvcMixerDialog *dialog, - GvcMixerStream *stream, - GtkWidget *bar) -{ - g_hash_table_insert (dialog->bars, - GUINT_TO_POINTER (gvc_mixer_stream_get_id (stream)), - bar); -} - -static GtkWidget * -create_bar (GvcMixerDialog *dialog, - gboolean add_to_size_group, - gboolean symmetric) -{ - GtkWidget *bar; - - bar = gvc_channel_bar_new (); - gtk_widget_set_sensitive (bar, FALSE); - if (add_to_size_group && dialog->size_group != NULL) { - gvc_channel_bar_set_size_group (GVC_CHANNEL_BAR (bar), - dialog->size_group, - symmetric); - } - gvc_channel_bar_set_show_mute (GVC_CHANNEL_BAR (bar), - TRUE); - g_signal_connect (bar, - "notify::is-muted", - G_CALLBACK (on_bar_is_muted_notify), - dialog); - return bar; -} - -static GtkWidget * -create_app_bar (GvcMixerDialog *dialog, - const char *name, - const char *icon_name) -{ - GtkWidget *bar; - - bar = create_bar (dialog, FALSE, FALSE); - gvc_channel_bar_set_ellipsize (GVC_CHANNEL_BAR (bar), TRUE); - gvc_channel_bar_set_icon_name (GVC_CHANNEL_BAR (bar), icon_name); - if (name == NULL || strchr (name, '_') == NULL) { - gvc_channel_bar_set_name (GVC_CHANNEL_BAR (bar), name); - } else { - g_auto(GStrv) tokens = NULL; - g_autofree gchar *escaped = NULL; - - tokens = g_strsplit (name, "_", -1); - escaped = g_strjoinv ("__", tokens); - gvc_channel_bar_set_name (GVC_CHANNEL_BAR (bar), escaped); - } - - return bar; -} - -/* active_input_update - * Handle input update change from the backend (control). - * Trust the backend whole-heartedly to deliver the correct input. */ -static void -active_input_update (GvcMixerDialog *dialog, - GvcMixerUIDevice *active_input) -{ - /* First make sure the correct UI device is selected. */ - GtkTreeModel *model; - GtkTreeIter iter; - GvcMixerStream *stream; - - g_debug ("active_input_update device id = %i", - gvc_mixer_ui_device_get_id (active_input)); - - model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->input_treeview)); - - if (gtk_tree_model_get_iter_first (model, &iter) == FALSE) { - g_warning ("No devices in the tree, so cannot set the active output"); - return; - } - - do { - gboolean is_selected = FALSE; - gint id; - - gtk_tree_model_get (model, &iter, - ID_COLUMN, &id, - -1); - - is_selected = id == gvc_mixer_ui_device_get_id (active_input); - - gtk_list_store_set (GTK_LIST_STORE (model), - &iter, - ACTIVE_COLUMN, is_selected, - -1); - - if (is_selected) { - GtkTreeSelection *selection; - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (dialog->input_treeview)); - gtk_tree_selection_select_iter (selection, &iter); - } - } while (gtk_tree_model_iter_next (model, &iter)); - - stream = gvc_mixer_control_get_stream_from_device (dialog->mixer_control, - active_input); - if (stream == NULL) { - g_warning ("Couldn't find a stream from the active input"); - gtk_widget_set_sensitive (dialog->input_bar, FALSE); - return; - } - - bar_set_stream (dialog, dialog->input_bar, stream); - update_input_settings (dialog, active_input); - -} - -/* active_output_update - * Handle output update change from the backend (control). - * Trust the backend whole heartedly to deliver the correct output. */ -static void -active_output_update (GvcMixerDialog *dialog, - GvcMixerUIDevice *active_output) -{ - /* First make sure the correct UI device is selected. */ - GvcMixerStream *stream; - GtkTreeModel *model; - GtkTreeIter iter; - - g_debug ("active output update device id = %i", - gvc_mixer_ui_device_get_id (active_output)); - - model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->output_treeview)); - - if (gtk_tree_model_get_iter_first (model, &iter) == FALSE){ - g_warning ("No devices in the tree, so cannot set the active output"); - return; - } - - do { - gboolean is_selected; - gint id; - - gtk_tree_model_get (model, &iter, - ID_COLUMN, &id, - ACTIVE_COLUMN, &is_selected, - -1); - - if (is_selected && id == gvc_mixer_ui_device_get_id (active_output)) { - /* XXX: profile change on the same device? */ - g_debug ("Unneccessary active output update"); - } - - is_selected = id == gvc_mixer_ui_device_get_id (active_output); - - gtk_list_store_set (GTK_LIST_STORE (model), - &iter, - ACTIVE_COLUMN, is_selected, - -1); - - if (is_selected) { - GtkTreeSelection *selection; - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (dialog->output_treeview)); - gtk_tree_selection_select_iter (selection, &iter); - } - } while (gtk_tree_model_iter_next (model, &iter)); - - stream = gvc_mixer_control_get_stream_from_device (dialog->mixer_control, - active_output); - if (stream == NULL) { - g_warning ("Couldn't find a stream from the active output"); - return; - } - - bar_set_stream (dialog, dialog->output_bar, stream); - update_output_settings (dialog, active_output); -} - -static void -bar_set_stream (GvcMixerDialog *dialog, - GtkWidget *bar, - GvcMixerStream *stream) -{ - GtkAdjustment *adj; - GvcMixerStream *old_stream; - - g_assert (bar != NULL); - - old_stream = g_object_get_data (G_OBJECT (bar), "gvc-mixer-dialog-stream"); - if (old_stream != NULL) { - g_autofree gchar *name = NULL; - - g_object_get (bar, "name", &name, NULL); - g_debug ("Disconnecting old stream '%s' from bar '%s'", - gvc_mixer_stream_get_name (old_stream), name); - - g_signal_handlers_disconnect_by_func (old_stream, on_stream_is_muted_notify, dialog); - g_signal_handlers_disconnect_by_func (old_stream, on_stream_volume_notify, dialog); - g_hash_table_remove (dialog->bars, GUINT_TO_POINTER (gvc_mixer_stream_get_id (old_stream))); - } - - gtk_widget_set_sensitive (bar, (stream != NULL)); - - adj = GTK_ADJUSTMENT (gvc_channel_bar_get_adjustment (GVC_CHANNEL_BAR (bar))); - - g_signal_handlers_disconnect_by_func (adj, on_adjustment_value_changed, dialog); - - g_object_set_data (G_OBJECT (bar), "gvc-mixer-dialog-stream", stream); - g_object_set_data (G_OBJECT (bar), "gvc-mixer-dialog-stream-id", - GUINT_TO_POINTER (gvc_mixer_stream_get_id (stream))); - g_object_set_data (G_OBJECT (adj), "gvc-mixer-dialog-stream", stream); - g_object_set_data (G_OBJECT (adj), "gvc-mixer-dialog-bar", bar); - - if (stream != NULL) { - gboolean is_muted; - - is_muted = gvc_mixer_stream_get_is_muted (stream); - gvc_channel_bar_set_is_muted (GVC_CHANNEL_BAR (bar), is_muted); - - gtk_adjustment_set_value (adj, - gvc_mixer_stream_get_volume (stream)); - - g_signal_connect (stream, - "notify::is-muted", - G_CALLBACK (on_stream_is_muted_notify), - dialog); - g_signal_connect (stream, - "notify::volume", - G_CALLBACK (on_stream_volume_notify), - dialog); - g_signal_connect (adj, - "value-changed", - G_CALLBACK (on_adjustment_value_changed), - dialog); - } -} - -static void -add_stream (GvcMixerDialog *dialog, - GvcMixerStream *stream) -{ - GtkWidget *bar; - GvcMixerStream *old_stream; - - bar = NULL; - - if (GVC_IS_MIXER_SOURCE (stream) || GVC_IS_MIXER_SINK (stream)) - return; - else if (stream == gvc_mixer_control_get_event_sink_input (dialog->mixer_control)) { - bar = dialog->effects_bar; - g_debug ("Adding effects stream"); - } else { - /* Must be an application stream */ - const char *name; - name = gvc_mixer_stream_get_name (stream); - g_debug ("Add bar for application stream : %s", name); - - bar = create_app_bar (dialog, name, - gvc_mixer_stream_get_icon_name (stream)); - gtk_box_pack_start (GTK_BOX (dialog->applications_box), bar, FALSE, FALSE, 12); - dialog->num_apps++; - gtk_widget_hide (dialog->no_apps_label); - } - - /* We should have a bar by now. */ - g_assert (bar != NULL); - - if (bar != NULL) { - old_stream = g_object_get_data (G_OBJECT (bar), "gvc-mixer-dialog-stream"); - if (old_stream != NULL) { - g_autofree gchar *name = NULL; - - g_object_get (bar, "name", &name, NULL); - g_debug ("Disconnecting old stream '%s' from bar '%s'", - gvc_mixer_stream_get_name (old_stream), name); - - g_signal_handlers_disconnect_by_func (old_stream, on_stream_is_muted_notify, dialog); - g_signal_handlers_disconnect_by_func (old_stream, on_stream_volume_notify, dialog); - g_hash_table_remove (dialog->bars, GUINT_TO_POINTER (gvc_mixer_stream_get_id (old_stream))); - } - save_bar_for_stream (dialog, stream, bar); - bar_set_stream (dialog, bar, stream); - gtk_widget_show (bar); - } -} - -static void -on_control_stream_added (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog) -{ - GvcMixerStream *stream; - const char *app_id; - - stream = gvc_mixer_control_lookup_stream_id (control, id); - if (stream == NULL) - return; - - app_id = gvc_mixer_stream_get_application_id (stream); - - if (stream == gvc_mixer_control_get_event_sink_input (dialog->mixer_control) || - (GVC_IS_MIXER_SOURCE (stream) == FALSE && - GVC_IS_MIXER_SINK (stream) == FALSE && - gvc_mixer_stream_is_virtual (stream) == FALSE && - gvc_mixer_stream_is_event_stream (stream) == FALSE && - g_strcmp0 (app_id, "org.gnome.VolumeControl") != 0 && - g_strcmp0 (app_id, "org.PulseAudio.pavucontrol") != 0)) { - GtkWidget *bar; - - bar = g_hash_table_lookup (dialog->bars, GUINT_TO_POINTER (id)); - if (bar != NULL) { - g_debug ("GvcMixerDialog: Stream %u already added", id); - return; - } - add_stream (dialog, stream); - } -} - -static gboolean -find_item_by_id (GtkTreeModel *model, - guint id, - guint column, - GtkTreeIter *iter) -{ - gboolean found_item; - - found_item = FALSE; - - if (!gtk_tree_model_get_iter_first (model, iter)) { - return FALSE; - } - - do { - guint t_id; - - gtk_tree_model_get (model, iter, - column, &t_id, -1); - - if (id == t_id) { - found_item = TRUE; - } - } while (!found_item && gtk_tree_model_iter_next (model, iter)); - - return found_item; -} - -static void -add_input_ui_entry (GvcMixerDialog *dialog, - GvcMixerUIDevice *input) -{ - g_autofree gchar *final_name = NULL; - g_autofree gchar *port_name = NULL; - g_autofree gchar *origin = NULL; - g_autofree gchar *description = NULL; - gboolean available; - gint stream_id; - GtkTreeModel *model; - GtkTreeIter iter; - g_autoptr(GIcon) icon = NULL; - - g_debug ("Add input ui entry with id :%u", - gvc_mixer_ui_device_get_id (input)); - - g_object_get (G_OBJECT (input), - "stream-id", &stream_id, - "origin", &origin, - "description", &description, - "port-name", &port_name, - "port-available", &available, - NULL); - - if (origin && origin[0] != '\0') - final_name = g_strdup_printf ("%s - %s", description, origin); - else - final_name = g_strdup (description); - - icon = gvc_mixer_ui_device_get_gicon (input); - - if (icon == NULL) { - GvcMixerStream *stream; - g_debug ("just detected a network source"); - stream = gvc_mixer_control_get_stream_from_device (dialog->mixer_control, input); - if (stream == NULL) { - g_warning ("tried to add the network source but the stream was null - fail ?!"); - return; - } - icon = gvc_mixer_stream_get_gicon (stream); - } - - model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->input_treeview)); - gtk_list_store_append (GTK_LIST_STORE (model), &iter); - - gtk_list_store_set (GTK_LIST_STORE (model), - &iter, - NAME_COLUMN, final_name, - DEVICE_COLUMN, "", - ACTIVE_COLUMN, FALSE, - ICON_COLUMN, icon, - ID_COLUMN, gvc_mixer_ui_device_get_id (input), - -1); -} - -static void -add_output_ui_entry (GvcMixerDialog *dialog, - GvcMixerUIDevice *output) -{ - g_autofree gchar *sink_port_name = NULL; - g_autofree gchar *origin = NULL; - g_autofree gchar *description = NULL; - g_autofree gchar *final_name = NULL; - gboolean available; - gint sink_stream_id; - GtkTreeModel *model; - GtkTreeIter iter; - g_autoptr(GIcon) icon = NULL; - - g_debug ("Add output ui entry with id :%u", - gvc_mixer_ui_device_get_id (output)); - - g_object_get (G_OBJECT (output), - "stream-id", &sink_stream_id, - "origin", &origin, - "description", &description, - "port-name", &sink_port_name, - "port-available", &available, - NULL); - - if (origin && origin[0] != '\0') - final_name = g_strdup_printf ("%s - %s", description, origin); - else - final_name = g_strdup (description); - - icon = gvc_mixer_ui_device_get_gicon (output); - - if (icon == NULL) { - GvcMixerStream *stream; - - g_debug ("just detected a network sink"); - stream = gvc_mixer_control_get_stream_from_device (dialog->mixer_control, output); - - if (stream == NULL) { - g_warning ("tried to add the network sink but the stream was null - fail ?!"); - return; - } - icon = gvc_mixer_stream_get_gicon (stream); - } - - model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->output_treeview)); - gtk_list_store_append (GTK_LIST_STORE (model), &iter); - - gtk_list_store_set (GTK_LIST_STORE (model), - &iter, - NAME_COLUMN, final_name, - DEVICE_COLUMN, "", - ACTIVE_COLUMN, FALSE, - ICON_COLUMN, icon, - ID_COLUMN, gvc_mixer_ui_device_get_id (output), - -1); -} - - -static void -on_control_active_input_update (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog) -{ - GvcMixerUIDevice* in = NULL; - in = gvc_mixer_control_lookup_input_id (control, id); - - if (in == NULL) { - g_warning ("on_control_active_input_update - tried to fetch an input of id %u but got nothing", id); - return; - } - active_input_update (dialog, in); -} - -static void -on_control_active_output_update (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog) -{ - GvcMixerUIDevice* out = NULL; - out = gvc_mixer_control_lookup_output_id (control, id); - - if (out == NULL) { - g_warning ("on_control_active_output_update - tried to fetch an output of id %u but got nothing", id); - return; - } - active_output_update (dialog, out); -} - -static void -on_control_input_added (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog) -{ - GvcMixerUIDevice* in = NULL; - in = gvc_mixer_control_lookup_input_id (control, id); - - if (in == NULL) { - g_warning ("on_control_input_added - tried to fetch an input of id %u but got nothing", id); - return; - } - add_input_ui_entry (dialog, in); -} - -static void -on_control_input_removed (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog) -{ - gboolean found; - GtkTreeIter iter; - GtkTreeModel *model; - gint stream_id; - GvcMixerUIDevice *in; - - in = gvc_mixer_control_lookup_input_id (control, id); - - g_object_get (G_OBJECT (in), - "stream-id", &stream_id, - NULL); - - g_debug ("Remove input from dialog, id: %u, stream id: %i", - id, - stream_id); - - /* remove from any models */ - model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->input_treeview)); - found = find_item_by_id (GTK_TREE_MODEL (model), id, ID_COLUMN, &iter); - if (found) { - gtk_list_store_remove (GTK_LIST_STORE (model), &iter); - } -} - -static void -on_control_output_added (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog) -{ - GvcMixerUIDevice* out = NULL; - out = gvc_mixer_control_lookup_output_id (control, id); - - if (out == NULL) { - g_warning ("on_control_output_added - tried to fetch an output of id %u but got nothing", id); - return; - } - - add_output_ui_entry (dialog, out); -} - -static void -on_control_output_removed (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog) -{ - gboolean found; - GtkTreeIter iter; - GtkTreeModel *model; - gint sink_stream_id; - - GvcMixerUIDevice* out = NULL; - out = gvc_mixer_control_lookup_output_id (control, id); - - g_object_get (G_OBJECT (out), - "stream-id", &sink_stream_id, - NULL); - - g_debug ("Remove output from dialog \n id : %u \n sink stream id : %i \n", - id, - sink_stream_id); - - /* remove from any models */ - model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->output_treeview)); - found = find_item_by_id (GTK_TREE_MODEL (model), id, ID_COLUMN, &iter); - if (found) { - gtk_list_store_remove (GTK_LIST_STORE (model), &iter); - } -} - -static void -remove_stream (GvcMixerDialog *dialog, - guint id) -{ - GtkWidget *bar; - guint output_id, input_id; - - bar = g_hash_table_lookup (dialog->bars, GUINT_TO_POINTER (id)); - if (bar != NULL) { - g_hash_table_remove (dialog->bars, GUINT_TO_POINTER (id)); - gtk_container_remove (GTK_CONTAINER (gtk_widget_get_parent (bar)), - bar); - dialog->num_apps--; - if (dialog->num_apps == 0) { - gtk_widget_show (dialog->no_apps_label); - } - return; - } - - output_id = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (dialog->output_bar), "gvc-mixer-dialog-stream-id")); - input_id = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (dialog->input_bar), "gvc-mixer-dialog-stream-id")); - - if (output_id == id) - bar = dialog->output_bar; - else if (input_id == id) - bar = dialog->input_bar; - else - return; - - g_object_set_data (G_OBJECT (bar), "gvc-mixer-dialog-stream-id", NULL); - g_object_set_data (G_OBJECT (bar), "gvc-mixer-dialog-stream", NULL); -} - -static void -on_control_stream_removed (GvcMixerControl *control, - guint id, - GvcMixerDialog *dialog) -{ - remove_stream (dialog, id); -} - -static void -_gtk_label_make_bold (GtkLabel *label) -{ - g_autofree gchar *str = NULL; - str = g_strdup_printf ("<span font-weight='bold'>%s</span>", - gtk_label_get_label (label)); - gtk_label_set_markup_with_mnemonic (label, str); -} - -static void -on_input_selection_changed (GtkTreeSelection *selection, - GvcMixerDialog *dialog) -{ - GtkTreeModel *model; - GtkTreeIter iter; - gboolean active; - guint id; - GvcMixerUIDevice *input; - - if (gtk_get_current_event_device () == NULL) - return; - - if (gtk_tree_selection_get_selected (selection, &model, &iter) == FALSE) { - g_debug ("Could not get default input from selection"); - return; - } - - gtk_tree_model_get (model, &iter, - ID_COLUMN, &id, - ACTIVE_COLUMN, &active, - -1); - - input = gvc_mixer_control_lookup_input_id (dialog->mixer_control, id); - - if (input == NULL) { - g_warning ("on_input_selection_changed - Unable to find input with id: %u", id); - return; - } - - gvc_mixer_control_change_input (dialog->mixer_control, input); -} - -static void -on_output_selection_changed (GtkTreeSelection *selection, - GvcMixerDialog *dialog) -{ - GtkTreeModel *model; - GtkTreeIter iter; - gboolean active; - guint id; - GvcMixerUIDevice *output; - - if (gtk_get_current_event_device () == NULL) - return; - - if (gtk_tree_selection_get_selected (selection, &model, &iter) == FALSE) { - g_debug ("Could not get default output from selection"); - return; - } - - gtk_tree_model_get (model, &iter, - ID_COLUMN, &id, - ACTIVE_COLUMN, &active, - -1); - - g_debug ("on_output_selection_changed() stream id: %u, active %i", id, active); - if (active) - return; - - output = gvc_mixer_control_lookup_output_id (dialog->mixer_control, id); - - if (output == NULL) { - g_warning ("Unable to find output with id: %u", id); - return; - } - - gvc_mixer_control_change_output (dialog->mixer_control, output); -} - -static GtkWidget * -create_ui_device_treeview (GvcMixerDialog *dialog, - GCallback on_selection_changed) -{ - GtkWidget *treeview; - GtkListStore *store; - GtkCellRenderer *renderer; - GtkTreeViewColumn *column; - GtkTreeSelection *selection; - - treeview = gtk_tree_view_new (); - gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (treeview), FALSE); - - store = gtk_list_store_new (NUM_COLUMNS, - G_TYPE_STRING, - G_TYPE_STRING, - G_TYPE_BOOLEAN, - G_TYPE_UINT, - G_TYPE_ICON); - gtk_tree_view_set_model (GTK_TREE_VIEW (treeview), - GTK_TREE_MODEL (store)); - - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview)); - gtk_tree_selection_set_mode (selection, GTK_SELECTION_BROWSE); - - column = gtk_tree_view_column_new (); - gtk_tree_view_column_set_title (column, _("Name")); - renderer = gtk_cell_renderer_pixbuf_new (); - gtk_tree_view_column_pack_start (column, renderer, FALSE); - g_object_set (G_OBJECT (renderer), "stock-size", GTK_ICON_SIZE_LARGE_TOOLBAR, NULL); - gtk_tree_view_column_set_attributes (column, renderer, - "gicon", ICON_COLUMN, - NULL); - - renderer = gtk_cell_renderer_text_new (); - gtk_tree_view_column_pack_start (column, renderer, TRUE); - gtk_tree_view_column_set_attributes (column, renderer, - "text", NAME_COLUMN, - NULL); - gtk_tree_view_append_column (GTK_TREE_VIEW (treeview), column); - - g_signal_connect (G_OBJECT (selection), "changed", - on_selection_changed, dialog); -#if 0 - renderer = gtk_cell_renderer_text_new (); - column = gtk_tree_view_column_new_with_attributes (_("Device"), - renderer, - "text", DEVICE_COLUMN, - NULL); - gtk_tree_view_append_column (GTK_TREE_VIEW (treeview), column); -#endif - return treeview; -} - -static void -on_test_speakers_clicked (GvcComboBox *widget, - gpointer user_data) -{ - GvcMixerDialog *dialog = GVC_MIXER_DIALOG (user_data); - GtkTreeModel *model; - GtkTreeIter iter; - gint stream_id; - gint active_output = GVC_MIXER_UI_DEVICE_INVALID; - GvcMixerUIDevice *output; - GvcMixerStream *stream; - GtkWidget *d, *speaker_test, *container; - g_autofree gchar *title = NULL; - - model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->output_treeview)); - - if (gtk_tree_model_get_iter_first (model, &iter) == FALSE) { - g_warning ("The tree is empty => we have no device to test speakers with return"); - return; - } - - do { - gboolean is_selected = FALSE; - gint id; - - gtk_tree_model_get (model, &iter, - ID_COLUMN, &id, - ACTIVE_COLUMN, &is_selected, - -1); - - if (is_selected) { - active_output = id; - break; - } - } while (gtk_tree_model_iter_next (model, &iter)); - - if (active_output == GVC_MIXER_UI_DEVICE_INVALID) { - g_warning ("Can't find the active output from the UI"); - return; - } - - output = gvc_mixer_control_lookup_output_id (dialog->mixer_control, (guint)active_output); - stream_id = gvc_mixer_ui_device_get_stream_id (output); - - if (stream_id == GVC_MIXER_UI_DEVICE_INVALID) - return; - - g_debug ("Test speakers on '%s'", gvc_mixer_ui_device_get_description (output)); - - stream = gvc_mixer_control_lookup_stream_id (dialog->mixer_control, stream_id); - if (stream == NULL) { - g_debug ("Stream/sink not found"); - return; - } - title = g_strdup_printf (_("Speaker Testing for %s"), gvc_mixer_ui_device_get_description (output)); - d = g_object_new (GTK_TYPE_DIALOG, "title", title, - "transient-for", GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (widget))), - "modal", TRUE, - "destroy-with-parent", TRUE, - "use-header-bar", TRUE, - "resizable", FALSE, - NULL); - - speaker_test = gvc_speaker_test_new (dialog->mixer_control, - stream); - gtk_widget_show (speaker_test); - container = gtk_dialog_get_content_area (GTK_DIALOG (d)); - gtk_container_add (GTK_CONTAINER (container), speaker_test); - - dialog->test_dialog = d; - g_object_add_weak_pointer (G_OBJECT (d), - (gpointer *) &dialog->test_dialog); - gtk_dialog_run (GTK_DIALOG (d)); - gtk_widget_destroy (d); -} - -static GObject * -gvc_mixer_dialog_constructor (GType type, - guint n_construct_properties, - GObjectConstructParam *construct_params) -{ - GObject *object; - GvcMixerDialog *self; - GtkWidget *main_vbox; - GtkWidget *label; - GtkWidget *sw; - GtkWidget *box; - GtkWidget *sbox; - GtkWidget *ebox; - GSList *streams; - GSList *l; - GvcMixerStream *stream; - - object = G_OBJECT_CLASS (gvc_mixer_dialog_parent_class)->constructor (type, n_construct_properties, construct_params); - - self = GVC_MIXER_DIALOG (object); - - main_vbox = GTK_WIDGET (self); - gtk_widget_show (main_vbox); - gtk_box_set_spacing (GTK_BOX (main_vbox), 2); - - gtk_container_set_border_width (GTK_CONTAINER (self), 12); - - self->output_stream_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); - gtk_widget_show (self->output_stream_box); - gtk_widget_set_margin_top (self->output_stream_box, 12); - gtk_box_pack_start (GTK_BOX (main_vbox), - self->output_stream_box, - FALSE, FALSE, 0); - self->output_bar = create_bar (self, TRUE, TRUE); - gtk_widget_show (self->output_bar); - gvc_channel_bar_set_name (GVC_CHANNEL_BAR (self->output_bar), - _("_Output volume:")); - gtk_widget_set_sensitive (self->output_bar, FALSE); - gtk_box_pack_start (GTK_BOX (self->output_stream_box), - self->output_bar, TRUE, TRUE, 12); - - self->notebook = gtk_notebook_new (); - gtk_widget_show (self->notebook); - gtk_box_pack_start (GTK_BOX (main_vbox), - self->notebook, - TRUE, TRUE, 0); - gtk_container_set_border_width (GTK_CONTAINER (self->notebook), 5); - - /* Output page */ - self->output_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - gtk_widget_show (self->output_box); - gtk_container_set_border_width (GTK_CONTAINER (self->output_box), 12); - label = gtk_label_new (_("Output")); - gtk_widget_show (label); - gtk_notebook_append_page (GTK_NOTEBOOK (self->notebook), - self->output_box, - label); - - box = gtk_frame_new (_("C_hoose a device for sound output:")); - gtk_widget_show (box); - label = gtk_frame_get_label_widget (GTK_FRAME (box)); - _gtk_label_make_bold (GTK_LABEL (label)); - gtk_label_set_use_underline (GTK_LABEL (label), TRUE); - gtk_frame_set_shadow_type (GTK_FRAME (box), GTK_SHADOW_NONE); - gtk_box_pack_start (GTK_BOX (self->output_box), box, TRUE, TRUE, 0); - - self->output_treeview = create_ui_device_treeview (self, - G_CALLBACK (on_output_selection_changed)); - gtk_widget_show (self->output_treeview); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), self->output_treeview); - - sw = gtk_scrolled_window_new (NULL, NULL); - gtk_widget_show (sw); - gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), - GTK_POLICY_NEVER, - GTK_POLICY_AUTOMATIC); - gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw), - GTK_SHADOW_IN); - gtk_container_add (GTK_CONTAINER (sw), self->output_treeview); - gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (sw), 150); - gtk_widget_set_margin_top (sw, 6); - gtk_container_add (GTK_CONTAINER (box), sw); - - box = gtk_frame_new (_("Settings for the selected device:")); - gtk_widget_show (box); - label = gtk_frame_get_label_widget (GTK_FRAME (box)); - _gtk_label_make_bold (GTK_LABEL (label)); - gtk_frame_set_shadow_type (GTK_FRAME (box), GTK_SHADOW_NONE); - gtk_box_pack_start (GTK_BOX (self->output_box), box, FALSE, FALSE, 12); - self->output_settings_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); - gtk_widget_show (self->output_settings_box); - gtk_container_add (GTK_CONTAINER (box), self->output_settings_box); - - /* Input page */ - self->input_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - gtk_widget_show (self->input_box); - gtk_container_set_border_width (GTK_CONTAINER (self->input_box), 12); - label = gtk_label_new (_("Input")); - gtk_widget_show (label); - gtk_notebook_append_page (GTK_NOTEBOOK (self->notebook), - self->input_box, - label); - - self->input_bar = create_bar (self, TRUE, TRUE); - gtk_widget_show (self->input_bar); - gvc_channel_bar_set_name (GVC_CHANNEL_BAR (self->input_bar), - _("_Input volume:")); - gvc_channel_bar_set_low_icon_name (GVC_CHANNEL_BAR (self->input_bar), - "audio-input-microphone-low-symbolic"); - gvc_channel_bar_set_high_icon_name (GVC_CHANNEL_BAR (self->input_bar), - "audio-input-microphone-high-symbolic"); - gtk_widget_set_sensitive (self->input_bar, FALSE); - gtk_widget_set_margin_top (self->input_bar, 6); - gtk_box_pack_start (GTK_BOX (self->input_box), - self->input_bar, - FALSE, FALSE, 0); - - box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (box); - gtk_box_pack_start (GTK_BOX (self->input_box), - box, - FALSE, FALSE, 6); - - sbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (sbox); - gtk_box_pack_start (GTK_BOX (box), - sbox, - FALSE, FALSE, 0); - - label = gtk_label_new (_("Input level:")); - gtk_widget_show (label); - gtk_box_pack_start (GTK_BOX (sbox), - label, - FALSE, FALSE, 0); - if (self->size_group != NULL) - gtk_size_group_add_widget (self->size_group, sbox); - - self->input_level_bar = gvc_level_bar_new (); - gtk_widget_show (self->input_level_bar); - gvc_level_bar_set_scale (GVC_LEVEL_BAR (self->input_level_bar), - GVC_LEVEL_SCALE_LINEAR); - gtk_box_pack_start (GTK_BOX (box), - self->input_level_bar, - TRUE, TRUE, 6); - - ebox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (ebox); - gtk_box_pack_start (GTK_BOX (box), - ebox, - FALSE, FALSE, 0); - if (self->size_group != NULL) - gtk_size_group_add_widget (self->size_group, ebox); - - self->input_settings_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_show (self->input_settings_box); - gtk_box_pack_start (GTK_BOX (self->input_box), - self->input_settings_box, - FALSE, FALSE, 0); - - box = gtk_frame_new (_("C_hoose a device for sound input:")); - gtk_widget_show (box); - label = gtk_frame_get_label_widget (GTK_FRAME (box)); - _gtk_label_make_bold (GTK_LABEL (label)); - gtk_label_set_use_underline (GTK_LABEL (label), TRUE); - gtk_frame_set_shadow_type (GTK_FRAME (box), GTK_SHADOW_NONE); - gtk_box_pack_start (GTK_BOX (self->input_box), box, TRUE, TRUE, 0); - - self->input_treeview = create_ui_device_treeview (self, - G_CALLBACK (on_input_selection_changed)); - gtk_widget_show (self->input_treeview); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), self->input_treeview); - - sw = gtk_scrolled_window_new (NULL, NULL); - gtk_widget_show (sw); - gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), - GTK_POLICY_NEVER, - GTK_POLICY_AUTOMATIC); - gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw), - GTK_SHADOW_IN); - gtk_container_add (GTK_CONTAINER (sw), self->input_treeview); - gtk_widget_set_margin_top (sw, 6); - gtk_container_add (GTK_CONTAINER (box), sw); - - /* Effects page */ - self->sound_effects_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_widget_show (self->sound_effects_box); - gtk_container_set_border_width (GTK_CONTAINER (self->sound_effects_box), 12); - label = gtk_label_new (_("Sound Effects")); - gtk_widget_show (label); - gtk_notebook_append_page (GTK_NOTEBOOK (self->notebook), - self->sound_effects_box, - label); - - self->effects_bar = create_bar (self, TRUE, TRUE); - gtk_widget_show (self->effects_bar); - gvc_channel_bar_set_name (GVC_CHANNEL_BAR (self->effects_bar), - _("_Alert volume:")); - gtk_widget_set_sensitive (self->effects_bar, FALSE); - gtk_box_pack_start (GTK_BOX (self->sound_effects_box), - self->effects_bar, FALSE, FALSE, 0); - - self->sound_theme_chooser = gvc_sound_theme_chooser_new (); - gtk_widget_show (self->sound_theme_chooser); - gtk_box_pack_start (GTK_BOX (self->sound_effects_box), - self->sound_theme_chooser, - TRUE, TRUE, 6); - - /* Applications */ - self->applications_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - gtk_widget_show (self->applications_box); - gtk_container_set_border_width (GTK_CONTAINER (self->applications_box), 12); - gtk_widget_set_margin_end (self->applications_box, 10); - label = gtk_label_new (_("Applications")); - gtk_widget_show (label); - - box = gtk_scrolled_window_new (NULL, NULL); - gtk_widget_show (box); - gtk_container_add (GTK_CONTAINER (box), self->applications_box); - gtk_notebook_append_page (GTK_NOTEBOOK (self->notebook), - box, - label); - self->no_apps_label = gtk_label_new (_("No application is currently playing or recording audio.")); - gtk_widget_show (self->no_apps_label); - gtk_box_pack_start (GTK_BOX (self->applications_box), - self->no_apps_label, - TRUE, TRUE, 0); - - g_signal_connect (self->mixer_control, - "output-added", - G_CALLBACK (on_control_output_added), - self); - g_signal_connect (self->mixer_control, - "output-removed", - G_CALLBACK (on_control_output_removed), - self); - g_signal_connect (self->mixer_control, - "input-added", - G_CALLBACK (on_control_input_added), - self); - g_signal_connect (self->mixer_control, - "input-removed", - G_CALLBACK (on_control_input_removed), - self); - - g_signal_connect (self->mixer_control, - "stream-added", - G_CALLBACK (on_control_stream_added), - self); - g_signal_connect (self->mixer_control, - "stream-removed", - G_CALLBACK (on_control_stream_removed), - self); - - streams = gvc_mixer_control_get_streams (self->mixer_control); - for (l = streams; l != NULL; l = l->next) { - stream = l->data; - add_stream (self, stream); - } - g_slist_free (streams); - - return object; -} - -static void -gvc_mixer_dialog_dispose (GObject *object) -{ - GvcMixerDialog *dialog = GVC_MIXER_DIALOG (object); - - if (dialog->mixer_control != NULL) { - - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - on_control_output_added, - dialog); - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - on_control_output_removed, - dialog); - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - on_control_input_added, - dialog); - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - on_control_input_removed, - dialog); - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - on_control_active_input_update, - dialog); - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - on_control_active_output_update, - dialog); - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - on_control_stream_added, - dialog); - g_signal_handlers_disconnect_by_func (dialog->mixer_control, - on_control_stream_removed, - dialog); - - g_object_unref (dialog->mixer_control); - dialog->mixer_control = NULL; - } - - if (dialog->bars != NULL) { - g_hash_table_destroy (dialog->bars); - dialog->bars = NULL; - } - - if (dialog->test_dialog != NULL) { - gtk_dialog_response (GTK_DIALOG (dialog->test_dialog), - GTK_RESPONSE_OK); - } - - G_OBJECT_CLASS (gvc_mixer_dialog_parent_class)->dispose (object); -} - -static void -gvc_mixer_dialog_class_init (GvcMixerDialogClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - - object_class->constructor = gvc_mixer_dialog_constructor; - object_class->dispose = gvc_mixer_dialog_dispose; - object_class->finalize = gvc_mixer_dialog_finalize; - object_class->set_property = gvc_mixer_dialog_set_property; - object_class->get_property = gvc_mixer_dialog_get_property; - - g_object_class_install_property (object_class, - PROP_MIXER_CONTROL, - g_param_spec_object ("mixer-control", - "mixer control", - "mixer control", - GVC_TYPE_MIXER_CONTROL, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); -} - -static void -allow_volume_above_100_percent_cb (GObject *gobject, - GParamSpec *pspec, - gpointer user_data) -{ - GvcMixerDialog *dialog = user_data; - gboolean output_amplified, input_amplified; - - dialog->allow_volume_above_100_percent = g_settings_get_boolean (dialog->settings, - "allow-volume-above-100-percent"); - - if (dialog->allow_volume_above_100_percent) { - GvcMixerStream *stream; - - stream = g_object_get_data (G_OBJECT (dialog->output_bar), "gvc-mixer-dialog-stream"); - output_amplified = gvc_mixer_stream_get_can_decibel (stream); - - stream = g_object_get_data (G_OBJECT (dialog->input_bar), "gvc-mixer-dialog-stream"); - input_amplified = gvc_mixer_stream_get_can_decibel (stream); - } else { - output_amplified = input_amplified = FALSE; - } - - gvc_channel_bar_set_is_amplified (GVC_CHANNEL_BAR (dialog->output_bar), - output_amplified); - gvc_channel_bar_set_is_amplified (GVC_CHANNEL_BAR (dialog->input_bar), - input_amplified); -} - -static void -gvc_mixer_dialog_init (GvcMixerDialog *dialog) -{ - gtk_orientable_set_orientation (GTK_ORIENTABLE (dialog), - GTK_ORIENTATION_VERTICAL); - dialog->bars = g_hash_table_new (NULL, NULL); - dialog->size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); - - dialog->settings = g_settings_new (KEY_SOUNDS_SCHEMA); - g_signal_connect (dialog->settings, "changed::allow-volume-above-100-percent", - G_CALLBACK (allow_volume_above_100_percent_cb), dialog); - dialog->allow_volume_above_100_percent = g_settings_get_boolean (dialog->settings, - "allow-volume-above-100-percent"); -} - -static void -gvc_mixer_dialog_finalize (GObject *object) -{ - GvcMixerDialog *mixer_dialog; - - g_return_if_fail (object != NULL); - g_return_if_fail (GVC_IS_MIXER_DIALOG (object)); - - mixer_dialog = GVC_MIXER_DIALOG (object); - - g_return_if_fail (mixer_dialog != NULL); - g_clear_object (&mixer_dialog->settings); - G_OBJECT_CLASS (gvc_mixer_dialog_parent_class)->finalize (object); -} - -GvcMixerDialog * -gvc_mixer_dialog_new (GvcMixerControl *control) -{ - GObject *dialog; - dialog = g_object_new (GVC_TYPE_MIXER_DIALOG, - "mixer-control", control, - NULL); - return GVC_MIXER_DIALOG (dialog); -} - -enum { - PAGE_OUTPUT, - PAGE_INPUT, - PAGE_EVENTS, - PAGE_APPLICATIONS -}; - -gboolean -gvc_mixer_dialog_set_page (GvcMixerDialog *self, - const char *page) -{ - guint num; - - g_return_val_if_fail (self != NULL, FALSE); - - num = PAGE_OUTPUT; - - if (g_str_equal (page, "effects")) - num = PAGE_EVENTS; - else if (g_str_equal (page, "input")) - num = PAGE_INPUT; - else if (g_str_equal (page, "output")) - num = PAGE_OUTPUT; - else if (g_str_equal (page, "applications")) - num = PAGE_APPLICATIONS; - - gtk_notebook_set_current_page (GTK_NOTEBOOK (self->notebook), num); - - return TRUE; -} diff --git a/panels/sound/gvc-mixer-dialog.h b/panels/sound/gvc-mixer-dialog.h deleted file mode 100644 index 5d8b7541d..000000000 --- a/panels/sound/gvc-mixer-dialog.h +++ /dev/null @@ -1,36 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_MIXER_DIALOG_H -#define __GVC_MIXER_DIALOG_H - -#include <glib-object.h> -#include "gvc-mixer-control.h" - -G_BEGIN_DECLS - -#define GVC_TYPE_MIXER_DIALOG (gvc_mixer_dialog_get_type ()) -G_DECLARE_FINAL_TYPE (GvcMixerDialog, gvc_mixer_dialog, GVC, MIXER_DIALOG, GtkBox) - -GvcMixerDialog * gvc_mixer_dialog_new (GvcMixerControl *control); -gboolean gvc_mixer_dialog_set_page (GvcMixerDialog *dialog, const gchar* page); - -G_END_DECLS - -#endif /* __GVC_MIXER_DIALOG_H */ diff --git a/panels/sound/gvc-mixer-stream-private.h b/panels/sound/gvc-mixer-stream-private.h deleted file mode 100644 index c5aacd77d..000000000 --- a/panels/sound/gvc-mixer-stream-private.h +++ /dev/null @@ -1,33 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_MIXER_STREAM_PRIVATE_H -#define __GVC_MIXER_STREAM_PRIVATE_H - -#include <glib-object.h> - -#include "gvc-channel-map.h" - -G_BEGIN_DECLS - -pa_context * gvc_mixer_stream_get_pa_context (GvcMixerStream *stream); - -G_END_DECLS - -#endif /* __GVC_MIXER_STREAM_PRIVATE_H */ diff --git a/panels/sound/gvc-sound-theme-chooser.c b/panels/sound/gvc-sound-theme-chooser.c deleted file mode 100644 index 1c6603140..000000000 --- a/panels/sound/gvc-sound-theme-chooser.c +++ /dev/null @@ -1,780 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Bastien Nocera <hadess@hadess.net> - * Copyright (C) 2008 William Jon McCann - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#include "config.h" - -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> -#include <utime.h> -#include <errno.h> - -#include <glib.h> -#include <glib/gi18n-lib.h> -#include <gtk/gtk.h> -#include <canberra-gtk.h> -#include <libxml/tree.h> - -#include <gsettings-desktop-schemas/gdesktop-enums.h> - -#include "gvc-sound-theme-chooser.h" -#include "sound-theme-file-utils.h" - -struct _GvcSoundThemeChooser -{ - GtkBox parent_instance; - GtkWidget *treeview; - GtkWidget *selection_box; - GSettings *settings; - GSettings *sound_settings; - char *current_theme; - char *current_parent; -}; - -static void gvc_sound_theme_chooser_class_init (GvcSoundThemeChooserClass *klass); -static void gvc_sound_theme_chooser_init (GvcSoundThemeChooser *sound_theme_chooser); -static void gvc_sound_theme_chooser_finalize (GObject *object); - -G_DEFINE_TYPE (GvcSoundThemeChooser, gvc_sound_theme_chooser, GTK_TYPE_BOX) - -#define KEY_SOUNDS_SCHEMA "org.gnome.desktop.sound" -#define EVENT_SOUNDS_KEY "event-sounds" -#define INPUT_SOUNDS_KEY "input-feedback-sounds" -#define SOUND_THEME_KEY "theme-name" - -#define WM_SCHEMA "org.gnome.desktop.wm.preferences" -#define AUDIO_BELL_KEY "audible-bell" - -#define DEFAULT_ALERT_ID "__default" -#define CUSTOM_THEME_NAME "__custom" -#define NO_SOUNDS_THEME_NAME "__no_sounds" -#define DEFAULT_THEME "freedesktop" - -enum { - THEME_DISPLAY_COL, - THEME_IDENTIFIER_COL, - THEME_PARENT_ID_COL, - THEME_NUM_COLS -}; - -enum { - ALERT_DISPLAY_COL, - ALERT_IDENTIFIER_COL, - ALERT_SOUND_TYPE_COL, - ALERT_NUM_COLS -}; - -enum { - SOUND_TYPE_UNSET, - SOUND_TYPE_OFF, - SOUND_TYPE_DEFAULT_FROM_THEME, - SOUND_TYPE_BUILTIN, - SOUND_TYPE_CUSTOM -}; - -#define GVC_SOUND_SOUND (xmlChar *) "sound" -#define GVC_SOUND_NAME (xmlChar *) "name" -#define GVC_SOUND_FILENAME (xmlChar *) "filename" - -/* Adapted from yelp-toc-pager.c */ -static xmlChar * -xml_get_and_trim_names (xmlNodePtr node) -{ - xmlNodePtr cur; - xmlChar *keep_lang = NULL; - xmlChar *value; - int j, keep_pri = INT_MAX; - - const gchar * const * langs = g_get_language_names (); - - value = NULL; - - for (cur = node->children; cur; cur = cur->next) { - if (! xmlStrcmp (cur->name, GVC_SOUND_NAME)) { - xmlChar *cur_lang = NULL; - int cur_pri = INT_MAX; - - cur_lang = xmlNodeGetLang (cur); - - if (cur_lang) { - for (j = 0; langs[j]; j++) { - if (g_str_equal (cur_lang, langs[j])) { - cur_pri = j; - break; - } - } - } else { - cur_pri = INT_MAX - 1; - } - - if (cur_pri <= keep_pri) { - if (keep_lang) - xmlFree (keep_lang); - if (value) - xmlFree (value); - - value = xmlNodeGetContent (cur); - - keep_lang = cur_lang; - keep_pri = cur_pri; - } else { - if (cur_lang) - xmlFree (cur_lang); - } - } - } - - /* Delete all GVC_SOUND_NAME nodes */ - cur = node->children; - while (cur) { - xmlNodePtr this = cur; - cur = cur->next; - if (! xmlStrcmp (this->name, GVC_SOUND_NAME)) { - xmlUnlinkNode (this); - xmlFreeNode (this); - } - } - - return value; -} - -static void -populate_model_from_node (GvcSoundThemeChooser *chooser, - GtkTreeModel *model, - xmlNodePtr node) -{ - xmlNodePtr child; - xmlChar *filename; - xmlChar *name; - - filename = NULL; - name = xml_get_and_trim_names (node); - for (child = node->children; child; child = child->next) { - if (xmlNodeIsText (child)) { - continue; - } - - if (xmlStrcmp (child->name, GVC_SOUND_FILENAME) == 0) { - filename = xmlNodeGetContent (child); - } else if (xmlStrcmp (child->name, GVC_SOUND_NAME) == 0) { - /* EH? should have been trimmed */ - } - } - - if (filename != NULL && name != NULL) { - gtk_list_store_insert_with_values (GTK_LIST_STORE (model), - NULL, - G_MAXINT, - ALERT_IDENTIFIER_COL, filename, - ALERT_DISPLAY_COL, name, - ALERT_SOUND_TYPE_COL, _("Built-in"), - -1); - } - - xmlFree (filename); - xmlFree (name); -} - -static void -populate_model_from_file (GvcSoundThemeChooser *chooser, - GtkTreeModel *model, - const char *filename) -{ - xmlDocPtr doc; - xmlNodePtr root; - xmlNodePtr child; - gboolean exists; - - exists = g_file_test (filename, G_FILE_TEST_EXISTS); - if (! exists) { - return; - } - - doc = xmlParseFile (filename); - if (doc == NULL) { - return; - } - - root = xmlDocGetRootElement (doc); - - for (child = root->children; child; child = child->next) { - if (xmlNodeIsText (child)) { - continue; - } - if (xmlStrcmp (child->name, GVC_SOUND_SOUND) != 0) { - continue; - } - - populate_model_from_node (chooser, model, child); - } - - xmlFreeDoc (doc); -} - -static void -populate_model_from_dir (GvcSoundThemeChooser *chooser, - GtkTreeModel *model, - const char *dirname) -{ - GDir *d; - const char *name; - - d = g_dir_open (dirname, 0, NULL); - if (d == NULL) { - return; - } - - while ((name = g_dir_read_name (d)) != NULL) { - g_autofree gchar *path = NULL; - - if (! g_str_has_suffix (name, ".xml")) { - continue; - } - - path = g_build_filename (dirname, name, NULL); - populate_model_from_file (chooser, model, path); - } -} - -static gboolean -save_alert_sounds (GvcSoundThemeChooser *chooser, - const char *id) -{ - const char *sounds[3] = { "bell-terminal", "bell-window-system", NULL }; - g_autofree gchar *path = NULL; - - if (strcmp (id, DEFAULT_ALERT_ID) == 0) { - delete_old_files (sounds); - delete_disabled_files (sounds); - } else { - delete_old_files (sounds); - delete_disabled_files (sounds); - add_custom_file (sounds, id); - } - - /* And poke the directory so the theme gets updated */ - path = custom_theme_dir_path (NULL); - if (utime (path, NULL) != 0) { - g_warning ("Failed to update mtime for directory '%s': %s", - path, g_strerror (errno)); - } - - return FALSE; -} - - -static void -update_alert_model (GvcSoundThemeChooser *chooser, - const char *id) -{ - GtkTreeModel *model; - GtkTreeIter iter; - - model = gtk_tree_view_get_model (GTK_TREE_VIEW (chooser->treeview)); - g_assert (gtk_tree_model_get_iter_first (model, &iter)); - do { - g_autofree gchar *this_id = NULL; - - gtk_tree_model_get (model, &iter, - ALERT_IDENTIFIER_COL, &this_id, - -1); - - if (strcmp (this_id, id) == 0) { - GtkTreeSelection *selection; - - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (chooser->treeview)); - gtk_tree_selection_select_iter (selection, &iter); - } - } while (gtk_tree_model_iter_next (model, &iter)); -} - -static void -save_theme_name (GvcSoundThemeChooser *chooser, - const char *theme_name) -{ - /* If the name is empty, use "freedesktop" */ - if (theme_name == NULL || *theme_name == '\0') { - theme_name = DEFAULT_THEME; - } - - /* special case for no sounds */ - if (strcmp (theme_name, NO_SOUNDS_THEME_NAME) == 0) { - g_settings_set_boolean (chooser->sound_settings, EVENT_SOUNDS_KEY, FALSE); - return; - } else { - g_settings_set_boolean (chooser->sound_settings, EVENT_SOUNDS_KEY, TRUE); - } - - g_settings_set_string (chooser->sound_settings, SOUND_THEME_KEY, theme_name); -} - -static gboolean -load_theme_file (const char *path, - char **parent) -{ - g_autoptr(GKeyFile) file = NULL; - gboolean hidden; - - file = g_key_file_new (); - if (g_key_file_load_from_file (file, path, G_KEY_FILE_KEEP_TRANSLATIONS, NULL) == FALSE) { - return FALSE; - } - /* Don't add hidden themes to the list */ - hidden = g_key_file_get_boolean (file, "Sound Theme", "Hidden", NULL); - if (!hidden) { - /* Save the parent theme, if there's one */ - if (parent != NULL) { - *parent = g_key_file_get_string (file, - "Sound Theme", - "Inherits", - NULL); - } - } - - return TRUE; -} - -static gboolean -load_theme_name (const char *name, - char **parent) -{ - const char * const *data_dirs; - const char *data_dir; - g_autofree gchar *path = NULL; - guint i; - gboolean res; - - data_dir = g_get_user_data_dir (); - path = g_build_filename (data_dir, "sounds", name, "index.theme", NULL); - res = load_theme_file (path, parent); - if (res) - return TRUE; - - data_dirs = g_get_system_data_dirs (); - for (i = 0; data_dirs[i] != NULL; i++) { - g_autofree gchar *p = NULL; - - p = g_build_filename (data_dirs[i], "sounds", name, "index.theme", NULL); - res = load_theme_file (p, parent); - if (res) - return TRUE; - } - - return FALSE; -} - -static void -update_alert (GvcSoundThemeChooser *chooser, - const char *alert_id) -{ - gboolean is_custom; - gboolean is_default; - gboolean add_custom; - gboolean remove_custom; - - is_custom = strcmp (chooser->current_theme, CUSTOM_THEME_NAME) == 0; - is_default = strcmp (alert_id, DEFAULT_ALERT_ID) == 0; - - /* So a few possibilities: - * 1. Named theme, default alert selected: noop - * 2. Named theme, alternate alert selected: create new custom with sound - * 3. Custom theme, default alert selected: remove sound and possibly custom - * 4. Custom theme, alternate alert selected: update custom sound - */ - add_custom = FALSE; - remove_custom = FALSE; - if (! is_custom && is_default) { - /* remove custom just in case */ - remove_custom = TRUE; - } else if (! is_custom && ! is_default) { - if (chooser->current_parent) - create_custom_theme (chooser->current_parent); - else - create_custom_theme (DEFAULT_THEME); - save_alert_sounds (chooser, alert_id); - add_custom = TRUE; - } else if (is_custom && is_default) { - save_alert_sounds (chooser, alert_id); - /* after removing files check if it is empty */ - if (custom_theme_dir_is_empty ()) { - remove_custom = TRUE; - } - } else if (is_custom && ! is_default) { - save_alert_sounds (chooser, alert_id); - } - - if (add_custom) { - save_theme_name (chooser, CUSTOM_THEME_NAME); - } else if (remove_custom) { - delete_custom_theme_dir (); - if (is_custom) { - save_theme_name (chooser, chooser->current_parent); - } - } - - update_alert_model (chooser, alert_id); -} - -static void -play_preview_for_id (GvcSoundThemeChooser *chooser, - const char *id) -{ - g_return_if_fail (id != NULL); - - /* special case: for the default item on custom themes - * play the alert for the parent theme */ - if (strcmp (id, DEFAULT_ALERT_ID) == 0) { - if (chooser->current_parent != NULL) { - ca_gtk_play_for_widget (GTK_WIDGET (chooser), 0, - CA_PROP_APPLICATION_NAME, _("Sound Preferences"), - CA_PROP_EVENT_ID, "bell-window-system", - CA_PROP_CANBERRA_XDG_THEME_NAME, chooser->current_parent, - CA_PROP_EVENT_DESCRIPTION, _("Testing event sound"), - CA_PROP_CANBERRA_CACHE_CONTROL, "never", - CA_PROP_APPLICATION_ID, "org.gnome.VolumeControl", -#ifdef CA_PROP_CANBERRA_ENABLE - CA_PROP_CANBERRA_ENABLE, "1", -#endif - NULL); - } else { - ca_gtk_play_for_widget (GTK_WIDGET (chooser), 0, - CA_PROP_APPLICATION_NAME, _("Sound Preferences"), - CA_PROP_EVENT_ID, "bell-window-system", - CA_PROP_EVENT_DESCRIPTION, _("Testing event sound"), - CA_PROP_CANBERRA_CACHE_CONTROL, "never", - CA_PROP_APPLICATION_ID, "org.gnome.VolumeControl", -#ifdef CA_PROP_CANBERRA_ENABLE - CA_PROP_CANBERRA_ENABLE, "1", -#endif - NULL); - } - } else { - ca_gtk_play_for_widget (GTK_WIDGET (chooser), 0, - CA_PROP_APPLICATION_NAME, _("Sound Preferences"), - CA_PROP_MEDIA_FILENAME, id, - CA_PROP_EVENT_DESCRIPTION, _("Testing event sound"), - CA_PROP_CANBERRA_CACHE_CONTROL, "never", - CA_PROP_APPLICATION_ID, "org.gnome.VolumeControl", -#ifdef CA_PROP_CANBERRA_ENABLE - CA_PROP_CANBERRA_ENABLE, "1", -#endif - NULL); - - } -} - -static void -on_treeview_row_activated (GtkTreeView *treeview, - GtkTreePath *path, - GtkTreeViewColumn *column, - GvcSoundThemeChooser *chooser) -{ - GtkTreeModel *model; - GtkTreeIter iter; - g_autofree gchar *id = NULL; - - model = gtk_tree_view_get_model (GTK_TREE_VIEW (chooser->treeview)); - if (!gtk_tree_model_get_iter (model, &iter, path)) { - return; - } - - gtk_tree_model_get (model, &iter, - ALERT_IDENTIFIER_COL, &id, - -1); - if (id == NULL) { - return; - } - - play_preview_for_id (chooser, id); - update_alert (chooser, id); -} - -static GtkWidget * -create_alert_treeview (GvcSoundThemeChooser *chooser) -{ - GtkListStore *store; - GtkWidget *treeview; - GtkCellRenderer *renderer; - GtkTreeViewColumn *column; - GtkTreeSelection *selection; - - treeview = gtk_tree_view_new (); - gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (treeview), FALSE); - gtk_tree_view_set_activate_on_single_click (GTK_TREE_VIEW (treeview), TRUE); - - g_signal_connect (treeview, - "row-activated", - G_CALLBACK (on_treeview_row_activated), - chooser); - - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview)); - gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE); - - /* Setup the tree model, 3 columns: - * - display name - * - sound id - * - sound type - */ - store = gtk_list_store_new (ALERT_NUM_COLS, - G_TYPE_STRING, - G_TYPE_STRING, - G_TYPE_STRING); - - gtk_list_store_insert_with_values (store, - NULL, - G_MAXINT, - ALERT_IDENTIFIER_COL, DEFAULT_ALERT_ID, - ALERT_DISPLAY_COL, _("Default"), - ALERT_SOUND_TYPE_COL, _("From theme"), - -1); - - populate_model_from_dir (chooser, GTK_TREE_MODEL (store), SOUND_SET_DIR); - - gtk_tree_view_set_model (GTK_TREE_VIEW (treeview), - GTK_TREE_MODEL (store)); - - renderer = gtk_cell_renderer_text_new (); - column = gtk_tree_view_column_new_with_attributes (_("Name"), - renderer, - "text", ALERT_DISPLAY_COL, - NULL); - gtk_tree_view_append_column (GTK_TREE_VIEW (treeview), column); - - return treeview; -} - -static int -get_file_type (const char *sound_name, - char **linked_name) -{ - g_autofree gchar *name = NULL; - g_autofree gchar *filename = NULL; - - *linked_name = NULL; - - name = g_strdup_printf ("%s.disabled", sound_name); - filename = custom_theme_dir_path (name); - - if (g_file_test (filename, G_FILE_TEST_IS_REGULAR) != FALSE) { - return SOUND_TYPE_OFF; - } - - /* We only check for .ogg files because those are the - * only ones we create */ - name = g_strdup_printf ("%s.ogg", sound_name); - filename = custom_theme_dir_path (name); - - if (g_file_test (filename, G_FILE_TEST_IS_SYMLINK) != FALSE) { - *linked_name = g_file_read_link (filename, NULL); - return SOUND_TYPE_CUSTOM; - } - - return SOUND_TYPE_BUILTIN; -} - -static void -update_alerts_from_theme_name (GvcSoundThemeChooser *chooser, - const char *name) -{ - if (strcmp (name, CUSTOM_THEME_NAME) != 0) { - /* reset alert to default */ - update_alert (chooser, DEFAULT_ALERT_ID); - } else { - int sound_type; - g_autofree gchar *linkname = NULL; - - sound_type = get_file_type ("bell-terminal", &linkname); - g_debug ("Found link: %s", linkname); - if (sound_type == SOUND_TYPE_CUSTOM) { - update_alert (chooser, linkname); - } - } -} - -static void -update_theme (GvcSoundThemeChooser *chooser) -{ - gboolean events_enabled; - g_autofree gchar *last_theme = NULL; - - events_enabled = g_settings_get_boolean (chooser->sound_settings, EVENT_SOUNDS_KEY); - - last_theme = chooser->current_theme; - if (events_enabled) { - chooser->current_theme = g_settings_get_string (chooser->sound_settings, SOUND_THEME_KEY); - } else { - chooser->current_theme = g_strdup (NO_SOUNDS_THEME_NAME); - } - - if (g_strcmp0 (last_theme, chooser->current_theme) != 0) { - g_clear_pointer (&chooser->current_parent, g_free); - if (load_theme_name (chooser->current_theme, - &chooser->current_parent) == FALSE) { - g_free (chooser->current_theme); - chooser->current_theme = g_strdup (DEFAULT_THEME); - load_theme_name (DEFAULT_THEME, - &chooser->current_parent); - } - } - - gtk_widget_set_sensitive (chooser->selection_box, events_enabled); - - update_alerts_from_theme_name (chooser, chooser->current_theme); -} - -static GObject * -gvc_sound_theme_chooser_constructor (GType type, - guint n_construct_properties, - GObjectConstructParam *construct_params) -{ - GObject *object; - GvcSoundThemeChooser *self; - - object = G_OBJECT_CLASS (gvc_sound_theme_chooser_parent_class)->constructor (type, n_construct_properties, construct_params); - - self = GVC_SOUND_THEME_CHOOSER (object); - - update_theme (self); - - return object; -} - -static void -gvc_sound_theme_chooser_class_init (GvcSoundThemeChooserClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - - object_class->constructor = gvc_sound_theme_chooser_constructor; - object_class->finalize = gvc_sound_theme_chooser_finalize; -} - -static void -on_sound_settings_changed (GSettings *settings, - const char *key, - GvcSoundThemeChooser *chooser) -{ - if (strcmp (key, EVENT_SOUNDS_KEY) == 0) { - update_theme (chooser); - } else if (strcmp (key, SOUND_THEME_KEY) == 0) { - update_theme (chooser); - } else if (strcmp (key, INPUT_SOUNDS_KEY) == 0) { - update_theme (chooser); - } -} - -static void -on_audible_bell_changed (GSettings *settings, - const char *key, - GvcSoundThemeChooser *chooser) -{ - update_theme (chooser); -} - -static void -setup_list_size_constraint (GtkWidget *widget, - GtkWidget *to_size) -{ - GtkRequisition req; - int max_height; - - /* constrain height to be the tree height up to a max */ - max_height = (gdk_screen_get_height (gtk_widget_get_screen (widget))) / 4; - - gtk_widget_get_preferred_size (to_size, NULL, &req); - - gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (widget), - MIN (req.height, max_height)); -} - -static void -gvc_sound_theme_chooser_init (GvcSoundThemeChooser *chooser) -{ - GtkWidget *box; - GtkWidget *label; - GtkWidget *scrolled_window; - g_autofree gchar *str = NULL; - - gtk_orientable_set_orientation (GTK_ORIENTABLE (chooser), - GTK_ORIENTATION_VERTICAL); - - chooser->settings = g_settings_new (WM_SCHEMA); - chooser->sound_settings = g_settings_new (KEY_SOUNDS_SCHEMA); - - str = g_strdup_printf ("<b>%s</b>", _("C_hoose an alert sound:")); - chooser->selection_box = box = gtk_frame_new (str); - gtk_widget_show (box); - label = gtk_frame_get_label_widget (GTK_FRAME (box)); - gtk_label_set_use_underline (GTK_LABEL (label), TRUE); - gtk_label_set_use_markup (GTK_LABEL (label), TRUE); - gtk_frame_set_shadow_type (GTK_FRAME (box), GTK_SHADOW_NONE); - - gtk_widget_set_margin_top (box, 6); - gtk_box_pack_start (GTK_BOX (chooser), box, TRUE, TRUE, 6); - - chooser->treeview = create_alert_treeview (chooser); - gtk_widget_show (chooser->treeview); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), chooser->treeview); - - scrolled_window = gtk_scrolled_window_new (NULL, NULL); - gtk_widget_show (scrolled_window); - setup_list_size_constraint (scrolled_window, chooser->treeview); - - gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), - GTK_POLICY_NEVER, - GTK_POLICY_AUTOMATIC); - gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_window), - GTK_SHADOW_IN); - gtk_container_add (GTK_CONTAINER (scrolled_window), chooser->treeview); - gtk_widget_set_margin_top (scrolled_window, 6); - gtk_container_add (GTK_CONTAINER (box), scrolled_window); - - g_signal_connect (G_OBJECT (chooser->sound_settings), "changed", - G_CALLBACK (on_sound_settings_changed), chooser); - g_signal_connect (chooser->settings, "changed::" AUDIO_BELL_KEY, - G_CALLBACK (on_audible_bell_changed), chooser); -} - -static void -gvc_sound_theme_chooser_finalize (GObject *object) -{ - GvcSoundThemeChooser *sound_theme_chooser; - - g_return_if_fail (object != NULL); - g_return_if_fail (GVC_IS_SOUND_THEME_CHOOSER (object)); - - sound_theme_chooser = GVC_SOUND_THEME_CHOOSER (object); - - if (sound_theme_chooser != NULL) { - g_object_unref (sound_theme_chooser->settings); - g_object_unref (sound_theme_chooser->sound_settings); - } - - G_OBJECT_CLASS (gvc_sound_theme_chooser_parent_class)->finalize (object); -} - -GtkWidget * -gvc_sound_theme_chooser_new (void) -{ - GObject *chooser; - chooser = g_object_new (GVC_TYPE_SOUND_THEME_CHOOSER, - "spacing", 6, - NULL); - return GTK_WIDGET (chooser); -} diff --git a/panels/sound/gvc-sound-theme-chooser.h b/panels/sound/gvc-sound-theme-chooser.h deleted file mode 100644 index 122a9f0e5..000000000 --- a/panels/sound/gvc-sound-theme-chooser.h +++ /dev/null @@ -1,34 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_SOUND_THEME_CHOOSER_H -#define __GVC_SOUND_THEME_CHOOSER_H - -#include <glib-object.h> - -G_BEGIN_DECLS - -#define GVC_TYPE_SOUND_THEME_CHOOSER (gvc_sound_theme_chooser_get_type ()) -G_DECLARE_FINAL_TYPE (GvcSoundThemeChooser, gvc_sound_theme_chooser, GVC, SOUND_THEME_CHOOSER, GtkBox) - -GtkWidget * gvc_sound_theme_chooser_new (void); - -G_END_DECLS - -#endif /* __GVC_SOUND_THEME_CHOOSER_H */ diff --git a/panels/sound/gvc-speaker-test.c b/panels/sound/gvc-speaker-test.c deleted file mode 100644 index a5ffc33c6..000000000 --- a/panels/sound/gvc-speaker-test.c +++ /dev/null @@ -1,481 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2009 Bastien Nocera - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#include "config.h" - -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> - -#include <glib.h> -#include <glib/gi18n-lib.h> -#include <gtk/gtk.h> -#include <canberra.h> -#include <canberra-gtk.h> -#include <pulse/pulseaudio.h> - -#include "gvc-speaker-test.h" -#include "gvc-mixer-stream.h" - -struct _GvcSpeakerTest -{ - GtkGrid parent_instance; - GtkWidget *channel_controls[PA_CHANNEL_POSITION_MAX]; - ca_context *canberra; - GvcMixerStream *stream; - GvcMixerControl *control; -}; - -enum { - COL_NAME, - COL_HUMAN_NAME, - NUM_COLS -}; - -enum { - PROP_0, - PROP_STREAM, - PROP_CONTROL -}; - -static void gvc_speaker_test_class_init (GvcSpeakerTestClass *klass); -static void gvc_speaker_test_init (GvcSpeakerTest *speaker_test); -static void gvc_speaker_test_finalize (GObject *object); -static void update_channel_map (GvcSpeakerTest *speaker_test); - -G_DEFINE_TYPE (GvcSpeakerTest, gvc_speaker_test, GTK_TYPE_GRID) - -static const int position_table[] = { - /* Position, X, Y */ - PA_CHANNEL_POSITION_FRONT_LEFT, 0, 0, - PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER, 1, 0, - PA_CHANNEL_POSITION_FRONT_CENTER, 2, 0, - PA_CHANNEL_POSITION_MONO, 2, 0, - PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER, 3, 0, - PA_CHANNEL_POSITION_FRONT_RIGHT, 4, 0, - PA_CHANNEL_POSITION_SIDE_LEFT, 0, 1, - PA_CHANNEL_POSITION_SIDE_RIGHT, 4, 1, - PA_CHANNEL_POSITION_REAR_LEFT, 0, 2, - PA_CHANNEL_POSITION_REAR_CENTER, 2, 2, - PA_CHANNEL_POSITION_REAR_RIGHT, 4, 2, - PA_CHANNEL_POSITION_LFE, 3, 2 -}; - -static void -gvc_speaker_test_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec) -{ - GvcSpeakerTest *self = GVC_SPEAKER_TEST (object); - - switch (prop_id) { - case PROP_STREAM: - self->stream = g_value_dup_object (value); - if (self->control != NULL) - update_channel_map (self); - break; - case PROP_CONTROL: - self->control = g_value_dup_object (value); - if (self->stream != NULL) - update_channel_map (self); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gvc_speaker_test_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec) -{ - GvcSpeakerTest *self = GVC_SPEAKER_TEST (object); - - switch (prop_id) { - case PROP_STREAM: - g_value_set_object (value, self->stream); - break; - case PROP_CONTROL: - g_value_set_object (value, self->control); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gvc_speaker_test_class_init (GvcSpeakerTestClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - - object_class->finalize = gvc_speaker_test_finalize; - object_class->set_property = gvc_speaker_test_set_property; - object_class->get_property = gvc_speaker_test_get_property; - - g_object_class_install_property (object_class, - PROP_STREAM, - g_param_spec_object ("stream", - "stream", - "The stream", - GVC_TYPE_MIXER_STREAM, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT)); - g_object_class_install_property (object_class, - PROP_CONTROL, - g_param_spec_object ("control", - "control", - "The mixer controller", - GVC_TYPE_MIXER_CONTROL, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT_ONLY)); -} - -static const char * -sound_name (pa_channel_position_t position) -{ - switch (position) { - case PA_CHANNEL_POSITION_FRONT_LEFT: - return "audio-channel-front-left"; - case PA_CHANNEL_POSITION_FRONT_RIGHT: - return "audio-channel-front-right"; - case PA_CHANNEL_POSITION_FRONT_CENTER: - return "audio-channel-front-center"; - case PA_CHANNEL_POSITION_REAR_LEFT: - return "audio-channel-rear-left"; - case PA_CHANNEL_POSITION_REAR_RIGHT: - return "audio-channel-rear-right"; - case PA_CHANNEL_POSITION_REAR_CENTER: - return "audio-channel-rear-center"; - case PA_CHANNEL_POSITION_LFE: - return "audio-channel-lfe"; - case PA_CHANNEL_POSITION_SIDE_LEFT: - return "audio-channel-side-left"; - case PA_CHANNEL_POSITION_SIDE_RIGHT: - return "audio-channel-side-right"; - case PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER: - return "audio-channel-front-left-of-center"; - case PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER: - return "audio-channel-front-right-of-center"; - case PA_CHANNEL_POSITION_MONO: - return "audio-channel-mono"; - default: - return NULL; - } -} - -static const char * -icon_name (pa_channel_position_t position, gboolean playing) -{ - switch (position) { - case PA_CHANNEL_POSITION_FRONT_LEFT: - return playing ? "audio-speaker-left-testing" : "audio-speaker-left"; - case PA_CHANNEL_POSITION_FRONT_RIGHT: - return playing ? "audio-speaker-right-testing" : "audio-speaker-right"; - case PA_CHANNEL_POSITION_FRONT_CENTER: - return playing ? "audio-speaker-center-testing" : "audio-speaker-center"; - case PA_CHANNEL_POSITION_REAR_LEFT: - return playing ? "audio-speaker-left-back-testing" : "audio-speaker-left-back"; - case PA_CHANNEL_POSITION_REAR_RIGHT: - return playing ? "audio-speaker-right-back-testing" : "audio-speaker-right-back"; - case PA_CHANNEL_POSITION_REAR_CENTER: - return playing ? "audio-speaker-center-back-testing" : "audio-speaker-center-back"; - case PA_CHANNEL_POSITION_LFE: - return playing ? "audio-subwoofer-testing" : "audio-subwoofer"; - case PA_CHANNEL_POSITION_SIDE_LEFT: - return playing ? "audio-speaker-left-side-testing" : "audio-speaker-left-side"; - case PA_CHANNEL_POSITION_SIDE_RIGHT: - return playing ? "audio-speaker-right-side-testing" : "audio-speaker-right-side"; - case PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER: - return playing ? "audio-speaker-front-left-of-center-testing" : "audio-speaker-front-left-of-center"; - case PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER: - return playing ? "audio-speaker-front-right-of-center-testing" : "audio-speaker-front-right-of-center"; - case PA_CHANNEL_POSITION_MONO: - return playing ? "audio-speaker-mono-testing" : "audio-speaker-mono"; - default: - return NULL; - } -} - -static void -update_button (GtkWidget *control) -{ - GtkWidget *button; - GtkWidget *image; - pa_channel_position_t position; - gboolean playing; - - button = g_object_get_data (G_OBJECT (control), "button"); - image = g_object_get_data (G_OBJECT (control), "image"); - position = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (control), "position")); - playing = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (control), "playing")); - gtk_button_set_label (GTK_BUTTON (button), playing ? _("Stop") : _("Test")); - gtk_image_set_from_icon_name (GTK_IMAGE (image), icon_name (position, playing), GTK_ICON_SIZE_DIALOG); -} - -static const char * -pretty_position (pa_channel_position_t position) -{ - if (position == PA_CHANNEL_POSITION_LFE) - return N_("Subwoofer"); - - return pa_channel_position_to_pretty_string (position); -} - -static gboolean -idle_cb (GtkWidget *control) -{ - if (control == NULL) - return FALSE; - - /* This is called in the background thread, hence - * forward to main thread via idle callback */ - g_object_set_data (G_OBJECT (control), "playing", GINT_TO_POINTER(FALSE)); - update_button (control); - - return FALSE; -} - -static void -finish_cb (ca_context *c, uint32_t id, int error_code, void *userdata) -{ - GtkWidget *control = (GtkWidget *) userdata; - - if (error_code == CA_ERROR_DESTROYED || control == NULL) - return; - g_idle_add ((GSourceFunc) idle_cb, control); -} - -static void -on_test_button_clicked (GtkButton *button, - GtkWidget *control) -{ - gboolean playing; - ca_context *canberra; - - canberra = g_object_get_data (G_OBJECT (control), "canberra"); - - ca_context_cancel (canberra, 1); - - playing = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (control), "playing")); - - if (playing) { - g_object_set_data (G_OBJECT (control), "playing", GINT_TO_POINTER(FALSE)); - } else { - pa_channel_position_t position; - const char *name; - ca_proplist *proplist; - - position = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (control), "position")); - - ca_proplist_create (&proplist); - ca_proplist_sets (proplist, CA_PROP_MEDIA_ROLE, "test"); - ca_proplist_sets (proplist, CA_PROP_MEDIA_NAME, pretty_position (position)); - ca_proplist_sets (proplist, CA_PROP_CANBERRA_FORCE_CHANNEL, - pa_channel_position_to_string (position)); - ca_proplist_sets (proplist, CA_PROP_CANBERRA_ENABLE, "1"); - - name = sound_name (position); - if (name != NULL) { - ca_proplist_sets (proplist, CA_PROP_EVENT_ID, name); - playing = ca_context_play_full (canberra, 1, proplist, finish_cb, control) >= 0; - } - - if (!playing) { - ca_proplist_sets (proplist, CA_PROP_EVENT_ID, "audio-test-signal"); - playing = ca_context_play_full (canberra, 1, proplist, finish_cb, control) >= 0; - } - - if (!playing) { - ca_proplist_sets(proplist, CA_PROP_EVENT_ID, "bell-window-system"); - playing = ca_context_play_full (canberra, 1, proplist, finish_cb, control) >= 0; - } - g_object_set_data (G_OBJECT (control), "playing", GINT_TO_POINTER(playing)); - } - - update_button (control); -} - -static GtkWidget * -channel_control_new (ca_context *canberra, pa_channel_position_t position) -{ - GtkWidget *control; - GtkWidget *box; - GtkWidget *label; - GtkWidget *image; - GtkWidget *test_button; - const char *name; - - control = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - g_object_set_data (G_OBJECT (control), "playing", GINT_TO_POINTER(FALSE)); - g_object_set_data (G_OBJECT (control), "position", GINT_TO_POINTER(position)); - g_object_set_data (G_OBJECT (control), "canberra", canberra); - - name = icon_name (position, FALSE); - if (name == NULL) - name = "audio-volume-medium"; - image = gtk_image_new_from_icon_name (name, GTK_ICON_SIZE_DIALOG); - gtk_widget_show (image); - g_object_set_data (G_OBJECT (control), "image", image); - gtk_box_pack_start (GTK_BOX (control), image, FALSE, FALSE, 0); - - label = gtk_label_new (pretty_position (position)); - gtk_widget_show (label); - gtk_box_pack_start (GTK_BOX (control), label, FALSE, FALSE, 0); - - test_button = gtk_button_new_with_label (_("Test")); - gtk_widget_show (test_button); - - g_signal_connect (G_OBJECT (test_button), "clicked", - G_CALLBACK (on_test_button_clicked), control); - g_object_set_data (G_OBJECT (control), "button", test_button); - - atk_object_add_relationship (gtk_widget_get_accessible (test_button), - ATK_RELATION_LABELLED_BY, - gtk_widget_get_accessible (label)); - - box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); - gtk_widget_show (box); - gtk_box_pack_start (GTK_BOX (box), test_button, TRUE, FALSE, 0); - gtk_box_pack_start (GTK_BOX (control), box, FALSE, FALSE, 0); - - return control; -} - -static void -create_channel_controls (GvcSpeakerTest *speaker_test) -{ - guint i; - - for (i = 0; i < G_N_ELEMENTS (position_table); i += 3) { - speaker_test->channel_controls[position_table[i]] = channel_control_new (speaker_test->canberra, (pa_channel_position_t) position_table[i]); - gtk_widget_show (speaker_test->channel_controls[position_table[i]]); - gtk_grid_attach (GTK_GRID (speaker_test), - speaker_test->channel_controls[position_table[i]], - position_table[i+1], position_table[i+2], 1, 1); - } -} - -static void -update_channel_map (GvcSpeakerTest *speaker_test) -{ - guint i; - const GvcChannelMap *map; - - g_return_if_fail (speaker_test->control != NULL); - g_return_if_fail (speaker_test->stream != NULL); - - g_debug ("XXX update_channel_map called XXX"); - - map = gvc_mixer_stream_get_channel_map (speaker_test->stream); - g_return_if_fail (map != NULL); - - ca_context_change_device (speaker_test->canberra, - gvc_mixer_stream_get_name (speaker_test->stream)); - - for (i = 0; i < G_N_ELEMENTS (position_table); i += 3) { - gtk_widget_set_visible (speaker_test->channel_controls[position_table[i]], - gvc_channel_map_has_position(map, position_table[i])); - } -} - -static void -gvc_speaker_test_set_theme (ca_context *ca) -{ - GtkSettings *settings; - g_autofree gchar *theme_name = NULL; - - settings = gtk_settings_get_for_screen (gdk_screen_get_default ()); - - g_object_get (G_OBJECT (settings), - "gtk-sound-theme-name", &theme_name, - NULL); - - if (theme_name) - ca_context_change_props (ca, CA_PROP_CANBERRA_XDG_THEME_NAME, theme_name, NULL); -} - -static void -gvc_speaker_test_init (GvcSpeakerTest *speaker_test) -{ - GtkWidget *face; - - ca_context_create (&speaker_test->canberra); - ca_context_set_driver (speaker_test->canberra, "pulse"); - ca_context_change_props (speaker_test->canberra, - CA_PROP_APPLICATION_ID, "org.gnome.VolumeControl", - NULL); - gvc_speaker_test_set_theme (speaker_test->canberra); - - gtk_widget_set_direction (GTK_WIDGET (speaker_test), GTK_TEXT_DIR_LTR); - gtk_container_set_border_width (GTK_CONTAINER (speaker_test), 12); - gtk_grid_set_row_homogeneous (GTK_GRID (speaker_test), TRUE); - gtk_grid_set_column_homogeneous (GTK_GRID (speaker_test), TRUE); - gtk_grid_set_row_spacing (GTK_GRID (speaker_test), 12); - gtk_grid_set_column_spacing (GTK_GRID (speaker_test), 12); - - create_channel_controls (speaker_test); - - face = gtk_image_new_from_icon_name ("face-smile", GTK_ICON_SIZE_DIALOG); - gtk_grid_attach (GTK_GRID (speaker_test), face, 2, 1, 1, 1); - gtk_widget_show (face); -} - -static void -gvc_speaker_test_finalize (GObject *object) -{ - GvcSpeakerTest *speaker_test; - - g_return_if_fail (object != NULL); - g_return_if_fail (GVC_IS_SPEAKER_TEST (object)); - - speaker_test = GVC_SPEAKER_TEST (object); - - g_return_if_fail (speaker_test != NULL); - - g_object_unref (speaker_test->stream); - speaker_test->stream = NULL; - - g_object_unref (speaker_test->control); - speaker_test->control = NULL; - - ca_context_destroy (speaker_test->canberra); - speaker_test->canberra = NULL; - - G_OBJECT_CLASS (gvc_speaker_test_parent_class)->finalize (object); -} - -GtkWidget * -gvc_speaker_test_new (GvcMixerControl *control, - GvcMixerStream *stream) -{ - GObject *speaker_test; - - g_return_val_if_fail (stream != NULL, NULL); - g_return_val_if_fail (control != NULL, NULL); - - speaker_test = g_object_new (GVC_TYPE_SPEAKER_TEST, - "stream", stream, - "control", control, - NULL); - - return GTK_WIDGET (speaker_test); -} - diff --git a/panels/sound/gvc-speaker-test.h b/panels/sound/gvc-speaker-test.h deleted file mode 100644 index fc5dcc400..000000000 --- a/panels/sound/gvc-speaker-test.h +++ /dev/null @@ -1,37 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __GVC_SPEAKER_TEST_H -#define __GVC_SPEAKER_TEST_H - -#include <glib-object.h> -#include <gvc-mixer-card.h> -#include <gvc-mixer-control.h> - -G_BEGIN_DECLS - -#define GVC_TYPE_SPEAKER_TEST (gvc_speaker_test_get_type ()) -G_DECLARE_FINAL_TYPE (GvcSpeakerTest, gvc_speaker_test, GVC, SPEAKER_TEST, GtkGrid) - -GtkWidget * gvc_speaker_test_new (GvcMixerControl *control, - GvcMixerStream *stream); - -G_END_DECLS - -#endif /* __GVC_SPEAKER_TEST_H */ diff --git a/panels/sound/meson.build b/panels/sound/meson.build deleted file mode 100644 index 5a3bc9ac7..000000000 --- a/panels/sound/meson.build +++ /dev/null @@ -1,68 +0,0 @@ -panels_list += cappletname -desktop = 'gnome-@0@-panel.desktop'.format(cappletname) - -desktop_in = configure_file( - input: 'data/' + desktop + '.in.in', - output: desktop + '.in', - configuration: desktop_conf -) - -i18n.merge_file( - desktop, - type: 'desktop', - input: desktop_in, - output: desktop, - po_dir: po_dir, - install: true, - install_dir: control_center_desktopdir -) - -deps = common_deps + [ - libgvc_dep, - libxml_dep, - m_dep, - pulse_dep, - pulse_mainloop_dep, - dependency('libcanberra-gtk3', version: '>= 0.13') -] - -cflags += [ - '-DGLADEDIR="@0@"'.format(control_center_pkgdatadir), - '-DICON_DATA_DIR="@0@"'.format(join_paths(control_center_pkgdatadir, 'icons')), - '-DLIBEXECDIR="@0@"'.format(control_center_libexecdir), - '-DLOCALE_DIR="@0@"'.format(control_center_localedir), - '-DSOUND_DATA_DIR="@0@"'.format(join_paths(control_center_datadir, 'sounds')), - '-DSOUND_SET_DIR="@0@"'.format(join_paths(control_center_pkgdatadir, 'sounds')) -] - -libgvcgtk = static_library( - 'gvcgtk', - sources: 'gvc-channel-bar.c', - include_directories: top_inc, - dependencies: deps, - c_args: cflags -) - -sources = files( - 'cc-sound-panel.c', - 'gvc-balance-bar.c', - 'gvc-combo-box.c', - 'gvc-level-bar.c', - 'gvc-mixer-dialog.c', - 'gvc-sound-theme-chooser.c', - 'gvc-speaker-test.c', - 'sound-theme-file-utils.c' -) - -panels_libs += static_library( - cappletname, - sources: sources, - include_directories: top_inc, - dependencies: deps, - c_args: cflags, - link_with: libgvcgtk -) - -subdir('data/icons') -subdir('data/sounds') -subdir('data/symbolic-icons') diff --git a/panels/sound/sound-theme-file-utils.c b/panels/sound/sound-theme-file-utils.c deleted file mode 100644 index 3863b2591..000000000 --- a/panels/sound/sound-theme-file-utils.c +++ /dev/null @@ -1,298 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * Copyright (C) 2008 Bastien Nocera <hadess@hadess.net> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - */ - -#include <config.h> -#include <glib/gstdio.h> -#include <glib/gi18n-lib.h> -#include <gio/gio.h> -#include <utime.h> -#include <strings.h> - -#include "sound-theme-file-utils.h" - -#define CUSTOM_THEME_NAME "__custom" - -/* This function needs to be called after each individual - * changeset to the theme */ -void -custom_theme_update_time (void) -{ - g_autofree gchar *path = NULL; - - path = custom_theme_dir_path (NULL); - utime (path, NULL); -} - -char * -custom_theme_dir_path (const char *child) -{ - static char *dir = NULL; - const char *data_dir; - - if (dir == NULL) { - data_dir = g_get_user_data_dir (); - dir = g_build_filename (data_dir, "sounds", CUSTOM_THEME_NAME, NULL); - } - if (child == NULL) - return g_strdup (dir); - - return g_build_filename (dir, child, NULL); -} - -static gboolean -directory_delete_recursive (GFile *directory, GError **error) -{ - GFileEnumerator *enumerator; - GFileInfo *info; - gboolean success = TRUE; - - enumerator = g_file_enumerate_children (directory, - G_FILE_ATTRIBUTE_STANDARD_NAME "," - G_FILE_ATTRIBUTE_STANDARD_TYPE, - G_FILE_QUERY_INFO_NONE, - NULL, error); - if (enumerator == NULL) - return FALSE; - - while (success && - (info = g_file_enumerator_next_file (enumerator, NULL, NULL))) { - GFile *child; - - child = g_file_get_child (directory, g_file_info_get_name (info)); - - if (g_file_info_get_file_type (info) == G_FILE_TYPE_DIRECTORY) { - success = directory_delete_recursive (child, error); - } - g_object_unref (info); - - if (success) - success = g_file_delete (child, NULL, error); - } - g_file_enumerator_close (enumerator, NULL, NULL); - - if (success) - success = g_file_delete (directory, NULL, error); - - return success; -} - -/** - * capplet_file_delete_recursive : - * @file : - * @error : - * - * A utility routine to delete files and/or directories, - * including non-empty directories. - **/ -static gboolean -capplet_file_delete_recursive (GFile *file, GError **error) -{ - g_autoptr(GFileInfo) info = NULL; - GFileType type; - - g_return_val_if_fail (error == NULL || *error == NULL, FALSE); - - info = g_file_query_info (file, - G_FILE_ATTRIBUTE_STANDARD_TYPE, - G_FILE_QUERY_INFO_NONE, - NULL, error); - if (info == NULL) - return FALSE; - - type = g_file_info_get_file_type (info); - - if (type == G_FILE_TYPE_DIRECTORY) - return directory_delete_recursive (file, error); - else - return g_file_delete (file, NULL, error); -} - -void -delete_custom_theme_dir (void) -{ - g_autofree gchar *dir = NULL; - g_autoptr(GFile) file = NULL; - - dir = custom_theme_dir_path (NULL); - file = g_file_new_for_path (dir); - capplet_file_delete_recursive (file, NULL); - - g_debug ("deleted the custom theme dir"); -} - -gboolean -custom_theme_dir_is_empty (void) -{ - g_autofree gchar *dir = NULL; - g_autoptr(GFile) file = NULL; - gboolean is_empty; - GFileEnumerator *enumerator; - g_autoptr(GError) error = NULL; - - dir = custom_theme_dir_path (NULL); - file = g_file_new_for_path (dir); - - is_empty = TRUE; - - enumerator = g_file_enumerate_children (file, - G_FILE_ATTRIBUTE_STANDARD_NAME "," - G_FILE_ATTRIBUTE_STANDARD_TYPE, - G_FILE_QUERY_INFO_NONE, - NULL, &error); - if (enumerator == NULL) { - g_warning ("Unable to enumerate files: %s", error->message); - return TRUE; - } - - while (is_empty) { - g_autoptr(GFileInfo) info = NULL; - - info = g_file_enumerator_next_file (enumerator, NULL, NULL); - if (info == NULL) - break; - - if (strcmp ("index.theme", g_file_info_get_name (info)) != 0) { - is_empty = FALSE; - } - } - g_file_enumerator_close (enumerator, NULL, NULL); - - return is_empty; -} - -typedef enum { - SOUND_TYPE_OGG, - SOUND_TYPE_DISABLED -} SoundType; - -static void -delete_one_file (const char *sound_name, SoundType sound_type) -{ - g_autofree gchar *name = NULL; - g_autofree gchar *filename = NULL; - g_autoptr(GFile) file = NULL; - - switch (sound_type) { - case SOUND_TYPE_OGG: - name = g_strdup_printf ("%s.ogg", sound_name); - break; - case SOUND_TYPE_DISABLED: - name = g_strdup_printf ("%s.disabled", sound_name); - break; - default: - g_assert_not_reached (); - } - - filename = custom_theme_dir_path (name); - file = g_file_new_for_path (filename); - capplet_file_delete_recursive (file, NULL); -} - -void -delete_old_files (const char **sounds) -{ - guint i; - - for (i = 0; sounds[i] != NULL; i++) - delete_one_file (sounds[i], SOUND_TYPE_OGG); -} - -void -delete_disabled_files (const char **sounds) -{ - guint i; - - for (i = 0; sounds[i] != NULL; i++) - delete_one_file (sounds[i], SOUND_TYPE_DISABLED); -} - -static void -create_one_file (GFile *file) -{ - g_autoptr(GFileOutputStream) stream = NULL; - - stream = g_file_create (file, G_FILE_CREATE_NONE, NULL, NULL); - if (stream != NULL) - g_output_stream_close (G_OUTPUT_STREAM (stream), NULL, NULL); -} - -void -add_disabled_file (const char **sounds) -{ - guint i; - - for (i = 0; sounds[i] != NULL; i++) { - g_autofree gchar *name = NULL; - g_autofree gchar *filename = NULL; - g_autoptr(GFile) file = NULL; - - name = g_strdup_printf ("%s.disabled", sounds[i]); - filename = custom_theme_dir_path (name); - file = g_file_new_for_path (filename); - - create_one_file (file); - } -} - -void -add_custom_file (const char **sounds, const char *filename) -{ - guint i; - - for (i = 0; sounds[i] != NULL; i++) { - g_autofree gchar *name = NULL; - g_autofree gchar *path = NULL; - g_autoptr(GFile) file = NULL; - - /* We use *.ogg because it's the first type of file that - * libcanberra looks at */ - name = g_strdup_printf ("%s.ogg", sounds[i]); - path = custom_theme_dir_path (name); - /* In case there's already a link there, delete it */ - g_unlink (path); - file = g_file_new_for_path (path); - - /* Create the link */ - g_file_make_symbolic_link (file, filename, NULL, NULL); - } -} - -void -create_custom_theme (const char *parent) -{ - g_autofree gchar *path = NULL; - g_autoptr(GKeyFile) keyfile = NULL; - g_autofree gchar *data = NULL; - g_autofree gchar *index_path = NULL; - - /* Create the custom directory */ - path = custom_theme_dir_path (NULL); - g_mkdir_with_parents (path, USER_DIR_MODE); - - /* Set the data for index.theme */ - keyfile = g_key_file_new (); - g_key_file_set_string (keyfile, "Sound Theme", "Name", _("Custom")); - g_key_file_set_string (keyfile, "Sound Theme", "Inherits", parent); - g_key_file_set_string (keyfile, "Sound Theme", "Directories", "."); - data = g_key_file_to_data (keyfile, NULL, NULL); - - /* Save the index.theme */ - index_path = custom_theme_dir_path ("index.theme"); - g_file_set_contents (index_path, data, -1, NULL); - - custom_theme_update_time (); -} diff --git a/panels/sound/sound-theme-file-utils.h b/panels/sound/sound-theme-file-utils.h deleted file mode 100644 index 6f10a630a..000000000 --- a/panels/sound/sound-theme-file-utils.h +++ /dev/null @@ -1,35 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * Copyright (C) 2008 Bastien Nocera <hadess@hadess.net> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see <http://www.gnu.org/licenses/>. - */ -#ifndef __SOUND_THEME_FILE_UTILS_HH__ -#define __SOUND_THEME_FILE_UTILS_HH__ - -#include <gio/gio.h> - -char *custom_theme_dir_path (const char *child); -gboolean custom_theme_dir_is_empty (void); -void create_custom_theme (const char *parent); - -void delete_custom_theme_dir (void); -void delete_old_files (const char **sounds); -void delete_disabled_files (const char **sounds); - -void add_disabled_file (const char **sounds); -void add_custom_file (const char **sounds, const char *filename); - -void custom_theme_update_time (void); - -#endif /* __SOUND_THEME_FILE_UTILS_HH__ */ diff --git a/po/POTFILES.in b/po/POTFILES.in index 90fcad195..0a3d682fd 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -179,16 +179,6 @@ panels/sharing/cc-sharing-panel.ui panels/sharing/gnome-sharing-panel.desktop.in.in panels/sharing/networks.ui panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in -panels/sound/cc-sound-panel.c -panels/sound/data/gnome-sound-panel.desktop.in.in -panels/sound/data/sounds/gnome-sounds-default.xml.in.in -panels/sound/gvc-balance-bar.c -panels/sound/gvc-channel-bar.c -panels/sound/gvc-combo-box.c -panels/sound/gvc-mixer-dialog.c -panels/sound/gvc-sound-theme-chooser.c -panels/sound/gvc-speaker-test.c -panels/sound/sound-theme-file-utils.c panels/sound-new/cc-alert-slider.ui panels/sound-new/cc-balance-slider.ui panels/sound-new/cc-fade-slider.ui |