Mercurial > pidgin
changeset 27657:f3809e302ec7
merge of '50e2f2c66f304a73c2a9ef4d912be5e3f2ed39a5'
and '73a88ac85b97264c19b9a9966270eecd310b6bff'
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Tue, 21 Jul 2009 06:16:43 +0000 |
parents | 8e31eec7b621 (current diff) 7e473a437c7f (diff) |
children | 29e1cc634466 |
files | pidgin/pixmaps/dialogs/64/scalable/auth.svg pidgin/pixmaps/dialogs/64/scalable/cool.svg pidgin/pixmaps/dialogs/64/scalable/dialog.svg pidgin/pixmaps/dialogs/64/scalable/error.svg pidgin/pixmaps/dialogs/64/scalable/info.svg pidgin/pixmaps/dialogs/64/scalable/mail.svg pidgin/pixmaps/dialogs/64/scalable/question.svg pidgin/pixmaps/dialogs/64/scalable/warning.svg pidgin/pixmaps/emblems/16/scalable/aol-client.svg pidgin/pixmaps/emblems/16/scalable/birthday.svg pidgin/pixmaps/emblems/16/scalable/blocked.svg pidgin/pixmaps/emblems/16/scalable/bot.svg pidgin/pixmaps/emblems/16/scalable/external.svg pidgin/pixmaps/emblems/16/scalable/female.svg pidgin/pixmaps/emblems/16/scalable/free-for-chat.svg pidgin/pixmaps/emblems/16/scalable/game.svg pidgin/pixmaps/emblems/16/scalable/male.svg pidgin/pixmaps/emblems/16/scalable/mobile.svg pidgin/pixmaps/emblems/16/scalable/music.svg pidgin/pixmaps/emblems/16/scalable/not-authorized.svg pidgin/pixmaps/emblems/16/scalable/qq-member.svg pidgin/pixmaps/emblems/16/scalable/secure.svg pidgin/pixmaps/emblems/16/scalable/unavailable.svg pidgin/pixmaps/emblems/16/scalable/video.svg pidgin/pixmaps/emblems/16/scalable/voice.svg pidgin/pixmaps/icons/hicolor/48x48/apps/scalable/pidgin.svg pidgin/pixmaps/protocols/48/scalable/aim.svg pidgin/pixmaps/protocols/48/scalable/bonjour.svg pidgin/pixmaps/protocols/48/scalable/gadu-gadu.svg pidgin/pixmaps/protocols/48/scalable/google-talk.svg pidgin/pixmaps/protocols/48/scalable/icq.svg pidgin/pixmaps/protocols/48/scalable/irc.svg pidgin/pixmaps/protocols/48/scalable/jabber.svg pidgin/pixmaps/protocols/48/scalable/meanwhile.svg pidgin/pixmaps/protocols/48/scalable/msn.svg pidgin/pixmaps/protocols/48/scalable/novell.svg pidgin/pixmaps/protocols/48/scalable/qq.svg pidgin/pixmaps/protocols/48/scalable/silc.svg pidgin/pixmaps/protocols/48/scalable/simple.svg pidgin/pixmaps/protocols/48/scalable/yahoo.svg pidgin/pixmaps/protocols/48/scalable/zephyr.svg |
diffstat | 126 files changed, 23668 insertions(+), 13448 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Jul 21 04:31:27 2009 +0000 +++ b/ChangeLog Tue Jul 21 06:16:43 2009 +0000 @@ -40,6 +40,8 @@ (Jan Kaluza and Aman Gupta) * Internationalized Domain Names are supported when libpurple is compiled against the GNU IDN library. + * Install scalable versions of the main Pidgin icon, the protocol icons, + the dialog icons, and the Buddy List emblems. AIM and ICQ: * Preliminary support for a new authentication scheme called
--- a/libpurple/dnsquery.c Tue Jul 21 04:31:27 2009 +0000 +++ b/libpurple/dnsquery.c Tue Jul 21 06:16:43 2009 +0000 @@ -771,8 +771,8 @@ query_data = data; #ifdef USE_IDN - if (!dns_str_is_ascii(dns_params.hostname)) { - rc = purple_network_convert_idn_to_ascii(dns_params.hostname, &hostname); + if (!dns_str_is_ascii(query_data->hostname)) { + rc = purple_network_convert_idn_to_ascii(query_data->hostname, &hostname); if (rc != 0) { /* FIXME: Dirty 2.6.0 string freeze hack */ char tmp[8]; @@ -785,7 +785,7 @@ } } else /* intentional fallthru */ #endif - hostname = g_strdup(dns_params.hostname); + hostname = g_strdup(query_data->hostname); #ifdef HAVE_GETADDRINFO g_snprintf(servname, sizeof(servname), "%d", query_data->port);
--- a/libpurple/protocols/jabber/jutil.c Tue Jul 21 04:31:27 2009 +0000 +++ b/libpurple/protocols/jabber/jutil.c Tue Jul 21 06:16:43 2009 +0000 @@ -153,6 +153,8 @@ jid = NULL; /* goto out; */ } + + jid->resource = g_strdup(idn_buffer); } out:
--- a/libpurple/protocols/jabber/message.c Tue Jul 21 04:31:27 2009 +0000 +++ b/libpurple/protocols/jabber/message.c Tue Jul 21 06:16:43 2009 +0000 @@ -790,6 +790,10 @@ handle_buzz(jm); switch(jm->type) { + case JABBER_MESSAGE_OTHER: + purple_debug(PURPLE_DEBUG_INFO, "jabber", + "Received message of unknown type: %s\n", type); + /* Fall-through is intentional */ case JABBER_MESSAGE_NORMAL: case JABBER_MESSAGE_CHAT: handle_chat(jm); @@ -809,10 +813,6 @@ case JABBER_MESSAGE_ERROR: handle_error(jm); break; - case JABBER_MESSAGE_OTHER: - purple_debug(PURPLE_DEBUG_INFO, "jabber", - "Received message of unknown type: %s\n", type); - break; } jabber_message_free(jm); }
--- a/libpurple/protocols/yahoo/libymsg.c Tue Jul 21 04:31:27 2009 +0000 +++ b/libpurple/protocols/yahoo/libymsg.c Tue Jul 21 06:16:43 2009 +0000 @@ -579,14 +579,14 @@ /* Now that we have processed the buddy list, we can say yahoo has connected */ purple_connection_set_display_name(gc, purple_normalize(account, purple_account_get_username(account))); + yd->logged_in = TRUE; + purple_debug_info("yahoo","Authentication: Connection established\n"); purple_connection_set_state(gc, PURPLE_CONNECTED); - yd->logged_in = TRUE; if (yd->picture_upload_todo) { yahoo_buddy_icon_upload(gc, yd->picture_upload_todo); yd->picture_upload_todo = NULL; } yahoo_set_status(account, purple_account_get_active_status(account)); - purple_debug_info("yahoo","Authentication: Connection established\n"); g_hash_table_destroy(ht); g_free(norm_bud);
--- a/pidgin/gtkblist.c Tue Jul 21 04:31:27 2009 +0000 +++ b/pidgin/gtkblist.c Tue Jul 21 06:16:43 2009 +0000 @@ -4642,13 +4642,21 @@ void pidgin_blist_setup_sort_methods() { + const char *id; + pidgin_blist_sort_method_reg("none", _("Manually"), sort_method_none); #if GTK_CHECK_VERSION(2,2,1) pidgin_blist_sort_method_reg("alphabetical", _("Alphabetically"), sort_method_alphabetical); pidgin_blist_sort_method_reg("status", _("By status"), sort_method_status); pidgin_blist_sort_method_reg("log_size", _("By recent log activity"), sort_method_log_activity); #endif - pidgin_blist_sort_method_set(purple_prefs_get_string(PIDGIN_PREFS_ROOT "/blist/sort_type")); + + id = purple_prefs_get_string(PIDGIN_PREFS_ROOT "/blist/sort_type"); + if (id == NULL) { + purple_debug_warning("gtkblist", "Sort method was NULL, resetting to alphabetical\n"); + id = "alphabetical"; + } + pidgin_blist_sort_method_set(id); } static void _prefs_change_redo_list(const char *name, PurplePrefType type, @@ -7432,7 +7440,13 @@ void pidgin_blist_sort_method_reg(const char *id, const char *name, pidgin_blist_sort_function func) { - struct pidgin_blist_sort_method *method = g_new0(struct pidgin_blist_sort_method, 1); + struct pidgin_blist_sort_method *method; + + g_return_if_fail(id != NULL); + g_return_if_fail(name != NULL); + g_return_if_fail(func != NULL); + + method = g_new0(struct pidgin_blist_sort_method, 1); method->id = g_strdup(id); method->name = g_strdup(name); method->func = func; @@ -7444,6 +7458,8 @@ { GList *l = pidgin_blist_sort_methods; + g_return_if_fail(id != NULL); + while(l) { struct pidgin_blist_sort_method *method = l->data; if(!strcmp(method->id, id)) { @@ -8033,6 +8049,8 @@ if ((gtkblist == NULL) || (gtkblist->ift == NULL)) return; + g_return_if_fail(m != NULL); + sortmenu = gtk_item_factory_get_widget(gtkblist->ift, N_("/Buddies/Sort Buddies")); if (sortmenu == NULL) @@ -8047,7 +8065,7 @@ for (l = pidgin_blist_sort_methods; l; l = l->next) { method = (PidginBlistSortMethod *) l->data; menuitem = gtk_radio_menu_item_new_with_label(sl, _(method->name)); - if (!strcmp(m, method->id)) + if (g_str_equal(m, method->id)) activeitem = menuitem; sl = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(menuitem)); gtk_menu_shell_append(GTK_MENU_SHELL(sortmenu), menuitem);
--- a/pidgin/pidginstock.c Tue Jul 21 04:31:27 2009 +0000 +++ b/pidgin/pidginstock.c Tue Jul 21 06:16:43 2009 +0000 @@ -200,8 +200,8 @@ { PIDGIN_STOCK_TOOLBAR_SEND_FILE, "toolbar", "send-file.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL }, { PIDGIN_STOCK_TOOLBAR_TRANSFER, "toolbar", "transfer.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL }, #ifdef USE_VV - { PIDGIN_STOCK_TOOLBAR_AUDIO_CALL, "toolbar", "audio-call.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TOOLBAR_VIDEO_CALL, "toolbar", "video-call.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TOOLBAR_AUDIO_CALL, "toolbar", "audio-call.png", FALSE, TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TOOLBAR_VIDEO_CALL, "toolbar", "video-call.png", FALSE, TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, { PIDGIN_STOCK_TOOLBAR_AUDIO_VIDEO_CALL, "toolbar", "audio-video-call.png", FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL }, #endif };
--- a/pidgin/pixmaps/Makefile.am Tue Jul 21 04:31:27 2009 +0000 +++ b/pidgin/pixmaps/Makefile.am Tue Jul 21 06:16:43 2009 +0000 @@ -69,15 +69,6 @@ dialogs/16/mail.png \ dialogs/16/question.png -DIALOGS_64_SCALABLE = \ - dialogs/64/scalable/auth.svg \ - dialogs/64/scalable/cool.svg \ - dialogs/64/scalable/dialog.svg \ - dialogs/64/scalable/error.svg \ - dialogs/64/scalable/info.svg \ - dialogs/64/scalable/question.svg \ - dialogs/64/scalable/warning.svg - DIALOGS_64 = \ dialogs/64/auth.png \ dialogs/64/cool.png \ @@ -88,23 +79,14 @@ dialogs/64/question.png \ dialogs/64/warning.png -EMBLEMS_16_SCALABLE = \ - emblems/16/scalable/aol-client.svg \ - emblems/16/scalable/blocked.svg \ - emblems/16/scalable/bot.svg \ - emblems/16/scalable/external.svg \ - emblems/16/scalable/female.svg \ - emblems/16/scalable/free-for-chat.svg \ - emblems/16/scalable/game.svg \ - emblems/16/scalable/male.svg \ - emblems/16/scalable/mobile.svg \ - emblems/16/scalable/music.svg \ - emblems/16/scalable/not-authorized.svg \ - emblems/16/scalable/qq-member.svg \ - emblems/16/scalable/secure.svg \ - emblems/16/scalable/unavailable.svg \ - emblems/16/scalable/video.svg \ - emblems/16/scalable/voice.svg +DIALOGS_SCALABLE = \ + dialogs/scalable/auth.svg \ + dialogs/scalable/cool.svg \ + dialogs/scalable/dialog.svg \ + dialogs/scalable/error.svg \ + dialogs/scalable/info.svg \ + dialogs/scalable/question.svg \ + dialogs/scalable/warning.svg EMBLEMS_16 = \ emblems/16/aol-client.png \ @@ -129,6 +111,24 @@ emblems/16/video.png \ emblems/16/voice.png +EMBLEMS_SCALABLE = \ + emblems/scalable/aol-client.svg \ + emblems/scalable/blocked.svg \ + emblems/scalable/bot.svg \ + emblems/scalable/external.svg \ + emblems/scalable/female.svg \ + emblems/scalable/free-for-chat.svg \ + emblems/scalable/game.svg \ + emblems/scalable/male.svg \ + emblems/scalable/mobile.svg \ + emblems/scalable/music.svg \ + emblems/scalable/not-authorized.svg \ + emblems/scalable/qq-member.svg \ + emblems/scalable/secure.svg \ + emblems/scalable/unavailable.svg \ + emblems/scalable/video.svg \ + emblems/scalable/voice.svg + EMOTES_DEFAULT_24_SCALABLE = \ emotes/default/24/scalable/airplane.svg \ emotes/default/24/scalable/bad.svg \ @@ -260,10 +260,9 @@ ICONS_32 = icons/hicolor/32x32/apps/pidgin.png -ICONS_48_SCALABLE = \ - icons/hicolor/48x48/apps/scalable/pidgin.svg +ICONS_48 = icons/hicolor/48x48/apps/pidgin.png -ICONS_48 = icons/hicolor/48x48/apps/pidgin.png +ICONS_SCALABLE = icons/hicolor/scalable/apps/pidgin.svg PROTOCOLS_22_SCALABLE = \ protocols/22/scalable/aim.svg \ @@ -299,23 +298,6 @@ protocols/22/yahoo.png \ protocols/22/zephyr.png -PROTOCOLS_48_SCALABLE = \ - protocols/48/scalable/aim.svg \ - protocols/48/scalable/bonjour.svg \ - protocols/48/scalable/gadu-gadu.svg \ - protocols/48/scalable/google-talk.svg \ - protocols/48/scalable/novell.svg \ - protocols/48/scalable/icq.svg \ - protocols/48/scalable/irc.svg \ - protocols/48/scalable/jabber.svg \ - protocols/48/scalable/meanwhile.svg \ - protocols/48/scalable/msn.svg \ - protocols/48/scalable/qq.svg \ - protocols/48/scalable/silc.svg \ - protocols/48/scalable/simple.svg \ - protocols/48/scalable/yahoo.svg \ - protocols/48/scalable/zephyr.svg - PROTOCOLS_48 = \ protocols/48/aim.png \ protocols/48/bonjour.png \ @@ -333,6 +315,23 @@ protocols/48/yahoo.png \ protocols/48/zephyr.png +PROTOCOLS_SCALABLE = \ + protocols/scalable/aim.svg \ + protocols/scalable/bonjour.svg \ + protocols/scalable/gadu-gadu.svg \ + protocols/scalable/google-talk.svg \ + protocols/scalable/novell.svg \ + protocols/scalable/icq.svg \ + protocols/scalable/irc.svg \ + protocols/scalable/jabber.svg \ + protocols/scalable/meanwhile.svg \ + protocols/scalable/msn.svg \ + protocols/scalable/qq.svg \ + protocols/scalable/silc.svg \ + protocols/scalable/simple.svg \ + protocols/scalable/yahoo.svg \ + protocols/scalable/zephyr.svg + STATUS_11 = \ status/11/available.png \ status/11/away.png \ @@ -447,10 +446,30 @@ toolbar/16/video-call.png TOOLBAR_22_SCALABLE = \ - toolbar/22/scalable/select-avatar.svg + toolbar/22/scalable/select-avatar.svg \ + toolbar/22/scalable/video-call.svg \ + toolbar/22/scalable/voice-call.svg TOOLBAR_22 = \ - toolbar/22/select-avatar.png + toolbar/22/select-avatar.png \ + toolbar/22/video-call.png \ + toolbar/22/voice-call.png + +TOOLBAR_32_SCALABLE = \ + toolbar/32/scalable/video-call.svg \ + toolbar/32/scalable/voice-call.svg + +TOOLBAR_32 = \ + toolbar/32/video-call.png \ + toolbar/32/voice-call.png + +TOOLBAR_48_SCALABLE = \ + toolbar/48/scalable/video-call.svg \ + toolbar/48/scalable/voice-call.svg + +TOOLBAR_48 = \ + toolbar/48/video-call.png \ + toolbar/48/voice-call.png TRAY_16_ICO = \ tray/16/available_4bit.ico \ @@ -510,6 +529,8 @@ edit.png \ info.png \ logo.png \ + logo.svg \ + logo-nonvv.png \ pause.png \ arrow-down.xpm \ arrow-up.xpm \ @@ -519,18 +540,16 @@ pidgin.ico \ $(MAKEFILE_MINGW) \ $(DIALOGS_16_SCALABLE) \ - $(DIALOGS_64_SCALABLE) \ $(ICONS_16_SCALABLE) \ $(ICONS_24_SCALABLE) \ $(ICONS_32_SCALABLE) \ - $(ICONS_48_SCALABLE) \ - $(EMBLEMS_16_SCALABLE) \ $(EMOTES_DEFAULT_24_SCALABLE) \ $(PROTOCOLS_16_SCALABLE) \ $(PROTOCOLS_22_SCALABLE) \ - $(PROTOCOLS_48_SCALABLE) \ $(TOOLBAR_16_SCALABLE) \ - $(TOOLBAR_22_SCALABLE) + $(TOOLBAR_22_SCALABLE) \ + $(TOOLBAR_32_SCALABLE) \ + $(TOOLBAR_48_SCALABLE) pidginbuttonpixdir = $(datadir)/pixmaps/pidgin/buttons pidginbuttonpix_DATA = edit.png pause.png info.png @@ -542,10 +561,13 @@ $(ANIMATIONS_16) \ $(DIALOGS_16) \ $(DIALOGS_64) \ + $(DIALOGS_SCALABLE) \ $(EMBLEMS_16) \ + $(EMBLEMS_SCALABLE) \ $(PROTOCOLS_16) \ $(PROTOCOLS_22) \ $(PROTOCOLS_48) \ + $(PROTOCOLS_SCALABLE) \ $(STATUS_11) \ $(STATUS_11_RTL) \ $(STATUS_16) \ @@ -559,6 +581,8 @@ $(TOOLBAR_11) \ $(TOOLBAR_16) \ $(TOOLBAR_22) \ + $(TOOLBAR_32) \ + $(TOOLBAR_48) \ $(TRAY_16) \ $(TRAY_16_ICO) \ $(TRAY_22) \ @@ -570,5 +594,6 @@ $(ICONS_22) \ $(ICONS_24) \ $(ICONS_32) \ - $(ICONS_48) + $(ICONS_48) \ + $(ICONS_SCALABLE) endif
--- a/pidgin/pixmaps/dialogs/64/scalable/auth.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,850 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="auth.svg" - inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/pidgin-mtn/pidgin/pixmaps/dialogs/64/auth.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - sodipodi:modified="true"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient9188"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop9190" /> - <stop - style="stop-color:#6f726d;stop-opacity:1" - offset="1" - id="stop9192" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9166"> - <stop - style="stop-color:#3b73bb;stop-opacity:1;" - offset="0" - id="stop9168" /> - <stop - style="stop-color:#3b73bb;stop-opacity:0;" - offset="1" - id="stop9170" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9158"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop9160" /> - <stop - style="stop-color:#bcd2e9;stop-opacity:1" - offset="1" - id="stop9162" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9056"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop9058" /> - <stop - style="stop-color:#729fcf;stop-opacity:0;" - offset="1" - id="stop9060" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9040"> - <stop - style="stop-color:#729fcf;stop-opacity:1" - offset="0" - id="stop9042" /> - <stop - style="stop-color:#3465a4;stop-opacity:1" - offset="1" - id="stop9044" /> - </linearGradient> - <linearGradient - id="linearGradient11669" - inkscape:collect="always"> - <stop - id="stop11671" - offset="0" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - id="stop11673" - offset="1" - style="stop-color:#2e3436;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11653"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop11655" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop11657" /> - </linearGradient> - <linearGradient - id="linearGradient11493" - inkscape:collect="always"> - <stop - id="stop11495" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop11497" - offset="1" - style="stop-color:#070808;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient11487" - inkscape:collect="always"> - <stop - id="stop11489" - offset="0" - style="stop-color:#538ac5;stop-opacity:1" /> - <stop - id="stop11491" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11474"> - <stop - style="stop-color:#558bc5;stop-opacity:1" - offset="0" - id="stop11476" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop11478" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11333"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11335" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11337" /> - </linearGradient> - <linearGradient - id="linearGradient11316" - inkscape:collect="always"> - <stop - id="stop11318" - offset="0" - style="stop-color:#edd400;stop-opacity:1" /> - <stop - id="stop11320" - offset="1" - style="stop-color:#f6c93b;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11304"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11306" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11308" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11292"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11294" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11296" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11259"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11261" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11241"> - <stop - style="stop-color:#4f381b;stop-opacity:0.97254902" - offset="0" - id="stop11243" /> - <stop - style="stop-color:#a87b42;stop-opacity:0.96078432" - offset="1" - id="stop11245" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11208"> - <stop - style="stop-color:#c32f00;stop-opacity:1" - offset="0" - id="stop11210" /> - <stop - style="stop-color:#6c1300;stop-opacity:1" - offset="1" - id="stop11212" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11196"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop11198" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop11200" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient10406" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11493" - id="linearGradient11202" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient11206" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11316" - id="radialGradient11271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" - cx="11.873854" - cy="12.147273" - fx="11.594166" - fy="8.8655272" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11310" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11314" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient11327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11339" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11343" - gradientUnits="userSpaceOnUse" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientTransform="translate(10.999931,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11487" - id="linearGradient11480" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <filter - inkscape:collect="always" - id="filter11503" - x="-0.11697236" - width="1.2339447" - y="-0.32830241" - height="1.6566048"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64772565" - id="feGaussianBlur11505" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11474" - id="linearGradient11507" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11669" - id="radialGradient11659" - cx="14" - cy="19.5" - fx="9.3258924" - fy="14.814685" - r="8" - gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11653" - id="radialGradient11667" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" - cx="14" - cy="19.5" - fx="9.3258924" - fy="14.814685" - r="8" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient8720" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient8722" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11493" - id="linearGradient8985" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient8993" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient8995" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient8997" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient9005" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-34.999933,2.0000002)" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11208" - id="linearGradient9018" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)" - x1="22.919643" - y1="33.491837" - x2="23.746914" - y2="36.579254" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11292" - id="radialGradient9036" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)" - cx="24.00321" - cy="34.70562" - fx="24.00321" - fy="34.70562" - r="12.133846" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9040" - id="linearGradient9046" - x1="24" - y1="37" - x2="44.533825" - y2="40.875" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9056" - id="linearGradient9062" - x1="34.5" - y1="61.35038" - x2="34.5" - y2="33.72963" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9158" - id="linearGradient9164" - x1="29" - y1="35.649048" - x2="29" - y2="32.334484" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-1,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9166" - id="linearGradient9172" - x1="29.125" - y1="36.5625" - x2="25" - y2="31.9375" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9188" - id="linearGradient9194" - x1="37.5" - y1="42.295494" - x2="37.5" - y2="40.792892" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9166" - id="linearGradient9246" - gradientUnits="userSpaceOnUse" - x1="29.78125" - y1="37.09375" - x2="23.984375" - y2="30.40625" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="274.07651" - inkscape:cy="97.498181" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fill="#fce94f" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="0" - width="48px" - height="48px" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10" - showguides="true" - inkscape:guide-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid10393" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" - d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" - sodipodi:ry="2.3675451" - sodipodi:rx="6.6449099" - sodipodi:cy="10.457643" - sodipodi:cx="10.748654" - id="path17958" - style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17960" - style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11247" - style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" - d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z" - id="path11288" - sodipodi:nodetypes="cscscscsccc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11257" - style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11329" - d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:nodetypes="cscsc" - id="path17974" - d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z" - style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17964" - style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path17966" - d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path17968" - style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11325" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17976" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11323" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17978" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11482" - d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11204" - style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11300" - style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11312" - style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11341" - d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - style="opacity:0.80000000000000004;fill:url(#radialGradient11659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 22.1875,18.537724 C 22.1875,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22.53125,14.293548 22.1875,18.537724 z" - id="path11647" - sodipodi:nodetypes="csssc" /> - <rect - style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="rect11649" - width="5.1303458" - height="1.0018942" - x="6.2930641" - y="14.833013" - rx="0.51303452" - ry="0.50094712" - transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" /> - <rect - style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="rect11651" - width="5.1303449" - height="1.0018942" - x="31.000992" - y="25.932768" - rx="0.51303446" - ry="0.50094712" - transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" /> - <path - style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.99999994000000003;stroke-linecap:square;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,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z" - id="path11661" /> - <path - style="opacity:0.80000000000000004;fill:url(#radialGradient11667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 21.849813,22.809207 21.78125,18.600224 C 21.711014,14.288526 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z" - id="path11663" - sodipodi:nodetypes="csssc" /> - <path - transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path8714" - style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path8716" - style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path8718" - style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9046);stroke-width:0.99999994000000003;stroke-linecap:square;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="rect9038" - width="21.999998" - height="15" - x="23.499998" - y="29.5" - rx="1.331211" - ry="1.2101918" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0060635" - inkscape:original="M 25.71875 29.5 C 25.048304 29.5 24.5 30.048304 24.5 30.71875 L 24.5 43.28125 C 24.5 43.951696 25.048304 44.5 25.71875 44.5 L 43.28125 44.5 C 43.951696 44.5 44.5 43.951698 44.5 43.28125 L 44.5 30.71875 C 44.5 30.048304 43.951698 29.5 43.28125 29.5 L 25.71875 29.5 z " - style="opacity:1;fill:url(#linearGradient9062);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.94868326000000003;stroke-linecap:square;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="path9052" - d="M 25.71875,30.5 C 25.596823,30.5 25.5,30.596823 25.5,30.71875 L 25.5,43.28125 C 25.5,43.403177 25.596823,43.5 25.71875,43.5 L 43.28125,43.5 C 43.403179,43.5 43.5,43.403181 43.5,43.28125 L 43.5,30.71875 C 43.5,30.596821 43.403181,30.5 43.28125,30.5 L 25.71875,30.5 z" - transform="matrix(1.1111112,0,0,1,-3.833336,0)" /> - <rect - style="opacity:1;fill:url(#linearGradient9164);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9246);stroke-width:1;stroke-linecap:square;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="rect9064" - width="5" - height="6" - x="25.5" - y="31.5" - rx="0.53033006" - ry="0.53033006" /> - <path - style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 28 34 C 27.448 34 27 34.447999 27 35 C 27 35.552 27.448001 35.999999 28 36 C 28.552 36 29 35.551999 29 35 C 29 34.448 28.552001 33.999999 28 34 z M 28 36 C 27.448 36 27 36.448 27 37 C 27 37 29 37 29 37 C 29 36.448 28.552001 36 28 36 z " - id="path9242" /> - <path - style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed" - d="M 33.000002,33.459106 L 33.308145,33.459106 L 33.308145,33.96439 L 33.761924,33.96439 L 33.761924,33.459106 L 34.069179,33.459106 L 34.069179,34.784921 L 33.761924,34.784921 L 33.761924,34.222804 L 33.308145,34.222804 L 33.308145,34.784921 L 33.000002,34.784921 L 33.000002,33.459106 M 34.237014,33.790338 L 34.523845,33.790338 L 34.764499,34.465233 L 34.968743,33.790338 L 35.254686,33.790338 L 34.878165,34.879051 C 34.840276,34.989757 34.796171,35.067015 34.74585,35.110824 C 34.695529,35.155225 34.629223,35.177425 34.546934,35.177426 L 34.380874,35.177426 L 34.380874,34.968741 L 34.470564,34.968741 C 34.519109,34.968741 34.554333,34.960157 34.576238,34.942988 C 34.598734,34.92582 34.616199,34.895035 34.628631,34.850634 L 34.636624,34.823106 L 34.237014,33.790338 M 35.420746,33.403161 L 35.706688,33.403161 L 35.706688,34.784921 L 35.420746,34.784921 L 35.420746,33.403161 M 35.985527,33.403161 L 36.271469,33.403161 L 36.271469,34.155314 L 36.600925,33.790338 L 36.933045,33.790338 L 36.496139,34.24678 L 36.967677,34.784921 L 36.620461,34.784921 L 36.271469,34.370215 L 36.271469,34.784921 L 35.985527,34.784921 L 35.985527,33.403161 M 37.919635,34.284965 L 37.919635,34.375543 L 37.250956,34.375543 C 37.257468,34.450137 37.281444,34.506083 37.322886,34.543379 C 37.364918,34.580676 37.423231,34.599325 37.497826,34.599324 C 37.55821,34.599325 37.61978,34.589556 37.682534,34.57002 C 37.745878,34.549891 37.810704,34.519699 37.87701,34.479442 L 37.87701,34.724535 C 37.80952,34.752952 37.741734,34.774265 37.673654,34.788473 C 37.606163,34.803273 37.538674,34.810673 37.471185,34.810673 C 37.308973,34.810673 37.182874,34.765088 37.092888,34.673918 C 37.003494,34.582156 36.958797,34.453689 36.958797,34.288517 C 36.958797,34.126306 37.002902,33.998727 37.091112,33.90578 C 37.179322,33.812835 37.300685,33.766362 37.455201,33.766361 C 37.596099,33.766362 37.708582,33.813427 37.792648,33.907556 C 37.877305,34.001687 37.919634,34.12749 37.919635,34.284965 M 37.625701,34.179291 C 37.6257,34.118906 37.609715,34.070361 37.577747,34.033655 C 37.54637,33.996359 37.504929,33.977711 37.453425,33.97771 C 37.398367,33.977711 37.353374,33.995175 37.318445,34.030103 C 37.284108,34.064441 37.2625,34.11417 37.25362,34.179291 L 37.625701,34.179291 M 39.193057,33.972382 C 39.241601,33.972383 39.278306,33.960542 39.303171,33.936861 C 39.328627,33.913182 39.341355,33.878253 39.341356,33.832075 C 39.341355,33.786491 39.328627,33.751858 39.303171,33.728176 C 39.278306,33.703905 39.241601,33.691769 39.193057,33.691767 L 39.023445,33.691767 L 39.023445,33.972382 L 39.193057,33.972382 M 39.203713,34.552259 C 39.265874,34.55226 39.312347,34.537755 39.343132,34.508746 C 39.374508,34.479738 39.390196,34.435929 39.390197,34.377319 C 39.390196,34.319894 39.374508,34.276974 39.343132,34.248556 C 39.312347,34.219548 39.265874,34.205044 39.203713,34.205043 L 39.023445,34.205043 L 39.023445,34.552259 L 39.203713,34.552259 M 39.489655,34.075392 C 39.55596,34.096706 39.607169,34.136074 39.643283,34.193499 C 39.679395,34.250925 39.697451,34.321374 39.697452,34.404848 C 39.697451,34.532723 39.658378,34.628037 39.580234,34.69079 C 39.502679,34.753544 39.384572,34.784921 39.225913,34.784921 L 38.715302,34.784921 L 38.715302,33.459106 L 39.177072,33.459106 C 39.342835,33.459107 39.462718,33.486932 39.536721,33.54258 C 39.611313,33.598231 39.64861,33.687329 39.648611,33.809874 C 39.64861,33.874405 39.634994,33.929462 39.607762,33.975046 C 39.581121,34.02004 39.541752,34.053489 39.489655,34.075392 M 40.375012,33.993694 C 40.311666,33.993695 40.263417,34.019152 40.230265,34.070064 C 40.197111,34.120386 40.180535,34.193204 40.180535,34.288517 C 40.180535,34.383832 40.197111,34.456946 40.230265,34.507858 C 40.263417,34.55818 40.311666,34.58334 40.375012,34.58334 C 40.437765,34.58334 40.485422,34.55818 40.517983,34.507858 C 40.551135,34.456946 40.567712,34.383832 40.567712,34.288517 C 40.567712,34.193204 40.551135,34.120386 40.517983,34.070064 C 40.485422,34.019152 40.437765,33.993695 40.375012,33.993694 M 40.375012,33.766361 C 40.529527,33.766362 40.650001,33.812539 40.736436,33.904892 C 40.822869,33.997247 40.866086,34.125122 40.866087,34.288517 C 40.866086,34.451913 40.822869,34.579788 40.736436,34.672142 C 40.650001,34.764496 40.529527,34.810673 40.375012,34.810673 C 40.221088,34.810673 40.100317,34.764496 40.0127,34.672142 C 39.925673,34.579788 39.88216,34.451913 39.882161,34.288517 C 39.88216,34.125122 39.925673,33.997247 40.0127,33.904892 C 40.100317,33.812539 40.221088,33.766362 40.375012,33.766361 M 41.975225,34.179291 L 41.975225,34.784921 L 41.687506,34.784921 L 41.687506,34.68635 L 41.687506,34.321374 C 41.687505,34.235533 41.685729,34.176331 41.682178,34.14377 C 41.678625,34.11121 41.672705,34.087233 41.664418,34.07184 C 41.653169,34.051121 41.637776,34.035136 41.618241,34.023887 C 41.599295,34.012048 41.577687,34.006127 41.553415,34.006127 C 41.493621,34.006127 41.446556,34.03188 41.41222,34.083385 C 41.378475,34.134298 41.361602,34.205044 41.361603,34.295621 L 41.361603,34.784921 L 41.07566,34.784921 L 41.07566,33.790338 L 41.361603,33.790338 L 41.361603,33.935973 C 41.404819,33.877957 41.4507,33.835332 41.499246,33.808098 C 41.54779,33.780274 41.601367,33.766362 41.659977,33.766361 C 41.762987,33.766362 41.841133,33.801587 41.894415,33.872036 C 41.948287,33.942486 41.975224,34.044904 41.975225,34.179291 M 42.939615,33.821418 L 42.939615,34.06296 C 42.878637,34.034544 42.819435,34.013232 42.762011,33.999023 C 42.705177,33.984815 42.6516,33.977711 42.601279,33.97771 C 42.546813,33.977711 42.506261,33.985407 42.47962,34.000799 C 42.453571,34.0156 42.440547,34.038688 42.440547,34.070064 C 42.440547,34.095521 42.450315,34.115058 42.469852,34.128674 C 42.48998,34.142291 42.526093,34.152355 42.578191,34.158866 L 42.62792,34.166858 C 42.774739,34.18758 42.873309,34.22162 42.923631,34.268981 C 42.974543,34.316342 42.999999,34.39064 43,34.491874 C 42.999999,34.597845 42.964775,34.67747 42.894326,34.730751 C 42.823876,34.784033 42.718793,34.810673 42.579079,34.810673 C 42.519877,34.810673 42.458603,34.805345 42.395258,34.794689 C 42.332505,34.784625 42.267975,34.769232 42.20167,34.748512 L 42.20167,34.50697 C 42.258503,34.537755 42.316816,34.560844 42.37661,34.576236 C 42.436995,34.591628 42.497972,34.599325 42.559542,34.599324 C 42.615191,34.599325 42.657224,34.59074 42.685641,34.573572 C 42.714057,34.556404 42.728265,34.530947 42.728266,34.497202 C 42.728265,34.468786 42.718497,34.447769 42.698961,34.434153 C 42.679424,34.419945 42.640648,34.408992 42.582631,34.401296 L 42.532014,34.394192 C 42.40473,34.376432 42.315336,34.343575 42.263831,34.295621 C 42.212918,34.247669 42.187462,34.174851 42.187462,34.077168 C 42.187462,33.971791 42.220022,33.893645 42.285144,33.842731 C 42.350265,33.791819 42.450019,33.766362 42.584407,33.766361 C 42.637095,33.766362 42.692449,33.770802 42.750467,33.779681 C 42.808483,33.788563 42.871533,33.802475 42.939615,33.821418" - id="flowRoot9140" /> - <path - style="opacity:1;fill:url(#linearGradient9194);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 31 40 L 31 43 L 32 43 L 32 40 L 31 40 z M 33 40 L 33 43 L 35 43 L 35 40 L 33 40 z M 36 40 L 36 43 L 36.9375 43 L 36.9375 40 L 36 40 z M 38 40 L 38 43 L 40 43 L 40 40 L 38 40 z M 41.28125 40 C 41.168464 40 41.0625 40.105962 41.0625 40.21875 L 41.0625 42.78125 C 41.0625 42.894036 41.168462 43 41.28125 43 L 41.78125 43 C 41.894036 43 42 42.894038 42 42.78125 L 42 40.21875 C 42 40.105964 41.894038 40 41.78125 40 L 41.28125 40 z M 43.0625 40 L 43.0625 43 L 44 43 L 44 40 L 43.0625 40 z " - id="rect9175" /> - <path - style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed" - d="M 33,35.766614 L 33.543122,35.766614 C 33.704956,35.766616 33.829008,35.806602 33.915279,35.886573 C 34.001548,35.965918 34.044683,36.079265 34.044684,36.226615 C 34.044683,36.374597 34.001548,36.488574 33.915279,36.568546 C 33.829008,36.64789 33.704956,36.687561 33.543122,36.687561 L 33.327762,36.687561 L 33.327762,37.176843 L 33,37.176843 L 33,35.766614 M 33.327762,36.030147 L 33.327762,36.424028 L 33.508174,36.424028 C 33.571773,36.424029 33.62089,36.407027 33.655525,36.373022 C 33.690158,36.338389 33.707475,36.289587 33.707476,36.226615 C 33.707475,36.163646 33.690158,36.115158 33.655525,36.081153 C 33.62089,36.04715 33.571773,36.030148 33.508174,36.030147 L 33.327762,36.030147 M 34.260044,36.118936 L 34.564192,36.118936 L 34.564192,37.176843 L 34.260044,37.176843 L 34.260044,36.118936 M 34.260044,35.707107 L 34.564192,35.707107 L 34.564192,35.982918 L 34.260044,35.982918 L 34.260044,35.707107 M 35.508753,36.273843 L 35.508753,35.707107 L 35.814791,35.707107 L 35.814791,37.176843 L 35.508753,37.176843 L 35.508753,37.023824 C 35.466561,37.086166 35.420278,37.131819 35.369903,37.160786 C 35.319525,37.189752 35.260962,37.204235 35.194214,37.204235 C 35.077088,37.204235 34.980743,37.152599 34.905178,37.049327 C 34.830243,36.945426 34.792776,36.811928 34.792776,36.648834 C 34.792776,36.48574 34.830243,36.352558 34.905178,36.249285 C 34.980743,36.145384 35.077088,36.093433 35.194214,36.093432 C 35.260333,36.093433 35.318581,36.108231 35.368958,36.137827 C 35.419963,36.166794 35.466561,36.212133 35.508753,36.273843 M 35.307561,36.95865 C 35.37305,36.95865 35.422797,36.932202 35.456802,36.879307 C 35.491435,36.826412 35.508752,36.749587 35.508753,36.648834 C 35.508752,36.548081 35.491435,36.471257 35.456802,36.418361 C 35.422797,36.365467 35.37305,36.339019 35.307561,36.339018 C 35.243331,36.339019 35.193899,36.365467 35.159265,36.418361 C 35.125261,36.471257 35.108259,36.548081 35.108259,36.648834 C 35.108259,36.749587 35.125261,36.826412 35.159265,36.879307 C 35.193899,36.932202 35.243331,36.95865 35.307561,36.95865 M 36.759351,36.997376 C 36.71716,37.059088 36.670876,37.104427 36.6205,37.133394 C 36.570123,37.16236 36.511561,37.176843 36.444812,37.176843 C 36.328946,37.176843 36.232915,37.126152 36.156721,37.024769 C 36.081156,36.922757 36.043374,36.793037 36.043374,36.63561 C 36.043374,36.477554 36.081156,36.348149 36.156721,36.247396 C 36.232915,36.146014 36.328946,36.095322 36.444812,36.095322 C 36.511561,36.095322 36.570123,36.109806 36.6205,36.138771 C 36.670876,36.167739 36.71716,36.213392 36.759351,36.275732 L 36.759351,36.118936 L 37.065388,36.118936 L 37.065388,37.070108 C 37.065387,37.240129 37.0169,37.369848 36.919926,37.459267 C 36.82358,37.549315 36.68347,37.594339 36.499597,37.594339 C 36.440404,37.594339 36.382786,37.589301 36.326742,37.579226 C 36.271327,37.56915 36.215599,37.553722 36.159555,37.532943 L 36.159555,37.26941 C 36.21308,37.303414 36.265345,37.328602 36.316352,37.344975 C 36.367358,37.361977 36.418679,37.370478 36.470315,37.370478 C 36.569809,37.370478 36.642854,37.346234 36.689453,37.297747 C 36.736051,37.24926 36.75935,37.17338 36.759351,37.070108 L 36.759351,36.997376 M 36.55816,36.339018 C 36.495188,36.339019 36.446071,36.364837 36.410808,36.416472 C 36.376174,36.468108 36.358857,36.541155 36.358857,36.63561 C 36.358857,36.732585 36.375859,36.806261 36.409864,36.856637 C 36.443867,36.906384 36.493299,36.931257 36.55816,36.931257 C 36.621759,36.931257 36.671191,36.90544 36.706456,36.853803 C 36.741718,36.802168 36.75935,36.729437 36.759351,36.63561 C 36.75935,36.541155 36.741718,36.468108 36.706456,36.416472 C 36.671191,36.364837 36.621759,36.339019 36.55816,36.339018 M 37.36198,36.118936 L 37.666129,36.118936 L 37.666129,37.176843 L 37.36198,37.176843 L 37.36198,36.118936 M 37.36198,35.707107 L 37.666129,35.707107 L 37.666129,35.982918 L 37.36198,35.982918 L 37.36198,35.707107 M 38.919561,36.532653 L 38.919561,37.176843 L 38.613523,37.176843 L 38.613523,37.071997 L 38.613523,36.683783 C 38.613522,36.592476 38.611633,36.529505 38.607856,36.494871 C 38.604077,36.460237 38.597779,36.434734 38.588965,36.418361 C 38.577,36.396322 38.560627,36.37932 38.539847,36.367355 C 38.519696,36.354762 38.496712,36.348464 38.470894,36.348464 C 38.407293,36.348464 38.357232,36.375857 38.320709,36.43064 C 38.284816,36.484796 38.266869,36.560046 38.266869,36.65639 L 38.266869,37.176843 L 37.962721,37.176843 L 37.962721,36.118936 L 38.266869,36.118936 L 38.266869,36.273843 C 38.312838,36.212133 38.36164,36.166794 38.413276,36.137827 C 38.464912,36.108231 38.5219,36.093433 38.584242,36.093432 C 38.69381,36.093433 38.776931,36.130901 38.833606,36.205835 C 38.890908,36.280771 38.91956,36.38971 38.919561,36.532653" - id="flowRoot9198" /> - </g> -</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/cool.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,704 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="cool.svg" - inkscape:export-filename="/home/hbons/Bureaublad/cool.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - sodipodi:modified="true"> - <defs - id="defs4"> - <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="perspective105" /> - <linearGradient - id="linearGradient11669" - inkscape:collect="always"> - <stop - id="stop11671" - offset="0" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - id="stop11673" - offset="1" - style="stop-color:#3465a4;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11653"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop11655" /> - <stop - style="stop-color:#3465a4;stop-opacity:1" - offset="1" - id="stop11657" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11586"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11588" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11590" /> - </linearGradient> - <linearGradient - id="linearGradient11493" - inkscape:collect="always"> - <stop - id="stop11495" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop11497" - offset="1" - style="stop-color:#070808;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient11487" - inkscape:collect="always"> - <stop - id="stop11489" - offset="0" - style="stop-color:#538ac5;stop-opacity:1" /> - <stop - id="stop11491" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11474"> - <stop - style="stop-color:#558bc5;stop-opacity:1" - offset="0" - id="stop11476" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop11478" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11418"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11420" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11422" /> - </linearGradient> - <linearGradient - id="linearGradient11346" - inkscape:collect="always"> - <stop - id="stop11348" - offset="0" - style="stop-color:#ef7700;stop-opacity:1" /> - <stop - id="stop11350" - offset="1" - style="stop-color:#fea523;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11333"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11335" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11337" /> - </linearGradient> - <linearGradient - id="linearGradient11316" - inkscape:collect="always"> - <stop - id="stop11318" - offset="0" - style="stop-color:#edd400;stop-opacity:1" /> - <stop - id="stop11320" - offset="1" - style="stop-color:#f6c93b;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11304"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11306" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11308" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11292"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11294" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11296" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11259"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11261" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11241"> - <stop - style="stop-color:#4f381b;stop-opacity:0.97254902" - offset="0" - id="stop11243" /> - <stop - style="stop-color:#a87b42;stop-opacity:0.96078432" - offset="1" - id="stop11245" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11208"> - <stop - style="stop-color:#c32f00;stop-opacity:1" - offset="0" - id="stop11210" /> - <stop - style="stop-color:#6c1300;stop-opacity:1" - offset="1" - id="stop11212" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11196"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop11198" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop11200" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient10406" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11346" - id="linearGradient10424" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-2.0000002,0,0,2.0000001,48.499999,-0.4999991)" - x1="8.9999981" - y1="10.5625" - x2="8.9999981" - y2="12.4375" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11493" - id="linearGradient11202" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient11206" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11208" - id="linearGradient11214" - x1="22.919643" - y1="33.491837" - x2="23.746914" - y2="36.579254" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.9659258,0.258819,0.258819,0.9659258,39.560471,-4.4105697)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11316" - id="radialGradient11271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" - cx="11.873854" - cy="12.147273" - fx="11.594166" - fy="8.8655272" - r="9.975256" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11292" - id="radialGradient11298" - cx="24.00321" - cy="34.70562" - fx="24.00321" - fy="34.70562" - r="12.133846" - gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11310" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11314" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient11327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11339" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11343" - gradientUnits="userSpaceOnUse" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientTransform="translate(10.999931,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11418" - id="linearGradient11424" - x1="22.915459" - y1="34.796875" - x2="22.854631" - y2="29.835938" - gradientUnits="userSpaceOnUse" /> - <filter - inkscape:collect="always" - id="filter11462" - x="-0.078992675" - width="1.1579853" - y="-0.19133781" - height="1.3826756"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.448448" - id="feGaussianBlur11464" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11487" - id="linearGradient11480" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <filter - inkscape:collect="always" - id="filter11503" - x="-0.11697236" - width="1.2339447" - y="-0.32830241" - height="1.6566048"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64772565" - id="feGaussianBlur11505" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11474" - id="linearGradient11507" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" /> - <filter - id="filter3405" - height="2.5649745" - y="-0.78248727" - width="1.5575919" - x="-0.27879593" - inkscape:collect="always"> - <feGaussianBlur - id="feGaussianBlur3407" - stdDeviation="1.5438116" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11586" - id="linearGradient11592" - x1="39.704506" - y1="13.248698" - x2="54.781696" - y2="18.949747" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11669" - id="radialGradient11659" - cx="14" - cy="19.5" - fx="9.3258924" - fy="14.814685" - r="8" - gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11653" - id="radialGradient11667" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" - cx="14" - cy="19.5" - fx="9.3258924" - fy="14.814685" - r="8" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8" - inkscape:cx="34.093743" - inkscape:cy="29.192709" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#fce94f" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="0" - width="48px" - height="48px" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10" - showguides="true" - inkscape:guide-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid10393" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" - d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" - sodipodi:ry="2.3675451" - sodipodi:rx="6.6449099" - sodipodi:cy="10.457643" - sodipodi:cx="10.748654" - id="path17958" - style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17960" - style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11247" - style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11257" - style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11329" - d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17964" - style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path17966" - d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path17968" - style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.98821175" - inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " - style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - id="path11288" - d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" - transform="matrix(0.9659258,-0.264782,0.258819,0.9881799,-6.825115,7.6473507)" /> - <path - sodipodi:nodetypes="cscsc" - id="path17974" - d="M 13,31.694019 C 15.576229,36.323459 20.846351,38.909081 25.954556,37.540342 C 31.062759,36.171603 34.33401,31.297326 34.250368,26 C 32.872293,29.813956 29.916568,34.514228 25.463432,35.707442 C 21.010298,36.900659 16.100427,34.307964 13,31.694019 z" - style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11325" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17976" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11323" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-11.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17978" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11482" - d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11204" - style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11300" - style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11312" - style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11341" - d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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;filter:url(#filter11462);enable-background:accumulate" - id="path11416" - sodipodi:cx="23.25" - sodipodi:cy="30.1875" - sodipodi:rx="6.8125" - sodipodi:ry="2.8125" - d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" - transform="matrix(0.9925109,-0.2659425,0.4601228,1.7172017,-13.102978,-15.495569)" /> - <path - style="opacity:0.59722218;fill:url(#radialGradient11659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 22,18.537724 C 22,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22,14.418548 22,18.537724 z" - id="path11647" - sodipodi:nodetypes="csssc" /> - <rect - style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="rect11649" - width="5.1303458" - height="1.0018942" - x="6.2930641" - y="14.833013" - rx="0.51303452" - ry="0.50094712" - transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" /> - <rect - style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="rect11651" - width="5.1303449" - height="1.0018942" - x="31.000992" - y="25.932768" - rx="0.51303446" - ry="0.50094712" - transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" /> - <path - style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.99999994;stroke-linecap:square;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,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z" - id="path11661" /> - <path - style="opacity:0.59722218;fill:url(#radialGradient11667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 22,22.656901 22,18.537724 C 22,14.418548 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z" - id="path11663" - sodipodi:nodetypes="csssc" /> - </g> -</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/dialog.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,609 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="dialog.svg" - inkscape:export-filename="/home/hbons/Bureaublad/dialog.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - sodipodi:modified="true"> - <defs - id="defs4"> - <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="perspective89" /> - <linearGradient - inkscape:collect="always" - id="linearGradient9283"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop9285" /> - <stop - style="stop-color:#c9daee;stop-opacity:1" - offset="1" - id="stop9287" /> - </linearGradient> - <linearGradient - id="linearGradient11487" - inkscape:collect="always"> - <stop - id="stop11489" - offset="0" - style="stop-color:#538ac5;stop-opacity:1" /> - <stop - id="stop11491" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11474"> - <stop - style="stop-color:#558bc5;stop-opacity:1" - offset="0" - id="stop11476" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop11478" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11418"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11420" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11422" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11333"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11335" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11337" /> - </linearGradient> - <linearGradient - id="linearGradient11316" - inkscape:collect="always"> - <stop - id="stop11318" - offset="0" - style="stop-color:#edd400;stop-opacity:1" /> - <stop - id="stop11320" - offset="1" - style="stop-color:#f6c93b;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11304"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11306" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11308" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11292"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11294" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11296" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11259"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11261" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11241"> - <stop - style="stop-color:#4f381b;stop-opacity:0.97254902" - offset="0" - id="stop11243" /> - <stop - style="stop-color:#a87b42;stop-opacity:0.96078432" - offset="1" - id="stop11245" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11208"> - <stop - style="stop-color:#c32f00;stop-opacity:1" - offset="0" - id="stop11210" /> - <stop - style="stop-color:#6c1300;stop-opacity:1" - offset="1" - id="stop11212" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11196"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop11198" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop11200" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient10406" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient11206" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11208" - id="linearGradient11214" - x1="22.919643" - y1="33.491837" - x2="22.919643" - y2="36.402832" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.8636363,0,0,0.7777776,39.227274,9.2222251)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11316" - id="radialGradient11271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" - cx="11.873854" - cy="12.147273" - fx="11.594166" - fy="8.8655272" - r="9.975256" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11292" - id="radialGradient11298" - cx="24.00321" - cy="34.70562" - fx="24.00321" - fy="34.70562" - r="12.133846" - gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11314" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient11327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11339" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9166666,0,0,0.9166666,-3.0416663,6.1250012)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11343" - gradientUnits="userSpaceOnUse" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientTransform="matrix(0.9166667,0,0,0.9166666,7.9583347,6.1250012)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11418" - id="linearGradient11424" - x1="22.915459" - y1="34.796875" - x2="22.854631" - y2="29.835938" - gradientUnits="userSpaceOnUse" /> - <filter - inkscape:collect="always" - id="filter11462" - x="-0.078992675" - width="1.1579853" - y="-0.19133781" - height="1.3826756"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.448448" - id="feGaussianBlur11464" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11487" - id="linearGradient11480" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9,0,0,0.9,-2.7500001,6.450001)" /> - <filter - inkscape:collect="always" - id="filter11503" - x="-0.11697236" - width="1.2339447" - y="-0.32830241" - height="1.6566048"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64772565" - id="feGaussianBlur11505" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11474" - id="linearGradient11507" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.9,0,0,0.9,39.749999,6.450001)" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient7925" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient7927" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <linearGradient - id="linearGradient8904" - inkscape:collect="always"> - <stop - id="stop8906" - offset="0" - style="stop-color:#729fcf;stop-opacity:1;" /> - <stop - id="stop8908" - offset="1" - style="stop-color:#25486d;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9283" - id="linearGradient8508" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6666666,0,0,0.6587574,15.166665,0.8540557)" - x1="30.5" - y1="1.7319652" - x2="30.5" - y2="22.781603" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8904" - id="linearGradient8511" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6875001,0,0,0.6767003,14.531249,0.4849495)" - x1="29.466667" - y1="6.8962817" - x2="42.829762" - y2="37.801281" /> - </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="42.212021" - inkscape:cy="27.33968" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#fce94f" - inkscape:window-width="1430" - inkscape:window-height="837" - inkscape:window-x="2" - inkscape:window-y="7" - width="48px" - height="48px" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10" - showguides="true" - inkscape:guide-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid10393" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8511);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 28.646485,1.5 C 26.351226,1.5 24.499999,3.6053736 24.499999,6.2157551 L 24.499999,14.378452 C 24.499999,16.988834 26.351226,19.471324 28.646485,19.471324 L 38.588405,19.471324 C 38.588405,19.471324 38.185679,21.246142 37.169849,22.500949 C 40.739034,22.500949 41.597375,20.059554 41.597375,19.461518 L 43.0625,19.471324 C 45.821256,19.471324 46.5,16.985061 46.5,14.378452 L 46.5,6.2157551 C 46.5,3.6053738 44.648774,1.5 42.353516,1.5 L 28.646485,1.5 z" - id="path8201" - sodipodi:nodetypes="cccccccccccc" /> - <path - style="fill:url(#linearGradient8508);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 28.854165,2.5009492 C 27.043799,2.5009492 25.499999,4.1991556 25.499999,6.4329081 L 25.499999,14.379169 C 25.499999,16.612921 27.043799,18.498627 28.854165,18.498627 L 38.854706,18.498627 C 39.222454,18.499674 39.520313,18.606498 39.521372,18.969885 C 39.521372,18.969885 39.644477,20.147733 39.23261,20.89176 C 40.286203,20.514643 40.854165,18.434645 40.854165,18.434645 C 40.969505,18.353016 41.108134,18.309759 41.249998,18.311127 L 42.833331,18.311127 C 43.997822,18.311127 44.543633,17.937415 44.937499,17.28182 C 45.331364,16.626223 45.499999,15.591478 45.499999,14.379169 L 45.499999,6.4329081 C 45.499999,4.1991558 43.956197,2.5009492 42.145832,2.5009492 L 28.854165,2.5009492 z" - id="path8203" - sodipodi:nodetypes="ccccccccccscccc" /> - <path - transform="matrix(1.8058936,0,0,2.1118921,-0.410926,17.914587)" - d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" - sodipodi:ry="2.3675451" - sodipodi:rx="6.6449099" - sodipodi:cy="10.457643" - sodipodi:cx="10.748654" - id="path17958" - style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.7040925,0,0,1.7040625,-1.6187858,8.7839416)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17960" - style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.58828396;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.5795214,0,0,1.5795214,-0.1480796,10.152022)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11247" - style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.5538448,0,0,1.5538449,0.1550622,10.434085)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11257" - style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11329" - d="M 18.5,24.000001 C 18.5,27.035998 16.036004,29.499999 13.000001,29.499999 C 9.9640002,29.499999 7.5000003,27.035998 7.5000003,24.000001 C 7.5000003,20.964 9.9640002,18.5 13.000001,18.5 C 16.036004,18.5 18.5,20.964 18.5,24.000001 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(1.6039688,0,0,-1.6039689,-0.4367098,45.116428)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17964" - style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.62345362;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path17966" - d="M 17.500001,24.000001 C 17.500001,26.484 15.484002,28.5 13,28.5 C 10.516001,28.5 8.5000003,26.484 8.5000003,24.000001 C 8.5000003,21.516 10.516001,19.5 13,19.5 C 15.484002,19.5 17.500001,21.516 17.500001,24.000001 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(0.8744826,0,0,0.8193141,-2.4902353,7.8660638)" - style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" - d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,33.230703 24,33.230703 C 19.928002,33.230704 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" - id="path11288" - sodipodi:nodetypes="cscscscsccc" /> - <path - sodipodi:nodetypes="cscsc" - id="path17974" - d="M 9,31 C 10.114314,34.996589 13.932744,38 18.5,38 C 23.067256,38 26.885687,34.996589 28,31 C 25.997881,33.58792 22.481559,36.086622 18.5,36.086622 C 14.518443,36.086624 11.00212,33.58792 9,31 z" - style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.0998724,0.5796011,-0.5856851,1.5252629,3.1832579,-1.498334)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11325" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.0998724,0.5796014,-0.5856851,1.5252636,3.1832579,-0.669072)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17976" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.44422138;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-1.498334)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11323" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-0.6690642)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17978" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11482" - d="M 19.499999,24.000001 C 19.499999,26.484 21.515997,28.5 23.999999,28.5 C 26.483998,28.5 28.499999,26.484 28.499999,24.000001 C 28.499999,21.516 26.483998,19.5 23.999999,19.5 C 21.515997,19.5 19.499999,21.516 19.499999,24.000001 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(1.9494392,0,0,1.2877393,4.0769204,13.069868)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11204" - style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(0.9747197,0,0,0.6878263,13.538459,18.695971)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11312" - style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11341" - d="M 29.5,24.000001 C 29.5,27.035998 27.036004,29.499999 24.000002,29.499999 C 20.964001,29.499999 18.500001,27.035998 18.500001,24.000001 C 18.500001,20.964 20.964001,18.5 24.000002,18.5 C 27.036004,18.5 29.5,20.964 29.5,24.000001 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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;filter:url(#filter11462);enable-background:accumulate" - id="path11416" - sodipodi:cx="23.25" - sodipodi:cy="30.1875" - sodipodi:rx="6.8125" - sodipodi:ry="2.8125" - d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" - transform="matrix(0.8520939,0,0,1.474258,-1.3111844,-12.857869)" /> - <path - transform="matrix(1.9494392,0,0,1.2877393,-4.9230796,13.069868)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path7921" - style="opacity:1;fill:url(#linearGradient7925);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(0.9747197,0,0,0.6878263,4.5384591,18.695971)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path7923" - style="opacity:1;fill:url(#linearGradient7927);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - </g> -</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/error.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,327 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="error.svg" - inkscape:export-filename="/home/hbons/Bureaublad/error.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - sodipodi:modified="true"> - <defs - id="defs4"> - <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="perspective47" /> - <linearGradient - inkscape:collect="always" - id="linearGradient8757"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop8759" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop8761" /> - </linearGradient> - <linearGradient - id="linearGradient11316" - inkscape:collect="always"> - <stop - id="stop11318" - offset="0" - style="stop-color:#edd400;stop-opacity:1" /> - <stop - id="stop11320" - offset="1" - style="stop-color:#f6c93b;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11292"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11294" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11296" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11259"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11261" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11241"> - <stop - style="stop-color:#4f381b;stop-opacity:0.97254902" - offset="0" - id="stop11243" /> - <stop - style="stop-color:#a87b42;stop-opacity:0.96078432" - offset="1" - id="stop11245" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11208"> - <stop - style="stop-color:#c32f00;stop-opacity:1" - offset="0" - id="stop11210" /> - <stop - style="stop-color:#6c1300;stop-opacity:1" - offset="1" - id="stop11212" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient10406" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11208" - id="linearGradient11214" - x1="23.151463" - y1="36.068001" - x2="23.151463" - y2="31.364563" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1,0,0,-1,46.004066,64)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11316" - id="radialGradient11271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" - cx="11.873854" - cy="12.147273" - fx="11.594166" - fy="8.8655272" - r="9.975256" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11292" - id="radialGradient11298" - cx="24.00321" - cy="44.452724" - fx="24.00321" - fy="44.452724" - r="12.133846" - gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient11327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <filter - inkscape:collect="always" - id="filter11503" - x="-0.11697236" - width="1.2339447" - y="-0.32830241" - height="1.6566048"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64772565" - id="feGaussianBlur11505" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8757" - id="linearGradient8763" - x1="22" - y1="17.615276" - x2="22" - y2="20.974033" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="50.073667" - inkscape:cy="41.753083" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fill="#fce94f" - inkscape:window-width="1081" - inkscape:window-height="669" - inkscape:window-x="122" - inkscape:window-y="78" - width="48px" - height="48px" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10" - showguides="true" - inkscape:guide-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid10393" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" - d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" - sodipodi:ry="2.3675451" - sodipodi:rx="6.6449099" - sodipodi:cy="10.457643" - sodipodi:cx="10.748654" - id="path17958" - style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17960" - style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11247" - style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11257" - style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17964" - style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.98821175" - inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " - style="opacity:0.37037036000000001;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - id="path11288" - d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" - transform="matrix(1,0,0,-1,-1.9959332,64)" /> - <path - sodipodi:nodetypes="cscsc" - id="path17974" - d="M 11.004066,36.000001 C 12.294325,30.861529 16.715664,27.000001 22.004067,27.000001 C 27.292467,27.000001 31.713809,30.861529 33.004066,36.000001 C 30.685823,32.672675 26.614292,28.897559 22.004067,28.897559 C 17.393842,28.897556 13.32231,32.672675 11.004066,36.000001 z" - style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.4298057,-1.6425985,-1.1582421,-1.5938167,-5.185395,36.479745)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17978" - style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - style="opacity:0.74537037;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 14.03125,18 L 14.03125,19 L 15.03125,19 L 15.03125,18 L 14.03125,18 z M 15.03125,19 L 15.03125,20 L 16.03125,20 L 16.03125,19 L 15.03125,19 z M 16.03125,20 L 16.03125,21 L 17.03125,21 L 17.03125,20 L 16.03125,20 z M 17.03125,20 L 18.03125,20 L 18.03125,19 L 17.03125,19 L 17.03125,20 z M 18.03125,19 L 19.03125,19 L 19.03125,18 L 18.03125,18 L 18.03125,19 z M 17.03125,21 L 17.03125,22 L 18.03125,22 L 18.03125,21 L 17.03125,21 z M 18.03125,22 L 18.03125,23 L 19.03125,23 L 19.03125,22 L 18.03125,22 z M 16.03125,21 L 15.03125,21 L 15.03125,22 L 16.03125,22 L 16.03125,21 z M 25.03125,18 L 25.03125,19 L 26.03125,19 L 26.03125,18 L 25.03125,18 z M 26.03125,19 L 26.03125,20 L 27.03125,20 L 27.03125,19 L 26.03125,19 z M 27.03125,20 L 27.03125,21 L 28.03125,21 L 28.03125,20 L 27.03125,20 z M 28.03125,20 L 29.03125,20 L 29.03125,19 L 28.03125,19 L 28.03125,20 z M 29.03125,19 L 30.03125,19 L 30.03125,18 L 29.03125,18 L 29.03125,19 z M 28.03125,21 L 28.03125,22 L 29.03125,22 L 29.03125,21 L 28.03125,21 z M 29.03125,22 L 29.03125,23 L 30.03125,23 L 30.03125,22 L 29.03125,22 z M 27.03125,21 L 26.03125,21 L 26.03125,22 L 27.03125,22 L 27.03125,21 z M 14.03125,22.03125 L 14.03125,23.03125 L 15.03125,23.03125 L 15.03125,22.03125 L 14.03125,22.03125 z M 25.03125,22.03125 L 25.03125,23.03125 L 26.03125,23.03125 L 26.03125,22.03125 L 25.03125,22.03125 z" - id="path8765" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient8763);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 14.03125,17 L 14.03125,18 L 15.03125,18 L 15.03125,17 L 14.03125,17 z M 15.03125,18 L 15.03125,19 L 16.03125,19 L 16.03125,18 L 15.03125,18 z M 16.03125,19 L 16.03125,20 L 17.03125,20 L 17.03125,19 L 16.03125,19 z M 17.03125,19 L 18.03125,19 L 18.03125,18 L 17.03125,18 L 17.03125,19 z M 18.03125,18 L 19.03125,18 L 19.03125,17 L 18.03125,17 L 18.03125,18 z M 17.03125,20 L 17.03125,21 L 18.03125,21 L 18.03125,20 L 17.03125,20 z M 18.03125,21 L 18.03125,22 L 19.03125,22 L 19.03125,21 L 18.03125,21 z M 16.03125,20 L 15.03125,20 L 15.03125,21 L 16.03125,21 L 16.03125,20 z M 25.03125,17 L 25.03125,18 L 26.03125,18 L 26.03125,17 L 25.03125,17 z M 26.03125,18 L 26.03125,19 L 27.03125,19 L 27.03125,18 L 26.03125,18 z M 27.03125,19 L 27.03125,20 L 28.03125,20 L 28.03125,19 L 27.03125,19 z M 28.03125,19 L 29.03125,19 L 29.03125,18 L 28.03125,18 L 28.03125,19 z M 29.03125,18 L 30.03125,18 L 30.03125,17 L 29.03125,17 L 29.03125,18 z M 28.03125,20 L 28.03125,21 L 29.03125,21 L 29.03125,20 L 28.03125,20 z M 29.03125,21 L 29.03125,22 L 30.03125,22 L 30.03125,21 L 29.03125,21 z M 27.03125,20 L 26.03125,20 L 26.03125,21 L 27.03125,21 L 27.03125,20 z M 14.03125,21.03125 L 14.03125,22.03125 L 15.03125,22.03125 L 15.03125,21.03125 L 14.03125,21.03125 z M 25.03125,21.03125 L 25.03125,22.03125 L 26.03125,22.03125 L 26.03125,21.03125 L 25.03125,21.03125 z" - id="rect7941" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.4298057,-1.6425985,1.1582421,-1.5938167,48.926576,36.479745)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path7888" - style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - </g> -</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/info.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,569 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="info.svg" - inkscape:export-filename="/home/hbons/Bureaublad/info.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - sodipodi:modified="true"> - <defs - id="defs4"> - <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="perspective82" /> - <linearGradient - id="linearGradient11493" - inkscape:collect="always"> - <stop - id="stop11495" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop11497" - offset="1" - style="stop-color:#070808;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient11487" - inkscape:collect="always"> - <stop - id="stop11489" - offset="0" - style="stop-color:#538ac5;stop-opacity:1" /> - <stop - id="stop11491" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11474"> - <stop - style="stop-color:#558bc5;stop-opacity:1" - offset="0" - id="stop11476" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop11478" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11418"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11420" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11422" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11333"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11335" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11337" /> - </linearGradient> - <linearGradient - id="linearGradient11316" - inkscape:collect="always"> - <stop - id="stop11318" - offset="0" - style="stop-color:#edd400;stop-opacity:1" /> - <stop - id="stop11320" - offset="1" - style="stop-color:#f6c93b;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11304"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11306" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11308" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11292"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11294" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11296" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11259"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11261" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11241"> - <stop - style="stop-color:#4f381b;stop-opacity:0.97254902" - offset="0" - id="stop11243" /> - <stop - style="stop-color:#a87b42;stop-opacity:0.96078432" - offset="1" - id="stop11245" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11208"> - <stop - style="stop-color:#c32f00;stop-opacity:1" - offset="0" - id="stop11210" /> - <stop - style="stop-color:#6c1300;stop-opacity:1" - offset="1" - id="stop11212" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11196"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop11198" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop11200" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient10406" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11493" - id="linearGradient11202" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient11206" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11208" - id="linearGradient11214" - x1="22.919643" - y1="33.491837" - x2="22.919643" - y2="36.402832" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11316" - id="radialGradient11271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" - cx="11.873854" - cy="12.147273" - fx="11.594166" - fy="8.8655272" - r="9.975256" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11292" - id="radialGradient11298" - cx="24.00321" - cy="34.70562" - fx="24.00321" - fy="34.70562" - r="12.133846" - gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11310" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11314" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient11327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11339" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11343" - gradientUnits="userSpaceOnUse" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientTransform="translate(10.999931,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11418" - id="linearGradient11424" - x1="22.915459" - y1="34.796875" - x2="22.854631" - y2="29.835938" - gradientUnits="userSpaceOnUse" /> - <filter - inkscape:collect="always" - id="filter11462" - x="-0.078992675" - width="1.1579853" - y="-0.19133781" - height="1.3826756"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.448448" - id="feGaussianBlur11464" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11487" - id="linearGradient11480" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <filter - inkscape:collect="always" - id="filter11503" - x="-0.11697236" - width="1.2339447" - y="-0.32830241" - height="1.6566048"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64772565" - id="feGaussianBlur11505" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11474" - id="linearGradient11507" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8" - inkscape:cx="41.138874" - inkscape:cy="20.946547" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#fce94f" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="0" - width="48px" - height="48px" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10" - showguides="true" - inkscape:guide-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid10393" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" - d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" - sodipodi:ry="2.3675451" - sodipodi:rx="6.6449099" - sodipodi:cy="10.457643" - sodipodi:cx="10.748654" - id="path17958" - style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17960" - style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11247" - style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11257" - style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11329" - d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17964" - style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path17966" - d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path17968" - style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.98821175" - inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " - style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - id="path11288" - d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" - transform="translate(-2.0000685,1.885788e-7)" /> - <path - sodipodi:nodetypes="cscsc" - id="path17974" - d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z" - style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11325" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17976" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11323" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17978" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11482" - d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11204" - style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11300" - style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11312" - style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11341" - d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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;filter:url(#filter11462);enable-background:accumulate" - id="path11416" - sodipodi:cx="23.25" - sodipodi:cy="30.1875" - sodipodi:rx="6.8125" - sodipodi:ry="2.8125" - d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" - transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" /> - </g> -</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/mail.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,976 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="mail.svg" - inkscape:export-filename="/home/hbons/Bureaublad/mail.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - sodipodi:modified="true"> - <defs - id="defs4"> - <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="perspective126" /> - <linearGradient - inkscape:collect="always" - id="linearGradient9188"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop9190" /> - <stop - style="stop-color:#6f726d;stop-opacity:1" - offset="1" - id="stop9192" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9166"> - <stop - style="stop-color:#3b73bb;stop-opacity:1;" - offset="0" - id="stop9168" /> - <stop - style="stop-color:#3b73bb;stop-opacity:0;" - offset="1" - id="stop9170" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9158"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop9160" /> - <stop - style="stop-color:#bcd2e9;stop-opacity:1" - offset="1" - id="stop9162" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9056"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop9058" /> - <stop - style="stop-color:#729fcf;stop-opacity:0;" - offset="1" - id="stop9060" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9040"> - <stop - style="stop-color:#729fcf;stop-opacity:1" - offset="0" - id="stop9042" /> - <stop - style="stop-color:#3465a4;stop-opacity:1" - offset="1" - id="stop9044" /> - </linearGradient> - <linearGradient - id="linearGradient11669" - inkscape:collect="always"> - <stop - id="stop11671" - offset="0" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - id="stop11673" - offset="1" - style="stop-color:#2e3436;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11653"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop11655" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="1" - id="stop11657" /> - </linearGradient> - <linearGradient - id="linearGradient11493" - inkscape:collect="always"> - <stop - id="stop11495" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop11497" - offset="1" - style="stop-color:#070808;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient11487" - inkscape:collect="always"> - <stop - id="stop11489" - offset="0" - style="stop-color:#538ac5;stop-opacity:1" /> - <stop - id="stop11491" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11474"> - <stop - style="stop-color:#558bc5;stop-opacity:1" - offset="0" - id="stop11476" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop11478" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11333"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11335" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11337" /> - </linearGradient> - <linearGradient - id="linearGradient11316" - inkscape:collect="always"> - <stop - id="stop11318" - offset="0" - style="stop-color:#edd400;stop-opacity:1" /> - <stop - id="stop11320" - offset="1" - style="stop-color:#f6c93b;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11304"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11306" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11308" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11292"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11294" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11296" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11259"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11261" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11241"> - <stop - style="stop-color:#4f381b;stop-opacity:0.97254902" - offset="0" - id="stop11243" /> - <stop - style="stop-color:#a87b42;stop-opacity:0.96078432" - offset="1" - id="stop11245" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11208"> - <stop - style="stop-color:#c32f00;stop-opacity:1" - offset="0" - id="stop11210" /> - <stop - style="stop-color:#6c1300;stop-opacity:1" - offset="1" - id="stop11212" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11196"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop11198" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop11200" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient10406" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11493" - id="linearGradient11202" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient11206" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11316" - id="radialGradient11271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" - cx="11.873854" - cy="12.147273" - fx="11.594166" - fy="8.8655272" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11310" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11314" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient11327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11339" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11343" - gradientUnits="userSpaceOnUse" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientTransform="translate(10.999931,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11487" - id="linearGradient11480" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <filter - inkscape:collect="always" - id="filter11503" - x="-0.11697236" - width="1.2339447" - y="-0.32830241" - height="1.6566048"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64772565" - id="feGaussianBlur11505" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11474" - id="linearGradient11507" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11669" - id="radialGradient11659" - cx="14" - cy="19.5" - fx="9.3258924" - fy="14.814685" - r="8" - gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11653" - id="radialGradient11667" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" - cx="14" - cy="19.5" - fx="9.3258924" - fy="14.814685" - r="8" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient8720" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient8722" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11493" - id="linearGradient8985" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient8993" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient8995" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient8997" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient9005" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-34.999933,2.0000002)" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11208" - id="linearGradient9018" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)" - x1="22.919643" - y1="33.491837" - x2="23.746914" - y2="36.579254" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11292" - id="radialGradient9036" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)" - cx="24.00321" - cy="34.70562" - fx="24.00321" - fy="34.70562" - r="12.133846" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9040" - id="linearGradient9046" - x1="24" - y1="37" - x2="44.533825" - y2="40.875" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9056" - id="linearGradient9062" - x1="34.5" - y1="61.35038" - x2="34.5" - y2="33.72963" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9158" - id="linearGradient9164" - x1="29" - y1="35.649048" - x2="29" - y2="32.334484" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-1,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9166" - id="linearGradient9172" - x1="29.125" - y1="36.5625" - x2="25" - y2="31.9375" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9188" - id="linearGradient9194" - x1="37.5" - y1="42.295494" - x2="37.5" - y2="40.792892" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9166" - id="linearGradient9246" - gradientUnits="userSpaceOnUse" - x1="29.78125" - y1="37.09375" - x2="23.984375" - y2="30.40625" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)" - r="8.9687502" - fy="12" - fx="12" - cy="12" - cx="12" - id="radialGradient3210" - xlink:href="#linearGradient3204" - inkscape:collect="always" /> - <linearGradient - y2="18.288521" - x2="12.015625" - y1="10.420408" - x1="12.015625" - gradientUnits="userSpaceOnUse" - id="linearGradient3200" - xlink:href="#linearGradient4130" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="13.251127" - x2="12.750399" - y1="19.780256" - x1="12.726427" - id="linearGradient3197" - xlink:href="#linearGradient3191" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="19.148933" - x2="15.742911" - y1="8.850009" - x1="13.038205" - id="linearGradient3189" - xlink:href="#linearGradient3183" - inkscape:collect="always" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)" - r="8.9687502" - fy="12" - fx="12" - cy="12" - cx="12" - id="radialGradient4152" - xlink:href="#linearGradient4146" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="17.151861" - x2="12.015625" - y1="12.513933" - x1="12.015625" - id="linearGradient4144" - xlink:href="#linearGradient4138" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4130" - inkscape:collect="always"> - <stop - id="stop4132" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - id="stop4134" - offset="1" - style="stop-color:#babdb6;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4138" - inkscape:collect="always"> - <stop - id="stop4140" - offset="0" - style="stop-color:#babdb6;stop-opacity:1;" /> - <stop - id="stop4142" - offset="1" - style="stop-color:#babdb6;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4146" - inkscape:collect="always"> - <stop - id="stop4148" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4150" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3183" - inkscape:collect="always"> - <stop - id="stop3185" - offset="0" - style="stop-color:#888a85;stop-opacity:1;" /> - <stop - id="stop3187" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient3191" - inkscape:collect="always"> - <stop - id="stop3193" - offset="0" - style="stop-color:#555753;stop-opacity:1;" /> - <stop - id="stop3195" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient3204" - inkscape:collect="always"> - <stop - id="stop3206" - offset="0" - style="stop-color:#888a85;stop-opacity:1;" /> - <stop - id="stop3208" - offset="1" - style="stop-color:#888a85;stop-opacity:0;" /> - </linearGradient> - <inkscape:perspective - id="perspective8002" - inkscape:persp3d-origin="12 : 8 : 1" - inkscape:vp_z="24 : 12 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 12 : 1" - sodipodi:type="inkscape:persp3d" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="173.29133" - inkscape:cy="101.88242" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fill="#fce94f" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="0" - width="48px" - height="48px" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10" - showguides="true" - inkscape:guide-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid10393" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" - d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" - sodipodi:ry="2.3675451" - sodipodi:rx="6.6449099" - sodipodi:cy="10.457643" - sodipodi:cx="10.748654" - id="path17958" - style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17960" - style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11247" - style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" - d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z" - id="path11288" - sodipodi:nodetypes="cscscscsccc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11257" - style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11329" - d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:nodetypes="cscsc" - id="path17974" - d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z" - style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17964" - style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path17966" - d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path17968" - style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11325" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17976" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11323" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17978" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11482" - d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11204" - style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11300" - style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11312" - style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11341" - d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path8714" - style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path8716" - style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path8718" - style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <g - id="g8029" - inkscape:label="Layer 1" - transform="translate(24.000001,25)"> - <rect - ry="1.5292913" - rx="1.4791573" - y="4.5005183" - x="2.5008683" - height="14.994927" - width="18.999125" - id="rect3198" - style="opacity:1;fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3189);stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - ry="1.325834" - rx="1.3235176" - y="5.5" - x="3.5" - height="13" - width="17" - id="rect3202" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 3.96875,5.53125 C 3.7197609,5.53125 3.53125,5.7077743 3.53125,6.03125 L 3.53125,17.96875 C 3.53125,18.292225 3.7197609,18.46875 3.96875,18.46875 L 20.03125,18.46875 C 20.280239,18.46875 20.46875,18.292227 20.46875,17.96875 L 20.46875,6.03125 C 20.46875,5.7077741 20.280239,5.53125 20.03125,5.53125 L 3.96875,5.53125 z" - inkscape:href="#rect3198" - id="path4119" - style="opacity:0.4;fill:url(#radialGradient3210);fill-opacity:1;stroke:url(#radialGradient4152);stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - xlink:href="#rect3198" - inkscape:original="M 3.96875 4.5 C 3.1492968 4.5 2.5 5.1840228 2.5 6.03125 L 2.5 17.96875 C 2.5 18.815977 3.1492967 19.5 3.96875 19.5 L 20.03125 19.5 C 20.850703 19.5 21.5 18.815978 21.5 17.96875 L 21.5 6.03125 C 21.5 5.1840226 20.850703 4.5 20.03125 4.5 L 3.96875 4.5 z " - inkscape:radius="-1.0251163" - sodipodi:type="inkscape:offset" /> - <path - sodipodi:nodetypes="cccccc" - id="path4113" - d="M 20.173644,19.500002 L 3.8263566,19.500002 C 3.0915545,19.500002 2.4999999,18.840678 2.4999999,18.021697 L 11.981112,10.500001 L 21.499999,18.021697 C 21.499999,18.840678 20.908445,19.500002 20.173644,19.500002 z" - style="fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3197);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" /> - <path - transform="matrix(1.0093633,0,0,1,-3.4234557e-2,0)" - d="M 11.96875,11.71875 L 3.65625,18.3125 C 3.718416,18.374228 3.7395135,18.53125 3.8125,18.53125 L 20.1875,18.53125 C 20.260486,18.53125 20.281584,18.374227 20.34375,18.3125 L 11.96875,11.71875 z" - inkscape:href="#path4113" - id="path4117" - style="opacity:1;fill:url(#linearGradient4144);fill-opacity:1;stroke:#ffffff;stroke-width:0.9953509;stroke-miterlimit:4;stroke-opacity:1" - xlink:href="#path4113" - inkscape:original="M 11.96875 10.5 L 2.5 18.03125 C 2.5 18.850231 3.0776979 19.5 3.8125 19.5 L 20.1875 19.5 C 20.922301 19.5 21.500001 18.850232 21.5 18.03125 L 11.96875 10.5 z " - inkscape:radius="-0.96695226" - sodipodi:type="inkscape:offset" /> - <path - sodipodi:nodetypes="ccczcc" - id="path4122" - d="M 20.145067,4.5000001 L 3.8242121,4.5000001 C 3.0905983,4.5000001 2.5000001,5.1593244 2.5000001,5.9783056 C 2.5000001,5.9783056 9.4173792,13.5 12.043511,13.5 C 14.708468,13.5 21.469279,5.9783056 21.469279,5.9783056 C 21.469279,5.1593244 20.878681,4.5000001 20.145067,4.5000001 z" - style="fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cccccz" - id="path4124" - d="M 12.087485,11.46875 C 10.301616,11.46875 3.34375,18.34375 3.34375,18.34375 C 3.4413342,18.582586 3.6045666,18.75 3.8125,18.75 L 20.1875,18.75 C 20.395433,18.75 20.558666,18.582586 20.65625,18.34375 C 20.65625,18.34375 13.912791,11.46875 12.087485,11.46875 z" - style="opacity:1;fill:url(#linearGradient3200);fill-opacity:1;stroke:#ffffff;stroke-width:1.03183317;stroke-miterlimit:4;stroke-opacity:1" - transform="matrix(0.9819495,0,0,-0.956515,0.2166063,23.434657)" /> - </g> - </g> -</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/question.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,655 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="question.svg" - inkscape:export-filename="/home/hbons/Bureaublad/question.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - sodipodi:modified="true"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient8711"> - <stop - style="stop-color:#a5c2e1;stop-opacity:1" - offset="0" - id="stop8713" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop8715" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11586"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11588" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11590" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11570"> - <stop - style="stop-color:#0a387a;stop-opacity:1" - offset="0" - id="stop11572" /> - <stop - style="stop-color:#368eec;stop-opacity:1" - offset="1" - id="stop11574" /> - </linearGradient> - <linearGradient - id="linearGradient11493" - inkscape:collect="always"> - <stop - id="stop11495" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop11497" - offset="1" - style="stop-color:#070808;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient11487" - inkscape:collect="always"> - <stop - id="stop11489" - offset="0" - style="stop-color:#538ac5;stop-opacity:1" /> - <stop - id="stop11491" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11474"> - <stop - style="stop-color:#558bc5;stop-opacity:1" - offset="0" - id="stop11476" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop11478" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11418"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11420" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11422" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11333"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11335" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11337" /> - </linearGradient> - <linearGradient - id="linearGradient11316" - inkscape:collect="always"> - <stop - id="stop11318" - offset="0" - style="stop-color:#edd400;stop-opacity:1" /> - <stop - id="stop11320" - offset="1" - style="stop-color:#f6c93b;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11304"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11306" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11308" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11292"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11294" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11296" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11259"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11261" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11241"> - <stop - style="stop-color:#4f381b;stop-opacity:0.97254902" - offset="0" - id="stop11243" /> - <stop - style="stop-color:#a87b42;stop-opacity:0.96078432" - offset="1" - id="stop11245" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11208"> - <stop - style="stop-color:#c32f00;stop-opacity:1" - offset="0" - id="stop11210" /> - <stop - style="stop-color:#6c1300;stop-opacity:1" - offset="1" - id="stop11212" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11196"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop11198" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop11200" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient10406" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11493" - id="linearGradient11202" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient11206" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11208" - id="linearGradient11214" - x1="22.919643" - y1="33.491837" - x2="22.919643" - y2="36.402832" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11316" - id="radialGradient11271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" - cx="11.873854" - cy="12.147273" - fx="11.594166" - fy="8.8655272" - r="9.975256" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11292" - id="radialGradient11298" - cx="24.00321" - cy="34.70562" - fx="24.00321" - fy="34.70562" - r="12.133846" - gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11310" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11314" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient11327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11339" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11343" - gradientUnits="userSpaceOnUse" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientTransform="translate(10.999931,1.885788e-7)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11418" - id="linearGradient11424" - x1="22.915459" - y1="34.796875" - x2="22.854631" - y2="29.835938" - gradientUnits="userSpaceOnUse" /> - <filter - inkscape:collect="always" - id="filter11462" - x="-0.078992675" - width="1.1579853" - y="-0.19133781" - height="1.3826756"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.448448" - id="feGaussianBlur11464" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11487" - id="linearGradient11480" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0000685,1.885788e-7)" /> - <filter - inkscape:collect="always" - id="filter11503" - x="-0.11697236" - width="1.2339447" - y="-0.32830241" - height="1.6566048"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64772565" - id="feGaussianBlur11505" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11474" - id="linearGradient11507" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="linearGradient11576" - x1="48.140072" - y1="17.348257" - x2="36.310215" - y2="9.2333107" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-2)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11586" - id="linearGradient11592" - x1="43.267006" - y1="14" - x2="54.781696" - y2="18.949747" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="linearGradient8706" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-2)" - x1="46.202572" - y1="17.035757" - x2="37.247715" - y2="14.5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11586" - id="linearGradient8708" - gradientUnits="userSpaceOnUse" - x1="43.267006" - y1="14" - x2="54.781696" - y2="18.949747" - gradientTransform="translate(0,-2)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8711" - id="linearGradient8717" - x1="47.873451" - y1="13.986977" - x2="41.067547" - y2="12.484375" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="48.898255" - inkscape:cy="29.543471" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#fce94f" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="0" - width="48px" - height="48px" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10" - showguides="true" - inkscape:guide-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid10393" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" - d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" - sodipodi:ry="2.3675451" - sodipodi:rx="6.6449099" - sodipodi:cy="10.457643" - sodipodi:cx="10.748654" - id="path17958" - style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17960" - style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11247" - style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11257" - style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11329" - d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17964" - style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path17966" - d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.4367989,0,0,1.5452869,-6.1538483,7.0838437)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path17968" - style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.98821175" - inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " - style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - id="path11288" - d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" - transform="translate(-2.0000685,1.885788e-7)" /> - <path - sodipodi:nodetypes="cscsc" - id="path17974" - d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z" - style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11325" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17976" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11323" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17978" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11482" - d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.436799,0,0,1.5452869,5.8461508,7.0838441)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11204" - style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,3.3076893,12.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11300" - style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.4620795,0,0,1.0301913,15.30769,12.055896)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11312" - style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11341" - d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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;filter:url(#filter11462);enable-background:accumulate" - id="path11416" - sodipodi:cx="23.25" - sodipodi:cy="30.1875" - sodipodi:rx="6.8125" - sodipodi:ry="2.8125" - d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" - transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" /> - <path - style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8706);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L" - d="M 40.5625,1 C 38.874477,1 37.314933,1.4226492 36.09375,2.28125 C 34.872565,3.1398509 34,4.5416345 34,6.125 C 33.999998,7.9320376 35.500885,9 37.375,9 C 38.972866,9 40.03125,8.6239064 40.03125,6.9375 C 40.03125,5.8358747 41.03125,5.7736538 41.03125,7 C 41.031252,7.5731772 40.720035,7.6923202 40.46875,8.03125 C 39.556981,9.1888218 39.147246,9.72288 38.8125,10.21875 C 37.953228,11.557311 37,12.936936 37,14.46875 C 36.999998,17.077704 39.59375,16.96875 39.59375,16.96875 C 39.236295,17.077217 38.886105,17.297356 38.5625,17.5625 C 38.550686,17.570277 38.542964,17.585834 38.53125,17.59375 C 38.424354,17.683359 38.318146,17.772605 38.21875,17.875 C 37.480053,18.516861 37,19.445308 37,20.5 C 37,22.432 38.568,24 40.5,24 C 42.432,24 44.000001,22.432 44,20.5 C 44,18.95785 43.010761,17.653479 41.625,17.1875 C 41.444379,17.110901 41.249634,17.062378 41.0625,17 C 41.763982,16.748864 42.068061,15.931257 42.0625,15.1875 C 42.051002,14.139574 42.280169,13.716262 42.375,13.5 C 43.426067,11.600594 44.954699,11.097944 46.125,9.75 C 46.749619,8.8343856 47,7.7477245 47,6.75 C 47.000001,5.1014533 46.28805,3.5482598 45.09375,2.53125 C 43.89945,1.5142402 42.298617,1 40.5625,1 z" - id="path3346" - sodipodi:nodetypes="csssssccscsscsssccsccssc" /> - <path - style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8717);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L" - d="M 40.5625 1.96875 C 39.03732 1.96875 37.680971 2.3732797 36.65625 3.09375 C 35.664894 3.7907611 34.96875 4.9000488 34.96875 6.125 C 34.968749 6.758422 35.192622 7.1443716 35.59375 7.46875 C 35.994878 7.7931284 36.623252 8.03125 37.375 8.03125 C 38.097392 8.03125 38.596706 7.9024002 38.78125 7.78125 C 38.965794 7.6600998 39.0625 7.5766139 39.0625 6.9375 C 39.0625 6.5144976 39.145775 6.1274407 39.375 5.78125 C 39.604225 5.4350593 40.027732 5.1249297 40.53125 5.125 C 41.034768 5.1250703 41.462039 5.4531849 41.6875 5.8125 C 41.912961 6.1718151 42 6.5608281 42 7 C 42.000002 7.4631574 41.827288 7.9211544 41.625 8.1875 C 41.422712 8.453846 41.293456 8.566387 41.25 8.625 C 40.340574 9.779598 39.934939 10.290878 39.625 10.75 C 38.753163 12.108134 37.96875 13.34166 37.96875 14.46875 C 37.968749 15.449931 38.315321 15.62655 38.71875 15.8125 C 39.583542 16.168963 40.115403 16.105798 40.96875 15.84375 C 41.047882 15.684154 41.095517 15.423765 41.09375 15.1875 C 41.08066 13.994488 41.418028 13.209423 41.46875 13.09375 C 41.488628 13.071983 41.509483 13.051128 41.53125 13.03125 C 42.136141 11.938138 42.896246 11.218183 43.59375 10.65625 C 44.265082 10.115402 44.835184 9.717613 45.3125 9.1875 C 45.803013 8.468469 46.03125 7.5845097 46.03125 6.75 C 46.031251 5.3823316 45.435469 4.1044628 44.46875 3.28125 C 43.478484 2.4379857 42.105973 1.96875 40.5625 1.96875 z M 40.5 18 C 39.12 18 37.999999 19.12 38 20.5 C 38 21.88 39.119998 23 40.5 23 C 41.88 23 43.000002 21.88 43 20.5 C 43 19.12 41.879998 17.999999 40.5 18 z " - id="path11582" /> - </g> -</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/warning.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,558 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="warning.svg" - inkscape:export-filename="/home/hbons/Bureaublad/warning.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - sodipodi:modified="true"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient8730"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop8732" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop8734" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8716"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop8718" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop8720" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8706"> - <stop - style="stop-color:#391f17;stop-opacity:1" - offset="0" - id="stop8708" /> - <stop - style="stop-color:#841c0e;stop-opacity:1" - offset="1" - id="stop8710" /> - </linearGradient> - <linearGradient - id="linearGradient11493" - inkscape:collect="always"> - <stop - id="stop11495" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - id="stop11497" - offset="1" - style="stop-color:#070808;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient11487" - inkscape:collect="always"> - <stop - id="stop11489" - offset="0" - style="stop-color:#538ac5;stop-opacity:1" /> - <stop - id="stop11491" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11474"> - <stop - style="stop-color:#558bc5;stop-opacity:1" - offset="0" - id="stop11476" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop11478" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11333"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11335" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11337" /> - </linearGradient> - <linearGradient - id="linearGradient11316" - inkscape:collect="always"> - <stop - id="stop11318" - offset="0" - style="stop-color:#edd400;stop-opacity:1" /> - <stop - id="stop11320" - offset="1" - style="stop-color:#f6c93b;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11304"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11306" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11308" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11259"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11261" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11241"> - <stop - style="stop-color:#4f381b;stop-opacity:0.97254902" - offset="0" - id="stop11243" /> - <stop - style="stop-color:#a87b42;stop-opacity:0.96078432" - offset="1" - id="stop11245" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11196"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop11198" /> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="1" - id="stop11200" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11241" - id="linearGradient10406" - gradientUnits="userSpaceOnUse" - x1="14.365882" - y1="19.515574" - x2="11.215483" - y2="8.2263536" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11493" - id="linearGradient11202" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11196" - id="linearGradient11206" - gradientUnits="userSpaceOnUse" - x1="9.7069349" - y1="8.5495605" - x2="9.9879932" - y2="10.59237" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11316" - id="radialGradient11271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" - cx="11.873854" - cy="12.147273" - fx="11.594166" - fy="8.8655272" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11310" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11304" - id="linearGradient11314" - gradientUnits="userSpaceOnUse" - x1="8.9530411" - y1="6.2636566" - x2="10.732871" - y2="9.6526775" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11259" - id="radialGradient11327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" - cx="11.736404" - cy="7.3689327" - fx="11.800528" - fy="1.1734189" - r="9.975256" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11339" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0833276,0,0,1.1666668,-3.9582687,-5.2500011)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11333" - id="linearGradient11343" - gradientUnits="userSpaceOnUse" - x1="14.6875" - y1="11.875" - x2="20.6875" - y2="22.5625" - gradientTransform="matrix(1.0833391,0,0,1.1666668,10.041531,-5.2500011)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11487" - id="linearGradient11480" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0999932,0,0,1.2,-4.2499165,-5.8999987)" /> - <filter - inkscape:collect="always" - id="filter11503" - x="-0.11697236" - width="1.2339447" - y="-0.32830241" - height="1.6566048"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64772565" - id="feGaussianBlur11505" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11474" - id="linearGradient11507" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.1000069,0,0,1.2,48.250086,-5.8999987)" - x1="14.728965" - y1="15.785595" - x2="16.957989" - y2="24.104429" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8716" - id="radialGradient8722" - cx="44.7687" - cy="4.7732658" - fx="44.7687" - fy="4.7732658" - r="9.0598059" - gradientTransform="matrix(1.7013896,0,0,1.0125342,-31.400301,2.4538538)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8730" - id="linearGradient8736" - x1="45.837402" - y1="21.754553" - x2="45.837402" - y2="19.126131" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8706" - id="radialGradient8738" - cx="44.7687" - cy="21.608887" - fx="44.7687" - fy="21.608887" - r="9.0598059" - gradientTransform="matrix(1.3094421,0,0,0.7792777,-13.85332,2.5000315)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.8284271" - inkscape:cx="64.2628" - inkscape:cy="40.347011" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#fce94f" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="0" - width="48px" - height="48px" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10" - showguides="true" - inkscape:guide-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid10393" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" - d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" - sodipodi:ry="2.3675451" - sodipodi:rx="6.6449099" - sodipodi:cy="10.457643" - sodipodi:cx="10.748654" - id="path17958" - style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17960" - style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11247" - style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path11257" - style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11329" - d="M 21.499929,17.500003 C 21.499929,21.364001 18.587949,24.500001 14.999965,24.500001 C 11.411983,24.500001 8.4999987,21.364001 8.4999987,17.500003 C 8.4999987,13.636 11.411983,10.5 14.999965,10.5 C 18.587949,10.5 21.499929,13.636 21.499929,17.500003 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" - d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" - sodipodi:ry="9.975256" - sodipodi:rx="9.975256" - sodipodi:cy="10.983024" - sodipodi:cx="11.806158" - id="path17964" - style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path17966" - d="M 20.499931,17.500002 C 20.499931,20.812 18.03595,23.5 14.999965,23.5 C 11.963984,23.5 9.499999,20.812 9.499999,17.500002 C 9.499999,14.188 11.963984,11.5 14.999965,11.5 C 18.03595,11.5 20.499931,14.188 20.499931,17.500002 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.9241248,0,0,1.5452869,-12.384324,4.083844)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path17968" - style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5298496,-13.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11325" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5298496,-12.968448)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17976" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-13.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path11323" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - sodipodi:open="true" - sodipodi:end="5.6135639" - sodipodi:start="3.5782199" - transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)" - d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" - sodipodi:ry="1.7410715" - sodipodi:rx="1.2276785" - sodipodi:cy="9.2232141" - sodipodi:cx="8.3258924" - id="path17978" - style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11482" - d="M 23.49993,17.500002 C 23.49993,20.812 25.963942,23.5 28.999965,23.5 C 32.035984,23.5 34.499999,20.812 34.499999,17.500002 C 34.499999,14.188 32.035984,11.5 28.999965,11.5 C 25.963942,11.5 23.49993,14.188 23.49993,17.500002 z" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - transform="matrix(2.9241927,0,0,1.5452869,-0.3849832,4.0838437)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11204" - style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.9494053,0,0,1.0301913,-2.922785,9.0558958)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11300" - style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - transform="matrix(1.9494735,0,0,1.0301913,9.0765518,9.0558958)" - d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" - sodipodi:ry="1.9413869" - sodipodi:rx="1.0259361" - sodipodi:cy="9.6526775" - sodipodi:cx="9.7069349" - id="path11312" - style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" - sodipodi:type="arc" /> - <path - id="path11341" - d="M 35.5,17.500003 C 35.5,21.364001 32.587988,24.500001 28.999966,24.500001 C 25.411946,24.500001 22.49993,21.364001 22.49993,17.500003 C 22.49993,13.636 25.411946,10.5 28.999966,10.5 C 32.587988,10.5 35.5,13.636 35.5,17.500003 z" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="path8714" - sodipodi:cx="44.7687" - sodipodi:cy="16.003418" - sodipodi:rx="9.0598059" - sodipodi:ry="5.3916893" - d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" - transform="matrix(1.0485875,0,0,1.2982945,-25.443899,12.222851)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#radialGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="path7934" - sodipodi:cx="44.7687" - sodipodi:cy="16.003418" - sodipodi:rx="9.0598059" - sodipodi:ry="5.3916893" - d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" - transform="matrix(0.93821,0,0,1.1128238,-20.50244,15.191015)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8736);stroke-width:0.80703287999999984;stroke-linecap:square;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="path8728" - sodipodi:cx="44.7687" - sodipodi:cy="16.003418" - sodipodi:rx="9.0598059" - sodipodi:ry="5.3916893" - d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" - transform="matrix(1.1037765,0,0,1.3910297,-27.91464,10.738771)" /> - </g> -</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/dialogs/scalable/auth.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,850 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="auth.svg" + inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/pidgin-mtn/pidgin/pixmaps/dialogs/64/auth.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient9188"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop9190" /> + <stop + style="stop-color:#6f726d;stop-opacity:1" + offset="1" + id="stop9192" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9166"> + <stop + style="stop-color:#3b73bb;stop-opacity:1;" + offset="0" + id="stop9168" /> + <stop + style="stop-color:#3b73bb;stop-opacity:0;" + offset="1" + id="stop9170" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9158"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop9160" /> + <stop + style="stop-color:#bcd2e9;stop-opacity:1" + offset="1" + id="stop9162" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9056"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop9058" /> + <stop + style="stop-color:#729fcf;stop-opacity:0;" + offset="1" + id="stop9060" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9040"> + <stop + style="stop-color:#729fcf;stop-opacity:1" + offset="0" + id="stop9042" /> + <stop + style="stop-color:#3465a4;stop-opacity:1" + offset="1" + id="stop9044" /> + </linearGradient> + <linearGradient + id="linearGradient11669" + inkscape:collect="always"> + <stop + id="stop11671" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop11673" + offset="1" + style="stop-color:#2e3436;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11653"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop11655" /> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="1" + id="stop11657" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11669" + id="radialGradient11659" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" + gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11653" + id="radialGradient11667" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient8720" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient8722" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient8985" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient8993" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient8995" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient8997" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient9005" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-34.999933,2.0000002)" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient9018" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)" + x1="22.919643" + y1="33.491837" + x2="23.746914" + y2="36.579254" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient9036" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9040" + id="linearGradient9046" + x1="24" + y1="37" + x2="44.533825" + y2="40.875" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9056" + id="linearGradient9062" + x1="34.5" + y1="61.35038" + x2="34.5" + y2="33.72963" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9158" + id="linearGradient9164" + x1="29" + y1="35.649048" + x2="29" + y2="32.334484" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9166" + id="linearGradient9172" + x1="29.125" + y1="36.5625" + x2="25" + y2="31.9375" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9188" + id="linearGradient9194" + x1="37.5" + y1="42.295494" + x2="37.5" + y2="40.792892" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9166" + id="linearGradient9246" + gradientUnits="userSpaceOnUse" + x1="29.78125" + y1="37.09375" + x2="23.984375" + y2="30.40625" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="274.07651" + inkscape:cy="97.498181" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" + d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z" + id="path11288" + sodipodi:nodetypes="cscscscsccc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z" + style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + style="opacity:0.80000000000000004;fill:url(#radialGradient11659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 22.1875,18.537724 C 22.1875,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22.53125,14.293548 22.1875,18.537724 z" + id="path11647" + sodipodi:nodetypes="csssc" /> + <rect + style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="rect11649" + width="5.1303458" + height="1.0018942" + x="6.2930641" + y="14.833013" + rx="0.51303452" + ry="0.50094712" + transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" /> + <rect + style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="rect11651" + width="5.1303449" + height="1.0018942" + x="31.000992" + y="25.932768" + rx="0.51303446" + ry="0.50094712" + transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" /> + <path + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.99999994000000003;stroke-linecap:square;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,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z" + id="path11661" /> + <path + style="opacity:0.80000000000000004;fill:url(#radialGradient11667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 21.849813,22.809207 21.78125,18.600224 C 21.711014,14.288526 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z" + id="path11663" + sodipodi:nodetypes="csssc" /> + <path + transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8714" + style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8716" + style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8718" + style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9046);stroke-width:0.99999994000000003;stroke-linecap:square;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="rect9038" + width="21.999998" + height="15" + x="23.499998" + y="29.5" + rx="1.331211" + ry="1.2101918" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0060635" + inkscape:original="M 25.71875 29.5 C 25.048304 29.5 24.5 30.048304 24.5 30.71875 L 24.5 43.28125 C 24.5 43.951696 25.048304 44.5 25.71875 44.5 L 43.28125 44.5 C 43.951696 44.5 44.5 43.951698 44.5 43.28125 L 44.5 30.71875 C 44.5 30.048304 43.951698 29.5 43.28125 29.5 L 25.71875 29.5 z " + style="opacity:1;fill:url(#linearGradient9062);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.94868326000000003;stroke-linecap:square;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="path9052" + d="M 25.71875,30.5 C 25.596823,30.5 25.5,30.596823 25.5,30.71875 L 25.5,43.28125 C 25.5,43.403177 25.596823,43.5 25.71875,43.5 L 43.28125,43.5 C 43.403179,43.5 43.5,43.403181 43.5,43.28125 L 43.5,30.71875 C 43.5,30.596821 43.403181,30.5 43.28125,30.5 L 25.71875,30.5 z" + transform="matrix(1.1111112,0,0,1,-3.833336,0)" /> + <rect + style="opacity:1;fill:url(#linearGradient9164);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9246);stroke-width:1;stroke-linecap:square;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="rect9064" + width="5" + height="6" + x="25.5" + y="31.5" + rx="0.53033006" + ry="0.53033006" /> + <path + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 28 34 C 27.448 34 27 34.447999 27 35 C 27 35.552 27.448001 35.999999 28 36 C 28.552 36 29 35.551999 29 35 C 29 34.448 28.552001 33.999999 28 34 z M 28 36 C 27.448 36 27 36.448 27 37 C 27 37 29 37 29 37 C 29 36.448 28.552001 36 28 36 z " + id="path9242" /> + <path + style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed" + d="M 33.000002,33.459106 L 33.308145,33.459106 L 33.308145,33.96439 L 33.761924,33.96439 L 33.761924,33.459106 L 34.069179,33.459106 L 34.069179,34.784921 L 33.761924,34.784921 L 33.761924,34.222804 L 33.308145,34.222804 L 33.308145,34.784921 L 33.000002,34.784921 L 33.000002,33.459106 M 34.237014,33.790338 L 34.523845,33.790338 L 34.764499,34.465233 L 34.968743,33.790338 L 35.254686,33.790338 L 34.878165,34.879051 C 34.840276,34.989757 34.796171,35.067015 34.74585,35.110824 C 34.695529,35.155225 34.629223,35.177425 34.546934,35.177426 L 34.380874,35.177426 L 34.380874,34.968741 L 34.470564,34.968741 C 34.519109,34.968741 34.554333,34.960157 34.576238,34.942988 C 34.598734,34.92582 34.616199,34.895035 34.628631,34.850634 L 34.636624,34.823106 L 34.237014,33.790338 M 35.420746,33.403161 L 35.706688,33.403161 L 35.706688,34.784921 L 35.420746,34.784921 L 35.420746,33.403161 M 35.985527,33.403161 L 36.271469,33.403161 L 36.271469,34.155314 L 36.600925,33.790338 L 36.933045,33.790338 L 36.496139,34.24678 L 36.967677,34.784921 L 36.620461,34.784921 L 36.271469,34.370215 L 36.271469,34.784921 L 35.985527,34.784921 L 35.985527,33.403161 M 37.919635,34.284965 L 37.919635,34.375543 L 37.250956,34.375543 C 37.257468,34.450137 37.281444,34.506083 37.322886,34.543379 C 37.364918,34.580676 37.423231,34.599325 37.497826,34.599324 C 37.55821,34.599325 37.61978,34.589556 37.682534,34.57002 C 37.745878,34.549891 37.810704,34.519699 37.87701,34.479442 L 37.87701,34.724535 C 37.80952,34.752952 37.741734,34.774265 37.673654,34.788473 C 37.606163,34.803273 37.538674,34.810673 37.471185,34.810673 C 37.308973,34.810673 37.182874,34.765088 37.092888,34.673918 C 37.003494,34.582156 36.958797,34.453689 36.958797,34.288517 C 36.958797,34.126306 37.002902,33.998727 37.091112,33.90578 C 37.179322,33.812835 37.300685,33.766362 37.455201,33.766361 C 37.596099,33.766362 37.708582,33.813427 37.792648,33.907556 C 37.877305,34.001687 37.919634,34.12749 37.919635,34.284965 M 37.625701,34.179291 C 37.6257,34.118906 37.609715,34.070361 37.577747,34.033655 C 37.54637,33.996359 37.504929,33.977711 37.453425,33.97771 C 37.398367,33.977711 37.353374,33.995175 37.318445,34.030103 C 37.284108,34.064441 37.2625,34.11417 37.25362,34.179291 L 37.625701,34.179291 M 39.193057,33.972382 C 39.241601,33.972383 39.278306,33.960542 39.303171,33.936861 C 39.328627,33.913182 39.341355,33.878253 39.341356,33.832075 C 39.341355,33.786491 39.328627,33.751858 39.303171,33.728176 C 39.278306,33.703905 39.241601,33.691769 39.193057,33.691767 L 39.023445,33.691767 L 39.023445,33.972382 L 39.193057,33.972382 M 39.203713,34.552259 C 39.265874,34.55226 39.312347,34.537755 39.343132,34.508746 C 39.374508,34.479738 39.390196,34.435929 39.390197,34.377319 C 39.390196,34.319894 39.374508,34.276974 39.343132,34.248556 C 39.312347,34.219548 39.265874,34.205044 39.203713,34.205043 L 39.023445,34.205043 L 39.023445,34.552259 L 39.203713,34.552259 M 39.489655,34.075392 C 39.55596,34.096706 39.607169,34.136074 39.643283,34.193499 C 39.679395,34.250925 39.697451,34.321374 39.697452,34.404848 C 39.697451,34.532723 39.658378,34.628037 39.580234,34.69079 C 39.502679,34.753544 39.384572,34.784921 39.225913,34.784921 L 38.715302,34.784921 L 38.715302,33.459106 L 39.177072,33.459106 C 39.342835,33.459107 39.462718,33.486932 39.536721,33.54258 C 39.611313,33.598231 39.64861,33.687329 39.648611,33.809874 C 39.64861,33.874405 39.634994,33.929462 39.607762,33.975046 C 39.581121,34.02004 39.541752,34.053489 39.489655,34.075392 M 40.375012,33.993694 C 40.311666,33.993695 40.263417,34.019152 40.230265,34.070064 C 40.197111,34.120386 40.180535,34.193204 40.180535,34.288517 C 40.180535,34.383832 40.197111,34.456946 40.230265,34.507858 C 40.263417,34.55818 40.311666,34.58334 40.375012,34.58334 C 40.437765,34.58334 40.485422,34.55818 40.517983,34.507858 C 40.551135,34.456946 40.567712,34.383832 40.567712,34.288517 C 40.567712,34.193204 40.551135,34.120386 40.517983,34.070064 C 40.485422,34.019152 40.437765,33.993695 40.375012,33.993694 M 40.375012,33.766361 C 40.529527,33.766362 40.650001,33.812539 40.736436,33.904892 C 40.822869,33.997247 40.866086,34.125122 40.866087,34.288517 C 40.866086,34.451913 40.822869,34.579788 40.736436,34.672142 C 40.650001,34.764496 40.529527,34.810673 40.375012,34.810673 C 40.221088,34.810673 40.100317,34.764496 40.0127,34.672142 C 39.925673,34.579788 39.88216,34.451913 39.882161,34.288517 C 39.88216,34.125122 39.925673,33.997247 40.0127,33.904892 C 40.100317,33.812539 40.221088,33.766362 40.375012,33.766361 M 41.975225,34.179291 L 41.975225,34.784921 L 41.687506,34.784921 L 41.687506,34.68635 L 41.687506,34.321374 C 41.687505,34.235533 41.685729,34.176331 41.682178,34.14377 C 41.678625,34.11121 41.672705,34.087233 41.664418,34.07184 C 41.653169,34.051121 41.637776,34.035136 41.618241,34.023887 C 41.599295,34.012048 41.577687,34.006127 41.553415,34.006127 C 41.493621,34.006127 41.446556,34.03188 41.41222,34.083385 C 41.378475,34.134298 41.361602,34.205044 41.361603,34.295621 L 41.361603,34.784921 L 41.07566,34.784921 L 41.07566,33.790338 L 41.361603,33.790338 L 41.361603,33.935973 C 41.404819,33.877957 41.4507,33.835332 41.499246,33.808098 C 41.54779,33.780274 41.601367,33.766362 41.659977,33.766361 C 41.762987,33.766362 41.841133,33.801587 41.894415,33.872036 C 41.948287,33.942486 41.975224,34.044904 41.975225,34.179291 M 42.939615,33.821418 L 42.939615,34.06296 C 42.878637,34.034544 42.819435,34.013232 42.762011,33.999023 C 42.705177,33.984815 42.6516,33.977711 42.601279,33.97771 C 42.546813,33.977711 42.506261,33.985407 42.47962,34.000799 C 42.453571,34.0156 42.440547,34.038688 42.440547,34.070064 C 42.440547,34.095521 42.450315,34.115058 42.469852,34.128674 C 42.48998,34.142291 42.526093,34.152355 42.578191,34.158866 L 42.62792,34.166858 C 42.774739,34.18758 42.873309,34.22162 42.923631,34.268981 C 42.974543,34.316342 42.999999,34.39064 43,34.491874 C 42.999999,34.597845 42.964775,34.67747 42.894326,34.730751 C 42.823876,34.784033 42.718793,34.810673 42.579079,34.810673 C 42.519877,34.810673 42.458603,34.805345 42.395258,34.794689 C 42.332505,34.784625 42.267975,34.769232 42.20167,34.748512 L 42.20167,34.50697 C 42.258503,34.537755 42.316816,34.560844 42.37661,34.576236 C 42.436995,34.591628 42.497972,34.599325 42.559542,34.599324 C 42.615191,34.599325 42.657224,34.59074 42.685641,34.573572 C 42.714057,34.556404 42.728265,34.530947 42.728266,34.497202 C 42.728265,34.468786 42.718497,34.447769 42.698961,34.434153 C 42.679424,34.419945 42.640648,34.408992 42.582631,34.401296 L 42.532014,34.394192 C 42.40473,34.376432 42.315336,34.343575 42.263831,34.295621 C 42.212918,34.247669 42.187462,34.174851 42.187462,34.077168 C 42.187462,33.971791 42.220022,33.893645 42.285144,33.842731 C 42.350265,33.791819 42.450019,33.766362 42.584407,33.766361 C 42.637095,33.766362 42.692449,33.770802 42.750467,33.779681 C 42.808483,33.788563 42.871533,33.802475 42.939615,33.821418" + id="flowRoot9140" /> + <path + style="opacity:1;fill:url(#linearGradient9194);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 31 40 L 31 43 L 32 43 L 32 40 L 31 40 z M 33 40 L 33 43 L 35 43 L 35 40 L 33 40 z M 36 40 L 36 43 L 36.9375 43 L 36.9375 40 L 36 40 z M 38 40 L 38 43 L 40 43 L 40 40 L 38 40 z M 41.28125 40 C 41.168464 40 41.0625 40.105962 41.0625 40.21875 L 41.0625 42.78125 C 41.0625 42.894036 41.168462 43 41.28125 43 L 41.78125 43 C 41.894036 43 42 42.894038 42 42.78125 L 42 40.21875 C 42 40.105964 41.894038 40 41.78125 40 L 41.28125 40 z M 43.0625 40 L 43.0625 43 L 44 43 L 44 40 L 43.0625 40 z " + id="rect9175" /> + <path + style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed" + d="M 33,35.766614 L 33.543122,35.766614 C 33.704956,35.766616 33.829008,35.806602 33.915279,35.886573 C 34.001548,35.965918 34.044683,36.079265 34.044684,36.226615 C 34.044683,36.374597 34.001548,36.488574 33.915279,36.568546 C 33.829008,36.64789 33.704956,36.687561 33.543122,36.687561 L 33.327762,36.687561 L 33.327762,37.176843 L 33,37.176843 L 33,35.766614 M 33.327762,36.030147 L 33.327762,36.424028 L 33.508174,36.424028 C 33.571773,36.424029 33.62089,36.407027 33.655525,36.373022 C 33.690158,36.338389 33.707475,36.289587 33.707476,36.226615 C 33.707475,36.163646 33.690158,36.115158 33.655525,36.081153 C 33.62089,36.04715 33.571773,36.030148 33.508174,36.030147 L 33.327762,36.030147 M 34.260044,36.118936 L 34.564192,36.118936 L 34.564192,37.176843 L 34.260044,37.176843 L 34.260044,36.118936 M 34.260044,35.707107 L 34.564192,35.707107 L 34.564192,35.982918 L 34.260044,35.982918 L 34.260044,35.707107 M 35.508753,36.273843 L 35.508753,35.707107 L 35.814791,35.707107 L 35.814791,37.176843 L 35.508753,37.176843 L 35.508753,37.023824 C 35.466561,37.086166 35.420278,37.131819 35.369903,37.160786 C 35.319525,37.189752 35.260962,37.204235 35.194214,37.204235 C 35.077088,37.204235 34.980743,37.152599 34.905178,37.049327 C 34.830243,36.945426 34.792776,36.811928 34.792776,36.648834 C 34.792776,36.48574 34.830243,36.352558 34.905178,36.249285 C 34.980743,36.145384 35.077088,36.093433 35.194214,36.093432 C 35.260333,36.093433 35.318581,36.108231 35.368958,36.137827 C 35.419963,36.166794 35.466561,36.212133 35.508753,36.273843 M 35.307561,36.95865 C 35.37305,36.95865 35.422797,36.932202 35.456802,36.879307 C 35.491435,36.826412 35.508752,36.749587 35.508753,36.648834 C 35.508752,36.548081 35.491435,36.471257 35.456802,36.418361 C 35.422797,36.365467 35.37305,36.339019 35.307561,36.339018 C 35.243331,36.339019 35.193899,36.365467 35.159265,36.418361 C 35.125261,36.471257 35.108259,36.548081 35.108259,36.648834 C 35.108259,36.749587 35.125261,36.826412 35.159265,36.879307 C 35.193899,36.932202 35.243331,36.95865 35.307561,36.95865 M 36.759351,36.997376 C 36.71716,37.059088 36.670876,37.104427 36.6205,37.133394 C 36.570123,37.16236 36.511561,37.176843 36.444812,37.176843 C 36.328946,37.176843 36.232915,37.126152 36.156721,37.024769 C 36.081156,36.922757 36.043374,36.793037 36.043374,36.63561 C 36.043374,36.477554 36.081156,36.348149 36.156721,36.247396 C 36.232915,36.146014 36.328946,36.095322 36.444812,36.095322 C 36.511561,36.095322 36.570123,36.109806 36.6205,36.138771 C 36.670876,36.167739 36.71716,36.213392 36.759351,36.275732 L 36.759351,36.118936 L 37.065388,36.118936 L 37.065388,37.070108 C 37.065387,37.240129 37.0169,37.369848 36.919926,37.459267 C 36.82358,37.549315 36.68347,37.594339 36.499597,37.594339 C 36.440404,37.594339 36.382786,37.589301 36.326742,37.579226 C 36.271327,37.56915 36.215599,37.553722 36.159555,37.532943 L 36.159555,37.26941 C 36.21308,37.303414 36.265345,37.328602 36.316352,37.344975 C 36.367358,37.361977 36.418679,37.370478 36.470315,37.370478 C 36.569809,37.370478 36.642854,37.346234 36.689453,37.297747 C 36.736051,37.24926 36.75935,37.17338 36.759351,37.070108 L 36.759351,36.997376 M 36.55816,36.339018 C 36.495188,36.339019 36.446071,36.364837 36.410808,36.416472 C 36.376174,36.468108 36.358857,36.541155 36.358857,36.63561 C 36.358857,36.732585 36.375859,36.806261 36.409864,36.856637 C 36.443867,36.906384 36.493299,36.931257 36.55816,36.931257 C 36.621759,36.931257 36.671191,36.90544 36.706456,36.853803 C 36.741718,36.802168 36.75935,36.729437 36.759351,36.63561 C 36.75935,36.541155 36.741718,36.468108 36.706456,36.416472 C 36.671191,36.364837 36.621759,36.339019 36.55816,36.339018 M 37.36198,36.118936 L 37.666129,36.118936 L 37.666129,37.176843 L 37.36198,37.176843 L 37.36198,36.118936 M 37.36198,35.707107 L 37.666129,35.707107 L 37.666129,35.982918 L 37.36198,35.982918 L 37.36198,35.707107 M 38.919561,36.532653 L 38.919561,37.176843 L 38.613523,37.176843 L 38.613523,37.071997 L 38.613523,36.683783 C 38.613522,36.592476 38.611633,36.529505 38.607856,36.494871 C 38.604077,36.460237 38.597779,36.434734 38.588965,36.418361 C 38.577,36.396322 38.560627,36.37932 38.539847,36.367355 C 38.519696,36.354762 38.496712,36.348464 38.470894,36.348464 C 38.407293,36.348464 38.357232,36.375857 38.320709,36.43064 C 38.284816,36.484796 38.266869,36.560046 38.266869,36.65639 L 38.266869,37.176843 L 37.962721,37.176843 L 37.962721,36.118936 L 38.266869,36.118936 L 38.266869,36.273843 C 38.312838,36.212133 38.36164,36.166794 38.413276,36.137827 C 38.464912,36.108231 38.5219,36.093433 38.584242,36.093432 C 38.69381,36.093433 38.776931,36.130901 38.833606,36.205835 C 38.890908,36.280771 38.91956,36.38971 38.919561,36.532653" + id="flowRoot9198" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/dialogs/scalable/cool.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,704 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="cool.svg" + inkscape:export-filename="/home/hbons/Bureaublad/cool.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <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="perspective105" /> + <linearGradient + id="linearGradient11669" + inkscape:collect="always"> + <stop + id="stop11671" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop11673" + offset="1" + style="stop-color:#3465a4;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11653"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop11655" /> + <stop + style="stop-color:#3465a4;stop-opacity:1" + offset="1" + id="stop11657" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11586"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11588" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11590" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11418"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11420" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11422" /> + </linearGradient> + <linearGradient + id="linearGradient11346" + inkscape:collect="always"> + <stop + id="stop11348" + offset="0" + style="stop-color:#ef7700;stop-opacity:1" /> + <stop + id="stop11350" + offset="1" + style="stop-color:#fea523;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11346" + id="linearGradient10424" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-2.0000002,0,0,2.0000001,48.499999,-0.4999991)" + x1="8.9999981" + y1="10.5625" + x2="8.9999981" + y2="12.4375" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="22.919643" + y1="33.491837" + x2="23.746914" + y2="36.579254" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9659258,0.258819,0.258819,0.9659258,39.560471,-4.4105697)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11418" + id="linearGradient11424" + x1="22.915459" + y1="34.796875" + x2="22.854631" + y2="29.835938" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter11462" + x="-0.078992675" + width="1.1579853" + y="-0.19133781" + height="1.3826756"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.448448" + id="feGaussianBlur11464" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <filter + id="filter3405" + height="2.5649745" + y="-0.78248727" + width="1.5575919" + x="-0.27879593" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur3407" + stdDeviation="1.5438116" + inkscape:collect="always" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11586" + id="linearGradient11592" + x1="39.704506" + y1="13.248698" + x2="54.781696" + y2="18.949747" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11669" + id="radialGradient11659" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" + gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11653" + id="radialGradient11667" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="34.093743" + inkscape:cy="29.192709" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.98821175" + inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " + style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="path11288" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + transform="matrix(0.9659258,-0.264782,0.258819,0.9881799,-6.825115,7.6473507)" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 13,31.694019 C 15.576229,36.323459 20.846351,38.909081 25.954556,37.540342 C 31.062759,36.171603 34.33401,31.297326 34.250368,26 C 32.872293,29.813956 29.916568,34.514228 25.463432,35.707442 C 21.010298,36.900659 16.100427,34.307964 13,31.694019 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-11.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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;filter:url(#filter11462);enable-background:accumulate" + id="path11416" + sodipodi:cx="23.25" + sodipodi:cy="30.1875" + sodipodi:rx="6.8125" + sodipodi:ry="2.8125" + d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" + transform="matrix(0.9925109,-0.2659425,0.4601228,1.7172017,-13.102978,-15.495569)" /> + <path + style="opacity:0.59722218;fill:url(#radialGradient11659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 22,18.537724 C 22,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22,14.418548 22,18.537724 z" + id="path11647" + sodipodi:nodetypes="csssc" /> + <rect + style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="rect11649" + width="5.1303458" + height="1.0018942" + x="6.2930641" + y="14.833013" + rx="0.51303452" + ry="0.50094712" + transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" /> + <rect + style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="rect11651" + width="5.1303449" + height="1.0018942" + x="31.000992" + y="25.932768" + rx="0.51303446" + ry="0.50094712" + transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" /> + <path + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.99999994;stroke-linecap:square;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,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z" + id="path11661" /> + <path + style="opacity:0.59722218;fill:url(#radialGradient11667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 22,22.656901 22,18.537724 C 22,14.418548 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z" + id="path11663" + sodipodi:nodetypes="csssc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/dialogs/scalable/dialog.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,609 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="dialog.svg" + inkscape:export-filename="/home/hbons/Bureaublad/dialog.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <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="perspective89" /> + <linearGradient + inkscape:collect="always" + id="linearGradient9283"> + <stop + style="stop-color:white;stop-opacity:1;" + offset="0" + id="stop9285" /> + <stop + style="stop-color:#c9daee;stop-opacity:1" + offset="1" + id="stop9287" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11418"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11420" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11422" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="22.919643" + y1="33.491837" + x2="22.919643" + y2="36.402832" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.8636363,0,0,0.7777776,39.227274,9.2222251)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9166666,0,0,0.9166666,-3.0416663,6.1250012)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="matrix(0.9166667,0,0,0.9166666,7.9583347,6.1250012)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11418" + id="linearGradient11424" + x1="22.915459" + y1="34.796875" + x2="22.854631" + y2="29.835938" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter11462" + x="-0.078992675" + width="1.1579853" + y="-0.19133781" + height="1.3826756"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.448448" + id="feGaussianBlur11464" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9,0,0,0.9,-2.7500001,6.450001)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9,0,0,0.9,39.749999,6.450001)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient7925" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient7927" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + id="linearGradient8904" + inkscape:collect="always"> + <stop + id="stop8906" + offset="0" + style="stop-color:#729fcf;stop-opacity:1;" /> + <stop + id="stop8908" + offset="1" + style="stop-color:#25486d;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9283" + id="linearGradient8508" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6666666,0,0,0.6587574,15.166665,0.8540557)" + x1="30.5" + y1="1.7319652" + x2="30.5" + y2="22.781603" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8904" + id="linearGradient8511" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6875001,0,0,0.6767003,14.531249,0.4849495)" + x1="29.466667" + y1="6.8962817" + x2="42.829762" + y2="37.801281" /> + </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="42.212021" + inkscape:cy="27.33968" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1430" + inkscape:window-height="837" + inkscape:window-x="2" + inkscape:window-y="7" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8511);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 28.646485,1.5 C 26.351226,1.5 24.499999,3.6053736 24.499999,6.2157551 L 24.499999,14.378452 C 24.499999,16.988834 26.351226,19.471324 28.646485,19.471324 L 38.588405,19.471324 C 38.588405,19.471324 38.185679,21.246142 37.169849,22.500949 C 40.739034,22.500949 41.597375,20.059554 41.597375,19.461518 L 43.0625,19.471324 C 45.821256,19.471324 46.5,16.985061 46.5,14.378452 L 46.5,6.2157551 C 46.5,3.6053738 44.648774,1.5 42.353516,1.5 L 28.646485,1.5 z" + id="path8201" + sodipodi:nodetypes="cccccccccccc" /> + <path + style="fill:url(#linearGradient8508);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 28.854165,2.5009492 C 27.043799,2.5009492 25.499999,4.1991556 25.499999,6.4329081 L 25.499999,14.379169 C 25.499999,16.612921 27.043799,18.498627 28.854165,18.498627 L 38.854706,18.498627 C 39.222454,18.499674 39.520313,18.606498 39.521372,18.969885 C 39.521372,18.969885 39.644477,20.147733 39.23261,20.89176 C 40.286203,20.514643 40.854165,18.434645 40.854165,18.434645 C 40.969505,18.353016 41.108134,18.309759 41.249998,18.311127 L 42.833331,18.311127 C 43.997822,18.311127 44.543633,17.937415 44.937499,17.28182 C 45.331364,16.626223 45.499999,15.591478 45.499999,14.379169 L 45.499999,6.4329081 C 45.499999,4.1991558 43.956197,2.5009492 42.145832,2.5009492 L 28.854165,2.5009492 z" + id="path8203" + sodipodi:nodetypes="ccccccccccscccc" /> + <path + transform="matrix(1.8058936,0,0,2.1118921,-0.410926,17.914587)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.7040925,0,0,1.7040625,-1.6187858,8.7839416)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.58828396;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.5795214,0,0,1.5795214,-0.1480796,10.152022)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.5538448,0,0,1.5538449,0.1550622,10.434085)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 18.5,24.000001 C 18.5,27.035998 16.036004,29.499999 13.000001,29.499999 C 9.9640002,29.499999 7.5000003,27.035998 7.5000003,24.000001 C 7.5000003,20.964 9.9640002,18.5 13.000001,18.5 C 16.036004,18.5 18.5,20.964 18.5,24.000001 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.6039688,0,0,-1.6039689,-0.4367098,45.116428)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.62345362;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 17.500001,24.000001 C 17.500001,26.484 15.484002,28.5 13,28.5 C 10.516001,28.5 8.5000003,26.484 8.5000003,24.000001 C 8.5000003,21.516 10.516001,19.5 13,19.5 C 15.484002,19.5 17.500001,21.516 17.500001,24.000001 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(0.8744826,0,0,0.8193141,-2.4902353,7.8660638)" + style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,33.230703 24,33.230703 C 19.928002,33.230704 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + id="path11288" + sodipodi:nodetypes="cscscscsccc" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 9,31 C 10.114314,34.996589 13.932744,38 18.5,38 C 23.067256,38 26.885687,34.996589 28,31 C 25.997881,33.58792 22.481559,36.086622 18.5,36.086622 C 14.518443,36.086624 11.00212,33.58792 9,31 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.0998724,0.5796011,-0.5856851,1.5252629,3.1832579,-1.498334)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.0998724,0.5796014,-0.5856851,1.5252636,3.1832579,-0.669072)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.44422138;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-1.498334)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-0.6690642)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 19.499999,24.000001 C 19.499999,26.484 21.515997,28.5 23.999999,28.5 C 26.483998,28.5 28.499999,26.484 28.499999,24.000001 C 28.499999,21.516 26.483998,19.5 23.999999,19.5 C 21.515997,19.5 19.499999,21.516 19.499999,24.000001 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.9494392,0,0,1.2877393,4.0769204,13.069868)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.9747197,0,0,0.6878263,13.538459,18.695971)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 29.5,24.000001 C 29.5,27.035998 27.036004,29.499999 24.000002,29.499999 C 20.964001,29.499999 18.500001,27.035998 18.500001,24.000001 C 18.500001,20.964 20.964001,18.5 24.000002,18.5 C 27.036004,18.5 29.5,20.964 29.5,24.000001 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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;filter:url(#filter11462);enable-background:accumulate" + id="path11416" + sodipodi:cx="23.25" + sodipodi:cy="30.1875" + sodipodi:rx="6.8125" + sodipodi:ry="2.8125" + d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" + transform="matrix(0.8520939,0,0,1.474258,-1.3111844,-12.857869)" /> + <path + transform="matrix(1.9494392,0,0,1.2877393,-4.9230796,13.069868)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path7921" + style="opacity:1;fill:url(#linearGradient7925);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.9747197,0,0,0.6878263,4.5384591,18.695971)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path7923" + style="opacity:1;fill:url(#linearGradient7927);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/dialogs/scalable/error.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,327 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="error.svg" + inkscape:export-filename="/home/hbons/Bureaublad/error.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <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="perspective47" /> + <linearGradient + inkscape:collect="always" + id="linearGradient8757"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop8759" /> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="1" + id="stop8761" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="23.151463" + y1="36.068001" + x2="23.151463" + y2="31.364563" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,-1,46.004066,64)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="44.452724" + fx="24.00321" + fy="44.452724" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8757" + id="linearGradient8763" + x1="22" + y1="17.615276" + x2="22" + y2="20.974033" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="50.073667" + inkscape:cy="41.753083" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fill="#fce94f" + inkscape:window-width="1081" + inkscape:window-height="669" + inkscape:window-x="122" + inkscape:window-y="78" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.98821175" + inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " + style="opacity:0.37037036000000001;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="path11288" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + transform="matrix(1,0,0,-1,-1.9959332,64)" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 11.004066,36.000001 C 12.294325,30.861529 16.715664,27.000001 22.004067,27.000001 C 27.292467,27.000001 31.713809,30.861529 33.004066,36.000001 C 30.685823,32.672675 26.614292,28.897559 22.004067,28.897559 C 17.393842,28.897556 13.32231,32.672675 11.004066,36.000001 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.4298057,-1.6425985,-1.1582421,-1.5938167,-5.185395,36.479745)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + style="opacity:0.74537037;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 14.03125,18 L 14.03125,19 L 15.03125,19 L 15.03125,18 L 14.03125,18 z M 15.03125,19 L 15.03125,20 L 16.03125,20 L 16.03125,19 L 15.03125,19 z M 16.03125,20 L 16.03125,21 L 17.03125,21 L 17.03125,20 L 16.03125,20 z M 17.03125,20 L 18.03125,20 L 18.03125,19 L 17.03125,19 L 17.03125,20 z M 18.03125,19 L 19.03125,19 L 19.03125,18 L 18.03125,18 L 18.03125,19 z M 17.03125,21 L 17.03125,22 L 18.03125,22 L 18.03125,21 L 17.03125,21 z M 18.03125,22 L 18.03125,23 L 19.03125,23 L 19.03125,22 L 18.03125,22 z M 16.03125,21 L 15.03125,21 L 15.03125,22 L 16.03125,22 L 16.03125,21 z M 25.03125,18 L 25.03125,19 L 26.03125,19 L 26.03125,18 L 25.03125,18 z M 26.03125,19 L 26.03125,20 L 27.03125,20 L 27.03125,19 L 26.03125,19 z M 27.03125,20 L 27.03125,21 L 28.03125,21 L 28.03125,20 L 27.03125,20 z M 28.03125,20 L 29.03125,20 L 29.03125,19 L 28.03125,19 L 28.03125,20 z M 29.03125,19 L 30.03125,19 L 30.03125,18 L 29.03125,18 L 29.03125,19 z M 28.03125,21 L 28.03125,22 L 29.03125,22 L 29.03125,21 L 28.03125,21 z M 29.03125,22 L 29.03125,23 L 30.03125,23 L 30.03125,22 L 29.03125,22 z M 27.03125,21 L 26.03125,21 L 26.03125,22 L 27.03125,22 L 27.03125,21 z M 14.03125,22.03125 L 14.03125,23.03125 L 15.03125,23.03125 L 15.03125,22.03125 L 14.03125,22.03125 z M 25.03125,22.03125 L 25.03125,23.03125 L 26.03125,23.03125 L 26.03125,22.03125 L 25.03125,22.03125 z" + id="path8765" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> + <path + style="opacity:1;fill:url(#linearGradient8763);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 14.03125,17 L 14.03125,18 L 15.03125,18 L 15.03125,17 L 14.03125,17 z M 15.03125,18 L 15.03125,19 L 16.03125,19 L 16.03125,18 L 15.03125,18 z M 16.03125,19 L 16.03125,20 L 17.03125,20 L 17.03125,19 L 16.03125,19 z M 17.03125,19 L 18.03125,19 L 18.03125,18 L 17.03125,18 L 17.03125,19 z M 18.03125,18 L 19.03125,18 L 19.03125,17 L 18.03125,17 L 18.03125,18 z M 17.03125,20 L 17.03125,21 L 18.03125,21 L 18.03125,20 L 17.03125,20 z M 18.03125,21 L 18.03125,22 L 19.03125,22 L 19.03125,21 L 18.03125,21 z M 16.03125,20 L 15.03125,20 L 15.03125,21 L 16.03125,21 L 16.03125,20 z M 25.03125,17 L 25.03125,18 L 26.03125,18 L 26.03125,17 L 25.03125,17 z M 26.03125,18 L 26.03125,19 L 27.03125,19 L 27.03125,18 L 26.03125,18 z M 27.03125,19 L 27.03125,20 L 28.03125,20 L 28.03125,19 L 27.03125,19 z M 28.03125,19 L 29.03125,19 L 29.03125,18 L 28.03125,18 L 28.03125,19 z M 29.03125,18 L 30.03125,18 L 30.03125,17 L 29.03125,17 L 29.03125,18 z M 28.03125,20 L 28.03125,21 L 29.03125,21 L 29.03125,20 L 28.03125,20 z M 29.03125,21 L 29.03125,22 L 30.03125,22 L 30.03125,21 L 29.03125,21 z M 27.03125,20 L 26.03125,20 L 26.03125,21 L 27.03125,21 L 27.03125,20 z M 14.03125,21.03125 L 14.03125,22.03125 L 15.03125,22.03125 L 15.03125,21.03125 L 14.03125,21.03125 z M 25.03125,21.03125 L 25.03125,22.03125 L 26.03125,22.03125 L 26.03125,21.03125 L 25.03125,21.03125 z" + id="rect7941" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.4298057,-1.6425985,1.1582421,-1.5938167,48.926576,36.479745)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path7888" + style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/dialogs/scalable/info.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,569 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="info.svg" + inkscape:export-filename="/home/hbons/Bureaublad/info.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <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="perspective82" /> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11418"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11420" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11422" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="22.919643" + y1="33.491837" + x2="22.919643" + y2="36.402832" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11418" + id="linearGradient11424" + x1="22.915459" + y1="34.796875" + x2="22.854631" + y2="29.835938" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter11462" + x="-0.078992675" + width="1.1579853" + y="-0.19133781" + height="1.3826756"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.448448" + id="feGaussianBlur11464" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="41.138874" + inkscape:cy="20.946547" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.98821175" + inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " + style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="path11288" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + transform="translate(-2.0000685,1.885788e-7)" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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;filter:url(#filter11462);enable-background:accumulate" + id="path11416" + sodipodi:cx="23.25" + sodipodi:cy="30.1875" + sodipodi:rx="6.8125" + sodipodi:ry="2.8125" + d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" + transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/dialogs/scalable/mail.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,976 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="mail.svg" + inkscape:export-filename="/home/hbons/Bureaublad/mail.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <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="perspective126" /> + <linearGradient + inkscape:collect="always" + id="linearGradient9188"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop9190" /> + <stop + style="stop-color:#6f726d;stop-opacity:1" + offset="1" + id="stop9192" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9166"> + <stop + style="stop-color:#3b73bb;stop-opacity:1;" + offset="0" + id="stop9168" /> + <stop + style="stop-color:#3b73bb;stop-opacity:0;" + offset="1" + id="stop9170" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9158"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop9160" /> + <stop + style="stop-color:#bcd2e9;stop-opacity:1" + offset="1" + id="stop9162" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9056"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop9058" /> + <stop + style="stop-color:#729fcf;stop-opacity:0;" + offset="1" + id="stop9060" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9040"> + <stop + style="stop-color:#729fcf;stop-opacity:1" + offset="0" + id="stop9042" /> + <stop + style="stop-color:#3465a4;stop-opacity:1" + offset="1" + id="stop9044" /> + </linearGradient> + <linearGradient + id="linearGradient11669" + inkscape:collect="always"> + <stop + id="stop11671" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop11673" + offset="1" + style="stop-color:#2e3436;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11653"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop11655" /> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="1" + id="stop11657" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11669" + id="radialGradient11659" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" + gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11653" + id="radialGradient11667" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient8720" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient8722" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient8985" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient8993" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient8995" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient8997" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient9005" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-34.999933,2.0000002)" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient9018" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)" + x1="22.919643" + y1="33.491837" + x2="23.746914" + y2="36.579254" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient9036" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9040" + id="linearGradient9046" + x1="24" + y1="37" + x2="44.533825" + y2="40.875" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9056" + id="linearGradient9062" + x1="34.5" + y1="61.35038" + x2="34.5" + y2="33.72963" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9158" + id="linearGradient9164" + x1="29" + y1="35.649048" + x2="29" + y2="32.334484" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9166" + id="linearGradient9172" + x1="29.125" + y1="36.5625" + x2="25" + y2="31.9375" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9188" + id="linearGradient9194" + x1="37.5" + y1="42.295494" + x2="37.5" + y2="40.792892" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9166" + id="linearGradient9246" + gradientUnits="userSpaceOnUse" + x1="29.78125" + y1="37.09375" + x2="23.984375" + y2="30.40625" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)" + r="8.9687502" + fy="12" + fx="12" + cy="12" + cx="12" + id="radialGradient3210" + xlink:href="#linearGradient3204" + inkscape:collect="always" /> + <linearGradient + y2="18.288521" + x2="12.015625" + y1="10.420408" + x1="12.015625" + gradientUnits="userSpaceOnUse" + id="linearGradient3200" + xlink:href="#linearGradient4130" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="13.251127" + x2="12.750399" + y1="19.780256" + x1="12.726427" + id="linearGradient3197" + xlink:href="#linearGradient3191" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="19.148933" + x2="15.742911" + y1="8.850009" + x1="13.038205" + id="linearGradient3189" + xlink:href="#linearGradient3183" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)" + r="8.9687502" + fy="12" + fx="12" + cy="12" + cx="12" + id="radialGradient4152" + xlink:href="#linearGradient4146" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="17.151861" + x2="12.015625" + y1="12.513933" + x1="12.015625" + id="linearGradient4144" + xlink:href="#linearGradient4138" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4130" + inkscape:collect="always"> + <stop + id="stop4132" + offset="0" + style="stop-color:#babdb6;stop-opacity:1;" /> + <stop + id="stop4134" + offset="1" + style="stop-color:#babdb6;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4138" + inkscape:collect="always"> + <stop + id="stop4140" + offset="0" + style="stop-color:#babdb6;stop-opacity:1;" /> + <stop + id="stop4142" + offset="1" + style="stop-color:#babdb6;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4146" + inkscape:collect="always"> + <stop + id="stop4148" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4150" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient3183" + inkscape:collect="always"> + <stop + id="stop3185" + offset="0" + style="stop-color:#888a85;stop-opacity:1;" /> + <stop + id="stop3187" + offset="1" + style="stop-color:#555753;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3191" + inkscape:collect="always"> + <stop + id="stop3193" + offset="0" + style="stop-color:#555753;stop-opacity:1;" /> + <stop + id="stop3195" + offset="1" + style="stop-color:#888a85;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3204" + inkscape:collect="always"> + <stop + id="stop3206" + offset="0" + style="stop-color:#888a85;stop-opacity:1;" /> + <stop + id="stop3208" + offset="1" + style="stop-color:#888a85;stop-opacity:0;" /> + </linearGradient> + <inkscape:perspective + id="perspective8002" + inkscape:persp3d-origin="12 : 8 : 1" + inkscape:vp_z="24 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 12 : 1" + sodipodi:type="inkscape:persp3d" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="173.29133" + inkscape:cy="101.88242" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" + d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z" + id="path11288" + sodipodi:nodetypes="cscscscsccc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z" + style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8714" + style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8716" + style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8718" + style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <g + id="g8029" + inkscape:label="Layer 1" + transform="translate(24.000001,25)"> + <rect + ry="1.5292913" + rx="1.4791573" + y="4.5005183" + x="2.5008683" + height="14.994927" + width="18.999125" + id="rect3198" + style="opacity:1;fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3189);stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + ry="1.325834" + rx="1.3235176" + y="5.5" + x="3.5" + height="13" + width="17" + id="rect3202" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 3.96875,5.53125 C 3.7197609,5.53125 3.53125,5.7077743 3.53125,6.03125 L 3.53125,17.96875 C 3.53125,18.292225 3.7197609,18.46875 3.96875,18.46875 L 20.03125,18.46875 C 20.280239,18.46875 20.46875,18.292227 20.46875,17.96875 L 20.46875,6.03125 C 20.46875,5.7077741 20.280239,5.53125 20.03125,5.53125 L 3.96875,5.53125 z" + inkscape:href="#rect3198" + id="path4119" + style="opacity:0.4;fill:url(#radialGradient3210);fill-opacity:1;stroke:url(#radialGradient4152);stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + xlink:href="#rect3198" + inkscape:original="M 3.96875 4.5 C 3.1492968 4.5 2.5 5.1840228 2.5 6.03125 L 2.5 17.96875 C 2.5 18.815977 3.1492967 19.5 3.96875 19.5 L 20.03125 19.5 C 20.850703 19.5 21.5 18.815978 21.5 17.96875 L 21.5 6.03125 C 21.5 5.1840226 20.850703 4.5 20.03125 4.5 L 3.96875 4.5 z " + inkscape:radius="-1.0251163" + sodipodi:type="inkscape:offset" /> + <path + sodipodi:nodetypes="cccccc" + id="path4113" + d="M 20.173644,19.500002 L 3.8263566,19.500002 C 3.0915545,19.500002 2.4999999,18.840678 2.4999999,18.021697 L 11.981112,10.500001 L 21.499999,18.021697 C 21.499999,18.840678 20.908445,19.500002 20.173644,19.500002 z" + style="fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3197);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" /> + <path + transform="matrix(1.0093633,0,0,1,-3.4234557e-2,0)" + d="M 11.96875,11.71875 L 3.65625,18.3125 C 3.718416,18.374228 3.7395135,18.53125 3.8125,18.53125 L 20.1875,18.53125 C 20.260486,18.53125 20.281584,18.374227 20.34375,18.3125 L 11.96875,11.71875 z" + inkscape:href="#path4113" + id="path4117" + style="opacity:1;fill:url(#linearGradient4144);fill-opacity:1;stroke:#ffffff;stroke-width:0.9953509;stroke-miterlimit:4;stroke-opacity:1" + xlink:href="#path4113" + inkscape:original="M 11.96875 10.5 L 2.5 18.03125 C 2.5 18.850231 3.0776979 19.5 3.8125 19.5 L 20.1875 19.5 C 20.922301 19.5 21.500001 18.850232 21.5 18.03125 L 11.96875 10.5 z " + inkscape:radius="-0.96695226" + sodipodi:type="inkscape:offset" /> + <path + sodipodi:nodetypes="ccczcc" + id="path4122" + d="M 20.145067,4.5000001 L 3.8242121,4.5000001 C 3.0905983,4.5000001 2.5000001,5.1593244 2.5000001,5.9783056 C 2.5000001,5.9783056 9.4173792,13.5 12.043511,13.5 C 14.708468,13.5 21.469279,5.9783056 21.469279,5.9783056 C 21.469279,5.1593244 20.878681,4.5000001 20.145067,4.5000001 z" + style="fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccz" + id="path4124" + d="M 12.087485,11.46875 C 10.301616,11.46875 3.34375,18.34375 3.34375,18.34375 C 3.4413342,18.582586 3.6045666,18.75 3.8125,18.75 L 20.1875,18.75 C 20.395433,18.75 20.558666,18.582586 20.65625,18.34375 C 20.65625,18.34375 13.912791,11.46875 12.087485,11.46875 z" + style="opacity:1;fill:url(#linearGradient3200);fill-opacity:1;stroke:#ffffff;stroke-width:1.03183317;stroke-miterlimit:4;stroke-opacity:1" + transform="matrix(0.9819495,0,0,-0.956515,0.2166063,23.434657)" /> + </g> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/dialogs/scalable/question.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,655 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="question.svg" + inkscape:export-filename="/home/hbons/Bureaublad/question.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient8711"> + <stop + style="stop-color:#a5c2e1;stop-opacity:1" + offset="0" + id="stop8713" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop8715" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11586"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11588" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11590" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11570"> + <stop + style="stop-color:#0a387a;stop-opacity:1" + offset="0" + id="stop11572" /> + <stop + style="stop-color:#368eec;stop-opacity:1" + offset="1" + id="stop11574" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11418"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11420" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11422" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="22.919643" + y1="33.491837" + x2="22.919643" + y2="36.402832" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11418" + id="linearGradient11424" + x1="22.915459" + y1="34.796875" + x2="22.854631" + y2="29.835938" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter11462" + x="-0.078992675" + width="1.1579853" + y="-0.19133781" + height="1.3826756"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.448448" + id="feGaussianBlur11464" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11570" + id="linearGradient11576" + x1="48.140072" + y1="17.348257" + x2="36.310215" + y2="9.2333107" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11586" + id="linearGradient11592" + x1="43.267006" + y1="14" + x2="54.781696" + y2="18.949747" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11570" + id="linearGradient8706" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-2)" + x1="46.202572" + y1="17.035757" + x2="37.247715" + y2="14.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11586" + id="linearGradient8708" + gradientUnits="userSpaceOnUse" + x1="43.267006" + y1="14" + x2="54.781696" + y2="18.949747" + gradientTransform="translate(0,-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8711" + id="linearGradient8717" + x1="47.873451" + y1="13.986977" + x2="41.067547" + y2="12.484375" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="48.898255" + inkscape:cy="29.543471" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-6.1538483,7.0838437)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.98821175" + inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " + style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="path11288" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + transform="translate(-2.0000685,1.885788e-7)" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,5.8461508,7.0838441)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,3.3076893,12.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,15.30769,12.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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;filter:url(#filter11462);enable-background:accumulate" + id="path11416" + sodipodi:cx="23.25" + sodipodi:cy="30.1875" + sodipodi:rx="6.8125" + sodipodi:ry="2.8125" + d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" + transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" /> + <path + style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8706);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L" + d="M 40.5625,1 C 38.874477,1 37.314933,1.4226492 36.09375,2.28125 C 34.872565,3.1398509 34,4.5416345 34,6.125 C 33.999998,7.9320376 35.500885,9 37.375,9 C 38.972866,9 40.03125,8.6239064 40.03125,6.9375 C 40.03125,5.8358747 41.03125,5.7736538 41.03125,7 C 41.031252,7.5731772 40.720035,7.6923202 40.46875,8.03125 C 39.556981,9.1888218 39.147246,9.72288 38.8125,10.21875 C 37.953228,11.557311 37,12.936936 37,14.46875 C 36.999998,17.077704 39.59375,16.96875 39.59375,16.96875 C 39.236295,17.077217 38.886105,17.297356 38.5625,17.5625 C 38.550686,17.570277 38.542964,17.585834 38.53125,17.59375 C 38.424354,17.683359 38.318146,17.772605 38.21875,17.875 C 37.480053,18.516861 37,19.445308 37,20.5 C 37,22.432 38.568,24 40.5,24 C 42.432,24 44.000001,22.432 44,20.5 C 44,18.95785 43.010761,17.653479 41.625,17.1875 C 41.444379,17.110901 41.249634,17.062378 41.0625,17 C 41.763982,16.748864 42.068061,15.931257 42.0625,15.1875 C 42.051002,14.139574 42.280169,13.716262 42.375,13.5 C 43.426067,11.600594 44.954699,11.097944 46.125,9.75 C 46.749619,8.8343856 47,7.7477245 47,6.75 C 47.000001,5.1014533 46.28805,3.5482598 45.09375,2.53125 C 43.89945,1.5142402 42.298617,1 40.5625,1 z" + id="path3346" + sodipodi:nodetypes="csssssccscsscsssccsccssc" /> + <path + style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8717);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L" + d="M 40.5625 1.96875 C 39.03732 1.96875 37.680971 2.3732797 36.65625 3.09375 C 35.664894 3.7907611 34.96875 4.9000488 34.96875 6.125 C 34.968749 6.758422 35.192622 7.1443716 35.59375 7.46875 C 35.994878 7.7931284 36.623252 8.03125 37.375 8.03125 C 38.097392 8.03125 38.596706 7.9024002 38.78125 7.78125 C 38.965794 7.6600998 39.0625 7.5766139 39.0625 6.9375 C 39.0625 6.5144976 39.145775 6.1274407 39.375 5.78125 C 39.604225 5.4350593 40.027732 5.1249297 40.53125 5.125 C 41.034768 5.1250703 41.462039 5.4531849 41.6875 5.8125 C 41.912961 6.1718151 42 6.5608281 42 7 C 42.000002 7.4631574 41.827288 7.9211544 41.625 8.1875 C 41.422712 8.453846 41.293456 8.566387 41.25 8.625 C 40.340574 9.779598 39.934939 10.290878 39.625 10.75 C 38.753163 12.108134 37.96875 13.34166 37.96875 14.46875 C 37.968749 15.449931 38.315321 15.62655 38.71875 15.8125 C 39.583542 16.168963 40.115403 16.105798 40.96875 15.84375 C 41.047882 15.684154 41.095517 15.423765 41.09375 15.1875 C 41.08066 13.994488 41.418028 13.209423 41.46875 13.09375 C 41.488628 13.071983 41.509483 13.051128 41.53125 13.03125 C 42.136141 11.938138 42.896246 11.218183 43.59375 10.65625 C 44.265082 10.115402 44.835184 9.717613 45.3125 9.1875 C 45.803013 8.468469 46.03125 7.5845097 46.03125 6.75 C 46.031251 5.3823316 45.435469 4.1044628 44.46875 3.28125 C 43.478484 2.4379857 42.105973 1.96875 40.5625 1.96875 z M 40.5 18 C 39.12 18 37.999999 19.12 38 20.5 C 38 21.88 39.119998 23 40.5 23 C 41.88 23 43.000002 21.88 43 20.5 C 43 19.12 41.879998 17.999999 40.5 18 z " + id="path11582" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/dialogs/scalable/warning.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,558 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="warning.svg" + inkscape:export-filename="/home/hbons/Bureaublad/warning.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient8730"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop8732" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop8734" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8716"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop8718" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop8720" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8706"> + <stop + style="stop-color:#391f17;stop-opacity:1" + offset="0" + id="stop8708" /> + <stop + style="stop-color:#841c0e;stop-opacity:1" + offset="1" + id="stop8710" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0833276,0,0,1.1666668,-3.9582687,-5.2500011)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="matrix(1.0833391,0,0,1.1666668,10.041531,-5.2500011)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0999932,0,0,1.2,-4.2499165,-5.8999987)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1000069,0,0,1.2,48.250086,-5.8999987)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8716" + id="radialGradient8722" + cx="44.7687" + cy="4.7732658" + fx="44.7687" + fy="4.7732658" + r="9.0598059" + gradientTransform="matrix(1.7013896,0,0,1.0125342,-31.400301,2.4538538)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8730" + id="linearGradient8736" + x1="45.837402" + y1="21.754553" + x2="45.837402" + y2="19.126131" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8706" + id="radialGradient8738" + cx="44.7687" + cy="21.608887" + fx="44.7687" + fy="21.608887" + r="9.0598059" + gradientTransform="matrix(1.3094421,0,0,0.7792777,-13.85332,2.5000315)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.8284271" + inkscape:cx="64.2628" + inkscape:cy="40.347011" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499929,17.500003 C 21.499929,21.364001 18.587949,24.500001 14.999965,24.500001 C 11.411983,24.500001 8.4999987,21.364001 8.4999987,17.500003 C 8.4999987,13.636 11.411983,10.5 14.999965,10.5 C 18.587949,10.5 21.499929,13.636 21.499929,17.500003 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499931,17.500002 C 20.499931,20.812 18.03595,23.5 14.999965,23.5 C 11.963984,23.5 9.499999,20.812 9.499999,17.500002 C 9.499999,14.188 11.963984,11.5 14.999965,11.5 C 18.03595,11.5 20.499931,14.188 20.499931,17.500002 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.9241248,0,0,1.5452869,-12.384324,4.083844)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5298496,-13.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5298496,-12.968448)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-13.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.49993,17.500002 C 23.49993,20.812 25.963942,23.5 28.999965,23.5 C 32.035984,23.5 34.499999,20.812 34.499999,17.500002 C 34.499999,14.188 32.035984,11.5 28.999965,11.5 C 25.963942,11.5 23.49993,14.188 23.49993,17.500002 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.9241927,0,0,1.5452869,-0.3849832,4.0838437)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.9494053,0,0,1.0301913,-2.922785,9.0558958)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.9494735,0,0,1.0301913,9.0765518,9.0558958)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 35.5,17.500003 C 35.5,21.364001 32.587988,24.500001 28.999966,24.500001 C 25.411946,24.500001 22.49993,21.364001 22.49993,17.500003 C 22.49993,13.636 25.411946,10.5 28.999966,10.5 C 32.587988,10.5 35.5,13.636 35.5,17.500003 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="path8714" + sodipodi:cx="44.7687" + sodipodi:cy="16.003418" + sodipodi:rx="9.0598059" + sodipodi:ry="5.3916893" + d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" + transform="matrix(1.0485875,0,0,1.2982945,-25.443899,12.222851)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="path7934" + sodipodi:cx="44.7687" + sodipodi:cy="16.003418" + sodipodi:rx="9.0598059" + sodipodi:ry="5.3916893" + d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" + transform="matrix(0.93821,0,0,1.1128238,-20.50244,15.191015)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8736);stroke-width:0.80703287999999984;stroke-linecap:square;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="path8728" + sodipodi:cx="44.7687" + sodipodi:cy="16.003418" + sodipodi:rx="9.0598059" + sodipodi:ry="5.3916893" + d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" + transform="matrix(1.1037765,0,0,1.3910297,-27.91464,10.738771)" /> + </g> +</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/aol-client.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,66 +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" - width="16px" - height="16px" - id="svg1307" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/emblems/16/scalable" - sodipodi:docname="aol-client.svg" - inkscape:export-filename="/home/hbons/Desktop/aol-client.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs1309" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="33.645576" - inkscape:cx="10.549484" - inkscape:cy="6.7812522" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - fill="#204a87" - showguides="true" - inkscape:guide-bbox="true" - inkscape:grid-points="true" - inkscape:window-width="1268" - inkscape:window-height="841" - inkscape:window-x="6" - inkscape:window-y="0" /> - <metadata - id="metadata1312"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - style="fill:#204a87;fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1" - d="M 2 1 L 2 15 L 14 8 L 2 1 z M 6 4 C 8.1805207 4 10 5.7762679 10 8 C 10 10.223732 8.1805205 12 6 12 C 3.8194795 11.999999 2.0312501 10.223732 2.03125 8 C 2.03125 5.7762679 3.8194791 4.0000001 6 4 z M 6 5.125 C 4.3921597 5.125 3.1249999 6.4360487 3.125 8 C 3.125 9.5639514 4.3921593 10.84375 6 10.84375 C 7.6078403 10.84375 8.875 9.5639514 8.875 8 C 8.875 6.4360487 7.6078401 5.1249999 6 5.125 z " - id="rect2229" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/birthday.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,622 +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="16px" - height="16px" - id="svg8140" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docname="birthday.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs8142"> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4232" - id="linearGradient3007" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7499999,14.982194,1.1250003)" - x1="7.5089025" - y1="2.218369" - x2="7.5089025" - y2="4.8258252" /> - <linearGradient - id="linearGradient4380" - inkscape:collect="always"> - <stop - id="stop4382" - offset="0" - style="stop-color:#fcaf3e;stop-opacity:1;" /> - <stop - id="stop4384" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4380" - id="linearGradient3005" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7499999,-2.9821948,0.3750003)" - x1="15.491097" - y1="4.2733984" - x2="15.491097" - y2="2.7707961" /> - <linearGradient - id="linearGradient4142" - inkscape:collect="always"> - <stop - id="stop4144" - offset="0" - style="stop-color:#5c3566;stop-opacity:1;" /> - <stop - id="stop4146" - offset="1" - style="stop-color:#9253a2;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4142" - id="linearGradient3029" - gradientUnits="userSpaceOnUse" - x1="15.5" - y1="10.635184" - x2="15.5" - y2="7.1438446" - gradientTransform="matrix(1,0,0,0.8000001,-2.9821944,0.2999994)" /> - <linearGradient - id="linearGradient4150" - inkscape:collect="always"> - <stop - id="stop4152" - offset="0" - style="stop-color:#3c7704;stop-opacity:1" /> - <stop - id="stop4154" - offset="1" - style="stop-color:#59b106;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4150" - id="linearGradient3034" - gradientUnits="userSpaceOnUse" - x1="7.5" - y1="9.4861355" - x2="7.5" - y2="7.0554562" - gradientTransform="matrix(1,0,0,0.8000001,-3,0.2999994)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4232" - id="linearGradient3048" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7499999,-3.0178049,0.3750005)" - x1="7.5089025" - y1="2.218369" - x2="7.5089025" - y2="4.8258252" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4374"> - <stop - style="stop-color:#fcaf3e;stop-opacity:1;" - offset="0" - id="stop4376" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop4378" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4374" - id="linearGradient3046" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.463041,0,0,1.1368063,-10.850902,0.678176)" - x1="6.3242626" - y1="2.3645318" - x2="6.3242626" - y2="1.6300712" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4232"> - <stop - style="stop-color:#f57900;stop-opacity:1;" - offset="0" - id="stop4234" /> - <stop - style="stop-color:#b25800;stop-opacity:1" - offset="1" - id="stop4236" /> - </linearGradient> - <linearGradient - y2="4.8258252" - x2="7.5089025" - y1="2.218369" - x1="7.5089025" - gradientTransform="matrix(1,0,0,0.7499999,1.0000002,-0.6249996)" - gradientUnits="userSpaceOnUse" - id="linearGradient4308" - xlink:href="#linearGradient4232" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4368" - inkscape:collect="always"> - <stop - id="stop4370" - offset="0" - style="stop-color:#fcaf3e;stop-opacity:1;" /> - <stop - id="stop4372" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="1.6300712" - x2="6.3242626" - y1="2.3645318" - x1="6.3242626" - gradientTransform="matrix(2.463041,0,0,1.1368063,-6.8330964,-0.3218242)" - gradientUnits="userSpaceOnUse" - id="linearGradient4306" - xlink:href="#linearGradient4368" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3425"> - <stop - style="stop-color:#204a87;stop-opacity:1;" - offset="0" - id="stop3427" /> - <stop - style="stop-color:#2e69c2;stop-opacity:1" - offset="1" - id="stop3429" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3425" - id="linearGradient3431" - x1="11.5" - y1="9.961833" - x2="11.241222" - y2="6.6366434" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.9999997,-2.0000001)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4388"> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="0" - id="stop4390" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:0;" - offset="1" - id="stop4392" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4388" - id="linearGradient4394" - x1="2.9999998" - y1="11.5" - x2="21" - y2="11.5" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4158"> - <stop - style="stop-color:#9a9c98;stop-opacity:1" - offset="0" - id="stop4160" /> - <stop - style="stop-color:#666763;stop-opacity:1" - offset="1" - id="stop4162" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4158" - id="linearGradient4164" - x1="16.274719" - y1="9.7764273" - x2="17.448" - y2="13.753902" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7894737,0,0,0.6666667,-1.4736843,1.8333322)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4048"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4050" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4052" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4048" - id="linearGradient4054" - x1="-10.516191" - y1="10.124428" - x2="36.795452" - y2="19.026175" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3941"> - <stop - style="stop-color:#af6d02;stop-opacity:1" - offset="0" - id="stop3943" /> - <stop - style="stop-color:#5f3b00;stop-opacity:1" - offset="1" - id="stop3945" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3941" - id="linearGradient3947" - x1="15.917198" - y1="16.659033" - x2="16.463091" - y2="20.489477" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7894737,0,0,0.7,-1.473684,0.4500012)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4003"> - <stop - style="stop-color:#c17d11;stop-opacity:1" - offset="0" - id="stop4005" /> - <stop - style="stop-color:#e9b96e;stop-opacity:1" - offset="1" - id="stop4007" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4003" - id="linearGradient4009" - x1="16.815628" - y1="16.941942" - x2="10.718681" - y2="16.941942" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7894737,0,0,0.7,-1.473684,0.4500012)" /> - <filter - inkscape:collect="always" - id="filter4540" - x="-0.087152615" - width="1.1743052" - y="-0.21174857" - height="1.4234971"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.37221428" - id="feGaussianBlur4542" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.197802" - inkscape:cx="8" - inkscape:cy="8" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="641" - inkscape:window-height="669" - inkscape:window-x="0" - inkscape:window-y="22"> - <inkscape:grid - type="xygrid" - id="grid8150" /> - </sodipodi:namedview> - <metadata - id="metadata8145"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - sodipodi:type="arc" - style="opacity:0.47499999999999998;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4540);enable-background:accumulate" - id="path4466" - sodipodi:cx="12.03125" - sodipodi:cy="4.265625" - sodipodi:rx="5.125" - sodipodi:ry="2.109375" - d="M 17.15625,4.265625 A 5.125,2.109375 0 1 1 6.90625,4.265625 A 5.125,2.109375 0 1 1 17.15625,4.265625 z" - transform="matrix(1.3658536,0,0,1.1656218,-8.4329267,-2.4721054)" /> - <path - style="fill:url(#linearGradient4009);fill-opacity:1;stroke:url(#linearGradient3947);stroke-width:1.00000072000000007;stroke-miterlimit:4;stroke-opacity:1" - d="m 0.50000029,9.8437508 0,3.5562497 C 0.50000029,14.5592 3.8600006,15.5 8.0000002,15.5 12.14,15.5 15.5,14.559199 15.5,13.4 l 0,-3.5562497 z" - id="path3936" - sodipodi:nodetypes="ccsccc" /> - <rect - style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4624" - width="2" - height="3" - x="3" - y="11" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0054175" - inkscape:original="M 2.5 11.5 L 2.5 18.5 C 2.5 20.155999 6.7560004 21.5 12 21.5 C 17.243999 21.5 21.5 20.155998 21.5 18.5 L 21.5 11.5 L 2.5 11.5 z " - style="fill:none;stroke:url(#linearGradient4054);stroke-width:1.44648218000000006;stroke-miterlimit:4;stroke-opacity:1" - id="path3983" - d="m 3.5,12.5 0,6 c 0,-0.016662 0.0034472,0.121066 0.34375,0.375 0.3403028,0.253934 0.9602178,0.531845 1.75,0.78125 C 7.1733144,20.15506 9.4638941,20.5 12,20.5 c 2.536106,0 4.826685,-0.34494 6.40625,-0.84375 0.789782,-0.249405 1.409697,-0.527316 1.75,-0.78125 C 20.496553,18.621066 20.5,18.483337 20.5,18.5 l 0,-6 z" - transform="matrix(0.7647058,0,0,0.6249999,-1.1764702,1.6875019)" /> - <rect - style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4056" - width="1" - height="3" - x="6" - y="11" - rx="0.5" - ry="0.5" /> - <rect - style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4078" - width="1" - height="3" - x="3" - y="10" - rx="0.5" - ry="0.5" /> - <rect - style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4131" - width="1" - height="3" - x="12" - y="10" - rx="0.5" - ry="0.5" /> - <rect - style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect2655" - width="2" - height="3" - x="10" - y="11" /> - <rect - style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect2664" - width="2" - height="2" - x="13" - y="11" /> - <rect - style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect2646" - width="2" - height="3" - x="7" - y="12" /> - <rect - style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4140" - width="1" - height="3" - x="8" - y="10" - rx="0.5" - ry="0.5" /> - <path - style="fill:#eeeeec;fill-opacity:1;stroke:url(#linearGradient4164);stroke-width:1.00000059999999991;stroke-miterlimit:4;stroke-opacity:1" - d="M 15.500001,9.5000002 C 15.500001,10.604 12.139999,11.5 8,11.5 3.8600003,11.5 0.5000003,10.604 0.5000003,9.5000004 0.5000003,8.3960006 3.8600004,7.5000001 8,7.5000001 c 4.140001,0 7.500001,0.89600032 7.500001,2.0000001 z" - id="path1307" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0051613" - inkscape:original="M 12 8.5 C 6.7560004 8.5 2.5000001 9.844 2.5 11.5 C 2.5 13.155999 6.7560004 14.5 12 14.5 C 17.243999 14.5 21.5 13.155999 21.5 11.5 C 21.5 9.844 17.244 8.5000008 12 8.5 z " - xlink:href="#path4198" - style="fill:url(#linearGradient4394);fill-opacity:1;stroke:#ffffff;stroke-width:1.61721622999999992;stroke-miterlimit:4;stroke-opacity:1" - id="path4200" - d="M 12,9.5 C 9.4638721,9.5 7.1733501,9.8449289 5.59375,10.34375 4.80395,10.593161 4.1840886,10.87104 3.84375,11.125 3.5034114,11.37896 3.5,11.516552 3.5,11.5 c 0,-0.016553 0.0034113,0.12104 0.34375,0.375 0.3403387,0.25396 0.9601999,0.531839 1.75,0.78125 C 7.1733501,13.155071 9.4638722,13.5 12,13.5 c 2.536128,0 4.82665,-0.344929 6.40625,-0.84375 0.7898,-0.249411 1.409661,-0.52729 1.75,-0.78125 C 20.496589,11.62104 20.5,11.483447 20.5,11.5 c 0,0.016552 -0.003411,-0.12104 -0.34375,-0.375 -0.340339,-0.25396 -0.9602,-0.53184 -1.75,-0.78125 C 16.82665,9.844929 14.536128,9.5000004 12,9.5 z" - transform="matrix(0.7647058,0,0,0.4999999,-1.1764702,3.7500016)" /> - <rect - style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3431);stroke-width:1.00000011999999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3304" - width="2" - height="4.999999" - x="7.5" - y="4.500001" - rx="1" - ry="1" /> - <rect - style="opacity:0.55500033999999998;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3308" - width="1" - height="1" - x="8" - y="6" /> - <rect - style="opacity:0.55500033999999998;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3330" - width="1" - height="1" - x="8" - y="8" /> - <rect - style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3608" - width="1" - height="1" - x="7" - y="6" /> - <rect - style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3617" - width="1" - height="1" - x="7" - y="8" /> - <rect - style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3626" - width="1" - height="1" - x="9" - y="8" /> - <rect - style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3635" - width="1" - height="1" - x="9" - y="6" /> - <path - style="fill:url(#linearGradient4306);fill-opacity:1;stroke:url(#linearGradient4308);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1" - d="m 8.9999763,3.4999993 c -0.827986,0 -1.499975,-0.6719998 -1.499975,-1.4999993 0,-0.82799966 0.671989,-1.4999994 1.4999755,-1.4999994 0.5378079,0 0.8279864,2.9999986 0,2.9999987 z" - id="path4284" - sodipodi:nodetypes="csss" /> - <path - style="fill:url(#linearGradient3046);fill-opacity:1;stroke:url(#linearGradient3048);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1" - d="M 4.9821711,4.4999994 C 4.1541851,4.4999994 3.4821961,3.8279997 3.4821961,3.0000001 C 3.4821961,2.1720004 4.1541851,1.5000007 4.9821711,1.5000007 C 5.5199791,1.5000007 5.8101571,4.4999993 4.9821711,4.4999994 L 4.9821711,4.4999994 z" - id="path2289" - sodipodi:nodetypes="csss" /> - <rect - style="fill:#6ec31b;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3034);stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3469" - width="2" - height="4" - x="3.5" - y="5.5" - rx="1" - ry="1" /> - <rect - style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3471" - width="1" - height="1" - x="4" - y="5.9999995" /> - <rect - style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3473" - width="1" - height="1" - x="4" - y="7.9999995" /> - <rect - style="fill:#ad7fa8;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3029);stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3533" - width="2" - height="4" - x="11.517806" - y="5.5" - rx="1" - ry="1" /> - <rect - style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3535" - width="1" - height="1" - x="12.017806" - y="5.9999995" /> - <rect - style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3537" - width="1" - height="1" - x="12.017806" - y="7.9999995" /> - <rect - style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3559" - width="1" - height="1" - x="3" - y="6" /> - <rect - style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3581" - width="1" - height="1" - x="3" - y="8" /> - <rect - style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3590" - width="1" - height="1" - x="5" - y="8" /> - <rect - style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3599" - width="1" - height="1" - x="5" - y="6" /> - <rect - style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3644" - width="1" - height="1" - x="11.017806" - y="6" /> - <rect - style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3653" - width="1" - height="1" - x="13.017806" - y="6" /> - <rect - style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3662" - width="1" - height="1" - x="13.017806" - y="8" /> - <rect - style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect3671" - width="1" - height="1" - x="11.017806" - y="8" /> - <path - style="fill:url(#linearGradient3005);fill-opacity:1;stroke:url(#linearGradient3007);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1" - d="M 12.999976,4.4999993 C 12.17199,4.4999993 11.500001,3.8279995 11.500001,3 C 11.500001,2.1720003 12.17199,1.5000006 12.999977,1.5000006 C 13.537784,1.5000006 13.827963,4.4999992 12.999977,4.4999993 L 12.999976,4.4999993 z" - id="path4348" - sodipodi:nodetypes="csss" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/blocked.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,139 +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="16px" - height="16px" - id="svg4220" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/toolbars/16/scalable" - sodipodi:docname="blocked.svg" - inkscape:export-filename="/home/hbons/Desktop/block.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4222"> - <linearGradient - id="linearGradient2241" - inkscape:collect="always"> - <stop - id="stop2243" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop2245" - offset="1" - style="stop-color:#eeeeec;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2241" - id="linearGradient2826" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.002185,0,0,0.866653,-24.02518,-2.399763)" - x1="19.003813" - y1="9.3585329" - x2="15.520383" - y2="14.406374" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="25.498579" - inkscape:cx="19.947241" - inkscape:cy="9.0174755" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:object-points="false" - inkscape:grid-points="true" - inkscape:window-width="1440" - inkscape:window-height="849" - inkscape:window-x="0" - inkscape:window-y="0" - showguides="true" - inkscape:guide-bbox="true" /> - <metadata - id="metadata4225"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <rect - style="fill:#c17d11;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999875;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect1324" - width="11.000001" - height="14.999996" - x="-13.5" - y="0.49999937" - ry="0" - transform="scale(-1,1)" /> - <rect - style="opacity:0.3;fill:url(#linearGradient2826);fill-opacity:1;stroke:white;stroke-width:0.99999827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2211" - width="9.0000048" - height="12.999996" - x="-12.500007" - y="1.4999992" - ry="0" - transform="scale(-1,1)" /> - <path - sodipodi:type="arc" - style="fill:#fecb81;fill-opacity:1;stroke:none;stroke-width:2.03035927;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2215" - sodipodi:cx="17.607706" - sodipodi:cy="10.679387" - sodipodi:rx="0.80383009" - sodipodi:ry="0.80383009" - d="M 18.411536 10.679387 A 0.80383009 0.80383009 0 1 1 16.803876,10.679387 A 0.80383009 0.80383009 0 1 1 18.411536 10.679387 z" - transform="matrix(-1.244046,0,0,1.245728,26.90479,-6.302258)" /> - <rect - style="opacity:1;fill:#ce9f52;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2878" - width="15.000005" - height="2.0000005" - x="0.49999997" - y="9.5" /> - <rect - style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999934;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2880" - width="2.0000017" - height="3.9999959" - x="1.5" - y="8.500001" - rx="0.90201104" - ry="0.90201104" /> - <rect - style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999934;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2884" - width="2.0000017" - height="3.9999959" - x="12.499999" - y="8.500001" - rx="0.90201104" - ry="0.90201104" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/bot.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,191 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" - sodipodi:docname="bot.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/bot.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2434"> - <stop - style="stop-color:#3465a4;stop-opacity:1;" - offset="0" - id="stop2436" /> - <stop - style="stop-color:#3465a4;stop-opacity:0;" - offset="1" - id="stop2438" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2381"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop2383" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop2385" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2381" - id="radialGradient2387" - cx="8" - cy="6.3252358" - fx="8" - fy="6.3252358" - r="5.5" - gradientTransform="matrix(1,0,0,0.727273,-2.499086e-17,2.590909)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2434" - id="linearGradient2440" - x1="8.0002842" - y1="7.9528065" - x2="8.0002842" - y2="3.994154" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.000231,0,0,1.003358,-2.099138e-3,-2.699002e-2)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="24.007726" - inkscape:cx="15.409556" - inkscape:cy="3.028583" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showguides="true" - inkscape:guide-bbox="true" - showgrid="true" - fill="#3465a4" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21"> - <sodipodi:guide - orientation="vertical" - position="-845.97209" - id="guide1317" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1" - d="M 8.0273697,2.4999816 C 11.768865,2.4999816 13.504889,4.6239578 13.504889,6.0188482 L 13.504889,10.982138 C 13.504889,12.377028 12.554059,13.49999 11.372982,13.49999 L 4.6301353,13.49999 C 3.4490585,13.49999 2.4982278,12.377028 2.4982278,10.982138 L 2.4982278,6.0188482 C 2.4982278,4.6239578 4.3150401,2.4999816 8.0273697,2.4999816 z " - id="rect2337" - sodipodi:nodetypes="cccccccz" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0049763" - inkscape:original="M 8.03125 2.5 C 4.3189204 2.5 2.5 4.6363594 2.5 6.03125 L 2.5 10.96875 C 2.5 12.36364 3.443923 13.5 4.625 13.5 L 11.375 13.5 C 12.556077 13.5 13.5 12.36364 13.5 10.96875 L 13.5 6.03125 C 13.5 4.6363596 11.772746 2.5 8.03125 2.5 z " - xlink:href="#rect2337" - style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1" - id="path2364" - inkscape:href="#rect2337" - d="M 8.03125,3.5 C 4.6641987,3.5 3.46875,5.5073994 3.46875,6.03125 L 3.46875,10.96875 C 3.46875,11.900898 4.0706163,12.5 4.625,12.5 L 11.4375,12.5 C 11.991885,12.5 12.5625,11.915908 12.5625,10.96875 L 12.5625,6.03125 C 12.5625,5.478244 11.430731,3.5 8.03125,3.5 z " /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0049763" - inkscape:original="M 8.03125 2.5 C 4.3189204 2.5 2.5 4.6363594 2.5 6.03125 L 2.5 10.96875 C 2.5 12.36364 3.443923 13.5 4.625 13.5 L 11.375 13.5 C 12.556077 13.5 13.5 12.36364 13.5 10.96875 L 13.5 6.03125 C 13.5 4.6363596 11.772746 2.5 8.03125 2.5 z " - xlink:href="#rect2337" - style="opacity:0.5;fill:url(#radialGradient2387);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1" - id="path2379" - inkscape:href="#rect2337" - d="M 8.03125,4.5 C 4.6641988,4.5 3.46875,6.5073996 3.46875,7.03125 L 3.46875,11.96875 C 3.46875,12.900898 4.0706163,13.5 4.625,13.5 L 11.4375,13.5 C 11.991885,13.5 12.5625,12.915908 12.5625,11.96875 L 12.5625,7.03125 C 12.5625,6.478244 11.430731,4.5000001 8.03125,4.5 z " - transform="matrix(0.909091,0,0,0.875,0.727273,0.187503)" /> - <rect - style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2343" - width="4" - height="1" - x="6" - y="11" - rx="0" - ry="1" /> - <rect - style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2397" - width="1.9817986" - height="4.9895701" - x="0.50910079" - y="6.5103664" - ry="0.9731853" - rx="0.97318554" /> - <rect - style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999923;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2399" - width="1.9878451" - height="4.9889064" - x="13.510628" - y="6.5102949" - ry="0.97318453" - rx="0.97318554" /> - <rect - style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2407" - width="1" - height="1" - x="5" - y="10" - rx="0" - ry="1" /> - <rect - style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2409" - width="1" - height="1" - x="10" - y="10" - rx="0" - ry="1" /> - <rect - style="opacity:1;fill:url(#linearGradient2440);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2424" - width="6.9998379" - height="2.997915" - x="4.5001144" - y="5.501677" - ry="0.99999988" - rx="0.99999964" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/external.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,153 +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="16px" - height="16px" - id="svg7380" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="external.svg" - inkscape:export-filename="/home/hbons/Desktop/external.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs7382"> - <linearGradient - inkscape:collect="always" - id="linearGradient25546"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop25548" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop25550" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25546" - id="radialGradient25554" - cx="7.8836637" - cy="1.5104795" - fx="7.8836637" - fy="1.5104795" - r="8.4883642" - gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25546" - id="radialGradient25568" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)" - cx="7.8836741" - cy="0.14505707" - fx="7.8836741" - fy="0.14505707" - r="8.4883642" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient25546" - id="radialGradient25572" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)" - cx="7.8836637" - cy="1.5104795" - fx="7.8836637" - fy="1.5104795" - r="8.4883642" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.197802" - inkscape:cx="15.928713" - inkscape:cy="7.0990099" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - width="24px" - height="24px" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="872" - inkscape:window-height="626" - inkscape:window-x="6" - inkscape:window-y="94" /> - <metadata - id="metadata7385"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - sodipodi:type="arc" - style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1.0481478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path7388" - sodipodi:cx="7.8836637" - sodipodi:cy="7.8460393" - sodipodi:rx="7.8836637" - sodipodi:ry="7.838614" - d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1 0,7.8460393 A 7.8836637 7.838614 0 1 1 15.767327 7.8460393 z" - transform="matrix(0.951334,0,0,0.956802,0.5,0.492896)" /> - <path - style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 10.90625,2 C 9.7428141,2 8.7812499,2.8959991 8.78125,4 C 8.78125,5.1040008 9.7428141,5.9999999 10.90625,6 C 12.069686,6 13,5.1040007 13,4 C 13,2.8959992 12.069686,2 10.90625,2 z M 4,3 C 2.8960002,3 2,3.8959993 2,5 C 2,5.4301796 2.1436219,5.8299355 2.375,6.15625 C 1.573931,6.5477359 0.99999996,7.6683 1,9 C 1,10.656 1.8960002,12 3,12 C 4.1039998,12 5.0000002,10.655999 5,9 C 5,8.2118079 4.7692756,7.5043072 4.4375,6.96875 C 5.3340078,6.771061 6.0000002,5.9556507 6,5 C 6,3.8959992 5.1039998,3 4,3 z M 11.5,6 C 9.568,6 8.0000001,7.1200004 8,8.5 C 8,9.5086172 8.8261102,10.38618 10.03125,10.78125 C 10.116966,12.025862 10.730396,13 11.5,13 C 12.269604,13 12.883034,12.025862 12.96875,10.78125 C 14.17389,10.38618 15,9.5086171 15,8.5 C 15,7.1200006 13.432,6 11.5,6 z " - id="path8277" /> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#radialGradient25554);fill-opacity:1;stroke:#eeeeec;stroke-width:1.20940173;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path8275" - sodipodi:cx="7.8836637" - sodipodi:cy="7.8460393" - sodipodi:rx="7.8836637" - sodipodi:ry="7.838614" - d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1 0,7.8460393 A 7.8836637 7.838614 0 1 1 15.767327 7.8460393 z" - transform="matrix(0.824489,0,0,0.829228,1.5,1.493846)" /> - <path - sodipodi:type="arc" - style="opacity:0.2544643;fill:url(#radialGradient25568);fill-opacity:1;stroke:#eeeeec;stroke-width:1.64813614;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path25566" - sodipodi:cx="7.8836637" - sodipodi:cy="7.8460393" - sodipodi:rx="7.8836637" - sodipodi:ry="7.838614" - d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1 0,7.8460393 A 7.8836637 7.838614 0 1 1 15.767327 7.8460393 z" - transform="matrix(0.443956,0,0,0.829228,4.5,1.493846)" /> - <path - sodipodi:type="arc" - style="opacity:0.25892855;fill:url(#radialGradient25572);fill-opacity:1;stroke:#eeeeec;stroke-width:1.64813614;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path25570" - sodipodi:cx="7.8836637" - sodipodi:cy="7.8460393" - sodipodi:rx="7.8836637" - sodipodi:ry="7.838614" - d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1 0,7.8460393 A 7.8836637 7.838614 0 1 1 15.767327 7.8460393 z" - transform="matrix(0,0.443956,-0.829228,0,14.50615,4.5)" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/female.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,113 +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="svg1307" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh" - sodipodi:docname="female.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/female.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - version="1.0" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs1309"> - <linearGradient - inkscape:collect="always" - id="linearGradient2206"> - <stop - style="stop-color:#c372cf;stop-opacity:1;" - offset="0" - id="stop2208" /> - <stop - style="stop-color:#c372cf;stop-opacity:0;" - offset="1" - id="stop2210" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2206" - id="linearGradient2212" - x1="8.7527227" - y1="8.5870285" - x2="8.7527227" - y2="-0.61677557" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="44.395605" - inkscape:cx="15.206295" - inkscape:cy="6.2089057" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - fill="#729fcf" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" - showguides="true" - inkscape:guide-bbox="true" /> - <metadata - id="metadata1312"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - sodipodi:type="arc" - style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1305" - sodipodi:cx="5.0230198" - sodipodi:cy="5.3570547" - sodipodi:rx="3.3111386" - sodipodi:ry="2.6917078" - d="M 5.2408909,8.0429293 A 3.3111386,2.6917078 0 0 1 5.227167,8.0436417" - sodipodi:start="1.5049493" - sodipodi:end="1.5091025" - sodipodi:open="true" /> - <path - sodipodi:type="arc" - style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1307" - sodipodi:cx="2.8944306" - sodipodi:cy="2.8680694" - sodipodi:rx="1.4303218" - sodipodi:ry="1.4190594" - d="M 2.988545,4.2840535 A 1.4303218,1.4190594 0 0 1 2.9826167,4.2844291" - sodipodi:start="1.5049493" - sodipodi:end="1.5091025" - sodipodi:open="true" /> - <path - style="opacity:1;fill:url(#linearGradient2212);fill-opacity:1.0;stroke:#c7349f;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 8.03125 1.5 C 6.0362037 1.7252787 4.4999999 3.4448511 4.5 5.5 C 4.5 7.3629757 5.7751975 8.9308504 7.5 9.375 L 7.5 10.5 L 5.5 10.5 L 5.5 12.5 L 7.5 12.5 L 7.5 14.5 L 9.5 14.5 L 9.5 12.5 L 11.5 12.5 L 11.5 10.5 L 9.5 10.5 L 9.5 9.375 C 11.224803 8.9308505 12.5 7.3629757 12.5 5.5 C 12.5 3.2920288 10.707789 1.5 8.5 1.5 C 8.3965099 1.5 8.2890204 1.4922668 8.1875 1.5 C 8.1391192 1.5036853 8.0791311 1.4945933 8.03125 1.5 z M 8.34375 3.5 C 8.3943599 3.4961452 8.4484081 3.5 8.5 3.5 C 9.6006259 3.4999999 10.5 4.3993736 10.5 5.5 C 10.5 6.6006265 9.6006264 7.5 8.5 7.5 C 7.3993732 7.5000001 6.5 6.6006264 6.5 5.5 C 6.5 4.4509656 7.3146811 3.5783814 8.34375 3.5 z " - id="path1313" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/free-for-chat.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,192 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/emblems/scalable" - sodipodi:docname="free-for-chat.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/toolbars/16/emote-select.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3104"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3106" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop3108" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3104" - id="radialGradient3114" - cx="8.0159302" - cy="14.49998" - fx="8.0159302" - fy="14.49998" - r="9.975256" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="36.388908" - inkscape:cx="15.503334" - inkscape:cy="8.5115617" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#2e3436" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="47" - showguides="true" - inkscape:guide-bbox="true" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(1.203929,0,0,0.844757,-4.940617,5.165834)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#f57900;stroke-width:1.33385623;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1307" - sodipodi:cx="11.806158" - sodipodi:cy="10.983024" - sodipodi:rx="9.975256" - sodipodi:ry="9.975256" - d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1 1.8309021,10.983024 A 9.975256 9.975256 0 1 1 21.781414 10.983024 z" - transform="matrix(0.751566,0,0,0.751566,-0.873654,-0.255014)" /> - <path - sodipodi:type="arc" - style="opacity:0.79545456;fill:url(#radialGradient3114);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3102" - sodipodi:cx="11.806158" - sodipodi:cy="10.983024" - sodipodi:rx="9.975256" - sodipodi:ry="9.975256" - d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1 1.8309021,10.983024 A 9.975256 9.975256 0 1 1 21.781414 10.983024 z" - transform="matrix(0.601488,0,0,0.601488,0.898734,1.393846)" /> - <path - sodipodi:type="arc" - style="opacity:0.7;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.53516853;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2184" - sodipodi:cx="11.806158" - sodipodi:cy="10.983024" - sodipodi:rx="9.975256" - sodipodi:ry="9.975256" - d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1 1.8309021,10.983024 A 9.975256 9.975256 0 1 1 21.781414 10.983024 z" - transform="matrix(0.651393,0,0,0.651393,0.308855,0.845039)" /> - <path - style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 11.991472,9 C 11.581026,10.712824 9.995676,12.047691 7.997585,12 C 5.999494,11.952309 4.4416249,10.740305 4.0311784,9.0274809 C 4.7686393,10.13659 6.5310171,10.513632 7.997585,10.513632 C 9.464152,10.513633 11.254011,10.109109 11.991472,9 z " - id="path2186" - sodipodi:nodetypes="czcsc" - transform="matrix(1,0,0,1.332783,0,-2.995046)" /> - <rect - style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2243" - width="1" - height="3" - x="6" - y="5" - ry="0.5" /> - <rect - style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2246" - width="1" - height="3" - x="9" - y="5" - ry="0.5" - rx="0.5" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#fce94f;fill-opacity:1;stroke:#f57900;stroke-width:0.92844784;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5203" - sodipodi:cx="0.90686977" - sodipodi:cy="4.6503878" - sodipodi:rx="2.2534339" - sodipodi:ry="2.3908384" - d="M 3.1603037 4.6503878 A 2.2534339 2.3908384 0 1 1 -1.3465642,4.6503878 A 2.2534339 2.3908384 0 1 1 3.1603037 4.6503878 z" - transform="matrix(1.109418,0,0,1.045658,11.9939,-1.862717)" /> - <path - sodipodi:type="arc" - style="opacity:0.7;fill:none;fill-opacity:1;stroke:#eeeeec;stroke-width:1.54741251;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path6090" - sodipodi:cx="0.90686977" - sodipodi:cy="4.6503878" - sodipodi:rx="2.2534339" - sodipodi:ry="2.3908384" - d="M 3.1603037 4.6503878 A 2.2534339 2.3908384 0 1 1 -1.3465642,4.6503878 A 2.2534339 2.3908384 0 1 1 3.1603037 4.6503878 z" - transform="matrix(0.665651,0,0,0.627395,12.39634,8.236986e-2)" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/game.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,146 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/emblems/scalable" - sodipodi:docname="game.svg" - inkscape:export-filename="/home/hbons/GUI/Tango/Gaim Refresh/emblems/game.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2264"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop2266" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop2268" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2264" - id="linearGradient2270" - x1="8" - y1="3.5630622" - x2="8" - y2="11.671161" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="39.000665" - inkscape:cx="14.206455" - inkscape:cy="7.7355854" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showguides="true" - inkscape:guide-bbox="true" - showgrid="true" - fill="#eeeeec" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="47"> - <sodipodi:guide - orientation="vertical" - position="-845.97209" - id="guide1317" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - style="fill:#444643;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1" - d="M 3.9835017,1.4980972 L 11.999829,1.4980972 C 13.394769,1.4980972 14.517772,2.6210999 14.517772,4.0160406 L 14.517772,11.982734 C 14.517772,13.377675 13.394769,14.500678 11.999829,14.500678 L 3.9835017,14.500678 C 2.588561,14.500678 1.4655583,13.377675 1.4655583,11.982734 L 1.4655583,4.0160406 C 1.4655583,2.6210999 2.588561,1.4980972 3.9835017,1.4980972 z " - id="path2254" /> - <path - style="fill:#f13d3d;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" - d="M 4.0064655,1.4999056 L 11.99231,1.4999056 C 13.381945,1.4999056 14.500677,2.6226961 14.500677,4.0173732 L 14.500677,11.982561 C 14.500677,13.377238 13.381945,14.500029 11.99231,14.500029 L 4.0064655,14.500029 C 2.6168293,14.500029 1.4980971,13.377238 1.4980971,11.982561 L 1.4980971,4.0173732 C 1.4980971,2.6226961 2.6168293,1.4999056 4.0064655,1.4999056 z " - id="rect2233" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0076212" - inkscape:original="M 4 1.5 C 2.6103638 1.5 1.5 2.636573 1.5 4.03125 L 1.5 11.96875 C 1.5 13.363427 2.6103639 14.5 4 14.5 L 12 14.5 C 13.389635 14.5 14.5 13.363427 14.5 11.96875 L 14.5 4.03125 C 14.5 2.6365729 13.389635 1.5 12 1.5 L 4 1.5 z " - xlink:href="#rect2233" - style="fill:url(#linearGradient2270);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1;opacity:0.3" - id="path2252" - inkscape:href="#rect2233" - d="M 3.96875,2.5 C 3.1210101,2.5 2.46875,3.1684612 2.46875,4.03125 L 2.46875,11.96875 C 2.46875,12.831539 3.1210101,13.5 3.96875,13.5 L 12,13.5 C 12.847739,13.5 13.53125,12.81649 13.53125,11.96875 L 13.53125,4.03125 C 13.53125,3.1835106 12.847739,2.5 12,2.5 L 3.96875,2.5 z " /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2235" - sodipodi:cx="5.0328703" - sodipodi:cy="5.3124371" - sodipodi:rx="0.68011761" - sodipodi:ry="0.77727729" - d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1 4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1 5.7129879 5.3124371 z" - transform="matrix(2.205501,0,0,1.929813,-5.600001,-4.75201)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2272" - sodipodi:cx="5.0328703" - sodipodi:cy="5.3124371" - sodipodi:rx="0.68011761" - sodipodi:ry="0.77727729" - d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1 4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1 5.7129879 5.3124371 z" - transform="matrix(2.205501,0,0,1.929813,-5.6,0.24799)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2274" - sodipodi:cx="5.0328703" - sodipodi:cy="5.3124371" - sodipodi:rx="0.68011761" - sodipodi:ry="0.77727729" - d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1 4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1 5.7129879 5.3124371 z" - transform="matrix(2.205501,0,0,1.929813,-0.600001,0.24799)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2276" - sodipodi:cx="5.0328703" - sodipodi:cy="5.3124371" - sodipodi:rx="0.68011761" - sodipodi:ry="0.77727729" - d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1 4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1 5.7129879 5.3124371 z" - transform="matrix(2.205501,0,0,1.929813,-0.6,-4.75201)" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/male.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,113 +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="svg1307" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh" - sodipodi:docname="male.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/female.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - version="1.0" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs1309"> - <linearGradient - inkscape:collect="always" - id="linearGradient2248"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop2250" /> - <stop - style="stop-color:#729fcf;stop-opacity:0" - offset="1" - id="stop2252" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2248" - id="linearGradient2254" - x1="8.4317303" - y1="8.3947935" - x2="7.0192189" - y2="2.5513308" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="25.498579" - inkscape:cx="15.206295" - inkscape:cy="6.2089057" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - fill="#729fcf" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" - showguides="true" - inkscape:guide-bbox="true" /> - <metadata - id="metadata1312"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - sodipodi:type="arc" - style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1305" - sodipodi:cx="5.0230198" - sodipodi:cy="5.3570547" - sodipodi:rx="3.3111386" - sodipodi:ry="2.6917078" - d="M 5.2408909,8.0429293 A 3.3111386,2.6917078 0 0 1 5.227167,8.0436417" - sodipodi:start="1.5049493" - sodipodi:end="1.5091025" - sodipodi:open="true" /> - <path - sodipodi:type="arc" - style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1307" - sodipodi:cx="2.8944306" - sodipodi:cy="2.8680694" - sodipodi:rx="1.4303218" - sodipodi:ry="1.4190594" - d="M 2.988545,4.2840535 A 1.4303218,1.4190594 0 0 1 2.9826167,4.2844291" - sodipodi:start="1.5049493" - sodipodi:end="1.5091025" - sodipodi:open="true" /> - <path - style="opacity:1;fill:url(#linearGradient2254);fill-opacity:1.0;stroke:#3465a4;stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 9.5625001,2.5052306 L 10.8125,3.730362 L 8.5312501,6.0235566 C 7.9356185,5.6694146 7.2416791,5.4581114 6.5000001,5.4581114 C 4.2922116,5.4581114 2.5,7.2595228 2.5000001,9.4790554 C 2.5000001,11.698588 4.2922117,13.5 6.5000001,13.5 C 8.7077886,13.5 10.5,11.698588 10.5,9.4790554 C 10.5,8.7334313 10.289768,8.0359696 9.9375001,7.4371697 L 12.21875,5.1439751 L 13.5,6.4005201 L 13.5,2.5052306 L 9.5625001,2.5052306 z M 6.4062501,7.5314106 C 6.4402689,7.529683 6.4655548,7.5314106 6.5000001,7.5314106 C 7.6022508,7.5314105 8.5000001,8.4387958 8.5000001,9.5418826 C 8.4999997,10.644969 7.6022508,11.552355 6.5000001,11.552355 C 5.3977495,11.552355 4.5000001,10.644969 4.5000001,9.5418826 C 4.5000001,8.4732675 5.3516684,7.5849654 6.4062501,7.5314106 z " - id="path1313" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/mobile.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,264 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" - sodipodi:docname="mobile.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/mobile.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient3335"> - <stop - style="stop-color:#204a87;stop-opacity:1;" - offset="0" - id="stop3337" /> - <stop - style="stop-color:#204a87;stop-opacity:0;" - offset="1" - id="stop3339" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3300"> - <stop - style="stop-color:#204a87;stop-opacity:1;" - offset="0" - id="stop3302" /> - <stop - style="stop-color:#204a87;stop-opacity:0;" - offset="1" - id="stop3304" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3300" - id="linearGradient3315" - gradientUnits="userSpaceOnUse" - x1="-0.0061673229" - y1="11.454797" - x2="5.6395993" - y2="11.454797" - gradientTransform="matrix(0.580679,0,0,0.709346,1.207372,-1.624473)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3335" - id="linearGradient3341" - x1="-27.615904" - y1="21.696934" - x2="-19.2363" - y2="18.633484" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3300" - id="linearGradient3353" - x1="-28.160521" - y1="22.551313" - x2="-18.170761" - y2="17.799398" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="36.388908" - inkscape:cx="12.47515" - inkscape:cy="8.110346" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#888a85" - inkscape:window-width="1268" - inkscape:window-height="972" - inkscape:window-x="6" - inkscape:window-y="21" - inkscape:grid-points="true" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <rect - style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000036;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect1331" - width="7.9919939" - height="12.993911" - x="7.5040998" - y="1.504545" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0228416" - inkscape:original="M 7.5 1.5 L 7.5 14.5 L 15.5 14.5 L 15.5 1.5 L 7.5 1.5 z " - xlink:href="#rect1331" - style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99199408px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="path2206" - inkscape:href="#rect1331" - d="M 8.53125,2.53125 L 8.53125,13.46875 L 14.46875,13.46875 L 14.46875,2.53125 L 8.53125,2.53125 z " - transform="matrix(1.010173,0,0,1.005973,-0.115518,-4.844059e-2)" /> - <rect - style="fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:0.99999928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2208" - width="3.9807076" - height="3.0005636" - x="9.5027981" - y="3.499944" /> - <path - style="opacity:0.38150288;color:#000000;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;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" - d="M 9,3 L 9,6 C 9.6849325,5.8078592 10.39969,5.560911 11.098766,5.2718451 C 12.171483,4.8282801 13.137384,4.3213781 14,3.7572819 L 14,3 L 9,3 z " - id="path2220" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2233" - width="1" - height="1" - x="9" - y="8" /> - <path - sodipodi:type="spiral" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3353);stroke-width:7.08695936px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="path3252" - sodipodi:cx="-11" - sodipodi:cy="17" - sodipodi:expansion="1" - sodipodi:revolution="1.1139722" - sodipodi:radius="17.723295" - sodipodi:argument="-9.424778" - sodipodi:t0="0.70807511" - d="M -14.027341,29.178804 C -22.234168,28.813068 -27.756867,20.82956 -27.038836,13.013154 C -26.789036,10.293863 -25.851755,7.6562253 -24.369854,5.3654734" - transform="matrix(0.120201,5.654854e-2,-4.742318e-2,0.143331,9.572983,5.110321)" /> - <path - sodipodi:type="spiral" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3341);stroke-width:3.73703289px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="path3254" - sodipodi:cx="-11" - sodipodi:cy="17" - sodipodi:expansion="1" - sodipodi:revolution="1.1157676" - sodipodi:radius="17.751867" - sodipodi:argument="-9.424778" - sodipodi:t0="0.69832003" - d="M -13.258788,29.188958 C -21.390692,29.337435 -27.331334,21.779752 -27.099873,14.016463 C -27.00639,10.881001 -25.990716,7.8068052 -24.259099,5.1963947" - transform="matrix(0.219568,0.111334,-8.662678e-2,0.282195,10.94256,3.73758)" /> - <path - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3315);stroke-width:1.00000131px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 4.5539611,12.498317 C 2.0020373,11.459655 0.92343648,7.5201545 1.7880505,4.3367901 C 2.2231942,2.7346624 3.0921081,1.3783732 4.1882245,0.50356567" - id="path3256" - sodipodi:nodetypes="csc" /> - <rect - style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3355" - width="1" - height="1" - x="7" - y="1" /> - <rect - style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect1340" - width="1" - height="1" - x="15" - y="1" /> - <rect - style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect1342" - width="1" - height="1" - x="15" - y="14" /> - <rect - style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect1344" - width="1" - height="1" - x="7" - y="14" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2220" - width="1" - height="1" - x="11" - y="8" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2222" - width="1" - height="1" - x="13" - y="8" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2224" - width="1" - height="1" - x="13" - y="10" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2226" - width="1" - height="1" - x="11" - y="10" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2228" - width="1" - height="1" - x="9" - y="10" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2230" - width="1" - height="1" - x="9" - y="12" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2232" - width="1" - height="1" - x="11" - y="12" /> - <rect - style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect2234" - width="1" - height="1" - x="13" - y="12" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/music.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,189 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:modified="true" - version="1.0" - sodipodi:docname="music.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient3185"> - <stop - style="stop-color:#4e9a06;stop-opacity:1;" - offset="0" - id="stop3187" /> - <stop - style="stop-color:#4e9a06;stop-opacity:0" - offset="1" - id="stop3189" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3177"> - <stop - style="stop-color:#4e9a06;stop-opacity:1;" - offset="0" - id="stop3179" /> - <stop - style="stop-color:#4e9a06;stop-opacity:0;" - offset="1" - id="stop3181" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3153"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3155" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop3157" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3153" - id="linearGradient3159" - x1="2.5409546" - y1="10.048674" - x2="10.378205" - y2="15.928688" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3177" - id="radialGradient3183" - cx="5.2116022" - cy="8.4051199" - fx="5.2116022" - fy="8.4051199" - r="2.9404981" - gradientTransform="matrix(2.6050387,0,0,2.2888674,-8.415579,-10.767812)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3185" - id="radialGradient3191" - cx="5.1978397" - cy="8.4135866" - fx="5.1978397" - fy="8.4135866" - r="3.1428281" - gradientTransform="matrix(2.8202152,0,0,2.4999643,-9.461187,-12.455954)" - gradientUnits="userSpaceOnUse" /> - </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="22.4" - inkscape:cx="19.784002" - inkscape:cy="11.848" - inkscape:document-units="px" - inkscape:current-layer="layer1" - width="16px" - height="16px" - showgrid="true" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="22" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:1;fill:#555753;fill-opacity:1;stroke:#222728;stroke-width:1.14297926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2160" - sodipodi:cx="6.4712896" - sodipodi:cy="14.484771" - sodipodi:rx="3.5986683" - sodipodi:ry="2.1781414" - d="M 10.069958 14.484771 A 3.5986683 2.1781414 0 1 1 2.8726213,14.484771 A 3.5986683 2.1781414 0 1 1 10.069958 14.484771 z" - transform="matrix(0.8336417,0,0,0.918214,4.1052631,-0.8001194)" /> - <rect - style="opacity:1;fill:#222728;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect3143" - width="1" - height="12" - x="12" - y="1" - rx="0.18940361" - ry="0.20662212" /> - <path - style="fill:#222728;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 12.006464,3.0203051 L 11.981638,1 C 13.945163,1 17.837365,1.1548232 14.996311,7.9684328 C 15.596089,2.2547574 13.743811,3.0203051 12.006464,3.0203051 z " - id="rect3146" - sodipodi:nodetypes="cccc" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#555753;fill-opacity:1;stroke:url(#linearGradient3159);stroke-width:1.97969818;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3151" - sodipodi:cx="6.4712896" - sodipodi:cy="14.484771" - sodipodi:rx="3.5986683" - sodipodi:ry="2.1781414" - d="M 10.069958 14.484771 A 3.5986683 2.1781414 0 1 1 2.8726213,14.484771 A 3.5986683 2.1781414 0 1 1 10.069958 14.484771 z" - transform="matrix(0.5557611,0,0,0.4591071,5.903509,5.8499391)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient3191);stroke-width:0.98568761;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3173" - sodipodi:cx="8.0970039" - sodipodi:cy="11.122857" - sodipodi:rx="4.3089318" - sodipodi:ry="3.5513175" - d="M 3.9729753,12.152015 A 4.3089318,3.5513175 0 0 1 9.0871283,7.6665672" - transform="matrix(1.0443424,0,0,0.9855497,-0.4560443,3.7870959e-2)" - sodipodi:start="2.8475788" - sodipodi:end="4.9442449" - sodipodi:open="true" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient3183);stroke-width:0.58102763;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3175" - sodipodi:cx="8.0970039" - sodipodi:cy="11.122857" - sodipodi:rx="4.3089318" - sodipodi:ry="3.5513175" - d="M 3.9729753,12.152015 A 4.3089318,3.5513175 0 0 1 9.0871283,7.6665672" - transform="matrix(1.6981233,0,0,1.7443645,-5.9310642,-8.697544)" - sodipodi:start="2.8475788" - sodipodi:end="4.9442449" - sodipodi:open="true" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/not-authorized.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,99 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" - sodipodi:docname="not-authorized.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/voice.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient3300"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop3302" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop3304" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3300" - id="linearGradient3306" - x1="8.6152382" - y1="-9.8347273" - x2="8.6152382" - y2="12.348849" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="39.000665" - inkscape:cx="13.905353" - inkscape:cy="8.018215" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#eeeeec" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <rect - style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2200" - width="0" - height="1" - x="13" - y="4" /> - <path - style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 7.4375 0.5 C 3.5645752 0.79220137 0.49999998 4.0537353 0.5 8 C 0.5 12.138223 3.8611989 15.5 8 15.5 C 12.138801 15.5 15.5 12.138223 15.5 8 C 15.5 3.8617774 12.138801 0.49999998 8 0.5 C 7.8706625 0.49999998 7.7527358 0.49351902 7.625 0.5 C 7.563128 0.50313923 7.498975 0.49536188 7.4375 0.5 z M 7.59375 2.5 C 7.6388078 2.4965991 7.6733994 2.502301 7.71875 2.5 C 7.812377 2.4952496 7.905199 2.5 8 2.5 C 8.9717099 2.5 9.8946048 2.7438747 10.6875 3.1875 L 3.1875 10.6875 C 2.7438131 9.8947148 2.5 8.9715754 2.5 8 C 2.5000001 5.1074903 4.7551106 2.7142577 7.59375 2.5 z M 12.8125 5.3125 C 13.256187 6.1052852 13.5 7.0284247 13.5 8 C 13.5 11.03321 11.033631 13.5 8 13.5 C 7.0282899 13.5 6.1053952 13.256125 5.3125 12.8125 L 12.8125 5.3125 z " - id="path3298" /> - <path - style="opacity:1;fill:url(#linearGradient3306);fill-opacity:1.0;fill-rule:evenodd;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 7.4375 0.5 C 3.5645752 0.79220137 0.49999998 4.0537353 0.5 8 C 0.5 12.138223 3.8611989 15.5 8 15.5 C 12.138801 15.5 15.5 12.138223 15.5 8 C 15.5 3.8617774 12.138801 0.49999998 8 0.5 C 7.8706625 0.49999998 7.7527358 0.49351902 7.625 0.5 C 7.563128 0.50313923 7.498975 0.49536188 7.4375 0.5 z M 7.59375 2.5 C 7.6388078 2.4965991 7.6733994 2.502301 7.71875 2.5 C 7.812377 2.4952496 7.905199 2.5 8 2.5 C 8.9717099 2.5 9.8946048 2.7438747 10.6875 3.1875 L 3.1875 10.6875 C 2.7438131 9.8947148 2.5 8.9715754 2.5 8 C 2.5000001 5.1074903 4.7551106 2.7142577 7.59375 2.5 z M 12.8125 5.3125 C 13.256187 6.1052852 13.5 7.0284247 13.5 8 C 13.5 11.03321 11.033631 13.5 8 13.5 C 7.0282899 13.5 6.1053952 13.256125 5.3125 12.8125 L 12.8125 5.3125 z " - id="path3278" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/qq-member.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,198 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems/scalable" - sodipodi:docname="qq-member.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/qq-member.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="31.678384" - inkscape:cx="14.657198" - inkscape:cy="9.1928113" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - fill="#f57900" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.46078622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2344" - sodipodi:cx="3.4614794" - sodipodi:cy="19.897507" - sodipodi:rx="3.8204477" - sodipodi:ry="1.8461224" - d="M 7.2819271 19.897507 A 3.8204477 1.8461224 0 1 1 -0.35896826,19.897507 A 3.8204477 1.8461224 0 1 1 7.2819271 19.897507 z" - transform="matrix(0.76425,0,0,0.77926,8.868813,-1.507098)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.46078622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2340" - sodipodi:cx="3.4614794" - sodipodi:cy="19.897507" - sodipodi:rx="3.8204477" - sodipodi:ry="1.8461224" - d="M 7.2819271 19.897507 A 3.8204477 1.8461224 0 1 1 -0.35896826,19.897507 A 3.8204477 1.8461224 0 1 1 7.2819271 19.897507 z" - transform="matrix(0.76425,0,0,0.77926,1.868813,-1.507098)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:3.17369032;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2346" - sodipodi:cx="11.230577" - sodipodi:cy="16.820635" - sodipodi:rx="7.0768023" - sodipodi:ry="5.7434916" - d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1 4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1 18.30738 16.820635 z" - transform="matrix(0.284233,0,0,0.349298,-0.692104,3.624594)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:3.14814281;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2348" - sodipodi:cx="11.230577" - sodipodi:cy="16.820635" - sodipodi:rx="7.0768023" - sodipodi:ry="5.7434916" - d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1 4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1 18.30738 16.820635 z" - transform="matrix(0.287243,0,0,0.35127,10.30629,3.574208)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:1.28010798;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2322" - sodipodi:cx="11.230577" - sodipodi:cy="16.820635" - sodipodi:rx="7.0768023" - sodipodi:ry="5.7434916" - d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1 4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1 18.30738 16.820635 z" - transform="matrix(0.778937,0,0,0.783435,-0.759922,-2.17753)" /> - <path - style="fill:#eeeeec;fill-opacity:1;stroke:#babdb6;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" - d="M 12.499168,11.000754 C 12.499168,12.928874 10.484543,14.493723 8.0022374,14.493723 C 5.5199315,14.493723 3.5053065,12.928874 3.5053065,11.000754 C 3.5053065,9.0726373 5.5199315,7.5077885 8.0022374,7.5077885 C 10.484543,7.5077885 12.499168,9.0726373 12.499168,11.000754 z " - id="path2324" /> - <path - style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:1.00000131;stroke-miterlimit:4;stroke-opacity:1" - d="M 13.500455,9.0793411 C 13.500455,10.097614 11.053157,11.154467 7.858743,11.154467 C 7.0601403,11.154467 5.0724919,10.737992 2.9392977,12.494449 C 2.3961235,11.997703 1.7730984,11.677973 1.4999988,11.245381 C 2.656505,10.082571 2.1807148,9.5555594 2.1807148,9.0464228 C 2.1807148,8.0281496 4.5192556,7.4998051 7.7136673,7.4998051 C 10.908078,7.4998051 13.500455,8.0610678 13.500455,9.0793411 z " - id="path2338" - sodipodi:nodetypes="csccscc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0198945" - inkscape:original="M 7.71875 7.5 C 4.5243383 7.5 2.1875 8.0129766 2.1875 9.03125 C 2.1875 9.5403866 2.6565062 10.08719 1.5 11.25 C 1.7730996 11.682592 2.3943258 12.003254 2.9375 12.5 C 5.0706942 10.743543 7.0451471 11.15625 7.84375 11.15625 C 11.038164 11.15625 13.5 10.112023 13.5 9.09375 C 13.5 8.0754767 10.913161 7.5000001 7.71875 7.5 z " - xlink:href="#path2338" - style="opacity:0.2;fill:#ef2929;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" - id="path2352" - inkscape:href="#path2338" - d="M 7.78125,7.78125 C 6.2056615,7.78125 4.8491705,7.9136549 4,8.15625 C 3.5754148,8.2775475 3.3004488,8.4430178 3.1875,8.53125 C 3.0745512,8.6194822 3.15625,8.5391895 3.15625,8.46875 C 3.15625,8.4575392 3.2894467,8.8656831 3.25,9.5 C 3.2272601,9.865665 2.8516835,10.300044 2.625,10.71875 C 2.7056245,10.790412 2.8603146,10.942134 3,11.0625 C 3.979307,10.38765 4.9560069,9.9645065 5.78125,9.84375 C 6.8285986,9.6904932 7.7226625,9.8125 7.9375,9.8125 C 9.4513866,9.8125 10.781471,9.5551666 11.65625,9.1875 C 12.09364,9.0036667 12.403103,8.7753999 12.5625,8.625 C 12.632635,8.5588241 12.610828,8.6154264 12.625,8.59375 C 12.474022,8.487747 12.139821,8.3148445 11.6875,8.1875 C 10.75734,7.925627 9.3503426,7.7812501 7.78125,7.78125 z " /> - <path - style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999952;stroke-miterlimit:4;stroke-opacity:1" - d="M 7.1687017,0.50474152 L 8.7175626,0.50474152 C 10.884158,0.50474152 12.725973,2.4197619 13.271888,4.5023703 C 13.832643,6.6415931 13.596752,8.5000002 9.5621605,8.5000002 L 6.4045417,8.5000002 C 2.3634134,8.5000002 2.1742771,6.6415931 2.7350333,4.5023703 C 3.2579631,2.5074515 5.0021064,0.50474152 7.1687017,0.50474152 z " - id="rect2317" - sodipodi:nodetypes="ccsccsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0200312" - inkscape:original="M 7.15625 0.5 C 4.9896547 0.5 3.2729298 2.5050811 2.75 4.5 C 2.1892438 6.6392228 2.3651219 8.5000002 6.40625 8.5 L 9.5625 8.5 C 13.597092 8.5 13.842005 6.6392227 13.28125 4.5 C 12.735335 2.4173916 10.885345 0.49999997 8.71875 0.5 L 7.15625 0.5 z " - xlink:href="#rect2317" - style="opacity:0.1;fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-opacity:1" - id="path2355" - inkscape:href="#rect2317" - d="M 7.15625,1.53125 C 6.3973765,1.53125 5.6771094,1.8616365 5.0625,2.46875 C 4.4478906,3.0758635 3.9933517,3.9351753 3.78125,4.75 C 3.5273221,5.7255068 3.5403429,6.426123 3.75,6.75 C 3.9596571,7.073877 4.5574314,7.4687499 6.40625,7.46875 L 9.5625,7.46875 C 11.407817,7.46875 12.033042,7.0791701 12.25,6.75 C 12.466958,6.4208299 12.471262,5.7200702 12.21875,4.75 C 11.777347,3.0542739 10.264213,1.53125 8.71875,1.53125 L 7.15625,1.53125 z " /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2326" - sodipodi:cx="5.5383673" - sodipodi:cy="3.4618888" - sodipodi:rx="1.2307483" - sodipodi:ry="2.4871371" - d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" - transform="matrix(0.812514,0,0,0.804137,1.499999,1.216166)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2328" - sodipodi:cx="5.5383673" - sodipodi:cy="3.4618888" - sodipodi:rx="1.2307483" - sodipodi:ry="2.4871371" - d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" - transform="matrix(0.812514,0,0,0.804137,5.499999,1.216166)" /> - <path - style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000083;stroke-miterlimit:4;stroke-opacity:1" - d="M 12.49879,7.4976412 C 12.49879,8.5974947 10.483202,9.4901278 7.9997082,9.4901278 C 5.5162155,9.4901278 3.5006267,8.5974947 3.5006267,7.4976412 C 3.5006267,6.3977886 5.5162155,5.5051544 7.9997082,5.5051544 C 10.483202,5.5051544 12.49879,6.3977886 12.49879,7.4976412 z " - id="path2320" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2330" - sodipodi:cx="5.5383673" - sodipodi:cy="3.4618888" - sodipodi:rx="1.2307483" - sodipodi:ry="2.4871371" - d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" - transform="matrix(0.406257,0,0,0.201034,7.250001,2.804042)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2332" - sodipodi:cx="5.5383673" - sodipodi:cy="3.4618888" - sodipodi:rx="1.2307483" - sodipodi:ry="2.4871371" - d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" - transform="matrix(0.406257,0,0,0.201034,4.25,2.804042)" /> - <path - sodipodi:type="arc" - style="opacity:0.19318183;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.99083459;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2336" - sodipodi:cx="13.296353" - sodipodi:cy="10.923561" - sodipodi:rx="8.2214088" - sodipodi:ry="1.7085644" - d="M 21.517762 10.923561 A 8.2214088 1.7085644 0 1 1 5.0749445,10.923561 A 8.2214088 1.7085644 0 1 1 21.517762 10.923561 z" - transform="matrix(0.427975,0,0,0.589538,2.309499,1.065602)" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/secure.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,162 +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="16px" - height="16px" - id="svg4220" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/emblems/16/scalable" - sodipodi:docname="secure.svg" - inkscape:export-filename="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/emblems/16/secure.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4222"> - <linearGradient - inkscape:collect="always" - id="linearGradient5170"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop5172" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop5174" /> - </linearGradient> - <linearGradient - id="linearGradient5160"> - <stop - style="stop-color:#c4a000;stop-opacity:1;" - offset="0" - id="stop5162" /> - <stop - style="stop-color:#c4a000;stop-opacity:0;" - offset="1" - id="stop5164" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5127"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop5129" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop5131" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5127" - id="linearGradient5133" - x1="-8.5730524" - y1="8.1949167" - x2="-8.5730524" - y2="14.091002" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5160" - id="linearGradient5166" - x1="-5.2575259" - y1="14.311456" - x2="-10.187596" - y2="11.560035" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5170" - id="linearGradient5176" - x1="-7.5400991" - y1="0.79740471" - x2="-7.5400991" - y2="4.7783289" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.197802" - inkscape:cx="8.5405941" - inkscape:cy="8.0965274" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="872" - inkscape:window-height="625" - inkscape:window-x="47" - inkscape:window-y="150" /> - <metadata - id="metadata4225"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <rect - style="opacity:1;fill:#fce94f;fill-opacity:1;stroke:#c4a000;stroke-width:0.52907252;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect4238" - width="5.7297029" - height="6.3509903" - x="-6" - y="6" - transform="matrix(2.268879,0,0,1.574557,15.11327,-3.947338)" - rx="0.44198585" - ry="0.60082906" /> - <rect - style="opacity:1;fill:url(#linearGradient5166);fill-opacity:1.0;stroke:url(#linearGradient5133);stroke-width:0.50402278;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect5125" - width="5.6391087" - height="2.9732673" - x="-11" - y="10.458911" - transform="matrix(1.950662,0,0,2.017983,23.95729,-12.6059)" /> - <rect - style="opacity:0.56331877;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect5156" - width="5.1252475" - height="2.6569307" - x="-14" - y="6" - transform="matrix(2.34135,0,0,0.752748,34.7789,1.48351)" /> - <path - transform="translate(15,0)" - style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M -9.4188119,0.5 C -10.500938,0.5 -11.5,1.4812151 -11.5,2.4460396 L -11.5,7.5 L -9.5,7.5 L -9.4549505,4.0089109 C -9.4549505,2.4726571 -9.4588865,2.5 -8.1034653,2.5 L -5.9866337,2.5 C -4.4993176,2.5 -4.5,2.5177763 -4.5,4.0539604 L -4.5,7.5 L -2.5,7.5 L -2.5,2.4910891 C -2.5,1.6080661 -3.5388679,0.54504951 -4.4460396,0.54504951 L -9.4188119,0.5 z " - id="path5168" - sodipodi:nodetypes="ccccccccccccc" /> - <path - transform="translate(15,0)" - style="fill:url(#linearGradient5176);fill-opacity:1.0;stroke:#888a85;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M -9.4188119,0.5 C -10.500938,0.5 -11.5,1.4812151 -11.5,2.4460396 L -11.5,6.4638614 C -11.5,7.8729886 -9.5,7.6557806 -9.5,6.5089109 L -9.4549505,4.0089109 C -9.4549505,2.4726571 -9.4588865,2.5 -8.1034653,2.5 L -5.9866337,2.5 C -4.4993176,2.5 -4.5,2.5177763 -4.5,4.0539604 L -4.5,6.5539604 C -4.5450495,7.8163699 -2.5,7.594009 -2.5,6.5539604 L -2.5,2.4910891 C -2.5,1.6080661 -3.5388679,0.54504951 -4.4460396,0.54504951 L -9.4188119,0.5 z " - id="rect5149" - sodipodi:nodetypes="ccccccccccccc" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/unavailable.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,125 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" - sodipodi:docname="unavailable.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/external.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2259"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop2261" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop2263" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2259" - id="linearGradient2265" - x1="8.046875" - y1="6.5309725" - x2="8.046875" - y2="11.646569" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="36.388907" - inkscape:cx="11.666301" - inkscape:cy="7.6639631" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#fcaf3e" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <rect - style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2200" - width="0" - height="1" - x="13" - y="4" /> - <path - style="fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" - d="M 8.0118188,2.0086319 L 15.132139,14.503373 L 0.87261571,14.491555 L 8.0118188,2.0086319 z " - id="rect2203" - sodipodi:nodetypes="cccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0233446" - inkscape:original="M 8 2 L 0.875 14.5 L 15.125 14.5 L 8 2 z " - xlink:href="#rect2203" - style="fill:url(#linearGradient2265);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1;opacity:0.5" - id="path2249" - inkscape:href="#rect2203" - d="M 8,5.21875 L 3.59375,13.4375 L 12.4375,13.46875 L 8,5.21875 z " /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2245" - sodipodi:cx="7.9910712" - sodipodi:cy="11.647322" - sodipodi:rx="0.55803573" - sodipodi:ry="0.625" - d="M 8.549107 11.647322 A 0.55803573 0.625 0 1 1 7.4330355,11.647322 A 0.55803573 0.625 0 1 1 8.549107 11.647322 z" - transform="matrix(1.791998,0,0,1.6,-6.319984,-6.635714)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2247" - sodipodi:cx="8.046875" - sodipodi:cy="7.8526788" - sodipodi:rx="0.81473213" - sodipodi:ry="2.3214285" - d="M 8.8616071 7.8526788 A 0.81473213 2.3214285 0 1 1 7.2321429,7.8526788 A 0.81473213 2.3214285 0 1 1 8.8616071 7.8526788 z" - transform="matrix(1.227398,0,0,0.861538,-1.876721,1.23462)" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/video.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,199 +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" - width="16" - height="16" - id="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" - sodipodi:docname="video.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/video.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="51.461686" - inkscape:cx="12.06418" - inkscape:cy="5.7904142" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#fcaf3e" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <rect - style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2200" - width="1" - height="14" - x="13" - y="1" /> - <rect - style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2202" - width="1" - height="14" - x="3" - y="1" /> - <rect - style="opacity:1;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2204" - width="9" - height="14" - x="4" - y="1" /> - <rect - style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2206" - width="4.0010238" - height="3.0023892" - x="6.4994845" - y="1.4988047" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2212" - width="1" - height="1" - x="4" - y="2" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2214" - width="1" - height="1" - x="4" - y="4" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2216" - width="1" - height="1" - x="4" - y="6" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2218" - width="1" - height="1" - x="4" - y="8" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2220" - width="1" - height="1" - x="4" - y="10" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2222" - width="1" - height="1" - x="4" - y="12" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2224" - width="1" - height="1" - x="4" - y="14" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2226" - width="1" - height="1" - x="12" - y="2" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2228" - width="1" - height="1" - x="12" - y="4" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2230" - width="1" - height="1" - x="12" - y="6" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2232" - width="1" - height="1" - x="12" - y="8" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2234" - width="1" - height="1" - x="12" - y="10" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2236" - width="1" - height="1" - x="12" - y="12" /> - <rect - style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2238" - width="1" - height="1" - x="12" - y="14" /> - <rect - style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2247" - width="4.0006118" - height="3.009582" - x="6.4999485" - y="6.5" /> - <rect - style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2249" - width="4.0006118" - height="3.0014915" - x="6.499949" - y="11.498656" /> - </g> -</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/voice.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,163 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" - sodipodi:docname="voice.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/unavailable.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3300" - id="linearGradient3353" - x1="-25.208164" - y1="22.436846" - x2="-16.394892" - y2="18.959713" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3335"> - <stop - style="stop-color:#204a87;stop-opacity:1;" - offset="0" - id="stop3337" /> - <stop - style="stop-color:#204a87;stop-opacity:0;" - offset="1" - id="stop3339" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3335" - id="linearGradient3341" - x1="-25.494905" - y1="21.102697" - x2="-19.2363" - y2="18.633484" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3300"> - <stop - style="stop-color:#204a87;stop-opacity:1;" - offset="0" - id="stop3302" /> - <stop - style="stop-color:#204a87;stop-opacity:0;" - offset="1" - id="stop3304" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3300" - id="linearGradient3315" - gradientUnits="userSpaceOnUse" - x1="0.62497759" - y1="11.454797" - x2="5.6395993" - y2="11.454797" - gradientTransform="matrix(-0.759076,0,0,0.886801,13.87483,-2.157027)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="18.194454" - inkscape:cx="13.592043" - inkscape:cy="6.9257794" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#729fcf" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <rect - style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect2200" - width="0" - height="1" - x="13" - y="4" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.64040256;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2267" - sodipodi:cx="3.3114488" - sodipodi:cy="8.5114546" - sodipodi:rx="1.0305338" - sodipodi:ry="0.89312935" - d="M 4.3419826 8.5114546 A 1.0305338 0.89312935 0 1 1 2.280915,8.5114546 A 1.0305338 0.89312935 0 1 1 4.3419826 8.5114546 z" - transform="matrix(1.453916,0,0,1.677081,-1.816259,-6.276549)" /> - <path - sodipodi:type="spiral" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3353);stroke-width:3.82398129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="path3252" - sodipodi:cx="-11" - sodipodi:cy="17" - sodipodi:expansion="1" - sodipodi:revolution="1.1139722" - sodipodi:radius="17.723295" - sodipodi:argument="-9.424778" - sodipodi:t0="0.70807511" - d="M -14.027341,29.178804 C -22.234168,28.813068 -27.756867,20.82956 -27.038836,13.013154 C -26.789036,10.293863 -25.851755,7.6562253 -24.369854,5.3654734" - transform="matrix(-0.236541,9.86989e-2,9.332284e-2,0.250166,-0.538748,5.57923)" /> - <path - sodipodi:type="spiral" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3341);stroke-width:2.61211109px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="path3254" - sodipodi:cx="-11" - sodipodi:cy="17" - sodipodi:expansion="1" - sodipodi:revolution="1.1157676" - sodipodi:radius="17.751867" - sodipodi:argument="-9.424778" - sodipodi:t0="0.69832003" - d="M -13.258788,29.188958 C -21.390692,29.337435 -27.331334,21.779752 -27.099873,14.016463 C -27.00639,10.881001 -25.990716,7.8068052 -24.259099,5.1963947" - transform="matrix(-0.326904,0.153056,0.128975,0.387943,-0.598939,4.203466)" /> - <path - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3315);stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 9.5000758,15.498835 C 12.836002,14.200334 14.245965,9.2752932 13.115727,5.2955524 C 12.546899,3.2926232 11.411038,1.5970337 9.9781738,0.50337707" - id="path3256" - sodipodi:nodetypes="csc" /> - </g> -</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/aol-client.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,66 @@ +<?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" + width="16px" + height="16px" + id="svg1307" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/emblems/16/scalable" + sodipodi:docname="aol-client.svg" + inkscape:export-filename="/home/hbons/Desktop/aol-client.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs1309" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="33.645576" + inkscape:cx="10.549484" + inkscape:cy="6.7812522" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + fill="#204a87" + showguides="true" + inkscape:guide-bbox="true" + inkscape:grid-points="true" + inkscape:window-width="1268" + inkscape:window-height="841" + inkscape:window-x="6" + inkscape:window-y="0" /> + <metadata + id="metadata1312"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="fill:#204a87;fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1" + d="M 2 1 L 2 15 L 14 8 L 2 1 z M 6 4 C 8.1805207 4 10 5.7762679 10 8 C 10 10.223732 8.1805205 12 6 12 C 3.8194795 11.999999 2.0312501 10.223732 2.03125 8 C 2.03125 5.7762679 3.8194791 4.0000001 6 4 z M 6 5.125 C 4.3921597 5.125 3.1249999 6.4360487 3.125 8 C 3.125 9.5639514 4.3921593 10.84375 6 10.84375 C 7.6078403 10.84375 8.875 9.5639514 8.875 8 C 8.875 6.4360487 7.6078401 5.1249999 6 5.125 z " + id="rect2229" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/birthday.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,622 @@ +<?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="16px" + height="16px" + id="svg8140" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docname="birthday.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs8142"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4232" + id="linearGradient3007" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.7499999,14.982194,1.1250003)" + x1="7.5089025" + y1="2.218369" + x2="7.5089025" + y2="4.8258252" /> + <linearGradient + id="linearGradient4380" + inkscape:collect="always"> + <stop + id="stop4382" + offset="0" + style="stop-color:#fcaf3e;stop-opacity:1;" /> + <stop + id="stop4384" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4380" + id="linearGradient3005" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.7499999,-2.9821948,0.3750003)" + x1="15.491097" + y1="4.2733984" + x2="15.491097" + y2="2.7707961" /> + <linearGradient + id="linearGradient4142" + inkscape:collect="always"> + <stop + id="stop4144" + offset="0" + style="stop-color:#5c3566;stop-opacity:1;" /> + <stop + id="stop4146" + offset="1" + style="stop-color:#9253a2;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4142" + id="linearGradient3029" + gradientUnits="userSpaceOnUse" + x1="15.5" + y1="10.635184" + x2="15.5" + y2="7.1438446" + gradientTransform="matrix(1,0,0,0.8000001,-2.9821944,0.2999994)" /> + <linearGradient + id="linearGradient4150" + inkscape:collect="always"> + <stop + id="stop4152" + offset="0" + style="stop-color:#3c7704;stop-opacity:1" /> + <stop + id="stop4154" + offset="1" + style="stop-color:#59b106;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4150" + id="linearGradient3034" + gradientUnits="userSpaceOnUse" + x1="7.5" + y1="9.4861355" + x2="7.5" + y2="7.0554562" + gradientTransform="matrix(1,0,0,0.8000001,-3,0.2999994)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4232" + id="linearGradient3048" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.7499999,-3.0178049,0.3750005)" + x1="7.5089025" + y1="2.218369" + x2="7.5089025" + y2="4.8258252" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4374"> + <stop + style="stop-color:#fcaf3e;stop-opacity:1;" + offset="0" + id="stop4376" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop4378" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4374" + id="linearGradient3046" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.463041,0,0,1.1368063,-10.850902,0.678176)" + x1="6.3242626" + y1="2.3645318" + x2="6.3242626" + y2="1.6300712" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4232"> + <stop + style="stop-color:#f57900;stop-opacity:1;" + offset="0" + id="stop4234" /> + <stop + style="stop-color:#b25800;stop-opacity:1" + offset="1" + id="stop4236" /> + </linearGradient> + <linearGradient + y2="4.8258252" + x2="7.5089025" + y1="2.218369" + x1="7.5089025" + gradientTransform="matrix(1,0,0,0.7499999,1.0000002,-0.6249996)" + gradientUnits="userSpaceOnUse" + id="linearGradient4308" + xlink:href="#linearGradient4232" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4368" + inkscape:collect="always"> + <stop + id="stop4370" + offset="0" + style="stop-color:#fcaf3e;stop-opacity:1;" /> + <stop + id="stop4372" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + y2="1.6300712" + x2="6.3242626" + y1="2.3645318" + x1="6.3242626" + gradientTransform="matrix(2.463041,0,0,1.1368063,-6.8330964,-0.3218242)" + gradientUnits="userSpaceOnUse" + id="linearGradient4306" + xlink:href="#linearGradient4368" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3425"> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="0" + id="stop3427" /> + <stop + style="stop-color:#2e69c2;stop-opacity:1" + offset="1" + id="stop3429" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3425" + id="linearGradient3431" + x1="11.5" + y1="9.961833" + x2="11.241222" + y2="6.6366434" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.9999997,-2.0000001)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4388"> + <stop + style="stop-color:#d3d7cf;stop-opacity:1;" + offset="0" + id="stop4390" /> + <stop + style="stop-color:#d3d7cf;stop-opacity:0;" + offset="1" + id="stop4392" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4388" + id="linearGradient4394" + x1="2.9999998" + y1="11.5" + x2="21" + y2="11.5" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4158"> + <stop + style="stop-color:#9a9c98;stop-opacity:1" + offset="0" + id="stop4160" /> + <stop + style="stop-color:#666763;stop-opacity:1" + offset="1" + id="stop4162" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4158" + id="linearGradient4164" + x1="16.274719" + y1="9.7764273" + x2="17.448" + y2="13.753902" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7894737,0,0,0.6666667,-1.4736843,1.8333322)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4048"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4050" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4052" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4048" + id="linearGradient4054" + x1="-10.516191" + y1="10.124428" + x2="36.795452" + y2="19.026175" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3941"> + <stop + style="stop-color:#af6d02;stop-opacity:1" + offset="0" + id="stop3943" /> + <stop + style="stop-color:#5f3b00;stop-opacity:1" + offset="1" + id="stop3945" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3941" + id="linearGradient3947" + x1="15.917198" + y1="16.659033" + x2="16.463091" + y2="20.489477" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7894737,0,0,0.7,-1.473684,0.4500012)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4003"> + <stop + style="stop-color:#c17d11;stop-opacity:1" + offset="0" + id="stop4005" /> + <stop + style="stop-color:#e9b96e;stop-opacity:1" + offset="1" + id="stop4007" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4003" + id="linearGradient4009" + x1="16.815628" + y1="16.941942" + x2="10.718681" + y2="16.941942" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7894737,0,0,0.7,-1.473684,0.4500012)" /> + <filter + inkscape:collect="always" + id="filter4540" + x="-0.087152615" + width="1.1743052" + y="-0.21174857" + height="1.4234971"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.37221428" + id="feGaussianBlur4542" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.197802" + inkscape:cx="8" + inkscape:cy="8" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="641" + inkscape:window-height="669" + inkscape:window-x="0" + inkscape:window-y="22"> + <inkscape:grid + type="xygrid" + id="grid8150" /> + </sodipodi:namedview> + <metadata + id="metadata8145"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + sodipodi:type="arc" + style="opacity:0.47499999999999998;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4540);enable-background:accumulate" + id="path4466" + sodipodi:cx="12.03125" + sodipodi:cy="4.265625" + sodipodi:rx="5.125" + sodipodi:ry="2.109375" + d="M 17.15625,4.265625 A 5.125,2.109375 0 1 1 6.90625,4.265625 A 5.125,2.109375 0 1 1 17.15625,4.265625 z" + transform="matrix(1.3658536,0,0,1.1656218,-8.4329267,-2.4721054)" /> + <path + style="fill:url(#linearGradient4009);fill-opacity:1;stroke:url(#linearGradient3947);stroke-width:1.00000072000000007;stroke-miterlimit:4;stroke-opacity:1" + d="m 0.50000029,9.8437508 0,3.5562497 C 0.50000029,14.5592 3.8600006,15.5 8.0000002,15.5 12.14,15.5 15.5,14.559199 15.5,13.4 l 0,-3.5562497 z" + id="path3936" + sodipodi:nodetypes="ccsccc" /> + <rect + style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4624" + width="2" + height="3" + x="3" + y="11" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0054175" + inkscape:original="M 2.5 11.5 L 2.5 18.5 C 2.5 20.155999 6.7560004 21.5 12 21.5 C 17.243999 21.5 21.5 20.155998 21.5 18.5 L 21.5 11.5 L 2.5 11.5 z " + style="fill:none;stroke:url(#linearGradient4054);stroke-width:1.44648218000000006;stroke-miterlimit:4;stroke-opacity:1" + id="path3983" + d="m 3.5,12.5 0,6 c 0,-0.016662 0.0034472,0.121066 0.34375,0.375 0.3403028,0.253934 0.9602178,0.531845 1.75,0.78125 C 7.1733144,20.15506 9.4638941,20.5 12,20.5 c 2.536106,0 4.826685,-0.34494 6.40625,-0.84375 0.789782,-0.249405 1.409697,-0.527316 1.75,-0.78125 C 20.496553,18.621066 20.5,18.483337 20.5,18.5 l 0,-6 z" + transform="matrix(0.7647058,0,0,0.6249999,-1.1764702,1.6875019)" /> + <rect + style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4056" + width="1" + height="3" + x="6" + y="11" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4078" + width="1" + height="3" + x="3" + y="10" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4131" + width="1" + height="3" + x="12" + y="10" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect2655" + width="2" + height="3" + x="10" + y="11" /> + <rect + style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect2664" + width="2" + height="2" + x="13" + y="11" /> + <rect + style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect2646" + width="2" + height="3" + x="7" + y="12" /> + <rect + style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4140" + width="1" + height="3" + x="8" + y="10" + rx="0.5" + ry="0.5" /> + <path + style="fill:#eeeeec;fill-opacity:1;stroke:url(#linearGradient4164);stroke-width:1.00000059999999991;stroke-miterlimit:4;stroke-opacity:1" + d="M 15.500001,9.5000002 C 15.500001,10.604 12.139999,11.5 8,11.5 3.8600003,11.5 0.5000003,10.604 0.5000003,9.5000004 0.5000003,8.3960006 3.8600004,7.5000001 8,7.5000001 c 4.140001,0 7.500001,0.89600032 7.500001,2.0000001 z" + id="path1307" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0051613" + inkscape:original="M 12 8.5 C 6.7560004 8.5 2.5000001 9.844 2.5 11.5 C 2.5 13.155999 6.7560004 14.5 12 14.5 C 17.243999 14.5 21.5 13.155999 21.5 11.5 C 21.5 9.844 17.244 8.5000008 12 8.5 z " + xlink:href="#path4198" + style="fill:url(#linearGradient4394);fill-opacity:1;stroke:#ffffff;stroke-width:1.61721622999999992;stroke-miterlimit:4;stroke-opacity:1" + id="path4200" + d="M 12,9.5 C 9.4638721,9.5 7.1733501,9.8449289 5.59375,10.34375 4.80395,10.593161 4.1840886,10.87104 3.84375,11.125 3.5034114,11.37896 3.5,11.516552 3.5,11.5 c 0,-0.016553 0.0034113,0.12104 0.34375,0.375 0.3403387,0.25396 0.9601999,0.531839 1.75,0.78125 C 7.1733501,13.155071 9.4638722,13.5 12,13.5 c 2.536128,0 4.82665,-0.344929 6.40625,-0.84375 0.7898,-0.249411 1.409661,-0.52729 1.75,-0.78125 C 20.496589,11.62104 20.5,11.483447 20.5,11.5 c 0,0.016552 -0.003411,-0.12104 -0.34375,-0.375 -0.340339,-0.25396 -0.9602,-0.53184 -1.75,-0.78125 C 16.82665,9.844929 14.536128,9.5000004 12,9.5 z" + transform="matrix(0.7647058,0,0,0.4999999,-1.1764702,3.7500016)" /> + <rect + style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3431);stroke-width:1.00000011999999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3304" + width="2" + height="4.999999" + x="7.5" + y="4.500001" + rx="1" + ry="1" /> + <rect + style="opacity:0.55500033999999998;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3308" + width="1" + height="1" + x="8" + y="6" /> + <rect + style="opacity:0.55500033999999998;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3330" + width="1" + height="1" + x="8" + y="8" /> + <rect + style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3608" + width="1" + height="1" + x="7" + y="6" /> + <rect + style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3617" + width="1" + height="1" + x="7" + y="8" /> + <rect + style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3626" + width="1" + height="1" + x="9" + y="8" /> + <rect + style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3635" + width="1" + height="1" + x="9" + y="6" /> + <path + style="fill:url(#linearGradient4306);fill-opacity:1;stroke:url(#linearGradient4308);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1" + d="m 8.9999763,3.4999993 c -0.827986,0 -1.499975,-0.6719998 -1.499975,-1.4999993 0,-0.82799966 0.671989,-1.4999994 1.4999755,-1.4999994 0.5378079,0 0.8279864,2.9999986 0,2.9999987 z" + id="path4284" + sodipodi:nodetypes="csss" /> + <path + style="fill:url(#linearGradient3046);fill-opacity:1;stroke:url(#linearGradient3048);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1" + d="M 4.9821711,4.4999994 C 4.1541851,4.4999994 3.4821961,3.8279997 3.4821961,3.0000001 C 3.4821961,2.1720004 4.1541851,1.5000007 4.9821711,1.5000007 C 5.5199791,1.5000007 5.8101571,4.4999993 4.9821711,4.4999994 L 4.9821711,4.4999994 z" + id="path2289" + sodipodi:nodetypes="csss" /> + <rect + style="fill:#6ec31b;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3034);stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3469" + width="2" + height="4" + x="3.5" + y="5.5" + rx="1" + ry="1" /> + <rect + style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3471" + width="1" + height="1" + x="4" + y="5.9999995" /> + <rect + style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3473" + width="1" + height="1" + x="4" + y="7.9999995" /> + <rect + style="fill:#ad7fa8;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3029);stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3533" + width="2" + height="4" + x="11.517806" + y="5.5" + rx="1" + ry="1" /> + <rect + style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3535" + width="1" + height="1" + x="12.017806" + y="5.9999995" /> + <rect + style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3537" + width="1" + height="1" + x="12.017806" + y="7.9999995" /> + <rect + style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3559" + width="1" + height="1" + x="3" + y="6" /> + <rect + style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3581" + width="1" + height="1" + x="3" + y="8" /> + <rect + style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3590" + width="1" + height="1" + x="5" + y="8" /> + <rect + style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3599" + width="1" + height="1" + x="5" + y="6" /> + <rect + style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3644" + width="1" + height="1" + x="11.017806" + y="6" /> + <rect + style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3653" + width="1" + height="1" + x="13.017806" + y="6" /> + <rect + style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3662" + width="1" + height="1" + x="13.017806" + y="8" /> + <rect + style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3671" + width="1" + height="1" + x="11.017806" + y="8" /> + <path + style="fill:url(#linearGradient3005);fill-opacity:1;stroke:url(#linearGradient3007);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1" + d="M 12.999976,4.4999993 C 12.17199,4.4999993 11.500001,3.8279995 11.500001,3 C 11.500001,2.1720003 12.17199,1.5000006 12.999977,1.5000006 C 13.537784,1.5000006 13.827963,4.4999992 12.999977,4.4999993 L 12.999976,4.4999993 z" + id="path4348" + sodipodi:nodetypes="csss" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/blocked.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,139 @@ +<?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="16px" + height="16px" + id="svg4220" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/toolbars/16/scalable" + sodipodi:docname="blocked.svg" + inkscape:export-filename="/home/hbons/Desktop/block.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4222"> + <linearGradient + id="linearGradient2241" + inkscape:collect="always"> + <stop + id="stop2243" + offset="0" + style="stop-color:#eeeeec;stop-opacity:1;" /> + <stop + id="stop2245" + offset="1" + style="stop-color:#eeeeec;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2241" + id="linearGradient2826" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.002185,0,0,0.866653,-24.02518,-2.399763)" + x1="19.003813" + y1="9.3585329" + x2="15.520383" + y2="14.406374" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="25.498579" + inkscape:cx="19.947241" + inkscape:cy="9.0174755" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:object-points="false" + inkscape:grid-points="true" + inkscape:window-width="1440" + inkscape:window-height="849" + inkscape:window-x="0" + inkscape:window-y="0" + showguides="true" + inkscape:guide-bbox="true" /> + <metadata + id="metadata4225"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <rect + style="fill:#c17d11;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999875;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1324" + width="11.000001" + height="14.999996" + x="-13.5" + y="0.49999937" + ry="0" + transform="scale(-1,1)" /> + <rect + style="opacity:0.3;fill:url(#linearGradient2826);fill-opacity:1;stroke:white;stroke-width:0.99999827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2211" + width="9.0000048" + height="12.999996" + x="-12.500007" + y="1.4999992" + ry="0" + transform="scale(-1,1)" /> + <path + sodipodi:type="arc" + style="fill:#fecb81;fill-opacity:1;stroke:none;stroke-width:2.03035927;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2215" + sodipodi:cx="17.607706" + sodipodi:cy="10.679387" + sodipodi:rx="0.80383009" + sodipodi:ry="0.80383009" + d="M 18.411536 10.679387 A 0.80383009 0.80383009 0 1 1 16.803876,10.679387 A 0.80383009 0.80383009 0 1 1 18.411536 10.679387 z" + transform="matrix(-1.244046,0,0,1.245728,26.90479,-6.302258)" /> + <rect + style="opacity:1;fill:#ce9f52;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2878" + width="15.000005" + height="2.0000005" + x="0.49999997" + y="9.5" /> + <rect + style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999934;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2880" + width="2.0000017" + height="3.9999959" + x="1.5" + y="8.500001" + rx="0.90201104" + ry="0.90201104" /> + <rect + style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999934;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2884" + width="2.0000017" + height="3.9999959" + x="12.499999" + y="8.500001" + rx="0.90201104" + ry="0.90201104" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/bot.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,191 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" + sodipodi:docname="bot.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/bot.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2434"> + <stop + style="stop-color:#3465a4;stop-opacity:1;" + offset="0" + id="stop2436" /> + <stop + style="stop-color:#3465a4;stop-opacity:0;" + offset="1" + id="stop2438" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2381"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop2383" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop2385" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2381" + id="radialGradient2387" + cx="8" + cy="6.3252358" + fx="8" + fy="6.3252358" + r="5.5" + gradientTransform="matrix(1,0,0,0.727273,-2.499086e-17,2.590909)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2434" + id="linearGradient2440" + x1="8.0002842" + y1="7.9528065" + x2="8.0002842" + y2="3.994154" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.000231,0,0,1.003358,-2.099138e-3,-2.699002e-2)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.007726" + inkscape:cx="15.409556" + inkscape:cy="3.028583" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showguides="true" + inkscape:guide-bbox="true" + showgrid="true" + fill="#3465a4" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21"> + <sodipodi:guide + orientation="vertical" + position="-845.97209" + id="guide1317" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1" + d="M 8.0273697,2.4999816 C 11.768865,2.4999816 13.504889,4.6239578 13.504889,6.0188482 L 13.504889,10.982138 C 13.504889,12.377028 12.554059,13.49999 11.372982,13.49999 L 4.6301353,13.49999 C 3.4490585,13.49999 2.4982278,12.377028 2.4982278,10.982138 L 2.4982278,6.0188482 C 2.4982278,4.6239578 4.3150401,2.4999816 8.0273697,2.4999816 z " + id="rect2337" + sodipodi:nodetypes="cccccccz" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0049763" + inkscape:original="M 8.03125 2.5 C 4.3189204 2.5 2.5 4.6363594 2.5 6.03125 L 2.5 10.96875 C 2.5 12.36364 3.443923 13.5 4.625 13.5 L 11.375 13.5 C 12.556077 13.5 13.5 12.36364 13.5 10.96875 L 13.5 6.03125 C 13.5 4.6363596 11.772746 2.5 8.03125 2.5 z " + xlink:href="#rect2337" + style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1" + id="path2364" + inkscape:href="#rect2337" + d="M 8.03125,3.5 C 4.6641987,3.5 3.46875,5.5073994 3.46875,6.03125 L 3.46875,10.96875 C 3.46875,11.900898 4.0706163,12.5 4.625,12.5 L 11.4375,12.5 C 11.991885,12.5 12.5625,11.915908 12.5625,10.96875 L 12.5625,6.03125 C 12.5625,5.478244 11.430731,3.5 8.03125,3.5 z " /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0049763" + inkscape:original="M 8.03125 2.5 C 4.3189204 2.5 2.5 4.6363594 2.5 6.03125 L 2.5 10.96875 C 2.5 12.36364 3.443923 13.5 4.625 13.5 L 11.375 13.5 C 12.556077 13.5 13.5 12.36364 13.5 10.96875 L 13.5 6.03125 C 13.5 4.6363596 11.772746 2.5 8.03125 2.5 z " + xlink:href="#rect2337" + style="opacity:0.5;fill:url(#radialGradient2387);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1" + id="path2379" + inkscape:href="#rect2337" + d="M 8.03125,4.5 C 4.6641988,4.5 3.46875,6.5073996 3.46875,7.03125 L 3.46875,11.96875 C 3.46875,12.900898 4.0706163,13.5 4.625,13.5 L 11.4375,13.5 C 11.991885,13.5 12.5625,12.915908 12.5625,11.96875 L 12.5625,7.03125 C 12.5625,6.478244 11.430731,4.5000001 8.03125,4.5 z " + transform="matrix(0.909091,0,0,0.875,0.727273,0.187503)" /> + <rect + style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2343" + width="4" + height="1" + x="6" + y="11" + rx="0" + ry="1" /> + <rect + style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2397" + width="1.9817986" + height="4.9895701" + x="0.50910079" + y="6.5103664" + ry="0.9731853" + rx="0.97318554" /> + <rect + style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999923;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2399" + width="1.9878451" + height="4.9889064" + x="13.510628" + y="6.5102949" + ry="0.97318453" + rx="0.97318554" /> + <rect + style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2407" + width="1" + height="1" + x="5" + y="10" + rx="0" + ry="1" /> + <rect + style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2409" + width="1" + height="1" + x="10" + y="10" + rx="0" + ry="1" /> + <rect + style="opacity:1;fill:url(#linearGradient2440);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2424" + width="6.9998379" + height="2.997915" + x="4.5001144" + y="5.501677" + ry="0.99999988" + rx="0.99999964" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/external.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,153 @@ +<?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="16px" + height="16px" + id="svg7380" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="external.svg" + inkscape:export-filename="/home/hbons/Desktop/external.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs7382"> + <linearGradient + inkscape:collect="always" + id="linearGradient25546"> + <stop + style="stop-color:white;stop-opacity:1;" + offset="0" + id="stop25548" /> + <stop + style="stop-color:white;stop-opacity:0;" + offset="1" + id="stop25550" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient25546" + id="radialGradient25554" + cx="7.8836637" + cy="1.5104795" + fx="7.8836637" + fy="1.5104795" + r="8.4883642" + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient25546" + id="radialGradient25568" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)" + cx="7.8836741" + cy="0.14505707" + fx="7.8836741" + fy="0.14505707" + r="8.4883642" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient25546" + id="radialGradient25572" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)" + cx="7.8836637" + cy="1.5104795" + fx="7.8836637" + fy="1.5104795" + r="8.4883642" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.197802" + inkscape:cx="15.928713" + inkscape:cy="7.0990099" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + width="24px" + height="24px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="872" + inkscape:window-height="626" + inkscape:window-x="6" + inkscape:window-y="94" /> + <metadata + id="metadata7385"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + sodipodi:type="arc" + style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1.0481478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path7388" + sodipodi:cx="7.8836637" + sodipodi:cy="7.8460393" + sodipodi:rx="7.8836637" + sodipodi:ry="7.838614" + d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1 0,7.8460393 A 7.8836637 7.838614 0 1 1 15.767327 7.8460393 z" + transform="matrix(0.951334,0,0,0.956802,0.5,0.492896)" /> + <path + style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 10.90625,2 C 9.7428141,2 8.7812499,2.8959991 8.78125,4 C 8.78125,5.1040008 9.7428141,5.9999999 10.90625,6 C 12.069686,6 13,5.1040007 13,4 C 13,2.8959992 12.069686,2 10.90625,2 z M 4,3 C 2.8960002,3 2,3.8959993 2,5 C 2,5.4301796 2.1436219,5.8299355 2.375,6.15625 C 1.573931,6.5477359 0.99999996,7.6683 1,9 C 1,10.656 1.8960002,12 3,12 C 4.1039998,12 5.0000002,10.655999 5,9 C 5,8.2118079 4.7692756,7.5043072 4.4375,6.96875 C 5.3340078,6.771061 6.0000002,5.9556507 6,5 C 6,3.8959992 5.1039998,3 4,3 z M 11.5,6 C 9.568,6 8.0000001,7.1200004 8,8.5 C 8,9.5086172 8.8261102,10.38618 10.03125,10.78125 C 10.116966,12.025862 10.730396,13 11.5,13 C 12.269604,13 12.883034,12.025862 12.96875,10.78125 C 14.17389,10.38618 15,9.5086171 15,8.5 C 15,7.1200006 13.432,6 11.5,6 z " + id="path8277" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#radialGradient25554);fill-opacity:1;stroke:#eeeeec;stroke-width:1.20940173;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path8275" + sodipodi:cx="7.8836637" + sodipodi:cy="7.8460393" + sodipodi:rx="7.8836637" + sodipodi:ry="7.838614" + d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1 0,7.8460393 A 7.8836637 7.838614 0 1 1 15.767327 7.8460393 z" + transform="matrix(0.824489,0,0,0.829228,1.5,1.493846)" /> + <path + sodipodi:type="arc" + style="opacity:0.2544643;fill:url(#radialGradient25568);fill-opacity:1;stroke:#eeeeec;stroke-width:1.64813614;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path25566" + sodipodi:cx="7.8836637" + sodipodi:cy="7.8460393" + sodipodi:rx="7.8836637" + sodipodi:ry="7.838614" + d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1 0,7.8460393 A 7.8836637 7.838614 0 1 1 15.767327 7.8460393 z" + transform="matrix(0.443956,0,0,0.829228,4.5,1.493846)" /> + <path + sodipodi:type="arc" + style="opacity:0.25892855;fill:url(#radialGradient25572);fill-opacity:1;stroke:#eeeeec;stroke-width:1.64813614;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path25570" + sodipodi:cx="7.8836637" + sodipodi:cy="7.8460393" + sodipodi:rx="7.8836637" + sodipodi:ry="7.838614" + d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1 0,7.8460393 A 7.8836637 7.838614 0 1 1 15.767327 7.8460393 z" + transform="matrix(0,0.443956,-0.829228,0,14.50615,4.5)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/female.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,113 @@ +<?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="svg1307" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh" + sodipodi:docname="female.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/female.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + version="1.0" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs1309"> + <linearGradient + inkscape:collect="always" + id="linearGradient2206"> + <stop + style="stop-color:#c372cf;stop-opacity:1;" + offset="0" + id="stop2208" /> + <stop + style="stop-color:#c372cf;stop-opacity:0;" + offset="1" + id="stop2210" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2206" + id="linearGradient2212" + x1="8.7527227" + y1="8.5870285" + x2="8.7527227" + y2="-0.61677557" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="44.395605" + inkscape:cx="15.206295" + inkscape:cy="6.2089057" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + fill="#729fcf" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" + showguides="true" + inkscape:guide-bbox="true" /> + <metadata + id="metadata1312"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + sodipodi:type="arc" + style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1305" + sodipodi:cx="5.0230198" + sodipodi:cy="5.3570547" + sodipodi:rx="3.3111386" + sodipodi:ry="2.6917078" + d="M 5.2408909,8.0429293 A 3.3111386,2.6917078 0 0 1 5.227167,8.0436417" + sodipodi:start="1.5049493" + sodipodi:end="1.5091025" + sodipodi:open="true" /> + <path + sodipodi:type="arc" + style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1307" + sodipodi:cx="2.8944306" + sodipodi:cy="2.8680694" + sodipodi:rx="1.4303218" + sodipodi:ry="1.4190594" + d="M 2.988545,4.2840535 A 1.4303218,1.4190594 0 0 1 2.9826167,4.2844291" + sodipodi:start="1.5049493" + sodipodi:end="1.5091025" + sodipodi:open="true" /> + <path + style="opacity:1;fill:url(#linearGradient2212);fill-opacity:1.0;stroke:#c7349f;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 8.03125 1.5 C 6.0362037 1.7252787 4.4999999 3.4448511 4.5 5.5 C 4.5 7.3629757 5.7751975 8.9308504 7.5 9.375 L 7.5 10.5 L 5.5 10.5 L 5.5 12.5 L 7.5 12.5 L 7.5 14.5 L 9.5 14.5 L 9.5 12.5 L 11.5 12.5 L 11.5 10.5 L 9.5 10.5 L 9.5 9.375 C 11.224803 8.9308505 12.5 7.3629757 12.5 5.5 C 12.5 3.2920288 10.707789 1.5 8.5 1.5 C 8.3965099 1.5 8.2890204 1.4922668 8.1875 1.5 C 8.1391192 1.5036853 8.0791311 1.4945933 8.03125 1.5 z M 8.34375 3.5 C 8.3943599 3.4961452 8.4484081 3.5 8.5 3.5 C 9.6006259 3.4999999 10.5 4.3993736 10.5 5.5 C 10.5 6.6006265 9.6006264 7.5 8.5 7.5 C 7.3993732 7.5000001 6.5 6.6006264 6.5 5.5 C 6.5 4.4509656 7.3146811 3.5783814 8.34375 3.5 z " + id="path1313" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/free-for-chat.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,192 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/emblems/scalable" + sodipodi:docname="free-for-chat.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/toolbars/16/emote-select.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3104"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop3106" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop3108" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3104" + id="radialGradient3114" + cx="8.0159302" + cy="14.49998" + fx="8.0159302" + fy="14.49998" + r="9.975256" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="36.388908" + inkscape:cx="15.503334" + inkscape:cy="8.5115617" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#2e3436" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="47" + showguides="true" + inkscape:guide-bbox="true" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(1.203929,0,0,0.844757,-4.940617,5.165834)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#f57900;stroke-width:1.33385623;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1307" + sodipodi:cx="11.806158" + sodipodi:cy="10.983024" + sodipodi:rx="9.975256" + sodipodi:ry="9.975256" + d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1 1.8309021,10.983024 A 9.975256 9.975256 0 1 1 21.781414 10.983024 z" + transform="matrix(0.751566,0,0,0.751566,-0.873654,-0.255014)" /> + <path + sodipodi:type="arc" + style="opacity:0.79545456;fill:url(#radialGradient3114);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3102" + sodipodi:cx="11.806158" + sodipodi:cy="10.983024" + sodipodi:rx="9.975256" + sodipodi:ry="9.975256" + d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1 1.8309021,10.983024 A 9.975256 9.975256 0 1 1 21.781414 10.983024 z" + transform="matrix(0.601488,0,0,0.601488,0.898734,1.393846)" /> + <path + sodipodi:type="arc" + style="opacity:0.7;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.53516853;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2184" + sodipodi:cx="11.806158" + sodipodi:cy="10.983024" + sodipodi:rx="9.975256" + sodipodi:ry="9.975256" + d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1 1.8309021,10.983024 A 9.975256 9.975256 0 1 1 21.781414 10.983024 z" + transform="matrix(0.651393,0,0,0.651393,0.308855,0.845039)" /> + <path + style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 11.991472,9 C 11.581026,10.712824 9.995676,12.047691 7.997585,12 C 5.999494,11.952309 4.4416249,10.740305 4.0311784,9.0274809 C 4.7686393,10.13659 6.5310171,10.513632 7.997585,10.513632 C 9.464152,10.513633 11.254011,10.109109 11.991472,9 z " + id="path2186" + sodipodi:nodetypes="czcsc" + transform="matrix(1,0,0,1.332783,0,-2.995046)" /> + <rect + style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2243" + width="1" + height="3" + x="6" + y="5" + ry="0.5" /> + <rect + style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2246" + width="1" + height="3" + x="9" + y="5" + ry="0.5" + rx="0.5" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#fce94f;fill-opacity:1;stroke:#f57900;stroke-width:0.92844784;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path5203" + sodipodi:cx="0.90686977" + sodipodi:cy="4.6503878" + sodipodi:rx="2.2534339" + sodipodi:ry="2.3908384" + d="M 3.1603037 4.6503878 A 2.2534339 2.3908384 0 1 1 -1.3465642,4.6503878 A 2.2534339 2.3908384 0 1 1 3.1603037 4.6503878 z" + transform="matrix(1.109418,0,0,1.045658,11.9939,-1.862717)" /> + <path + sodipodi:type="arc" + style="opacity:0.7;fill:none;fill-opacity:1;stroke:#eeeeec;stroke-width:1.54741251;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path6090" + sodipodi:cx="0.90686977" + sodipodi:cy="4.6503878" + sodipodi:rx="2.2534339" + sodipodi:ry="2.3908384" + d="M 3.1603037 4.6503878 A 2.2534339 2.3908384 0 1 1 -1.3465642,4.6503878 A 2.2534339 2.3908384 0 1 1 3.1603037 4.6503878 z" + transform="matrix(0.665651,0,0,0.627395,12.39634,8.236986e-2)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/game.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,146 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/emblems/scalable" + sodipodi:docname="game.svg" + inkscape:export-filename="/home/hbons/GUI/Tango/Gaim Refresh/emblems/game.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2264"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop2266" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop2268" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2264" + id="linearGradient2270" + x1="8" + y1="3.5630622" + x2="8" + y2="11.671161" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="39.000665" + inkscape:cx="14.206455" + inkscape:cy="7.7355854" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showguides="true" + inkscape:guide-bbox="true" + showgrid="true" + fill="#eeeeec" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="47"> + <sodipodi:guide + orientation="vertical" + position="-845.97209" + id="guide1317" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="fill:#444643;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1" + d="M 3.9835017,1.4980972 L 11.999829,1.4980972 C 13.394769,1.4980972 14.517772,2.6210999 14.517772,4.0160406 L 14.517772,11.982734 C 14.517772,13.377675 13.394769,14.500678 11.999829,14.500678 L 3.9835017,14.500678 C 2.588561,14.500678 1.4655583,13.377675 1.4655583,11.982734 L 1.4655583,4.0160406 C 1.4655583,2.6210999 2.588561,1.4980972 3.9835017,1.4980972 z " + id="path2254" /> + <path + style="fill:#f13d3d;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" + d="M 4.0064655,1.4999056 L 11.99231,1.4999056 C 13.381945,1.4999056 14.500677,2.6226961 14.500677,4.0173732 L 14.500677,11.982561 C 14.500677,13.377238 13.381945,14.500029 11.99231,14.500029 L 4.0064655,14.500029 C 2.6168293,14.500029 1.4980971,13.377238 1.4980971,11.982561 L 1.4980971,4.0173732 C 1.4980971,2.6226961 2.6168293,1.4999056 4.0064655,1.4999056 z " + id="rect2233" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0076212" + inkscape:original="M 4 1.5 C 2.6103638 1.5 1.5 2.636573 1.5 4.03125 L 1.5 11.96875 C 1.5 13.363427 2.6103639 14.5 4 14.5 L 12 14.5 C 13.389635 14.5 14.5 13.363427 14.5 11.96875 L 14.5 4.03125 C 14.5 2.6365729 13.389635 1.5 12 1.5 L 4 1.5 z " + xlink:href="#rect2233" + style="fill:url(#linearGradient2270);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1;opacity:0.3" + id="path2252" + inkscape:href="#rect2233" + d="M 3.96875,2.5 C 3.1210101,2.5 2.46875,3.1684612 2.46875,4.03125 L 2.46875,11.96875 C 2.46875,12.831539 3.1210101,13.5 3.96875,13.5 L 12,13.5 C 12.847739,13.5 13.53125,12.81649 13.53125,11.96875 L 13.53125,4.03125 C 13.53125,3.1835106 12.847739,2.5 12,2.5 L 3.96875,2.5 z " /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2235" + sodipodi:cx="5.0328703" + sodipodi:cy="5.3124371" + sodipodi:rx="0.68011761" + sodipodi:ry="0.77727729" + d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1 4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1 5.7129879 5.3124371 z" + transform="matrix(2.205501,0,0,1.929813,-5.600001,-4.75201)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2272" + sodipodi:cx="5.0328703" + sodipodi:cy="5.3124371" + sodipodi:rx="0.68011761" + sodipodi:ry="0.77727729" + d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1 4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1 5.7129879 5.3124371 z" + transform="matrix(2.205501,0,0,1.929813,-5.6,0.24799)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2274" + sodipodi:cx="5.0328703" + sodipodi:cy="5.3124371" + sodipodi:rx="0.68011761" + sodipodi:ry="0.77727729" + d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1 4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1 5.7129879 5.3124371 z" + transform="matrix(2.205501,0,0,1.929813,-0.600001,0.24799)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2276" + sodipodi:cx="5.0328703" + sodipodi:cy="5.3124371" + sodipodi:rx="0.68011761" + sodipodi:ry="0.77727729" + d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1 4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1 5.7129879 5.3124371 z" + transform="matrix(2.205501,0,0,1.929813,-0.6,-4.75201)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/male.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,113 @@ +<?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="svg1307" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh" + sodipodi:docname="male.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/female.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + version="1.0" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs1309"> + <linearGradient + inkscape:collect="always" + id="linearGradient2248"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop2250" /> + <stop + style="stop-color:#729fcf;stop-opacity:0" + offset="1" + id="stop2252" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2248" + id="linearGradient2254" + x1="8.4317303" + y1="8.3947935" + x2="7.0192189" + y2="2.5513308" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="25.498579" + inkscape:cx="15.206295" + inkscape:cy="6.2089057" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + fill="#729fcf" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" + showguides="true" + inkscape:guide-bbox="true" /> + <metadata + id="metadata1312"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + sodipodi:type="arc" + style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1305" + sodipodi:cx="5.0230198" + sodipodi:cy="5.3570547" + sodipodi:rx="3.3111386" + sodipodi:ry="2.6917078" + d="M 5.2408909,8.0429293 A 3.3111386,2.6917078 0 0 1 5.227167,8.0436417" + sodipodi:start="1.5049493" + sodipodi:end="1.5091025" + sodipodi:open="true" /> + <path + sodipodi:type="arc" + style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1307" + sodipodi:cx="2.8944306" + sodipodi:cy="2.8680694" + sodipodi:rx="1.4303218" + sodipodi:ry="1.4190594" + d="M 2.988545,4.2840535 A 1.4303218,1.4190594 0 0 1 2.9826167,4.2844291" + sodipodi:start="1.5049493" + sodipodi:end="1.5091025" + sodipodi:open="true" /> + <path + style="opacity:1;fill:url(#linearGradient2254);fill-opacity:1.0;stroke:#3465a4;stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 9.5625001,2.5052306 L 10.8125,3.730362 L 8.5312501,6.0235566 C 7.9356185,5.6694146 7.2416791,5.4581114 6.5000001,5.4581114 C 4.2922116,5.4581114 2.5,7.2595228 2.5000001,9.4790554 C 2.5000001,11.698588 4.2922117,13.5 6.5000001,13.5 C 8.7077886,13.5 10.5,11.698588 10.5,9.4790554 C 10.5,8.7334313 10.289768,8.0359696 9.9375001,7.4371697 L 12.21875,5.1439751 L 13.5,6.4005201 L 13.5,2.5052306 L 9.5625001,2.5052306 z M 6.4062501,7.5314106 C 6.4402689,7.529683 6.4655548,7.5314106 6.5000001,7.5314106 C 7.6022508,7.5314105 8.5000001,8.4387958 8.5000001,9.5418826 C 8.4999997,10.644969 7.6022508,11.552355 6.5000001,11.552355 C 5.3977495,11.552355 4.5000001,10.644969 4.5000001,9.5418826 C 4.5000001,8.4732675 5.3516684,7.5849654 6.4062501,7.5314106 z " + id="path1313" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/mobile.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,264 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" + sodipodi:docname="mobile.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/mobile.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3335"> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="0" + id="stop3337" /> + <stop + style="stop-color:#204a87;stop-opacity:0;" + offset="1" + id="stop3339" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3300"> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="0" + id="stop3302" /> + <stop + style="stop-color:#204a87;stop-opacity:0;" + offset="1" + id="stop3304" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3300" + id="linearGradient3315" + gradientUnits="userSpaceOnUse" + x1="-0.0061673229" + y1="11.454797" + x2="5.6395993" + y2="11.454797" + gradientTransform="matrix(0.580679,0,0,0.709346,1.207372,-1.624473)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3335" + id="linearGradient3341" + x1="-27.615904" + y1="21.696934" + x2="-19.2363" + y2="18.633484" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3300" + id="linearGradient3353" + x1="-28.160521" + y1="22.551313" + x2="-18.170761" + y2="17.799398" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="36.388908" + inkscape:cx="12.47515" + inkscape:cy="8.110346" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#888a85" + inkscape:window-width="1268" + inkscape:window-height="972" + inkscape:window-x="6" + inkscape:window-y="21" + inkscape:grid-points="true" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000036;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1331" + width="7.9919939" + height="12.993911" + x="7.5040998" + y="1.504545" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0228416" + inkscape:original="M 7.5 1.5 L 7.5 14.5 L 15.5 14.5 L 15.5 1.5 L 7.5 1.5 z " + xlink:href="#rect1331" + style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99199408px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path2206" + inkscape:href="#rect1331" + d="M 8.53125,2.53125 L 8.53125,13.46875 L 14.46875,13.46875 L 14.46875,2.53125 L 8.53125,2.53125 z " + transform="matrix(1.010173,0,0,1.005973,-0.115518,-4.844059e-2)" /> + <rect + style="fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:0.99999928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2208" + width="3.9807076" + height="3.0005636" + x="9.5027981" + y="3.499944" /> + <path + style="opacity:0.38150288;color:#000000;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;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" + d="M 9,3 L 9,6 C 9.6849325,5.8078592 10.39969,5.560911 11.098766,5.2718451 C 12.171483,4.8282801 13.137384,4.3213781 14,3.7572819 L 14,3 L 9,3 z " + id="path2220" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2233" + width="1" + height="1" + x="9" + y="8" /> + <path + sodipodi:type="spiral" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3353);stroke-width:7.08695936px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path3252" + sodipodi:cx="-11" + sodipodi:cy="17" + sodipodi:expansion="1" + sodipodi:revolution="1.1139722" + sodipodi:radius="17.723295" + sodipodi:argument="-9.424778" + sodipodi:t0="0.70807511" + d="M -14.027341,29.178804 C -22.234168,28.813068 -27.756867,20.82956 -27.038836,13.013154 C -26.789036,10.293863 -25.851755,7.6562253 -24.369854,5.3654734" + transform="matrix(0.120201,5.654854e-2,-4.742318e-2,0.143331,9.572983,5.110321)" /> + <path + sodipodi:type="spiral" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3341);stroke-width:3.73703289px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path3254" + sodipodi:cx="-11" + sodipodi:cy="17" + sodipodi:expansion="1" + sodipodi:revolution="1.1157676" + sodipodi:radius="17.751867" + sodipodi:argument="-9.424778" + sodipodi:t0="0.69832003" + d="M -13.258788,29.188958 C -21.390692,29.337435 -27.331334,21.779752 -27.099873,14.016463 C -27.00639,10.881001 -25.990716,7.8068052 -24.259099,5.1963947" + transform="matrix(0.219568,0.111334,-8.662678e-2,0.282195,10.94256,3.73758)" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3315);stroke-width:1.00000131px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 4.5539611,12.498317 C 2.0020373,11.459655 0.92343648,7.5201545 1.7880505,4.3367901 C 2.2231942,2.7346624 3.0921081,1.3783732 4.1882245,0.50356567" + id="path3256" + sodipodi:nodetypes="csc" /> + <rect + style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3355" + width="1" + height="1" + x="7" + y="1" /> + <rect + style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect1340" + width="1" + height="1" + x="15" + y="1" /> + <rect + style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect1342" + width="1" + height="1" + x="15" + y="14" /> + <rect + style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect1344" + width="1" + height="1" + x="7" + y="14" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2220" + width="1" + height="1" + x="11" + y="8" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2222" + width="1" + height="1" + x="13" + y="8" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2224" + width="1" + height="1" + x="13" + y="10" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2226" + width="1" + height="1" + x="11" + y="10" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2228" + width="1" + height="1" + x="9" + y="10" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2230" + width="1" + height="1" + x="9" + y="12" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2232" + width="1" + height="1" + x="11" + y="12" /> + <rect + style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect2234" + width="1" + height="1" + x="13" + y="12" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/music.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,189 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:modified="true" + version="1.0" + sodipodi:docname="music.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3185"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop3187" /> + <stop + style="stop-color:#4e9a06;stop-opacity:0" + offset="1" + id="stop3189" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3177"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop3179" /> + <stop + style="stop-color:#4e9a06;stop-opacity:0;" + offset="1" + id="stop3181" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3153"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop3155" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop3157" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3153" + id="linearGradient3159" + x1="2.5409546" + y1="10.048674" + x2="10.378205" + y2="15.928688" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3177" + id="radialGradient3183" + cx="5.2116022" + cy="8.4051199" + fx="5.2116022" + fy="8.4051199" + r="2.9404981" + gradientTransform="matrix(2.6050387,0,0,2.2888674,-8.415579,-10.767812)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3185" + id="radialGradient3191" + cx="5.1978397" + cy="8.4135866" + fx="5.1978397" + fy="8.4135866" + r="3.1428281" + gradientTransform="matrix(2.8202152,0,0,2.4999643,-9.461187,-12.455954)" + gradientUnits="userSpaceOnUse" /> + </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="22.4" + inkscape:cx="19.784002" + inkscape:cy="11.848" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showgrid="true" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="22" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:1;fill:#555753;fill-opacity:1;stroke:#222728;stroke-width:1.14297926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2160" + sodipodi:cx="6.4712896" + sodipodi:cy="14.484771" + sodipodi:rx="3.5986683" + sodipodi:ry="2.1781414" + d="M 10.069958 14.484771 A 3.5986683 2.1781414 0 1 1 2.8726213,14.484771 A 3.5986683 2.1781414 0 1 1 10.069958 14.484771 z" + transform="matrix(0.8336417,0,0,0.918214,4.1052631,-0.8001194)" /> + <rect + style="opacity:1;fill:#222728;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect3143" + width="1" + height="12" + x="12" + y="1" + rx="0.18940361" + ry="0.20662212" /> + <path + style="fill:#222728;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 12.006464,3.0203051 L 11.981638,1 C 13.945163,1 17.837365,1.1548232 14.996311,7.9684328 C 15.596089,2.2547574 13.743811,3.0203051 12.006464,3.0203051 z " + id="rect3146" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#555753;fill-opacity:1;stroke:url(#linearGradient3159);stroke-width:1.97969818;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3151" + sodipodi:cx="6.4712896" + sodipodi:cy="14.484771" + sodipodi:rx="3.5986683" + sodipodi:ry="2.1781414" + d="M 10.069958 14.484771 A 3.5986683 2.1781414 0 1 1 2.8726213,14.484771 A 3.5986683 2.1781414 0 1 1 10.069958 14.484771 z" + transform="matrix(0.5557611,0,0,0.4591071,5.903509,5.8499391)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient3191);stroke-width:0.98568761;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3173" + sodipodi:cx="8.0970039" + sodipodi:cy="11.122857" + sodipodi:rx="4.3089318" + sodipodi:ry="3.5513175" + d="M 3.9729753,12.152015 A 4.3089318,3.5513175 0 0 1 9.0871283,7.6665672" + transform="matrix(1.0443424,0,0,0.9855497,-0.4560443,3.7870959e-2)" + sodipodi:start="2.8475788" + sodipodi:end="4.9442449" + sodipodi:open="true" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient3183);stroke-width:0.58102763;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3175" + sodipodi:cx="8.0970039" + sodipodi:cy="11.122857" + sodipodi:rx="4.3089318" + sodipodi:ry="3.5513175" + d="M 3.9729753,12.152015 A 4.3089318,3.5513175 0 0 1 9.0871283,7.6665672" + transform="matrix(1.6981233,0,0,1.7443645,-5.9310642,-8.697544)" + sodipodi:start="2.8475788" + sodipodi:end="4.9442449" + sodipodi:open="true" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/not-authorized.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,99 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" + sodipodi:docname="not-authorized.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/voice.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3300"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop3302" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop3304" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3300" + id="linearGradient3306" + x1="8.6152382" + y1="-9.8347273" + x2="8.6152382" + y2="12.348849" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="39.000665" + inkscape:cx="13.905353" + inkscape:cy="8.018215" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#eeeeec" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2200" + width="0" + height="1" + x="13" + y="4" /> + <path + style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 7.4375 0.5 C 3.5645752 0.79220137 0.49999998 4.0537353 0.5 8 C 0.5 12.138223 3.8611989 15.5 8 15.5 C 12.138801 15.5 15.5 12.138223 15.5 8 C 15.5 3.8617774 12.138801 0.49999998 8 0.5 C 7.8706625 0.49999998 7.7527358 0.49351902 7.625 0.5 C 7.563128 0.50313923 7.498975 0.49536188 7.4375 0.5 z M 7.59375 2.5 C 7.6388078 2.4965991 7.6733994 2.502301 7.71875 2.5 C 7.812377 2.4952496 7.905199 2.5 8 2.5 C 8.9717099 2.5 9.8946048 2.7438747 10.6875 3.1875 L 3.1875 10.6875 C 2.7438131 9.8947148 2.5 8.9715754 2.5 8 C 2.5000001 5.1074903 4.7551106 2.7142577 7.59375 2.5 z M 12.8125 5.3125 C 13.256187 6.1052852 13.5 7.0284247 13.5 8 C 13.5 11.03321 11.033631 13.5 8 13.5 C 7.0282899 13.5 6.1053952 13.256125 5.3125 12.8125 L 12.8125 5.3125 z " + id="path3298" /> + <path + style="opacity:1;fill:url(#linearGradient3306);fill-opacity:1.0;fill-rule:evenodd;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 7.4375 0.5 C 3.5645752 0.79220137 0.49999998 4.0537353 0.5 8 C 0.5 12.138223 3.8611989 15.5 8 15.5 C 12.138801 15.5 15.5 12.138223 15.5 8 C 15.5 3.8617774 12.138801 0.49999998 8 0.5 C 7.8706625 0.49999998 7.7527358 0.49351902 7.625 0.5 C 7.563128 0.50313923 7.498975 0.49536188 7.4375 0.5 z M 7.59375 2.5 C 7.6388078 2.4965991 7.6733994 2.502301 7.71875 2.5 C 7.812377 2.4952496 7.905199 2.5 8 2.5 C 8.9717099 2.5 9.8946048 2.7438747 10.6875 3.1875 L 3.1875 10.6875 C 2.7438131 9.8947148 2.5 8.9715754 2.5 8 C 2.5000001 5.1074903 4.7551106 2.7142577 7.59375 2.5 z M 12.8125 5.3125 C 13.256187 6.1052852 13.5 7.0284247 13.5 8 C 13.5 11.03321 11.033631 13.5 8 13.5 C 7.0282899 13.5 6.1053952 13.256125 5.3125 12.8125 L 12.8125 5.3125 z " + id="path3278" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/qq-member.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,198 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems/scalable" + sodipodi:docname="qq-member.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/qq-member.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.678384" + inkscape:cx="14.657198" + inkscape:cy="9.1928113" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + fill="#f57900" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.46078622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2344" + sodipodi:cx="3.4614794" + sodipodi:cy="19.897507" + sodipodi:rx="3.8204477" + sodipodi:ry="1.8461224" + d="M 7.2819271 19.897507 A 3.8204477 1.8461224 0 1 1 -0.35896826,19.897507 A 3.8204477 1.8461224 0 1 1 7.2819271 19.897507 z" + transform="matrix(0.76425,0,0,0.77926,8.868813,-1.507098)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.46078622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2340" + sodipodi:cx="3.4614794" + sodipodi:cy="19.897507" + sodipodi:rx="3.8204477" + sodipodi:ry="1.8461224" + d="M 7.2819271 19.897507 A 3.8204477 1.8461224 0 1 1 -0.35896826,19.897507 A 3.8204477 1.8461224 0 1 1 7.2819271 19.897507 z" + transform="matrix(0.76425,0,0,0.77926,1.868813,-1.507098)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:3.17369032;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2346" + sodipodi:cx="11.230577" + sodipodi:cy="16.820635" + sodipodi:rx="7.0768023" + sodipodi:ry="5.7434916" + d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1 4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1 18.30738 16.820635 z" + transform="matrix(0.284233,0,0,0.349298,-0.692104,3.624594)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:3.14814281;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2348" + sodipodi:cx="11.230577" + sodipodi:cy="16.820635" + sodipodi:rx="7.0768023" + sodipodi:ry="5.7434916" + d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1 4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1 18.30738 16.820635 z" + transform="matrix(0.287243,0,0,0.35127,10.30629,3.574208)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:1.28010798;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2322" + sodipodi:cx="11.230577" + sodipodi:cy="16.820635" + sodipodi:rx="7.0768023" + sodipodi:ry="5.7434916" + d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1 4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1 18.30738 16.820635 z" + transform="matrix(0.778937,0,0,0.783435,-0.759922,-2.17753)" /> + <path + style="fill:#eeeeec;fill-opacity:1;stroke:#babdb6;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" + d="M 12.499168,11.000754 C 12.499168,12.928874 10.484543,14.493723 8.0022374,14.493723 C 5.5199315,14.493723 3.5053065,12.928874 3.5053065,11.000754 C 3.5053065,9.0726373 5.5199315,7.5077885 8.0022374,7.5077885 C 10.484543,7.5077885 12.499168,9.0726373 12.499168,11.000754 z " + id="path2324" /> + <path + style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:1.00000131;stroke-miterlimit:4;stroke-opacity:1" + d="M 13.500455,9.0793411 C 13.500455,10.097614 11.053157,11.154467 7.858743,11.154467 C 7.0601403,11.154467 5.0724919,10.737992 2.9392977,12.494449 C 2.3961235,11.997703 1.7730984,11.677973 1.4999988,11.245381 C 2.656505,10.082571 2.1807148,9.5555594 2.1807148,9.0464228 C 2.1807148,8.0281496 4.5192556,7.4998051 7.7136673,7.4998051 C 10.908078,7.4998051 13.500455,8.0610678 13.500455,9.0793411 z " + id="path2338" + sodipodi:nodetypes="csccscc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0198945" + inkscape:original="M 7.71875 7.5 C 4.5243383 7.5 2.1875 8.0129766 2.1875 9.03125 C 2.1875 9.5403866 2.6565062 10.08719 1.5 11.25 C 1.7730996 11.682592 2.3943258 12.003254 2.9375 12.5 C 5.0706942 10.743543 7.0451471 11.15625 7.84375 11.15625 C 11.038164 11.15625 13.5 10.112023 13.5 9.09375 C 13.5 8.0754767 10.913161 7.5000001 7.71875 7.5 z " + xlink:href="#path2338" + style="opacity:0.2;fill:#ef2929;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" + id="path2352" + inkscape:href="#path2338" + d="M 7.78125,7.78125 C 6.2056615,7.78125 4.8491705,7.9136549 4,8.15625 C 3.5754148,8.2775475 3.3004488,8.4430178 3.1875,8.53125 C 3.0745512,8.6194822 3.15625,8.5391895 3.15625,8.46875 C 3.15625,8.4575392 3.2894467,8.8656831 3.25,9.5 C 3.2272601,9.865665 2.8516835,10.300044 2.625,10.71875 C 2.7056245,10.790412 2.8603146,10.942134 3,11.0625 C 3.979307,10.38765 4.9560069,9.9645065 5.78125,9.84375 C 6.8285986,9.6904932 7.7226625,9.8125 7.9375,9.8125 C 9.4513866,9.8125 10.781471,9.5551666 11.65625,9.1875 C 12.09364,9.0036667 12.403103,8.7753999 12.5625,8.625 C 12.632635,8.5588241 12.610828,8.6154264 12.625,8.59375 C 12.474022,8.487747 12.139821,8.3148445 11.6875,8.1875 C 10.75734,7.925627 9.3503426,7.7812501 7.78125,7.78125 z " /> + <path + style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999952;stroke-miterlimit:4;stroke-opacity:1" + d="M 7.1687017,0.50474152 L 8.7175626,0.50474152 C 10.884158,0.50474152 12.725973,2.4197619 13.271888,4.5023703 C 13.832643,6.6415931 13.596752,8.5000002 9.5621605,8.5000002 L 6.4045417,8.5000002 C 2.3634134,8.5000002 2.1742771,6.6415931 2.7350333,4.5023703 C 3.2579631,2.5074515 5.0021064,0.50474152 7.1687017,0.50474152 z " + id="rect2317" + sodipodi:nodetypes="ccsccsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0200312" + inkscape:original="M 7.15625 0.5 C 4.9896547 0.5 3.2729298 2.5050811 2.75 4.5 C 2.1892438 6.6392228 2.3651219 8.5000002 6.40625 8.5 L 9.5625 8.5 C 13.597092 8.5 13.842005 6.6392227 13.28125 4.5 C 12.735335 2.4173916 10.885345 0.49999997 8.71875 0.5 L 7.15625 0.5 z " + xlink:href="#rect2317" + style="opacity:0.1;fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-opacity:1" + id="path2355" + inkscape:href="#rect2317" + d="M 7.15625,1.53125 C 6.3973765,1.53125 5.6771094,1.8616365 5.0625,2.46875 C 4.4478906,3.0758635 3.9933517,3.9351753 3.78125,4.75 C 3.5273221,5.7255068 3.5403429,6.426123 3.75,6.75 C 3.9596571,7.073877 4.5574314,7.4687499 6.40625,7.46875 L 9.5625,7.46875 C 11.407817,7.46875 12.033042,7.0791701 12.25,6.75 C 12.466958,6.4208299 12.471262,5.7200702 12.21875,4.75 C 11.777347,3.0542739 10.264213,1.53125 8.71875,1.53125 L 7.15625,1.53125 z " /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2326" + sodipodi:cx="5.5383673" + sodipodi:cy="3.4618888" + sodipodi:rx="1.2307483" + sodipodi:ry="2.4871371" + d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" + transform="matrix(0.812514,0,0,0.804137,1.499999,1.216166)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2328" + sodipodi:cx="5.5383673" + sodipodi:cy="3.4618888" + sodipodi:rx="1.2307483" + sodipodi:ry="2.4871371" + d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" + transform="matrix(0.812514,0,0,0.804137,5.499999,1.216166)" /> + <path + style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000083;stroke-miterlimit:4;stroke-opacity:1" + d="M 12.49879,7.4976412 C 12.49879,8.5974947 10.483202,9.4901278 7.9997082,9.4901278 C 5.5162155,9.4901278 3.5006267,8.5974947 3.5006267,7.4976412 C 3.5006267,6.3977886 5.5162155,5.5051544 7.9997082,5.5051544 C 10.483202,5.5051544 12.49879,6.3977886 12.49879,7.4976412 z " + id="path2320" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2330" + sodipodi:cx="5.5383673" + sodipodi:cy="3.4618888" + sodipodi:rx="1.2307483" + sodipodi:ry="2.4871371" + d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" + transform="matrix(0.406257,0,0,0.201034,7.250001,2.804042)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2332" + sodipodi:cx="5.5383673" + sodipodi:cy="3.4618888" + sodipodi:rx="1.2307483" + sodipodi:ry="2.4871371" + d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" + transform="matrix(0.406257,0,0,0.201034,4.25,2.804042)" /> + <path + sodipodi:type="arc" + style="opacity:0.19318183;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.99083459;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2336" + sodipodi:cx="13.296353" + sodipodi:cy="10.923561" + sodipodi:rx="8.2214088" + sodipodi:ry="1.7085644" + d="M 21.517762 10.923561 A 8.2214088 1.7085644 0 1 1 5.0749445,10.923561 A 8.2214088 1.7085644 0 1 1 21.517762 10.923561 z" + transform="matrix(0.427975,0,0,0.589538,2.309499,1.065602)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/secure.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,162 @@ +<?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="16px" + height="16px" + id="svg4220" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/emblems/16/scalable" + sodipodi:docname="secure.svg" + inkscape:export-filename="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/emblems/16/secure.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4222"> + <linearGradient + inkscape:collect="always" + id="linearGradient5170"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop5172" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop5174" /> + </linearGradient> + <linearGradient + id="linearGradient5160"> + <stop + style="stop-color:#c4a000;stop-opacity:1;" + offset="0" + id="stop5162" /> + <stop + style="stop-color:#c4a000;stop-opacity:0;" + offset="1" + id="stop5164" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5127"> + <stop + style="stop-color:white;stop-opacity:1;" + offset="0" + id="stop5129" /> + <stop + style="stop-color:white;stop-opacity:0;" + offset="1" + id="stop5131" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5127" + id="linearGradient5133" + x1="-8.5730524" + y1="8.1949167" + x2="-8.5730524" + y2="14.091002" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5160" + id="linearGradient5166" + x1="-5.2575259" + y1="14.311456" + x2="-10.187596" + y2="11.560035" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5170" + id="linearGradient5176" + x1="-7.5400991" + y1="0.79740471" + x2="-7.5400991" + y2="4.7783289" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.197802" + inkscape:cx="8.5405941" + inkscape:cy="8.0965274" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="872" + inkscape:window-height="625" + inkscape:window-x="47" + inkscape:window-y="150" /> + <metadata + id="metadata4225"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <rect + style="opacity:1;fill:#fce94f;fill-opacity:1;stroke:#c4a000;stroke-width:0.52907252;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4238" + width="5.7297029" + height="6.3509903" + x="-6" + y="6" + transform="matrix(2.268879,0,0,1.574557,15.11327,-3.947338)" + rx="0.44198585" + ry="0.60082906" /> + <rect + style="opacity:1;fill:url(#linearGradient5166);fill-opacity:1.0;stroke:url(#linearGradient5133);stroke-width:0.50402278;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5125" + width="5.6391087" + height="2.9732673" + x="-11" + y="10.458911" + transform="matrix(1.950662,0,0,2.017983,23.95729,-12.6059)" /> + <rect + style="opacity:0.56331877;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5156" + width="5.1252475" + height="2.6569307" + x="-14" + y="6" + transform="matrix(2.34135,0,0,0.752748,34.7789,1.48351)" /> + <path + transform="translate(15,0)" + style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M -9.4188119,0.5 C -10.500938,0.5 -11.5,1.4812151 -11.5,2.4460396 L -11.5,7.5 L -9.5,7.5 L -9.4549505,4.0089109 C -9.4549505,2.4726571 -9.4588865,2.5 -8.1034653,2.5 L -5.9866337,2.5 C -4.4993176,2.5 -4.5,2.5177763 -4.5,4.0539604 L -4.5,7.5 L -2.5,7.5 L -2.5,2.4910891 C -2.5,1.6080661 -3.5388679,0.54504951 -4.4460396,0.54504951 L -9.4188119,0.5 z " + id="path5168" + sodipodi:nodetypes="ccccccccccccc" /> + <path + transform="translate(15,0)" + style="fill:url(#linearGradient5176);fill-opacity:1.0;stroke:#888a85;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M -9.4188119,0.5 C -10.500938,0.5 -11.5,1.4812151 -11.5,2.4460396 L -11.5,6.4638614 C -11.5,7.8729886 -9.5,7.6557806 -9.5,6.5089109 L -9.4549505,4.0089109 C -9.4549505,2.4726571 -9.4588865,2.5 -8.1034653,2.5 L -5.9866337,2.5 C -4.4993176,2.5 -4.5,2.5177763 -4.5,4.0539604 L -4.5,6.5539604 C -4.5450495,7.8163699 -2.5,7.594009 -2.5,6.5539604 L -2.5,2.4910891 C -2.5,1.6080661 -3.5388679,0.54504951 -4.4460396,0.54504951 L -9.4188119,0.5 z " + id="rect5149" + sodipodi:nodetypes="ccccccccccccc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/unavailable.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,125 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" + sodipodi:docname="unavailable.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/external.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2259"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop2261" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop2263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2259" + id="linearGradient2265" + x1="8.046875" + y1="6.5309725" + x2="8.046875" + y2="11.646569" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="36.388907" + inkscape:cx="11.666301" + inkscape:cy="7.6639631" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fcaf3e" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2200" + width="0" + height="1" + x="13" + y="4" /> + <path + style="fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" + d="M 8.0118188,2.0086319 L 15.132139,14.503373 L 0.87261571,14.491555 L 8.0118188,2.0086319 z " + id="rect2203" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0233446" + inkscape:original="M 8 2 L 0.875 14.5 L 15.125 14.5 L 8 2 z " + xlink:href="#rect2203" + style="fill:url(#linearGradient2265);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1;opacity:0.5" + id="path2249" + inkscape:href="#rect2203" + d="M 8,5.21875 L 3.59375,13.4375 L 12.4375,13.46875 L 8,5.21875 z " /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2245" + sodipodi:cx="7.9910712" + sodipodi:cy="11.647322" + sodipodi:rx="0.55803573" + sodipodi:ry="0.625" + d="M 8.549107 11.647322 A 0.55803573 0.625 0 1 1 7.4330355,11.647322 A 0.55803573 0.625 0 1 1 8.549107 11.647322 z" + transform="matrix(1.791998,0,0,1.6,-6.319984,-6.635714)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2247" + sodipodi:cx="8.046875" + sodipodi:cy="7.8526788" + sodipodi:rx="0.81473213" + sodipodi:ry="2.3214285" + d="M 8.8616071 7.8526788 A 0.81473213 2.3214285 0 1 1 7.2321429,7.8526788 A 0.81473213 2.3214285 0 1 1 8.8616071 7.8526788 z" + transform="matrix(1.227398,0,0,0.861538,-1.876721,1.23462)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/video.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,199 @@ +<?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" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" + sodipodi:docname="video.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/video.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="51.461686" + inkscape:cx="12.06418" + inkscape:cy="5.7904142" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fcaf3e" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2200" + width="1" + height="14" + x="13" + y="1" /> + <rect + style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2202" + width="1" + height="14" + x="3" + y="1" /> + <rect + style="opacity:1;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2204" + width="9" + height="14" + x="4" + y="1" /> + <rect + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2206" + width="4.0010238" + height="3.0023892" + x="6.4994845" + y="1.4988047" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2212" + width="1" + height="1" + x="4" + y="2" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2214" + width="1" + height="1" + x="4" + y="4" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2216" + width="1" + height="1" + x="4" + y="6" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2218" + width="1" + height="1" + x="4" + y="8" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2220" + width="1" + height="1" + x="4" + y="10" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2222" + width="1" + height="1" + x="4" + y="12" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2224" + width="1" + height="1" + x="4" + y="14" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2226" + width="1" + height="1" + x="12" + y="2" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2228" + width="1" + height="1" + x="12" + y="4" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2230" + width="1" + height="1" + x="12" + y="6" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2232" + width="1" + height="1" + x="12" + y="8" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2234" + width="1" + height="1" + x="12" + y="10" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2236" + width="1" + height="1" + x="12" + y="12" /> + <rect + style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2238" + width="1" + height="1" + x="12" + y="14" /> + <rect + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2247" + width="4.0006118" + height="3.009582" + x="6.4999485" + y="6.5" /> + <rect + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2249" + width="4.0006118" + height="3.0014915" + x="6.499949" + y="11.498656" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emblems/scalable/voice.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,163 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems" + sodipodi:docname="voice.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/unavailable.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3300" + id="linearGradient3353" + x1="-25.208164" + y1="22.436846" + x2="-16.394892" + y2="18.959713" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3335"> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="0" + id="stop3337" /> + <stop + style="stop-color:#204a87;stop-opacity:0;" + offset="1" + id="stop3339" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3335" + id="linearGradient3341" + x1="-25.494905" + y1="21.102697" + x2="-19.2363" + y2="18.633484" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3300"> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="0" + id="stop3302" /> + <stop + style="stop-color:#204a87;stop-opacity:0;" + offset="1" + id="stop3304" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3300" + id="linearGradient3315" + gradientUnits="userSpaceOnUse" + x1="0.62497759" + y1="11.454797" + x2="5.6395993" + y2="11.454797" + gradientTransform="matrix(-0.759076,0,0,0.886801,13.87483,-2.157027)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="18.194454" + inkscape:cx="13.592043" + inkscape:cy="6.9257794" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#729fcf" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2200" + width="0" + height="1" + x="13" + y="4" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.64040256;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2267" + sodipodi:cx="3.3114488" + sodipodi:cy="8.5114546" + sodipodi:rx="1.0305338" + sodipodi:ry="0.89312935" + d="M 4.3419826 8.5114546 A 1.0305338 0.89312935 0 1 1 2.280915,8.5114546 A 1.0305338 0.89312935 0 1 1 4.3419826 8.5114546 z" + transform="matrix(1.453916,0,0,1.677081,-1.816259,-6.276549)" /> + <path + sodipodi:type="spiral" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3353);stroke-width:3.82398129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path3252" + sodipodi:cx="-11" + sodipodi:cy="17" + sodipodi:expansion="1" + sodipodi:revolution="1.1139722" + sodipodi:radius="17.723295" + sodipodi:argument="-9.424778" + sodipodi:t0="0.70807511" + d="M -14.027341,29.178804 C -22.234168,28.813068 -27.756867,20.82956 -27.038836,13.013154 C -26.789036,10.293863 -25.851755,7.6562253 -24.369854,5.3654734" + transform="matrix(-0.236541,9.86989e-2,9.332284e-2,0.250166,-0.538748,5.57923)" /> + <path + sodipodi:type="spiral" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3341);stroke-width:2.61211109px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path3254" + sodipodi:cx="-11" + sodipodi:cy="17" + sodipodi:expansion="1" + sodipodi:revolution="1.1157676" + sodipodi:radius="17.751867" + sodipodi:argument="-9.424778" + sodipodi:t0="0.69832003" + d="M -13.258788,29.188958 C -21.390692,29.337435 -27.331334,21.779752 -27.099873,14.016463 C -27.00639,10.881001 -25.990716,7.8068052 -24.259099,5.1963947" + transform="matrix(-0.326904,0.153056,0.128975,0.387943,-0.598939,4.203466)" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3315);stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 9.5000758,15.498835 C 12.836002,14.200334 14.245965,9.2752932 13.115727,5.2955524 C 12.546899,3.2926232 11.411038,1.5970337 9.9781738,0.50337707" + id="path3256" + sodipodi:nodetypes="csc" /> + </g> +</svg>
--- a/pidgin/pixmaps/icons/hicolor/48x48/apps/scalable/pidgin.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,610 +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="48px" - height="48px" - id="svg4345" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/2.0.2/pidgin/pixmaps/icons/48/scalable" - sodipodi:docname="pidgin.svg" - inkscape:export-filename="/home/hbons/Desktop/pidgin48.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4347"> - <linearGradient - id="linearGradient8744" - inkscape:collect="always"> - <stop - id="stop8746" - offset="0" - style="stop-color:#7a1d90;stop-opacity:1" /> - <stop - id="stop8748" - offset="1" - style="stop-color:#6b3678;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8732"> - <stop - style="stop-color:#6b3678;stop-opacity:1;" - offset="0" - id="stop8734" /> - <stop - style="stop-color:#6b3678;stop-opacity:0;" - offset="1" - id="stop8736" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8904"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop8906" /> - <stop - style="stop-color:#25486d;stop-opacity:1" - offset="1" - id="stop8908" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8884"> - <stop - style="stop-color:#9a5ba8;stop-opacity:1;" - offset="0" - id="stop8886" /> - <stop - style="stop-color:#6b3e75;stop-opacity:1" - offset="1" - id="stop8888" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8876"> - <stop - style="stop-color:#9a5ba8;stop-opacity:1;" - offset="0" - id="stop8878" /> - <stop - style="stop-color:#744380;stop-opacity:1" - offset="1" - id="stop8880" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8868"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop8870" /> - <stop - style="stop-color:#a646b7;stop-opacity:1" - offset="1" - id="stop8872" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8860"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop8862" /> - <stop - style="stop-color:#a949b9;stop-opacity:1" - offset="1" - id="stop8864" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8848"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop8850" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop8852" /> - </linearGradient> - <linearGradient - id="linearGradient8820" - inkscape:collect="always"> - <stop - id="stop8822" - offset="0" - style="stop-color:#522400;stop-opacity:1" /> - <stop - id="stop8824" - offset="1" - style="stop-color:#6e3100;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8808"> - <stop - style="stop-color:#6e3100;stop-opacity:1;" - offset="0" - id="stop8810" /> - <stop - style="stop-color:#6e3100;stop-opacity:0;" - offset="1" - id="stop8812" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8686"> - <stop - style="stop-color:#fdb751;stop-opacity:1" - offset="0" - id="stop8688" /> - <stop - style="stop-color:#ce5c00;stop-opacity:1" - offset="1" - id="stop8690" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2834"> - <stop - style="stop-color:#7e408d;stop-opacity:1" - offset="0" - id="stop2836" /> - <stop - style="stop-color:#82508e;stop-opacity:0;" - offset="1" - id="stop2838" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2826"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop2828" /> - <stop - style="stop-color:#3b1941;stop-opacity:0;" - offset="1" - id="stop2830" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2816"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop2818" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop2820" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6537"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop6539" /> - <stop - style="stop-color:#d3e1f1;stop-opacity:1" - offset="1" - id="stop6541" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6506"> - <stop - style="stop-color:#ffffff;stop-opacity:0.95477384" - offset="0" - id="stop6508" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop6510" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6506" - id="linearGradient6512" - x1="15.645709" - y1="40.668503" - x2="15.645709" - y2="47.022106" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.988192,1.5624997,-2.39645)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2816" - id="radialGradient2824" - cx="14.930223" - cy="25.801632" - fx="14.930223" - fy="25.801632" - r="16.390338" - gradientTransform="matrix(1.3364897,0,0,1.3894845,-0.759152,-10.711989)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2826" - id="linearGradient2832" - x1="13.191773" - y1="41.606163" - x2="13.191773" - y2="49.067719" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2834" - id="linearGradient2840" - x1="11.373499" - y1="43.444576" - x2="11.373499" - y2="47.757988" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8686" - id="linearGradient8692" - x1="18.5" - y1="29.911009" - x2="19.985121" - y2="29.853554" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)" /> - <filter - inkscape:collect="always" - id="filter8730"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.27197245" - id="feGaussianBlur8732" /> - </filter> - <filter - inkscape:collect="always" - id="filter8792" - x="-0.095301818" - width="1.1906036" - y="-0.27704017" - height="1.5540803"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.31022727" - id="feGaussianBlur8794" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8820" - id="linearGradient8814" - x1="18.339697" - y1="29.338558" - x2="18.031723" - y2="30.431053" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8808" - id="linearGradient8818" - gradientUnits="userSpaceOnUse" - x1="17.969458" - y1="29.494703" - x2="18.143806" - y2="30.188351" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8848" - id="linearGradient8854" - x1="10.48653" - y1="25.21174" - x2="9.7512932" - y2="23.675837" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8848" - id="linearGradient8858" - gradientUnits="userSpaceOnUse" - x1="10.498732" - y1="24.936121" - x2="9.6415968" - y2="23.675837" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8860" - id="linearGradient8866" - x1="13.061977" - y1="10.027351" - x2="16.545418" - y2="12.891665" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.50247,0,0,1,-6.5946403,-2.139701)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8868" - id="linearGradient8874" - x1="12.409452" - y1="10.602999" - x2="16.140554" - y2="13.895189" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.236264,0,0,0.549587,-5.4828863,3.775206)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8876" - id="linearGradient8882" - x1="10.46875" - y1="25.3125" - x2="9.53125" - y2="19.6875" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8884" - id="linearGradient8890" - x1="23.881994" - y1="24.343237" - x2="24.973602" - y2="19.216713" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8904" - id="linearGradient8910" - x1="26.125" - y1="1.8037834" - x2="41.875" - y2="33.678783" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8744" - id="linearGradient8738" - x1="4.0852318" - y1="39.097038" - x2="4.0852318" - y2="44.321774" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8732" - id="linearGradient8742" - gradientUnits="userSpaceOnUse" - x1="4.0852318" - y1="40.416641" - x2="4.0852318" - y2="43.352409" - gradientTransform="matrix(-1,0,0,1,37.022732,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6537" - id="linearGradient7977" - gradientUnits="userSpaceOnUse" - x1="30.5" - y1="4.8871226" - x2="30.5" - y2="22.781603" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.828427" - inkscape:cx="63.722923" - inkscape:cy="33.120105" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1434" - inkscape:window-height="840" - inkscape:window-x="-2" - inkscape:window-y="0" - showguides="true" - inkscape:guide-bbox="true" - inkscape:grid-points="true" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10"> - <inkscape:grid - type="xygrid" - id="grid7914" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata4350"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8910);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 20.53125,1.5 C 17.192693,1.5 14.5,4.611235 14.5,8.46875 L 14.5,20.53125 C 14.5,24.388765 17.192693,27.5 20.53125,27.5 L 34.530203,27.5 C 34.530203,27.5 34.406442,30.680041 32.92887,32.534344 C 38.120414,32.534344 39.353553,27.485509 39.353553,27.485509 L 41.5,27.5 C 45.512737,27.5 46.5,24.38319 46.5,20.53125 L 46.5,8.46875 C 46.5,4.6112353 43.807307,1.5 40.46875,1.5 L 20.53125,1.5 z" - id="rect5498" - sodipodi:nodetypes="cccccccccccc" /> - <path - style="fill:url(#linearGradient7977);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 20.53125,2.5 C 17.815701,2.5 15.5,5.0778932 15.5,8.46875 L 15.5,20.53125 C 15.5,23.922107 17.815701,26.5 20.53125,26.5 L 34.53125,26.5 C 35.082875,26.501589 35.529661,26.948375 35.53125,27.5 C 35.53125,27.5 35.367799,30.212738 34.75,31.34218 C 36.852551,31.34218 38.53125,26.6875 38.53125,26.6875 C 38.704261,26.563588 38.912203,26.497922 39.125,26.5 L 41.5,26.5 C 43.246736,26.5 44.065452,25.932701 44.65625,24.9375 C 45.247048,23.942299 45.5,22.371547 45.5,20.53125 L 45.5,8.46875 C 45.5,5.0778935 43.184299,2.5 40.46875,2.5 L 20.53125,2.5 z" - id="path6535" - sodipodi:nodetypes="ccccccccccscccc" /> - <rect - style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect8734" - width="7" - height="1.8602936" - x="15.642976" - y="26.409245" - rx="0.81387848" - ry="0.93014681" /> - <path - style="fill:url(#linearGradient8866);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 10.968089,7.6821669 C 13.825874,5.8764931 18.683474,9.095739 19.201853,10.751964 L 15.25649,10.751964 C 15.19399,8.408214 10.968089,7.6821669 10.968089,7.6821669 z" - id="rect5189" - sodipodi:nodetypes="cccc" /> - <path - style="fill:url(#linearGradient8874);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 8.9209727,9.9271812 C 10.543462,8.0699992 15.5336,9.5097671 15.5336,10.860297 L 11.743475,11.411821 C 12.958815,9.7987339 8.9209727,9.9271812 8.9209727,9.9271812 z" - id="path5192" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient2840);fill-opacity:1;stroke:url(#linearGradient2832);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 16.447354,10.481822 C 9.8233516,10.481822 3.9308558,15.93012 4.5098537,22.712688 C 5.7768579,37.554787 1.9403503,35.543378 1.5,42.316391 C 1.5,44.375904 2.4854201,45.355587 4.5920502,45.355587 C 5.7795388,45.355587 30.807389,45.5 33.498388,45.5 C 35.612515,45.5 35.447354,43.46472 35.447354,43.46472 C 35.447354,40.830782 29.045256,38.620654 27.260807,36.687231 C 25.432389,34.709838 27.447354,27.653648 27.447354,27.653648 C 28.08866,26.141912 28.447354,24.466812 28.447354,22.712688 C 28.447354,15.894164 23.071356,10.481822 16.447354,10.481822 z" - id="path5176" - sodipodi:nodetypes="cscccszcsc" /> - <path - style="opacity:0.55000000000000004;fill:url(#radialGradient2824);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1" - d="M 16.25,11.5 C 10.237704,11.5 5.0276636,16.611038 5.4999997,22.834065 C 6.0644244,30.27036 5.8175038,32.821583 4.0236672,37.541192 C 1.1437418,42.286379 3.1235207,44.533069 5.4658637,44.533069 C 7.4024447,44.533069 25.520621,44.503627 31.346594,44.503627 C 32.513801,44.503627 34.5,45.001748 34.5,43.554478 C 34.5,43.335354 34.300249,42.923343 33.75,42.411881 C 33.199751,41.90042 32.37676,41.351214 31.46875,40.806069 C 30.56074,40.260924 29.59071,39.709456 28.71875,39.169376 C 27.84679,38.629297 27.074154,38.125147 26.53125,37.409159 C 25.921245,36.604678 25.641306,35.658991 25.586842,34.629869 C 25.532378,33.600747 25.670221,32.49665 25.787061,31.449126 C 26.020741,29.354077 26.53125,27.527239 26.53125,27.527239 C 26.54624,27.4637 26.567163,27.401673 26.59375,27.341953 C 27.181231,25.957097 27.5,24.414481 27.5,22.802446 C 27.5,16.531779 22.272436,11.5 16.25,11.5 z" - id="path5241" - sodipodi:nodetypes="cscccssssssscssc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0174263" - inkscape:original="M 9.96875 19 C 8.022221 19 6.9374998 21.081214 6.9375 23 C 6.9375 25.208 8.5222219 27 10.46875 27 C 11.889191 27 14 25.489251 14 23.28125 C 14 21.536852 11.915281 19 9.96875 19 z " - style="opacity:1;fill:url(#linearGradient8882);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path8838" - d="M 9.96875,17.96875 C 8.6328774,17.96875 7.5286409,18.753017 6.875,19.71875 C 6.2213591,20.684483 5.9062499,21.848884 5.90625,23 C 5.90625,25.694817 7.8977844,28.03125 10.46875,28.03125 C 11.539674,28.03125 12.596335,27.527372 13.46875,26.71875 C 14.341165,25.910128 15.03125,24.709464 15.03125,23.28125 C 15.03125,22.003744 14.362496,20.808851 13.46875,19.8125 C 12.575004,18.816149 11.384009,17.96875 9.96875,17.96875 z" - transform="translate(1.09375,-0.96875)" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 15.09375,22.321339 C 15.09375,24.52934 12.987869,26.03125 11.567428,26.03125 C 9.6208995,26.03125 8.0411075,24.239249 8.0411075,22.031249 C 8.0411075,20.112462 9.1240375,18.03125 11.070566,18.03125 C 13.017097,18.03125 15.09375,20.576941 15.09375,22.321339 z" - id="path5157" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5162" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(1.237779,0,0,1.544828,-1.0301916,-15.38768)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient8854);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5164" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.4028775,0,0,0.772414,7.4966298,3.2519345)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0250763" - inkscape:original="M 24.71875 19 C 23.921039 19.030682 23.197708 19.355158 22.78125 19.8125 C 21.639847 21.065961 21.758036 23.254972 23.0625 24.6875 C 24.196099 25.932389 26.077347 26.565958 27.21875 25.3125 C 28.360153 24.05904 28.061824 21.069247 27.03125 19.9375 C 26.379019 19.221236 25.516461 18.969318 24.71875 19 z " - style="opacity:1;fill:url(#linearGradient8890);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path8846" - d="M 24.6875,17.96875 C 23.636213,18.009185 22.683031,18.409233 22.03125,19.125 C 20.466122,20.843786 20.678782,23.580894 22.3125,25.375 C 23.011072,26.142154 23.917332,26.724837 24.9375,26.9375 C 25.957668,27.150163 27.151401,26.89759 27.96875,26 C 28.842555,25.04041 29.039766,23.753975 28.96875,22.53125 C 28.897734,21.308525 28.565932,20.111716 27.78125,19.25 C 26.906665,18.289553 25.728905,17.928695 24.6875,17.96875 z" - transform="translate(1.0348213,-0.9657729)" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 28.07086,18.984912 C 26.766398,17.552385 24.644242,17.934034 23.811326,18.848719 C 22.669923,20.102179 22.802261,22.282108 24.106725,23.714636 C 25.240323,24.959524 27.104889,25.612445 28.246292,24.358987 C 29.387696,23.105527 29.101434,20.116659 28.07086,18.984912 z" - id="path5169" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5171" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(1.208632,0,0,1.598777,13.243467,-16.766194)" /> - <path - transform="matrix(0.9902622,0,0,1.0468412,0.6803699,-1.6322179)" - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8730)" - d="M 19.0625,25.21875 C 18.601377,25.21875 18.273569,25.504007 18.09375,25.71875 C 17.913931,25.933493 17.816385,26.151947 17.6875,26.375 C 17.42973,26.821106 17.161718,27.281061 16.8125,27.625 C 16.463282,27.968939 15.753081,28.431077 15.090677,28.457564 C 13.768981,28.152971 12.567412,27.574567 11.44337,27.388802 C 11.190855,27.626888 11.124903,28.002654 11.28125,28.3125 C 12.447615,30.480389 13.704893,31.652553 16.158709,32.98462 C 17.36658,33.640319 19.551532,34.28873 20.662703,34.736506 C 22.03071,33.835346 25.543472,30.338576 25.75,28.125 C 25.844084,27.808258 25.729503,27.466527 25.463497,27.270522 C 24.478872,27.816677 23.360045,28.165794 22.250307,28.426314 C 21.786763,28.408951 21.509989,27.99255 21.21875,27.65625 C 20.927511,27.31995 20.680079,26.828945 20.4375,26.375 C 20.31621,26.148027 20.208768,25.937142 20.03125,25.71875 C 19.853732,25.500358 19.525474,25.21875 19.0625,25.21875 z" - id="path8696" - sodipodi:nodetypes="cssscccsccccsssc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.36336106" - inkscape:original="M 15.8125 27 C 15.361611 27 15 27.422198 15 27.9375 C 15 28.452801 15.361612 28.874999 15.8125 28.875 L 21.1875 28.875 C 21.638389 28.875 22 28.452801 22 27.9375 C 22 27.422199 21.638389 27 21.1875 27 L 15.8125 27 z " - style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8792)" - id="path8738" - d="M 15.8125,26.625 C 15.134785,26.625 14.625,27.252207 14.625,27.9375 C 14.625,28.622793 15.134785,29.249998 15.8125,29.25 L 21.1875,29.25 C 21.865216,29.25 22.375,28.622793 22.375,27.9375 C 22.375,27.252207 21.865216,26.625 21.1875,26.625 L 15.8125,26.625 z" - transform="translate(1.0492259,-0.5907729)" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect5215" - width="7" - height="1.8602936" - x="16.017977" - y="26.173933" - rx="0.81387848" - ry="0.93014681" /> - <path - style="fill:url(#linearGradient8692);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1" - d="M 12.017976,27.284466 C 18.332186,30.947891 18.535242,25.034227 19.622035,25.034227 C 20.693875,25.034227 20.889384,30.946219 26.017976,27.230273 C 25.73271,30.311439 22.068246,33.065477 21.020058,34.065477 C 18.988153,32.971727 14.03875,31.7541 12.017976,27.284466 z" - id="rect5187" - sodipodi:nodetypes="czccc" /> - <path - sodipodi:type="arc" - style="opacity:0.61111109;fill:url(#linearGradient8814);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="path8806" - sodipodi:cx="18.097515" - sodipodi:cy="29.72571" - sodipodi:rx="0.28726214" - sodipodi:ry="0.6408155" - d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z" - transform="matrix(-1.0945752,0.9356227,0.6067766,1.5209514,23.290203,-33.120817)" /> - <path - sodipodi:type="arc" - style="opacity:0.61111109;fill:url(#linearGradient8818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="path8816" - sodipodi:cx="18.097515" - sodipodi:cy="29.72571" - sodipodi:rx="0.28726214" - sodipodi:ry="0.6408155" - d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z" - transform="matrix(1.0945741,0.9356227,-0.606776,1.5209514,16.745752,-33.098342)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient8858);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path8856" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.4028775,0,0,0.772414,21.437701,3.254912)" /> - <path - style="opacity:0.61111108999999997;fill:url(#linearGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 3.375,44.9375 C 1.75,44.5625 1.125,41.0625 4.1875,35.75 C 5.3980639,40.757973 11,44.375 11,44.375 L 3.375,44.9375 z" - id="rect7959" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:0.61111108999999997;fill:url(#linearGradient8742);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 33.647731,44.9375 C 35.272732,44.5625 36.772732,42.5625 28.772731,38.5625 C 29.124668,42.695473 26.022731,44.375 26.022731,44.375 L 33.647731,44.9375 z" - id="path8740" - sodipodi:nodetypes="cccc" /> - </g> -</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/icons/hicolor/scalable/apps/pidgin.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,610 @@ +<?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="48px" + height="48px" + id="svg4345" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop/2.0.2/pidgin/pixmaps/icons/48/scalable" + sodipodi:docname="pidgin.svg" + inkscape:export-filename="/home/hbons/Desktop/pidgin48.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4347"> + <linearGradient + id="linearGradient8744" + inkscape:collect="always"> + <stop + id="stop8746" + offset="0" + style="stop-color:#7a1d90;stop-opacity:1" /> + <stop + id="stop8748" + offset="1" + style="stop-color:#6b3678;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8732"> + <stop + style="stop-color:#6b3678;stop-opacity:1;" + offset="0" + id="stop8734" /> + <stop + style="stop-color:#6b3678;stop-opacity:0;" + offset="1" + id="stop8736" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8904"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop8906" /> + <stop + style="stop-color:#25486d;stop-opacity:1" + offset="1" + id="stop8908" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8884"> + <stop + style="stop-color:#9a5ba8;stop-opacity:1;" + offset="0" + id="stop8886" /> + <stop + style="stop-color:#6b3e75;stop-opacity:1" + offset="1" + id="stop8888" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8876"> + <stop + style="stop-color:#9a5ba8;stop-opacity:1;" + offset="0" + id="stop8878" /> + <stop + style="stop-color:#744380;stop-opacity:1" + offset="1" + id="stop8880" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8868"> + <stop + style="stop-color:#3b1941;stop-opacity:1;" + offset="0" + id="stop8870" /> + <stop + style="stop-color:#a646b7;stop-opacity:1" + offset="1" + id="stop8872" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8860"> + <stop + style="stop-color:#3b1941;stop-opacity:1;" + offset="0" + id="stop8862" /> + <stop + style="stop-color:#a949b9;stop-opacity:1" + offset="1" + id="stop8864" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8848"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop8850" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop8852" /> + </linearGradient> + <linearGradient + id="linearGradient8820" + inkscape:collect="always"> + <stop + id="stop8822" + offset="0" + style="stop-color:#522400;stop-opacity:1" /> + <stop + id="stop8824" + offset="1" + style="stop-color:#6e3100;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8808"> + <stop + style="stop-color:#6e3100;stop-opacity:1;" + offset="0" + id="stop8810" /> + <stop + style="stop-color:#6e3100;stop-opacity:0;" + offset="1" + id="stop8812" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8686"> + <stop + style="stop-color:#fdb751;stop-opacity:1" + offset="0" + id="stop8688" /> + <stop + style="stop-color:#ce5c00;stop-opacity:1" + offset="1" + id="stop8690" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2834"> + <stop + style="stop-color:#7e408d;stop-opacity:1" + offset="0" + id="stop2836" /> + <stop + style="stop-color:#82508e;stop-opacity:0;" + offset="1" + id="stop2838" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2826"> + <stop + style="stop-color:#3b1941;stop-opacity:1;" + offset="0" + id="stop2828" /> + <stop + style="stop-color:#3b1941;stop-opacity:0;" + offset="1" + id="stop2830" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2816"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop2818" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop2820" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6537"> + <stop + style="stop-color:white;stop-opacity:1;" + offset="0" + id="stop6539" /> + <stop + style="stop-color:#d3e1f1;stop-opacity:1" + offset="1" + id="stop6541" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6506"> + <stop + style="stop-color:#ffffff;stop-opacity:0.95477384" + offset="0" + id="stop6508" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop6510" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6506" + id="linearGradient6512" + x1="15.645709" + y1="40.668503" + x2="15.645709" + y2="47.022106" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.988192,1.5624997,-2.39645)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2816" + id="radialGradient2824" + cx="14.930223" + cy="25.801632" + fx="14.930223" + fy="25.801632" + r="16.390338" + gradientTransform="matrix(1.3364897,0,0,1.3894845,-0.759152,-10.711989)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2826" + id="linearGradient2832" + x1="13.191773" + y1="41.606163" + x2="13.191773" + y2="49.067719" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2834" + id="linearGradient2840" + x1="11.373499" + y1="43.444576" + x2="11.373499" + y2="47.757988" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8686" + id="linearGradient8692" + x1="18.5" + y1="29.911009" + x2="19.985121" + y2="29.853554" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)" /> + <filter + inkscape:collect="always" + id="filter8730"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.27197245" + id="feGaussianBlur8732" /> + </filter> + <filter + inkscape:collect="always" + id="filter8792" + x="-0.095301818" + width="1.1906036" + y="-0.27704017" + height="1.5540803"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.31022727" + id="feGaussianBlur8794" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8820" + id="linearGradient8814" + x1="18.339697" + y1="29.338558" + x2="18.031723" + y2="30.431053" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8808" + id="linearGradient8818" + gradientUnits="userSpaceOnUse" + x1="17.969458" + y1="29.494703" + x2="18.143806" + y2="30.188351" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8848" + id="linearGradient8854" + x1="10.48653" + y1="25.21174" + x2="9.7512932" + y2="23.675837" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8848" + id="linearGradient8858" + gradientUnits="userSpaceOnUse" + x1="10.498732" + y1="24.936121" + x2="9.6415968" + y2="23.675837" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8860" + id="linearGradient8866" + x1="13.061977" + y1="10.027351" + x2="16.545418" + y2="12.891665" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.50247,0,0,1,-6.5946403,-2.139701)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8868" + id="linearGradient8874" + x1="12.409452" + y1="10.602999" + x2="16.140554" + y2="13.895189" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.236264,0,0,0.549587,-5.4828863,3.775206)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8876" + id="linearGradient8882" + x1="10.46875" + y1="25.3125" + x2="9.53125" + y2="19.6875" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8884" + id="linearGradient8890" + x1="23.881994" + y1="24.343237" + x2="24.973602" + y2="19.216713" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8904" + id="linearGradient8910" + x1="26.125" + y1="1.8037834" + x2="41.875" + y2="33.678783" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8744" + id="linearGradient8738" + x1="4.0852318" + y1="39.097038" + x2="4.0852318" + y2="44.321774" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8732" + id="linearGradient8742" + gradientUnits="userSpaceOnUse" + x1="4.0852318" + y1="40.416641" + x2="4.0852318" + y2="43.352409" + gradientTransform="matrix(-1,0,0,1,37.022732,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6537" + id="linearGradient7977" + gradientUnits="userSpaceOnUse" + x1="30.5" + y1="4.8871226" + x2="30.5" + y2="22.781603" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.828427" + inkscape:cx="63.722923" + inkscape:cy="33.120105" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="1434" + inkscape:window-height="840" + inkscape:window-x="-2" + inkscape:window-y="0" + showguides="true" + inkscape:guide-bbox="true" + inkscape:grid-points="true" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10"> + <inkscape:grid + type="xygrid" + id="grid7914" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata4350"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8910);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 20.53125,1.5 C 17.192693,1.5 14.5,4.611235 14.5,8.46875 L 14.5,20.53125 C 14.5,24.388765 17.192693,27.5 20.53125,27.5 L 34.530203,27.5 C 34.530203,27.5 34.406442,30.680041 32.92887,32.534344 C 38.120414,32.534344 39.353553,27.485509 39.353553,27.485509 L 41.5,27.5 C 45.512737,27.5 46.5,24.38319 46.5,20.53125 L 46.5,8.46875 C 46.5,4.6112353 43.807307,1.5 40.46875,1.5 L 20.53125,1.5 z" + id="rect5498" + sodipodi:nodetypes="cccccccccccc" /> + <path + style="fill:url(#linearGradient7977);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 20.53125,2.5 C 17.815701,2.5 15.5,5.0778932 15.5,8.46875 L 15.5,20.53125 C 15.5,23.922107 17.815701,26.5 20.53125,26.5 L 34.53125,26.5 C 35.082875,26.501589 35.529661,26.948375 35.53125,27.5 C 35.53125,27.5 35.367799,30.212738 34.75,31.34218 C 36.852551,31.34218 38.53125,26.6875 38.53125,26.6875 C 38.704261,26.563588 38.912203,26.497922 39.125,26.5 L 41.5,26.5 C 43.246736,26.5 44.065452,25.932701 44.65625,24.9375 C 45.247048,23.942299 45.5,22.371547 45.5,20.53125 L 45.5,8.46875 C 45.5,5.0778935 43.184299,2.5 40.46875,2.5 L 20.53125,2.5 z" + id="path6535" + sodipodi:nodetypes="ccccccccccscccc" /> + <rect + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect8734" + width="7" + height="1.8602936" + x="15.642976" + y="26.409245" + rx="0.81387848" + ry="0.93014681" /> + <path + style="fill:url(#linearGradient8866);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 10.968089,7.6821669 C 13.825874,5.8764931 18.683474,9.095739 19.201853,10.751964 L 15.25649,10.751964 C 15.19399,8.408214 10.968089,7.6821669 10.968089,7.6821669 z" + id="rect5189" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient8874);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 8.9209727,9.9271812 C 10.543462,8.0699992 15.5336,9.5097671 15.5336,10.860297 L 11.743475,11.411821 C 12.958815,9.7987339 8.9209727,9.9271812 8.9209727,9.9271812 z" + id="path5192" + sodipodi:nodetypes="cccc" /> + <path + style="opacity:1;fill:url(#linearGradient2840);fill-opacity:1;stroke:url(#linearGradient2832);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 16.447354,10.481822 C 9.8233516,10.481822 3.9308558,15.93012 4.5098537,22.712688 C 5.7768579,37.554787 1.9403503,35.543378 1.5,42.316391 C 1.5,44.375904 2.4854201,45.355587 4.5920502,45.355587 C 5.7795388,45.355587 30.807389,45.5 33.498388,45.5 C 35.612515,45.5 35.447354,43.46472 35.447354,43.46472 C 35.447354,40.830782 29.045256,38.620654 27.260807,36.687231 C 25.432389,34.709838 27.447354,27.653648 27.447354,27.653648 C 28.08866,26.141912 28.447354,24.466812 28.447354,22.712688 C 28.447354,15.894164 23.071356,10.481822 16.447354,10.481822 z" + id="path5176" + sodipodi:nodetypes="cscccszcsc" /> + <path + style="opacity:0.55000000000000004;fill:url(#radialGradient2824);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1" + d="M 16.25,11.5 C 10.237704,11.5 5.0276636,16.611038 5.4999997,22.834065 C 6.0644244,30.27036 5.8175038,32.821583 4.0236672,37.541192 C 1.1437418,42.286379 3.1235207,44.533069 5.4658637,44.533069 C 7.4024447,44.533069 25.520621,44.503627 31.346594,44.503627 C 32.513801,44.503627 34.5,45.001748 34.5,43.554478 C 34.5,43.335354 34.300249,42.923343 33.75,42.411881 C 33.199751,41.90042 32.37676,41.351214 31.46875,40.806069 C 30.56074,40.260924 29.59071,39.709456 28.71875,39.169376 C 27.84679,38.629297 27.074154,38.125147 26.53125,37.409159 C 25.921245,36.604678 25.641306,35.658991 25.586842,34.629869 C 25.532378,33.600747 25.670221,32.49665 25.787061,31.449126 C 26.020741,29.354077 26.53125,27.527239 26.53125,27.527239 C 26.54624,27.4637 26.567163,27.401673 26.59375,27.341953 C 27.181231,25.957097 27.5,24.414481 27.5,22.802446 C 27.5,16.531779 22.272436,11.5 16.25,11.5 z" + id="path5241" + sodipodi:nodetypes="cscccssssssscssc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="1.0174263" + inkscape:original="M 9.96875 19 C 8.022221 19 6.9374998 21.081214 6.9375 23 C 6.9375 25.208 8.5222219 27 10.46875 27 C 11.889191 27 14 25.489251 14 23.28125 C 14 21.536852 11.915281 19 9.96875 19 z " + style="opacity:1;fill:url(#linearGradient8882);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + id="path8838" + d="M 9.96875,17.96875 C 8.6328774,17.96875 7.5286409,18.753017 6.875,19.71875 C 6.2213591,20.684483 5.9062499,21.848884 5.90625,23 C 5.90625,25.694817 7.8977844,28.03125 10.46875,28.03125 C 11.539674,28.03125 12.596335,27.527372 13.46875,26.71875 C 14.341165,25.910128 15.03125,24.709464 15.03125,23.28125 C 15.03125,22.003744 14.362496,20.808851 13.46875,19.8125 C 12.575004,18.816149 11.384009,17.96875 9.96875,17.96875 z" + transform="translate(1.09375,-0.96875)" /> + <path + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 15.09375,22.321339 C 15.09375,24.52934 12.987869,26.03125 11.567428,26.03125 C 9.6208995,26.03125 8.0411075,24.239249 8.0411075,22.031249 C 8.0411075,20.112462 9.1240375,18.03125 11.070566,18.03125 C 13.017097,18.03125 15.09375,20.576941 15.09375,22.321339 z" + id="path5157" + sodipodi:nodetypes="csssc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path5162" + sodipodi:cx="10.169642" + sodipodi:cy="24.3125" + sodipodi:rx="1.2410715" + sodipodi:ry="1.2946428" + d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" + transform="matrix(1.237779,0,0,1.544828,-1.0301916,-15.38768)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient8854);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path5164" + sodipodi:cx="10.169642" + sodipodi:cy="24.3125" + sodipodi:rx="1.2410715" + sodipodi:ry="1.2946428" + d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" + transform="matrix(0.4028775,0,0,0.772414,7.4966298,3.2519345)" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="1.0250763" + inkscape:original="M 24.71875 19 C 23.921039 19.030682 23.197708 19.355158 22.78125 19.8125 C 21.639847 21.065961 21.758036 23.254972 23.0625 24.6875 C 24.196099 25.932389 26.077347 26.565958 27.21875 25.3125 C 28.360153 24.05904 28.061824 21.069247 27.03125 19.9375 C 26.379019 19.221236 25.516461 18.969318 24.71875 19 z " + style="opacity:1;fill:url(#linearGradient8890);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + id="path8846" + d="M 24.6875,17.96875 C 23.636213,18.009185 22.683031,18.409233 22.03125,19.125 C 20.466122,20.843786 20.678782,23.580894 22.3125,25.375 C 23.011072,26.142154 23.917332,26.724837 24.9375,26.9375 C 25.957668,27.150163 27.151401,26.89759 27.96875,26 C 28.842555,25.04041 29.039766,23.753975 28.96875,22.53125 C 28.897734,21.308525 28.565932,20.111716 27.78125,19.25 C 26.906665,18.289553 25.728905,17.928695 24.6875,17.96875 z" + transform="translate(1.0348213,-0.9657729)" /> + <path + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 28.07086,18.984912 C 26.766398,17.552385 24.644242,17.934034 23.811326,18.848719 C 22.669923,20.102179 22.802261,22.282108 24.106725,23.714636 C 25.240323,24.959524 27.104889,25.612445 28.246292,24.358987 C 29.387696,23.105527 29.101434,20.116659 28.07086,18.984912 z" + id="path5169" + sodipodi:nodetypes="csssc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path5171" + sodipodi:cx="10.169642" + sodipodi:cy="24.3125" + sodipodi:rx="1.2410715" + sodipodi:ry="1.2946428" + d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" + transform="matrix(1.208632,0,0,1.598777,13.243467,-16.766194)" /> + <path + transform="matrix(0.9902622,0,0,1.0468412,0.6803699,-1.6322179)" + style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8730)" + d="M 19.0625,25.21875 C 18.601377,25.21875 18.273569,25.504007 18.09375,25.71875 C 17.913931,25.933493 17.816385,26.151947 17.6875,26.375 C 17.42973,26.821106 17.161718,27.281061 16.8125,27.625 C 16.463282,27.968939 15.753081,28.431077 15.090677,28.457564 C 13.768981,28.152971 12.567412,27.574567 11.44337,27.388802 C 11.190855,27.626888 11.124903,28.002654 11.28125,28.3125 C 12.447615,30.480389 13.704893,31.652553 16.158709,32.98462 C 17.36658,33.640319 19.551532,34.28873 20.662703,34.736506 C 22.03071,33.835346 25.543472,30.338576 25.75,28.125 C 25.844084,27.808258 25.729503,27.466527 25.463497,27.270522 C 24.478872,27.816677 23.360045,28.165794 22.250307,28.426314 C 21.786763,28.408951 21.509989,27.99255 21.21875,27.65625 C 20.927511,27.31995 20.680079,26.828945 20.4375,26.375 C 20.31621,26.148027 20.208768,25.937142 20.03125,25.71875 C 19.853732,25.500358 19.525474,25.21875 19.0625,25.21875 z" + id="path8696" + sodipodi:nodetypes="cssscccsccccsssc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.36336106" + inkscape:original="M 15.8125 27 C 15.361611 27 15 27.422198 15 27.9375 C 15 28.452801 15.361612 28.874999 15.8125 28.875 L 21.1875 28.875 C 21.638389 28.875 22 28.452801 22 27.9375 C 22 27.422199 21.638389 27 21.1875 27 L 15.8125 27 z " + style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8792)" + id="path8738" + d="M 15.8125,26.625 C 15.134785,26.625 14.625,27.252207 14.625,27.9375 C 14.625,28.622793 15.134785,29.249998 15.8125,29.25 L 21.1875,29.25 C 21.865216,29.25 22.375,28.622793 22.375,27.9375 C 22.375,27.252207 21.865216,26.625 21.1875,26.625 L 15.8125,26.625 z" + transform="translate(1.0492259,-0.5907729)" /> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5215" + width="7" + height="1.8602936" + x="16.017977" + y="26.173933" + rx="0.81387848" + ry="0.93014681" /> + <path + style="fill:url(#linearGradient8692);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1" + d="M 12.017976,27.284466 C 18.332186,30.947891 18.535242,25.034227 19.622035,25.034227 C 20.693875,25.034227 20.889384,30.946219 26.017976,27.230273 C 25.73271,30.311439 22.068246,33.065477 21.020058,34.065477 C 18.988153,32.971727 14.03875,31.7541 12.017976,27.284466 z" + id="rect5187" + sodipodi:nodetypes="czccc" /> + <path + sodipodi:type="arc" + style="opacity:0.61111109;fill:url(#linearGradient8814);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="path8806" + sodipodi:cx="18.097515" + sodipodi:cy="29.72571" + sodipodi:rx="0.28726214" + sodipodi:ry="0.6408155" + d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z" + transform="matrix(-1.0945752,0.9356227,0.6067766,1.5209514,23.290203,-33.120817)" /> + <path + sodipodi:type="arc" + style="opacity:0.61111109;fill:url(#linearGradient8818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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="path8816" + sodipodi:cx="18.097515" + sodipodi:cy="29.72571" + sodipodi:rx="0.28726214" + sodipodi:ry="0.6408155" + d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z" + transform="matrix(1.0945741,0.9356227,-0.606776,1.5209514,16.745752,-33.098342)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient8858);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path8856" + sodipodi:cx="10.169642" + sodipodi:cy="24.3125" + sodipodi:rx="1.2410715" + sodipodi:ry="1.2946428" + d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" + transform="matrix(0.4028775,0,0,0.772414,21.437701,3.254912)" /> + <path + style="opacity:0.61111108999999997;fill:url(#linearGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 3.375,44.9375 C 1.75,44.5625 1.125,41.0625 4.1875,35.75 C 5.3980639,40.757973 11,44.375 11,44.375 L 3.375,44.9375 z" + id="rect7959" + sodipodi:nodetypes="cccc" /> + <path + style="opacity:0.61111108999999997;fill:url(#linearGradient8742);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;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 33.647731,44.9375 C 35.272732,44.5625 36.772732,42.5625 28.772731,38.5625 C 29.124668,42.695473 26.022731,44.375 26.022731,44.375 L 33.647731,44.9375 z" + id="path8740" + sodipodi:nodetypes="cccc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/logo.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,2084 @@ +<?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="330" + height="90" + id="svg4909" + sodipodi:version="0.32" + inkscape:version="0.46+devel r20974" + version="1.0" + sodipodi:docname="logo.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/home/hbons/Desktop/Pidgin VV/graphic.png" + inkscape:export-xdpi="90.002045" + inkscape:export-ydpi="90.002045"> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="336.98097" + inkscape:cy="2.5199598" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1280" + inkscape:window-height="752" + inkscape:window-x="0" + inkscape:window-y="0"> + <inkscape:grid + enabled="true" + visible="true" + empspacing="5" + id="grid3839" + type="xygrid" /> + </sodipodi:namedview> + <defs + id="defs4911"> + <inkscape:perspective + id="perspective246" + inkscape:persp3d-origin="165 : 30 : 1" + inkscape:vp_z="330 : 45 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 45 : 1" + sodipodi:type="inkscape:persp3d" /> + <filter + height="1.502086" + y="-0.25104305" + width="1.2255775" + x="-0.11278874" + id="filter4170-6" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur4172-6" + stdDeviation="0.72968781" + inkscape:collect="always" /> + </filter> + <linearGradient + y2="10.832565" + x2="3.5010808" + y1="5.5247211" + x1="8.8108797" + gradientUnits="userSpaceOnUse" + id="linearGradient6823" + xlink:href="#linearGradient4190-9" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4190-9"> + <stop + style="stop-color:#a2bfe4;stop-opacity:1" + offset="0" + id="stop4192-8" /> + <stop + style="stop-color:#396fb5;stop-opacity:1" + offset="1" + id="stop4194-7" /> + </linearGradient> + <radialGradient + r="4.5" + fy="7.1003194" + fx="9.8137703" + cy="7.1003194" + cx="9.8137703" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + gradientUnits="userSpaceOnUse" + id="radialGradient6825" + xlink:href="#linearGradient3563-4" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3563-4" + inkscape:collect="always"> + <stop + id="stop3565-3" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop3567-7" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <radialGradient + r="4.5" + fy="5.3842082" + fx="8.7242012" + cy="5.3842082" + cx="8.7242012" + gradientTransform="matrix(0.26666722,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + gradientUnits="userSpaceOnUse" + id="radialGradient6827" + xlink:href="#linearGradient3563-4" + inkscape:collect="always" /> + <linearGradient + y2="10.598598" + x2="3.4842527" + y1="5.485971" + x1="8.5987625" + gradientUnits="userSpaceOnUse" + id="linearGradient6817" + xlink:href="#linearGradient3837-9" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3837-9" + inkscape:collect="always"> + <stop + id="stop3839-1" + offset="0" + style="stop-color:#a40000;stop-opacity:1;" /> + <stop + id="stop3841-06" + offset="1" + style="stop-color:#4f0000;stop-opacity:1" /> + </linearGradient> + <radialGradient + r="4.5" + fy="7.1003194" + fx="9.8137703" + cy="7.1003194" + cx="9.8137703" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + gradientUnits="userSpaceOnUse" + id="radialGradient6819" + xlink:href="#linearGradient3563-4" + inkscape:collect="always" /> + <radialGradient + r="4.5" + fy="4.2809825" + fx="8.7327385" + cy="4.2809825" + cx="8.7327385" + gradientTransform="matrix(0.26666722,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + gradientUnits="userSpaceOnUse" + id="radialGradient6821" + xlink:href="#linearGradient3563-4" + inkscape:collect="always" /> + <linearGradient + y2="10.4171" + x2="3.4777882" + y1="5.1950126" + x1="8.7017984" + gradientUnits="userSpaceOnUse" + id="linearGradient3978-2" + xlink:href="#linearGradient3829-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3829-6" + inkscape:collect="always"> + <stop + id="stop3831-0" + offset="0" + style="stop-color:#204a87;stop-opacity:1;" /> + <stop + id="stop3833-9" + offset="1" + style="stop-color:#132f57;stop-opacity:1" /> + </linearGradient> + <radialGradient + r="4.5" + fy="7.1003194" + fx="9.8137703" + cy="7.1003194" + cx="9.8137703" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + gradientUnits="userSpaceOnUse" + id="radialGradient3980-6" + xlink:href="#linearGradient3563-4" + inkscape:collect="always" /> + <radialGradient + r="4.5" + fy="4.2809825" + fx="8.7327385" + cy="4.2809825" + cx="8.7327385" + gradientTransform="matrix(0.26666722,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + gradientUnits="userSpaceOnUse" + id="radialGradient3998-1" + xlink:href="#linearGradient3563-4" + inkscape:collect="always" /> + <linearGradient + y2="10.832565" + x2="3.5010808" + y1="5.5247211" + x1="8.8108797" + gradientUnits="userSpaceOnUse" + id="linearGradient6771" + xlink:href="#linearGradient3821-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3821-8" + inkscape:collect="always"> + <stop + id="stop3823-8" + offset="0" + style="stop-color:#4e9a06;stop-opacity:1;" /> + <stop + id="stop3825-9" + offset="1" + style="stop-color:#1e3e00;stop-opacity:1" /> + </linearGradient> + <radialGradient + r="4.5" + fy="7.1003194" + fx="9.8137703" + cy="7.1003194" + cx="9.8137703" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + gradientUnits="userSpaceOnUse" + id="radialGradient6773" + xlink:href="#linearGradient3563-4" + inkscape:collect="always" /> + <radialGradient + r="4.5" + fy="4.2809825" + fx="8.7327385" + cy="4.2809825" + cx="8.7327385" + gradientTransform="matrix(0.26666722,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + gradientUnits="userSpaceOnUse" + id="radialGradient6775" + xlink:href="#linearGradient3563-4" + inkscape:collect="always" /> + <linearGradient + y2="-52.451519" + x2="-244.26472" + y1="-75.571808" + x1="-244.26472" + gradientUnits="userSpaceOnUse" + id="linearGradient6991" + xlink:href="#linearGradient5701" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5701"> + <stop + style="stop-color:#429eff;stop-opacity:1" + offset="0" + id="stop5703" /> + <stop + style="stop-color:#7b009b;stop-opacity:0;" + offset="1" + id="stop5705" /> + </linearGradient> + <filter + height="1.1018234" + y="-0.050911687" + width="1.4916466" + x="-0.24582335" + id="filter7079" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur7081" + stdDeviation="0.78699188" + inkscape:collect="always" /> + </filter> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="-41.439236" + x2="-272.36716" + y1="-41.439236" + x1="-244.61783" + id="linearGradient6979" + xlink:href="#linearGradient6973" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6973" + inkscape:collect="always"> + <stop + id="stop6975" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop6977" + offset="1" + style="stop-color:#7b009b;stop-opacity:0;" /> + </linearGradient> + <filter + height="1.4916466" + y="-0.24582337" + width="1.1018234" + x="-0.050911687" + id="filter7075" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur7077" + stdDeviation="0.78699188" + inkscape:collect="always" /> + </filter> + <linearGradient + y2="-67.993256" + x2="-281.96188" + y1="-41.052509" + x1="-281.96188" + gradientUnits="userSpaceOnUse" + id="linearGradient6987" + xlink:href="#linearGradient5689" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5689"> + <stop + style="stop-color:#ef2929;stop-opacity:1" + offset="0" + id="stop5691" /> + <stop + style="stop-color:#7b009b;stop-opacity:0;" + offset="1" + id="stop5693" /> + </linearGradient> + <filter + height="1.1018234" + y="-0.050911687" + width="1.4916468" + x="-0.24582338" + id="filter7071" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur7073" + stdDeviation="0.78699188" + inkscape:collect="always" /> + </filter> + <linearGradient + y2="-78.547897" + x2="-254.71599" + y1="-78.547897" + x1="-281.07074" + gradientUnits="userSpaceOnUse" + id="linearGradient6989" + xlink:href="#linearGradient5695" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5695"> + <stop + style="stop-color:#8aff17;stop-opacity:1" + offset="0" + id="stop5697" /> + <stop + style="stop-color:#7b009b;stop-opacity:0;" + offset="1" + id="stop5699" /> + </linearGradient> + <filter + height="1.4916466" + y="-0.24582337" + width="1.1018234" + x="-0.050911687" + id="filter7083" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur7085" + stdDeviation="0.78699188" + inkscape:collect="always" /> + </filter> + <filter + height="1.8570966" + y="-0.42854825" + width="1.1345726" + x="-0.06728632" + id="filter6071-2" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur6073-6" + stdDeviation="1.0645658" + inkscape:collect="always" /> + </filter> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="-27.845135" + x2="-176.44347" + y1="-42.398266" + x1="-179.45006" + id="linearGradient5789-3" + xlink:href="#linearGradient5783-9" + inkscape:collect="always" + gradientTransform="translate(-244.56059,33.58355)" /> + <linearGradient + id="linearGradient5783-9" + inkscape:collect="always"> + <stop + id="stop5785-2" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop5787-2" + offset="1" + style="stop-color:#000000;stop-opacity:1" /> + </linearGradient> + <linearGradient + y2="-29.403404" + x2="-191.55763" + y1="-31.478365" + x1="-203.06625" + gradientUnits="userSpaceOnUse" + id="linearGradient6005-6" + xlink:href="#linearGradient5827-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5827-7" + inkscape:collect="always"> + <stop + id="stop5829-5" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5831-0" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <filter + height="1.2631843" + y="-0.13159215" + width="1.2631843" + x="-0.13159215" + id="filter5867-1" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5869-0" + stdDeviation="2.8767211" + inkscape:collect="always" /> + </filter> + <radialGradient + gradientTransform="matrix(2.2689136,-0.7557538,0.46722378,1.4051413,361.24185,-169.10186)" + gradientUnits="userSpaceOnUse" + r="26.905991" + fy="-59.058826" + fx="-263.10712" + cy="-59.058826" + cx="-263.10712" + id="radialGradient5881-2" + xlink:href="#linearGradient5873-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5873-3" + inkscape:collect="always"> + <stop + id="stop5875-4" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop5877-7" + offset="1" + style="stop-color:#d3d7cf;stop-opacity:1" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="-86.628036" + x2="-259.48315" + y1="-37.043636" + x1="-260.28085" + id="linearGradient5736-6" + xlink:href="#linearGradient5730-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5730-8" + inkscape:collect="always"> + <stop + id="stop5732-3" + offset="0" + style="stop-color:#888a85;stop-opacity:1" /> + <stop + id="stop5734-25" + offset="1" + style="stop-color:#2e3436;stop-opacity:1" /> + </linearGradient> + <linearGradient + gradientTransform="translate(-215.56059,33.58355)" + y2="-50.5" + x2="-194" + y1="-50.5" + x1="-208.07692" + gradientUnits="userSpaceOnUse" + id="linearGradient5923-2" + xlink:href="#linearGradient5913-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5913-3" + inkscape:collect="always"> + <stop + id="stop5915-3" + offset="0" + style="stop-color:#787878;stop-opacity:1;" /> + <stop + id="stop5917-3" + offset="1" + style="stop-color:#787878;stop-opacity:0;" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(1,0,0,1.7174974,-244.56059,74.45477)" + gradientUnits="userSpaceOnUse" + y2="-39.513264" + x2="-183.87694" + y1="-38.634178" + x1="-183.87694" + id="linearGradient5993-8" + xlink:href="#linearGradient5987-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5987-8" + inkscape:collect="always"> + <stop + id="stop5989-4" + offset="0" + style="stop-color:#8ae234;stop-opacity:1;" /> + <stop + id="stop5991-3" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(1,0,0,1.7174974,-244.56059,74.45477)" + gradientUnits="userSpaceOnUse" + y2="-39.290829" + x2="-184.21419" + y1="-37.343178" + x1="-184.21419" + id="linearGradient6001-7" + xlink:href="#linearGradient5995-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5995-1" + inkscape:collect="always"> + <stop + id="stop5997-5" + offset="0" + style="stop-color:#4e9a06;stop-opacity:1;" /> + <stop + id="stop5999-5" + offset="1" + style="stop-color:#72eb00;stop-opacity:1" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="-58.743122" + x2="-264.87021" + y1="-35.930092" + x1="-247.54591" + id="linearGradient5893-1" + xlink:href="#linearGradient5887-2" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5887-2" + inkscape:collect="always"> + <stop + id="stop5889-9" + offset="0" + style="stop-color:#2e3436;stop-opacity:1;" /> + <stop + id="stop5891-3" + offset="1" + style="stop-color:#2e3436;stop-opacity:0;" /> + </linearGradient> + <filter + id="filter5903-2" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5905-7" + stdDeviation="1.5089815" + inkscape:collect="always" /> + </filter> + <linearGradient + gradientTransform="translate(641.62863,33.58355)" + gradientUnits="userSpaceOnUse" + y2="-50.5" + x2="-194" + y1="-50.5" + x1="-208.07692" + id="linearGradient5919-6" + xlink:href="#linearGradient5913-3" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="-34.32909" + x2="-255.64305" + y1="-62.28437" + x1="-269.95532" + id="linearGradient5654-4" + xlink:href="#linearGradient5648-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5648-6" + inkscape:collect="always"> + <stop + id="stop5650-6" + offset="0" + style="stop-color:#ce5c00;stop-opacity:1;" /> + <stop + id="stop5652-9" + offset="1" + style="stop-color:#4d2100;stop-opacity:1" /> + </linearGradient> + <radialGradient + gradientTransform="matrix(1.3813297,0,0,1.3813297,107.2216,30.072312)" + gradientUnits="userSpaceOnUse" + r="29.214298" + fy="-78.86171" + fx="-281.17819" + cy="-78.86171" + cx="-281.17819" + id="radialGradient5620-6" + xlink:href="#linearGradient5614-4" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5614-4" + inkscape:collect="always"> + <stop + id="stop5616-2" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5618-4" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <radialGradient + gradientTransform="matrix(1.4937663,0,0,1.493766,135.56448,35.312572)" + gradientUnits="userSpaceOnUse" + r="27.622614" + fy="-71.143715" + fx="-273.07968" + cy="-71.143715" + cx="-273.07968" + id="radialGradient5591-4" + xlink:href="#linearGradient5585-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5585-6" + inkscape:collect="always"> + <stop + id="stop5587-9" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5589-5" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <radialGradient + r="29.214298" + fy="-78.911339" + fx="-280.78116" + cy="-78.911339" + cx="-280.78116" + gradientTransform="matrix(1.1093921,0,0,1.1093921,30.866652,8.6133536)" + gradientUnits="userSpaceOnUse" + id="radialGradient5624-0" + xlink:href="#linearGradient5614-4" + inkscape:collect="always" /> + <radialGradient + gradientTransform="matrix(2.1576192,0,0,2.1576196,320.68789,86.658003)" + gradientUnits="userSpaceOnUse" + r="28.001333" + fy="-76.807457" + fx="-278.76022" + cy="-76.807457" + cx="-278.76022" + id="radialGradient5646-6" + xlink:href="#linearGradient5636-0" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5636-0" + inkscape:collect="always"> + <stop + id="stop5638-8" + offset="0" + style="stop-color:#ce5c00;stop-opacity:1" /> + <stop + id="stop5640-2" + offset="1" + style="stop-color:#ce5c00;stop-opacity:0;" /> + </linearGradient> + <radialGradient + r="27.622614" + fy="-82.264709" + fx="-277.8414" + cy="-82.264709" + cx="-277.8414" + gradientTransform="matrix(1.4937663,0,0,1.493766,135.56448,35.312572)" + gradientUnits="userSpaceOnUse" + id="radialGradient5681-0" + xlink:href="#linearGradient5585-6" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="-66.937424" + x2="-251.85565" + y1="-54.745949" + x1="-265.00021" + id="linearGradient5801-6" + xlink:href="#linearGradient5795-5" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5795-5" + inkscape:collect="always"> + <stop + id="stop5797-9" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5799-7" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.94234189,0,0,1,-255.11454,33.58355)" + gradientUnits="userSpaceOnUse" + y2="-27.740944" + x2="-186.73495" + y1="-31.514177" + x1="-187.10881" + id="linearGradient5843-4" + xlink:href="#linearGradient5837-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5837-6" + inkscape:collect="always"> + <stop + id="stop5839-6" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5841-4" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <radialGradient + r="28.001333" + fy="-83.346062" + fx="-287.39545" + cy="-83.346062" + cx="-287.39545" + gradientTransform="matrix(2.1576192,0,0,2.1576196,320.68789,86.658003)" + gradientUnits="userSpaceOnUse" + id="radialGradient5953-2" + xlink:href="#linearGradient5636-0" + inkscape:collect="always" /> + <linearGradient + y2="-23.3778" + x2="-193.64967" + y1="-38.305504" + x1="-206.31369" + gradientTransform="matrix(0.57152873,0,0,1,527.47423,33.58355)" + gradientUnits="userSpaceOnUse" + id="linearGradient6047-7" + xlink:href="#linearGradient5837-6" + inkscape:collect="always" /> + <filter + height="2.0083683" + y="-0.50418413" + width="2.1625869" + x="-0.58129352" + id="filter5849" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5851" + stdDeviation="9.4456698" + inkscape:collect="always" /> + </filter> + <filter + height="1.24" + y="-0.12" + width="1.24" + x="-0.12" + id="filter7035" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur7037" + stdDeviation="2.6233063" + inkscape:collect="always" /> + </filter> + <filter + height="1.7964602" + y="-0.39823008" + width="1.7964602" + x="-0.39823008" + id="filter7017" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur7019" + stdDeviation="8.7056624" + inkscape:collect="always" /> + </filter> + <filter + id="filter3768" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur3770" + stdDeviation="0.52466125" + inkscape:collect="always" /> + </filter> + <filter + id="filter3772" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur3774" + stdDeviation="0.52466128" + inkscape:collect="always" /> + </filter> + <filter + id="filter3776" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur3778" + stdDeviation="0.52466125" + inkscape:collect="always" /> + </filter> + </defs> + <metadata + id="metadata4914"> + <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 + transform="translate(28.535366,76.035367)" + inkscape:groupmode="layer" + inkscape:label="Layer 1" + id="layer1"> + <rect + transform="translate(-28.535366,-76.035367)" + y="-3.2249322" + x="30.627371" + height="99.685638" + width="304.99728" + id="rect3758" + style="fill:#440050;fill-opacity:1;stroke:none" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + transform="matrix(6.1569306,0,0,6.1569306,1657.3961,335.01017)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path3795" + style="fill:#4b0058;fill-opacity:1;stroke:none;filter:url(#filter3776)" + sodipodi:type="arc" /> + <path + id="path3793" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + style="fill:#3e0048;fill-opacity:1;stroke:none;filter:url(#filter3772)" + transform="matrix(5.1751125,0,0,5.1751125,1398.2919,276.78756)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + transform="matrix(4.0858175,0,0,4.0858175,1110.8243,212.19148)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path3791" + style="fill:#31003a;fill-opacity:1;stroke:none;filter:url(#filter3768)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#200026;fill-opacity:1;stroke:none" + id="path7335" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(2.9708095,0,0,2.9708095,816.57093,146.0706)" + inkscape:export-filename="/home/hbons/Desktop/g6810.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/g6810.png" + sodipodi:type="arc" + style="fill:#af00cb;fill-opacity:1;stroke:none;filter:url(#filter7017)" + id="path6760" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(1.6664746,0,0,1.6664746,472.35379,68.72249)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + transform="matrix(1.2980822,0,0,1.2980822,375.13413,46.876517)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path7021" + style="fill:#df13ff;fill-opacity:1;stroke:none;filter:url(#filter7035)" + sodipodi:type="arc" /> + <g + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + transform="translate(573.77945,7.952687)" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;filter:url(#filter5849)" + id="g7243"> + <path + sodipodi:nodetypes="ccssccssc" + id="path7137" + d="m -553.17051,-28.751474 23.07421,0.02567 c 0,0 5.89999,5.954475 5.89999,5.954475 0.63134,0.631336 1.02079,1.504553 1.02079,2.472078 0,1.935049 -1.55782,3.492869 -3.49286,3.492869 l -29.96012,0 c -1.93505,0 -3.49287,-1.55782 -3.49287,-3.492869 0,-0.967525 0.38945,-1.840742 1.02079,-2.472078 0,0 5.93007,-5.980141 5.93007,-5.980141 z" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:220" /> + <path + d="m -194.71875,-38.3125 a 0.81435323,0.81435323 0 0 0 -0.5,0.25 c 0,0 -5.8125,6.03125 -5.8125,6.03125 L -201,-32 c -0.50698,0.516344 -0.84375,1.202669 -0.84375,1.96875 0,1.565438 1.27831,2.84375 2.84375,2.84375 l 11.96875,0 c 1.56543,0 2.84375,-1.278306 2.84375,-2.84375 0,-0.775138 -0.32601,-1.482268 -0.84375,-2 a 0.81435323,0.81435323 0 0 0 -0.125,-0.125 c 0,0 -9.03125,-6.03125 -9.03125,-6.03125 a 0.81435323,0.81435323 0 0 0 -0.53125,-0.125 z" + id="path7139" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" + inkscape:original="M -194.625 -37.5 C -194.625 -37.5 -200.4375 -31.46875 -200.4375 -31.46875 C -200.81227 -31.093985 -201.03125 -30.595841 -201.03125 -30.03125 C -201.03125 -28.884593 -200.14666 -28 -199 -28 L -187.03125 -28 C -185.88461 -28 -185 -28.884598 -185 -30.03125 C -185 -30.595841 -185.21898 -31.093985 -185.59375 -31.46875 C -185.59375 -31.46875 -194.625 -37.5 -194.625 -37.5 z " + inkscape:radius="0.81427181" + sodipodi:type="inkscape:offset" + transform="translate(-357.63635,9.729715)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;filter:url(#filter5867-1)" + id="path7141" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.42980324,0,0,-0.19537277,-427.07015,-37.561511)" /> + <path + transform="matrix(0.64375722,-0.37167341,-0.37134943,-0.64319609,-393.75381,-178.50614)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path7143" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1.34585381;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + transform="matrix(-0.55980337,0.32320262,0.25819179,0.4472013,-676.32384,65.704419)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path7145" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" + sodipodi:type="arc" /> + <rect + style="opacity:0.3918919;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" + id="rect7147" + width="9.0680408" + height="0.99999887" + x="-531.70441" + y="-41.270287" /> + <rect + transform="scale(1,-1)" + ry="1.4749401" + rx="1.4749399" + y="28.765366" + x="-543.13843" + height="5.066411" + width="2.9923346" + id="rect7149" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-opacity:1" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2.27365565;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter5903-2)" + id="path7151" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.43982036,0,0,0.43982036,-425.60342,-17.121882)" /> + <rect + transform="scale(-1,1)" + y="-41.270287" + x="551.63635" + height="0.99999887" + width="9.0680408" + id="rect7153" + style="opacity:0.3918919;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" /> + <path + transform="matrix(0.39949774,0,0,0.39949774,-436.24466,-19.513046)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path7155" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2.50314307;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:4.80897188;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path7157" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.20794468,0,0,0.20794468,-486.79597,-30.872298)" /> + <path + transform="matrix(0.16771563,0,0,0.16771563,-497.41251,-33.257913)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path7159" + style="opacity:0.96846846;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:5.96247339;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2.77910304;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path7161" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.35982832,0,0,0.35982832,-446.71351,-21.865475)" /> + <path + transform="matrix(0.06727433,0,0,0.06727433,-523.9192,-39.237159)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path7163" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:14.86451149;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.96846846;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" + id="path7165" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.05704758,0,0,0.05704758,-528.05337,-41.263577)" /> + <path + sodipodi:type="arc" + style="opacity:0.96846846;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:5.96247339;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path7167" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(-0.16771563,0,0,-0.16771563,-585.93364,-53.149259)" /> + <path + sodipodi:type="arc" + style="opacity:0.52252251;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:3.53654051;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path7169" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.28276221,0,0,0.28276221,-467.05145,-26.435558)" /> + <path + transform="matrix(0.24536551,0,0,0.24536551,-476.92053,-28.653212)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path7171" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:4.07555246;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1.41892862;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path7173" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(-0.7050649,0,0,0.7044495,-727.68993,-0.504149)" /> + <rect + ry="1.00449" + rx="1.00449" + y="-20.258709" + x="-557.64362" + height="2.00898" + width="31.996775" + id="rect7175" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" /> + <path + transform="matrix(-0.28276221,0,0,-0.28276221,-616.29472,-59.971615)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path7177" + style="opacity:0.52252251;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:3.53654051;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <rect + transform="scale(-1,1)" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" + id="rect7179" + width="19.405989" + height="2.00898" + x="525.64685" + y="-20.258709" + rx="1.00449" + ry="1.00449" /> + </g> + <g + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + transform="translate(460.68151,-15.925009)" + id="g7087"> + <rect + style="fill:none;stroke:none" + id="rect6075-0" + width="48" + height="48" + x="-452.50671" + y="-38.381157" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter6071-2)" + id="rect6053-0" + width="37.971432" + height="5.9618907" + x="-201.937" + y="-31.972912" + rx="3.0037909" + ry="2.7536142" + transform="matrix(0.9923944,0,0,1.0825574,-246.50776,35.509479)" /> + <path + style="fill:#555753;fill-opacity:1;stroke:url(#linearGradient5789-3);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:220" + d="m -440.09475,-4.8976386 23.07421,0.02567 c 0,0 5.89999,5.954475 5.89999,5.954475 0.63134,0.631336 1.02079,1.504553 1.02079,2.472078 0,1.935049 -1.55782,3.492869 -3.49286,3.492869 l -29.96012,0 c -1.93505,0 -3.49287,-1.55782 -3.49287,-3.492869 0,-0.967525 0.38945,-1.840742 1.02079,-2.472078 0,0 5.93007,-5.980141 5.93007,-5.980141 z" + id="rect5738-4" + sodipodi:nodetypes="ccssccssc" /> + <path + transform="translate(-244.56059,33.58355)" + sodipodi:type="inkscape:offset" + inkscape:radius="0.81427181" + inkscape:original="M -194.625 -37.5 C -194.625 -37.5 -200.4375 -31.46875 -200.4375 -31.46875 C -200.81227 -31.093985 -201.03125 -30.595841 -201.03125 -30.03125 C -201.03125 -28.884593 -200.14666 -28 -199 -28 L -187.03125 -28 C -185.88461 -28 -185 -28.884598 -185 -30.03125 C -185 -30.595841 -185.21898 -31.093985 -185.59375 -31.46875 C -185.59375 -31.46875 -194.625 -37.5 -194.625 -37.5 z " + style="fill:url(#linearGradient6005-6);fill-opacity:1;stroke:none" + id="path6003-6" + d="m -194.71875,-38.3125 a 0.81435323,0.81435323 0 0 0 -0.5,0.25 c 0,0 -5.8125,6.03125 -5.8125,6.03125 L -201,-32 c -0.50698,0.516344 -0.84375,1.202669 -0.84375,1.96875 0,1.565438 1.27831,2.84375 2.84375,2.84375 l 11.96875,0 c 1.56543,0 2.84375,-1.278306 2.84375,-2.84375 0,-0.775138 -0.32601,-1.482268 -0.84375,-2 a 0.81435323,0.81435323 0 0 0 -0.125,-0.125 c 0,0 -9.03125,-6.03125 -9.03125,-6.03125 a 0.81435323,0.81435323 0 0 0 -0.53125,-0.125 z" /> + <path + transform="matrix(0.42980324,0,0,-0.19537277,-313.99439,-13.707676)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5849-5" + style="fill:#080a0a;fill-opacity:1;stroke:none;filter:url(#filter5867-1)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient5881-2);fill-opacity:1;stroke:url(#linearGradient5736-6);stroke-width:1.34585381;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5557-4" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.64375722,-0.37167341,-0.37134943,-0.64319609,-280.67805,-154.65231)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path5871-9" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(-0.55980337,0.32320262,0.25819179,0.4472013,-563.24808,89.558254)" /> + <rect + y="-17.416451" + x="-418.62863" + height="0.99999887" + width="9.0680408" + id="rect5921-0" + style="opacity:0.3918919;fill:url(#linearGradient5923-2);fill-opacity:1;stroke:none" /> + <rect + style="fill:url(#linearGradient5993-8);fill-opacity:1;stroke:url(#linearGradient6001-7);stroke-width:1" + id="rect5955-1" + width="2.9923346" + height="5.066411" + x="-430.06265" + y="4.9115305" + rx="1.4749399" + ry="1.4749401" + transform="scale(1,-1)" /> + <path + transform="matrix(0.43982036,0,0,0.43982036,-312.52766,6.7319534)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5883-1" + style="fill:none;stroke:url(#linearGradient5893-1);stroke-width:2.27365565;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter5903-2)" + sodipodi:type="arc" /> + <rect + style="opacity:0.3918919;fill:url(#linearGradient5919-6);fill-opacity:1;stroke:none" + id="rect5911-3" + width="9.0680408" + height="0.99999887" + x="438.56058" + y="-17.416451" + transform="scale(-1,1)" /> + <path + sodipodi:type="arc" + style="fill:#ffb03b;fill-opacity:1;stroke:url(#linearGradient5654-4);stroke-width:2.50314307;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5563-5" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.39949774,0,0,0.39949774,-323.1689,4.3407894)" /> + <path + transform="matrix(0.20794468,0,0,0.20794468,-373.72021,-7.0184626)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5561-6" + style="fill:#555753;fill-opacity:1;stroke:#080808;stroke-width:4.80897188;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.96846846;fill:none;stroke:url(#radialGradient5620-6);stroke-width:5.96247339;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5565-2" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.16771563,0,0,0.16771563,-384.33675,-9.4040776)" /> + <path + transform="matrix(0.35982832,0,0,0.35982832,-333.63775,1.9883604)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5583-1" + style="fill:none;stroke:url(#radialGradient5591-4);stroke-width:2.77910304;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:0.48584906;stroke:#000000;stroke-width:14.86451149;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5599-6" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.06727433,0,0,0.06727433,-410.84344,-15.383324)" /> + <path + transform="matrix(0.05704758,0,0,0.05704758,-414.97761,-17.409742)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5597-7" + style="opacity:0.96846846;fill:#ffffff;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + transform="matrix(-0.16771563,0,0,-0.16771563,-472.85788,-29.295424)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5622-3" + style="opacity:0.96846846;fill:none;stroke:url(#radialGradient5624-0);stroke-width:5.96247339;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + transform="matrix(0.28276221,0,0,0.28276221,-353.97569,-2.5817226)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5626-1" + style="opacity:0.52252251;fill:none;stroke:url(#radialGradient5646-6);stroke-width:3.53654051;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:none;stroke:url(#radialGradient5681-0);stroke-width:4.07555246;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5679-0" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.24536551,0,0,0.24536551,-363.84477,-4.7993766)" /> + <path + transform="matrix(-0.7050649,0,0,0.7044495,-614.61417,23.349686)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5791-5" + style="fill:none;stroke:url(#linearGradient5801-6);stroke-width:1.41892862;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <rect + style="fill:url(#linearGradient5843-4);fill-opacity:1;stroke:none" + id="rect5835-8" + width="31.996775" + height="2.00898" + x="-444.56787" + y="3.5951259" + rx="1.00449" + ry="1.00449" /> + <path + sodipodi:type="arc" + style="opacity:0.52252251;fill:none;stroke:url(#radialGradient5953-2);stroke-width:3.53654051;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5951-9" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(-0.28276221,0,0,-0.28276221,-503.21896,-36.11778)" /> + <rect + ry="1.00449" + rx="1.00449" + y="3.5951259" + x="412.57111" + height="2.00898" + width="19.405989" + id="rect6045-0" + style="fill:url(#linearGradient6047-7);fill-opacity:1;stroke:none" + transform="scale(-1,1)" /> + </g> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + sodipodi:open="true" + sodipodi:end="5.4977871" + sodipodi:start="3.9269908" + transform="matrix(1.7613652,-0.47195637,0.47195637,1.7613652,525.38303,-50.200866)" + d="m -282.45201,-77.850388 c 10.24465,-10.244648 26.8545,-10.244649 37.09915,-1e-6" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path6845" + style="fill:none;stroke:url(#linearGradient6989);stroke-width:1.94541681;stroke-opacity:1;filter:url(#filter7083)" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + sodipodi:type="arc" + style="fill:none;stroke:url(#linearGradient6987);stroke-width:1.94541681;stroke-opacity:1;filter:url(#filter7071)" + id="path6981" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -282.45201,-40.751235 c -10.24465,-10.244649 -10.24465,-26.854505 0,-37.099153" + transform="matrix(1.7613652,-0.47195637,0.47195637,1.7613652,525.38303,-50.200866)" + sodipodi:start="2.3561945" + sodipodi:end="3.9269908" + sodipodi:open="true" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + sodipodi:open="true" + sodipodi:end="2.3561945" + sodipodi:start="0.78539816" + transform="matrix(1.7613652,-0.47195637,0.47195637,1.7613652,525.38303,-50.200866)" + d="m -245.35286,-40.751235 c -10.24465,10.244648 -26.8545,10.244648 -37.09915,0 0,0 0,0 0,0" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path6983" + style="fill:none;stroke:url(#linearGradient6979);stroke-width:1.94541681;stroke-opacity:1;filter:url(#filter7075)" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + sodipodi:type="arc" + style="fill:none;stroke:url(#linearGradient6991);stroke-width:1.94541681;stroke-opacity:1;filter:url(#filter7079)" + id="path6985" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -245.35286,-77.850389 c 10.24465,10.244648 10.24465,26.854504 0,37.099153 0,0 0,10e-7 0,10e-7" + transform="matrix(1.7613652,-0.47195637,0.47195637,1.7613652,525.38303,-50.200866)" + sodipodi:start="5.4977871" + sodipodi:end="7.0685835" + sodipodi:open="true" /> + <g + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,491.00495,-75.539049)" + id="g6764"> + <path + sodipodi:type="arc" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-6)" + id="path4150-5" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.0775549,-0.5414093,1.0779516,0.54160869,-500.46314,-100.87344)" + inkscape:export-filename="/home/hbons/Desktop/path3595.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/path3595.png" + transform="matrix(1.649612,-1.649612,1.6502196,1.6502196,-509.53302,-109.43247)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3928-0" + style="fill:#73d216;fill-opacity:1;stroke:url(#linearGradient6771);stroke-width:0.42857152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/path3595.png" + sodipodi:type="arc" + style="fill:url(#radialGradient6773);fill-opacity:1;stroke:none" + id="path3930-8" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(-1.579109,-1.579109,-1.5854864,1.5854864,-464.26103,-109.34926)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(1.4244979,1.428323,1.4302509,-1.4340914,-506.41976,-106.26032)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3936-7" + style="fill:url(#radialGradient6775);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.4701004;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path3970-1" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.5011331,1.5011331,1.5071955,-1.5071955,-507.47773,-106.17572)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + </g> + <g + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,531.77934,-86.959048)" + id="g6777"> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/path3595.png" + transform="matrix(1.0775549,-0.5414093,1.0779516,0.54160869,-476.54695,-100.87344)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4198-1" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-6)" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + sodipodi:type="arc" + style="fill:#729fcf;fill-opacity:1;stroke:url(#linearGradient3978-2);stroke-width:0.42857152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path3932-5" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.649612,-1.649612,1.6502196,1.6502196,-485.53839,-109.39554)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + transform="matrix(-1.5756231,-1.5756231,-1.5819864,1.5819864,-440.31531,-109.30874)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3934-4" + style="fill:url(#radialGradient3980-6);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + sodipodi:type="arc" + style="fill:url(#radialGradient3998-1);fill-opacity:1;stroke:none" + id="path3938-5" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.2586376,1.252928,1.2637207,-1.257988,-480.10734,-106.49032)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + transform="matrix(1.1859334,-1.1859334,1.1863702,1.1863702,-479.05914,-108.91704)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3954-4" + style="fill:#ffffff;fill-opacity:1;stroke:#5e94cd;stroke-width:0.5961352;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.47058824;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + transform="matrix(0.90652304,0,0,0.8115515,-491.69091,-119.05223)" + d="m 33.384909,13.925035 c 0,0.686989 -0.498675,1.243903 -1.113821,1.243903 -0.615147,0 -1.113822,-0.556914 -1.113822,-1.243903 0,-0.686988 0.498675,-1.243902 1.113822,-1.243902 0.615146,0 1.113821,0.556914 1.113821,1.243902 z" + sodipodi:ry="1.2439024" + sodipodi:rx="1.1138211" + sodipodi:cy="13.925035" + sodipodi:cx="32.271088" + id="path3956-1" + style="fill:#000000;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect3960-1" + width="1.0000036" + height="0.99999994" + x="-462.4614" + y="-108.76189" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="-110.76325" + x="-460.46683" + height="0.99999988" + width="0.99999881" + id="rect3968-8" + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" /> + <rect + y="-109.76189" + x="-461.4614" + height="0.99999994" + width="1.0000036" + id="rect4000-9" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-9" + width="0.99999881" + height="0.99999988" + x="465.4614" + y="-111.76189" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect4006-5" + width="1.0000036" + height="0.99999994" + x="463.4614" + y="-109.76189" + transform="scale(-1,1)" /> + <rect + y="-110.76189" + x="464.4614" + height="0.99999994" + width="1.0000036" + id="rect4008-5" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + y="-108.76189" + x="-463.4614" + height="0.99999994" + width="1.0000036" + id="rect4010-3" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-48" + width="0.99999881" + height="0.99999988" + x="463.4614" + y="-110.76189" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-9-2" + width="0.99999881" + height="0.99999988" + x="464.4614" + y="-109.76189" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-4-3" + width="0.99999881" + height="0.99999988" + x="463.4614" + y="-108.76189" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-0-6" + width="0.99999881" + height="0.99999988" + x="462.4614" + y="-109.76189" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-3-0" + width="0.99999881" + height="0.99999988" + x="464.4614" + y="-111.76189" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-7-3" + width="0.99999881" + height="0.99999988" + x="465.4614" + y="-110.76189" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="-108.76189" + x="-461.4614" + height="0.99999988" + width="0.99999881" + id="rect4096-7" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="-109.76189" + x="-462.4614" + height="0.99999988" + width="0.99999881" + id="rect4098-8" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="-110.76325" + x="-461.46683" + height="0.99999988" + width="0.99999881" + id="rect4100-4" + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="-109.76325" + x="-460.46683" + height="0.99999988" + width="0.99999881" + id="rect4102-2" + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" /> + </g> + <g + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/g6810.png" + transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,461.13338,0.41510692)" + id="g6802"> + <path + sodipodi:type="arc" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-6)" + id="path4196-5" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.0775549,-0.5414093,1.0779516,0.54160869,-452.51443,-100.87344)" + inkscape:export-filename="/home/hbons/Desktop/path3595.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/rect3664.png" + sodipodi:type="arc" + style="fill:#ef2929;fill-opacity:1;stroke:url(#linearGradient6817);stroke-width:0.42857152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path3940-1" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.649612,-1.649612,1.6502196,1.6502196,-461.54714,-109.44296)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3664.png" + transform="matrix(-1.5758699,-1.5758699,-1.5822342,1.5822342,-416.3206,-109.35641)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3942-5" + style="fill:url(#radialGradient6819);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3664.png" + sodipodi:type="arc" + style="fill:url(#radialGradient6821);fill-opacity:1;stroke:none" + id="path3944-4" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.5538791,1.5538791,1.5601547,-1.5601547,-460.23189,-106.13186)" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + ry="1.9409533" + rx="1.9409533" + y="-110.22289" + x="-446.94452" + height="4.9422016" + width="16.961893" + id="rect3952-1" + style="fill:#ffffff;fill-opacity:1;stroke:#cc0000;stroke-width:0.99999994;stroke-opacity:0.47029706" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(1.490698,1.4864482,1.4967183,-1.4924513,-459.39302,-106.29889)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3972-8" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.47406736;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + </g> + <g + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="translate(489.21077,98.986117)" + id="g6810"> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/path3595.png" + transform="matrix(1.0775549,-0.5414093,1.0779516,0.54160869,-428.44939,-100.87344)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4174-2" + style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-6)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#a0bedf;fill-opacity:1;stroke:url(#linearGradient6823);stroke-width:0.42857152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path4176-0" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.649612,-1.649612,1.6502196,1.6502196,-437.51927,-109.43247)" + inkscape:export-filename="/home/hbons/Desktop/path3595.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(-1.579109,-1.579109,-1.5854864,1.5854864,-392.24728,-109.34926)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4178-2" + style="fill:url(#radialGradient6825);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/path3595.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient6827);fill-opacity:1;stroke:none" + id="path4180-1" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + transform="matrix(1.4244979,1.428323,1.4302509,-1.4340914,-434.40601,-106.26032)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(1.5011331,1.5011331,1.5071955,-1.5071955,-435.46398,-106.17572)" + d="M 11,7.5 C 11,9.9852814 8.9852814,12 6.5,12 4.0147186,12 2,9.9852814 2,7.5 2,5.0147186 4.0147186,3 6.5,3 8.9852814,3 11,5.0147186 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4182-5" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.4701004;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + </g> + <rect + ry="0.50398123" + rx="0.50398123" + y="-143.70517" + x="-61.583187" + height="67.044205" + width="378.14563" + id="rect2980" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="rect3754" + width="378.14563" + height="67.044205" + x="-61.583187" + y="15.320398" + rx="0.50398123" + ry="0.50398123" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + ry="0.50398123" + rx="0.50398123" + y="-96.178406" + x="-239.70386" + height="67.044205" + width="378.14563" + id="rect3756" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <image + xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGUAAAArCAYAAABhLkbTAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A +/wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9kECwsmBv2MD3YAABxRSURBVHja +rZt7dBxXnec/t6pbpZKlFq0YLNkosUwCnpg42CsybhkWSFheBzDJLnM2ZCcwSZPMwJGTyRyWxxJ2 +JwMzO4cBxTbYQn4EQyIvYbBDzPI4GELGWHYixw8Fk4E4lkPiWHbsyJJb1Wp1d333j3u7JSWy8/DW +OT/drqpb997f6/v73aqf0P2qkbpQN0gRegSkhfa3Ftrr3SBuRPwCnXS/u0FXgtQ15bkupJ2oFdSd +s303ymg79neX0HahhJtLO5F+gPRvk3PtAmk/ugNLuzBSZPSofK1SQte5cdhpn9ksxDJ0CHQDqDtC +t4HeAWKVneMRLG2UsXw4qsx5q7t/0j3Pjah7zK3vx3Z9J0E7ZNtfYnm8CsT9du4rQTRNjl2RWzfo +fdg+h0B8dZKmXj/k+r0P0ARIx5EOW0GxzDET2Wv7nZL+yi2k1U2kLkSE+DzS56yQaEK61z0bGTvm +YaN1OYSP7gSty6H1MvpXkL6LumWknUY6nFCvZmkCo9VKSl2e1OVpAqNezZLuNepVjVbLMrBdVnmP +VIymaVI5tzoGuyNLrVjhnnSCv83xcRtWqbe5MQ5NESTvRnzZjnmrM7IKnXRzENm+FbmwyJ7fWTGI +hU5Ji5x8Frkxv2qVWX3u/1pqBXWPgf4naIuM9LRV0CZZQd/qGFgEWjdmz9VlhVA55xm0WUY/l9FJ +kD7kLPB3Rg8o0FUY3a9ZOipfR+U5ZaHDWCVvki/tNJrA6A6MNOJHPaqTjvhSfEs8rndJXUY9Y+io +PHUroV3OQtflrMfRZNejhVa43O8s3M3FIvRRJukG5+k3YAW0XtYruscs363OCB8BfdzJQB+yBtqN +ayNrFDcwee2XTslXuWs3VOZqQv8oSzRZL6/MwSpHzmudEm3HLfK02bnmA3Iw9BhVWPtnTVrEx53V +bJbRRhntkrHCudEK6hDoUSXVjfUArvV0EiPda0STUTfoYRlNgFXEQiOt8KQuIzpMNKQwltZJkhTn +VdL1UpepKkddiMvQfbJWri60nUnYvNKtc43sXNxvacIJTDtRt+x5tzu/T5OQswgL09vd/XU5J7Tv +GgtX70b3yegBGX1fRtzvhN+G1spY2f3YKWfMykP32vZIZc6F6MdO9voBetgp9Dbr0RZndQfaJbTR +KWaTswI9Zs9vYNL1+erktcQUt6cfPSrPKmOFbTerVg8pKS001lNGfGnEt8Jd4UVbFWrtCaJ+JaN+ ++dLRIJZ+oulHLMVf1ABG2uNJI1aha89ahTwgJ/ivWmPRTvR9WS/pngK16nK4f6NVCjfa824HQ5UY +dxL0pONpvXzxbqTTRtpvLDTfizapRtqJjspI3zW600HlogocLXMwdaM7v9964VXYlmUOytosfZTJ +9fBu0J1CRx0TutcuSF2I7zlPiRDvcB6CZWhTRRAuTtwvY92v23pEhDephC4TbVUYbVUodZmoX8mo +R8moX0lplSet8qJ+ebvV6Uvq1TmOssobhzSSkPZ46hlDm+VZIXUh3eDiQeS8puLpO6fTrUw/3+Jg +txuUcxZ9HYj/gDQH6Z0uRnYZqcvy9H7ZWPewasUqiwZHZbReRhtkbKx71M5/K3Y9lXg8RfDV2HzV +FMj7nKVJTOzVJGkn0u+QnrPtu50b/zPW3dblrDIOuQxJkQ26v5YNzBZmjEqaI8Uflkqfkcr/SRqr +i/rlZdVpKsTG0CcIk8M60CDFh3SeI1b8L7t1wI/6FUiH7VyV+FGJMzphlfOkE/L9TjDbZfG7gvV3 +ukxwu6zB3cEk/HbLeeJ+z0Jsly/FN0nxz1XWQ/G4PiUd9pTCxkPda6R3WhjUD+wa1OUU+ugUI7ll +ilF0TXrzL10i0m0TL6eE39nBuNHCwSGoZjmPyjLcip30KoeJ3ZrE5IrFPiS0zcLMrh4lJf32RUJd +TRAm52UIyFxeS7OjYEEdQVh3TM/OlfT0+RRTLut2fQQjdZlos+qlLlM1pG7ZjI4bbbyp0Loc0h9t +HNQPrEFVfusHLgP9rkUMIuv5m2WUsvOoqM/NsJT/YuH0sPUgmqxhLnKWf7+bF995341uK3DvZCio +ZHL6nMtkv4xO4ix/lWPmPqEfaBKLezTd3bkMbcO2m2Qn6JVVxj+BVo8ifcIMaSRR0PhcGw+mHccI +FtQxP6xj/oKAIPQJQo90q5+kLUE6DM9o+O2xVDqPu5SLKr8/uku+g8JaK0zfrmezHOxEk3svRdZo +NspUz6ux5J2O9k8al7qQRky01cJsLJ15yTLK+p6Nczt8DWC0bUrs0gorr1556hb6exmtlmdjr0uI +uuTb0LAK/aOM+EV1TzVpId1u07bZCVv3Tg+S6kJ/6TKnv3T5/R24eDSCdARpgCGNeFl1mglFl80A +P0+QDhscJUmHPsHlvm3n+gRhDUHYWFTpCzr/8fSwnm2oesxW1URb5EldKGIya7yqGgcDaadRr5J6 +WN5LEgB1WW9ZLaItMlGPTNQrTwOYaEz154hx3yQT+tIsY5XTZaKt8l36bsfrrcwl38LhTmsAR2V0 +n4wOVSD3sE27nfdYq+kV+lFFMb+yAx51Qu8ZQ3reeohGbOtS02h7JX3eQ9QvpFVk1cniDMk/6Q8p +SYUXB2uCsJEgbEySSiRJ+UlSFYX4pObUQHMTC8PGWOWHzh9fyuvIhH5Wnb4GMFGvEtIRu2HtGaus +18a3njEsFNnML9qs+up1HUZ63kQ903gx0irDxtAjEyalePuLp49UXE5zWEsmTGYzeC7W+VGvalxi +YDfOVkkm6lGgzUraeztNVUlHXZioKOcGXPrbLaJ7hPQzZ/WHiXpkoq3ypD12grUnkAbMVOsa6HVW +1S926wBsDCETesxfUEe6taGk4mdixSecl+zarh0NpOY0EcxtpDmsoTn0G2lOOIUkCObWEISN0Nx0 +SieueBlviSNNLCEIk1l1mt064Ek7jOgg6pUX9cqTBvyBXgXVfY6Dm2nXbEaYiHqcZ9wlk1UnZDo9 +gjDJ/LBuRKcujaXH3bwTEyp+iea5jaTDBoKwjuawliBMZjOduLX40g4/6lfSym2P3YetHrUxt5LB +qctlkDsn9z46jJH2w2/eBisM+ftkOALhyruV33u7HwYm3nPFAQ82AjezjOVxfm/OhO31yu/NmZXt +K2OADR0bAGAf0NLiM1KsAyAqe7TB7id+WpMxHygz9QhGCgSpIhBTGBXgUWisJaUkowaAWMd6Dd77 +OccRww/9tjd9iuPHiyxdSpalRQD6MKs7VrOy76AHG+PVE6vnhUmuBWpk8CRygocmHuOPB9sPmo0d +G8v0YTZ04MEG5h3OJ475lxtqxz04DiP4/MvS8RdueuDNJ4meX1i7sECQ8in4ZdLA8HCR7NLigW9t +Cr/Ft8Yq8siSLdOHWb13teFnWKaa8cLSySLvmGPYMybeV+cxPxHDAuBDwIJKTLCWH/UrOaSRRNQv +T5plshk8o05/RKeaTitqe1LP1hCESYIwuYj2BJkwQXPo0xyaFM00XQwEoSEd1k2odEtJ5c1lxT+L +pcdi6ZikiXuq3rJgNjQ3TaNU2ATNTQ1von5M0TVllXfoZTDsOQ1dRrDAWquzWDLLk2TC5At64WJJ +a14Mo1Ni3LNFFf8uq87EZDboxkm3NiRpazil4SsUa1zS07Hi/ljln5RV2jSu/LXQbL0+uLzxtIan +xNA4L8UnFOuIFB+UlcE6qfz5kkrXT2iiQzpVG1U9dqGRfmUq2wuLY2tPYF17lZfN4OWUe2Ms/S8p +HlSs8lQhxNLhssrbcipcbYWwoI506yyXQUEw1xCENbHi38wkiLu1rZ5gQROpOY2kwteRmtNUoX/V +7tSEil+KFQ/pFR4llb6eJNVAutVCSRDWkV7SUNDEB2Jp5JWNEh8a1vhbKmMkaWtIkmqgOWw8peEr +ZlZo6dvWuMIGgrmzntNwm17NYRX2gahfyWirQvWMVd49ekh7kHaY3Trgkwn9oko3SXHplY2rXw5p +aJ7F1rl1BHM9Um/2SM1Jxop/PbNSds2CcJbdmyxIESyYTbBg9kmdfesrF+K0VfzeJg9zGyuCLGji +xmnG9Ip4iZ85pmfnunjXSGpOEzQ3PXcOpZRUXgfNjRDWQXPdoJ6e9+rXrlJRxb+QdvjSHk/bMHpY +xoPd7GG2yXRkKPflVibwN4DxeQWHgffO4Q0/X/vC2jIMJwnKSUZHPRgFGDlnKAhaShSiEoXjRQrH +4yfGtydmM+vnBlK86sP82YHxPzRQiP1iKkz++/HHghoS38LgvapRMG9sYd52AIYafccDCWLN1F/E +cFEcc1FDGSgnmFV89WvH95W4F96zEHaLj3XBfxzFy++93WzseBulvrPtHt43rKxfFTtv/Ws++XXq +G5IwKoIYCg0YqJmpd4lnRH1OBHUiaIGgxXsLf7bWYObxGo+38PoMQZ1HYZb3Ji77ApiG1zKOgaWF +8SPXEMSe0wnnYAMfP+a0V+L0WXFRrBJj5dc0pyEJ5h6A/Jbba+B5vJVPGrOxr9P4+N969QqpWtmn +dpz6zjijjZq0JNpm6vsCgfWW+pyoz+mx8Z94YD7KBRxWobmKsJZdyFhJgv8BwEUNHhfFXonInF+P +jXDaI8Gsc/XLFSneHRN/Q2irmFT3lGHeDiv/lsso5be9yfM2rAlNxNevAdovgJe6dq5ZzkUx1AM1 +sQHmzNTxDRCTw8owd5bFXHqTAf9CBOnjt1AT+tTnAHP5hSmYJb3j3xknVw+5ehLUaWYMjiGIDYFr +KfgzI0N8d03twq/5tZf9b292863P8PxS4OmXwqH3XkCMIw/waki8hws8EiSTVWFPeDKY2nNvLypH +g3wS11/o3IISNfmyE+qZCxzOfJgPTPG2ifP1rfCimLKZuUPpJBXB5OCS2mUjRUrfnaHrm1euXBmH +bzWxB20+eO+6UMEYSE4TlKYK/8VdkSMDSl7o3DHx09ayISZ+/kLHS2IuqQgyz1j+PF2ryUSOUmHm +tWl00nbsERH9+qVC0fyb+25O7rnigPHcyI0XrhQvmH5BE+dRSpUEYxc6d4HyU5WYAvoDF36UKj+O +8NwLr+SBh3l47ByudNaNN1EZ9wyjMxiO8QcZ1LKPvk0eg4MIU75QLopMnKEeKmQwEzNzWzCuj6xD +zRT4XhV0DTfe2b6LghdT8OICxV9cOByauMLIe/7zJwrndpJ64/rpM43/5DMDOsSQg/oi1JdsCyW8 +4gx8jH6i4xPKf0XGow0M5C+Qj2gJy3Zw2hOnPTmjnZGZubQaTp+t9IkLjH/nwqCrvIWvvlAH1t1/ +wyMPgi4oroyRP0x9Dupz8HCuDoheKsSyR33Or/ZLnhFGoy81wvE89bm4SoBh/CUGa8TpSXUPQpl4 +3wVi+vePNJ4KSY1AagSCs0ZQnBlqnrFoWfCgcFazamf/ArT/tVm0Tj7N4F0EXpnAK4+kUnyo9oNM +UP7iBXhe+fUHWvaSA06fjTl9NhYaniENn5JFUkHPmY0hh1wfEYyVh2dQCkaDAAfbD3qeXUip7wKY +eP5hHv3vQIlkC3ZTnvI4h1Jgtg14KUGACFr9M0S3zWSNLzNzOSL/8YXmfRF1w3GyEMT4zxSTheY4 +qL1kS5Hil6YG11fOT7yfd6UaCM7GXNTgwq15YcYIXzhbonBWFM5C4azRDEpJkMDdjymcjYHY52xh +Bo9/CODKvVfiQRsnGXv4tTGgE6c58/6rzbUJRk1McawSIgxoRviaDZBKGZfWGwq5crr2zQOnidr1 +yoP0UI6J99Y3LdxXnD+UJyJXDEwOZkdwugjENS3z10aMvqNM/JNXw1tM/H/srxSNp73Y8Tn80n7G +I5USqRSkUtbAzgWbqRSkWi0VRkv7ODL+4i5l4l+QzTqFDw+W57XNOxWjX72a4Fqi1PU4h5e+vnbu +EYKRMsFImYIvSEHB9wymMDN8FTwKuQR1wyQLzeVkIXeWOj8/u2nhn37Jb5fEaPO5NwcqC217mpOL +G9ouf5TgVJ5xSqTblCpEIjpVLqaLBRiOkkO58qzWt/97orb+vx3m2IIJil8UPP4yjBV+y1ObrHc0 +MhJ4ZZpHysDwzFtmP6bOF3W+II1mhK+E3VfW5URdTpCOv8bXii+S5w8/0xE8lr2JeLR91EBmeZL5 +C+oKGv/Iy73SLCv+ZU75j/Ply2vd6/bXEYS1pOb4BHOhOTSkQ490a/1ZjSyW9G+KNTx1jF9rdwPp +1nqC0BCEECyA+SFNF2OYv6CWIKz7tXanCpq4sax4vaVy94RKt4zoVJP93nF5LUHoz8sAQUilpTm0 +bRBCOvRJh3Wk3lz9XlNSecPLvCn+nv0+Eto3zumwgXRrw7gKfxUrflCK90vxYKx4V0ETt5JurRR/ ++ARhzYSKn4ylh6a+7c5r/J3uG5RPujXB/LCGIKyT1C9pIpbuH9LIRdlMJ7YgscsYMqHPIEnaKMd9 +Y38wmLZzGdIEpTuC2fO+T9HY1K8wOg7pAunhcnLI7gGLlzUa/nQqoAWPkdk+0anyjvEd3mw8r4km +Lu54W55B/Hnl/Pix0RDSbfYt2SDAoIG2Ghg0DFMmjT+vnNexSy+HQWKGB8ssXepWs29K+lm9BoOQ +GmpkNJ00BGWfqJyiMFo+M356WSPhz8/j/aN/4uTi+S1LzlDw7djRKbtVaIHU0UaNzq8zjB+Pp6EO +xI4Bj8rrojbKB/oOhE3AJSwZU4tgmJg0HrT589p+b44Rxt/u281nOzJxti8br+dSwwO3wRFki+E+ +g9dUyidOlorv9Uk8eL6FP8HBtkXmAw4rNU7BzycLORXTRYhaoOW4gRYYP56ktiUBx6GFIoNtPm2D +ZQbbfIbTJdhXqspyqlBZati3zywqLOJQ5hDsQyxFsNTAPmXJsoENHOzMs+b6Tjq3rGHN9Z2Tn6QH +gVpgZLaBU4aIhnvGt8ef5OonzvcmeoLiJ4Kmxp8QUQLKqcKi8mhzFNM2KGgz7Bu0cL+0ujs3k7Fq +KYvZZQYIVVXMvipbcsoDMIvJ+0A8QBiTzZJdvJrVLncIAxNzxR5jyHT68w6vSRzzQ0NhdjJ+4en7 +DOYj51p8GW1INLZ8HkahwDik89T5dvIoaWg5DscR6TYzr+33CcB73e728qHMIbmkJc6SjzfQqWwf +0LGG9X2z+DQ3QQdQyQO3rIHrO2Hvata31/NpbmI9m/h0Rw76VrJ6r2UlbK8nvzfHypUr2cAG2LcU +OA4XNxpOnUoSlcPy+DPf9PBuOg9P3080XfJZomSRFiYYr41pG3RStbuFbF8WOtYAncAa6OucPkjH +1JM1ptINOrUBTNY+Izpgfd8mAPJ7c/AzCD9mYHEHrN0Gj8wxJqtOf0PHPg+GfY4PescGj82eS/oJ +oO5cOeOwGV3SVNv8NKRj0kTUDsfQYu+PH4c2NIUhDzDZzry4vlMAq/euFsDPfgYf/CBOuM5ePnob +ex48wDKW20VPvQec4GJSez/G/v2wZIm9l9+7EsAqZt8GSGOoJUgeTSaHNdQx6zywBTy1jYOLr6u9 +LiZ9vDBt7dks2ZvgZm4G4Ll/uJLr7lzNHg6zjEunDbJ170rmth9kGQ9X11NZ+x7e5VBtkEH392qu +tmCzNwVLMKH/iPLb/twjiU+2X97iDMnFHkmaw1rmh3V5TXz8ZQLiI1zW2mA/wbbVMT80NDvKhJBZ +DpmQrDphY8hudbJbB9BHQF/Atm8EXQvSKiolSlG/iO4SUb/Y1WNbDeBqynZM+z21jfpFtl92vkwI +mTBBsKBuh3bVx4qfOc/n7NKYcm+33+YX+O5ZsplOsm7cH90lhjRi1zNlTRpw66/QGbe2M/a3tGNq +Qcq035XzqFcm2ipjP8kfsaVdP5VHVtsSWXWaxRmnFFsI0VBU6a7zKWZChdtovrxS+1TrKlpsRmXr +n9itA67tnC7gSkvH5AJ7nJB73X13Lu1AdODquSapUjw3gC28+whke7FKsdlZXVnl9S9TdPFF0q0N +zF9ea9cdku2F7NT19oiBXlXq3KxQe6tCnaQpwq7SN7BUKVZce8LVz+2Z8tv1/aQr++0Zs5YqzbJK +CZYnydhiay5rbSirvO08PJ09pucuJt3akKI5JLPcq3pIprNaMblbB6reUF20U0pFsJV7VeqtMDfg +yBYDRndNve4s8FprtRUPIxMaMmFygbYlYun350nwf0jGGuG81+NNXXfFCwd6J6smK94RbXVr3qpp +VPWEF11/0T0jHXFtF1GPLb6LtstEm2Win8qoZ8wK52AvZG2unyAIk00XE5Jubciqs6as8k/OA2M/ +sgXbC+rmvR6ziHbYOOklUb/o1baqAqpKuMsKfqBX1pLWnpj0Cuf2L7a6qrKcpdnatC7rXQ5WHFwa +MmGS5rD2mF6YK+noDOViD2XVmbDVjZfXVGCrYkjToKdXk0pRF9JRa9WV+1P4mqQjVaoooKqET0K0 +3SnHKaVSahttltE2mBmPqzC2pIGNYbKk0pYZ8PjJkzq7kPkL6tzmyCzO4JRivWNIIwxVlNJvlRCV +nDIcHNn/aLLwpGuxrfZUYWE6s5Xy2WrJKQWnfA3YeJXNdEJmeaJSVDekE5fEig9OWfq+Ae2qd5X/ +dWRCj8xysplOq5CByhq6+MMqTUIMD05vX0IrLH0Sp7QpvyvnWuFqnFe4GubKeZc9d/XaZkgjDDII +bCSzaQNsWGoYHE7CoEctNhuYvZBS395v+nhZ935oy+M8+tdva/oLpYaLpdFMk4Ai+9Jlli5FfZvg +o2PkvyJG2x/gqb0fo6P9bvJ7bydsvwHMUfI9u+jLwzUlA3cMuFzlpEsVr4EnZ/5AFl7/CKxrs/uD +v+kFrgAOsXXvSq67y/DpBzvZ0LHPwD6fQRLU4v1icKOu4b9uMihxhMdvuqz2ujLpWrcZpZQlq5v7 +bubKvVfCfvdNqBbCa++GdZ+Avxkjv63Nnr+W41N/O/XbBfkOmfDDT4k1b4CNKThw2N6771K4YQVT +sL+zmi3x2dCQWR5MDfwEYV1Jpb8vaPw6W4Vor6VoDl2pqF/JuKJ+8SNH33bQEvVMzUymwNMqZynX +Mi2bmhZT3HMDvTKiw3rJNzBV7xqAXT2yWZ1mVSr/zbwM1mPmW4hlvi1vra45WJ7IZiZlMKSR6XGN +Bx00Hal6Q7TdFrVPg9YeV+g+lbbPcG3acyssvG2XkVa4/+2xGZiRdtC3/hqWLIGVACsNj/45DDwS +GvbhkyZBbYvH8eNQZ1+b2FcPLTB+PKYNLSZfHli6PF707UKcUYbVe1cTttezdn2O9KdHuWRviiVA +2G7feT7+D9dwaTOEtywn37+LsH01J7jYmdLVNnef4Tj8JIbD1PBBuKL98fLjW64oX/FWI56C/Bsn +XwSvXLmSR1nDAKHdKqXbzKKhF8yZzJCOEbKYPAOEypJlfd8mPs1Nds2BIV+Q21/8ij+uvobWVgiH +TpJvfoMJr9uu/KqPmPA9Zua3zld0ASvIb2urFlGE1w66vj+e4YEVUz8GGIgFdcbs6hdDwHV3GfJf +ESvbV7JhE7AB+2cQjzYMg20eteMJxo+L2hYYP16EtpjhQdnXCUuBpWT74GbgObfjntt+0MKC27nm +94j9B2DJ29yil00WgVQFEkwpDLlixySk2Y2oH15myvkn5YWBKVWeu+ce2N8MuM3ohoEpe98NlR9t +QBrYR7YzD2s6Wb97K/n+Z+1t96ktvGU5fKMP/m4Rf9z6O/Pma+8WQH7b7cnw2rvP8Z0o8/+hNGA3 +kOH/AZJdWXp02ErCAAAAAElFTkSuQmCC +" + width="101" + height="43" + id="image3835" + x="182.46463" + y="-53.035366" /> + </g> +</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/aim.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,188 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" - sodipodi:docname="aim.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/aim.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2263"> - <stop - style="stop-color:#edc100;stop-opacity:1;" - offset="0" - id="stop2265" /> - <stop - style="stop-color:#edc100;stop-opacity:0;" - offset="1" - id="stop2267" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2255"> - <stop - style="stop-color:#edc100;stop-opacity:1;" - offset="0" - id="stop2257" /> - <stop - style="stop-color:#edc100;stop-opacity:0;" - offset="1" - id="stop2259" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient4330" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2255" - id="linearGradient2261" - x1="12.514956" - y1="18.690643" - x2="12.514956" - y2="3.9849093" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.943689,0,0,1.932352,0.678089,2.050925)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2263" - id="linearGradient2269" - x1="10.555883" - y1="8.0642843" - x2="10.555883" - y2="1.4995424" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="12.865422" - inkscape:cx="46.678288" - inkscape:cy="27.286544" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#edd400" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 23.921379,18.772128 C 20.531101,16.831234 19.828661,25.427448 17.466079,29.485095 C 15.153694,33.456532 7.4937606,36.040098 7.4937606,36.040098 L 12.246433,45.509102 L 23.851631,34.738731 C 23.851631,34.738731 31.648476,39.799175 34.033545,45.317469 L 40.310948,39.242775 C 40.310948,39.242775 37.012166,32.72261 29.680284,28.21162 L 40.506226,26.642559 L 38.998349,19.157061 C 31.992149,20.83538 27.747274,20.962407 23.921379,18.772128 z " - id="path1324" - sodipodi:nodetypes="czccccccccs" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.72577804;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1326" - sodipodi:cx="10.555883" - sodipodi:cy="4.0385542" - sodipodi:rx="5.074944" - sodipodi:ry="5.074944" - d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" - transform="matrix(1.37826,0,0,1.377401,12.95457,3.935583)" /> - <path - sodipodi:type="arc" - style="opacity:0.25;fill:url(#radialGradient4330);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.310805,0,0,2.323084,-11.5867,18.20601)" /> - <path - style="opacity:1;fill:url(#linearGradient2261);fill-opacity:1;stroke:#b49500;stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 23.921379,18.772128 C 20.531101,16.831234 21.460943,23.017888 19.098361,27.075535 C 16.785976,31.046972 7.4937606,36.040098 7.4937606,36.040098 L 12.246433,45.509102 L 23.851631,34.738731 C 23.851631,34.738731 31.648476,39.799175 34.033545,45.317469 L 40.310948,39.242775 C 40.310948,39.242775 37.012166,32.72261 29.680284,28.21162 L 40.661681,26.564831 L 38.687438,18.690695 C 31.681238,20.369014 27.747274,20.962407 23.921379,18.772128 z " - id="path4275" - sodipodi:nodetypes="czccccccccs" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.97533494" - inkscape:original="M 22.84375 18.40625 C 20.718205 18.345643 21.161009 23.512059 19.09375 27.0625 C 16.781366 31.033937 7.5 36.03125 7.5 36.03125 L 12.25 45.5 L 23.84375 34.75 C 23.84375 34.75 31.646181 39.794206 34.03125 45.3125 L 40.3125 39.25 C 40.312501 39.25 37.019382 32.72974 29.6875 28.21875 L 40.65625 26.5625 L 38.6875 18.6875 C 31.681299 20.365819 27.732145 20.971529 23.90625 18.78125 C 23.482465 18.538638 23.147399 18.414908 22.84375 18.40625 z " - xlink:href="#path4275" - style="opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4304" - inkscape:href="#path4275" - d="M 22.53125,19.15625 C 22.35655,19.185124 22.015713,19.423413 21.625,20.09375 C 21.234287,20.764087 20.848022,21.75407 20.46875,22.875 C 19.710206,25.11686 19.002281,27.842341 17.84375,29.84375 C 16.485288,32.190546 13.833524,33.858876 11.53125,35.0625 C 9.7758989,35.980194 8.9024732,36.291093 8.25,36.53125 L 12,44.09375 L 22.8125,34 C 23.141077,33.70262 23.62883,33.664114 24,33.90625 C 24,33.90625 26.045443,35.241847 28.375,37.28125 C 30.391732,39.046791 32.509362,41.396107 33.9375,43.96875 L 38.875,39.1875 C 38.425182,38.341062 35.513684,33.014709 28.875,28.90625 C 28.511738,28.695573 28.324082,28.276051 28.409163,27.864827 C 28.494244,27.453602 28.832963,27.142985 29.25,27.09375 L 39.1875,25.65625 L 38.03125,19.96875 C 31.456326,21.456721 26.979371,21.554763 23.03125,19.28125 C 22.754401,19.121827 22.666044,19.133971 22.53125,19.15625 z " /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient2269);fill-opacity:1;stroke:#b49500;stroke-width:0.72577804;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4302" - sodipodi:cx="10.555883" - sodipodi:cy="4.0385542" - sodipodi:rx="5.074944" - sodipodi:ry="5.074944" - d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" - transform="matrix(1.37826,0,0,1.377401,13.96243,3.935583)" /> - <path - sodipodi:type="arc" - style="opacity:0.5;fill:#fce94f;fill-opacity:1;stroke:#ffffff;stroke-width:0.84666103;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4273" - sodipodi:cx="10.555883" - sodipodi:cy="4.0385542" - sodipodi:rx="5.074944" - sodipodi:ry="5.074944" - d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" - transform="matrix(1.181111,0,0,1.181111,16.03826,4.728084)" /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/bonjour.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,207 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable" - sodipodi:docname="bonjour.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/bonjour.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2314"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2316" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2318" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.934099,4.045903e-17,-5.060684e-9,-0.395926,20.78896,14.59809)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2314" - id="linearGradient2320" - x1="11.237947" - y1="2.7057509" - x2="11.237947" - y2="10.98068" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2314" - id="linearGradient2324" - gradientUnits="userSpaceOnUse" - x1="11.237947" - y1="2.6204424" - x2="11.237947" - y2="10.810062" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2314" - id="linearGradient2328" - gradientUnits="userSpaceOnUse" - x1="11.237947" - y1="2.876368" - x2="11.237947" - y2="10.89537" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="12.003863" - inkscape:cx="41.170813" - inkscape:cy="23.799748" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#f57900" - inkscape:window-width="1268" - inkscape:window-height="972" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.611787,0,0,2.323081,-14.82185,18.20605)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1341" - sodipodi:cx="11.237947" - sodipodi:cy="7.9095716" - sodipodi:rx="3.0935922" - sodipodi:ry="3.0935922" - d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" - transform="matrix(1.290432,0,0,1.297381,-3.009737,-2.680289)" /> - <path - style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#7d7f7a;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1" - d="M 35.46875,4.5366208 C 31.635379,4.6522391 27.705058,6.4906706 25.53125,9.7866208 C 26.103022,9.4743488 35.303923,4.6093611 38.34375,12.599121 C 39.472527,11.34018 43.22049,11.040461 45.5,12.224121 C 44.713989,6.8257933 40.179035,4.3945539 35.46875,4.5366208 z M 17.46875,4.5678708 C 18.127573,6.5529792 17.95859,8.1732436 17.53125,9.1616208 C 21.771815,8.0014671 29.858933,21.430311 30.5,22.505371 C 25.376692,11.592709 20.897066,5.8681195 17.46875,4.5678708 z M 5.34375,7.5678708 C -3.2027906,14.070713 3.9432311,26.177264 13.4375,26.536621 C 12.842607,26.198616 3.4390694,20.691845 9.4375,13.724121 C 7.6531589,13.401091 5.4098365,10.216725 5.34375,7.5678708 z M 21.46875,14.599121 C 14.518079,24.752705 11.892887,31.742633 12.65625,35.567871 C 14.072321,33.976734 15.618903,33.346912 16.75,33.255371 C 13.282151,29.863924 20.985214,15.493469 21.46875,14.599121 z M 37.40625,21.630371 C 36.029184,26.189083 21.006896,27.252123 18.78125,27.380371 C 31.047662,28.025568 38.491655,26.618231 41.5,23.942871 C 39.411924,23.554843 38.044876,22.56197 37.40625,21.630371 z M 33.125,28.599121 C 33.123038,29.265224 33.537967,40.230123 24.458146,38.651097 C 25.058081,40.306995 23.321409,43.5863 21.031089,44.953234 C 30.971079,48.901331 37.527529,36.737136 33.125,28.599121 z " - id="rect2206" - sodipodi:nodetypes="ccccccccccccccccccccccccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.97818917" - inkscape:original="M 35.46875 4.53125 C 31.635379 4.6468685 27.705058 6.4852998 25.53125 9.78125 C 26.103022 9.4689777 35.303923 4.6039901 38.34375 12.59375 C 39.472527 11.334809 43.22049 11.03509 45.5 12.21875 C 44.713989 6.8204222 40.179035 4.3891831 35.46875 4.53125 z M 17.46875 4.5625 C 18.127573 6.5476086 17.95859 8.1678728 17.53125 9.15625 C 21.771815 7.996096 29.858933 21.42494 30.5 22.5 C 25.376692 11.587338 20.897066 5.8627487 17.46875 4.5625 z M 5.34375 7.5625 C -3.2027906 14.065342 3.9432311 26.171893 13.4375 26.53125 C 12.842607 26.193245 3.4390694 20.686474 9.4375 13.71875 C 7.6531589 13.39572 5.4098365 10.211354 5.34375 7.5625 z M 21.46875 14.59375 C 14.518079 24.747334 11.892887 31.737262 12.65625 35.5625 C 14.072321 33.971363 15.618903 33.341541 16.75 33.25 C 13.282151 29.858553 20.985214 15.488098 21.46875 14.59375 z M 37.40625 21.625 C 36.029184 26.183712 21.006896 27.246752 18.78125 27.375 C 31.047662 28.020197 38.491655 26.61286 41.5 23.9375 C 39.411924 23.549472 38.044876 22.556599 37.40625 21.625 z M 33.125 28.59375 C 33.123038 29.259853 33.548571 40.235276 24.46875 38.65625 C 25.068686 40.312149 23.32157 43.601816 21.03125 44.96875 C 30.971239 48.916845 37.527529 36.731765 33.125 28.59375 z " - xlink:href="#rect2206" - style="opacity:0.4;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1" - id="path2265" - d="M 35.5,6.4375 C 33.368939,6.5017749 31.254587,7.2183109 29.4375,8.375 C 29.955273,8.2616185 30.342793,8.0837857 30.90625,8.03125 C 32.406836,7.8913382 34.078294,8.0394993 35.59375,8.8125 C 36.831972,9.4440897 37.86888,10.628822 38.6875,12.1875 C 39.489624,11.770011 40.411361,11.500994 41.4375,11.4375 C 42.258666,11.386689 43.10461,11.462473 43.9375,11.625 C 43.379009,10.119471 42.589365,8.8531272 41.40625,8.03125 C 39.790488,6.908825 37.677617,6.3718209 35.5,6.4375 z M 18.78125,7.53125 C 18.821476,8.1885616 18.763233,8.7406401 18.65625,9.28125 C 19.760339,9.4560073 20.842148,9.9390765 21.875,10.78125 C 22.166416,11.018866 22.428639,11.416981 22.71875,11.6875 C 22.66814,11.618108 22.612837,11.505519 22.5625,11.4375 C 21.155108,9.5357202 19.912201,8.3834952 18.78125,7.53125 z M 4.78125,10.5 C 2.1367338,13.32142 1.9732812,16.73063 3.5,19.84375 C 4.6796069,22.249077 6.8918614,24.272293 9.5,25.4375 C 9.0508422,24.984485 8.5946267,24.68144 8.1875,24.125 C 7.2714393,22.872975 6.524154,21.350596 6.46875,19.59375 C 6.4232564,18.151162 7.0064835,16.584718 8.0625,15.03125 C 7.2533732,14.545104 6.5354947,13.881423 5.9375,13 C 5.4271977,12.247833 5.0629652,11.390597 4.78125,10.5 z M 37.5625,24 C 36.85358,24.922553 35.872279,25.684009 34.625,26.25 C 33.981881,26.541835 33.133881,26.670217 32.40625,26.90625 C 35.442669,26.486299 37.633021,25.855821 39.1875,25.0625 C 38.533201,24.753288 38.014785,24.406514 37.5625,24 z M 15.59375,27.6875 C 15.447519,28.018151 15.191854,28.433804 15.0625,28.75 C 14.093097,31.119641 13.782747,32.928132 13.6875,34.4375 C 14.296929,34.034852 14.855783,33.77311 15.4375,33.59375 C 14.976511,32.494336 14.815677,31.243494 15,29.84375 C 15.08934,29.165305 15.417606,28.406637 15.59375,27.6875 z M 33.3125,33.78125 C 33.133192,34.418356 33.085183,34.999527 32.78125,35.65625 C 32.13654,37.049308 31.160565,38.398872 29.65625,39.3125 C 28.414521,40.06665 26.766693,40.371954 24.875,40.25 C 24.843897,41.165669 24.622124,42.10692 24.15625,43.03125 C 23.766181,43.805178 23.234663,44.527693 22.625,45.1875 C 26.385249,45.969725 29.45049,44.399 31.40625,41.59375 C 32.935546,39.400201 33.59997,36.546168 33.3125,33.78125 z " - inkscape:href="#rect2206" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77265418;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2216" - sodipodi:cx="11.237947" - sodipodi:cy="7.9095716" - sodipodi:rx="3.0935922" - sodipodi:ry="3.0935922" - d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" - transform="matrix(-0.645216,1.118132,-1.123564,-0.649031,58.6294,10.13592)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2222" - sodipodi:cx="11.237947" - sodipodi:cy="7.9095716" - sodipodi:rx="3.0935922" - sodipodi:ry="3.0935922" - d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" - transform="matrix(-0.645216,-1.117547,1.123565,-0.64869,15.8724,57.25531)" /> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#linearGradient2320);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2228" - sodipodi:cx="11.237947" - sodipodi:cy="7.9095716" - sodipodi:rx="3.0935922" - sodipodi:ry="3.0935922" - d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" - transform="matrix(0.971301,0,0,0.976532,0.576636,-0.142509)" /> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#linearGradient2324);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2322" - sodipodi:cx="11.237947" - sodipodi:cy="7.9095716" - sodipodi:rx="3.0935922" - sodipodi:ry="3.0935922" - d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" - transform="matrix(0.971301,0,0,0.976532,31.58938,9.755058)" /> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#linearGradient2328);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2326" - sodipodi:cx="11.237947" - sodipodi:cy="7.9095716" - sodipodi:rx="3.0935922" - sodipodi:ry="3.0935922" - d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" - transform="matrix(0.971301,0,0,0.976532,6.579761,31.79704)" /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/gadu-gadu.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,215 +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="48px" - height="48px" - id="svg1307" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable" - sodipodi:docname="gadu-gadu.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/gadu-gadu.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs1309"> - <linearGradient - inkscape:collect="always" - id="linearGradient2447"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2449" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2451" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient2233"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop2235" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop2237" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2233" - id="linearGradient2279" - gradientUnits="userSpaceOnUse" - x1="24.450865" - y1="5.1375499" - x2="24.450865" - y2="31.487988" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2447" - id="linearGradient2453" - x1="24.5" - y1="0.33943355" - x2="24.5" - y2="19.724688" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.004828" - inkscape:cx="40.53287" - inkscape:cy="23.900599" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - fill="#ef2929" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="972" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata1312"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - sodipodi:type="arc" - style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.160314,0,0,2.745459,-9.969125,9.788968)" /> - <path - style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 22.5,4.5130623 L 22.5,8.6366327 C 19.782905,9.0005399 17.277282,10.079925 15.21875,11.698071 L 12.0625,8.5116761 L 9.5,11.073287 L 12.6875,14.259683 C 11.068793,16.317502 9.9577835,18.791017 9.59375,21.50717 L 5.5,21.50717 L 5.5,25.505784 L 9.59375,25.505784 C 9.9535644,28.234089 11.062591,30.718808 12.6875,32.78451 L 9.5,35.970906 L 12.0625,38.501278 L 15.21875,35.346123 C 17.277282,36.964269 19.782905,38.043654 22.5,38.407561 L 22.5,42.499891 L 26.5,42.499891 L 26.5,38.407561 C 29.229107,38.042044 31.717452,36.944842 33.78125,35.314883 L 36.96875,38.501278 L 39.5,35.970906 L 36.3125,32.78451 C 37.936789,30.719597 39.014761,28.232873 39.375,25.505784 L 43.5,25.505784 L 43.5,21.50717 L 39.375,21.50717 C 39.010966,18.791018 37.931208,16.317502 36.3125,14.259683 L 39.5,11.073287 L 36.96875,8.5116761 L 33.78125,11.698071 L 33.75,11.698071 C 31.691468,10.079924 29.217095,9.0005401 26.5,8.6366327 L 26.5,4.5130623 L 22.5,4.5130623 z M 23.8125,11.354441 C 24.033452,11.344807 24.274977,11.354441 24.5,11.354441 C 31.700731,11.354441 36.65625,16.339482 36.65625,23.537717 C 36.656248,30.735953 31.700731,35.689753 24.5,35.689753 C 17.29927,35.689754 12.502002,30.735951 12.502002,23.537717 C 12.502002,16.564428 16.962974,11.653081 23.8125,11.354441 z " - id="path2394" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccssssc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1" - inkscape:original="M 22.5 4.5 L 22.5 8.625 C 19.782905 8.988907 17.277282 10.069354 15.21875 11.6875 L 12.0625 8.5 L 9.5 11.0625 L 12.6875 14.25 C 11.068793 16.307819 9.9577835 18.783847 9.59375 21.5 L 5.5 21.5 L 5.5 25.5 L 9.59375 25.5 C 9.9535644 28.228306 11.062591 30.715548 12.6875 32.78125 L 9.5 35.96875 L 12.0625 38.5 L 15.21875 35.34375 C 17.277282 36.961896 19.782905 38.042343 22.5 38.40625 L 22.5 42.5 L 26.5 42.5 L 26.5 38.40625 C 29.229107 38.040732 31.717452 36.942459 33.78125 35.3125 L 36.96875 38.5 L 39.5 35.96875 L 36.3125 32.78125 C 37.936789 30.716335 39.014761 28.227089 39.375 25.5 L 43.5 25.5 L 43.5 21.5 L 39.375 21.5 C 39.010966 18.783848 37.931208 16.307819 36.3125 14.25 L 39.5 11.0625 L 36.96875 8.5 L 33.78125 11.6875 L 33.75 11.6875 C 31.691468 10.069353 29.217095 8.9889074 26.5 8.625 L 26.5 4.5 L 22.5 4.5 z M 23.8125 11.34375 C 24.033452 11.334116 24.274977 11.34375 24.5 11.34375 C 31.700731 11.34375 36.65625 16.333015 36.65625 23.53125 C 36.656248 30.729485 31.700731 35.6875 24.5 35.6875 C 17.29927 35.6875 12.5 30.729484 12.5 23.53125 C 12.5 16.55796 16.962974 11.64239 23.8125 11.34375 z " - xlink:href="#path2394" - style="opacity:0.2;fill:url(#linearGradient2453);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2445" - inkscape:href="#path2394" - d="M 23.5,5.5 L 23.5,8.625 C 23.503929,9.1319208 23.127956,9.5616039 22.625,9.625 C 20.085855,9.9650737 17.762357,10.960594 15.84375,12.46875 C 15.44664,12.797268 14.864902,12.77021 14.5,12.40625 L 12.0625,9.9375 L 10.9375,11.0625 L 13.40625,13.53125 C 13.77021,13.896152 13.797268,14.47789 13.46875,14.875 C 11.953567,16.801212 10.932828,19.095048 10.59375,21.625 C 10.530354,22.127956 10.100671,22.503929 9.59375,22.5 L 6.5,22.5 L 6.5,24.5 L 9.59375,24.5 C 10.100671,24.496071 10.530354,24.872044 10.59375,25.375 C 10.929039,27.917339 11.948302,30.223346 13.46875,32.15625 C 13.797268,32.55336 13.77021,33.135098 13.40625,33.5 L 10.9375,35.96875 L 12.03125,37.09375 L 14.5,34.625 C 14.864902,34.26104 15.44664,34.233982 15.84375,34.5625 C 17.762357,36.070656 20.085855,37.066176 22.625,37.40625 C 23.127956,37.469646 23.503929,37.899329 23.5,38.40625 L 23.5,41.5 L 25.5,41.5 L 25.5,38.40625 C 25.496071,37.899329 25.872044,37.469646 26.375,37.40625 C 28.92215,37.065102 31.227806,36.054308 33.15625,34.53125 C 33.55336,34.202732 34.135098,34.22979 34.5,34.59375 L 36.96875,37.0625 L 38.0625,35.96875 L 35.59375,33.5 C 35.22979,33.135098 35.202732,32.55336 35.53125,32.15625 C 37.047015,30.229299 38.038333,27.923642 38.375,25.375 C 38.438396,24.872044 38.868079,24.496071 39.375,24.5 L 42.5,24.5 L 42.5,22.5 L 39.375,22.5 C 38.868079,22.503929 38.438396,22.127956 38.375,21.625 C 38.034921,19.087581 37.042567,16.796296 35.53125,14.875 C 35.202732,14.47789 35.22979,13.896152 35.59375,13.53125 L 38.09375,11.03125 L 36.96875,9.9375 L 34.5,12.40625 C 34.307701,12.592396 34.048815,12.693699 33.78125,12.6875 L 33.75,12.6875 C 33.522871,12.68767 33.302449,12.610522 33.125,12.46875 C 31.202527,10.957555 28.913145,9.9649402 26.375,9.625 C 25.872044,9.5616039 25.496071,9.1319208 25.5,8.625 L 25.5,5.5 L 23.5,5.5 z M 23.78125,10.34375 C 24.062872,10.331471 24.303519,10.34375 24.5,10.34375 C 32.162653,10.34375 37.65625,15.874058 37.65625,23.53125 C 37.656248,31.188442 32.15976,36.6875 24.5,36.6875 C 20.67012,36.6875 17.391923,35.341265 15.09375,33 C 12.795577,30.658735 11.5,27.35261 11.5,23.53125 C 11.5,16.131287 16.473536,10.662367 23.78125,10.34375 z " /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.08146787;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2198" - sodipodi:cx="24.450865" - sodipodi:cy="23.959385" - sodipodi:rx="14.03053" - sodipodi:ry="14.03053" - d="M 38.481395 23.959385 A 14.03053 14.03053 0 1 1 10.420335,23.959385 A 14.03053 14.03053 0 1 1 38.481395 23.959385 z" - transform="matrix(0.924879,0,0,0.924459,1.889957,1.34006)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient2279);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.12198293;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2277" - sodipodi:cx="24.450865" - sodipodi:cy="23.959385" - sodipodi:rx="14.03053" - sodipodi:ry="14.03053" - d="M 38.481395 23.959385 A 14.03053 14.03053 0 1 1 10.420335,23.959385 A 14.03053 14.03053 0 1 1 38.481395 23.959385 z" - transform="matrix(0.890914,0,0,0.891279,2.716374,2.14037)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2200" - sodipodi:cx="10.54341" - sodipodi:cy="-2.7068274" - sodipodi:rx="2.4204714" - sodipodi:ry="1.7230475" - d="M 12.963882 -2.7068274 A 2.4204714 1.7230475 0 1 1 8.1229389,-2.7068274 A 2.4204714 1.7230475 0 1 1 12.963882 -2.7068274 z" - transform="matrix(0.827565,0,0,0.87352,11.27774,22.85935)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2202" - sodipodi:cx="10.54341" - sodipodi:cy="-2.7068274" - sodipodi:rx="2.4204714" - sodipodi:ry="1.7230475" - d="M 12.963882 -2.7068274 A 2.4204714 1.7230475 0 1 1 8.1229389,-2.7068274 A 2.4204714 1.7230475 0 1 1 12.963882 -2.7068274 z" - transform="matrix(0.827567,0,0,0.87352,20.27772,22.86958)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:4.5851903;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2204" - sodipodi:cx="24.450865" - sodipodi:cy="23.959385" - sodipodi:rx="14.03053" - sodipodi:ry="14.03053" - d="M 36.657066,30.877796 A 14.03053,14.03053 0 0 1 11.928959,30.288496" - transform="matrix(0.453563,0,0,0.419476,13.51464,14.26249)" - sodipodi:start="0.51564596" - sodipodi:end="2.6736" - sodipodi:open="true" /> - <path - sodipodi:type="arc" - style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.75245398;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2465" - sodipodi:cx="26.658085" - sodipodi:cy="20.675463" - sodipodi:rx="9.863492" - sodipodi:ry="8.2640066" - d="M 36.521577 20.675463 A 9.863492 8.2640066 0 1 1 16.794593,20.675463 A 9.863492 8.2640066 0 1 1 36.521577 20.675463 z" - transform="matrix(1.216989,0,0,1.451287,-7.948546,-6.503855)" /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/google-talk.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,261 +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" - id="svg2417" - sodipodi:version="0.32" - inkscape:version="0.46" - width="48" - height="48" - version="1.0" - sodipodi:docbase="/home/vinicius/tango-icon-theme-code/protocols/scalable" - sodipodi:docname="google-talk.svg" - inkscape:export-filename="/home/vinicius/tango-icon-theme-code/protocols/48x48/google-talk.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata2422"> - <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>Google Talk Icon</dc:title> - <dc:date>2006-12-03</dc:date> - <dc:creator> - <cc:Agent> - <dc:title>Vinicius Scopel Depizzol</dc:title> - </cc:Agent> - </dc:creator> - <dc:source>vdepizzol@gmail.com</dc:source> - <dc:subject> - <rdf:Bag> - <rdf:li>Google Talk</rdf:li> - <rdf:li>GTalk</rdf:li> - <rdf:li>VOIP</rdf:li> - <rdf:li>Protocol</rdf:li> - </rdf:Bag> - </dc:subject> - <cc:license - rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" /> - </cc:Work> - <cc:License - rdf:about="http://creativecommons.org/licenses/by-sa/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:requires - rdf:resource="http://web.resource.org/cc/Attribution" /> - <cc:permits - rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> - <cc:requires - rdf:resource="http://web.resource.org/cc/ShareAlike" /> - </cc:License> - </rdf:RDF> - </metadata> - <defs - id="defs2420"> - <linearGradient - id="linearGradient3299"> - <stop - style="stop-color:#000000;stop-opacity:0.11764706;" - offset="0" - id="stop3301" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3303" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3299" - id="radialGradient3305" - cx="15.993708" - cy="26.722889" - fx="15.993708" - fy="26.722889" - r="15.912521" - gradientTransform="matrix(1,0,0,0.295918,-3.769888e-16,18.8151)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - id="linearGradient3527"> - <stop - style="stop-color:#90ba1f;stop-opacity:1;" - offset="0" - id="stop3529" /> - <stop - style="stop-color:#638205;stop-opacity:1;" - offset="1" - id="stop3531" /> - </linearGradient> - <linearGradient - id="linearGradient3518"> - <stop - style="stop-color:#e7d000;stop-opacity:1;" - offset="0" - id="stop3520" /> - <stop - style="stop-color:#c4a000;stop-opacity:1;" - offset="1" - id="stop3522" /> - </linearGradient> - <linearGradient - id="linearGradient3486"> - <stop - style="stop-color:#ef2929;stop-opacity:1;" - offset="0" - id="stop3488" /> - <stop - style="stop-color:#cc0000;stop-opacity:1;" - offset="1" - id="stop3490" /> - </linearGradient> - <linearGradient - id="linearGradient3510"> - <stop - style="stop-color:#3465a4;stop-opacity:1;" - offset="0" - id="stop3512" /> - <stop - style="stop-color:#204a87;stop-opacity:1;" - offset="1" - id="stop3514" /> - </linearGradient> - <linearGradient - id="linearGradient3286"> - <stop - style="stop-color:#d1d1d1;stop-opacity:1;" - offset="0" - id="stop3288" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3290" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3527" - id="linearGradient4249" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.465389,0,0,2.513895,-105.5963,47.11115)" - x1="55.483334" - y1="-14.40625" - x2="55.483334" - y2="-7.9999866" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3518" - id="linearGradient4252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.901968,0,0,2.518653,-127.7063,47.25387)" - x1="53.162479" - y1="-14.322747" - x2="53.162479" - y2="-9.9868765" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3486" - id="linearGradient4255" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.48585,0,0,2.48585,-103.0483,47.16833)" - x1="49.45462" - y1="-12.934268" - x2="49.45462" - y2="-8.0529032" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3510" - id="linearGradient4258" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.48585,0,0,2.48585,-100.3774,47.19573)" - x1="45.5" - y1="-14" - x2="45.5" - y2="-8.1156492" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3286" - id="linearGradient4262" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.99378,0,0,2.99378,9.552849e-2,-0.965622)" - x1="8" - y1="15" - x2="8" - y2="0.9916327" /> - </defs> - <sodipodi:namedview - inkscape:window-height="714" - inkscape:window-width="1014" - inkscape:pageshadow="2" - inkscape:pageopacity="0" - borderopacity="1" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - showguides="true" - inkscape:guide-bbox="true" - inkscape:zoom="1" - inkscape:cx="27.558407" - inkscape:cy="20.353863" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2417" - showborder="false" - inkscape:showpageshadow="false" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#radialGradient3305);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path2424" - sodipodi:cx="15.993708" - sodipodi:cy="26.722889" - sodipodi:rx="15.912521" - sodipodi:ry="4.7088075" - d="M 31.906229,26.722889 A 15.912521,4.7088075 0 1 1 31.906148,26.707864" - sodipodi:start="0" - sodipodi:end="6.2799944" - sodipodi:open="true" - transform="matrix(1.45896,0,0,1.538545,0.742037,-1.869655)" /> - <path - id="path3264" - d="M 21.80045,3.5250496 C 10.471905,4.3704822 1.592428,11.452408 1.592428,19.990844 C 1.592428,26.29506 6.3896918,31.807945 13.473996,34.585527 C 13.301077,37.113716 12.611393,40.274075 10.57377,42.444203 C 16.402876,42.263357 20.689781,39.28536 23.484452,36.456639 C 23.677129,36.460226 23.851935,36.456639 24.045787,36.456639 C 36.451938,36.456639 46.499142,29.098509 46.499142,19.990844 L 46.499142,19.897289 C 46.459634,10.808172 36.426737,3.5250496 24.045787,3.5250496 C 23.270404,3.5250496 22.555687,3.4686875 21.80045,3.5250496 z " - style="fill:url(#linearGradient4262);fill-opacity:1;fill-rule:nonzero;stroke:#797979;stroke-width:0.99999946;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - sodipodi:nodetypes="ccccccccccccccccc" - id="path3552" - d="M 14.063569,10.992619 L 10.975162,10.992619 L 10.975162,15.008301 L 9,15.008301 L 9,18.010155 L 10.975162,18.010155 L 10.975162,24.823081 C 10.975162,28.316382 16.413217,26.749332 16.906897,25.946127 L 16.765885,23.742745 C 16.14428,24.364355 14.063569,24.882059 14.063569,24.09267 L 14.063569,18.010155 L 16.089796,18.010155 L 16.089796,15.008301 L 14.063569,15.008301 L 14.063569,11.090553 L 14.063569,11.090553 L 14.063569,10.992619 z " - style="fill:url(#linearGradient4258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:url(#linearGradient4255);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 20.513467,15.031036 C 20.138171,15.089956 19.656414,15.165467 19.228078,15.318859 C 17.702481,15.865192 16.671718,16.778263 16.671718,16.778263 L 17.928902,19.157272 C 19.392632,18.022338 22.111019,16.595753 21.828421,20.24551 C 16.134551,19.714196 14.746648,23.348506 16.160515,25.369297 C 17.612211,27.444158 20.173876,27.641863 21.329645,26.185476 C 21.514145,25.952987 21.740964,25.678231 21.873764,25.369297 C 22.016347,25.75349 22.226874,26.072865 22.417883,26.321505 C 22.574471,26.517581 23.312178,27.152657 24.004897,27.137684 C 24.806193,27.120365 25.583813,26.58185 26,25.958759 C 25.645136,26.22137 24.252362,25.650216 24.231613,24.779835 L 24.231613,18.29575 C 24.142462,16.667478 22.425687,14.730825 20.513467,15.031036 z M 21.193616,23.328851 C 21.034551,24.122851 19.396586,24.681233 18.790423,24.326402 C 17.894487,23.801947 19.229645,22.393776 20.377437,22.376643 C 21.417389,22.361119 21.33274,22.634384 21.193616,23.328851 z " - id="path3554" - sodipodi:nodetypes="cscccsscsscccccsss" /> - <path - id="path3558" - d="M 29,11 L 26.098032,11 L 26.098032,27.104637 L 29,27.104637 L 29,11 z " - style="fill:url(#linearGradient4252);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccccccccccc" - id="path3560" - d="M 30,10.895363 L 30,19.851112 L 30,27 L 32.963722,27 L 32.963722,22.924045 L 36.561805,27.064163 L 38.705904,25.193137 L 34.676855,20.715264 L 38.705904,16.23739 L 36.754295,14.238037 L 32.968278,18.187047 C 32.968278,18.187047 32.963722,10.895363 32.963722,10.895363 L 30,10.895363 z " - style="fill:url(#linearGradient4249);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" - d="M 21.84375,4.03125 C 16.273135,4.4469767 11.295199,6.3799921 7.75,9.25 C 4.204801,12.120008 2.09375,15.904106 2.09375,20 C 2.093752,26.050562 6.709849,31.401486 13.65625,34.125 C 13.889662,34.247612 13.966606,34.430582 13.96875,34.625 C 13.8154,36.867085 13.233839,39.586592 11.6875,41.78125 C 16.756159,41.27394 20.580438,38.669315 23.125,36.09375 C 23.324492,35.928053 23.831229,35.96875 24.03125,35.96875 C 30.135475,35.96875 35.660367,34.1562 39.625,31.25 C 43.589633,28.3438 46,24.369973 46,20 L 46,19.90625 C 45.981043,15.545078 43.55655,11.604324 39.59375,8.71875 C 35.63095,5.8331761 30.123683,4.03125 24.03125,4.03125 C 23.381564,4.0312499 22.681539,3.982177 21.84375,4.03125 z M 24.03125,5.03125 C 29.927599,5.03125 35.264412,6.757119 39.03125,9.5 C 42.798088,12.242881 44.982638,15.911852 45,19.90625 L 45,20 C 45,24.002253 42.800008,27.674883 39.03125,30.4375 C 35.262492,33.200117 29.937773,34.96875 24.03125,34.96875 C 23.079654,34.946683 22.695929,35.117383 22.40625,35.40625 C 20.316957,37.520999 17.387178,39.593629 13.59375,40.46875 C 14.470139,38.520138 14.848653,36.443413 14.96875,34.6875 C 15.010593,33.903846 14.715478,33.607465 14.03125,33.1875 C 7.360656,30.572123 3.093751,25.543254 3.09375,20 C 3.09375,16.250753 5.042528,12.754344 8.40625,10.03125 C 11.769972,7.3081563 16.52295,5.4329977 21.90625,5.03125 C 22.667268,4.9737265 23.342191,5.0312499 24.03125,5.03125 z " - id="path6054" - sodipodi:nodetypes="csscccccsccssccsccscscccsscs" /> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/icq.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,440 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" - sodipodi:docname="icq.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/icq.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2256"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2258" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2260" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2248"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2250" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2252" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2240"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2242" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2244" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2232"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2234" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2236" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2224"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2226" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2228" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2216"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2218" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2220" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2208"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2210" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2212" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2361"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2363" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2365" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2321"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2323" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2325" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2321" - id="linearGradient2327" - x1="11.787398" - y1="11.115861" - x2="12.185872" - y2="12.839791" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2361" - id="linearGradient2367" - x1="14.592834" - y1="24.232048" - x2="14.592834" - y2="31.007147" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2208" - id="linearGradient2214" - x1="28.089931" - y1="3.8865747" - x2="28.089931" - y2="15.058928" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2216" - id="linearGradient2222" - x1="36.696918" - y1="10.99979" - x2="36.696918" - y2="20.717306" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2224" - id="linearGradient2230" - x1="36.701996" - y1="20.379145" - x2="36.701996" - y2="29.063459" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2232" - id="linearGradient2238" - x1="17.892992" - y1="6.7056818" - x2="17.892992" - y2="16.46983" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2240" - id="linearGradient2246" - x1="12.732279" - y1="14.645196" - x2="12.732279" - y2="23.238768" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2248" - id="linearGradient2254" - x1="21.683891" - y1="24.981401" - x2="21.683891" - y2="36.415653" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2256" - id="linearGradient2262" - x1="30.265167" - y1="27.26486" - x2="30.265167" - y2="35.256603" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="14.778489" - inkscape:cx="38.03465" - inkscape:cy="24.512139" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#ef2929" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.009823,0,0,2.74546,-8.351546,7.855242)" /> - <path - style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1" - d="M 26.367384,35.737238 C 24.85713,31.115741 25.395878,30.363552 27.387814,29.222534 C 29.379747,28.081519 30.462949,28.167777 33.584537,31.603121 C 35.536982,34.958339 35.504926,38.607457 33.513001,39.748468 C 31.521063,40.889489 28.319827,39.092453 26.367384,35.737238 z " - id="path2226" - sodipodi:nodetypes="cscsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.95876986" - inkscape:original="M 28.75 28.625 C 28.319559 28.723691 27.872983 28.933496 27.375 29.21875 C 25.383064 30.359768 24.864746 31.128501 26.375 35.75 C 28.327443 39.105215 31.508063 40.891023 33.5 39.75 C 35.491925 38.608989 35.546194 34.948968 33.59375 31.59375 C 31.252559 29.017242 30.041322 28.328926 28.75 28.625 z " - xlink:href="#path2226" - style="opacity:0.4;fill:url(#linearGradient2262);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2242" - inkscape:href="#path2226" - d="M 28.96875,26.5 C 28.686015,26.564825 28.303156,26.736844 27.84375,27 C 27.368858,27.272027 27.042376,27.491026 26.84375,27.6875 C 26.645124,27.883974 26.558141,28.035355 26.5,28.3125 C 26.386493,28.853563 26.554045,30.085975 27.25,32.25 C 28.145595,33.765674 29.317595,34.913452 30.40625,35.53125 C 31.510083,36.157661 32.416733,36.195758 33.03125,35.84375 C 33.64681,35.491146 34.046689,34.69972 34.0625,33.4375 C 34.077874,32.210233 33.659976,30.628765 32.8125,29.125 C 31.711537,27.921881 30.874722,27.139693 30.28125,26.78125 C 29.672583,26.41363 29.393014,26.402725 28.96875,26.5 z " - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" - d="M 33.709491,31.278338 C 29.169302,28.745112 29.065713,27.592023 29.859889,24.733701 C 30.654065,21.875391 31.593198,20.926512 36.586936,20.922121 C 40.576342,21.952999 43.16957,25.109445 42.375396,27.967758 C 41.581221,30.826078 37.6989,32.309217 33.709491,31.278338 z " - id="path2216" - sodipodi:nodetypes="cscsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.98264426" - inkscape:original="M 36.59375 20.9375 C 31.600012 20.941891 30.669177 21.860439 29.875 24.71875 C 29.080824 27.577072 29.17856 28.748025 33.71875 31.28125 C 37.708159 32.312129 41.580824 30.82707 42.375 27.96875 C 43.169174 25.110437 40.583155 21.968378 36.59375 20.9375 z " - xlink:href="#path2216" - style="opacity:0.4;fill:url(#linearGradient2230);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2238" - inkscape:href="#path2216" - d="M 36.4375,18.8125 C 34.127551,18.828525 32.839067,19.094363 32.1875,19.5 C 31.517812,19.916918 31.190595,20.545455 30.8125,21.90625 C 30.427461,23.292046 30.362754,23.987827 30.6875,24.625 C 31.003678,25.245362 31.967431,26.095761 34.0625,27.28125 C 35.838582,27.720407 37.581667,27.600958 38.90625,27.09375 C 40.254639,26.577426 41.138951,25.730758 41.4375,24.65625 C 41.735829,23.582532 41.424738,22.405518 40.53125,21.3125 C 39.654391,20.239825 38.199379,19.288753 36.4375,18.8125 z " - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" - d="M 36.67848,22.648043 C 32.052133,24.231706 31.299156,23.66677 30.15694,21.57801 C 29.014732,19.489253 29.101081,18.3534 32.540028,15.08008 C 35.898764,13.032731 39.551708,13.066339 40.693916,15.155093 C 41.836132,17.243854 40.037215,20.600694 36.67848,22.648043 z " - id="path2224" - sodipodi:nodetypes="cscsc" /> - <path - style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1" - d="M 15.680976,33.623016 C 11.05302,35.149988 10.299782,34.605272 9.1571703,32.591284 C 8.0145636,30.577295 8.100941,29.482102 11.541085,26.325956 C 14.900987,24.351896 18.555202,24.3843 19.697807,26.398287 C 20.840426,28.412273 19.040877,31.648952 15.680976,33.623016 z " - id="path2228" - sodipodi:nodetypes="cscsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0000435" - inkscape:original="M 16.4375 24.875 C 14.961133 24.861908 13.211201 25.32547 11.53125 26.3125 C 8.091106 29.468646 8.0136433 30.579759 9.15625 32.59375 C 10.298862 34.607738 11.059544 35.151972 15.6875 33.625 C 19.047401 31.650936 20.830119 28.420236 19.6875 26.40625 C 19.116197 25.399256 17.913867 24.888092 16.4375 24.875 z " - xlink:href="#path2228" - style="opacity:0.35;fill:url(#linearGradient2367);fill-opacity:1;stroke:#ffffff;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" - id="path2244" - inkscape:href="#path2228" - d="M 16.4375,25.5625 C 15.225911,25.551756 13.660678,25.986763 12.15625,26.84375 C 10.550146,28.330129 9.7557904,29.328548 9.5625,29.90625 C 9.3649665,30.496634 9.5025865,30.849414 10.03125,31.78125 C 10.302942,32.260138 10.523169,32.613015 10.71875,32.8125 C 10.914331,33.011985 11.040068,33.097389 11.3125,33.15625 C 11.836378,33.269438 13.116625,33.081343 15.21875,32.40625 C 16.739932,31.503646 17.889523,30.32189 18.5,29.21875 C 19.115832,28.105933 19.160409,27.206976 18.8125,26.59375 C 18.466678,25.984194 17.687878,25.573588 16.4375,25.5625 z " - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - transform="translate(-3.261295e-4,1.945628e-4)" /> - <path - style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" - d="M 15.781196,31.980797 C 18.406839,27.241987 19.600601,27.133027 22.558995,27.959412 C 25.517377,28.785792 26.498997,29.764879 26.5,34.97494 C 25.429993,39.137961 22.160569,41.845948 19.202184,41.019566 C 16.24379,40.193181 14.711189,36.143816 15.781196,31.980797 z " - id="path2218" - sodipodi:nodetypes="cscsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0089091" - inkscape:original="M 20.625 27.5625 C 18.918105 27.466646 17.750483 28.414643 15.78125 31.96875 C 14.711243 36.131769 16.229105 40.204865 19.1875 41.03125 C 22.145885 41.857632 25.429993 39.13177 26.5 34.96875 C 26.498997 29.758689 25.520883 28.79513 22.5625 27.96875 C 21.822902 27.762154 21.193965 27.594451 20.625 27.5625 z " - xlink:href="#path2218" - style="opacity:0.4;fill:url(#linearGradient2254);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2240" - inkscape:href="#path2218" - d="M 20.5625,25.5 C 19.907811,25.463235 19.561004,25.566238 18.96875,26.09375 C 18.39939,26.600871 17.659523,27.663233 16.75,29.28125 C 16.300255,31.130934 16.385773,32.955321 16.90625,34.34375 C 17.438569,35.763767 18.360161,36.690332 19.46875,37 C 20.577929,37.309833 21.771436,36.972415 22.90625,36.03125 C 24.020697,35.106976 25.004678,33.595596 25.5,31.75 C 25.485662,29.33285 25.202556,27.963789 24.78125,27.28125 C 24.348724,26.580535 23.69033,26.268606 22.28125,25.875 C 21.548137,25.670215 20.975703,25.523204 20.5625,25.5 z " - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" - d="M 22.589636,12.085809 C 24.174724,16.906782 23.609284,17.691436 21.518638,18.881701 C 19.427991,20.071964 18.291112,19.981984 15.014841,16.398361 C 12.965643,12.898328 12.999283,9.0917088 15.089923,7.9014452 C 17.180566,6.7111801 20.540438,8.5857754 22.589636,12.085809 z " - id="path2222" - sodipodi:nodetypes="cscsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.96927398" - inkscape:original="M 16.84375 7.5625 C 16.202747 7.4994497 15.616411 7.6086837 15.09375 7.90625 C 13.00311 9.0965136 12.950802 12.906217 15 16.40625 C 18.276271 19.989873 19.440602 20.065263 21.53125 18.875 C 23.621896 17.684735 24.178838 16.914723 22.59375 12.09375 C 21.056852 9.4687248 18.76676 7.7516509 16.84375 7.5625 z " - xlink:href="#path2222" - style="opacity:0.4;fill:url(#linearGradient2238);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2232" - inkscape:href="#path2222" - d="M 16.75,5.46875 C 16.27484,5.4220124 15.902933,5.4936816 15.5625,5.6875 C 14.90056,6.0643619 14.484412,6.9299953 14.46875,8.25 C 14.453381,9.5453187 14.903286,11.163341 15.8125,12.75 C 17.344427,14.407623 18.369904,15.229192 19,15.4375 C 19.647022,15.651404 20.092056,15.52125 21.0625,14.96875 C 21.562192,14.684261 21.911138,14.459507 22.125,14.25 C 22.338862,14.040493 22.436992,13.887548 22.5,13.59375 C 22.621375,13.027792 22.42463,11.70151 21.71875,9.5 C 20.300551,7.1027674 18.170695,5.6084922 16.75,5.46875 z " - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - transform="translate(0,6.766591e-2)" /> - <path - style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000072;stroke-miterlimit:4;stroke-opacity:1" - d="M 15.110245,15.90519 C 19.82436,18.526878 19.931835,19.720374 19.106984,22.678924 C 18.282136,25.637465 17.306916,26.619664 12.121668,26.624562 C 7.9793465,25.557832 5.2869063,22.290944 6.1117518,19.332403 C 6.9366004,16.373851 10.967924,14.838461 15.110245,15.90519 z " - id="path2220" - sodipodi:nodetypes="cscsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0062078" - inkscape:original="M 12.0625 15.5625 C 9.1424837 15.682984 6.7436363 17.124836 6.125 19.34375 C 5.3001545 22.302291 7.9826786 25.558271 12.125 26.625 C 17.310248 26.620102 18.268903 25.64604 19.09375 22.6875 C 19.918601 19.72895 19.839115 18.527938 15.125 15.90625 C 14.08942 15.639568 13.035839 15.522339 12.0625 15.5625 z " - xlink:href="#path2220" - style="opacity:0.4;fill:url(#linearGradient2246);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2234" - inkscape:href="#path2220" - d="M 12.09375,13.5 C 9.4814409,13.607788 7.5619569,14.883144 7.09375,16.5625 C 6.7827532,17.677978 7.1032888,18.873814 8.03125,20 C 8.9425567,21.105974 10.44513,22.068869 12.28125,22.5625 C 14.685442,22.546282 16.040043,22.264255 16.71875,21.84375 C 17.415725,21.411927 17.731987,20.753401 18.125,19.34375 C 18.525721,17.906458 18.614647,17.219888 18.28125,16.5625 C 17.956369,15.921903 16.929755,15.04136 14.75,13.8125 C 13.845755,13.591694 12.918322,13.465977 12.09375,13.5 z " - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0066811" - inkscape:original="M 37.4375 13.5625 C 35.961646 13.548922 34.210618 14.070075 32.53125 15.09375 C 29.092303 18.36707 29.014042 19.473742 30.15625 21.5625 C 31.298466 23.65126 32.061155 24.239913 36.6875 22.65625 C 40.046235 20.608901 41.829716 17.245011 40.6875 15.15625 C 40.116396 14.111873 38.913354 13.576078 37.4375 13.5625 z " - xlink:href="#path2224" - style="opacity:0.4;fill:url(#linearGradient2222);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2236" - inkscape:href="#path2224" - d="M 37.4375,11.5 C 36.209007,11.488698 34.640843,11.934525 33.125,12.84375 C 31.572994,14.343465 30.790495,15.387459 30.59375,16 C 30.38941,16.636186 30.501711,17.062882 31.03125,18.03125 C 31.303727,18.529526 31.551384,18.882242 31.75,19.09375 C 31.948616,19.305258 32.078397,19.376294 32.34375,19.4375 C 32.849897,19.554247 34.121629,19.37131 36.1875,18.6875 C 37.705568,17.753005 38.884734,16.530737 39.5,15.375 C 40.120629,14.209188 40.168638,13.213767 39.8125,12.5625 C 39.457388,11.913107 38.674773,11.511383 37.4375,11.5 z " - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1" - d="M 33.125387,15.014401 C 30.26869,19.896731 28.973236,20.010902 25.764644,19.165247 C 22.556047,18.319592 21.492567,17.31342 21.500039,11.950433 C 22.667874,7.6634206 26.219761,4.8704358 29.428357,5.7160909 C 32.636953,6.5617466 34.293217,10.72739 33.125387,15.014401 z " - id="path2192" - sodipodi:nodetypes="cscsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.99950546" - inkscape:original="M 27 5.71875 C 24.592663 6.34847 22.375877 8.7222409 21.5 11.9375 C 21.492528 17.300487 22.541402 18.310595 25.75 19.15625 C 28.958592 20.001905 30.268305 19.88233 33.125 15 C 34.29283 10.712989 32.646097 6.5644059 29.4375 5.71875 C 28.635351 5.5073362 27.802446 5.5088433 27 5.71875 z " - xlink:href="#path2192" - style="opacity:0.4;fill:url(#linearGradient2214);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2230" - inkscape:href="#path2192" - d="M 27.25,3.625 C 25.314633,4.1312603 23.314958,6.1607857 22.5,9.03125 C 22.510826,11.522864 22.789343,12.909624 23.25,13.625 C 23.722547,14.358839 24.464582,14.720327 26,15.125 C 27.560661,15.536327 28.366368,15.654754 29.125,15.28125 C 29.867191,14.91584 30.838854,13.842149 32.1875,11.5625 C 32.678344,9.6587072 32.56307,7.7926235 32,6.375 C 31.424078,4.9250185 30.443053,3.9559128 29.1875,3.625 C 28.551361,3.4573398 27.889759,3.4576495 27.25,3.625 z " - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:0.21428883;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1317" - sodipodi:cx="12.075002" - sodipodi:cy="12.360133" - sodipodi:rx="1.1966218" - sodipodi:ry="1.4141895" - d="M 13.271623 12.360133 A 1.1966218 1.4141895 0 1 1 10.87838,12.360133 A 1.1966218 1.4141895 0 1 1 13.271623 12.360133 z" - transform="matrix(4.891864,1.290148,-1.13072,4.153499,-20.5947,-43.34178)" /> - <path - sodipodi:type="arc" - style="opacity:0.4;fill:url(#linearGradient2327);fill-opacity:1;stroke:#ffffff;stroke-width:0.25782824;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2319" - sodipodi:cx="12.075002" - sodipodi:cy="12.360133" - sodipodi:rx="1.1966218" - sodipodi:ry="1.4141895" - d="M 13.271623 12.360133 A 1.1966218 1.4141895 0 1 1 10.87838,12.360133 A 1.1966218 1.4141895 0 1 1 13.271623 12.360133 z" - transform="matrix(4.068634,1.071527,-0.940435,3.449674,-13.02699,-32.06442)" /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/irc.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,238 +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="48px" - height="48px" - id="svg4345" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="irc.svg" - inkscape:export-filename="/home/hbons/Desktop/pidgin.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4347"> - <linearGradient - id="linearGradient2804"> - <stop - style="stop-color:black;stop-opacity:0;" - offset="0" - id="stop2806" /> - <stop - id="stop2812" - offset="0.5" - style="stop-color:black;stop-opacity:1;" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop2808" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2804" - id="linearGradient1516" - gradientUnits="userSpaceOnUse" - x1="21.875" - y1="48.000977" - x2="21.875" - y2="40" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2781" - id="radialGradient1514" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2,0,0,0.8,36,8.8)" - cx="1" - cy="44" - fx="1" - fy="44" - r="5" /> - <linearGradient - inkscape:collect="always" - id="linearGradient2781"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop2783" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop2785" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2781" - id="radialGradient1512" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2,0,0,0.8,-13,-79.2)" - cx="1" - cy="44" - fx="1" - fy="44" - r="5" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5235"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop5237" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop5239" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3816"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3818" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3820" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3816" - id="radialGradient4179" - gradientUnits="userSpaceOnUse" - cx="31.112698" - cy="19.008621" - fx="31.112698" - fy="19.008621" - r="8.6620579" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5235" - id="radialGradient5241" - cx="23.234518" - cy="40.688972" - fx="23.234518" - fy="40.688972" - r="16.956987" - gradientTransform="matrix(1,0,0,0.133183,0,35.2699)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="13.062462" - inkscape:cx="40.814762" - inkscape:cy="25.717712" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1274" - inkscape:window-height="966" - inkscape:window-x="3" - inkscape:window-y="25" /> - <metadata - id="metadata4350"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <g - id="g1504" - style="opacity:0.12663754" - transform="matrix(0.851064,0,0,0.999995,3.148928,-3.9998)"> - <rect - transform="scale(-1,-1)" - y="-48" - x="-11" - height="8" - width="10" - id="rect1506" - style="opacity:1;color:black;fill:url(#radialGradient1512);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> - <rect - y="40" - x="38" - height="8" - width="10" - id="rect1508" - style="opacity:1;color:black;fill:url(#radialGradient1514);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> - <rect - y="40" - x="11" - height="8" - width="27" - id="rect1510" - style="opacity:1;color:black;fill:url(#linearGradient1516);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> - </g> - <path - sodipodi:type="arc" - style="opacity:0.52838428;fill:url(#radialGradient5241);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4340" - sodipodi:cx="23.234518" - sodipodi:cy="40.688972" - sodipodi:rx="16.956987" - sodipodi:ry="2.2583797" - d="M 40.191505 40.688972 A 16.956987 2.2583797 0 1 1 6.2775307,40.688972 A 16.956987 2.2583797 0 1 1 40.191505 40.688972 z" - transform="matrix(1.208941,0,0,1.980928,3.410841,15.87176)" /> - <path - style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z " - id="path4334" - transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)" - sodipodi:nodetypes="cccccccccccccccccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.94924349" - inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z " - style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4336" - d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z " - transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)" /> - <path - transform="matrix(2.539812,0,0,0.410815,-52.0204,75.74948)" - sodipodi:type="arc" - style="opacity:1;color:black;fill:url(#radialGradient4179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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" - id="path4306" - sodipodi:cx="31.112698" - sodipodi:cy="19.008621" - sodipodi:rx="8.6620579" - sodipodi:ry="8.6620579" - d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" /> - <path - style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z " - id="rect1326" - transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)" - sodipodi:nodetypes="cccccccccccccccccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.94924349" - inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z " - style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5034" - d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z " - transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)" /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/jabber.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,246 +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="48px" - height="48px" - id="svg3302" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop" - sodipodi:docname="jabber.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/home/hbons/Desktop/xmpp.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs3304"> - <linearGradient - id="linearGradient2222" - inkscape:collect="always"> - <stop - id="stop2224" - offset="0" - style="stop-color:#429538;stop-opacity:1" /> - <stop - id="stop2226" - offset="1" - style="stop-color:#033e6f;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient2214" - inkscape:collect="always"> - <stop - id="stop2216" - offset="0" - style="stop-color:#033e6f;stop-opacity:1" /> - <stop - id="stop2218" - offset="1" - style="stop-color:#14a9de;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3417"> - <stop - style="stop-color:#df5219;stop-opacity:1" - offset="0" - id="stop3419" /> - <stop - style="stop-color:#034072;stop-opacity:1" - offset="1" - id="stop3421" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3334"> - <stop - style="stop-color:#034072;stop-opacity:1" - offset="0" - id="stop3336" /> - <stop - style="stop-color:#109cd3;stop-opacity:1" - offset="1" - id="stop3338" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2214" - id="linearGradient3340" - x1="5.0133924" - y1="12.455358" - x2="15.638392" - y2="30.098215" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3334" - id="linearGradient3392" - gradientUnits="userSpaceOnUse" - x1="5.0133924" - y1="12.455358" - x2="15.638392" - y2="30.098215" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3417" - id="linearGradient3423" - x1="31.736355" - y1="20.841261" - x2="35.292381" - y2="22.255474" - gradientUnits="userSpaceOnUse" /> - <filter - inkscape:collect="always" - x="-0.49491513" - width="1.9898303" - y="-1.0582332" - height="3.1164664" - id="filter3871"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="5.4785069" - id="feGaussianBlur3873" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2222" - id="linearGradient2206" - gradientUnits="userSpaceOnUse" - x1="18.734463" - y1="21.519651" - x2="15.642859" - y2="23.876795" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="4.9497475" - inkscape:cx="81.961371" - inkscape:cy="4.928944" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1434" - inkscape:window-height="823" - inkscape:window-x="3" - inkscape:window-y="43" /> - <metadata - id="metadata3307"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - sodipodi:type="arc" - style="opacity:0.2967033;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3871)" - id="path3425" - sodipodi:cx="22.273863" - sodipodi:cy="36.736797" - sodipodi:rx="13.283506" - sodipodi:ry="6.2124381" - d="M 35.557369 36.736797 A 13.283506 6.2124381 0 1 1 8.9903564,36.736797 A 13.283506 6.2124381 0 1 1 35.557369 36.736797 z" - transform="matrix(1.0990312,0,0,0.3942904,-0.4161261,25.323157)" /> - <path - style="fill:#da6812;fill-opacity:1;stroke:#a24900;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 45.5,8.3964466 L 29.479739,12.639268 C 30.641414,18.245615 24.910285,36.130347 9.305892,40.357143 C 28.352732,40.357143 45.5,20.878719 45.5,8.3964466 z " - id="path3380" - sodipodi:nodetypes="cccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.56227452" - inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z " - style="fill:url(#linearGradient3392);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path3382" - d="M 2.15625,9.15625 C 2.4797298,15.042119 6.5569158,22.567467 12.875,28.65625 C 18.524354,34.100573 25.907207,38.35807 33.78125,39.46875 C 27.844419,36.773348 23.584667,32.10141 20.84375,27.28125 C 19.19604,24.383597 18.100702,21.459043 17.46875,18.875 C 16.896533,16.535213 16.729528,14.546192 16.9375,13.03125 L 2.15625,9.15625 z " - transform="matrix(-1,0,0,1,47.020178,0)" /> - <path - style="fill:#abbb25;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 38.234464,10.821428 L 30.091607,13 C 30.163035,15.428571 29.270178,30.892857 13.484463,39.428571 C 30.635869,37.073525 38.448749,16.396079 38.234464,10.821428 z " - id="path3384" - sodipodi:nodetypes="cccc" /> - <path - style="fill:none;fill-opacity:1;stroke:url(#linearGradient3423);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 45.5,8.3964466 L 29.479739,12.639268 C 30.641414,18.245615 24.910285,36.130347 9.305892,40.357143 C 28.352732,40.357143 45.5,20.878719 45.5,8.3964466 z " - id="path3388" - sodipodi:nodetypes="cccc" /> - <path - style="fill:#df5219;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 38.941571,10.619397 L 30.091607,13 C 30.163035,15.428571 29.270178,30.892857 13.484463,39.428571 C 30.635869,37.073525 39.155856,16.194048 38.941571,10.619397 z " - id="path3386" - sodipodi:nodetypes="cccc" /> - <path - style="fill:#e96d1f;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 34.3385,11.986693 L 30.221025,13 C 30.292453,15.428571 29.399596,30.892857 13.613881,39.428571 C 31.551001,34.930668 35.951771,13.823779 34.3385,11.986693 z " - id="path2228" - sodipodi:nodetypes="cccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0305283" - inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z " - style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path3390" - d="M 2.78125,9.8125 C 3.3466531,15.418621 7.1614784,22.50518 13.1875,28.3125 C 18.090567,33.03762 24.31812,36.855835 31,38.46875 C 26.325029,35.650434 22.791678,31.640043 20.4375,27.5 C 18.767353,24.562889 17.642711,21.596789 17,18.96875 C 16.46674,16.788257 16.328823,14.953857 16.46875,13.40625 L 2.78125,9.8125 z " - transform="matrix(-1,0,0,1,47.020178,0)" /> - <path - style="fill:#da6812;fill-opacity:1;stroke:#a24900;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 1.5201775,8.3964466 L 17.540439,12.639268 C 16.378764,18.245615 22.109893,36.130347 37.714286,40.357143 C 18.667446,40.357143 1.5201775,20.878719 1.5201775,8.3964466 z " - id="rect3321" - sodipodi:nodetypes="cccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.56227452" - inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z " - style="fill:url(#linearGradient3340);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path3332" - d="M 2.15625,9.15625 C 2.4797298,15.042119 6.5569158,22.567467 12.875,28.65625 C 18.524354,34.100573 25.907207,38.35807 33.78125,39.46875 C 27.844419,36.773348 23.584667,32.10141 20.84375,27.28125 C 19.19604,24.383597 18.100702,21.459043 17.46875,18.875 C 16.896533,16.535213 16.729528,14.546192 16.9375,13.03125 L 2.15625,9.15625 z " /> - <path - style="fill:#08aec5;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 8.7857143,10.821428 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 16.384309,37.073525 8.5714286,16.396079 8.7857143,10.821428 z " - id="rect3326" - sodipodi:nodetypes="cccc" /> - <path - style="fill:#429538;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 8.1796228,10.821428 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 16.384309,37.073525 7.7633066,17.103186 8.1796228,10.821428 z " - id="path3342" - sodipodi:nodetypes="cccc" /> - <path - style="fill:#a0ce67;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 12.811096,11.986693 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 15.598595,34.930668 11.197825,13.823779 12.811096,11.986693 z " - id="path2220" - sodipodi:nodetypes="cccc" /> - <path - style="fill:none;fill-opacity:1;stroke:url(#linearGradient2206);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 1.5201775,8.3964466 L 17.540439,12.639268 C 16.378764,18.245615 22.109893,36.130347 37.714286,40.357143 C 18.667446,40.357143 1.5201775,20.878719 1.5201775,8.3964466 z " - id="path3352" - sodipodi:nodetypes="cccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0305283" - inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z " - style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path3366" - d="M 2.78125,9.8125 C 3.3466531,15.418621 7.1614784,22.50518 13.1875,28.3125 C 18.090567,33.03762 24.31812,36.855835 31,38.46875 C 26.325029,35.650434 22.791678,31.640043 20.4375,27.5 C 18.767353,24.562889 17.642711,21.596789 17,18.96875 C 16.46674,16.788257 16.328823,14.953857 16.46875,13.40625 L 2.78125,9.8125 z " /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/meanwhile.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,174 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" - sodipodi:docname="meanwhile.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/meanwhile.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2195"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2197" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2199" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2230"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2232" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2234" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient4330" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2230" - id="linearGradient2236" - x1="10.177145" - y1="-1.3535745" - x2="10.177145" - y2="8.1371298" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2195" - id="radialGradient2211" - cx="30.5625" - cy="23.172834" - fx="30.5625" - fy="23.172834" - r="23.5" - gradientTransform="matrix(1.330958,-1.200379e-32,1.144509e-32,1.269011,-10.11491,-9.053927)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="16.976026" - inkscape:cx="38.972041" - inkscape:cy="25.781032" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#f57900" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:0.3;fill:url(#radialGradient4330);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.583369,0,0,3.000545,-14.70523,9.779617)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.67679459;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4302" - sodipodi:cx="10.555883" - sodipodi:cy="4.0385542" - sodipodi:rx="5.074944" - sodipodi:ry="5.074944" - d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" - transform="matrix(1.477556,0,0,1.477551,8.403577,4.033323)" /> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#linearGradient2236);fill-opacity:1;stroke:#ffffff;stroke-width:0.78084576;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4273" - sodipodi:cx="10.555883" - sodipodi:cy="4.0385542" - sodipodi:rx="5.074944" - sodipodi:ry="5.074944" - d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" - transform="matrix(1.280662,0,0,1.280662,10.48149,4.827989)" /> - <path - style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000119;stroke-miterlimit:4;stroke-opacity:1" - d="M 34.49131,8.6205284 C 34.49131,13.938683 32.849731,20.518688 23.898198,20.518688 C 15.00451,20.518688 13.526711,13.679495 13.526711,8.6600767 L 5.4949228,9.8762415 C 5.4949228,23.237275 17.664236,26.553794 17.664236,26.553794 C 17.664236,26.553794 9.1712538,34.298165 9.1712538,44.405547 L 19.237281,44.498262 C 19.237281,44.498262 21.456328,35.564348 25.010569,35.564348 C 28.652494,35.564348 30.6887,44.471546 30.6887,44.471546 L 40.362294,44.503507 C 40.362294,33.010164 30.381957,26.578174 30.381957,26.578174 C 30.381957,26.578174 42.614757,23.170121 42.614757,9.5035195 L 34.49131,8.6205284 z " - id="rect2213" - sodipodi:nodetypes="czccccczccccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.9525249" - inkscape:original="M 34.5 8.625 C 34.5 13.943155 32.857783 20.53125 23.90625 20.53125 C 15.012563 20.53125 13.53125 13.675668 13.53125 8.65625 L 5.5 9.875 C 5.5000002 23.236033 17.65625 26.5625 17.65625 26.5625 C 17.65625 26.562499 9.15625 34.298868 9.15625 44.40625 L 19.25 44.5 C 19.249999 44.500002 21.445759 35.5625 25 35.5625 C 28.641925 35.562502 30.6875 44.46875 30.6875 44.46875 L 40.375 44.5 C 40.375001 33.006658 30.375 26.59375 30.375 26.59375 C 30.375001 26.593749 42.625 23.166602 42.625 9.5 L 34.5 8.625 z " - xlink:href="#rect2213" - style="opacity:0.6;fill:url(#radialGradient2211);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2220" - inkscape:href="#rect2213" - d="M 45.40625,11.75 C 45.26383,14.467634 44.656918,17.754917 42.6875,20.65625 C 40.459732,23.938183 36.552927,26.5 30.5,26.5 C 24.488156,26.5 20.637234,23.994802 18.4375,20.75 C 16.4845,17.869153 15.883719,14.581533 15.75,11.84375 L 7.5625,13.15625 C 7.8022289,20.855399 11.189172,25.378007 14.65625,28.03125 C 18.250337,30.781689 21.8125,31.5 21.8125,31.5 C 22.153479,31.568346 22.430121,31.817069 22.53422,32.148884 C 22.638319,32.4807 22.553332,32.842875 22.3125,33.09375 C 22.3125,33.09375 12.834342,43.464627 12.34375,55.4375 L 23.625,55.5625 C 23.775583,54.968024 24.284703,52.850143 25.46875,50.125 C 26.139238,48.581838 26.957479,47.047605 27.96875,45.8125 C 28.980021,44.577395 30.249533,43.59375 31.8125,43.59375 C 33.392834,43.59375 34.682884,44.544922 35.6875,45.78125 C 36.692116,47.017578 37.481015,48.583576 38.125,50.125 C 39.262583,52.847886 39.73782,54.93884 39.875,55.53125 L 50.59375,55.5625 C 49.991815,42.90975 37.8125,33.21875 37.8125,33.21875 C 37.516383,32.984647 37.386427,32.597781 37.481159,32.232384 C 37.575892,31.866987 37.877442,31.591993 38.25,31.53125 C 38.25,31.53125 42.11079,30.902899 45.96875,28.21875 C 49.692789,25.627775 53.310428,21.149688 53.5625,13.28125 L 45.40625,11.75 z " /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/msn.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,174 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" - sodipodi:docname="msn.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/msn.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient3816"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3818" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3820" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2228"> - <stop - style="stop-color:#f56600;stop-opacity:1;" - offset="0" - id="stop2230" /> - <stop - style="stop-color:#f56600;stop-opacity:0;" - offset="1" - id="stop2232" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2219"> - <stop - style="stop-color:#3465a4;stop-opacity:1;" - offset="0" - id="stop2221" /> - <stop - style="stop-color:#3465a4;stop-opacity:0;" - offset="1" - id="stop2223" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3816" - id="radialGradient1358" - gradientUnits="userSpaceOnUse" - cx="31.112698" - cy="19.008621" - fx="31.112698" - fy="19.008621" - r="8.6620579" - gradientTransform="matrix(1.904859,0,0,0.57723,-32.76529,27.09015)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2219" - id="linearGradient1360" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.427299,0,0,1.408267,0.332861,3.39912)" - x1="10.329217" - y1="14.96656" - x2="16.580788" - y2="20.092552" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2228" - id="linearGradient1362" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.489007,0,0,1.428565,1.731241,3.002037)" - x1="20.998175" - y1="11.741063" - x2="18.544895" - y2="23.366545" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="14.778489" - inkscape:cx="32.469518" - inkscape:cy="22.977647" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#edd400" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - style="opacity:0.4;color:#000000;fill:url(#radialGradient1358);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;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" - d="M 43.00001,38.062496 C 43.00001,40.822496 35.608012,43.062496 26.500013,43.062496 C 17.392013,43.062496 10.000014,40.822496 10.000014,38.062496 C 10.000014,35.302496 17.392013,33.062496 26.500013,33.062496 C 35.608012,33.062496 43.00001,35.302496 43.00001,38.062496 z " - id="path4318" /> - <path - style="fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:1.00000083;stroke-miterlimit:4;stroke-opacity:1" - d="M 34.662639,20.335823 C 39.495137,21.781376 40.098879,38.560591 34.609432,38.560591 C 29.18649,38.560591 17.111515,15.085731 34.662639,20.335823 z " - id="rect2194" /> - <path - style="opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1" - d="M 29.5,20.59375 C 28.488762,20.699063 27.850577,20.9863 27.40625,21.40625 C 26.961923,21.8262 26.695785,22.399576 26.5625,23.15625 C 26.295929,24.669599 26.724448,26.888006 27.625,29.09375 C 28.525552,31.299494 29.853318,33.518217 31.21875,35.125 C 32.584182,36.731783 34.047656,37.59375 34.625,37.59375 C 35.065414,37.59375 35.396266,37.452251 35.75,37.125 C 36.103734,36.797749 36.436723,36.267837 36.71875,35.5625 C 37.282805,34.151825 37.566795,32.092358 37.53125,30 C 37.495705,27.907642 37.16426,25.762788 36.5625,24.125 C 35.96074,22.487212 35.097603,21.497403 34.375,21.28125 C 32.261511,20.64904 30.658881,20.473061 29.5,20.59375 z " - id="path2259" /> - <path - style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" - d="M 24.98559,40.707419 C 20.31754,40.707419 7.959768,29.343494 17.418553,22.824249 C 26.869109,16.310672 29.725145,40.707419 24.98559,40.707419 z " - id="rect2201" /> - <path - style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999911;stroke-miterlimit:4;stroke-opacity:1" - d="M 20.429472,22.564494 C 19.813992,22.53919 18.946491,22.754031 17.792299,23.48193 C 15.396153,24.993077 14.598274,26.486625 14.509287,28.117394 C 14.420299,29.74816 15.197952,31.630592 16.500622,33.380577 C 17.803294,35.130559 19.637587,36.743254 21.398232,37.871181 C 23.158877,38.999109 24.734359,39.505165 25.355011,39.505165 C 25.714095,39.505165 25.973542,38.578409 26.134382,37.774606 C 26.456061,36.166999 26.487926,33.806821 26.080561,31.449134 C 25.673198,29.091442 24.821426,26.682961 23.766308,25.027083 C 22.711189,23.371206 21.583796,22.611947 20.429472,22.564494 z " - id="path2254" /> - <path - style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 38.290982,9.1309894 C 35.842841,9.5672523 32.283411,12.929344 29.603482,16.28724 C 27.08796,19.439138 25.478582,22.11333 25.259732,22.47474 L 28.572232,30.03724 C 34.665525,29.832673 38.559865,27.128092 38.853482,26.91224 C 39.014293,26.551466 40.549044,23.055678 41.478482,19.03724 C 41.967713,16.922043 42.260097,14.730906 42.072232,12.97474 C 41.884367,11.218574 41.30548,10.015388 40.103482,9.3809894 C 39.532517,9.0796416 38.992058,9.0060564 38.290982,9.1309894 z " - id="path2245" /> - <path - style="fill:url(#linearGradient1360);fill-opacity:1;stroke:#204a87;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" - d="M 2.9244668,13.205506 C 5.4909473,8.9616426 31.868508,26.916697 20.798169,29.292473 C 9.7422309,31.665159 0.38413836,17.406122 2.9244668,13.205506 z " - id="rect2197" /> - <path - style="opacity:0.2;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999905;stroke-miterlimit:4;stroke-opacity:1" - d="M 4.0077208,17.150417 C 4.6613048,18.933996 5.9435775,21.021975 7.6235197,22.895457 C 10.983405,26.64242 15.833733,29.401717 20.89796,28.310863 C 21.928379,28.088904 22.232928,27.802155 22.334374,27.651594 C 22.435813,27.501039 22.52111,27.289844 22.334374,26.709786 C 21.960899,25.54967 20.384396,23.482994 18.173725,21.529832 C 15.963059,19.576669 13.153701,17.6285 10.545878,16.161517 C 7.9380537,14.694536 5.1976761,13.680027 3.975949,13.563989 C 3.3254548,13.502207 3.3541371,15.366838 4.0077208,17.150417 z " - id="path2249" /> - <path - style="fill:url(#linearGradient1362);fill-opacity:1;stroke:#ce5d00;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1" - d="M 23.497613,20.84222 C 23.497613,20.84222 33.747199,3.7130144 39.940221,6.9816102 C 46.183621,10.276795 39.032218,26.044415 39.032218,26.044415 C 39.032218,26.044415 34.34592,29.558038 27.298467,29.558038 L 23.497613,20.84222 z " - id="rect1317" /> - <path - style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" - d="M 37.65625,7.5937494 C 35.207156,8.0301823 31.648755,11.392008 28.96875,14.75 C 26.453156,17.901987 24.843855,20.576081 24.625,20.9375 L 27.9375,28.5 C 34.029365,28.295478 37.922857,25.592475 38.21875,25.375 C 38.379566,25.014217 39.91427,21.518622 40.84375,17.5 C 41.333003,15.384706 41.625396,13.193957 41.4375,11.4375 C 41.249604,9.6810425 40.671312,8.4784456 39.46875,7.8437494 C 38.897466,7.5422332 38.357596,7.4687683 37.65625,7.5937494 z " - id="path1328" /> - <path - style="fill:#75507b;fill-opacity:1;stroke:#5c3566;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 25.75715,25.780775 C 27.420525,29.605605 28.313593,33.06003 27.750608,33.491546 C 27.187623,33.923061 25.380722,31.169067 23.717348,27.344236 C 22.053974,23.519407 21.160905,20.064982 21.72389,19.633467 C 22.286875,19.201951 24.093776,21.955945 25.75715,25.780775 z " - id="path2192" /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/novell.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,167 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/scalable" - sodipodi:docname="novell.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/groupwise.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2190"> - <stop - style="stop-color:#d3d7cf;stop-opacity:1;" - offset="0" - id="stop2192" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:0;" - offset="1" - id="stop2194" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2238"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop2240" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop2242" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2238" - id="linearGradient2244" - x1="11.76915" - y1="3.4633243" - x2="11.76915" - y2="11.990735" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.888889,0,0,1.818182,2.77778,1.26862)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2190" - id="radialGradient2196" - cx="4.3022962" - cy="7.5011024" - fx="4.3022962" - fy="7.5011024" - r="8.5" - gradientTransform="matrix(-2.567716,2.567716,-2.581797,-2.581795,54.64024,19.71367)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="12.865422" - inkscape:cx="44.509337" - inkscape:cy="25.527163" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#00ffff" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(2.934577,0,0,2.111893,-7.042754,16.91046)" /> - <rect - style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect1326" - width="33.012436" - height="35.008015" - x="7.4937739" - y="5.4919853" - ry="4.0986137" - rx="4.0986137" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.99578816" - inkscape:original="M 11.59375 5.5 C 9.323118 5.5 7.5 7.323118 7.5 9.59375 L 7.5 36.40625 C 7.5 38.676882 9.3231175 40.5 11.59375 40.5 L 36.40625 40.5 C 38.676882 40.5 40.5 38.676882 40.5 36.40625 L 40.5 9.59375 C 40.5 7.323118 38.676882 5.5 36.40625 5.5 L 11.59375 5.5 z " - xlink:href="#rect1326" - style="opacity:1;fill:url(#radialGradient2196);fill-opacity:1;stroke:#ffffff;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2201" - inkscape:href="#rect1326" - d="M 9.5,5.5 C 8.9264847,5.5 8.5,5.9264831 8.5,6.5 L 8.5,37.5 C 8.5,38.073517 8.9264835,38.499999 9.5,38.5 L 38.5,38.5 C 39.073514,38.5 39.5,38.073514 39.5,37.5 L 39.5,6.5 C 39.5,5.9264836 39.073514,5.5 38.5,5.5 L 9.5,5.5 z " /> - <path - style="fill:#cc0000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 16,13.995893 L 16,32.182309 L 19.840233,32.182309 L 19.746482,21.644702 L 29.000001,30.275655 L 33,33.995893 L 33,15.840234 L 29.223673,15.840234 L 29.223673,26.287561 L 18.124999,15.900655 L 16,13.995893 z " - id="rect1317" - sodipodi:nodetypes="ccccccccccc" /> - <path - style="fill:url(#linearGradient2244);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 16,13.995893 L 16,32.182309 L 19.840234,32.182309 L 19.746482,21.644702 L 29.000001,30.275655 L 33,33.995893 L 33,15.840234 L 29.223673,15.840234 L 29.223673,26.287561 L 18.124999,15.900655 L 16,13.995893 z " - id="path2228" - sodipodi:nodetypes="ccccccccccc" /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/qq.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,291 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable" - sodipodi:docname="qq.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/qq.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2234"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2236" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2238" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2226"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2228" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2230" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2226" - id="linearGradient2232" - x1="13.296353" - y1="9.8980713" - x2="13.296353" - y2="11.762599" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2234" - id="linearGradient2240" - x1="23.995228" - y1="3.6292775" - x2="23.995228" - y2="15.460559" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="13.788818" - inkscape:cx="40.171151" - inkscape:cy="24.9552" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - fill="#f57900" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(2.884895,0,0,2.493965,-7.834213,14.7186)" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.12731504;stroke-miterlimit:4;stroke-opacity:1" - d="M 42.428297,39.500007 C 42.428297,41.665624 39.100419,43.423228 34.999998,43.423228 C 30.899577,43.423228 27.571699,41.665624 27.571699,39.500007 C 27.571699,37.334387 30.899577,35.576783 34.999998,35.576783 C 39.100419,35.576783 42.428297,37.334387 42.428297,39.500007 z " - id="path2344" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.1975733" - inkscape:original="M 35 35.5625 C 30.899579 35.5625 27.5625 37.334379 27.5625 39.5 C 27.5625 41.665617 30.899581 43.437499 35 43.4375 C 39.100421 43.4375 42.437502 41.665616 42.4375 39.5 C 42.4375 37.33438 39.100423 35.562501 35 35.5625 z " - xlink:href="#path2344" - style="opacity:0.2;fill:#f57900;fill-opacity:1;stroke:#ffffff;stroke-width:1.12731504;stroke-miterlimit:4;stroke-opacity:1" - id="path2213" - inkscape:href="#path2344" - d="M 35,36.75 C 33.122288,36.75 31.437541,37.185098 30.3125,37.78125 C 29.187459,38.377402 28.75,39.032317 28.75,39.5 C 28.75,39.96768 29.187459,40.622598 30.3125,41.21875 C 31.437541,41.814902 33.12229,42.25 35,42.25 C 36.877711,42.25 38.562459,41.814902 39.6875,41.21875 C 40.812541,40.622598 41.25,39.967679 41.25,39.5 C 41.25,39.032317 40.812541,38.377402 39.6875,37.78125 C 38.562459,37.185098 36.877713,36.75 35,36.75 z " /> - <path - style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.12731493;stroke-miterlimit:4;stroke-opacity:1" - d="M 20.428294,39.500007 C 20.428294,41.665624 17.100417,43.423228 12.999998,43.423228 C 8.8995795,43.423228 5.5717033,41.665624 5.5717033,39.500007 C 5.5717033,37.334387 8.8995795,35.576783 12.999998,35.576783 C 17.100417,35.576783 20.428294,37.334387 20.428294,39.500007 z " - id="path2340" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.1365247" - inkscape:original="M 13 35.5625 C 8.8995815 35.5625 5.5624999 37.334379 5.5625 39.5 C 5.5625 41.665617 8.8995814 43.437499 13 43.4375 C 17.100419 43.4375 20.437501 41.665616 20.4375 39.5 C 20.4375 37.33438 17.100419 35.562501 13 35.5625 z " - xlink:href="#path2340" - style="fill:#f57900;fill-opacity:1;stroke:#ffffff;stroke-width:1.12731493;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2" - id="path2216" - inkscape:href="#path2340" - d="M 13,36.6875 C 11.113496,36.6875 9.417597,37.116607 8.28125,37.71875 C 7.144903,38.320893 6.6875,39.00096 6.6875,39.5 C 6.6875,39.999037 7.1449028,40.679107 8.28125,41.28125 C 9.4175972,41.883393 11.113496,42.3125 13,42.3125 C 14.886503,42.3125 16.582403,41.883393 17.71875,41.28125 C 18.855097,40.679107 19.3125,39.999036 19.3125,39.5 C 19.3125,39.00096 18.855097,38.320893 17.71875,37.71875 C 16.582403,37.116607 14.886504,36.6875 13,36.6875 z " /> - <path - style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.9999994;stroke-miterlimit:4;stroke-opacity:1" - d="M 16.512817,28.000001 C 16.512817,31.046362 13.819074,33.518772 10.499997,33.518772 C 7.1809214,33.518772 4.4871784,31.046362 4.4871784,28.000001 C 4.4871784,24.953638 7.1809214,22.481229 10.499997,22.481229 C 13.819074,22.481229 16.512817,24.953638 16.512817,28.000001 z " - id="path2346" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.99468362" - inkscape:original="M 10.5 22.46875 C 7.1809244 22.46875 4.5000001 24.953636 4.5 28 C 4.5 31.046361 7.1809243 33.53125 10.5 33.53125 C 13.819077 33.53125 16.5 31.04636 16.5 28 C 16.5 24.953637 13.819077 22.468749 10.5 22.46875 z " - xlink:href="#path2346" - style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999994;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2" - id="path2207" - inkscape:href="#path2346" - d="M 10.5,23.46875 C 7.677383,23.46875 5.5000001,25.537211 5.5,28 C 5.5,30.462786 7.6773835,32.53125 10.5,32.53125 C 13.322618,32.53125 15.5,30.462785 15.5,28 C 15.5,25.537212 13.322618,23.468749 10.5,23.46875 z " /> - <path - style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" - d="M 43.529524,27.990624 C 43.529524,31.032236 40.925766,33.500791 37.717565,33.500791 C 34.509364,33.500791 31.905607,31.032236 31.905607,27.990624 C 31.905607,24.94901 34.509364,22.480455 37.717565,22.480455 C 40.925766,22.480455 43.529524,24.94901 43.529524,27.990624 z " - id="path2348" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0194331" - inkscape:original="M 37.71875 22.46875 C 34.510549 22.46875 31.90625 24.958387 31.90625 28 C 31.90625 31.041612 34.51055 33.500001 37.71875 33.5 C 40.926951 33.5 43.531248 31.041613 43.53125 28 C 43.53125 24.958386 40.926952 22.46875 37.71875 22.46875 z " - xlink:href="#path2348" - style="fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2" - id="path2210" - inkscape:href="#path2348" - d="M 37.71875,23.5 C 35.037951,23.5 32.9375,25.540295 32.9375,28 C 32.9375,30.459704 35.031333,32.468751 37.71875,32.46875 C 40.406169,32.46875 42.499998,30.459706 42.5,28 C 42.5,25.540294 40.39955,23.5 37.71875,23.5 z " /> - <path - style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999851;stroke-miterlimit:4;stroke-opacity:1" - d="M 39.499823,30.499795 C 39.499823,37.123448 32.555881,42.499166 23.999954,42.499166 C 15.444028,42.499166 8.500088,37.123448 8.500088,30.499795 C 8.500088,23.876141 15.444028,18.500423 23.999954,18.500423 C 32.555881,18.500423 39.499823,23.876141 39.499823,30.499795 z " - id="path2322" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0023749" - inkscape:original="M 24 18.5 C 15.444074 18.5 8.5000003 23.876345 8.5 30.5 C 8.5 37.123653 15.444074 42.500001 24 42.5 C 32.555927 42.5 39.499998 37.123652 39.5 30.5 C 39.5 23.876346 32.555927 18.5 24 18.5 z " - xlink:href="#path2322" - style="fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999851;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2" - id="path2204" - inkscape:href="#path2322" - d="M 24,19.5 C 19.931993,19.5 16.266755,20.79143 13.65625,22.8125 C 11.045745,24.83357 9.5000001,27.538461 9.5,30.5 C 9.5,33.461538 11.045745,36.16643 13.65625,38.1875 C 16.266755,40.20857 19.931994,41.5 24,41.5 C 28.068007,41.5 31.733245,40.20857 34.34375,38.1875 C 36.954255,36.16643 38.499999,33.461538 38.5,30.5 C 38.5,27.538461 36.954255,24.83357 34.34375,22.8125 C 31.733245,20.79143 28.068007,19.5 24,19.5 z " /> - <path - style="fill:#eeeeec;fill-opacity:1;stroke:#babdb6;stroke-width:0.99999964;stroke-miterlimit:4;stroke-opacity:1" - d="M 35.499727,31.513502 C 35.499727,36.473648 30.347846,40.499275 23.999994,40.499275 C 17.652141,40.499275 12.500261,36.473648 12.500261,31.513502 C 12.500261,26.553353 17.652141,22.527728 23.999994,22.527728 C 30.347846,22.527728 35.499727,26.553353 35.499727,31.513502 z " - id="path2324" /> - <path - style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1" - d="M 39.500074,23.567769 C 39.500074,26.23172 32.974173,28.996603 24.456043,28.996603 C 22.326509,28.996603 16.736214,27.907042 11.047899,32.502199 C 9.5994849,31.202637 8.2282338,30.682189 7.4999943,29.550469 C 10.583901,26.508381 9.3151719,24.813625 9.3151719,23.481649 C 9.3151719,20.817694 15.551058,19.435466 24.069189,19.435466 C 32.587316,19.435466 39.500074,20.903814 39.500074,23.567769 z " - id="path2338" - sodipodi:nodetypes="csccscc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0198945" - inkscape:original="M 24.0625 19.4375 C 15.544369 19.4375 9.3124997 20.804795 9.3125 23.46875 C 9.3125 24.800726 10.583907 26.520413 7.5 29.5625 C 8.2282395 30.69422 9.6140857 31.20044 11.0625 32.5 C 16.750815 27.904843 22.339216 29 24.46875 29 C 32.98688 29 39.500002 26.226452 39.5 23.5625 C 39.5 20.898545 32.580627 19.437499 24.0625 19.4375 z " - xlink:href="#path2338" - style="opacity:0.2;fill:#ef2929;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" - id="path2352" - inkscape:href="#path2338" - d="M 23.78125,20.625 C 19.513931,20.625 15.847844,21.000067 13.34375,21.71875 C 12.091703,22.078092 11.128194,22.525914 10.5625,22.96875 C 9.9968057,23.411586 9.84375,23.757615 9.84375,24.15625 C 9.84375,24.61981 10.180025,25.486492 10.09375,26.75 C 10.020891,27.817027 9.4211808,29.129125 8.28125,30.59375 C 8.8275971,31.260718 9.8376614,32.075363 10.96875,33.09375 C 13.726867,30.866878 16.436481,29.770299 18.71875,29.4375 C 21.226032,29.07189 23.299616,29.375 24.1875,29.375 C 28.393452,29.375 32.111073,28.617129 34.6875,27.53125 C 35.975713,26.988311 36.964234,26.376877 37.59375,25.78125 C 38.223266,25.185623 38.4375,24.662279 38.4375,24.28125 C 38.4375,23.923108 38.262431,23.559823 37.625,23.09375 C 36.987569,22.627677 35.940994,22.158273 34.59375,21.78125 C 31.899262,21.027204 28.043658,20.625 23.78125,20.625 z " /> - <path - style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" - d="M 21.960325,3.5010229 L 25.764207,3.5010229 C 31.085197,3.5010229 35.608549,8.5308564 36.949275,14.000863 C 38.32645,19.619567 37.747111,24.500705 27.838472,24.500705 L 20.083608,24.500705 C 10.158913,24.500705 9.6944095,19.619567 11.071582,14.000863 C 12.355856,8.7611743 16.639337,3.5010229 21.960325,3.5010229 z " - id="rect2317" - sodipodi:nodetypes="ccsccsc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0200312" - inkscape:original="M 21.96875 3.5 C 16.647762 3.5 12.346774 8.7603112 11.0625 14 C 9.6853275 19.618704 10.169054 24.499999 20.09375 24.5 L 27.84375 24.5 C 37.752389 24.5 38.314674 19.618704 36.9375 14 C 35.596774 8.5299934 31.070989 3.5000001 25.75 3.5 L 21.96875 3.5 z " - xlink:href="#rect2317" - style="opacity:0.2;fill:url(#linearGradient2240);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-opacity:1" - id="path2355" - inkscape:href="#rect2317" - d="M 22.3125,5.625 C 20.004556,5.625 17.866452,6.7459198 16.125,8.5625 C 14.383548,10.37908 13.095153,12.874863 12.5,15.3125 C 11.838105,18.0235 11.722466,20.352475 12.65625,21.875 C 13.590034,23.397525 15.704379,24.53125 20.46875,24.53125 L 28.15625,24.53125 C 32.912367,24.53125 35.073893,23.40303 36.03125,21.875 C 36.988607,20.34697 36.879156,18.0174 36.21875,15.3125 C 34.977402,10.228171 30.73919,5.6249999 26.09375,5.625 L 22.3125,5.625 z " /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2326" - sodipodi:cx="5.5383673" - sodipodi:cy="3.4618888" - sodipodi:rx="1.2307483" - sodipodi:ry="2.4871371" - d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" - transform="matrix(2.437541,0,0,2.010344,6.500003,5.040414)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2328" - sodipodi:cx="5.5383673" - sodipodi:cy="3.4618888" - sodipodi:rx="1.2307483" - sodipodi:ry="2.4871371" - d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" - transform="matrix(2.336368,0,0,1.926902,14.93582,5.121749)" /> - <path - style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999952;stroke-miterlimit:4;stroke-opacity:1" - d="M 34.506346,21.499996 C 34.506346,24.245838 29.795953,26.474343 23.99207,26.474343 C 18.188191,26.474343 13.477796,24.245838 13.477796,21.499996 C 13.477796,18.754158 18.188191,16.52565 23.99207,16.52565 C 29.795953,16.52565 34.506346,18.754158 34.506346,21.499996 z " - id="path2320" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2330" - sodipodi:cx="5.5383673" - sodipodi:cy="3.4618888" - sodipodi:rx="1.2307483" - sodipodi:ry="2.4871371" - d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" - transform="matrix(1.218772,0,0,0.603105,19.74999,11.41212)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2332" - sodipodi:cx="5.5383673" - sodipodi:cy="3.4618888" - sodipodi:rx="1.2307483" - sodipodi:ry="2.4871371" - d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" - transform="matrix(1.21877,0,0,0.603105,14.75,11.41212)" /> - <path - sodipodi:type="arc" - style="opacity:0.2;fill:url(#linearGradient2232);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.60585797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2336" - sodipodi:cx="13.296353" - sodipodi:cy="10.923561" - sodipodi:rx="8.2214088" - sodipodi:ry="1.7085644" - d="M 21.517762 10.923561 A 8.2214088 1.7085644 0 1 1 5.0749445,10.923561 A 8.2214088 1.7085644 0 1 1 21.517762 10.923561 z" - transform="matrix(1.167356,0,0,2.333756,8.467761,-4.004284)" /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/silc.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,153 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" - sodipodi:docname="silc.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/silc.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2193"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2195" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2197" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2222"> - <stop - style="stop-color:#8ae234;stop-opacity:1;" - offset="0" - id="stop2224" /> - <stop - style="stop-color:#8ae234;stop-opacity:0;" - offset="1" - id="stop2226" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2222" - id="linearGradient1318" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.08567,0,0,1.999113,-1.709138,-1.492105)" - x1="14.315197" - y1="11.002394" - x2="13.638538" - y2="-28.749279" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2193" - id="linearGradient2203" - x1="20.834801" - y1="17.936523" - x2="26.154163" - y2="21.007658" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="13.788817" - inkscape:cx="35.001851" - inkscape:cy="20.952874" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#9db029" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.461296,0,0,2.111892,-13.20427,14.91459)" /> - <path - style="opacity:1;fill:url(#linearGradient1318);fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999911;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 20.489949,11.011929 C 20.489949,11.915899 20.607326,27.829773 20.511631,29.556634 C 20.511631,29.556634 7.9604471,29.494161 7.7415566,29.494161 C 5.406724,29.494161 3.5050383,31.205765 3.5050383,33.545004 C 3.5050383,35.87227 5.406724,37.500189 7.7415566,37.500189 L 21.797683,37.500189 C 26.78121,37.500189 28.663439,35.244533 28.663439,32.002624 C 28.663439,31.098653 28.395875,13.209261 28.505671,11.511706 C 28.505671,11.511706 40.472455,11.511706 41.202093,11.511706 C 43.536926,11.511706 45.50004,9.6968193 45.50004,7.3652154 C 45.50004,5.7067176 43.536923,3.5056793 41.202093,3.5056793 L 26.642947,3.5056793 C 23.379817,3.5056793 20.489949,5.5738454 20.489949,11.011929 z " - id="rect3167" - sodipodi:nodetypes="ccssscscssscs" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0564219" - inkscape:original="M 26.65625 3.5 C 23.393121 3.4999999 20.5 5.5619164 20.5 11 C 20.500001 11.90397 20.595695 27.835639 20.5 29.5625 C 20.5 29.562499 7.9688905 29.5 7.75 29.5 C 5.4151674 29.499999 3.5 31.192011 3.5 33.53125 C 3.5 35.858514 5.4151674 37.5 7.75 37.5 L 21.8125 37.5 C 26.796026 37.499998 28.65625 35.241909 28.65625 32 C 28.65625 31.096028 28.390204 13.197555 28.5 11.5 C 28.5 11.5 40.457862 11.5 41.1875 11.5 C 43.522335 11.5 45.5 9.7066039 45.5 7.375 C 45.500002 5.7165023 43.52233 3.5 41.1875 3.5 L 26.65625 3.5 z " - xlink:href="#rect3167" - style="opacity:0.5;fill:url(#linearGradient2203);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.99999964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1316" - inkscape:href="#rect3167" - d="M 26.65625,4.53125 C 25.249537,4.53125 24.032886,4.9412683 23.125,5.90625 C 22.217114,6.8712317 21.5625,8.4647612 21.5625,11 C 21.5625,11.415298 21.581781,15.655374 21.59375,19.96875 C 21.605719,24.282126 21.621325,28.562355 21.5625,29.625 C 21.532315,30.188634 21.064428,30.628998 20.5,30.625 C 20.5,30.625 17.347604,30.609375 14.1875,30.59375 C 11.027396,30.578125 7.758935,30.5625 7.75,30.5625 C 5.9336242,30.562499 4.5625,31.79623 4.5625,33.5625 C 4.5625,35.313821 5.8995405,36.4375 7.75,36.4375 L 21.78125,36.4375 C 24.114194,36.4375 25.537737,35.928156 26.375,35.1875 C 27.212263,34.446844 27.59375,33.417796 27.59375,32 C 27.59375,31.65099 27.521563,26.864091 27.46875,22.0625 C 27.442343,19.661704 27.415771,17.24736 27.40625,15.3125 C 27.396729,13.37764 27.400585,12.008829 27.4375,11.4375 C 27.467685,10.873866 27.935572,10.433502 28.5,10.4375 C 28.5,10.4375 40.457735,10.4375 41.1875,10.4375 C 42.9733,10.4375 44.4375,9.0816356 44.4375,7.34375 C 44.4375,6.9328186 44.123387,6.1347887 43.5,5.53125 C 42.876613,4.9277113 42.021185,4.53125 41.1875,4.53125 L 26.65625,4.53125 z " /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/simple.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,128 +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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" - sodipodi:docname="simple.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/sip.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient2227"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2229" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2231" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-1.017285,3.152773e-16,-5.511361e-9,-0.35721,21.6831,14.19321)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2227" - id="linearGradient2233" - x1="25.0156" - y1="8.8961887" - x2="25.0156" - y2="21.733829" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="13.788817" - inkscape:cx="34.924917" - inkscape:cy="22.006439" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fill="#eeeeec" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <path - sodipodi:type="arc" - style="opacity:0.4;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.376861,0,0,1.900703,-12.73565,10.62313)" /> - <path - style="fill:#729fcf;fill-opacity:1;stroke:#3465a4;stroke-width:1.00000095;stroke-miterlimit:4;stroke-opacity:1" - d="M 2.4375,10.5 L 2.4375,22.5 L 13.75,22.5 L 13.75,26.5 L 2.4375,26.5 L 2.4375,30.5 L 17.5,30.5 L 17.5,18.5 L 6.21875,18.5 L 6.21875,14.5 L 17.5,14.5 L 17.5,10.5 L 2.4375,10.5 z M 21.46875,10.5 L 21.46875,30.5 L 25.5,30.5 L 25.5,10.5 L 21.46875,10.5 z M 29.5,10.5 L 29.5,30.5 L 33.5,30.5 L 33.5,22.5 L 45.5,22.5 L 45.5,10.5 L 29.5,10.5 z M 33.5,14.5 L 41.5,14.5 L 41.5,18.5625 L 33.5,18.5625 L 33.5,14.5 z " - id="rect2212" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0424688" - inkscape:original="M 2.4375 10.5 L 2.4375 22.5 L 13.75 22.5 L 13.75 26.5 L 2.4375 26.5 L 2.4375 30.5 L 17.5 30.5 L 17.5 18.5 L 6.21875 18.5 L 6.21875 14.5 L 17.5 14.5 L 17.5 10.5 L 2.4375 10.5 z M 21.46875 10.5 L 21.46875 30.5 L 25.5 30.5 L 25.5 10.5 L 21.46875 10.5 z M 29.5 10.5 L 29.5 30.5 L 33.5 30.5 L 33.5 22.5 L 45.5 22.5 L 45.5 10.5 L 29.5 10.5 z M 33.5 14.5 L 41.5 14.5 L 41.5 18.5625 L 33.5 18.5625 L 33.5 14.5 z " - xlink:href="#rect2212" - style="fill:url(#linearGradient2233);fill-opacity:1.0;stroke:#ffffff;stroke-width:1.00000095;stroke-miterlimit:4;stroke-opacity:1;opacity:0.35" - id="path1352" - inkscape:href="#rect2212" - d="M 3.46875,11.53125 L 3.46875,21.46875 L 13.75,21.46875 C 14.316987,21.474875 14.775125,21.933013 14.78125,22.5 L 14.78125,26.5 C 14.775125,27.066987 14.316987,27.525125 13.75,27.53125 L 3.46875,27.53125 L 3.46875,29.46875 L 16.46875,29.46875 L 16.46875,19.53125 L 6.21875,19.53125 C 5.6517628,19.525125 5.1936251,19.066987 5.1875,18.5 L 5.1875,14.5 C 5.1936251,13.933013 5.6517628,13.474875 6.21875,13.46875 L 16.46875,13.46875 L 16.46875,11.53125 L 3.46875,11.53125 z M 22.5,11.53125 L 22.5,29.46875 L 24.46875,29.46875 L 24.46875,11.53125 L 22.5,11.53125 z M 30.53125,11.53125 L 30.53125,29.46875 L 32.46875,29.46875 L 32.46875,22.5 C 32.474875,21.933013 32.933013,21.474875 33.5,21.46875 L 44.46875,21.46875 L 44.46875,11.53125 L 30.53125,11.53125 z M 33.3125,13.46875 C 33.374873,13.463118 33.437627,13.463118 33.5,13.46875 L 41.5,13.46875 C 42.066987,13.474875 42.525125,13.933013 42.53125,14.5 L 42.53125,18.5625 C 42.525125,19.129487 42.066987,19.587625 41.5,19.59375 L 33.5,19.59375 C 32.933013,19.587625 32.474875,19.129487 32.46875,18.5625 L 32.46875,14.5 C 32.464991,13.997926 32.819624,13.564486 33.3125,13.46875 z " /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/yahoo.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,174 +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="svg1307" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" - sodipodi:docname="yahoo.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/yahoo.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs1309"> - <linearGradient - inkscape:collect="always" - id="linearGradient2211"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2213" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2215" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4123"> - <stop - style="stop-color:#ff0000;stop-opacity:1;" - offset="0" - id="stop4125" /> - <stop - style="stop-color:#ff0000;stop-opacity:0;" - offset="1" - id="stop4127" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4123" - id="linearGradient2206" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.871443,0,0,1.871443,1.990827,1.339082)" - x1="9.7634506" - y1="11.499014" - x2="9.7634506" - y2="0.12942761" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2211" - id="linearGradient2217" - x1="36.249207" - y1="7.6495404" - x2="36.249207" - y2="23.063982" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.098901" - inkscape:cx="49.54817" - inkscape:cy="29.700698" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - fill="#a40000" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata1312"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <rect - style="opacity:0;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect3203" - width="0" - height="2.5118096" - x="6" - y="6.4881902" /> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.163562,0,0,2.111892,-10.02562,12.91459)" /> - <path - style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#a40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 36.593752,13.5 L 36.750002,24.71875 L 44.125002,13.5 L 36.593752,13.5 z M 33.406252,30.34375 C 32.052922,30.519922 31.000003,31.724054 31.000002,33.15625 C 31.000002,34.70982 32.231505,35.96875 33.750002,35.96875 C 35.268499,35.96875 36.500002,34.70982 36.500002,33.15625 C 36.500002,31.60268 35.268499,30.343751 33.750002,30.34375 C 33.631369,30.34375 33.520941,30.32882 33.406252,30.34375 z " - id="path4110" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-1.0402364" - inkscape:original="M 36.59375 13.5 L 36.75 24.71875 L 44.125 13.5 L 36.59375 13.5 z M 33.40625 30.34375 C 32.052918 30.519922 31.000001 31.724054 31 33.15625 C 31 34.70982 32.231503 35.96875 33.75 35.96875 C 35.268495 35.96875 36.5 34.70982 36.5 33.15625 C 36.499998 31.60268 35.268497 30.343751 33.75 30.34375 C 33.631365 30.34375 33.520939 30.32882 33.40625 30.34375 z " - xlink:href="#path4110" - style="opacity:0.35;fill:url(#linearGradient2217);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2209" - inkscape:href="#path4110" - d="M 37.625,15.0625 L 37.71875,21.875 L 42.1875,15.0625 L 37.625,15.0625 z M 33.53125,31.90625 C 32.711111,32.013013 32.031251,32.765143 32.03125,33.6875 C 32.031249,34.691344 32.806451,35.46875 33.75,35.46875 C 34.693551,35.46875 35.46875,34.691346 35.46875,33.6875 C 35.468751,32.683656 34.69355,31.906251 33.75,31.90625 C 33.544091,31.90625 33.473148,31.913814 33.53125,31.90625 z " /> - <path - style="opacity:1;fill:url(#linearGradient2206);fill-opacity:1;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 2.6545432,11.532816 L 4.353345,15.445312 L 7.741467,15.555398 L 17.47685,25.310159 L 17.4318,31.506326 L 12.428056,31.384739 L 11.665952,34.499424 L 27.339128,34.54589 L 26.551973,31.519888 L 21.572919,31.603085 L 21.572919,25.191498 L 28.209096,17.523843 L 31.468823,17.433744 L 32.573193,13.532585 L 23.168883,13.473142 L 21.694773,17.410562 L 23.776066,17.4644 L 19.977012,20.889333 L 13.198929,15.445312 L 17.758833,15.445312 L 20.124034,11.577865 L 2.6545432,11.532816 z " - id="rect3219" - sodipodi:nodetypes="cccccccccccccccccccccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.98856229" - inkscape:original="M 2.65625 11.53125 L 4.34375 15.4375 L 7.75 15.5625 L 17.46875 25.3125 L 17.4375 31.5 L 12.4375 31.375 L 11.65625 34.5 L 27.34375 34.53125 L 26.5625 31.53125 L 21.5625 31.59375 L 21.5625 25.1875 L 28.21875 17.53125 L 31.46875 17.4375 L 32.5625 13.53125 L 23.15625 13.46875 L 21.6875 17.40625 L 23.78125 17.46875 L 19.96875 20.875 L 13.1875 15.4375 L 17.75 15.4375 L 20.125 11.5625 L 2.65625 11.53125 z " - xlink:href="#rect3219" - style="opacity:0.35;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path2204" - inkscape:href="#rect3219" - d="M 4.15625,13.0625 L 5,15 L 7.78125,15.09375 C 8.0317447,15.110809 8.266366,15.222533 8.4375,15.40625 L 18.15625,25.15625 C 18.347286,25.335037 18.45966,25.58226 18.46875,25.84375 L 18.4375,32.03125 C 18.44087,32.30297 18.33225,32.564099 18.137167,32.75327 C 17.942084,32.942442 17.677738,33.042977 17.40625,33.03125 L 13.21875,32.9375 L 12.9375,34.03125 L 26.0625,34.0625 L 25.78125,33.0625 L 21.5625,33.125 C 21.296354,33.12807 21.040212,33.0237 20.852006,32.835494 C 20.6638,32.647288 20.55943,32.391146 20.5625,32.125 L 20.5625,25.71875 C 20.562717,25.476777 20.651667,25.243286 20.8125,25.0625 L 27.46875,17.40625 C 27.649517,17.19593 27.910308,17.071204 28.1875,17.0625 L 30.71875,17 L 31.28125,15.0625 L 23.84375,15 L 23.125,16.96875 L 23.8125,17 C 24.228223,17.002399 24.598033,17.264612 24.737859,17.656122 C 24.877684,18.047632 24.757648,18.48479 24.4375,18.75 L 20.625,22.15625 C 20.263408,22.479557 19.720674,22.492795 19.34375,22.1875 L 12.5625,16.75 C 12.215365,16.491727 12.076498,16.037735 12.219751,15.629463 C 12.363005,15.221191 12.755094,14.953499 13.1875,14.96875 L 17.1875,14.96875 L 18.34375,13.09375 L 4.15625,13.0625 z " /> - </g> -</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/zephyr.svg Tue Jul 21 04:31:27 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,141 +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="svg1307" - sodipodi:version="0.32" - inkscape:version="0.46" - version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" - sodipodi:docname="zephyr.svg" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/zephyr.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs1309"> - <linearGradient - inkscape:collect="always" - id="linearGradient2236"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop2238" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop2240" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3150"> - <stop - style="stop-color:#2e3436;stop-opacity:1;" - offset="0" - id="stop3152" /> - <stop - style="stop-color:#2e3436;stop-opacity:0;" - offset="1" - id="stop3154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3150" - id="radialGradient3156" - cx="10.748654" - cy="10.457643" - fx="10.748654" - fy="10.457643" - r="6.6449099" - gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2236" - id="radialGradient2244" - cx="25" - cy="15.052035" - fx="25" - fy="15.052035" - r="13.03125" - gradientTransform="matrix(1.918832,-3.053611e-32,3.873765e-32,2.434201,-22.9708,-29.40113)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="12.749289" - inkscape:cx="42.013094" - inkscape:cy="29.955991" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - fill="#3465a4" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1268" - inkscape:window-height="971" - inkscape:window-x="6" - inkscape:window-y="21" /> - <metadata - id="metadata1312"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <rect - style="opacity:0;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect3203" - width="0" - height="5.2291808" - x="12.491029" - y="11.343686" /> - <path - sodipodi:type="arc" - style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3140" - sodipodi:cx="10.748654" - sodipodi:cy="10.457643" - sodipodi:rx="6.6449099" - sodipodi:ry="2.3675451" - d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" - transform="matrix(3.23556,0,0,2.111892,-10.27791,16.9144)" /> - <path - style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:#204a87;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 11.5,6.4993337 L 11.5,14.499492 L 32.553687,14.499492 L 32.553687,18.499569 L 38.479829,18.499569 L 38.479829,7.5185793 L 38.479829,6.4993337 L 11.5,6.4993337 z M 19.552827,20.546173 L 19.552827,26.499725 L 30.471849,26.499725 L 30.471849,20.546173 L 19.552827,20.546173 z M 11.5,28.499765 L 11.5,40.5 L 38.485458,40.5 L 38.485458,32.499843 L 17.510207,32.499843 L 17.510207,28.499765 L 11.5,28.499765 z " - id="rect4229" - sodipodi:nodetypes="cccccccccccccccccccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="-0.9828251" - inkscape:original="M 11.5 6.5 L 11.5 14.5 L 32.5625 14.5 L 32.5625 18.5 L 38.46875 18.5 L 38.46875 7.53125 L 38.46875 6.5 L 11.5 6.5 z M 19.5625 20.53125 L 19.5625 26.5 L 30.46875 26.5 L 30.46875 20.53125 L 19.5625 20.53125 z M 11.5 28.5 L 11.5 40.5 L 38.5 40.5 L 38.5 32.5 L 17.5 32.5 L 17.5 28.5 L 11.5 28.5 z " - xlink:href="#rect4229" - style="opacity:0.3;fill:url(#radialGradient2244);fill-opacity:1;stroke:#ffffff;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4266" - inkscape:href="#rect4229" - d="M 12.46875,4.46875 L 12.46875,10.53125 L 32.5625,10.53125 C 33.09434,10.538865 33.523635,10.96816 33.53125,11.5 L 33.53125,14.53125 L 37.5,14.53125 L 37.5,4.53125 L 37.5,4.46875 L 12.46875,4.46875 z M 20.53125,18.5 L 20.53125,22.53125 L 29.5,22.53125 L 29.5,18.5 L 20.53125,18.5 z M 12.46875,26.46875 L 12.46875,36.53125 L 37.53125,36.53125 L 37.53125,30.46875 L 17.5,30.46875 C 16.96816,30.461135 16.538865,30.03184 16.53125,29.5 L 16.53125,26.46875 L 12.46875,26.46875 z " /> - </g> -</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/aim.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,188 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" + sodipodi:docname="aim.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/aim.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2263"> + <stop + style="stop-color:#edc100;stop-opacity:1;" + offset="0" + id="stop2265" /> + <stop + style="stop-color:#edc100;stop-opacity:0;" + offset="1" + id="stop2267" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2255"> + <stop + style="stop-color:#edc100;stop-opacity:1;" + offset="0" + id="stop2257" /> + <stop + style="stop-color:#edc100;stop-opacity:0;" + offset="1" + id="stop2259" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient4330" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2255" + id="linearGradient2261" + x1="12.514956" + y1="18.690643" + x2="12.514956" + y2="3.9849093" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.943689,0,0,1.932352,0.678089,2.050925)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2263" + id="linearGradient2269" + x1="10.555883" + y1="8.0642843" + x2="10.555883" + y2="1.4995424" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.865422" + inkscape:cx="46.678288" + inkscape:cy="27.286544" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#edd400" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 23.921379,18.772128 C 20.531101,16.831234 19.828661,25.427448 17.466079,29.485095 C 15.153694,33.456532 7.4937606,36.040098 7.4937606,36.040098 L 12.246433,45.509102 L 23.851631,34.738731 C 23.851631,34.738731 31.648476,39.799175 34.033545,45.317469 L 40.310948,39.242775 C 40.310948,39.242775 37.012166,32.72261 29.680284,28.21162 L 40.506226,26.642559 L 38.998349,19.157061 C 31.992149,20.83538 27.747274,20.962407 23.921379,18.772128 z " + id="path1324" + sodipodi:nodetypes="czccccccccs" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.72577804;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1326" + sodipodi:cx="10.555883" + sodipodi:cy="4.0385542" + sodipodi:rx="5.074944" + sodipodi:ry="5.074944" + d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" + transform="matrix(1.37826,0,0,1.377401,12.95457,3.935583)" /> + <path + sodipodi:type="arc" + style="opacity:0.25;fill:url(#radialGradient4330);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.310805,0,0,2.323084,-11.5867,18.20601)" /> + <path + style="opacity:1;fill:url(#linearGradient2261);fill-opacity:1;stroke:#b49500;stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 23.921379,18.772128 C 20.531101,16.831234 21.460943,23.017888 19.098361,27.075535 C 16.785976,31.046972 7.4937606,36.040098 7.4937606,36.040098 L 12.246433,45.509102 L 23.851631,34.738731 C 23.851631,34.738731 31.648476,39.799175 34.033545,45.317469 L 40.310948,39.242775 C 40.310948,39.242775 37.012166,32.72261 29.680284,28.21162 L 40.661681,26.564831 L 38.687438,18.690695 C 31.681238,20.369014 27.747274,20.962407 23.921379,18.772128 z " + id="path4275" + sodipodi:nodetypes="czccccccccs" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.97533494" + inkscape:original="M 22.84375 18.40625 C 20.718205 18.345643 21.161009 23.512059 19.09375 27.0625 C 16.781366 31.033937 7.5 36.03125 7.5 36.03125 L 12.25 45.5 L 23.84375 34.75 C 23.84375 34.75 31.646181 39.794206 34.03125 45.3125 L 40.3125 39.25 C 40.312501 39.25 37.019382 32.72974 29.6875 28.21875 L 40.65625 26.5625 L 38.6875 18.6875 C 31.681299 20.365819 27.732145 20.971529 23.90625 18.78125 C 23.482465 18.538638 23.147399 18.414908 22.84375 18.40625 z " + xlink:href="#path4275" + style="opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4304" + inkscape:href="#path4275" + d="M 22.53125,19.15625 C 22.35655,19.185124 22.015713,19.423413 21.625,20.09375 C 21.234287,20.764087 20.848022,21.75407 20.46875,22.875 C 19.710206,25.11686 19.002281,27.842341 17.84375,29.84375 C 16.485288,32.190546 13.833524,33.858876 11.53125,35.0625 C 9.7758989,35.980194 8.9024732,36.291093 8.25,36.53125 L 12,44.09375 L 22.8125,34 C 23.141077,33.70262 23.62883,33.664114 24,33.90625 C 24,33.90625 26.045443,35.241847 28.375,37.28125 C 30.391732,39.046791 32.509362,41.396107 33.9375,43.96875 L 38.875,39.1875 C 38.425182,38.341062 35.513684,33.014709 28.875,28.90625 C 28.511738,28.695573 28.324082,28.276051 28.409163,27.864827 C 28.494244,27.453602 28.832963,27.142985 29.25,27.09375 L 39.1875,25.65625 L 38.03125,19.96875 C 31.456326,21.456721 26.979371,21.554763 23.03125,19.28125 C 22.754401,19.121827 22.666044,19.133971 22.53125,19.15625 z " /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient2269);fill-opacity:1;stroke:#b49500;stroke-width:0.72577804;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4302" + sodipodi:cx="10.555883" + sodipodi:cy="4.0385542" + sodipodi:rx="5.074944" + sodipodi:ry="5.074944" + d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" + transform="matrix(1.37826,0,0,1.377401,13.96243,3.935583)" /> + <path + sodipodi:type="arc" + style="opacity:0.5;fill:#fce94f;fill-opacity:1;stroke:#ffffff;stroke-width:0.84666103;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4273" + sodipodi:cx="10.555883" + sodipodi:cy="4.0385542" + sodipodi:rx="5.074944" + sodipodi:ry="5.074944" + d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" + transform="matrix(1.181111,0,0,1.181111,16.03826,4.728084)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/bonjour.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,207 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable" + sodipodi:docname="bonjour.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/bonjour.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2314"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2316" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2318" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.934099,4.045903e-17,-5.060684e-9,-0.395926,20.78896,14.59809)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="linearGradient2320" + x1="11.237947" + y1="2.7057509" + x2="11.237947" + y2="10.98068" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="linearGradient2324" + gradientUnits="userSpaceOnUse" + x1="11.237947" + y1="2.6204424" + x2="11.237947" + y2="10.810062" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="linearGradient2328" + gradientUnits="userSpaceOnUse" + x1="11.237947" + y1="2.876368" + x2="11.237947" + y2="10.89537" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.003863" + inkscape:cx="41.170813" + inkscape:cy="23.799748" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#f57900" + inkscape:window-width="1268" + inkscape:window-height="972" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.611787,0,0,2.323081,-14.82185,18.20605)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1341" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(1.290432,0,0,1.297381,-3.009737,-2.680289)" /> + <path + style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#7d7f7a;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1" + d="M 35.46875,4.5366208 C 31.635379,4.6522391 27.705058,6.4906706 25.53125,9.7866208 C 26.103022,9.4743488 35.303923,4.6093611 38.34375,12.599121 C 39.472527,11.34018 43.22049,11.040461 45.5,12.224121 C 44.713989,6.8257933 40.179035,4.3945539 35.46875,4.5366208 z M 17.46875,4.5678708 C 18.127573,6.5529792 17.95859,8.1732436 17.53125,9.1616208 C 21.771815,8.0014671 29.858933,21.430311 30.5,22.505371 C 25.376692,11.592709 20.897066,5.8681195 17.46875,4.5678708 z M 5.34375,7.5678708 C -3.2027906,14.070713 3.9432311,26.177264 13.4375,26.536621 C 12.842607,26.198616 3.4390694,20.691845 9.4375,13.724121 C 7.6531589,13.401091 5.4098365,10.216725 5.34375,7.5678708 z M 21.46875,14.599121 C 14.518079,24.752705 11.892887,31.742633 12.65625,35.567871 C 14.072321,33.976734 15.618903,33.346912 16.75,33.255371 C 13.282151,29.863924 20.985214,15.493469 21.46875,14.599121 z M 37.40625,21.630371 C 36.029184,26.189083 21.006896,27.252123 18.78125,27.380371 C 31.047662,28.025568 38.491655,26.618231 41.5,23.942871 C 39.411924,23.554843 38.044876,22.56197 37.40625,21.630371 z M 33.125,28.599121 C 33.123038,29.265224 33.537967,40.230123 24.458146,38.651097 C 25.058081,40.306995 23.321409,43.5863 21.031089,44.953234 C 30.971079,48.901331 37.527529,36.737136 33.125,28.599121 z " + id="rect2206" + sodipodi:nodetypes="ccccccccccccccccccccccccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.97818917" + inkscape:original="M 35.46875 4.53125 C 31.635379 4.6468685 27.705058 6.4852998 25.53125 9.78125 C 26.103022 9.4689777 35.303923 4.6039901 38.34375 12.59375 C 39.472527 11.334809 43.22049 11.03509 45.5 12.21875 C 44.713989 6.8204222 40.179035 4.3891831 35.46875 4.53125 z M 17.46875 4.5625 C 18.127573 6.5476086 17.95859 8.1678728 17.53125 9.15625 C 21.771815 7.996096 29.858933 21.42494 30.5 22.5 C 25.376692 11.587338 20.897066 5.8627487 17.46875 4.5625 z M 5.34375 7.5625 C -3.2027906 14.065342 3.9432311 26.171893 13.4375 26.53125 C 12.842607 26.193245 3.4390694 20.686474 9.4375 13.71875 C 7.6531589 13.39572 5.4098365 10.211354 5.34375 7.5625 z M 21.46875 14.59375 C 14.518079 24.747334 11.892887 31.737262 12.65625 35.5625 C 14.072321 33.971363 15.618903 33.341541 16.75 33.25 C 13.282151 29.858553 20.985214 15.488098 21.46875 14.59375 z M 37.40625 21.625 C 36.029184 26.183712 21.006896 27.246752 18.78125 27.375 C 31.047662 28.020197 38.491655 26.61286 41.5 23.9375 C 39.411924 23.549472 38.044876 22.556599 37.40625 21.625 z M 33.125 28.59375 C 33.123038 29.259853 33.548571 40.235276 24.46875 38.65625 C 25.068686 40.312149 23.32157 43.601816 21.03125 44.96875 C 30.971239 48.916845 37.527529 36.731765 33.125 28.59375 z " + xlink:href="#rect2206" + style="opacity:0.4;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1" + id="path2265" + d="M 35.5,6.4375 C 33.368939,6.5017749 31.254587,7.2183109 29.4375,8.375 C 29.955273,8.2616185 30.342793,8.0837857 30.90625,8.03125 C 32.406836,7.8913382 34.078294,8.0394993 35.59375,8.8125 C 36.831972,9.4440897 37.86888,10.628822 38.6875,12.1875 C 39.489624,11.770011 40.411361,11.500994 41.4375,11.4375 C 42.258666,11.386689 43.10461,11.462473 43.9375,11.625 C 43.379009,10.119471 42.589365,8.8531272 41.40625,8.03125 C 39.790488,6.908825 37.677617,6.3718209 35.5,6.4375 z M 18.78125,7.53125 C 18.821476,8.1885616 18.763233,8.7406401 18.65625,9.28125 C 19.760339,9.4560073 20.842148,9.9390765 21.875,10.78125 C 22.166416,11.018866 22.428639,11.416981 22.71875,11.6875 C 22.66814,11.618108 22.612837,11.505519 22.5625,11.4375 C 21.155108,9.5357202 19.912201,8.3834952 18.78125,7.53125 z M 4.78125,10.5 C 2.1367338,13.32142 1.9732812,16.73063 3.5,19.84375 C 4.6796069,22.249077 6.8918614,24.272293 9.5,25.4375 C 9.0508422,24.984485 8.5946267,24.68144 8.1875,24.125 C 7.2714393,22.872975 6.524154,21.350596 6.46875,19.59375 C 6.4232564,18.151162 7.0064835,16.584718 8.0625,15.03125 C 7.2533732,14.545104 6.5354947,13.881423 5.9375,13 C 5.4271977,12.247833 5.0629652,11.390597 4.78125,10.5 z M 37.5625,24 C 36.85358,24.922553 35.872279,25.684009 34.625,26.25 C 33.981881,26.541835 33.133881,26.670217 32.40625,26.90625 C 35.442669,26.486299 37.633021,25.855821 39.1875,25.0625 C 38.533201,24.753288 38.014785,24.406514 37.5625,24 z M 15.59375,27.6875 C 15.447519,28.018151 15.191854,28.433804 15.0625,28.75 C 14.093097,31.119641 13.782747,32.928132 13.6875,34.4375 C 14.296929,34.034852 14.855783,33.77311 15.4375,33.59375 C 14.976511,32.494336 14.815677,31.243494 15,29.84375 C 15.08934,29.165305 15.417606,28.406637 15.59375,27.6875 z M 33.3125,33.78125 C 33.133192,34.418356 33.085183,34.999527 32.78125,35.65625 C 32.13654,37.049308 31.160565,38.398872 29.65625,39.3125 C 28.414521,40.06665 26.766693,40.371954 24.875,40.25 C 24.843897,41.165669 24.622124,42.10692 24.15625,43.03125 C 23.766181,43.805178 23.234663,44.527693 22.625,45.1875 C 26.385249,45.969725 29.45049,44.399 31.40625,41.59375 C 32.935546,39.400201 33.59997,36.546168 33.3125,33.78125 z " + inkscape:href="#rect2206" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77265418;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2216" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(-0.645216,1.118132,-1.123564,-0.649031,58.6294,10.13592)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2222" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(-0.645216,-1.117547,1.123565,-0.64869,15.8724,57.25531)" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#linearGradient2320);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2228" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(0.971301,0,0,0.976532,0.576636,-0.142509)" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#linearGradient2324);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2322" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(0.971301,0,0,0.976532,31.58938,9.755058)" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#linearGradient2328);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2326" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(0.971301,0,0,0.976532,6.579761,31.79704)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/gadu-gadu.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,215 @@ +<?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="48px" + height="48px" + id="svg1307" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable" + sodipodi:docname="gadu-gadu.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/gadu-gadu.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs1309"> + <linearGradient + inkscape:collect="always" + id="linearGradient2447"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2449" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2451" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2233"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop2235" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop2237" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2233" + id="linearGradient2279" + gradientUnits="userSpaceOnUse" + x1="24.450865" + y1="5.1375499" + x2="24.450865" + y2="31.487988" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2447" + id="linearGradient2453" + x1="24.5" + y1="0.33943355" + x2="24.5" + y2="19.724688" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="15.004828" + inkscape:cx="40.53287" + inkscape:cy="23.900599" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + fill="#ef2929" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="972" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata1312"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + sodipodi:type="arc" + style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.160314,0,0,2.745459,-9.969125,9.788968)" /> + <path + style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 22.5,4.5130623 L 22.5,8.6366327 C 19.782905,9.0005399 17.277282,10.079925 15.21875,11.698071 L 12.0625,8.5116761 L 9.5,11.073287 L 12.6875,14.259683 C 11.068793,16.317502 9.9577835,18.791017 9.59375,21.50717 L 5.5,21.50717 L 5.5,25.505784 L 9.59375,25.505784 C 9.9535644,28.234089 11.062591,30.718808 12.6875,32.78451 L 9.5,35.970906 L 12.0625,38.501278 L 15.21875,35.346123 C 17.277282,36.964269 19.782905,38.043654 22.5,38.407561 L 22.5,42.499891 L 26.5,42.499891 L 26.5,38.407561 C 29.229107,38.042044 31.717452,36.944842 33.78125,35.314883 L 36.96875,38.501278 L 39.5,35.970906 L 36.3125,32.78451 C 37.936789,30.719597 39.014761,28.232873 39.375,25.505784 L 43.5,25.505784 L 43.5,21.50717 L 39.375,21.50717 C 39.010966,18.791018 37.931208,16.317502 36.3125,14.259683 L 39.5,11.073287 L 36.96875,8.5116761 L 33.78125,11.698071 L 33.75,11.698071 C 31.691468,10.079924 29.217095,9.0005401 26.5,8.6366327 L 26.5,4.5130623 L 22.5,4.5130623 z M 23.8125,11.354441 C 24.033452,11.344807 24.274977,11.354441 24.5,11.354441 C 31.700731,11.354441 36.65625,16.339482 36.65625,23.537717 C 36.656248,30.735953 31.700731,35.689753 24.5,35.689753 C 17.29927,35.689754 12.502002,30.735951 12.502002,23.537717 C 12.502002,16.564428 16.962974,11.653081 23.8125,11.354441 z " + id="path2394" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccssssc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1" + inkscape:original="M 22.5 4.5 L 22.5 8.625 C 19.782905 8.988907 17.277282 10.069354 15.21875 11.6875 L 12.0625 8.5 L 9.5 11.0625 L 12.6875 14.25 C 11.068793 16.307819 9.9577835 18.783847 9.59375 21.5 L 5.5 21.5 L 5.5 25.5 L 9.59375 25.5 C 9.9535644 28.228306 11.062591 30.715548 12.6875 32.78125 L 9.5 35.96875 L 12.0625 38.5 L 15.21875 35.34375 C 17.277282 36.961896 19.782905 38.042343 22.5 38.40625 L 22.5 42.5 L 26.5 42.5 L 26.5 38.40625 C 29.229107 38.040732 31.717452 36.942459 33.78125 35.3125 L 36.96875 38.5 L 39.5 35.96875 L 36.3125 32.78125 C 37.936789 30.716335 39.014761 28.227089 39.375 25.5 L 43.5 25.5 L 43.5 21.5 L 39.375 21.5 C 39.010966 18.783848 37.931208 16.307819 36.3125 14.25 L 39.5 11.0625 L 36.96875 8.5 L 33.78125 11.6875 L 33.75 11.6875 C 31.691468 10.069353 29.217095 8.9889074 26.5 8.625 L 26.5 4.5 L 22.5 4.5 z M 23.8125 11.34375 C 24.033452 11.334116 24.274977 11.34375 24.5 11.34375 C 31.700731 11.34375 36.65625 16.333015 36.65625 23.53125 C 36.656248 30.729485 31.700731 35.6875 24.5 35.6875 C 17.29927 35.6875 12.5 30.729484 12.5 23.53125 C 12.5 16.55796 16.962974 11.64239 23.8125 11.34375 z " + xlink:href="#path2394" + style="opacity:0.2;fill:url(#linearGradient2453);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2445" + inkscape:href="#path2394" + d="M 23.5,5.5 L 23.5,8.625 C 23.503929,9.1319208 23.127956,9.5616039 22.625,9.625 C 20.085855,9.9650737 17.762357,10.960594 15.84375,12.46875 C 15.44664,12.797268 14.864902,12.77021 14.5,12.40625 L 12.0625,9.9375 L 10.9375,11.0625 L 13.40625,13.53125 C 13.77021,13.896152 13.797268,14.47789 13.46875,14.875 C 11.953567,16.801212 10.932828,19.095048 10.59375,21.625 C 10.530354,22.127956 10.100671,22.503929 9.59375,22.5 L 6.5,22.5 L 6.5,24.5 L 9.59375,24.5 C 10.100671,24.496071 10.530354,24.872044 10.59375,25.375 C 10.929039,27.917339 11.948302,30.223346 13.46875,32.15625 C 13.797268,32.55336 13.77021,33.135098 13.40625,33.5 L 10.9375,35.96875 L 12.03125,37.09375 L 14.5,34.625 C 14.864902,34.26104 15.44664,34.233982 15.84375,34.5625 C 17.762357,36.070656 20.085855,37.066176 22.625,37.40625 C 23.127956,37.469646 23.503929,37.899329 23.5,38.40625 L 23.5,41.5 L 25.5,41.5 L 25.5,38.40625 C 25.496071,37.899329 25.872044,37.469646 26.375,37.40625 C 28.92215,37.065102 31.227806,36.054308 33.15625,34.53125 C 33.55336,34.202732 34.135098,34.22979 34.5,34.59375 L 36.96875,37.0625 L 38.0625,35.96875 L 35.59375,33.5 C 35.22979,33.135098 35.202732,32.55336 35.53125,32.15625 C 37.047015,30.229299 38.038333,27.923642 38.375,25.375 C 38.438396,24.872044 38.868079,24.496071 39.375,24.5 L 42.5,24.5 L 42.5,22.5 L 39.375,22.5 C 38.868079,22.503929 38.438396,22.127956 38.375,21.625 C 38.034921,19.087581 37.042567,16.796296 35.53125,14.875 C 35.202732,14.47789 35.22979,13.896152 35.59375,13.53125 L 38.09375,11.03125 L 36.96875,9.9375 L 34.5,12.40625 C 34.307701,12.592396 34.048815,12.693699 33.78125,12.6875 L 33.75,12.6875 C 33.522871,12.68767 33.302449,12.610522 33.125,12.46875 C 31.202527,10.957555 28.913145,9.9649402 26.375,9.625 C 25.872044,9.5616039 25.496071,9.1319208 25.5,8.625 L 25.5,5.5 L 23.5,5.5 z M 23.78125,10.34375 C 24.062872,10.331471 24.303519,10.34375 24.5,10.34375 C 32.162653,10.34375 37.65625,15.874058 37.65625,23.53125 C 37.656248,31.188442 32.15976,36.6875 24.5,36.6875 C 20.67012,36.6875 17.391923,35.341265 15.09375,33 C 12.795577,30.658735 11.5,27.35261 11.5,23.53125 C 11.5,16.131287 16.473536,10.662367 23.78125,10.34375 z " /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.08146787;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2198" + sodipodi:cx="24.450865" + sodipodi:cy="23.959385" + sodipodi:rx="14.03053" + sodipodi:ry="14.03053" + d="M 38.481395 23.959385 A 14.03053 14.03053 0 1 1 10.420335,23.959385 A 14.03053 14.03053 0 1 1 38.481395 23.959385 z" + transform="matrix(0.924879,0,0,0.924459,1.889957,1.34006)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient2279);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.12198293;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2277" + sodipodi:cx="24.450865" + sodipodi:cy="23.959385" + sodipodi:rx="14.03053" + sodipodi:ry="14.03053" + d="M 38.481395 23.959385 A 14.03053 14.03053 0 1 1 10.420335,23.959385 A 14.03053 14.03053 0 1 1 38.481395 23.959385 z" + transform="matrix(0.890914,0,0,0.891279,2.716374,2.14037)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2200" + sodipodi:cx="10.54341" + sodipodi:cy="-2.7068274" + sodipodi:rx="2.4204714" + sodipodi:ry="1.7230475" + d="M 12.963882 -2.7068274 A 2.4204714 1.7230475 0 1 1 8.1229389,-2.7068274 A 2.4204714 1.7230475 0 1 1 12.963882 -2.7068274 z" + transform="matrix(0.827565,0,0,0.87352,11.27774,22.85935)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2202" + sodipodi:cx="10.54341" + sodipodi:cy="-2.7068274" + sodipodi:rx="2.4204714" + sodipodi:ry="1.7230475" + d="M 12.963882 -2.7068274 A 2.4204714 1.7230475 0 1 1 8.1229389,-2.7068274 A 2.4204714 1.7230475 0 1 1 12.963882 -2.7068274 z" + transform="matrix(0.827567,0,0,0.87352,20.27772,22.86958)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:4.5851903;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2204" + sodipodi:cx="24.450865" + sodipodi:cy="23.959385" + sodipodi:rx="14.03053" + sodipodi:ry="14.03053" + d="M 36.657066,30.877796 A 14.03053,14.03053 0 0 1 11.928959,30.288496" + transform="matrix(0.453563,0,0,0.419476,13.51464,14.26249)" + sodipodi:start="0.51564596" + sodipodi:end="2.6736" + sodipodi:open="true" /> + <path + sodipodi:type="arc" + style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.75245398;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2465" + sodipodi:cx="26.658085" + sodipodi:cy="20.675463" + sodipodi:rx="9.863492" + sodipodi:ry="8.2640066" + d="M 36.521577 20.675463 A 9.863492 8.2640066 0 1 1 16.794593,20.675463 A 9.863492 8.2640066 0 1 1 36.521577 20.675463 z" + transform="matrix(1.216989,0,0,1.451287,-7.948546,-6.503855)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/google-talk.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,261 @@ +<?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" + id="svg2417" + sodipodi:version="0.32" + inkscape:version="0.46" + width="48" + height="48" + version="1.0" + sodipodi:docbase="/home/vinicius/tango-icon-theme-code/protocols/scalable" + sodipodi:docname="google-talk.svg" + inkscape:export-filename="/home/vinicius/tango-icon-theme-code/protocols/48x48/google-talk.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <metadata + id="metadata2422"> + <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>Google Talk Icon</dc:title> + <dc:date>2006-12-03</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Scopel Depizzol</dc:title> + </cc:Agent> + </dc:creator> + <dc:source>vdepizzol@gmail.com</dc:source> + <dc:subject> + <rdf:Bag> + <rdf:li>Google Talk</rdf:li> + <rdf:li>GTalk</rdf:li> + <rdf:li>VOIP</rdf:li> + <rdf:li>Protocol</rdf:li> + </rdf:Bag> + </dc:subject> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/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:requires + rdf:resource="http://web.resource.org/cc/Attribution" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs2420"> + <linearGradient + id="linearGradient3299"> + <stop + style="stop-color:#000000;stop-opacity:0.11764706;" + offset="0" + id="stop3301" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3303" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3299" + id="radialGradient3305" + cx="15.993708" + cy="26.722889" + fx="15.993708" + fy="26.722889" + r="15.912521" + gradientTransform="matrix(1,0,0,0.295918,-3.769888e-16,18.8151)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3527"> + <stop + style="stop-color:#90ba1f;stop-opacity:1;" + offset="0" + id="stop3529" /> + <stop + style="stop-color:#638205;stop-opacity:1;" + offset="1" + id="stop3531" /> + </linearGradient> + <linearGradient + id="linearGradient3518"> + <stop + style="stop-color:#e7d000;stop-opacity:1;" + offset="0" + id="stop3520" /> + <stop + style="stop-color:#c4a000;stop-opacity:1;" + offset="1" + id="stop3522" /> + </linearGradient> + <linearGradient + id="linearGradient3486"> + <stop + style="stop-color:#ef2929;stop-opacity:1;" + offset="0" + id="stop3488" /> + <stop + style="stop-color:#cc0000;stop-opacity:1;" + offset="1" + id="stop3490" /> + </linearGradient> + <linearGradient + id="linearGradient3510"> + <stop + style="stop-color:#3465a4;stop-opacity:1;" + offset="0" + id="stop3512" /> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="1" + id="stop3514" /> + </linearGradient> + <linearGradient + id="linearGradient3286"> + <stop + style="stop-color:#d1d1d1;stop-opacity:1;" + offset="0" + id="stop3288" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3290" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3527" + id="linearGradient4249" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.465389,0,0,2.513895,-105.5963,47.11115)" + x1="55.483334" + y1="-14.40625" + x2="55.483334" + y2="-7.9999866" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3518" + id="linearGradient4252" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.901968,0,0,2.518653,-127.7063,47.25387)" + x1="53.162479" + y1="-14.322747" + x2="53.162479" + y2="-9.9868765" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3486" + id="linearGradient4255" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.48585,0,0,2.48585,-103.0483,47.16833)" + x1="49.45462" + y1="-12.934268" + x2="49.45462" + y2="-8.0529032" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3510" + id="linearGradient4258" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.48585,0,0,2.48585,-100.3774,47.19573)" + x1="45.5" + y1="-14" + x2="45.5" + y2="-8.1156492" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3286" + id="linearGradient4262" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.99378,0,0,2.99378,9.552849e-2,-0.965622)" + x1="8" + y1="15" + x2="8" + y2="0.9916327" /> + </defs> + <sodipodi:namedview + inkscape:window-height="714" + inkscape:window-width="1014" + inkscape:pageshadow="2" + inkscape:pageopacity="0" + borderopacity="1" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + showgrid="false" + showguides="true" + inkscape:guide-bbox="true" + inkscape:zoom="1" + inkscape:cx="27.558407" + inkscape:cy="20.353863" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:current-layer="svg2417" + showborder="false" + inkscape:showpageshadow="false" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient3305);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path2424" + sodipodi:cx="15.993708" + sodipodi:cy="26.722889" + sodipodi:rx="15.912521" + sodipodi:ry="4.7088075" + d="M 31.906229,26.722889 A 15.912521,4.7088075 0 1 1 31.906148,26.707864" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(1.45896,0,0,1.538545,0.742037,-1.869655)" /> + <path + id="path3264" + d="M 21.80045,3.5250496 C 10.471905,4.3704822 1.592428,11.452408 1.592428,19.990844 C 1.592428,26.29506 6.3896918,31.807945 13.473996,34.585527 C 13.301077,37.113716 12.611393,40.274075 10.57377,42.444203 C 16.402876,42.263357 20.689781,39.28536 23.484452,36.456639 C 23.677129,36.460226 23.851935,36.456639 24.045787,36.456639 C 36.451938,36.456639 46.499142,29.098509 46.499142,19.990844 L 46.499142,19.897289 C 46.459634,10.808172 36.426737,3.5250496 24.045787,3.5250496 C 23.270404,3.5250496 22.555687,3.4686875 21.80045,3.5250496 z " + style="fill:url(#linearGradient4262);fill-opacity:1;fill-rule:nonzero;stroke:#797979;stroke-width:0.99999946;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + sodipodi:nodetypes="ccccccccccccccccc" + id="path3552" + d="M 14.063569,10.992619 L 10.975162,10.992619 L 10.975162,15.008301 L 9,15.008301 L 9,18.010155 L 10.975162,18.010155 L 10.975162,24.823081 C 10.975162,28.316382 16.413217,26.749332 16.906897,25.946127 L 16.765885,23.742745 C 16.14428,24.364355 14.063569,24.882059 14.063569,24.09267 L 14.063569,18.010155 L 16.089796,18.010155 L 16.089796,15.008301 L 14.063569,15.008301 L 14.063569,11.090553 L 14.063569,11.090553 L 14.063569,10.992619 z " + style="fill:url(#linearGradient4258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient4255);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 20.513467,15.031036 C 20.138171,15.089956 19.656414,15.165467 19.228078,15.318859 C 17.702481,15.865192 16.671718,16.778263 16.671718,16.778263 L 17.928902,19.157272 C 19.392632,18.022338 22.111019,16.595753 21.828421,20.24551 C 16.134551,19.714196 14.746648,23.348506 16.160515,25.369297 C 17.612211,27.444158 20.173876,27.641863 21.329645,26.185476 C 21.514145,25.952987 21.740964,25.678231 21.873764,25.369297 C 22.016347,25.75349 22.226874,26.072865 22.417883,26.321505 C 22.574471,26.517581 23.312178,27.152657 24.004897,27.137684 C 24.806193,27.120365 25.583813,26.58185 26,25.958759 C 25.645136,26.22137 24.252362,25.650216 24.231613,24.779835 L 24.231613,18.29575 C 24.142462,16.667478 22.425687,14.730825 20.513467,15.031036 z M 21.193616,23.328851 C 21.034551,24.122851 19.396586,24.681233 18.790423,24.326402 C 17.894487,23.801947 19.229645,22.393776 20.377437,22.376643 C 21.417389,22.361119 21.33274,22.634384 21.193616,23.328851 z " + id="path3554" + sodipodi:nodetypes="cscccsscsscccccsss" /> + <path + id="path3558" + d="M 29,11 L 26.098032,11 L 26.098032,27.104637 L 29,27.104637 L 29,11 z " + style="fill:url(#linearGradient4252);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccc" + id="path3560" + d="M 30,10.895363 L 30,19.851112 L 30,27 L 32.963722,27 L 32.963722,22.924045 L 36.561805,27.064163 L 38.705904,25.193137 L 34.676855,20.715264 L 38.705904,16.23739 L 36.754295,14.238037 L 32.968278,18.187047 C 32.968278,18.187047 32.963722,10.895363 32.963722,10.895363 L 30,10.895363 z " + style="fill:url(#linearGradient4249);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 21.84375,4.03125 C 16.273135,4.4469767 11.295199,6.3799921 7.75,9.25 C 4.204801,12.120008 2.09375,15.904106 2.09375,20 C 2.093752,26.050562 6.709849,31.401486 13.65625,34.125 C 13.889662,34.247612 13.966606,34.430582 13.96875,34.625 C 13.8154,36.867085 13.233839,39.586592 11.6875,41.78125 C 16.756159,41.27394 20.580438,38.669315 23.125,36.09375 C 23.324492,35.928053 23.831229,35.96875 24.03125,35.96875 C 30.135475,35.96875 35.660367,34.1562 39.625,31.25 C 43.589633,28.3438 46,24.369973 46,20 L 46,19.90625 C 45.981043,15.545078 43.55655,11.604324 39.59375,8.71875 C 35.63095,5.8331761 30.123683,4.03125 24.03125,4.03125 C 23.381564,4.0312499 22.681539,3.982177 21.84375,4.03125 z M 24.03125,5.03125 C 29.927599,5.03125 35.264412,6.757119 39.03125,9.5 C 42.798088,12.242881 44.982638,15.911852 45,19.90625 L 45,20 C 45,24.002253 42.800008,27.674883 39.03125,30.4375 C 35.262492,33.200117 29.937773,34.96875 24.03125,34.96875 C 23.079654,34.946683 22.695929,35.117383 22.40625,35.40625 C 20.316957,37.520999 17.387178,39.593629 13.59375,40.46875 C 14.470139,38.520138 14.848653,36.443413 14.96875,34.6875 C 15.010593,33.903846 14.715478,33.607465 14.03125,33.1875 C 7.360656,30.572123 3.093751,25.543254 3.09375,20 C 3.09375,16.250753 5.042528,12.754344 8.40625,10.03125 C 11.769972,7.3081563 16.52295,5.4329977 21.90625,5.03125 C 22.667268,4.9737265 23.342191,5.0312499 24.03125,5.03125 z " + id="path6054" + sodipodi:nodetypes="csscccccsccssccsccscscccsscs" /> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/icq.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,440 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" + sodipodi:docname="icq.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/icq.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2256"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2258" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2260" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2248"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2250" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2252" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2240"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2242" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2244" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2232"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2234" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2236" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2224"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2226" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2228" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2216"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2218" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2220" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2208"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2210" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2361"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2363" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2365" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2321"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2323" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2325" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2321" + id="linearGradient2327" + x1="11.787398" + y1="11.115861" + x2="12.185872" + y2="12.839791" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2361" + id="linearGradient2367" + x1="14.592834" + y1="24.232048" + x2="14.592834" + y2="31.007147" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2208" + id="linearGradient2214" + x1="28.089931" + y1="3.8865747" + x2="28.089931" + y2="15.058928" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2216" + id="linearGradient2222" + x1="36.696918" + y1="10.99979" + x2="36.696918" + y2="20.717306" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2224" + id="linearGradient2230" + x1="36.701996" + y1="20.379145" + x2="36.701996" + y2="29.063459" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2232" + id="linearGradient2238" + x1="17.892992" + y1="6.7056818" + x2="17.892992" + y2="16.46983" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2240" + id="linearGradient2246" + x1="12.732279" + y1="14.645196" + x2="12.732279" + y2="23.238768" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2248" + id="linearGradient2254" + x1="21.683891" + y1="24.981401" + x2="21.683891" + y2="36.415653" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2256" + id="linearGradient2262" + x1="30.265167" + y1="27.26486" + x2="30.265167" + y2="35.256603" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="14.778489" + inkscape:cx="38.03465" + inkscape:cy="24.512139" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#ef2929" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.009823,0,0,2.74546,-8.351546,7.855242)" /> + <path + style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1" + d="M 26.367384,35.737238 C 24.85713,31.115741 25.395878,30.363552 27.387814,29.222534 C 29.379747,28.081519 30.462949,28.167777 33.584537,31.603121 C 35.536982,34.958339 35.504926,38.607457 33.513001,39.748468 C 31.521063,40.889489 28.319827,39.092453 26.367384,35.737238 z " + id="path2226" + sodipodi:nodetypes="cscsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.95876986" + inkscape:original="M 28.75 28.625 C 28.319559 28.723691 27.872983 28.933496 27.375 29.21875 C 25.383064 30.359768 24.864746 31.128501 26.375 35.75 C 28.327443 39.105215 31.508063 40.891023 33.5 39.75 C 35.491925 38.608989 35.546194 34.948968 33.59375 31.59375 C 31.252559 29.017242 30.041322 28.328926 28.75 28.625 z " + xlink:href="#path2226" + style="opacity:0.4;fill:url(#linearGradient2262);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2242" + inkscape:href="#path2226" + d="M 28.96875,26.5 C 28.686015,26.564825 28.303156,26.736844 27.84375,27 C 27.368858,27.272027 27.042376,27.491026 26.84375,27.6875 C 26.645124,27.883974 26.558141,28.035355 26.5,28.3125 C 26.386493,28.853563 26.554045,30.085975 27.25,32.25 C 28.145595,33.765674 29.317595,34.913452 30.40625,35.53125 C 31.510083,36.157661 32.416733,36.195758 33.03125,35.84375 C 33.64681,35.491146 34.046689,34.69972 34.0625,33.4375 C 34.077874,32.210233 33.659976,30.628765 32.8125,29.125 C 31.711537,27.921881 30.874722,27.139693 30.28125,26.78125 C 29.672583,26.41363 29.393014,26.402725 28.96875,26.5 z " + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" + d="M 33.709491,31.278338 C 29.169302,28.745112 29.065713,27.592023 29.859889,24.733701 C 30.654065,21.875391 31.593198,20.926512 36.586936,20.922121 C 40.576342,21.952999 43.16957,25.109445 42.375396,27.967758 C 41.581221,30.826078 37.6989,32.309217 33.709491,31.278338 z " + id="path2216" + sodipodi:nodetypes="cscsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.98264426" + inkscape:original="M 36.59375 20.9375 C 31.600012 20.941891 30.669177 21.860439 29.875 24.71875 C 29.080824 27.577072 29.17856 28.748025 33.71875 31.28125 C 37.708159 32.312129 41.580824 30.82707 42.375 27.96875 C 43.169174 25.110437 40.583155 21.968378 36.59375 20.9375 z " + xlink:href="#path2216" + style="opacity:0.4;fill:url(#linearGradient2230);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2238" + inkscape:href="#path2216" + d="M 36.4375,18.8125 C 34.127551,18.828525 32.839067,19.094363 32.1875,19.5 C 31.517812,19.916918 31.190595,20.545455 30.8125,21.90625 C 30.427461,23.292046 30.362754,23.987827 30.6875,24.625 C 31.003678,25.245362 31.967431,26.095761 34.0625,27.28125 C 35.838582,27.720407 37.581667,27.600958 38.90625,27.09375 C 40.254639,26.577426 41.138951,25.730758 41.4375,24.65625 C 41.735829,23.582532 41.424738,22.405518 40.53125,21.3125 C 39.654391,20.239825 38.199379,19.288753 36.4375,18.8125 z " + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" + d="M 36.67848,22.648043 C 32.052133,24.231706 31.299156,23.66677 30.15694,21.57801 C 29.014732,19.489253 29.101081,18.3534 32.540028,15.08008 C 35.898764,13.032731 39.551708,13.066339 40.693916,15.155093 C 41.836132,17.243854 40.037215,20.600694 36.67848,22.648043 z " + id="path2224" + sodipodi:nodetypes="cscsc" /> + <path + style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1" + d="M 15.680976,33.623016 C 11.05302,35.149988 10.299782,34.605272 9.1571703,32.591284 C 8.0145636,30.577295 8.100941,29.482102 11.541085,26.325956 C 14.900987,24.351896 18.555202,24.3843 19.697807,26.398287 C 20.840426,28.412273 19.040877,31.648952 15.680976,33.623016 z " + id="path2228" + sodipodi:nodetypes="cscsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0000435" + inkscape:original="M 16.4375 24.875 C 14.961133 24.861908 13.211201 25.32547 11.53125 26.3125 C 8.091106 29.468646 8.0136433 30.579759 9.15625 32.59375 C 10.298862 34.607738 11.059544 35.151972 15.6875 33.625 C 19.047401 31.650936 20.830119 28.420236 19.6875 26.40625 C 19.116197 25.399256 17.913867 24.888092 16.4375 24.875 z " + xlink:href="#path2228" + style="opacity:0.35;fill:url(#linearGradient2367);fill-opacity:1;stroke:#ffffff;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" + id="path2244" + inkscape:href="#path2228" + d="M 16.4375,25.5625 C 15.225911,25.551756 13.660678,25.986763 12.15625,26.84375 C 10.550146,28.330129 9.7557904,29.328548 9.5625,29.90625 C 9.3649665,30.496634 9.5025865,30.849414 10.03125,31.78125 C 10.302942,32.260138 10.523169,32.613015 10.71875,32.8125 C 10.914331,33.011985 11.040068,33.097389 11.3125,33.15625 C 11.836378,33.269438 13.116625,33.081343 15.21875,32.40625 C 16.739932,31.503646 17.889523,30.32189 18.5,29.21875 C 19.115832,28.105933 19.160409,27.206976 18.8125,26.59375 C 18.466678,25.984194 17.687878,25.573588 16.4375,25.5625 z " + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + transform="translate(-3.261295e-4,1.945628e-4)" /> + <path + style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" + d="M 15.781196,31.980797 C 18.406839,27.241987 19.600601,27.133027 22.558995,27.959412 C 25.517377,28.785792 26.498997,29.764879 26.5,34.97494 C 25.429993,39.137961 22.160569,41.845948 19.202184,41.019566 C 16.24379,40.193181 14.711189,36.143816 15.781196,31.980797 z " + id="path2218" + sodipodi:nodetypes="cscsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0089091" + inkscape:original="M 20.625 27.5625 C 18.918105 27.466646 17.750483 28.414643 15.78125 31.96875 C 14.711243 36.131769 16.229105 40.204865 19.1875 41.03125 C 22.145885 41.857632 25.429993 39.13177 26.5 34.96875 C 26.498997 29.758689 25.520883 28.79513 22.5625 27.96875 C 21.822902 27.762154 21.193965 27.594451 20.625 27.5625 z " + xlink:href="#path2218" + style="opacity:0.4;fill:url(#linearGradient2254);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2240" + inkscape:href="#path2218" + d="M 20.5625,25.5 C 19.907811,25.463235 19.561004,25.566238 18.96875,26.09375 C 18.39939,26.600871 17.659523,27.663233 16.75,29.28125 C 16.300255,31.130934 16.385773,32.955321 16.90625,34.34375 C 17.438569,35.763767 18.360161,36.690332 19.46875,37 C 20.577929,37.309833 21.771436,36.972415 22.90625,36.03125 C 24.020697,35.106976 25.004678,33.595596 25.5,31.75 C 25.485662,29.33285 25.202556,27.963789 24.78125,27.28125 C 24.348724,26.580535 23.69033,26.268606 22.28125,25.875 C 21.548137,25.670215 20.975703,25.523204 20.5625,25.5 z " + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" + d="M 22.589636,12.085809 C 24.174724,16.906782 23.609284,17.691436 21.518638,18.881701 C 19.427991,20.071964 18.291112,19.981984 15.014841,16.398361 C 12.965643,12.898328 12.999283,9.0917088 15.089923,7.9014452 C 17.180566,6.7111801 20.540438,8.5857754 22.589636,12.085809 z " + id="path2222" + sodipodi:nodetypes="cscsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.96927398" + inkscape:original="M 16.84375 7.5625 C 16.202747 7.4994497 15.616411 7.6086837 15.09375 7.90625 C 13.00311 9.0965136 12.950802 12.906217 15 16.40625 C 18.276271 19.989873 19.440602 20.065263 21.53125 18.875 C 23.621896 17.684735 24.178838 16.914723 22.59375 12.09375 C 21.056852 9.4687248 18.76676 7.7516509 16.84375 7.5625 z " + xlink:href="#path2222" + style="opacity:0.4;fill:url(#linearGradient2238);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2232" + inkscape:href="#path2222" + d="M 16.75,5.46875 C 16.27484,5.4220124 15.902933,5.4936816 15.5625,5.6875 C 14.90056,6.0643619 14.484412,6.9299953 14.46875,8.25 C 14.453381,9.5453187 14.903286,11.163341 15.8125,12.75 C 17.344427,14.407623 18.369904,15.229192 19,15.4375 C 19.647022,15.651404 20.092056,15.52125 21.0625,14.96875 C 21.562192,14.684261 21.911138,14.459507 22.125,14.25 C 22.338862,14.040493 22.436992,13.887548 22.5,13.59375 C 22.621375,13.027792 22.42463,11.70151 21.71875,9.5 C 20.300551,7.1027674 18.170695,5.6084922 16.75,5.46875 z " + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + transform="translate(0,6.766591e-2)" /> + <path + style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000072;stroke-miterlimit:4;stroke-opacity:1" + d="M 15.110245,15.90519 C 19.82436,18.526878 19.931835,19.720374 19.106984,22.678924 C 18.282136,25.637465 17.306916,26.619664 12.121668,26.624562 C 7.9793465,25.557832 5.2869063,22.290944 6.1117518,19.332403 C 6.9366004,16.373851 10.967924,14.838461 15.110245,15.90519 z " + id="path2220" + sodipodi:nodetypes="cscsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0062078" + inkscape:original="M 12.0625 15.5625 C 9.1424837 15.682984 6.7436363 17.124836 6.125 19.34375 C 5.3001545 22.302291 7.9826786 25.558271 12.125 26.625 C 17.310248 26.620102 18.268903 25.64604 19.09375 22.6875 C 19.918601 19.72895 19.839115 18.527938 15.125 15.90625 C 14.08942 15.639568 13.035839 15.522339 12.0625 15.5625 z " + xlink:href="#path2220" + style="opacity:0.4;fill:url(#linearGradient2246);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2234" + inkscape:href="#path2220" + d="M 12.09375,13.5 C 9.4814409,13.607788 7.5619569,14.883144 7.09375,16.5625 C 6.7827532,17.677978 7.1032888,18.873814 8.03125,20 C 8.9425567,21.105974 10.44513,22.068869 12.28125,22.5625 C 14.685442,22.546282 16.040043,22.264255 16.71875,21.84375 C 17.415725,21.411927 17.731987,20.753401 18.125,19.34375 C 18.525721,17.906458 18.614647,17.219888 18.28125,16.5625 C 17.956369,15.921903 16.929755,15.04136 14.75,13.8125 C 13.845755,13.591694 12.918322,13.465977 12.09375,13.5 z " + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0066811" + inkscape:original="M 37.4375 13.5625 C 35.961646 13.548922 34.210618 14.070075 32.53125 15.09375 C 29.092303 18.36707 29.014042 19.473742 30.15625 21.5625 C 31.298466 23.65126 32.061155 24.239913 36.6875 22.65625 C 40.046235 20.608901 41.829716 17.245011 40.6875 15.15625 C 40.116396 14.111873 38.913354 13.576078 37.4375 13.5625 z " + xlink:href="#path2224" + style="opacity:0.4;fill:url(#linearGradient2222);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2236" + inkscape:href="#path2224" + d="M 37.4375,11.5 C 36.209007,11.488698 34.640843,11.934525 33.125,12.84375 C 31.572994,14.343465 30.790495,15.387459 30.59375,16 C 30.38941,16.636186 30.501711,17.062882 31.03125,18.03125 C 31.303727,18.529526 31.551384,18.882242 31.75,19.09375 C 31.948616,19.305258 32.078397,19.376294 32.34375,19.4375 C 32.849897,19.554247 34.121629,19.37131 36.1875,18.6875 C 37.705568,17.753005 38.884734,16.530737 39.5,15.375 C 40.120629,14.209188 40.168638,13.213767 39.8125,12.5625 C 39.457388,11.913107 38.674773,11.511383 37.4375,11.5 z " + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1" + d="M 33.125387,15.014401 C 30.26869,19.896731 28.973236,20.010902 25.764644,19.165247 C 22.556047,18.319592 21.492567,17.31342 21.500039,11.950433 C 22.667874,7.6634206 26.219761,4.8704358 29.428357,5.7160909 C 32.636953,6.5617466 34.293217,10.72739 33.125387,15.014401 z " + id="path2192" + sodipodi:nodetypes="cscsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.99950546" + inkscape:original="M 27 5.71875 C 24.592663 6.34847 22.375877 8.7222409 21.5 11.9375 C 21.492528 17.300487 22.541402 18.310595 25.75 19.15625 C 28.958592 20.001905 30.268305 19.88233 33.125 15 C 34.29283 10.712989 32.646097 6.5644059 29.4375 5.71875 C 28.635351 5.5073362 27.802446 5.5088433 27 5.71875 z " + xlink:href="#path2192" + style="opacity:0.4;fill:url(#linearGradient2214);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2230" + inkscape:href="#path2192" + d="M 27.25,3.625 C 25.314633,4.1312603 23.314958,6.1607857 22.5,9.03125 C 22.510826,11.522864 22.789343,12.909624 23.25,13.625 C 23.722547,14.358839 24.464582,14.720327 26,15.125 C 27.560661,15.536327 28.366368,15.654754 29.125,15.28125 C 29.867191,14.91584 30.838854,13.842149 32.1875,11.5625 C 32.678344,9.6587072 32.56307,7.7926235 32,6.375 C 31.424078,4.9250185 30.443053,3.9559128 29.1875,3.625 C 28.551361,3.4573398 27.889759,3.4576495 27.25,3.625 z " + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:0.21428883;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1317" + sodipodi:cx="12.075002" + sodipodi:cy="12.360133" + sodipodi:rx="1.1966218" + sodipodi:ry="1.4141895" + d="M 13.271623 12.360133 A 1.1966218 1.4141895 0 1 1 10.87838,12.360133 A 1.1966218 1.4141895 0 1 1 13.271623 12.360133 z" + transform="matrix(4.891864,1.290148,-1.13072,4.153499,-20.5947,-43.34178)" /> + <path + sodipodi:type="arc" + style="opacity:0.4;fill:url(#linearGradient2327);fill-opacity:1;stroke:#ffffff;stroke-width:0.25782824;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2319" + sodipodi:cx="12.075002" + sodipodi:cy="12.360133" + sodipodi:rx="1.1966218" + sodipodi:ry="1.4141895" + d="M 13.271623 12.360133 A 1.1966218 1.4141895 0 1 1 10.87838,12.360133 A 1.1966218 1.4141895 0 1 1 13.271623 12.360133 z" + transform="matrix(4.068634,1.071527,-0.940435,3.449674,-13.02699,-32.06442)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/irc.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,238 @@ +<?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="48px" + height="48px" + id="svg4345" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="irc.svg" + inkscape:export-filename="/home/hbons/Desktop/pidgin.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4347"> + <linearGradient + id="linearGradient2804"> + <stop + style="stop-color:black;stop-opacity:0;" + offset="0" + id="stop2806" /> + <stop + id="stop2812" + offset="0.5" + style="stop-color:black;stop-opacity:1;" /> + <stop + style="stop-color:black;stop-opacity:0;" + offset="1" + id="stop2808" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2804" + id="linearGradient1516" + gradientUnits="userSpaceOnUse" + x1="21.875" + y1="48.000977" + x2="21.875" + y2="40" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2781" + id="radialGradient1514" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2,0,0,0.8,36,8.8)" + cx="1" + cy="44" + fx="1" + fy="44" + r="5" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2781"> + <stop + style="stop-color:black;stop-opacity:1;" + offset="0" + id="stop2783" /> + <stop + style="stop-color:black;stop-opacity:0;" + offset="1" + id="stop2785" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2781" + id="radialGradient1512" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2,0,0,0.8,-13,-79.2)" + cx="1" + cy="44" + fx="1" + fy="44" + r="5" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5235"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop5237" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop5239" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3816"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3818" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3820" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3816" + id="radialGradient4179" + gradientUnits="userSpaceOnUse" + cx="31.112698" + cy="19.008621" + fx="31.112698" + fy="19.008621" + r="8.6620579" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5235" + id="radialGradient5241" + cx="23.234518" + cy="40.688972" + fx="23.234518" + fy="40.688972" + r="16.956987" + gradientTransform="matrix(1,0,0,0.133183,0,35.2699)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="13.062462" + inkscape:cx="40.814762" + inkscape:cy="25.717712" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="1274" + inkscape:window-height="966" + inkscape:window-x="3" + inkscape:window-y="25" /> + <metadata + id="metadata4350"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <g + id="g1504" + style="opacity:0.12663754" + transform="matrix(0.851064,0,0,0.999995,3.148928,-3.9998)"> + <rect + transform="scale(-1,-1)" + y="-48" + x="-11" + height="8" + width="10" + id="rect1506" + style="opacity:1;color:black;fill:url(#radialGradient1512);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <rect + y="40" + x="38" + height="8" + width="10" + id="rect1508" + style="opacity:1;color:black;fill:url(#radialGradient1514);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <rect + y="40" + x="11" + height="8" + width="27" + id="rect1510" + style="opacity:1;color:black;fill:url(#linearGradient1516);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> + <path + sodipodi:type="arc" + style="opacity:0.52838428;fill:url(#radialGradient5241);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4340" + sodipodi:cx="23.234518" + sodipodi:cy="40.688972" + sodipodi:rx="16.956987" + sodipodi:ry="2.2583797" + d="M 40.191505 40.688972 A 16.956987 2.2583797 0 1 1 6.2775307,40.688972 A 16.956987 2.2583797 0 1 1 40.191505 40.688972 z" + transform="matrix(1.208941,0,0,1.980928,3.410841,15.87176)" /> + <path + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z " + id="path4334" + transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)" + sodipodi:nodetypes="cccccccccccccccccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.94924349" + inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z " + style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4336" + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z " + transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)" /> + <path + transform="matrix(2.539812,0,0,0.410815,-52.0204,75.74948)" + sodipodi:type="arc" + style="opacity:1;color:black;fill:url(#radialGradient4179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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" + id="path4306" + sodipodi:cx="31.112698" + sodipodi:cy="19.008621" + sodipodi:rx="8.6620579" + sodipodi:ry="8.6620579" + d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" /> + <path + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z " + id="rect1326" + transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)" + sodipodi:nodetypes="cccccccccccccccccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.94924349" + inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z " + style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path5034" + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z " + transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/jabber.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,246 @@ +<?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="48px" + height="48px" + id="svg3302" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="jabber.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/home/hbons/Desktop/xmpp.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3304"> + <linearGradient + id="linearGradient2222" + inkscape:collect="always"> + <stop + id="stop2224" + offset="0" + style="stop-color:#429538;stop-opacity:1" /> + <stop + id="stop2226" + offset="1" + style="stop-color:#033e6f;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient2214" + inkscape:collect="always"> + <stop + id="stop2216" + offset="0" + style="stop-color:#033e6f;stop-opacity:1" /> + <stop + id="stop2218" + offset="1" + style="stop-color:#14a9de;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3417"> + <stop + style="stop-color:#df5219;stop-opacity:1" + offset="0" + id="stop3419" /> + <stop + style="stop-color:#034072;stop-opacity:1" + offset="1" + id="stop3421" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3334"> + <stop + style="stop-color:#034072;stop-opacity:1" + offset="0" + id="stop3336" /> + <stop + style="stop-color:#109cd3;stop-opacity:1" + offset="1" + id="stop3338" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2214" + id="linearGradient3340" + x1="5.0133924" + y1="12.455358" + x2="15.638392" + y2="30.098215" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3334" + id="linearGradient3392" + gradientUnits="userSpaceOnUse" + x1="5.0133924" + y1="12.455358" + x2="15.638392" + y2="30.098215" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3423" + x1="31.736355" + y1="20.841261" + x2="35.292381" + y2="22.255474" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + x="-0.49491513" + width="1.9898303" + y="-1.0582332" + height="3.1164664" + id="filter3871"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="5.4785069" + id="feGaussianBlur3873" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2222" + id="linearGradient2206" + gradientUnits="userSpaceOnUse" + x1="18.734463" + y1="21.519651" + x2="15.642859" + y2="23.876795" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.9497475" + inkscape:cx="81.961371" + inkscape:cy="4.928944" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="1434" + inkscape:window-height="823" + inkscape:window-x="3" + inkscape:window-y="43" /> + <metadata + id="metadata3307"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + sodipodi:type="arc" + style="opacity:0.2967033;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3871)" + id="path3425" + sodipodi:cx="22.273863" + sodipodi:cy="36.736797" + sodipodi:rx="13.283506" + sodipodi:ry="6.2124381" + d="M 35.557369 36.736797 A 13.283506 6.2124381 0 1 1 8.9903564,36.736797 A 13.283506 6.2124381 0 1 1 35.557369 36.736797 z" + transform="matrix(1.0990312,0,0,0.3942904,-0.4161261,25.323157)" /> + <path + style="fill:#da6812;fill-opacity:1;stroke:#a24900;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 45.5,8.3964466 L 29.479739,12.639268 C 30.641414,18.245615 24.910285,36.130347 9.305892,40.357143 C 28.352732,40.357143 45.5,20.878719 45.5,8.3964466 z " + id="path3380" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.56227452" + inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z " + style="fill:url(#linearGradient3392);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + id="path3382" + d="M 2.15625,9.15625 C 2.4797298,15.042119 6.5569158,22.567467 12.875,28.65625 C 18.524354,34.100573 25.907207,38.35807 33.78125,39.46875 C 27.844419,36.773348 23.584667,32.10141 20.84375,27.28125 C 19.19604,24.383597 18.100702,21.459043 17.46875,18.875 C 16.896533,16.535213 16.729528,14.546192 16.9375,13.03125 L 2.15625,9.15625 z " + transform="matrix(-1,0,0,1,47.020178,0)" /> + <path + style="fill:#abbb25;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 38.234464,10.821428 L 30.091607,13 C 30.163035,15.428571 29.270178,30.892857 13.484463,39.428571 C 30.635869,37.073525 38.448749,16.396079 38.234464,10.821428 z " + id="path3384" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;fill-opacity:1;stroke:url(#linearGradient3423);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 45.5,8.3964466 L 29.479739,12.639268 C 30.641414,18.245615 24.910285,36.130347 9.305892,40.357143 C 28.352732,40.357143 45.5,20.878719 45.5,8.3964466 z " + id="path3388" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#df5219;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 38.941571,10.619397 L 30.091607,13 C 30.163035,15.428571 29.270178,30.892857 13.484463,39.428571 C 30.635869,37.073525 39.155856,16.194048 38.941571,10.619397 z " + id="path3386" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#e96d1f;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 34.3385,11.986693 L 30.221025,13 C 30.292453,15.428571 29.399596,30.892857 13.613881,39.428571 C 31.551001,34.930668 35.951771,13.823779 34.3385,11.986693 z " + id="path2228" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0305283" + inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z " + style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + id="path3390" + d="M 2.78125,9.8125 C 3.3466531,15.418621 7.1614784,22.50518 13.1875,28.3125 C 18.090567,33.03762 24.31812,36.855835 31,38.46875 C 26.325029,35.650434 22.791678,31.640043 20.4375,27.5 C 18.767353,24.562889 17.642711,21.596789 17,18.96875 C 16.46674,16.788257 16.328823,14.953857 16.46875,13.40625 L 2.78125,9.8125 z " + transform="matrix(-1,0,0,1,47.020178,0)" /> + <path + style="fill:#da6812;fill-opacity:1;stroke:#a24900;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 1.5201775,8.3964466 L 17.540439,12.639268 C 16.378764,18.245615 22.109893,36.130347 37.714286,40.357143 C 18.667446,40.357143 1.5201775,20.878719 1.5201775,8.3964466 z " + id="rect3321" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.56227452" + inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z " + style="fill:url(#linearGradient3340);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + id="path3332" + d="M 2.15625,9.15625 C 2.4797298,15.042119 6.5569158,22.567467 12.875,28.65625 C 18.524354,34.100573 25.907207,38.35807 33.78125,39.46875 C 27.844419,36.773348 23.584667,32.10141 20.84375,27.28125 C 19.19604,24.383597 18.100702,21.459043 17.46875,18.875 C 16.896533,16.535213 16.729528,14.546192 16.9375,13.03125 L 2.15625,9.15625 z " /> + <path + style="fill:#08aec5;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 8.7857143,10.821428 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 16.384309,37.073525 8.5714286,16.396079 8.7857143,10.821428 z " + id="rect3326" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#429538;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 8.1796228,10.821428 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 16.384309,37.073525 7.7633066,17.103186 8.1796228,10.821428 z " + id="path3342" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#a0ce67;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 12.811096,11.986693 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 15.598595,34.930668 11.197825,13.823779 12.811096,11.986693 z " + id="path2220" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;fill-opacity:1;stroke:url(#linearGradient2206);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 1.5201775,8.3964466 L 17.540439,12.639268 C 16.378764,18.245615 22.109893,36.130347 37.714286,40.357143 C 18.667446,40.357143 1.5201775,20.878719 1.5201775,8.3964466 z " + id="path3352" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0305283" + inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z " + style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + id="path3366" + d="M 2.78125,9.8125 C 3.3466531,15.418621 7.1614784,22.50518 13.1875,28.3125 C 18.090567,33.03762 24.31812,36.855835 31,38.46875 C 26.325029,35.650434 22.791678,31.640043 20.4375,27.5 C 18.767353,24.562889 17.642711,21.596789 17,18.96875 C 16.46674,16.788257 16.328823,14.953857 16.46875,13.40625 L 2.78125,9.8125 z " /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/meanwhile.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,174 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" + sodipodi:docname="meanwhile.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/meanwhile.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2195"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2197" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2199" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2230"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2232" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2234" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient4330" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2230" + id="linearGradient2236" + x1="10.177145" + y1="-1.3535745" + x2="10.177145" + y2="8.1371298" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2195" + id="radialGradient2211" + cx="30.5625" + cy="23.172834" + fx="30.5625" + fy="23.172834" + r="23.5" + gradientTransform="matrix(1.330958,-1.200379e-32,1.144509e-32,1.269011,-10.11491,-9.053927)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16.976026" + inkscape:cx="38.972041" + inkscape:cy="25.781032" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#f57900" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.3;fill:url(#radialGradient4330);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.583369,0,0,3.000545,-14.70523,9.779617)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.67679459;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4302" + sodipodi:cx="10.555883" + sodipodi:cy="4.0385542" + sodipodi:rx="5.074944" + sodipodi:ry="5.074944" + d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" + transform="matrix(1.477556,0,0,1.477551,8.403577,4.033323)" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#linearGradient2236);fill-opacity:1;stroke:#ffffff;stroke-width:0.78084576;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4273" + sodipodi:cx="10.555883" + sodipodi:cy="4.0385542" + sodipodi:rx="5.074944" + sodipodi:ry="5.074944" + d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1 5.4809394,4.0385542 A 5.074944 5.074944 0 1 1 15.630827 4.0385542 z" + transform="matrix(1.280662,0,0,1.280662,10.48149,4.827989)" /> + <path + style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000119;stroke-miterlimit:4;stroke-opacity:1" + d="M 34.49131,8.6205284 C 34.49131,13.938683 32.849731,20.518688 23.898198,20.518688 C 15.00451,20.518688 13.526711,13.679495 13.526711,8.6600767 L 5.4949228,9.8762415 C 5.4949228,23.237275 17.664236,26.553794 17.664236,26.553794 C 17.664236,26.553794 9.1712538,34.298165 9.1712538,44.405547 L 19.237281,44.498262 C 19.237281,44.498262 21.456328,35.564348 25.010569,35.564348 C 28.652494,35.564348 30.6887,44.471546 30.6887,44.471546 L 40.362294,44.503507 C 40.362294,33.010164 30.381957,26.578174 30.381957,26.578174 C 30.381957,26.578174 42.614757,23.170121 42.614757,9.5035195 L 34.49131,8.6205284 z " + id="rect2213" + sodipodi:nodetypes="czccccczccccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.9525249" + inkscape:original="M 34.5 8.625 C 34.5 13.943155 32.857783 20.53125 23.90625 20.53125 C 15.012563 20.53125 13.53125 13.675668 13.53125 8.65625 L 5.5 9.875 C 5.5000002 23.236033 17.65625 26.5625 17.65625 26.5625 C 17.65625 26.562499 9.15625 34.298868 9.15625 44.40625 L 19.25 44.5 C 19.249999 44.500002 21.445759 35.5625 25 35.5625 C 28.641925 35.562502 30.6875 44.46875 30.6875 44.46875 L 40.375 44.5 C 40.375001 33.006658 30.375 26.59375 30.375 26.59375 C 30.375001 26.593749 42.625 23.166602 42.625 9.5 L 34.5 8.625 z " + xlink:href="#rect2213" + style="opacity:0.6;fill:url(#radialGradient2211);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2220" + inkscape:href="#rect2213" + d="M 45.40625,11.75 C 45.26383,14.467634 44.656918,17.754917 42.6875,20.65625 C 40.459732,23.938183 36.552927,26.5 30.5,26.5 C 24.488156,26.5 20.637234,23.994802 18.4375,20.75 C 16.4845,17.869153 15.883719,14.581533 15.75,11.84375 L 7.5625,13.15625 C 7.8022289,20.855399 11.189172,25.378007 14.65625,28.03125 C 18.250337,30.781689 21.8125,31.5 21.8125,31.5 C 22.153479,31.568346 22.430121,31.817069 22.53422,32.148884 C 22.638319,32.4807 22.553332,32.842875 22.3125,33.09375 C 22.3125,33.09375 12.834342,43.464627 12.34375,55.4375 L 23.625,55.5625 C 23.775583,54.968024 24.284703,52.850143 25.46875,50.125 C 26.139238,48.581838 26.957479,47.047605 27.96875,45.8125 C 28.980021,44.577395 30.249533,43.59375 31.8125,43.59375 C 33.392834,43.59375 34.682884,44.544922 35.6875,45.78125 C 36.692116,47.017578 37.481015,48.583576 38.125,50.125 C 39.262583,52.847886 39.73782,54.93884 39.875,55.53125 L 50.59375,55.5625 C 49.991815,42.90975 37.8125,33.21875 37.8125,33.21875 C 37.516383,32.984647 37.386427,32.597781 37.481159,32.232384 C 37.575892,31.866987 37.877442,31.591993 38.25,31.53125 C 38.25,31.53125 42.11079,30.902899 45.96875,28.21875 C 49.692789,25.627775 53.310428,21.149688 53.5625,13.28125 L 45.40625,11.75 z " /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/msn.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,174 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" + sodipodi:docname="msn.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/msn.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3816"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3818" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3820" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2228"> + <stop + style="stop-color:#f56600;stop-opacity:1;" + offset="0" + id="stop2230" /> + <stop + style="stop-color:#f56600;stop-opacity:0;" + offset="1" + id="stop2232" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2219"> + <stop + style="stop-color:#3465a4;stop-opacity:1;" + offset="0" + id="stop2221" /> + <stop + style="stop-color:#3465a4;stop-opacity:0;" + offset="1" + id="stop2223" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3816" + id="radialGradient1358" + gradientUnits="userSpaceOnUse" + cx="31.112698" + cy="19.008621" + fx="31.112698" + fy="19.008621" + r="8.6620579" + gradientTransform="matrix(1.904859,0,0,0.57723,-32.76529,27.09015)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2219" + id="linearGradient1360" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.427299,0,0,1.408267,0.332861,3.39912)" + x1="10.329217" + y1="14.96656" + x2="16.580788" + y2="20.092552" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2228" + id="linearGradient1362" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.489007,0,0,1.428565,1.731241,3.002037)" + x1="20.998175" + y1="11.741063" + x2="18.544895" + y2="23.366545" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="14.778489" + inkscape:cx="32.469518" + inkscape:cy="22.977647" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#edd400" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:0.4;color:#000000;fill:url(#radialGradient1358);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;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" + d="M 43.00001,38.062496 C 43.00001,40.822496 35.608012,43.062496 26.500013,43.062496 C 17.392013,43.062496 10.000014,40.822496 10.000014,38.062496 C 10.000014,35.302496 17.392013,33.062496 26.500013,33.062496 C 35.608012,33.062496 43.00001,35.302496 43.00001,38.062496 z " + id="path4318" /> + <path + style="fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:1.00000083;stroke-miterlimit:4;stroke-opacity:1" + d="M 34.662639,20.335823 C 39.495137,21.781376 40.098879,38.560591 34.609432,38.560591 C 29.18649,38.560591 17.111515,15.085731 34.662639,20.335823 z " + id="rect2194" /> + <path + style="opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1" + d="M 29.5,20.59375 C 28.488762,20.699063 27.850577,20.9863 27.40625,21.40625 C 26.961923,21.8262 26.695785,22.399576 26.5625,23.15625 C 26.295929,24.669599 26.724448,26.888006 27.625,29.09375 C 28.525552,31.299494 29.853318,33.518217 31.21875,35.125 C 32.584182,36.731783 34.047656,37.59375 34.625,37.59375 C 35.065414,37.59375 35.396266,37.452251 35.75,37.125 C 36.103734,36.797749 36.436723,36.267837 36.71875,35.5625 C 37.282805,34.151825 37.566795,32.092358 37.53125,30 C 37.495705,27.907642 37.16426,25.762788 36.5625,24.125 C 35.96074,22.487212 35.097603,21.497403 34.375,21.28125 C 32.261511,20.64904 30.658881,20.473061 29.5,20.59375 z " + id="path2259" /> + <path + style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" + d="M 24.98559,40.707419 C 20.31754,40.707419 7.959768,29.343494 17.418553,22.824249 C 26.869109,16.310672 29.725145,40.707419 24.98559,40.707419 z " + id="rect2201" /> + <path + style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999911;stroke-miterlimit:4;stroke-opacity:1" + d="M 20.429472,22.564494 C 19.813992,22.53919 18.946491,22.754031 17.792299,23.48193 C 15.396153,24.993077 14.598274,26.486625 14.509287,28.117394 C 14.420299,29.74816 15.197952,31.630592 16.500622,33.380577 C 17.803294,35.130559 19.637587,36.743254 21.398232,37.871181 C 23.158877,38.999109 24.734359,39.505165 25.355011,39.505165 C 25.714095,39.505165 25.973542,38.578409 26.134382,37.774606 C 26.456061,36.166999 26.487926,33.806821 26.080561,31.449134 C 25.673198,29.091442 24.821426,26.682961 23.766308,25.027083 C 22.711189,23.371206 21.583796,22.611947 20.429472,22.564494 z " + id="path2254" /> + <path + style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 38.290982,9.1309894 C 35.842841,9.5672523 32.283411,12.929344 29.603482,16.28724 C 27.08796,19.439138 25.478582,22.11333 25.259732,22.47474 L 28.572232,30.03724 C 34.665525,29.832673 38.559865,27.128092 38.853482,26.91224 C 39.014293,26.551466 40.549044,23.055678 41.478482,19.03724 C 41.967713,16.922043 42.260097,14.730906 42.072232,12.97474 C 41.884367,11.218574 41.30548,10.015388 40.103482,9.3809894 C 39.532517,9.0796416 38.992058,9.0060564 38.290982,9.1309894 z " + id="path2245" /> + <path + style="fill:url(#linearGradient1360);fill-opacity:1;stroke:#204a87;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" + d="M 2.9244668,13.205506 C 5.4909473,8.9616426 31.868508,26.916697 20.798169,29.292473 C 9.7422309,31.665159 0.38413836,17.406122 2.9244668,13.205506 z " + id="rect2197" /> + <path + style="opacity:0.2;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999905;stroke-miterlimit:4;stroke-opacity:1" + d="M 4.0077208,17.150417 C 4.6613048,18.933996 5.9435775,21.021975 7.6235197,22.895457 C 10.983405,26.64242 15.833733,29.401717 20.89796,28.310863 C 21.928379,28.088904 22.232928,27.802155 22.334374,27.651594 C 22.435813,27.501039 22.52111,27.289844 22.334374,26.709786 C 21.960899,25.54967 20.384396,23.482994 18.173725,21.529832 C 15.963059,19.576669 13.153701,17.6285 10.545878,16.161517 C 7.9380537,14.694536 5.1976761,13.680027 3.975949,13.563989 C 3.3254548,13.502207 3.3541371,15.366838 4.0077208,17.150417 z " + id="path2249" /> + <path + style="fill:url(#linearGradient1362);fill-opacity:1;stroke:#ce5d00;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1" + d="M 23.497613,20.84222 C 23.497613,20.84222 33.747199,3.7130144 39.940221,6.9816102 C 46.183621,10.276795 39.032218,26.044415 39.032218,26.044415 C 39.032218,26.044415 34.34592,29.558038 27.298467,29.558038 L 23.497613,20.84222 z " + id="rect1317" /> + <path + style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1" + d="M 37.65625,7.5937494 C 35.207156,8.0301823 31.648755,11.392008 28.96875,14.75 C 26.453156,17.901987 24.843855,20.576081 24.625,20.9375 L 27.9375,28.5 C 34.029365,28.295478 37.922857,25.592475 38.21875,25.375 C 38.379566,25.014217 39.91427,21.518622 40.84375,17.5 C 41.333003,15.384706 41.625396,13.193957 41.4375,11.4375 C 41.249604,9.6810425 40.671312,8.4784456 39.46875,7.8437494 C 38.897466,7.5422332 38.357596,7.4687683 37.65625,7.5937494 z " + id="path1328" /> + <path + style="fill:#75507b;fill-opacity:1;stroke:#5c3566;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 25.75715,25.780775 C 27.420525,29.605605 28.313593,33.06003 27.750608,33.491546 C 27.187623,33.923061 25.380722,31.169067 23.717348,27.344236 C 22.053974,23.519407 21.160905,20.064982 21.72389,19.633467 C 22.286875,19.201951 24.093776,21.955945 25.75715,25.780775 z " + id="path2192" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/novell.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,167 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/scalable" + sodipodi:docname="novell.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/groupwise.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2190"> + <stop + style="stop-color:#d3d7cf;stop-opacity:1;" + offset="0" + id="stop2192" /> + <stop + style="stop-color:#d3d7cf;stop-opacity:0;" + offset="1" + id="stop2194" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2238"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop2240" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop2242" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2238" + id="linearGradient2244" + x1="11.76915" + y1="3.4633243" + x2="11.76915" + y2="11.990735" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.888889,0,0,1.818182,2.77778,1.26862)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2190" + id="radialGradient2196" + cx="4.3022962" + cy="7.5011024" + fx="4.3022962" + fy="7.5011024" + r="8.5" + gradientTransform="matrix(-2.567716,2.567716,-2.581797,-2.581795,54.64024,19.71367)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.865422" + inkscape:cx="44.509337" + inkscape:cy="25.527163" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#00ffff" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(2.934577,0,0,2.111893,-7.042754,16.91046)" /> + <rect + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1326" + width="33.012436" + height="35.008015" + x="7.4937739" + y="5.4919853" + ry="4.0986137" + rx="4.0986137" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.99578816" + inkscape:original="M 11.59375 5.5 C 9.323118 5.5 7.5 7.323118 7.5 9.59375 L 7.5 36.40625 C 7.5 38.676882 9.3231175 40.5 11.59375 40.5 L 36.40625 40.5 C 38.676882 40.5 40.5 38.676882 40.5 36.40625 L 40.5 9.59375 C 40.5 7.323118 38.676882 5.5 36.40625 5.5 L 11.59375 5.5 z " + xlink:href="#rect1326" + style="opacity:1;fill:url(#radialGradient2196);fill-opacity:1;stroke:#ffffff;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2201" + inkscape:href="#rect1326" + d="M 9.5,5.5 C 8.9264847,5.5 8.5,5.9264831 8.5,6.5 L 8.5,37.5 C 8.5,38.073517 8.9264835,38.499999 9.5,38.5 L 38.5,38.5 C 39.073514,38.5 39.5,38.073514 39.5,37.5 L 39.5,6.5 C 39.5,5.9264836 39.073514,5.5 38.5,5.5 L 9.5,5.5 z " /> + <path + style="fill:#cc0000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 16,13.995893 L 16,32.182309 L 19.840233,32.182309 L 19.746482,21.644702 L 29.000001,30.275655 L 33,33.995893 L 33,15.840234 L 29.223673,15.840234 L 29.223673,26.287561 L 18.124999,15.900655 L 16,13.995893 z " + id="rect1317" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="fill:url(#linearGradient2244);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 16,13.995893 L 16,32.182309 L 19.840234,32.182309 L 19.746482,21.644702 L 29.000001,30.275655 L 33,33.995893 L 33,15.840234 L 29.223673,15.840234 L 29.223673,26.287561 L 18.124999,15.900655 L 16,13.995893 z " + id="path2228" + sodipodi:nodetypes="ccccccccccc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/qq.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,291 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable" + sodipodi:docname="qq.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/qq.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2234"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2236" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2238" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2226"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2228" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2230" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2226" + id="linearGradient2232" + x1="13.296353" + y1="9.8980713" + x2="13.296353" + y2="11.762599" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2234" + id="linearGradient2240" + x1="23.995228" + y1="3.6292775" + x2="23.995228" + y2="15.460559" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="13.788818" + inkscape:cx="40.171151" + inkscape:cy="24.9552" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + fill="#f57900" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(2.884895,0,0,2.493965,-7.834213,14.7186)" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.12731504;stroke-miterlimit:4;stroke-opacity:1" + d="M 42.428297,39.500007 C 42.428297,41.665624 39.100419,43.423228 34.999998,43.423228 C 30.899577,43.423228 27.571699,41.665624 27.571699,39.500007 C 27.571699,37.334387 30.899577,35.576783 34.999998,35.576783 C 39.100419,35.576783 42.428297,37.334387 42.428297,39.500007 z " + id="path2344" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.1975733" + inkscape:original="M 35 35.5625 C 30.899579 35.5625 27.5625 37.334379 27.5625 39.5 C 27.5625 41.665617 30.899581 43.437499 35 43.4375 C 39.100421 43.4375 42.437502 41.665616 42.4375 39.5 C 42.4375 37.33438 39.100423 35.562501 35 35.5625 z " + xlink:href="#path2344" + style="opacity:0.2;fill:#f57900;fill-opacity:1;stroke:#ffffff;stroke-width:1.12731504;stroke-miterlimit:4;stroke-opacity:1" + id="path2213" + inkscape:href="#path2344" + d="M 35,36.75 C 33.122288,36.75 31.437541,37.185098 30.3125,37.78125 C 29.187459,38.377402 28.75,39.032317 28.75,39.5 C 28.75,39.96768 29.187459,40.622598 30.3125,41.21875 C 31.437541,41.814902 33.12229,42.25 35,42.25 C 36.877711,42.25 38.562459,41.814902 39.6875,41.21875 C 40.812541,40.622598 41.25,39.967679 41.25,39.5 C 41.25,39.032317 40.812541,38.377402 39.6875,37.78125 C 38.562459,37.185098 36.877713,36.75 35,36.75 z " /> + <path + style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.12731493;stroke-miterlimit:4;stroke-opacity:1" + d="M 20.428294,39.500007 C 20.428294,41.665624 17.100417,43.423228 12.999998,43.423228 C 8.8995795,43.423228 5.5717033,41.665624 5.5717033,39.500007 C 5.5717033,37.334387 8.8995795,35.576783 12.999998,35.576783 C 17.100417,35.576783 20.428294,37.334387 20.428294,39.500007 z " + id="path2340" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.1365247" + inkscape:original="M 13 35.5625 C 8.8995815 35.5625 5.5624999 37.334379 5.5625 39.5 C 5.5625 41.665617 8.8995814 43.437499 13 43.4375 C 17.100419 43.4375 20.437501 41.665616 20.4375 39.5 C 20.4375 37.33438 17.100419 35.562501 13 35.5625 z " + xlink:href="#path2340" + style="fill:#f57900;fill-opacity:1;stroke:#ffffff;stroke-width:1.12731493;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2" + id="path2216" + inkscape:href="#path2340" + d="M 13,36.6875 C 11.113496,36.6875 9.417597,37.116607 8.28125,37.71875 C 7.144903,38.320893 6.6875,39.00096 6.6875,39.5 C 6.6875,39.999037 7.1449028,40.679107 8.28125,41.28125 C 9.4175972,41.883393 11.113496,42.3125 13,42.3125 C 14.886503,42.3125 16.582403,41.883393 17.71875,41.28125 C 18.855097,40.679107 19.3125,39.999036 19.3125,39.5 C 19.3125,39.00096 18.855097,38.320893 17.71875,37.71875 C 16.582403,37.116607 14.886504,36.6875 13,36.6875 z " /> + <path + style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.9999994;stroke-miterlimit:4;stroke-opacity:1" + d="M 16.512817,28.000001 C 16.512817,31.046362 13.819074,33.518772 10.499997,33.518772 C 7.1809214,33.518772 4.4871784,31.046362 4.4871784,28.000001 C 4.4871784,24.953638 7.1809214,22.481229 10.499997,22.481229 C 13.819074,22.481229 16.512817,24.953638 16.512817,28.000001 z " + id="path2346" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.99468362" + inkscape:original="M 10.5 22.46875 C 7.1809244 22.46875 4.5000001 24.953636 4.5 28 C 4.5 31.046361 7.1809243 33.53125 10.5 33.53125 C 13.819077 33.53125 16.5 31.04636 16.5 28 C 16.5 24.953637 13.819077 22.468749 10.5 22.46875 z " + xlink:href="#path2346" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999994;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2" + id="path2207" + inkscape:href="#path2346" + d="M 10.5,23.46875 C 7.677383,23.46875 5.5000001,25.537211 5.5,28 C 5.5,30.462786 7.6773835,32.53125 10.5,32.53125 C 13.322618,32.53125 15.5,30.462785 15.5,28 C 15.5,25.537212 13.322618,23.468749 10.5,23.46875 z " /> + <path + style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" + d="M 43.529524,27.990624 C 43.529524,31.032236 40.925766,33.500791 37.717565,33.500791 C 34.509364,33.500791 31.905607,31.032236 31.905607,27.990624 C 31.905607,24.94901 34.509364,22.480455 37.717565,22.480455 C 40.925766,22.480455 43.529524,24.94901 43.529524,27.990624 z " + id="path2348" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0194331" + inkscape:original="M 37.71875 22.46875 C 34.510549 22.46875 31.90625 24.958387 31.90625 28 C 31.90625 31.041612 34.51055 33.500001 37.71875 33.5 C 40.926951 33.5 43.531248 31.041613 43.53125 28 C 43.53125 24.958386 40.926952 22.46875 37.71875 22.46875 z " + xlink:href="#path2348" + style="fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2" + id="path2210" + inkscape:href="#path2348" + d="M 37.71875,23.5 C 35.037951,23.5 32.9375,25.540295 32.9375,28 C 32.9375,30.459704 35.031333,32.468751 37.71875,32.46875 C 40.406169,32.46875 42.499998,30.459706 42.5,28 C 42.5,25.540294 40.39955,23.5 37.71875,23.5 z " /> + <path + style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999851;stroke-miterlimit:4;stroke-opacity:1" + d="M 39.499823,30.499795 C 39.499823,37.123448 32.555881,42.499166 23.999954,42.499166 C 15.444028,42.499166 8.500088,37.123448 8.500088,30.499795 C 8.500088,23.876141 15.444028,18.500423 23.999954,18.500423 C 32.555881,18.500423 39.499823,23.876141 39.499823,30.499795 z " + id="path2322" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0023749" + inkscape:original="M 24 18.5 C 15.444074 18.5 8.5000003 23.876345 8.5 30.5 C 8.5 37.123653 15.444074 42.500001 24 42.5 C 32.555927 42.5 39.499998 37.123652 39.5 30.5 C 39.5 23.876346 32.555927 18.5 24 18.5 z " + xlink:href="#path2322" + style="fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999851;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2" + id="path2204" + inkscape:href="#path2322" + d="M 24,19.5 C 19.931993,19.5 16.266755,20.79143 13.65625,22.8125 C 11.045745,24.83357 9.5000001,27.538461 9.5,30.5 C 9.5,33.461538 11.045745,36.16643 13.65625,38.1875 C 16.266755,40.20857 19.931994,41.5 24,41.5 C 28.068007,41.5 31.733245,40.20857 34.34375,38.1875 C 36.954255,36.16643 38.499999,33.461538 38.5,30.5 C 38.5,27.538461 36.954255,24.83357 34.34375,22.8125 C 31.733245,20.79143 28.068007,19.5 24,19.5 z " /> + <path + style="fill:#eeeeec;fill-opacity:1;stroke:#babdb6;stroke-width:0.99999964;stroke-miterlimit:4;stroke-opacity:1" + d="M 35.499727,31.513502 C 35.499727,36.473648 30.347846,40.499275 23.999994,40.499275 C 17.652141,40.499275 12.500261,36.473648 12.500261,31.513502 C 12.500261,26.553353 17.652141,22.527728 23.999994,22.527728 C 30.347846,22.527728 35.499727,26.553353 35.499727,31.513502 z " + id="path2324" /> + <path + style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1" + d="M 39.500074,23.567769 C 39.500074,26.23172 32.974173,28.996603 24.456043,28.996603 C 22.326509,28.996603 16.736214,27.907042 11.047899,32.502199 C 9.5994849,31.202637 8.2282338,30.682189 7.4999943,29.550469 C 10.583901,26.508381 9.3151719,24.813625 9.3151719,23.481649 C 9.3151719,20.817694 15.551058,19.435466 24.069189,19.435466 C 32.587316,19.435466 39.500074,20.903814 39.500074,23.567769 z " + id="path2338" + sodipodi:nodetypes="csccscc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0198945" + inkscape:original="M 24.0625 19.4375 C 15.544369 19.4375 9.3124997 20.804795 9.3125 23.46875 C 9.3125 24.800726 10.583907 26.520413 7.5 29.5625 C 8.2282395 30.69422 9.6140857 31.20044 11.0625 32.5 C 16.750815 27.904843 22.339216 29 24.46875 29 C 32.98688 29 39.500002 26.226452 39.5 23.5625 C 39.5 20.898545 32.580627 19.437499 24.0625 19.4375 z " + xlink:href="#path2338" + style="opacity:0.2;fill:#ef2929;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" + id="path2352" + inkscape:href="#path2338" + d="M 23.78125,20.625 C 19.513931,20.625 15.847844,21.000067 13.34375,21.71875 C 12.091703,22.078092 11.128194,22.525914 10.5625,22.96875 C 9.9968057,23.411586 9.84375,23.757615 9.84375,24.15625 C 9.84375,24.61981 10.180025,25.486492 10.09375,26.75 C 10.020891,27.817027 9.4211808,29.129125 8.28125,30.59375 C 8.8275971,31.260718 9.8376614,32.075363 10.96875,33.09375 C 13.726867,30.866878 16.436481,29.770299 18.71875,29.4375 C 21.226032,29.07189 23.299616,29.375 24.1875,29.375 C 28.393452,29.375 32.111073,28.617129 34.6875,27.53125 C 35.975713,26.988311 36.964234,26.376877 37.59375,25.78125 C 38.223266,25.185623 38.4375,24.662279 38.4375,24.28125 C 38.4375,23.923108 38.262431,23.559823 37.625,23.09375 C 36.987569,22.627677 35.940994,22.158273 34.59375,21.78125 C 31.899262,21.027204 28.043658,20.625 23.78125,20.625 z " /> + <path + style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" + d="M 21.960325,3.5010229 L 25.764207,3.5010229 C 31.085197,3.5010229 35.608549,8.5308564 36.949275,14.000863 C 38.32645,19.619567 37.747111,24.500705 27.838472,24.500705 L 20.083608,24.500705 C 10.158913,24.500705 9.6944095,19.619567 11.071582,14.000863 C 12.355856,8.7611743 16.639337,3.5010229 21.960325,3.5010229 z " + id="rect2317" + sodipodi:nodetypes="ccsccsc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0200312" + inkscape:original="M 21.96875 3.5 C 16.647762 3.5 12.346774 8.7603112 11.0625 14 C 9.6853275 19.618704 10.169054 24.499999 20.09375 24.5 L 27.84375 24.5 C 37.752389 24.5 38.314674 19.618704 36.9375 14 C 35.596774 8.5299934 31.070989 3.5000001 25.75 3.5 L 21.96875 3.5 z " + xlink:href="#rect2317" + style="opacity:0.2;fill:url(#linearGradient2240);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-opacity:1" + id="path2355" + inkscape:href="#rect2317" + d="M 22.3125,5.625 C 20.004556,5.625 17.866452,6.7459198 16.125,8.5625 C 14.383548,10.37908 13.095153,12.874863 12.5,15.3125 C 11.838105,18.0235 11.722466,20.352475 12.65625,21.875 C 13.590034,23.397525 15.704379,24.53125 20.46875,24.53125 L 28.15625,24.53125 C 32.912367,24.53125 35.073893,23.40303 36.03125,21.875 C 36.988607,20.34697 36.879156,18.0174 36.21875,15.3125 C 34.977402,10.228171 30.73919,5.6249999 26.09375,5.625 L 22.3125,5.625 z " /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2326" + sodipodi:cx="5.5383673" + sodipodi:cy="3.4618888" + sodipodi:rx="1.2307483" + sodipodi:ry="2.4871371" + d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" + transform="matrix(2.437541,0,0,2.010344,6.500003,5.040414)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2328" + sodipodi:cx="5.5383673" + sodipodi:cy="3.4618888" + sodipodi:rx="1.2307483" + sodipodi:ry="2.4871371" + d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" + transform="matrix(2.336368,0,0,1.926902,14.93582,5.121749)" /> + <path + style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999952;stroke-miterlimit:4;stroke-opacity:1" + d="M 34.506346,21.499996 C 34.506346,24.245838 29.795953,26.474343 23.99207,26.474343 C 18.188191,26.474343 13.477796,24.245838 13.477796,21.499996 C 13.477796,18.754158 18.188191,16.52565 23.99207,16.52565 C 29.795953,16.52565 34.506346,18.754158 34.506346,21.499996 z " + id="path2320" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2330" + sodipodi:cx="5.5383673" + sodipodi:cy="3.4618888" + sodipodi:rx="1.2307483" + sodipodi:ry="2.4871371" + d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" + transform="matrix(1.218772,0,0,0.603105,19.74999,11.41212)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2332" + sodipodi:cx="5.5383673" + sodipodi:cy="3.4618888" + sodipodi:rx="1.2307483" + sodipodi:ry="2.4871371" + d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1 4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1 6.7691156 3.4618888 z" + transform="matrix(1.21877,0,0,0.603105,14.75,11.41212)" /> + <path + sodipodi:type="arc" + style="opacity:0.2;fill:url(#linearGradient2232);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.60585797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2336" + sodipodi:cx="13.296353" + sodipodi:cy="10.923561" + sodipodi:rx="8.2214088" + sodipodi:ry="1.7085644" + d="M 21.517762 10.923561 A 8.2214088 1.7085644 0 1 1 5.0749445,10.923561 A 8.2214088 1.7085644 0 1 1 21.517762 10.923561 z" + transform="matrix(1.167356,0,0,2.333756,8.467761,-4.004284)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/silc.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,153 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" + sodipodi:docname="silc.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/silc.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2193"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2195" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2197" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2222"> + <stop + style="stop-color:#8ae234;stop-opacity:1;" + offset="0" + id="stop2224" /> + <stop + style="stop-color:#8ae234;stop-opacity:0;" + offset="1" + id="stop2226" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2222" + id="linearGradient1318" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.08567,0,0,1.999113,-1.709138,-1.492105)" + x1="14.315197" + y1="11.002394" + x2="13.638538" + y2="-28.749279" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2193" + id="linearGradient2203" + x1="20.834801" + y1="17.936523" + x2="26.154163" + y2="21.007658" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="13.788817" + inkscape:cx="35.001851" + inkscape:cy="20.952874" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#9db029" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.461296,0,0,2.111892,-13.20427,14.91459)" /> + <path + style="opacity:1;fill:url(#linearGradient1318);fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999911;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 20.489949,11.011929 C 20.489949,11.915899 20.607326,27.829773 20.511631,29.556634 C 20.511631,29.556634 7.9604471,29.494161 7.7415566,29.494161 C 5.406724,29.494161 3.5050383,31.205765 3.5050383,33.545004 C 3.5050383,35.87227 5.406724,37.500189 7.7415566,37.500189 L 21.797683,37.500189 C 26.78121,37.500189 28.663439,35.244533 28.663439,32.002624 C 28.663439,31.098653 28.395875,13.209261 28.505671,11.511706 C 28.505671,11.511706 40.472455,11.511706 41.202093,11.511706 C 43.536926,11.511706 45.50004,9.6968193 45.50004,7.3652154 C 45.50004,5.7067176 43.536923,3.5056793 41.202093,3.5056793 L 26.642947,3.5056793 C 23.379817,3.5056793 20.489949,5.5738454 20.489949,11.011929 z " + id="rect3167" + sodipodi:nodetypes="ccssscscssscs" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0564219" + inkscape:original="M 26.65625 3.5 C 23.393121 3.4999999 20.5 5.5619164 20.5 11 C 20.500001 11.90397 20.595695 27.835639 20.5 29.5625 C 20.5 29.562499 7.9688905 29.5 7.75 29.5 C 5.4151674 29.499999 3.5 31.192011 3.5 33.53125 C 3.5 35.858514 5.4151674 37.5 7.75 37.5 L 21.8125 37.5 C 26.796026 37.499998 28.65625 35.241909 28.65625 32 C 28.65625 31.096028 28.390204 13.197555 28.5 11.5 C 28.5 11.5 40.457862 11.5 41.1875 11.5 C 43.522335 11.5 45.5 9.7066039 45.5 7.375 C 45.500002 5.7165023 43.52233 3.5 41.1875 3.5 L 26.65625 3.5 z " + xlink:href="#rect3167" + style="opacity:0.5;fill:url(#linearGradient2203);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.99999964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1316" + inkscape:href="#rect3167" + d="M 26.65625,4.53125 C 25.249537,4.53125 24.032886,4.9412683 23.125,5.90625 C 22.217114,6.8712317 21.5625,8.4647612 21.5625,11 C 21.5625,11.415298 21.581781,15.655374 21.59375,19.96875 C 21.605719,24.282126 21.621325,28.562355 21.5625,29.625 C 21.532315,30.188634 21.064428,30.628998 20.5,30.625 C 20.5,30.625 17.347604,30.609375 14.1875,30.59375 C 11.027396,30.578125 7.758935,30.5625 7.75,30.5625 C 5.9336242,30.562499 4.5625,31.79623 4.5625,33.5625 C 4.5625,35.313821 5.8995405,36.4375 7.75,36.4375 L 21.78125,36.4375 C 24.114194,36.4375 25.537737,35.928156 26.375,35.1875 C 27.212263,34.446844 27.59375,33.417796 27.59375,32 C 27.59375,31.65099 27.521563,26.864091 27.46875,22.0625 C 27.442343,19.661704 27.415771,17.24736 27.40625,15.3125 C 27.396729,13.37764 27.400585,12.008829 27.4375,11.4375 C 27.467685,10.873866 27.935572,10.433502 28.5,10.4375 C 28.5,10.4375 40.457735,10.4375 41.1875,10.4375 C 42.9733,10.4375 44.4375,9.0816356 44.4375,7.34375 C 44.4375,6.9328186 44.123387,6.1347887 43.5,5.53125 C 42.876613,4.9277113 42.021185,4.53125 41.1875,4.53125 L 26.65625,4.53125 z " /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/simple.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,128 @@ +<?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="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" + sodipodi:docname="simple.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/sip.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2227"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2229" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2231" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-1.017285,3.152773e-16,-5.511361e-9,-0.35721,21.6831,14.19321)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2227" + id="linearGradient2233" + x1="25.0156" + y1="8.8961887" + x2="25.0156" + y2="21.733829" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="13.788817" + inkscape:cx="34.924917" + inkscape:cy="22.006439" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#eeeeec" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.4;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.376861,0,0,1.900703,-12.73565,10.62313)" /> + <path + style="fill:#729fcf;fill-opacity:1;stroke:#3465a4;stroke-width:1.00000095;stroke-miterlimit:4;stroke-opacity:1" + d="M 2.4375,10.5 L 2.4375,22.5 L 13.75,22.5 L 13.75,26.5 L 2.4375,26.5 L 2.4375,30.5 L 17.5,30.5 L 17.5,18.5 L 6.21875,18.5 L 6.21875,14.5 L 17.5,14.5 L 17.5,10.5 L 2.4375,10.5 z M 21.46875,10.5 L 21.46875,30.5 L 25.5,30.5 L 25.5,10.5 L 21.46875,10.5 z M 29.5,10.5 L 29.5,30.5 L 33.5,30.5 L 33.5,22.5 L 45.5,22.5 L 45.5,10.5 L 29.5,10.5 z M 33.5,14.5 L 41.5,14.5 L 41.5,18.5625 L 33.5,18.5625 L 33.5,14.5 z " + id="rect2212" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0424688" + inkscape:original="M 2.4375 10.5 L 2.4375 22.5 L 13.75 22.5 L 13.75 26.5 L 2.4375 26.5 L 2.4375 30.5 L 17.5 30.5 L 17.5 18.5 L 6.21875 18.5 L 6.21875 14.5 L 17.5 14.5 L 17.5 10.5 L 2.4375 10.5 z M 21.46875 10.5 L 21.46875 30.5 L 25.5 30.5 L 25.5 10.5 L 21.46875 10.5 z M 29.5 10.5 L 29.5 30.5 L 33.5 30.5 L 33.5 22.5 L 45.5 22.5 L 45.5 10.5 L 29.5 10.5 z M 33.5 14.5 L 41.5 14.5 L 41.5 18.5625 L 33.5 18.5625 L 33.5 14.5 z " + xlink:href="#rect2212" + style="fill:url(#linearGradient2233);fill-opacity:1.0;stroke:#ffffff;stroke-width:1.00000095;stroke-miterlimit:4;stroke-opacity:1;opacity:0.35" + id="path1352" + inkscape:href="#rect2212" + d="M 3.46875,11.53125 L 3.46875,21.46875 L 13.75,21.46875 C 14.316987,21.474875 14.775125,21.933013 14.78125,22.5 L 14.78125,26.5 C 14.775125,27.066987 14.316987,27.525125 13.75,27.53125 L 3.46875,27.53125 L 3.46875,29.46875 L 16.46875,29.46875 L 16.46875,19.53125 L 6.21875,19.53125 C 5.6517628,19.525125 5.1936251,19.066987 5.1875,18.5 L 5.1875,14.5 C 5.1936251,13.933013 5.6517628,13.474875 6.21875,13.46875 L 16.46875,13.46875 L 16.46875,11.53125 L 3.46875,11.53125 z M 22.5,11.53125 L 22.5,29.46875 L 24.46875,29.46875 L 24.46875,11.53125 L 22.5,11.53125 z M 30.53125,11.53125 L 30.53125,29.46875 L 32.46875,29.46875 L 32.46875,22.5 C 32.474875,21.933013 32.933013,21.474875 33.5,21.46875 L 44.46875,21.46875 L 44.46875,11.53125 L 30.53125,11.53125 z M 33.3125,13.46875 C 33.374873,13.463118 33.437627,13.463118 33.5,13.46875 L 41.5,13.46875 C 42.066987,13.474875 42.525125,13.933013 42.53125,14.5 L 42.53125,18.5625 C 42.525125,19.129487 42.066987,19.587625 41.5,19.59375 L 33.5,19.59375 C 32.933013,19.587625 32.474875,19.129487 32.46875,18.5625 L 32.46875,14.5 C 32.464991,13.997926 32.819624,13.564486 33.3125,13.46875 z " /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/yahoo.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,174 @@ +<?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="svg1307" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" + sodipodi:docname="yahoo.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/yahoo.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs1309"> + <linearGradient + inkscape:collect="always" + id="linearGradient2211"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2213" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2215" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4123"> + <stop + style="stop-color:#ff0000;stop-opacity:1;" + offset="0" + id="stop4125" /> + <stop + style="stop-color:#ff0000;stop-opacity:0;" + offset="1" + id="stop4127" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4123" + id="linearGradient2206" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.871443,0,0,1.871443,1.990827,1.339082)" + x1="9.7634506" + y1="11.499014" + x2="9.7634506" + y2="0.12942761" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2211" + id="linearGradient2217" + x1="36.249207" + y1="7.6495404" + x2="36.249207" + y2="23.063982" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.098901" + inkscape:cx="49.54817" + inkscape:cy="29.700698" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + fill="#a40000" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata1312"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <rect + style="opacity:0;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect3203" + width="0" + height="2.5118096" + x="6" + y="6.4881902" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.163562,0,0,2.111892,-10.02562,12.91459)" /> + <path + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#a40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 36.593752,13.5 L 36.750002,24.71875 L 44.125002,13.5 L 36.593752,13.5 z M 33.406252,30.34375 C 32.052922,30.519922 31.000003,31.724054 31.000002,33.15625 C 31.000002,34.70982 32.231505,35.96875 33.750002,35.96875 C 35.268499,35.96875 36.500002,34.70982 36.500002,33.15625 C 36.500002,31.60268 35.268499,30.343751 33.750002,30.34375 C 33.631369,30.34375 33.520941,30.32882 33.406252,30.34375 z " + id="path4110" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0402364" + inkscape:original="M 36.59375 13.5 L 36.75 24.71875 L 44.125 13.5 L 36.59375 13.5 z M 33.40625 30.34375 C 32.052918 30.519922 31.000001 31.724054 31 33.15625 C 31 34.70982 32.231503 35.96875 33.75 35.96875 C 35.268495 35.96875 36.5 34.70982 36.5 33.15625 C 36.499998 31.60268 35.268497 30.343751 33.75 30.34375 C 33.631365 30.34375 33.520939 30.32882 33.40625 30.34375 z " + xlink:href="#path4110" + style="opacity:0.35;fill:url(#linearGradient2217);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2209" + inkscape:href="#path4110" + d="M 37.625,15.0625 L 37.71875,21.875 L 42.1875,15.0625 L 37.625,15.0625 z M 33.53125,31.90625 C 32.711111,32.013013 32.031251,32.765143 32.03125,33.6875 C 32.031249,34.691344 32.806451,35.46875 33.75,35.46875 C 34.693551,35.46875 35.46875,34.691346 35.46875,33.6875 C 35.468751,32.683656 34.69355,31.906251 33.75,31.90625 C 33.544091,31.90625 33.473148,31.913814 33.53125,31.90625 z " /> + <path + style="opacity:1;fill:url(#linearGradient2206);fill-opacity:1;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 2.6545432,11.532816 L 4.353345,15.445312 L 7.741467,15.555398 L 17.47685,25.310159 L 17.4318,31.506326 L 12.428056,31.384739 L 11.665952,34.499424 L 27.339128,34.54589 L 26.551973,31.519888 L 21.572919,31.603085 L 21.572919,25.191498 L 28.209096,17.523843 L 31.468823,17.433744 L 32.573193,13.532585 L 23.168883,13.473142 L 21.694773,17.410562 L 23.776066,17.4644 L 19.977012,20.889333 L 13.198929,15.445312 L 17.758833,15.445312 L 20.124034,11.577865 L 2.6545432,11.532816 z " + id="rect3219" + sodipodi:nodetypes="cccccccccccccccccccccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.98856229" + inkscape:original="M 2.65625 11.53125 L 4.34375 15.4375 L 7.75 15.5625 L 17.46875 25.3125 L 17.4375 31.5 L 12.4375 31.375 L 11.65625 34.5 L 27.34375 34.53125 L 26.5625 31.53125 L 21.5625 31.59375 L 21.5625 25.1875 L 28.21875 17.53125 L 31.46875 17.4375 L 32.5625 13.53125 L 23.15625 13.46875 L 21.6875 17.40625 L 23.78125 17.46875 L 19.96875 20.875 L 13.1875 15.4375 L 17.75 15.4375 L 20.125 11.5625 L 2.65625 11.53125 z " + xlink:href="#rect3219" + style="opacity:0.35;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2204" + inkscape:href="#rect3219" + d="M 4.15625,13.0625 L 5,15 L 7.78125,15.09375 C 8.0317447,15.110809 8.266366,15.222533 8.4375,15.40625 L 18.15625,25.15625 C 18.347286,25.335037 18.45966,25.58226 18.46875,25.84375 L 18.4375,32.03125 C 18.44087,32.30297 18.33225,32.564099 18.137167,32.75327 C 17.942084,32.942442 17.677738,33.042977 17.40625,33.03125 L 13.21875,32.9375 L 12.9375,34.03125 L 26.0625,34.0625 L 25.78125,33.0625 L 21.5625,33.125 C 21.296354,33.12807 21.040212,33.0237 20.852006,32.835494 C 20.6638,32.647288 20.55943,32.391146 20.5625,32.125 L 20.5625,25.71875 C 20.562717,25.476777 20.651667,25.243286 20.8125,25.0625 L 27.46875,17.40625 C 27.649517,17.19593 27.910308,17.071204 28.1875,17.0625 L 30.71875,17 L 31.28125,15.0625 L 23.84375,15 L 23.125,16.96875 L 23.8125,17 C 24.228223,17.002399 24.598033,17.264612 24.737859,17.656122 C 24.877684,18.047632 24.757648,18.48479 24.4375,18.75 L 20.625,22.15625 C 20.263408,22.479557 19.720674,22.492795 19.34375,22.1875 L 12.5625,16.75 C 12.215365,16.491727 12.076498,16.037735 12.219751,15.629463 C 12.363005,15.221191 12.755094,14.953499 13.1875,14.96875 L 17.1875,14.96875 L 18.34375,13.09375 L 4.15625,13.0625 z " /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/protocols/scalable/zephyr.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,141 @@ +<?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="svg1307" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48" + sodipodi:docname="zephyr.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/zephyr.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs1309"> + <linearGradient + inkscape:collect="always" + id="linearGradient2236"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2238" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2240" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2236" + id="radialGradient2244" + cx="25" + cy="15.052035" + fx="25" + fy="15.052035" + r="13.03125" + gradientTransform="matrix(1.918832,-3.053611e-32,3.873765e-32,2.434201,-22.9708,-29.40113)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.749289" + inkscape:cx="42.013094" + inkscape:cy="29.955991" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + fill="#3465a4" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1268" + inkscape:window-height="971" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata1312"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <rect + style="opacity:0;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect3203" + width="0" + height="5.2291808" + x="12.491029" + y="11.343686" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.23556,0,0,2.111892,-10.27791,16.9144)" /> + <path + style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:#204a87;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 11.5,6.4993337 L 11.5,14.499492 L 32.553687,14.499492 L 32.553687,18.499569 L 38.479829,18.499569 L 38.479829,7.5185793 L 38.479829,6.4993337 L 11.5,6.4993337 z M 19.552827,20.546173 L 19.552827,26.499725 L 30.471849,26.499725 L 30.471849,20.546173 L 19.552827,20.546173 z M 11.5,28.499765 L 11.5,40.5 L 38.485458,40.5 L 38.485458,32.499843 L 17.510207,32.499843 L 17.510207,28.499765 L 11.5,28.499765 z " + id="rect4229" + sodipodi:nodetypes="cccccccccccccccccccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.9828251" + inkscape:original="M 11.5 6.5 L 11.5 14.5 L 32.5625 14.5 L 32.5625 18.5 L 38.46875 18.5 L 38.46875 7.53125 L 38.46875 6.5 L 11.5 6.5 z M 19.5625 20.53125 L 19.5625 26.5 L 30.46875 26.5 L 30.46875 20.53125 L 19.5625 20.53125 z M 11.5 28.5 L 11.5 40.5 L 38.5 40.5 L 38.5 32.5 L 17.5 32.5 L 17.5 28.5 L 11.5 28.5 z " + xlink:href="#rect4229" + style="opacity:0.3;fill:url(#radialGradient2244);fill-opacity:1;stroke:#ffffff;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4266" + inkscape:href="#rect4229" + d="M 12.46875,4.46875 L 12.46875,10.53125 L 32.5625,10.53125 C 33.09434,10.538865 33.523635,10.96816 33.53125,11.5 L 33.53125,14.53125 L 37.5,14.53125 L 37.5,4.53125 L 37.5,4.46875 L 12.46875,4.46875 z M 20.53125,18.5 L 20.53125,22.53125 L 29.5,22.53125 L 29.5,18.5 L 20.53125,18.5 z M 12.46875,26.46875 L 12.46875,36.53125 L 37.53125,36.53125 L 37.53125,30.46875 L 17.5,30.46875 C 16.96816,30.461135 16.538865,30.03184 16.53125,29.5 L 16.53125,26.46875 L 12.46875,26.46875 z " /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/status/svg/status.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,3780 @@ +<?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="193.13428" + height="135.04771" + id="svg2759" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docname="status.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/home/hbons/Desktop/empathy-offline.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963"> + <defs + id="defs2761"> + <linearGradient + id="linearGradient5237" + inkscape:collect="always"> + <stop + id="stop5239" + offset="0" + style="stop-color:#a2bfe4;stop-opacity:1" /> + <stop + id="stop5241" + offset="1" + style="stop-color:#396fb5;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient4681" + inkscape:collect="always"> + <stop + id="stop4683" + offset="0" + style="stop-color:#a2bfe4;stop-opacity:1" /> + <stop + id="stop4685" + offset="1" + style="stop-color:#396fb5;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient4190" + inkscape:collect="always"> + <stop + id="stop4192" + offset="0" + style="stop-color:#a2bfe4;stop-opacity:1" /> + <stop + id="stop4194" + offset="1" + style="stop-color:#396fb5;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3845"> + <stop + style="stop-color:#396fb5;stop-opacity:1" + offset="0" + id="stop3847" /> + <stop + style="stop-color:#a2bfe4;stop-opacity:1" + offset="1" + id="stop3849" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3837"> + <stop + style="stop-color:#a40000;stop-opacity:1;" + offset="0" + id="stop3839" /> + <stop + style="stop-color:#4f0000;stop-opacity:1" + offset="1" + id="stop3841" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3829"> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="0" + id="stop3831" /> + <stop + style="stop-color:#132f57;stop-opacity:1" + offset="1" + id="stop3833" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3821"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop3823" /> + <stop + style="stop-color:#1e3e00;stop-opacity:1" + offset="1" + id="stop3825" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3890"> + <stop + style="stop-color:#793600;stop-opacity:1" + offset="0" + id="stop3892" /> + <stop + style="stop-color:#fa9e1a;stop-opacity:1" + offset="1" + id="stop3894" /> + </linearGradient> + <linearGradient + id="linearGradient3587"> + <stop + style="stop-color:#ef641f;stop-opacity:1" + offset="0" + id="stop3589" /> + <stop + style="stop-color:#3b1401;stop-opacity:1" + offset="1" + id="stop3591" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3563"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3565" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3567" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective2767" /> + <inkscape:perspective + id="perspective3555" + 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="#linearGradient3563" + id="radialGradient3569" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3585" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3597" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3601" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3611" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3613" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3629" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="8.7416792" + cy="7.1275907" + fx="8.7416792" + fy="7.1275907" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3631" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.9372473" + cy="5.9579206" + fx="8.9372473" + fy="5.9579206" + r="4.5" /> + <inkscape:perspective + id="perspective3789" + 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="#linearGradient3563" + id="radialGradient3827" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="8.7416792" + cy="7.1275907" + fx="8.7416792" + fy="7.1275907" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3829" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.9038744" + cy="7.1581287" + fx="8.9038744" + fy="7.1581287" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3890" + id="linearGradient3896" + x1="3.551121" + y1="10.91353" + x2="9.8384857" + y2="4.62848" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + id="perspective3611" + 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="perspective3640" + 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="perspective3685" + 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="#linearGradient3744-7" + id="linearGradient3750-7" + x1="6.3445182" + y1="7.5" + x2="13.957041" + y2="7.5" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3744-7"> + <stop + style="stop-color:#febf00;stop-opacity:1;" + offset="0" + id="stop3746-7" /> + <stop + style="stop-color:#e87208;stop-opacity:1" + offset="1" + id="stop3748-6" /> + </linearGradient> + <inkscape:perspective + id="perspective3747" + 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="perspective3772" + 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="perspective3836" + 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="perspective3910" + 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="perspective3940" + 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="perspective3995" + 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="#linearGradient3821" + id="linearGradient3827" + x1="8.8108797" + y1="5.5247211" + x2="3.5010808" + y2="10.832565" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3829" + id="linearGradient3835" + x1="8.7017984" + y1="5.1950126" + x2="3.4777882" + y2="10.4171" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3837" + id="linearGradient3843" + x1="8.5987625" + y1="5.485971" + x2="3.4842527" + y2="10.598598" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3845" + id="linearGradient3851" + x1="3.2768242" + y1="10.580347" + x2="8.5049772" + y2="5.3541193" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + id="perspective3861" + 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="#linearGradient3821-1" + id="linearGradient3827-7" + x1="8.8108797" + y1="5.5247211" + x2="3.5010808" + y2="10.832565" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3821-1"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop3823-0" /> + <stop + style="stop-color:#1e3e00;stop-opacity:1" + offset="1" + id="stop3825-5" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3821" + id="linearGradient3974" + gradientUnits="userSpaceOnUse" + x1="8.8108797" + y1="5.5247211" + x2="3.5010808" + y2="10.832565" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3976" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3829" + id="linearGradient3978" + gradientUnits="userSpaceOnUse" + x1="8.7017984" + y1="5.1950126" + x2="3.4777882" + y2="10.4171" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3980" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3982" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3837" + id="linearGradient3986" + gradientUnits="userSpaceOnUse" + x1="8.5987625" + y1="5.485971" + x2="3.4842527" + y2="10.598598" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3988" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3990" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient3998" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <inkscape:perspective + id="perspective4020" + 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="perspective4042" + 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="perspective4042-5" + 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="perspective4042-3" + 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="perspective4042-7" + 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="perspective4042-8" + 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="perspective4112" + 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" /> + <filter + inkscape:collect="always" + id="filter4170" + x="-0.11278874" + width="1.2255775" + y="-0.25104305" + height="1.502086"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.72968781" + id="feGaussianBlur4172" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4190" + id="linearGradient4184" + gradientUnits="userSpaceOnUse" + x1="8.8108797" + y1="5.5247211" + x2="3.5010808" + y2="10.832565" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient4186" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient4188" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7242012" + cy="5.3842082" + fx="8.7242012" + fy="5.3842082" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3821" + id="linearGradient4284" + gradientUnits="userSpaceOnUse" + x1="8.8108797" + y1="5.5247211" + x2="3.5010808" + y2="10.832565" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient4286" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3829" + id="linearGradient4288" + gradientUnits="userSpaceOnUse" + x1="8.7017984" + y1="5.1950126" + x2="3.4777882" + y2="10.4171" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient4290" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient4294" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3837" + id="linearGradient4296" + gradientUnits="userSpaceOnUse" + x1="8.5987625" + y1="5.485971" + x2="3.4842527" + y2="10.598598" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient4298" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient4300" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <inkscape:perspective + id="perspective4316" + 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="#linearGradient3563-5" + id="radialGradient4292-7" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3563-5"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3565-9" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3567-3" /> + </linearGradient> + <radialGradient + r="4.5" + fy="4.2809825" + fx="8.7327385" + cy="4.2809825" + cx="8.7327385" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + gradientUnits="userSpaceOnUse" + id="radialGradient4325" + xlink:href="#linearGradient3563-5" + inkscape:collect="always" /> + <inkscape:perspective + id="perspective4354" + 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="perspective4398" + 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="perspective4398-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" /> + <inkscape:perspective + id="perspective4429" + 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="perspective4429-5" + 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="perspective4429-4" + 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="perspective4429-7" + 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="perspective4429-1" + 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="perspective4429-6" + 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="perspective4520" + 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="perspective4574" + 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="#linearGradient4681" + id="linearGradient4596" + gradientUnits="userSpaceOnUse" + x1="8.8108797" + y1="5.5247211" + x2="3.5010808" + y2="10.832565" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563" + id="radialGradient4598" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563-5" + id="radialGradient4600" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7582912" + cy="5.6183777" + fx="8.7582912" + fy="5.6183777" + r="4.5" /> + <inkscape:perspective + id="perspective4610" + 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="perspective4695" + 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" /> + <filter + inkscape:collect="always" + id="filter4170-2" + x="-0.11278874" + width="1.2255775" + y="-0.25104305" + height="1.502086"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.72968781" + id="feGaussianBlur4172-3" /> + </filter> + <inkscape:perspective + id="perspective4741" + 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" + id="linearGradient3563-6"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3565-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3567-6" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563-6" + id="radialGradient4298-9" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563-6" + id="radialGradient4300-3" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3837-6" + id="linearGradient4296-9" + gradientUnits="userSpaceOnUse" + x1="8.5987625" + y1="5.485971" + x2="3.4842527" + y2="10.598598" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3837-6"> + <stop + style="stop-color:#a40000;stop-opacity:1;" + offset="0" + id="stop3839-6" /> + <stop + style="stop-color:#4f0000;stop-opacity:1" + offset="1" + id="stop3841-0" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563-6" + id="radialGradient4294-9" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.7327385" + cy="4.2809825" + fx="8.7327385" + fy="4.2809825" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563-6" + id="radialGradient4290-5" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3829-5" + id="linearGradient4288-5" + gradientUnits="userSpaceOnUse" + x1="8.7017984" + y1="5.1950126" + x2="3.4777882" + y2="10.4171" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3829-5"> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="0" + id="stop3831-7" /> + <stop + style="stop-color:#132f57;stop-opacity:1" + offset="1" + id="stop3833-7" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563-6" + id="radialGradient4286-4" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3821-0" + id="linearGradient4284-7" + gradientUnits="userSpaceOnUse" + x1="8.8108797" + y1="5.5247211" + x2="3.5010808" + y2="10.832565" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3821-0"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop3823-07" /> + <stop + style="stop-color:#1e3e00;stop-opacity:1" + offset="1" + id="stop3825-1" /> + </linearGradient> + <inkscape:perspective + id="perspective5117" + 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="4.5" + fy="4.2809825" + fx="8.7327385" + cy="4.2809825" + cx="8.7327385" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + gradientUnits="userSpaceOnUse" + id="radialGradient4325-0-0" + xlink:href="#linearGradient3563-5-8-7" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3563-5-8-7"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3565-9-9-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3567-3-2-8" /> + </linearGradient> + <radialGradient + r="4.5" + fy="4.2809825" + fx="8.7327385" + cy="4.2809825" + cx="8.7327385" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + gradientUnits="userSpaceOnUse" + id="radialGradient5126" + xlink:href="#linearGradient3563-5-8-7" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5237" + id="linearGradient5155" + gradientUnits="userSpaceOnUse" + x1="8.8108797" + y1="5.5247211" + x2="3.5010808" + y2="10.832565" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563-6" + id="radialGradient5157" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6612624,0,0,1.6612624,-5.3953817,-4.6366729)" + cx="9.8137703" + cy="7.1003194" + fx="9.8137703" + fy="7.1003194" + r="4.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3563-5-8-7" + id="radialGradient5159" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2666672,2.4582466,-1.332397,0.1433762,16.281718,-15.256026)" + cx="8.8544598" + cy="5.8371043" + fx="8.8544598" + fy="5.8371043" + r="4.5" /> + <inkscape:perspective + id="perspective5169" + 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="perspective5343" + 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="perspective5437" + 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="perspective5465" + 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="perspective5493" + 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="perspective5531" + 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" /> + <filter + inkscape:collect="always" + id="filter4170-2-0" + x="-0.11278874" + width="1.2255775" + y="-0.25104305" + height="1.502086"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.72968781" + id="feGaussianBlur4172-3-8" /> + </filter> + <inkscape:perspective + id="perspective5665" + 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="perspective5693" + 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="perspective5716" + 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="perspective5751" + 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="#linearGradient5730-4" + id="linearGradient5736-4" + x1="-264.89468" + y1="-57.315815" + x2="-257.90823" + y2="-71.371346" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7433468,0,0,-0.7426989,12.185793,-96.050938)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5730-4"> + <stop + style="stop-color:#babdb6;stop-opacity:1" + offset="0" + id="stop5732-4" /> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="1" + id="stop5734-2" /> + </linearGradient> + <inkscape:perspective + id="perspective5973" + 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="perspective6085" + 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="perspective6437" + 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="perspective7311" + 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="perspective3641" + 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="perspective4814" + 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="perspective4814-9" + 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="perspective4814-93" + 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="perspective4814-8" + 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="perspective4814-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" /> + <inkscape:perspective + id="perspective4814-20" + 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="perspective4814-23" + 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="perspective4814-81" + 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="perspective4814-26" + 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="perspective4814-1" + 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="perspective4814-3" + 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="perspective4814-84" + 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="perspective4814-33" + 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="perspective4814-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" /> + <inkscape:perspective + id="perspective4814-95" + 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="perspective5099" + 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="#linearGradient5079-7" + id="linearGradient5089-3" + gradientUnits="userSpaceOnUse" + x1="305.45203" + y1="-120.46718" + x2="306.04715" + y2="-120.46718" + gradientTransform="translate(-44.074406,0)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5079-7"> + <stop + style="stop-color:#fcaf3e;stop-opacity:1" + offset="0" + id="stop5081-1" /> + <stop + style="stop-color:#ce5c00;stop-opacity:1" + offset="1" + id="stop5083-2" /> + </linearGradient> + <inkscape:perspective + id="perspective5250" + 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="#linearGradient5021-1" + id="linearGradient5232-4" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9900233,0,0,1,-0.9767553,0)" + x1="-302.31421" + y1="-123.57119" + x2="-302.31421" + y2="-116.72435" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5021-1"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop5023-7" /> + <stop + style="stop-color:#0e1011;stop-opacity:1" + offset="1" + id="stop5025-0" /> + </linearGradient> + <inkscape:perspective + id="perspective5459" + 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="#linearGradient5412-8" + id="linearGradient5441-9" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9900233,0,0,1.0052362,-565.01541,1.6752236)" + x1="-302.31421" + y1="-123.57119" + x2="-302.31421" + y2="-113.95161" /> + <linearGradient + id="linearGradient5412-8" + inkscape:collect="always"> + <stop + id="stop5414-7" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop5416-9" + offset="1" + style="stop-color:#000000;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4993-1-2"> + <stop + style="stop-color:#dadedf;stop-opacity:1" + offset="0" + id="stop4995-0-1" /> + <stop + style="stop-color:#707e83;stop-opacity:0;" + offset="1" + id="stop4997-8-1" /> + </linearGradient> + <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 + id="linearGradient5214-2-3" + inkscape:collect="always"> + <stop + id="stop5216-7-1" + offset="0" + style="stop-color:#ffb03b;stop-opacity:1" /> + <stop + id="stop5218-6-1" + offset="1" + style="stop-color:#ce5c00;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4993-1-2" + id="linearGradient5604" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.0886292,44.842421,89.524029)" + x1="-300.82822" + y1="-126.31032" + x2="-300.82822" + y2="-114.83224" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5043-9-6" + id="radialGradient5606" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8357992,1.6646101,-1.8779766,0.9748523,-228.84575,581.86393)" + cx="-306.03387" + cy="-120.8595" + fx="-306.03387" + fy="-120.8595" + r="3.03685" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5214-2-3" + id="linearGradient5608" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-45.919701,78.19396)" + x1="305.45203" + y1="-120.46718" + x2="306.04715" + y2="-120.46718" /> + <inkscape:perspective + id="perspective5733" + 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="#linearGradient5661-8" + id="linearGradient5717-4" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1341053,0,0,1.0632786,-506.86144,3.1324492)" + x1="-219.25159" + y1="-43.842201" + x2="-219.25159" + y2="-36.569096" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5661-8"> + <stop + style="stop-color:#888a85;stop-opacity:1;" + offset="0" + id="stop5663-1" /> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="1" + id="stop5665-5" /> + </linearGradient> + <inkscape:perspective + id="perspective5823" + 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" /> + <filter + inkscape:collect="always" + id="filter5849" + x="-0.58129352" + width="2.1625869" + y="-0.50418413" + height="2.0083683"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="9.4456698" + id="feGaussianBlur5851" /> + </filter> + <inkscape:perspective + id="perspective4605" + 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="perspective4684" + 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="perspective4817" + 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="perspective4905" + 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" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="66.099876" + inkscape:cy="62.058303" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:snap-global="false" + inkscape:window-width="1280" + inkscape:window-height="752" + inkscape:window-x="0" + inkscape:window-y="0" + gridtolerance="10"> + <inkscape:grid + type="xygrid" + id="grid2769" + empspacing="5" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata2764"> + <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(3.2012939e-2,-5.9542937)"> + <rect + style="opacity:0;fill:#8800a0;fill-opacity:1;stroke:none" + id="rect4668" + width="48" + height="48" + x="-0.032012939" + y="93.002007" + inkscape:export-filename="/home/hbons/Desktop/48-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="93.002007" + x="47.951599" + height="48" + width="48" + id="rect4670" + style="opacity:0;fill:#8800a0;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0;fill:#8800a0;fill-opacity:1;stroke:none" + id="rect4672" + width="48" + height="48" + x="95.942886" + y="93.002007" + inkscape:export-filename="/home/hbons/Desktop/48-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="93.002007" + x="145.10226" + height="48" + width="48" + id="rect4674" + style="opacity:0;fill:#8800a0;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-offline.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0;fill:#8800a0;fill-opacity:1;stroke:none" + id="rect4660" + width="32" + height="32" + x="4.0494385" + y="57.017082" + inkscape:export-filename="/home/hbons/Desktop/32-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="57.017082" + x="35.897667" + height="32" + width="32" + id="rect4662" + style="opacity:0;fill:#8800a0;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0;fill:#8800a0;fill-opacity:1;stroke:none" + id="rect4664" + width="32" + height="32" + x="67.924774" + y="57.017082" + inkscape:export-filename="/home/hbons/Desktop/32-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="57.017082" + x="99.870567" + height="32" + width="32" + id="rect4666" + style="opacity:0;fill:#8800a0;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/32-offline.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0;fill:#4b0058;fill-opacity:1;stroke:none" + id="rect3880" + width="24" + height="24" + x="4.102562" + y="29.005341" + inkscape:export-filename="/home/hbons/Desktop/24-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="29.005341" + x="28.086708" + height="24" + width="24" + id="rect3882" + style="opacity:0;fill:#4b0058;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0;fill:#4b0058;fill-opacity:1;stroke:none" + id="rect3884" + width="24" + height="24" + x="52.032524" + y="29.005341" + inkscape:export-filename="/home/hbons/Desktop/24-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="29.005341" + x="76.02433" + height="24" + width="24" + id="rect3886" + style="opacity:0;fill:#4b0058;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-offline.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/48-away.png" + transform="matrix(2.0805553,-0.9834018,2.0813214,0.983764,43.17642,130.75679)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path5551" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-2-0)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-2-0)" + id="path5553" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(2.0805553,-0.9834018,2.0813214,0.983764,90.16357,130.75679)" + inkscape:export-filename="/home/hbons/Desktop/48-busy.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/48-offline.png" + transform="matrix(2.0805553,-0.9834018,2.0813214,0.983764,139.17464,130.75679)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path5555" + style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-2-0)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-2-0)" + id="path4150-2-7" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(2.0805553,-0.9834018,2.0813214,0.983764,-3.87065,130.75679)" + inkscape:export-filename="/home/hbons/Desktop/48-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-2)" + id="path4150-2" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.5177993,-0.7174078,1.5183582,0.717672,-0.58146,81.777092)" + inkscape:export-filename="/home/hbons/Desktop/32-available.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/32-away.png" + transform="matrix(1.5177993,-0.7174078,1.5183582,0.717672,31.28412,81.777092)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4715" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-2)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-2)" + id="path4717" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.5177993,-0.7174078,1.5183582,0.717672,63.414578,81.777092)" + inkscape:export-filename="/home/hbons/Desktop/32-busy.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/32-offline.png" + transform="matrix(1.5177993,-0.7174078,1.5183582,0.717672,95.339779,81.777092)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4719" + style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170-2)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170)" + id="path4196" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.0775549,-0.5414093,1.0779516,0.5416087,49.946956,47.888453)" + inkscape:export-filename="/home/hbons/Desktop/24-busy.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/24-away.png" + transform="matrix(1.0775549,-0.5414093,1.0779516,0.5416087,25.914436,47.888453)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4198" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170)" + id="path4150" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.0775549,-0.5414093,1.0779516,0.5416087,1.99825,47.888453)" + inkscape:export-filename="/home/hbons/Desktop/24-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:#73d216;fill-opacity:1;stroke:url(#linearGradient3827);stroke-width:0.60000008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2773" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.1782943,-1.1782943,1.1787283,1.1787283,-2.3976764,12.892666)" + inkscape:export-filename="/home/hbons/Desktop/16-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(-1.0953086,-1.0953086,-1.0997321,1.0997321,29.481698,12.985715)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3561" + style="fill:url(#radialGradient3569);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/16-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(1.1782943,-1.1782943,1.1787283,1.1787283,15.572157,12.771612)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3579" + style="fill:#729fcf;fill-opacity:1;stroke:url(#linearGradient3835);stroke-width:0.60000008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient3585);fill-opacity:1;stroke:none" + id="path3581" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-1.1001167,-1.1001167,-1.1045596,1.1045596,47.51899,12.859707)" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient3597);fill-opacity:1;stroke:none" + id="path3595" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(0.9142668,0.9142668,0.9179592,-0.9179592,1.2867724,15.05616)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/16-available.png" /> + <path + transform="matrix(0.9142668,0.9142668,0.9179592,-0.9179592,19.263659,14.935106)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3599" + style="fill:url(#radialGradient3601);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(1.1782943,-1.1782943,1.1787283,1.1787283,33.515577,12.771612)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3603" + style="fill:#ef2929;fill-opacity:1;stroke:url(#linearGradient3843);stroke-width:0.60000008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/16-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient3611);fill-opacity:1;stroke:none" + id="path3605" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-1.0953086,-1.0953086,-1.0997321,1.0997321,65.394951,12.864661)" + inkscape:export-filename="/home/hbons/Desktop/16-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(1.0030192,1.0030192,1.00707,-1.00707,35.954805,15.026547)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3607" + style="fill:url(#radialGradient3613);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/16-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:#a0bedf;fill-opacity:1;stroke:url(#linearGradient3851);stroke-width:0.60000008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3621" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.1782943,-1.1782943,1.1787283,1.1787283,50.946047,12.771612)" + inkscape:export-filename="/home/hbons/Desktop/16-offline.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(-1.0953086,-1.0953086,-1.0997321,1.0997321,82.825421,12.864661)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3623" + style="fill:url(#radialGradient3629);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/16-offline.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient3631);fill-opacity:1;stroke:none" + id="path3625" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.011631,1.011631,1.0157166,-1.0157166,53.264449,15.035419)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/16-offline.png" /> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:#cc0000;stroke-width:1;stroke-opacity:0.47029706" + id="rect3664" + width="11.004202" + height="3.0052931" + x="44.504047" + y="12.496305" + rx="1.5026466" + ry="1.5026466" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/16-busy.png" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:#5e94cd;stroke-width:0.83037329;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.47058824" + id="path3676" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(0.8513962,-0.8513962,0.8517097,0.8517097,20.139963,13.109084)" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:#000000;fill-opacity:1;stroke:none" + id="path3795" + sodipodi:cx="32.271088" + sodipodi:cy="13.925035" + sodipodi:rx="1.1138211" + sodipodi:ry="1.2439024" + d="M 33.384909,13.925035 A 1.1138211,1.2439024 0 1 1 31.157266,13.925035 A 1.1138211,1.2439024 0 1 1 33.384909,13.925035 z" + transform="matrix(0.8978103,0,0,0.8037515,3.0266867,2.8079433)" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect3799" + width="1.0121797" + height="1.0104886" + x="31.987822" + y="13" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="12" + x="32.987823" + height="1.0104886" + width="1.0121797" + id="rect3801" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="13" + x="-32" + height="1.0104886" + width="1.0121797" + id="rect3803" + style="fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect3805" + width="1.0121797" + height="1.0104886" + x="30" + y="11.989511" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + y="10.989511" + x="28.98782" + height="1.0104886" + width="1.0121797" + id="rect3807" + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + id="rect3809" + width="1.0121797" + height="1.0104886" + x="34" + y="11" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/16-away.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(0.9984087,0.9984087,1.0024409,-1.0024409,0.1062375,15.14285)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3043" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.70680797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/16-available.png" /> + <path + sodipodi:type="arc" + style="opacity:0.34070794;fill:none;stroke:#ffffff;stroke-width:0.70680797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3817" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(0.9984087,0.9984087,1.0024409,-1.0024409,35.935175,15.021796)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/16-busy.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-available.png" + transform="matrix(1.649612,-1.649612,1.6502196,1.6502196,-7.07163,39.329428)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3928" + style="fill:#73d216;fill-opacity:1;stroke:url(#linearGradient3974);stroke-width:0.42857152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-available.png" + sodipodi:type="arc" + style="fill:url(#radialGradient3976);fill-opacity:1;stroke:none" + id="path3930" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-1.579109,-1.579109,-1.5854864,1.5854864,38.200355,39.412636)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + sodipodi:type="arc" + style="fill:#729fcf;fill-opacity:1;stroke:url(#linearGradient3978);stroke-width:0.42857152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3932" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.649612,-1.649612,1.6502196,1.6502196,16.923,39.36636)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + transform="matrix(-1.5756231,-1.5756231,-1.5819864,1.5819864,62.14608,39.453159)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3934" + style="fill:url(#radialGradient3980);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(1.4244979,1.428323,1.4302509,-1.4340914,-3.95837,42.501581)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3936" + style="fill:url(#radialGradient3982);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/24-available.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + sodipodi:type="arc" + style="fill:url(#radialGradient3998);fill-opacity:1;stroke:none" + id="path3938" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.2586376,1.252928,1.2637207,-1.257988,22.354047,42.271573)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-busy.png" + sodipodi:type="arc" + style="fill:#ef2929;fill-opacity:1;stroke:url(#linearGradient3986);stroke-width:0.42857152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3940" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.649612,-1.649612,1.6502196,1.6502196,40.914245,39.31894)" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-busy.png" + transform="matrix(-1.5758699,-1.5758699,-1.5822342,1.5822342,86.140784,39.405485)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3942" + style="fill:url(#radialGradient3988);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-busy.png" + sodipodi:type="arc" + style="fill:url(#radialGradient3990);fill-opacity:1;stroke:none" + id="path3944" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.5538791,1.5538791,1.5601547,-1.5601547,42.229498,42.630033)" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + ry="1.9409533" + rx="1.9409533" + y="38.539009" + x="55.516884" + height="4.9422016" + width="16.961893" + id="rect3952" + style="fill:#ffffff;fill-opacity:1;stroke:#cc0000;stroke-width:0.99999994;stroke-opacity:0.47029706" + inkscape:export-filename="/home/hbons/Desktop/24-busy.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + transform="matrix(1.1859334,-1.1859334,1.1863702,1.1863702,23.402246,39.844858)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3954" + style="fill:#ffffff;fill-opacity:1;stroke:#5e94cd;stroke-width:0.5961352;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.47058824" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + transform="matrix(0.906523,0,0,0.8115515,10.77048,29.709666)" + d="M 33.384909,13.925035 A 1.1138211,1.2439024 0 1 1 31.157266,13.925035 A 1.1138211,1.2439024 0 1 1 33.384909,13.925035 z" + sodipodi:ry="1.2439024" + sodipodi:rx="1.1138211" + sodipodi:cy="13.925035" + sodipodi:cx="32.271088" + id="path3956" + style="fill:#000000;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect3960" + width="1.0000036" + height="0.99999994" + x="40" + y="40" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="37.998646" + x="41.994576" + height="0.99999988" + width="0.99999881" + id="rect3968" + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <path + sodipodi:type="arc" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.4701004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3970" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.5011331,1.5011331,1.5071955,-1.5071955,-5.01634,42.586177)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-available.png" /> + <rect + y="39" + x="41" + height="0.99999994" + width="1.0000036" + id="rect4000" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004" + width="0.99999881" + height="0.99999988" + x="-37" + y="37" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect4006" + width="1.0000036" + height="0.99999994" + x="-39" + y="39" + transform="scale(-1,1)" /> + <rect + y="38" + x="-38" + height="0.99999994" + width="1.0000036" + id="rect4008" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + y="40" + x="39" + height="0.99999994" + width="1.0000036" + id="rect4010" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6" + width="0.99999881" + height="0.99999988" + x="-39" + y="38" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-9" + width="0.99999881" + height="0.99999988" + x="-38" + y="39" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-4" + width="0.99999881" + height="0.99999988" + x="-39" + y="40" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-0" + width="0.99999881" + height="0.99999988" + x="-40" + y="39" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-3" + width="0.99999881" + height="0.99999988" + x="-38" + y="37" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + id="rect4004-6-7" + width="0.99999881" + height="0.99999988" + x="-37" + y="38" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="40" + x="41" + height="0.99999988" + width="0.99999881" + id="rect4096" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="39" + x="40" + height="0.99999988" + width="0.99999881" + id="rect4098" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="37.998646" + x="40.994576" + height="0.99999988" + width="0.99999881" + id="rect4100" + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="38.998646" + x="41.994576" + height="0.99999988" + width="0.99999881" + id="rect4102" + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/24-away.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(1.490698,1.4864482,1.4967183,-1.4924513,43.068366,42.463001)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path3972" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.47406736;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/24-busy.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-offline.png" + transform="matrix(1.0775549,-0.5414093,1.0779516,0.5416087,74.011997,47.888453)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4174" + style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter4170)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#a0bedf;fill-opacity:1;stroke:url(#linearGradient4184);stroke-width:0.42857152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4176" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.649612,-1.649612,1.6502196,1.6502196,64.942117,39.329428)" + inkscape:export-filename="/home/hbons/Desktop/24-offline.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(-1.579109,-1.579109,-1.5854864,1.5854864,110.2141,39.412636)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4178" + style="fill:url(#radialGradient4186);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/24-offline.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient4188);fill-opacity:1;stroke:none" + id="path4180" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.4244979,1.428323,1.4302509,-1.4340914,68.055377,42.501581)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/24-offline.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(1.5011331,1.5011331,1.5071955,-1.5071955,66.997407,42.586177)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4182" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.4701004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/24-offline.png" /> + <path + sodipodi:type="arc" + style="fill:#73d216;fill-opacity:1;stroke:url(#linearGradient4284);stroke-width:0.3103449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4206" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(2.2780356,-2.2780356,2.2788747,2.2788747,-11.90792,69.718864)" + inkscape:export-filename="/home/hbons/Desktop/32-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(-2.0447823,-2.0447823,-2.0530404,2.0530404,48.703929,69.973778)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4208" + style="fill:url(#radialGradient4286);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/32-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(2.2780356,-2.2780356,2.2788747,2.2788747,20.10903,69.752009)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4210" + style="fill:#729fcf;fill-opacity:1;stroke:url(#linearGradient4288);stroke-width:0.3103449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient4290);fill-opacity:1;stroke:none" + id="path4212" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-2.2095171,-2.2095171,-2.2184406,2.2184406,83.032166,69.837198)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(1.7381186,1.7302339,1.7451381,-1.7372215,27.60905,73.763969)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4216" + style="fill:url(#radialGradient4294);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(2.2780356,-2.2780356,2.2788747,2.2788747,52.144645,69.735449)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4218" + style="fill:#ef2929;fill-opacity:1;stroke:url(#linearGradient4296);stroke-width:0.3103449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/32-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(2.1987222,2.1945151,2.2076021,-2.203378,53.134579,74.246925)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4222" + style="fill:url(#radialGradient4300);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/32-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient4298);fill-opacity:1;stroke:none" + id="path4220" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-2.2020449,-2.2020449,-2.210938,2.210938,114.96293,69.828337)" + inkscape:export-filename="/home/hbons/Desktop/32-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:#cc0000;stroke-width:0.99999988;stroke-opacity:0.47029706" + id="rect4224" + width="22.984543" + height="6.9956765" + x="72.513435" + y="68.501228" + rx="2.5524006" + ry="2.5524006" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-busy.png" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:#5e94cd;stroke-width:0.39009234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.47058824" + id="path4226" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(1.8123316,-1.8123316,1.8129991,1.8129991,26.61149,70.237696)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(2.1120134,2.1120134,2.1205428,-2.1205428,-9.66694,74.153001)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4234" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.3341282;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/32-available.png" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient4325);fill-opacity:1;stroke:none" + id="path4214" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(2.0177554,2.0231735,2.0259044,-2.0313443,-8.31847,74.151718)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-available.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(2.1179632,2.1179632,2.1265165,-2.1265165,22.28828,74.17208)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4234-3" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.33318958;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + y="71.026642" + x="51.010094" + height="1.0000023" + width="0.9999997" + id="rect4368" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect4370" + width="0.9999997" + height="1.0000023" + x="50.010094" + y="70.026642" /> + <rect + y="69.026642" + x="49.010094" + height="1.0000023" + width="0.9999997" + id="rect4380" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect4382" + width="0.9999997" + height="1.0000023" + x="48.010094" + y="68.026642" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + id="rect4384" + width="0.99999982" + height="1.000001" + x="-47.010094" + y="66.026642" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="69.026642" + x="-51.010094" + height="1.000001" + width="0.99999982" + id="rect4488" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="70.026642" + x="-50.010094" + height="1.000001" + width="0.99999982" + id="rect4490" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="66.026642" + x="-48.010094" + height="1.000001" + width="0.99999982" + id="rect4492" + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="67.026642" + x="-47.010094" + height="1.000001" + width="0.99999982" + id="rect4494" + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="68.026642" + x="-50.010094" + height="1.000001" + width="0.99999982" + id="rect4500" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="69.026642" + x="-49.010094" + height="1.000001" + width="0.99999982" + id="rect4502" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="71.026642" + x="-51.010094" + height="1.000001" + width="0.99999982" + id="rect4504" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="70.026642" + x="-52.010094" + height="1.000001" + width="0.99999982" + id="rect4506" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <path + sodipodi:type="arc" + style="fill:#000000;fill-opacity:1;stroke:none" + id="path4228" + sodipodi:cx="32.271088" + sodipodi:cy="13.925035" + sodipodi:rx="1.1138211" + sodipodi:ry="1.2439024" + d="M 33.384909,13.925035 A 1.1138211,1.2439024 0 1 1 31.157266,13.925035 A 1.1138211,1.2439024 0 1 1 33.384909,13.925035 z" + transform="matrix(0.9066992,0,0,0.8117092,22.74765,60.733258)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect4536" + width="0.9999997" + height="1.0000023" + x="-53.010094" + y="71.026642" + transform="scale(-1,1)" /> + <rect + y="70.026642" + x="-54.010094" + height="1.0000023" + width="0.9999997" + id="rect4538" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect4540" + width="0.9999997" + height="1.0000023" + x="-55.010094" + y="69.026642" + transform="scale(-1,1)" /> + <rect + y="68.026642" + x="-56.010094" + height="1.0000023" + width="0.9999997" + id="rect4542" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="66.996277" + x="56.007881" + height="1.000001" + width="0.99999982" + id="rect4544" + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4546" + width="0.99999982" + height="1.000001" + x="53.010094" + y="69.026642" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4548" + width="0.99999982" + height="1.000001" + x="54.010094" + y="70.026642" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + id="rect4550" + width="0.99999982" + height="1.000001" + x="55.007881" + y="66.996277" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + id="rect4552" + width="0.99999982" + height="1.000001" + x="56.007881" + y="67.996277" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4558" + width="0.99999982" + height="1.000001" + x="54.010094" + y="68.026642" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4560" + width="0.99999982" + height="1.000001" + x="55.010094" + y="69.026642" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4562" + width="0.99999982" + height="1.000001" + x="53.010094" + y="71.026642" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4564" + width="0.99999982" + height="1.000001" + x="52.010094" + y="70.026642" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <path + sodipodi:type="arc" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.33385664;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4272" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(2.1156791,2.1117853,2.1242236,-2.1203138,54.383459,74.216675)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-busy.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-offline.png" + transform="matrix(2.2780356,-2.2780356,2.2788747,2.2788747,84.110957,69.718864)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4588" + style="fill:#a0bedf;fill-opacity:1;stroke:url(#linearGradient4596);stroke-width:0.3103449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-offline.png" + sodipodi:type="arc" + style="fill:url(#radialGradient4598);fill-opacity:1;stroke:none" + id="path4590" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-2.0447823,-2.0447823,-2.0530404,2.0530404,144.72281,69.973778)" /> + <path + sodipodi:type="arc" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.3341282;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4592" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(2.1120134,2.1120134,2.1205428,-2.1205428,86.351937,74.153001)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/32-offline.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(2.0177554,2.0231735,2.0259044,-2.0313443,87.700407,74.151718)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4594" + style="fill:url(#radialGradient4600);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/32-offline.png" /> + <rect + y="67" + x="47" + height="1.0000023" + width="0.9999997" + id="rect4727" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4729" + width="0.99999982" + height="1.000001" + x="-49" + y="67" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4731" + width="0.99999982" + height="1.000001" + x="-48" + y="68" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/32-away.png" /> + <path + sodipodi:type="arc" + style="fill:#73d216;fill-opacity:1;stroke:url(#linearGradient4284-7);stroke-width:0.20454551;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4206-8" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(3.4563298,-3.4563298,3.457603,3.457603,-23.89824,111.97435)" + inkscape:export-filename="/home/hbons/Desktop/48-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(-3.2202269,-3.2202269,-3.2332322,3.2332322,69.71731,112.23976)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4208-3" + style="fill:url(#radialGradient4286-4);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/48-available.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(3.4563298,-3.4563298,3.457603,3.457603,23.14643,111.99166)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4210-6" + style="fill:#729fcf;fill-opacity:1;stroke:url(#linearGradient4288-5);stroke-width:0.20454551;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient4290-5);fill-opacity:1;stroke:none" + id="path4212-1" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-3.3812694,-3.3812694,-3.3949252,3.3949252,119.02148,112.09114)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(2.6371454,2.6251824,2.6477957,-2.6357843,34.52577,118.07877)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4216-5" + style="fill:url(#radialGradient4294-9);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:#5e94cd;stroke-width:0.25104249;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.47058824" + id="path4226-3" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(2.8161633,-2.8161633,2.8172004,2.8172004,32.08218,112.66195)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(3.2825658,3.2825658,3.2958226,-3.2958226,-21.59435,118.78251)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4234-2" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.21497916;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/48-available.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(3.2831582,3.2831582,3.2964171,-3.2964171,25.475,118.76978)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4234-3-5" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.21494038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <path + sodipodi:type="arc" + style="fill:#000000;fill-opacity:1;stroke:none" + id="path4228-9" + sodipodi:cx="32.271088" + sodipodi:cy="13.925035" + sodipodi:rx="1.1138211" + sodipodi:ry="1.2439024" + d="M 33.384909,13.925035 A 1.1138211,1.2439024 0 1 1 31.157266,13.925035 A 1.1138211,1.2439024 0 1 1 33.384909,13.925035 z" + transform="matrix(1.3467162,0,0,1.2058815,28.08838,98.64726)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/rect3809.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect4536-4" + width="0" + height="0.48275831" + x="-163" + y="216.51724" + transform="scale(1,-1)" /> + <rect + y="113.00839" + x="-74.00502" + height="0.98637545" + width="0.98309225" + id="rect4538-9" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect4540-8" + width="0.99999899" + height="1.0000015" + x="-75.00502" + y="111.99477" + transform="scale(-1,1)" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect4564-4" + width="1.0169059" + height="0.98637414" + x="72.00502" + y="112.99477" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient5126);fill-opacity:1;stroke:none" + id="path4214-0" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(3.1944897,3.2030675,3.2073911,-3.2160034,-20.31916,118.83754)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-available.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-offline.png" + transform="matrix(3.4563298,-3.4563298,3.457603,3.457603,119.09986,111.97435)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path5147" + style="fill:#a0bedf;fill-opacity:1;stroke:url(#linearGradient5155);stroke-width:0.20454551;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-offline.png" + sodipodi:type="arc" + style="fill:url(#radialGradient5157);fill-opacity:1;stroke:none" + id="path5149" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-3.2202269,-3.2202269,-3.2332322,3.2332322,212.71541,112.23976)" /> + <path + sodipodi:type="arc" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.21497916;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path5151" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(3.2825658,3.2825658,3.2958226,-3.2958226,121.40375,118.78251)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-offline.png" /> + <path + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + transform="matrix(3.1944897,3.2030675,3.2073911,-3.2160034,122.67894,118.83754)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path5153" + style="fill:url(#radialGradient5159);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/48-offline.png" /> + <rect + transform="scale(-1,1)" + y="110.99477" + x="-76.00502" + height="1.0000015" + width="0.99999899" + id="rect5243" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect5245" + width="0.99999899" + height="1.0000015" + x="-77.00502" + y="109.99477" + transform="scale(-1,1)" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="111.99477" + x="73.00502" + height="0.98637414" + width="1.0169059" + id="rect5251" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5253" + width="1.0169059" + height="0.98637414" + x="73.988113" + y="110.99477" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="109.99477" + x="74.988113" + height="0.98637414" + width="1.0169059" + id="rect5255" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="109.01645" + x="76.007736" + height="0.98637414" + width="1.0169059" + id="rect5261" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5263" + width="1.0169059" + height="0.98637414" + x="76.990829" + y="110.03008" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5267" + width="1.0169059" + height="0.98637414" + x="75.988113" + y="111.00839" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="112.00839" + x="74.988113" + height="0.98637414" + width="1.0169059" + id="rect5269" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5271" + width="1.0169059" + height="0.98637414" + x="73.988113" + y="113.00839" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="114.00839" + x="72.988113" + height="0.98637414" + width="1.0169059" + id="rect5273" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + id="rect5275" + width="0.99999917" + height="1.0000002" + x="77.007736" + y="109.01645" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + transform="scale(-1,1)" + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect5281" + width="0.98309225" + height="0.98637545" + x="-73.00502" + y="113.99477" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect5285" + width="0.98309225" + height="0.98637545" + x="68.983566" + y="113.01874" /> + <rect + y="112.00511" + x="67.983566" + height="1.0000015" + width="0.99999899" + id="rect5287" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="113.00511" + x="-70.983566" + height="0.98637414" + width="1.0169059" + id="rect5293" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect5295" + width="0.99999899" + height="1.0000015" + x="66.983566" + y="111.00511" /> + <rect + y="110.00511" + x="65.983566" + height="1.0000015" + width="0.99999899" + id="rect5297" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect5299" + width="0.99999899" + height="1.0000015" + x="64.983566" + y="109.00511" /> + <rect + y="108.00511" + x="63.983566" + height="1.0000015" + width="0.99999899" + id="rect5301" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5303" + width="1.0169059" + height="0.98637414" + x="-69.983566" + y="112.00511" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="111.00511" + x="-69.000473" + height="0.98637414" + width="1.0169059" + id="rect5305" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5307" + width="1.0169059" + height="0.98637414" + x="-68.000473" + y="110.00511" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="109.00511" + x="-67.000473" + height="0.98637414" + width="1.0169059" + id="rect5309" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5313" + width="1.0169059" + height="0.98637414" + x="-65.983566" + y="108.00511" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="109.01874" + x="-65.000473" + height="0.98637414" + width="1.0169059" + id="rect5315" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5317" + width="1.0169059" + height="0.98637414" + x="-66.000473" + y="110.01874" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="111.01874" + x="-67.000473" + height="0.98637414" + width="1.0169059" + id="rect5319" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5321" + width="1.0169059" + height="0.98637414" + x="-68.000473" + y="112.01874" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="113.01874" + x="-69.000473" + height="0.98637414" + width="1.0169059" + id="rect5323" + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none" + id="rect5325" + width="1.0169059" + height="0.98637414" + x="-70.000473" + y="114.01874" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="107.01308" + x="-63.993439" + height="1.0000002" + width="0.99999917" + id="rect5327" + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + id="rect5329" + width="0.99999917" + height="1.0000002" + x="-63.993439" + y="-109.01308" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + transform="scale(-1,-1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + inkscape:export-ydpi="90.108963" + inkscape:export-xdpi="90.108963" + y="107.01308" + x="-64.993439" + height="1.0000002" + width="0.99999917" + id="rect5331" + style="opacity:0.125;fill:#000000;fill-opacity:1;stroke:none" + transform="scale(-1,1)" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" /> + <rect + y="114.00511" + x="69.983566" + height="0.98637545" + width="0.98309225" + id="rect5333" + style="fill:#000000;fill-opacity:1;stroke:none" + inkscape:export-filename="/home/hbons/Desktop/48-away.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(3.4563298,-3.4563298,3.457603,3.457603,70.0976,112.01894)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4218-7" + style="fill:#ef2929;fill-opacity:1;stroke:url(#linearGradient4296-9);stroke-width:0.20454551;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/48-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + transform="matrix(3.3962784,3.3897799,3.4099948,-3.40347,70.75374,118.92592)" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + sodipodi:ry="4.5" + sodipodi:rx="4.5" + sodipodi:cy="7.5" + sodipodi:cx="6.5" + id="path4222-4" + style="fill:url(#radialGradient4300-3);fill-opacity:1;stroke:none" + sodipodi:type="arc" + inkscape:export-filename="/home/hbons/Desktop/48-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient4298-9);fill-opacity:1;stroke:none" + id="path4220-4" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(-3.3914783,-3.3914783,-3.4051751,3.4051751,166.11585,112.1079)" + inkscape:export-filename="/home/hbons/Desktop/48-busy.png" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:#cc0000;stroke-width:0.99999988;stroke-opacity:0.47029706" + id="rect4224-2" + width="35.995052" + height="9.1348553" + x="100.56293" + y="110.42937" + rx="3.0678229" + ry="3.0678229" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-busy.png" /> + <path + sodipodi:type="arc" + style="opacity:0.340708;fill:none;stroke:#ffffff;stroke-width:0.21397926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4272-0" + sodipodi:cx="6.5" + sodipodi:cy="7.5" + sodipodi:rx="4.5" + sodipodi:ry="4.5" + d="M 11,7.5 A 4.5,4.5 0 1 1 2,7.5 A 4.5,4.5 0 1 1 11,7.5 z" + transform="matrix(3.3009417,3.2948705,3.3142731,-3.3081769,72.21843,118.91156)" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" + inkscape:export-filename="/home/hbons/Desktop/48-busy.png" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/toolbar/22/scalable/video-call.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,658 @@ +<?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+devel r20974" + version="1.0" + sodipodi:docname="video-24.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs3881"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5837" + id="linearGradient6047" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.27327593,0,0,0.5106555,44.789807,49.484667)" + x1="-206.31369" + y1="-38.305504" + x2="-193.64967" + y2="-23.3778" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5837"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5839" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5841" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5636"> + <stop + style="stop-color:#ce5c00;stop-opacity:1" + offset="0" + id="stop5638" /> + <stop + style="stop-color:#ce5c00;stop-opacity:0;" + offset="1" + id="stop5640" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5795" + id="linearGradient5801" + x1="-265.00021" + y1="-54.745949" + x2="-251.85565" + y2="-66.937424" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5795"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5797" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5799" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5585"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5587" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5589" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5636" + id="radialGradient5646" + cx="-278.76022" + cy="-76.807457" + fx="-278.76022" + fy="-76.807457" + r="28.001333" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.1576192,0,0,2.1576196,320.68789,86.658003)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5614" + id="radialGradient5624" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1093921,0,0,1.1093921,30.866652,8.6133536)" + cx="-280.78116" + cy="-78.911339" + fx="-280.78116" + fy="-78.911339" + r="29.214298" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5614"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5616" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5618" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5614" + id="radialGradient5620" + cx="-281.17819" + cy="-78.86171" + fx="-281.17819" + fy="-78.86171" + r="29.214298" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3813297,0,0,1.3813297,107.2216,30.072312)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5648" + id="linearGradient5654" + x1="-269.95532" + y1="-62.28437" + x2="-255.64305" + y2="-34.32909" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5648"> + <stop + style="stop-color:#ce5c00;stop-opacity:1;" + offset="0" + id="stop5650" /> + <stop + style="stop-color:#4d2100;stop-opacity:1" + offset="1" + id="stop5652" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5913" + id="linearGradient5919" + x1="-202.7368" + y1="-50.5" + x2="-192.7444" + y2="-50.5" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.48663471,0,0,0.98440078,100.58757,73.387419)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5913"> + <stop + style="stop-color:#787878;stop-opacity:1;" + offset="0" + id="stop5915" /> + <stop + style="stop-color:#787878;stop-opacity:0;" + offset="1" + id="stop5917" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5887" + id="linearGradient5893" + x1="-247.54591" + y1="-35.930092" + x2="-264.87021" + y2="-58.743122" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5887"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop5889" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop5891" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter5903"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.5089815" + id="feGaussianBlur5905" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5987" + id="linearGradient5993" + x1="-183.87694" + y1="-38.634178" + x2="-183.87694" + y2="-39.513264" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.97774563,0,0,0.99602169,183.04365,9.675542)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5987"> + <stop + style="stop-color:#8ae234;stop-opacity:1;" + offset="0" + id="stop5989" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5991" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5995" + id="linearGradient6001" + x1="-184.21419" + y1="-37.343178" + x2="-184.21419" + y2="-39.290829" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.97774563,0,0,0.99602169,183.04365,9.675542)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5995"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop5997" /> + <stop + style="stop-color:#72eb00;stop-opacity:1" + offset="1" + id="stop5999" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5913" + id="linearGradient5923" + gradientUnits="userSpaceOnUse" + x1="-203.15808" + y1="-50.5" + x2="-192.52609" + y2="-50.5" + gradientTransform="matrix(0.48663471,0,0,0.98809756,106.75193,73.554055)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5873" + id="radialGradient5881" + cx="-263.10712" + cy="-59.058826" + fx="-263.10712" + fy="-59.058826" + r="26.905991" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2689136,-0.7557538,0.46722378,1.4051413,361.24185,-169.10186)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5873"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop5875" /> + <stop + style="stop-color:#d3d7cf;stop-opacity:1" + offset="1" + id="stop5877" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5730" + id="linearGradient5736" + x1="-260.28085" + y1="-37.043636" + x2="-259.48315" + y2="-86.628036" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5730"> + <stop + style="stop-color:#888a85;stop-opacity:1" + offset="0" + id="stop5732" /> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="1" + id="stop5734" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter5867" + x="-0.13159215" + width="1.2631843" + y="-0.13159215" + height="1.2631843"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.8767211" + id="feGaussianBlur5869" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5827" + id="linearGradient6005" + gradientUnits="userSpaceOnUse" + x1="-203.06625" + y1="-31.478365" + x2="-191.55763" + y2="-29.403404" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5827"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5829" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5831" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.46156008,0,0,0.58576055,88.067347,51.202607)" + inkscape:collect="always" + xlink:href="#linearGradient5783" + id="linearGradient5789" + x1="-179.45006" + y1="-42.398266" + x2="-176.44347" + y2="-27.845135" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5783"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop5785" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop5787" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter6071" + x="-0.06728632" + width="1.1345726" + y="-0.42854825" + height="1.8570966"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.0645658" + id="feGaussianBlur6073" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5585" + id="radialGradient2984" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4937663,0,0,1.493766,135.56448,35.312572)" + cx="-273.07968" + cy="-71.143715" + fx="-273.07968" + fy="-71.143715" + r="27.622614" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5837-6-7"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5839-6-1" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5841-0-7" /> + </linearGradient> + <linearGradient + y2="-27.740944" + x2="-186.73495" + y1="-31.514177" + x1="-187.10881" + gradientTransform="matrix(0.4138933,0,0,0.53848247,79.333978,50.324729)" + gradientUnits="userSpaceOnUse" + id="linearGradient3016" + xlink:href="#linearGradient5837-6-7" + inkscape:collect="always" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="18.289061" + inkscape:cy="6.762927" + 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="0" + inkscape:snap-global="false"> + <inkscape:grid + type="xygrid" + id="grid2847" + 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></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer" + transform="translate(8.8571424,-13.162344)"> + <rect + style="fill:none;stroke:none" + id="rect6075" + width="23.358467" + height="23.366125" + x="-8.554285" + y="13.424244" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter6071)" + id="rect6053" + width="37.971432" + height="5.9618907" + x="-201.937" + y="-31.972912" + rx="7.3285885" + ry="5.6566281" + transform="matrix(0.40675575,0,0,0.52698275,77.694152,49.393783)" /> + <path + style="fill:#555753;fill-opacity:1;stroke:url(#linearGradient5789);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:220" + d="m -2.1834145,28.661845 10.6501347,0.01504 c 0,0 2.7231988,3.487896 2.7231988,3.487896 0.291402,0.369812 0.471157,0.881308 0.471157,1.448047 0,1.133475 -0.719028,2.045984 -1.612165,2.045984 l -13.8283956,0 c -0.8931418,0 -1.6121692,-0.912509 -1.6121692,-2.045984 0,-0.566739 0.1797546,-1.078235 0.4711558,-1.448047 0,0 2.7370835,-3.50293 2.7370835,-3.50293 z" + id="rect5738" + sodipodi:nodetypes="ccssccssc" /> + <path + transform="matrix(0.43506265,0,0,0.56909357,82.906459,50.822997)" + sodipodi:type="inkscape:offset" + inkscape:radius="0.81427181" + inkscape:original="M -194.625 -37.5 C -194.625 -37.5 -200.4375 -31.46875 -200.4375 -31.46875 C -200.81227 -31.093985 -201.03125 -30.595841 -201.03125 -30.03125 C -201.03125 -28.884593 -200.14666 -28 -199 -28 L -187.03125 -28 C -185.88461 -28 -185 -28.884598 -185 -30.03125 C -185 -30.595841 -185.21898 -31.093985 -185.59375 -31.46875 C -185.59375 -31.46875 -194.625 -37.5 -194.625 -37.5 z " + style="fill:url(#linearGradient6005);fill-opacity:1;stroke:none" + id="path6003" + d="m -194.71875,-38.3125 a 0.81435323,0.81435323 0 0 0 -0.5,0.25 c 0,0 -5.8125,6.03125 -5.8125,6.03125 L -201,-32 c -0.50698,0.516344 -0.84375,1.202669 -0.84375,1.96875 0,1.565438 1.27831,2.84375 2.84375,2.84375 l 11.96875,0 c 1.56543,0 2.84375,-1.278306 2.84375,-2.84375 0,-0.775138 -0.32601,-1.482268 -0.84375,-2 a 0.81435323,0.81435323 0 0 0 -0.125,-0.125 c 0,0 -9.03125,-6.03125 -9.03125,-6.03125 a 0.81435323,0.81435323 0 0 0 -0.53125,-0.125 z" /> + <path + transform="matrix(0.2236391,0,0,-0.10169145,62.64793,25.033509)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5849" + style="fill:#080a0a;fill-opacity:1;stroke:none;filter:url(#filter5867)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient5881);fill-opacity:1;stroke:url(#linearGradient5736);stroke-width:2.75551581;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5557" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.3148221,-0.18130438,-0.1816042,-0.31375467,75.500607,-43.264727)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path5871" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(-0.27241976,0.15733319,0.12564509,0.21769503,-62.422849,75.705835)" /> + <rect + y="23.161077" + x="7.9319654" + height="0.98809648" + width="4.4128237" + id="rect5921" + style="opacity:0.3918919;fill:url(#linearGradient5923);fill-opacity:1;stroke:none" + rx="0" + ry="0" /> + <rect + style="fill:url(#linearGradient5993);fill-opacity:1;stroke:url(#linearGradient6001);stroke-width:0.99999994" + id="rect5955" + width="2.9257419" + height="2.9381447" + x="1.6698172" + y="-30.654408" + rx="1.462871" + ry="1.462871" + transform="scale(1,-1)" /> + <path + transform="matrix(0.21403186,0,0,0.21410204,59.564381,35.385048)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5883" + style="fill:none;stroke:url(#linearGradient5893);stroke-width:4.67143583;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter5903)" + sodipodi:type="arc" /> + <rect + style="opacity:0.3918919;fill:url(#linearGradient5919);fill-opacity:1;stroke:none" + id="rect5911" + width="4.4128237" + height="0.98439986" + x="1.7676187" + y="23.182978" + transform="scale(-1,1)" /> + <path + sodipodi:type="arc" + style="fill:#ffb03b;fill-opacity:1;stroke:url(#linearGradient5654);stroke-width:4.76298714;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5563" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.20996158,0,0,0.20994299,58.546832,35.59668)" /> + <path + transform="matrix(0.09569947,0,0,0.09514232,28.384809,28.784988)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5561" + style="fill:#555753;fill-opacity:1;stroke:#080808;stroke-width:10.47993088;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.96846846;fill:none;stroke:url(#radialGradient5620);stroke-width:17.36606979;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5565" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.05727448,0,0,0.0578943,18.265279,26.552913)" /> + <path + transform="matrix(0.17164741,0,0,0.1708975,48.419042,33.280513)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5583" + style="fill:none;stroke:url(#radialGradient2984);stroke-width:5.83866453;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:0.48584906;stroke:#000000;stroke-width:17.92076111;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5599" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.05509224,0,0,0.0565193,17.658035,26.461464)" /> + <path + transform="matrix(-0.0571877,0,0,-0.05761426,-11.940794,19.725413)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5622" + style="opacity:0.96846846;fill:none;stroke:url(#radialGradient5624);stroke-width:17.42142296;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + transform="matrix(0.15422242,0,0,0.15457884,43.81605,32.031328)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5626" + style="opacity:0.52252251;fill:none;stroke:url(#radialGradient5646);stroke-width:6.47666168;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + transform="matrix(-0.32688719,0,0,0.32259571,-83.091337,42.311042)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5791" + style="fill:none;stroke:url(#linearGradient5801);stroke-width:3.07943988;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <rect + ry="0.51294839" + rx="0.51294839" + y="34.170914" + x="-10.151012" + height="1.0258968" + width="9.2789555" + id="rect6045" + style="fill:url(#linearGradient6047);fill-opacity:1;stroke:none" + transform="scale(-1,1)" /> + <path + transform="matrix(0.03786458,0,0,0.0382486,12.141381,24.44307)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5597" + style="opacity:0.96846846;fill:#ffffff;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <rect + style="fill:url(#linearGradient3016);fill-opacity:1;stroke:none" + id="rect5835" + width="14.053552" + height="1.0818006" + x="-3.8772981" + y="34.176491" + rx="0.54090029" + ry="0.54090029" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/toolbar/22/scalable/voice-call.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,795 @@ +<?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+devel r20974" + version="1.0" + sodipodi:docname="voice-24.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> + <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="45.254834" + inkscape:cx="11.202323" + inkscape:cy="4.1597985" + 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="0" + 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></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" /> + <rect + style="fill:url(#linearGradient5723-8);fill-opacity:1;stroke:none" + id="rect5715" + width="2.0024893" + height="5.9961619" + x="6.5585375" + y="11.146509" + rx="0.99742299" + ry="0.99742311" + 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 + 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.99742311" + rx="0.99742299" + y="11.184834" + x="12.404797" + height="5.9961619" + width="2.0024893" + id="rect3048" + style="fill:url(#linearGradient3060);fill-opacity:1;stroke:none" /> + <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>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/toolbar/32/scalable/video-call.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,745 @@ +<?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+devel r20974" + version="1.0" + sodipodi:docname="video-32.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs3881"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5837" + id="linearGradient6047" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.41358665,0,0,0.98688214,65.009684,70.746264)" + x1="-206.31369" + y1="-38.305504" + x2="-193.64967" + y2="-23.3778" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5837"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5839" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5841" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5636"> + <stop + style="stop-color:#ce5c00;stop-opacity:1" + offset="0" + id="stop5638" /> + <stop + style="stop-color:#ce5c00;stop-opacity:0;" + offset="1" + id="stop5640" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5837" + id="linearGradient5843" + x1="-187.10881" + y1="-31.514177" + x2="-186.73495" + y2="-27.740944" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.64618052,0,0,0.98071549,126.1045,70.579917)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5795" + id="linearGradient5801" + x1="-265.00021" + y1="-54.745949" + x2="-251.85565" + y2="-66.937424" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5795"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5797" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5799" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5585" + id="radialGradient5681" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4937663,0,0,1.493766,135.56448,35.312572)" + cx="-277.8414" + cy="-82.264709" + fx="-277.8414" + fy="-82.264709" + r="27.622614" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5585"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5587" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5589" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5636" + id="radialGradient5646" + cx="-278.76022" + cy="-76.807457" + fx="-278.76022" + fy="-76.807457" + r="28.001333" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.1576192,0,0,2.1576196,320.68789,86.658003)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5614" + id="radialGradient5624" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1093921,0,0,1.1093921,30.866652,8.6133536)" + cx="-280.78116" + cy="-78.911339" + fx="-280.78116" + fy="-78.911339" + r="29.214298" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5614"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5616" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5618" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5585" + id="radialGradient5591" + cx="-273.07968" + cy="-71.143715" + fx="-273.07968" + fy="-71.143715" + r="27.622614" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4937663,0,0,1.493766,135.56448,35.312572)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5614" + id="radialGradient5620" + cx="-281.17819" + cy="-78.86171" + fx="-281.17819" + fy="-78.86171" + r="29.214298" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3813297,0,0,1.3813297,107.2216,30.072312)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5648" + id="linearGradient5654" + x1="-269.95532" + y1="-62.28437" + x2="-255.64305" + y2="-34.32909" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5648"> + <stop + style="stop-color:#ce5c00;stop-opacity:1;" + offset="0" + id="stop5650" /> + <stop + style="stop-color:#4d2100;stop-opacity:1" + offset="1" + id="stop5652" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5913" + id="linearGradient5919" + x1="-202.7368" + y1="-50.5" + x2="-192.7444" + y2="-50.5" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.65996985,0,0,0.96357258,133.50189,76.334933)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5913"> + <stop + style="stop-color:#787878;stop-opacity:1;" + offset="0" + id="stop5915" /> + <stop + style="stop-color:#787878;stop-opacity:0;" + offset="1" + id="stop5917" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5887" + id="linearGradient5893" + x1="-247.54591" + y1="-35.930092" + x2="-264.87021" + y2="-58.743122" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5887"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop5889" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop5891" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter5903"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.5089815" + id="feGaussianBlur5905" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5987" + id="linearGradient5993" + x1="-183.87694" + y1="-38.634178" + x2="-183.87694" + y2="-39.513264" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.97563279,0,0,1.3505158,186.62098,19.061979)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5987"> + <stop + style="stop-color:#8ae234;stop-opacity:1;" + offset="0" + id="stop5989" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5991" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5995" + id="linearGradient6001" + x1="-184.21419" + y1="-37.343178" + x2="-184.21419" + y2="-39.290829" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.97563279,0,0,1.3505158,186.62098,19.061979)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5995"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop5997" /> + <stop + style="stop-color:#72eb00;stop-opacity:1" + offset="1" + id="stop5999" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5913" + id="linearGradient5923" + gradientUnits="userSpaceOnUse" + x1="-203.15808" + y1="-50.5" + x2="-192.52609" + y2="-50.5" + gradientTransform="matrix(0.65996985,0,0,1.0131274,147.69017,78.862229)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5873" + id="radialGradient5881" + cx="-263.10712" + cy="-59.058826" + fx="-263.10712" + fy="-59.058826" + r="26.905991" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2689136,-0.7557538,0.46722378,1.4051413,361.24185,-169.10186)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5873"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop5875" /> + <stop + style="stop-color:#d3d7cf;stop-opacity:1" + offset="1" + id="stop5877" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5730" + id="linearGradient5736" + x1="-260.28085" + y1="-37.043636" + x2="-259.48315" + y2="-86.628036" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5730"> + <stop + style="stop-color:#888a85;stop-opacity:1" + offset="0" + id="stop5732" /> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="1" + id="stop5734" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter5867" + x="-0.13159215" + width="1.2631843" + y="-0.13159215" + height="1.2631843"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.8767211" + id="feGaussianBlur5869" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5827" + id="linearGradient6005" + gradientUnits="userSpaceOnUse" + x1="-203.06625" + y1="-31.478365" + x2="-191.55763" + y2="-29.403404" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5827"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5829" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5831" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.67480777,0,0,0.67611232,131.29224,61.609793)" + inkscape:collect="always" + xlink:href="#linearGradient5783" + id="linearGradient5789" + x1="-179.45006" + y1="-42.398266" + x2="-176.44347" + y2="-27.845135" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5783"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop5785" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop5787" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter6071" + x="-0.06728632" + width="1.1345726" + y="-0.42854825" + height="1.8570966"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.0645658" + id="feGaussianBlur6073" /> + </filter> + <linearGradient + inkscape:collect="always" + id="linearGradient5636-1"> + <stop + style="stop-color:#ce5c00;stop-opacity:1" + offset="0" + id="stop5638-3" /> + <stop + style="stop-color:#ce5c00;stop-opacity:0;" + offset="1" + id="stop5640-1" /> + </linearGradient> + <radialGradient + r="28.001333" + fy="-83.346062" + fx="-287.39545" + cy="-83.346062" + cx="-287.39545" + gradientTransform="matrix(2.1576192,0,0,2.1576196,320.68789,86.658003)" + gradientUnits="userSpaceOnUse" + id="radialGradient2866" + xlink:href="#linearGradient5636-1" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5585-3"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5587-6" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5589-8" /> + </linearGradient> + <radialGradient + r="27.622614" + fy="-82.264709" + fx="-277.8414" + cy="-82.264709" + cx="-277.8414" + gradientTransform="matrix(1.4937663,0,0,1.493766,135.56448,35.312572)" + gradientUnits="userSpaceOnUse" + id="radialGradient2925" + xlink:href="#linearGradient5585-3" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5837-6"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5839-6" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5841-0" /> + </linearGradient> + <linearGradient + y2="-27.740944" + x2="-186.73495" + y1="-31.514177" + x1="-187.10881" + gradientTransform="matrix(0.64618052,0,0,0.98071549,126.1045,70.579917)" + gradientUnits="userSpaceOnUse" + id="linearGradient2963" + xlink:href="#linearGradient5837-6" + inkscape:collect="always" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="19.79899" + inkscape:cx="27.584929" + inkscape:cy="14.370291" + 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="0" + inkscape:snap-global="false"> + <inkscape:grid + type="xygrid" + id="grid2847" + 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></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer" + transform="translate(8.8571424,-13.162344)"> + <rect + style="fill:none;stroke:none" + id="rect6075" + width="31.678553" + height="31.682362" + x="-8.6871271" + y="13.354993" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter6071)" + id="rect6053" + width="37.971432" + height="5.9618907" + x="-201.937" + y="-31.972912" + rx="4.5514064" + ry="4.1718316" + transform="matrix(0.65495039,0,0,0.71454115,127.26597,62.126448)" /> + <path + style="fill:#555753;fill-opacity:1;stroke:url(#linearGradient5789);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:220" + d="m -0.65573086,35.592188 15.57065686,0.01735 c 0,0 3.981358,4.025893 3.981358,4.025893 0.426034,0.426854 0.688838,1.017248 0.688838,1.671404 0,1.30831 -1.051229,2.361571 -2.357009,2.361571 l -20.2173223,0 c -1.3057868,0 -2.3570157,-1.053261 -2.3570157,-2.361571 0,-0.654156 0.2628038,-1.24455 0.688837,-1.671404 0,0 4.00165714,-4.043246 4.00165714,-4.043246 z" + id="rect5738" + sodipodi:nodetypes="ccssccssc" /> + <path + transform="matrix(0.65996985,0,0,0.66004921,128.42096,61.078237)" + sodipodi:type="inkscape:offset" + inkscape:radius="0.81427181" + inkscape:original="M -194.625 -37.5 C -194.625 -37.5 -200.4375 -31.46875 -200.4375 -31.46875 C -200.81227 -31.093985 -201.03125 -30.595841 -201.03125 -30.03125 C -201.03125 -28.884593 -200.14666 -28 -199 -28 L -187.03125 -28 C -185.88461 -28 -185 -28.884598 -185 -30.03125 C -185 -30.595841 -185.21898 -31.093985 -185.59375 -31.46875 C -185.59375 -31.46875 -194.625 -37.5 -194.625 -37.5 z " + style="fill:url(#linearGradient6005);fill-opacity:1;stroke:none" + id="path6003" + d="m -194.71875,-38.3125 a 0.81435323,0.81435323 0 0 0 -0.5,0.25 c 0,0 -5.8125,6.03125 -5.8125,6.03125 L -201,-32 c -0.50698,0.516344 -0.84375,1.202669 -0.84375,1.96875 0,1.565438 1.27831,2.84375 2.84375,2.84375 l 11.96875,0 c 1.56543,0 2.84375,-1.278306 2.84375,-2.84375 0,-0.775138 -0.32601,-1.482268 -0.84375,-2 a 0.81435323,0.81435323 0 0 0 -0.125,-0.125 c 0,0 -9.03125,-6.03125 -9.03125,-6.03125 a 0.81435323,0.81435323 0 0 0 -0.53125,-0.125 z" /> + <path + transform="matrix(0.30329744,0,0,-0.13788445,87.876709,29.09611)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5849" + style="fill:#080a0a;fill-opacity:1;stroke:none;filter:url(#filter5867)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient5881);fill-opacity:1;stroke:url(#linearGradient5736);stroke-width:2.01394916;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5557" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.42970463,-0.2486637,-0.24787384,-0.43032274,106.34198,-64.482558)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path5871" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(-0.36945335,0.21332963,0.1703988,0.29517486,-81.523427,97.512211)" /> + <rect + y="27.192732" + x="13.671385" + height="1.0131263" + width="5.9846334" + id="rect5921" + style="opacity:0.3918919;fill:url(#linearGradient5923);fill-opacity:1;stroke:none" + rx="0" + ry="0" /> + <rect + style="fill:url(#linearGradient5993);fill-opacity:1;stroke:url(#linearGradient6001);stroke-width:1" + id="rect5955" + width="2.9194198" + height="3.9838595" + x="5.6390796" + y="-35.621799" + rx="1.4597099" + ry="1.4597099" + transform="scale(1,-1)" /> + <path + transform="matrix(0.29026818,0,0,0.29030308,83.694827,43.131865)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5883" + style="fill:none;stroke:url(#linearGradient5893);stroke-width:3.44488311;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter5903)" + sodipodi:type="arc" /> + <rect + style="opacity:0.3918919;fill:url(#linearGradient5919);fill-opacity:1;stroke:none" + id="rect5911" + width="5.9846334" + height="0.96357155" + x="-0.51689219" + y="27.192732" + transform="scale(-1,1)" /> + <path + sodipodi:type="arc" + style="fill:#ffb03b;fill-opacity:1;stroke:url(#linearGradient5654);stroke-width:3.5092566;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5563" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.28486132,0,0,0.28505999,82.294223,43.039948)" /> + <path + transform="matrix(0.13363627,0,0,0.13347568,42.410394,34.081195)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5561" + style="fill:#555753;fill-opacity:1;stroke:#080808;stroke-width:7.48749876;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.96846846;fill:none;stroke:url(#radialGradient5620);stroke-width:10.50450611;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5565" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.09480768,0,0,0.09558841,32.154146,31.815867)" /> + <path + transform="matrix(0.24682601,0,0,0.24643715,72.269758,40.764913)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5583" + style="fill:none;stroke:url(#radialGradient5591);stroke-width:4.05463219;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:0.48584906;stroke:#000000;stroke-width:17.71681404;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5599" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.05617589,0,0,0.05671252,21.949064,29.53016)" /> + <path + transform="matrix(0.03812194,0,0,0.03765421,16.214869,27.401572)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5597" + style="opacity:0.96846846;fill:#ffffff;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + transform="matrix(-0.09525042,0,0,-0.09496858,-17.987943,20.516457)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5622" + style="opacity:0.96846846;fill:none;stroke:url(#radialGradient5624);stroke-width:10.51420879;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + transform="matrix(0.20915513,0,0,0.20959499,62.337075,38.584523)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5626" + style="opacity:0.52252251;fill:none;stroke:url(#radialGradient5646);stroke-width:4.77612066;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + transform="matrix(-0.45747411,0,0,0.45812567,-113.08973,53.843356)" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5791" + style="fill:none;stroke:url(#linearGradient5801);stroke-width:2.18436098;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <rect + ry="0.99131328" + rx="0.99131328" + y="41.151222" + x="-18.139938" + height="1.9826266" + width="14.043139" + id="rect6045" + style="fill:url(#linearGradient6047);fill-opacity:1;stroke:none" + transform="scale(-1,1)" /> + <path + sodipodi:type="arc" + style="opacity:0.52252251;fill:none;stroke:url(#radialGradient2866);stroke-width:4.82624292;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5951" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(-0.20848725,0,0,-0.2059217,-47.871007,13.860824)" /> + <path + sodipodi:type="arc" + style="fill:none;stroke:url(#radialGradient2925);stroke-width:5.84374952;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5679" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 a 26.233063,26.233063 0 1 1 -52.46613,0 26.233063,26.233063 0 1 1 52.46613,0 z" + transform="matrix(0.17117233,0,0,0.17107373,52.309275,36.300725)" /> + <rect + style="fill:url(#linearGradient2963);fill-opacity:1;stroke:none" + id="rect5835" + width="21.940756" + height="1.9702379" + x="-3.8070128" + y="41.169807" + rx="1.00449" + ry="1.00449" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/toolbar/32/scalable/voice-call.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,990 @@ +<?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+devel r20974" + version="1.0" + sodipodi:docname="voice-32.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="0" + 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></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" /> + <rect + style="fill:url(#linearGradient5723-8);fill-opacity:1;stroke:none" + id="rect5715" + width="1.9859439" + height="7.995038" + x="6.5732913" + y="14.12711" + rx="0.99742299" + ry="0.99742305" + 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 + 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.99742305" + rx="0.99742299" + y="14.12711" + x="19.447443" + height="7.995038" + width="1.9859439" + id="rect2886" + style="fill:url(#linearGradient2898-1);fill-opacity:1;stroke:none" /> + <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>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/toolbar/48/scalable/video-call.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,680 @@ +<?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.532452" + id="svg3879" + sodipodi:version="0.32" + inkscape:version="0.46+devel r20974" + version="1.0" + sodipodi:docname="video.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs3881"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5837" + id="linearGradient6047" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.57152873,0,0,1,83.824661,85.161402)" + x1="-206.31369" + y1="-38.305504" + x2="-193.64967" + y2="-23.3778" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5837"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5839" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5841" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5636" + id="radialGradient5953" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.1576192,0,0,2.1576196,320.68789,86.658003)" + cx="-287.39545" + cy="-83.346062" + fx="-287.39545" + fy="-83.346062" + r="28.001333" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5636"> + <stop + style="stop-color:#ce5c00;stop-opacity:1" + offset="0" + id="stop5638" /> + <stop + style="stop-color:#ce5c00;stop-opacity:0;" + offset="1" + id="stop5640" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5837" + id="linearGradient5843" + x1="-187.10881" + y1="-31.514177" + x2="-186.73495" + y2="-27.740944" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.94234189,0,0,1,188.53503,85.161402)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5795" + id="linearGradient5801" + x1="-265.00021" + y1="-54.745949" + x2="-251.85565" + y2="-66.937424" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5795"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5797" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5799" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5585" + id="radialGradient5681" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4937663,0,0,1.493766,135.56448,35.312572)" + cx="-277.8414" + cy="-82.264709" + fx="-277.8414" + fy="-82.264709" + r="27.622614" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5585"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5587" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5589" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5636" + id="radialGradient5646" + cx="-278.76022" + cy="-76.807457" + fx="-278.76022" + fy="-76.807457" + r="28.001333" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.1576192,0,0,2.1576196,320.68789,86.658003)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5614" + id="radialGradient5624" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1093921,0,0,1.1093921,30.866652,8.6133536)" + cx="-280.78116" + cy="-78.911339" + fx="-280.78116" + fy="-78.911339" + r="29.214298" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5614"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5616" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5618" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5585" + id="radialGradient5591" + cx="-273.07968" + cy="-71.143715" + fx="-273.07968" + fy="-71.143715" + r="27.622614" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4937663,0,0,1.493766,135.56448,35.312572)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5614" + id="radialGradient5620" + cx="-281.17819" + cy="-78.86171" + fx="-281.17819" + fy="-78.86171" + r="29.214298" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3813297,0,0,1.3813297,107.2216,30.072312)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5648" + id="linearGradient5654" + x1="-269.95532" + y1="-62.28437" + x2="-255.64305" + y2="-34.32909" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5648"> + <stop + style="stop-color:#ce5c00;stop-opacity:1;" + offset="0" + id="stop5650" /> + <stop + style="stop-color:#4d2100;stop-opacity:1" + offset="1" + id="stop5652" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5913" + id="linearGradient5919" + x1="-202.7368" + y1="-50.5" + x2="-192.7444" + y2="-50.5" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(197.97906,85.161402)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5913"> + <stop + style="stop-color:#787878;stop-opacity:1;" + offset="0" + id="stop5915" /> + <stop + style="stop-color:#787878;stop-opacity:0;" + offset="1" + id="stop5917" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5887" + id="linearGradient5893" + x1="-247.54591" + y1="-35.930092" + x2="-264.87021" + y2="-58.743122" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5887"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop5889" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop5891" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter5903"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.5089815" + id="feGaussianBlur5905" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5987" + id="linearGradient5993" + x1="-183.87694" + y1="-38.634178" + x2="-183.87694" + y2="-39.513264" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.7174974,199.08898,22.876918)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5987"> + <stop + style="stop-color:#8ae234;stop-opacity:1;" + offset="0" + id="stop5989" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5991" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5995" + id="linearGradient6001" + x1="-184.21419" + y1="-37.343178" + x2="-184.21419" + y2="-39.290829" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.7174974,199.08898,22.876918)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5995"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop5997" /> + <stop + style="stop-color:#72eb00;stop-opacity:1" + offset="1" + id="stop5999" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5913" + id="linearGradient5923" + gradientUnits="userSpaceOnUse" + x1="-203.15808" + y1="-50.5" + x2="-192.52609" + y2="-50.5" + gradientTransform="translate(228.08898,85.161402)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5873" + id="radialGradient5881" + cx="-263.10712" + cy="-59.058826" + fx="-263.10712" + fy="-59.058826" + r="26.905991" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2689136,-0.7557538,0.46722378,1.4051413,361.24185,-169.10186)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5873"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop5875" /> + <stop + style="stop-color:#d3d7cf;stop-opacity:1" + offset="1" + id="stop5877" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5730" + id="linearGradient5736" + x1="-260.28085" + y1="-37.043636" + x2="-259.48315" + y2="-86.628036" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5730"> + <stop + style="stop-color:#888a85;stop-opacity:1" + offset="0" + id="stop5732" /> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="1" + id="stop5734" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter5867" + x="-0.13159215" + width="1.2631843" + y="-0.13159215" + height="1.2631843"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.8767211" + id="feGaussianBlur5869" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5827" + id="linearGradient6005" + gradientUnits="userSpaceOnUse" + x1="-203.06625" + y1="-31.478365" + x2="-191.55763" + y2="-29.403404" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5827"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5829" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5831" /> + </linearGradient> + <linearGradient + gradientTransform="translate(199.08898,85.161402)" + inkscape:collect="always" + xlink:href="#linearGradient5783" + id="linearGradient5789" + x1="-179.45006" + y1="-42.398266" + x2="-176.44347" + y2="-27.845135" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5783"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop5785" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop5787" /> + </linearGradient> + <filter + inkscape:collect="always" + id="filter6071" + x="-0.06728632" + width="1.1345726" + y="-0.42854825" + height="1.8570966"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.0645658" + id="feGaussianBlur6073" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="7" + inkscape:cx="33.886953" + inkscape:cy="28.96425" + 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="0" /> + <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></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer" + transform="translate(8.8571424,-13.162344)"> + <rect + style="fill:none;stroke:none" + id="rect6075" + width="48" + height="48" + x="-8.8571424" + y="13.196694" + inkscape:export-xdpi="90.108963" + inkscape:export-ydpi="90.108963" /> + <rect + style="fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter6071)" + id="rect6053" + width="37.971432" + height="5.9618907" + x="-201.937" + y="-31.972912" + rx="3.0037909" + ry="2.7536142" + transform="matrix(0.9923944,0,0,1.0825574,197.14181,87.087331)" /> + <path + style="fill:#555753;fill-opacity:1;stroke:url(#linearGradient5789);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:220" + d="m 3.5548184,46.680213 23.0742106,0.02567 c 0,0 5.89999,5.954475 5.89999,5.954475 0.63134,0.631336 1.02079,1.504553 1.02079,2.472078 0,1.935049 -1.55782,3.492869 -3.49286,3.492869 l -29.96012039,0 c -1.93505001,0 -3.49287001,-1.55782 -3.49287001,-3.492869 0,-0.967525 0.38945,-1.840742 1.02079,-2.472078 0,0 5.9300698,-5.980141 5.9300698,-5.980141 z" + id="rect5738" + sodipodi:nodetypes="ccssccssc" /> + <path + transform="translate(199.08898,85.161402)" + sodipodi:type="inkscape:offset" + inkscape:radius="0.81427181" + inkscape:original="M -194.625 -37.5 C -194.625 -37.5 -200.4375 -31.46875 -200.4375 -31.46875 C -200.81227 -31.093985 -201.03125 -30.595841 -201.03125 -30.03125 C -201.03125 -28.884593 -200.14666 -28 -199 -28 L -187.03125 -28 C -185.88461 -28 -185 -28.884598 -185 -30.03125 C -185 -30.595841 -185.21898 -31.093985 -185.59375 -31.46875 C -185.59375 -31.46875 -194.625 -37.5 -194.625 -37.5 z " + style="fill:url(#linearGradient6005);fill-opacity:1;stroke:none" + id="path6003" + d="m -194.71875,-38.3125 a 0.81435323,0.81435323 0 0 0 -0.5,0.25 c 0,0 -5.8125,6.03125 -5.8125,6.03125 L -201,-32 c -0.50698,0.516344 -0.84375,1.202669 -0.84375,1.96875 0,1.565438 1.27831,2.84375 2.84375,2.84375 l 11.96875,0 c 1.56543,0 2.84375,-1.278306 2.84375,-2.84375 0,-0.775138 -0.32601,-1.482268 -0.84375,-2 a 0.81435323,0.81435323 0 0 0 -0.125,-0.125 c 0,0 -9.03125,-6.03125 -9.03125,-6.03125 a 0.81435323,0.81435323 0 0 0 -0.53125,-0.125 z" /> + <path + transform="matrix(0.42980324,0,0,-0.19537277,129.65518,37.870176)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5849" + style="fill:#080a0a;fill-opacity:1;stroke:none;filter:url(#filter5867)" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient5881);fill-opacity:1;stroke:url(#linearGradient5736);stroke-width:1.34585381;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5557" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.64375722,-0.37167341,-0.37134943,-0.64319609,162.97152,-103.07446)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path5871" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(-0.55980337,0.32320262,0.25819179,0.4472013,-119.59851,141.1361)" /> + <rect + y="34.161404" + x="25.020939" + height="0.99999887" + width="9.0680408" + id="rect5921" + style="opacity:0.3918919;fill:url(#linearGradient5923);fill-opacity:1;stroke:none" + rx="0" + ry="0" /> + <rect + style="fill:url(#linearGradient5993);fill-opacity:1;stroke:url(#linearGradient6001);stroke-width:1" + id="rect5955" + width="2.9923346" + height="5.066411" + x="13.586904" + y="-46.666321" + rx="1.4749399" + ry="1.4749401" + transform="scale(1,-1)" /> + <path + transform="matrix(0.43982036,0,0,0.43982036,131.12191,58.309805)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5883" + style="fill:none;stroke:url(#linearGradient5893);stroke-width:2.27365565;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter5903)" + sodipodi:type="arc" /> + <rect + style="opacity:0.3918919;fill:url(#linearGradient5919);fill-opacity:1;stroke:none" + id="rect5911" + width="9.0680408" + height="0.99999887" + x="-5.0889788" + y="34.161404" + transform="scale(-1,1)" /> + <path + sodipodi:type="arc" + style="fill:#ffb03b;fill-opacity:1;stroke:url(#linearGradient5654);stroke-width:2.50314307;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5563" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.39949774,0,0,0.39949774,120.48067,55.918641)" /> + <path + transform="matrix(0.20794468,0,0,0.20794468,69.929359,44.559389)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5561" + style="fill:#555753;fill-opacity:1;stroke:#080808;stroke-width:4.80897188;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.96846846;fill:none;stroke:url(#radialGradient5620);stroke-width:5.96247339;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5565" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.16771563,0,0,0.16771563,59.312819,42.173774)" /> + <path + transform="matrix(0.35982832,0,0,0.35982832,110.01182,53.566212)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5583" + style="fill:none;stroke:url(#radialGradient5591);stroke-width:2.77910304;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:0.48584906;stroke:#000000;stroke-width:14.86451149;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5599" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.06727433,0,0,0.06727433,32.806129,36.194528)" /> + <path + transform="matrix(0.05704758,0,0,0.05704758,28.671959,34.16811)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5597" + style="opacity:0.96846846;fill:#ffffff;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + transform="matrix(-0.16771563,0,0,-0.16771563,-29.208311,22.282427)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5622" + style="opacity:0.96846846;fill:none;stroke:url(#radialGradient5624);stroke-width:5.96247339;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + transform="matrix(0.28276221,0,0,0.28276221,89.673879,48.996129)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5626" + style="opacity:0.52252251;fill:none;stroke:url(#radialGradient5646);stroke-width:3.53654051;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:none;stroke:url(#radialGradient5681);stroke-width:4.07555246;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5679" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(0.24536551,0,0,0.24536551,79.804799,46.778475)" /> + <path + transform="matrix(-0.7050649,0,0,0.7044495,-170.9646,74.927538)" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + sodipodi:ry="26.233063" + sodipodi:rx="26.233063" + sodipodi:cy="-59.300812" + sodipodi:cx="-263.90244" + id="path5791" + style="fill:none;stroke:url(#linearGradient5801);stroke-width:1.41892862;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" /> + <rect + style="fill:url(#linearGradient5843);fill-opacity:1;stroke:none" + id="rect5835" + width="31.996775" + height="2.00898" + x="-0.91831505" + y="55.172977" + rx="1.00449" + ry="1.00449" /> + <path + sodipodi:type="arc" + style="opacity:0.52252251;fill:none;stroke:url(#radialGradient5953);stroke-width:3.53654051;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5951" + sodipodi:cx="-263.90244" + sodipodi:cy="-59.300812" + sodipodi:rx="26.233063" + sodipodi:ry="26.233063" + d="m -237.66937,-59.300812 c 0,14.488121 -11.74494,26.233063 -26.23307,26.233063 -14.48812,0 -26.23306,-11.744942 -26.23306,-26.233063 0,-14.48812 11.74494,-26.233063 26.23306,-26.233063 14.48813,0 26.23307,11.744943 26.23307,26.233063 z" + transform="matrix(-0.28276221,0,0,-0.28276221,-59.569391,15.460071)" /> + <rect + ry="1.00449" + rx="1.00449" + y="55.172977" + x="-31.078465" + height="2.00898" + width="19.405989" + id="rect6045" + style="fill:url(#linearGradient6047);fill-opacity:1;stroke:none" + transform="scale(-1,1)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/toolbar/48/scalable/voice-call.svg Tue Jul 21 06:16:43 2009 +0000 @@ -0,0 +1,756 @@ +<?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+devel r20974" + version="1.0" + sodipodi:docname="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="275.47836" + inkscape:cy="12.04013" + 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="0" /> + <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="0.99742299" + rx="0.99742299" + y="22.267445" + x="35.395443" + height="9.8971453" + width="1.994846" + id="rect5439" + style="fill:url(#linearGradient5449-8);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 + 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(#linearGradient5723-8);fill-opacity:1;stroke:none" + id="rect5715" + width="1.994846" + height="9.8971453" + x="4.542254" + y="22.073544" + rx="0.99742299" + ry="0.99742299" + transform="scale(-1,1)" + 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>
--- a/po/ChangeLog Tue Jul 21 04:31:27 2009 +0000 +++ b/po/ChangeLog Tue Jul 21 06:16:43 2009 +0000 @@ -8,8 +8,11 @@ * Galician translation updated (Frco. Javier Rial Rodríguez) * German translation updated (Jochen Kemnade and Björn Voigt) * Greek translation updated (Bouklis Panos) + * Khmer translation added (Khoem Sokhem) * Lao translation updated (Anousak Souphavah) * Norwegian Nynorsk translation updated (Yngve Spjeld Landro) + * Portuguese (Brazilian) translation updated (Rodrigo Luiz + Marques Flores) * Punjabi translation updated (Amanpreet Singh Alam) * Russian translation updated (Антон Самохвалов) * Simplified Chinese translation updated under new translator (Aron Xu)
--- a/po/km.po Tue Jul 21 04:31:27 2009 +0000 +++ b/po/km.po Tue Jul 21 06:16:43 2009 +0000 @@ -1,14 +1,14 @@ -# translation of pidgin.po to Khmer +# translation of km_new_update.po to Khmer # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Khoem Sokhem <khoemsokhem@khmeros.info>, 2009. msgid "" msgstr "" -"Project-Id-Version: pidgin\n" +"Project-Id-Version: km_new_update\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-06 15:04-0700\n" -"PO-Revision-Date: 2009-02-25 11:49+0700\n" +"POT-Creation-Date: 2009-07-20 21:11-0700\n" +"PO-Revision-Date: 2009-07-21 08:40+0700\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Language-Team: Khmer <support@khmeros.info>\n" "MIME-Version: 1.0\n" @@ -207,7 +207,7 @@ msgstr "បន្ថែមមិត្តភក្ដិ" msgid "Please enter buddy information." -msgstr "សូមបញ្ចូលព័ត៌មានរបស់មិត្តភក្ដិ ។" +msgstr "សូមបញ្ចូលព័ត៌មានមិត្តភក្ដិ ។" msgid "Chats" msgstr "ជជែក" @@ -364,7 +364,7 @@ msgstr "សារបន្ទាន់ថ្មី" msgid "Please enter the username or alias of the person you would like to IM." -msgstr "សូមបញ្ចូលឈ្មោះអ្នកប្រើ ឬឈ្មោះក្លែងក្លាយរបស់មនុស្ស ដែលអ្នកចង់ IM ។" +msgstr "សូមបញ្ចូលឈ្មោះអ្នកប្រើ ឬឈ្មោះក្លែងក្លាយរបស់មនុស្ស ដែលអ្នកចង់ជជែក ។" msgid "Channel" msgstr "ឆានែល" @@ -840,12 +840,11 @@ msgid "System Log" msgstr "កំណត់ហេតុប្រព័ន្ធ" -#, fuzzy msgid "Calling ... " -msgstr "កំពុងគណនា..." +msgstr "កំពុងហៅ... " msgid "Hangup" -msgstr "" +msgstr "រង់ចាំ" #. Number of actions msgid "Accept" @@ -855,25 +854,24 @@ msgstr "ច្រានចោលល" msgid "Call in progress." -msgstr "" +msgstr "ការហៅកំពុងដំណើរការ ។" msgid "The call has been terminated." -msgstr "" +msgstr "ការហៅត្រូវបានបញ្ចប់ ។" #, c-format msgid "%s wishes to start an audio session with you." -msgstr "" +msgstr "%s មានបំណងចាប់ផ្ដើមសម័យអូឌីយ៉ូជាមួយអ្នក ។" #, c-format msgid "%s is trying to start an unsupported media session type with you." -msgstr "" - -#, fuzzy +msgstr "%s កំពុងព្យាយាមចាប់ផ្ដើមប្រភេទសម័យមេឌៀដែលមិនបានគាំទ្រជាមួយអ្នក ។" + msgid "You have rejected the call." -msgstr "អ្នកបានបោះបង់ឆានែល %s%s" +msgstr "អ្នកបានបដិសេធការហៅ ។" msgid "call: Make an audio call." -msgstr "" +msgstr "ហៅ ៖ បង្កើតការហៅអូឌីយ៉ូ ។" msgid "Emails" msgstr "អ៊ីមែល" @@ -1523,22 +1521,23 @@ "\n" "Fetching TinyURL..." msgstr "" +"\n" +"កំពុងទៅយក TinyURL..." msgid "Only create TinyURL for urls of this length or greater" -msgstr "" +msgstr "បង្កើតតែ TinyURL សម្រាប់ urls របស់ប្រវែងនេះ ឬធំជាងនេះ" msgid "TinyURL (or other) address prefix" -msgstr "" - -#, fuzzy +msgstr "បុព្វបទអាសយដ្ឋាន TinyURL (ឬផ្សេងៗ)" + msgid "TinyURL" -msgstr "URL Tune" +msgstr "TinyURL" msgid "TinyURL plugin" -msgstr "" +msgstr "កម្មវិធីជំនួយ TinyURL" msgid "When receiving a message with URL(s), TinyURL for easier copying" -msgstr "" +msgstr "នៅពេលទទួលសារដែលមាន URL(s), TinyURL សម្រាប់ចម្លងកាន់តែងាយ" msgid "accounts" msgstr "គណនី" @@ -1741,7 +1740,6 @@ msgstr "+++ %s បានបិទ" #. Unknown error -#. Unknown error! msgid "Unknown error" msgstr "មិនស្គាល់កំហុស" @@ -1788,9 +1786,8 @@ msgid "%s left the room (%s)." msgstr "%s បានចេញពីបន្ទប់ (%s) ។" -#, fuzzy msgid "Invite to chat" -msgstr "អញ្ជើញឲ្យចូលរួមក្នុងសន្និសីទ" +msgstr "អញ្ជើញឲ្យចូលរួមក្នុងការជជែក" #. Put our happy label in it. msgid "" @@ -1928,6 +1925,10 @@ msgid "Starting transfer of %s from %s" msgstr "ចាប់ផ្ដើមផ្ទេរ %s ពី %s" +#, fuzzy, c-format +msgid "Transfer of file <A HREF=\"file://%s\">%s</A> complete" +msgstr "ផ្ទេរឯកសារ %s ចប់ហើយ" + #, c-format msgid "Transfer of file %s complete" msgstr "ផ្ទេរឯកសារ %s ចប់ហើយ" @@ -2609,9 +2610,8 @@ msgid "Do not ask. Always save in pounce." msgstr "កុំសួរ ។ រក្សាទុកជាក្រុមជានិច្ច ។" -#, fuzzy msgid "One Time Password" -msgstr "បញ្ចូលពាក្យសម្ងាត់" +msgstr "បញ្ចូលពាក្យសម្ងាត់តែម្ដង" #. *< type #. *< ui_requirement @@ -2620,13 +2620,13 @@ #. *< priority #. *< id msgid "One Time Password Support" -msgstr "" +msgstr "គាំទ្រតែការបញ្ចូលពាក្យសម្ងាត់តែម្ដង" #. *< name #. *< version #. * summary msgid "Enforce that passwords are used only once." -msgstr "" +msgstr "បង្ខំពាក្យសម្ងាត់នោះឲ្យប្រើតែម្ដងប៉ុណ្ណោះ ។" #. * description msgid "" @@ -2634,6 +2634,9 @@ "are only used in a single successful connection.\n" "Note: The account password must not be saved for this to work." msgstr "" +"អនុញ្ញាតឲ្យអ្នកបង្ខំនៅលើមូលដ្ឋានក្នុងមួយគណនី ដែលពាក្យសម្ងាត់មិនកំពុងត្រូវបានរក្សាទុកទេ គឺត្រូវបាន" +"រក្សាទុកតែការតភ្ជាប់ដោយជោគជ័យតែមួយប៉ុណ្ណោះ ។\n" +"ចំណាំ ៖ ពាក្យសម្ងាត់គណនីមិនត្រូវបានរក្សាទុកវាសម្រាប់ការងារនោះទេ ។" #. *< type #. *< ui_requirement @@ -3053,7 +3056,7 @@ #. Global msgid "Available" -msgstr "ដែលអាចប្រើបាន" +msgstr "លើបណ្ដាញ" #. get_yahoo_status_from_purple_status() returns YAHOO_STATUS_CUSTOM for #. * the generic away state (YAHOO_STATUS_TYPE_AWAY) with no message @@ -3117,7 +3120,7 @@ #, fuzzy, c-format msgid "Unable to resolve hostname '%s': %s" -msgstr "មិនអាចតភ្ជាប់ទៅកាន់ម៉ាស៊ីនបម្រើបានទេ ។" +msgstr "មិនអាចដោះស្រាយម៉ាស៊ីនបម្រើបានទេ" #. 1. connect to server #. connect to the server @@ -3173,9 +3176,8 @@ msgid "Gadu-Gadu User" msgstr "អ្នកប្រើ Gadu-Gadu" -#, fuzzy msgid "GG server" -msgstr "យកម៉ាស៊ីនបម្រើ" +msgstr "ម៉ាស៊ីនបម្រើ GG" #, c-format msgid "Unknown command: %s" @@ -3230,9 +3232,8 @@ msgid "_Password:" msgstr "ពាក្យសម្ងាត់ ៖" -#, fuzzy msgid "IRC nick and server may not contain whitespace" -msgstr "សម្មតិនាម IRC អាចមិនមានចន្លោះ" +msgstr "សម្មតិនាម IRC និងម៉ាស៊ីនបម្រើមិនអាចមានចន្លោះមិនឃើញទេ" msgid "SSL support unavailable" msgstr "មិនមានការគាំទ្រ SSL" @@ -3429,13 +3430,12 @@ #. We only want to do the following dance if the connection #. has not been successfully completed. If it has, just #. notify the user that their /nick command didn't go. -#, fuzzy, c-format +#, c-format msgid "The nickname \"%s\" is already being used." -msgstr "ឈ្មោះការជជែកនេះកំពុងប្រើរួចហើយ" - -#, fuzzy +msgstr "សម្មតិនាម \"%s\" កំពុងប្រើរួចហើយ ។" + msgid "Nickname in use" -msgstr "សម្មតិនាម" +msgstr "សម្មតិនាមកំពុងប្រើ" msgid "Cannot change nick" msgstr "មិនអាចផ្លាស់ប្ដូរសម្មតិនាមបានទេ" @@ -3711,31 +3711,23 @@ msgstr "កំហុស SASL" msgid "The BOSH connection manager terminated your session." -msgstr "" - -#, fuzzy +msgstr "កម្មវិធីគ្រប់គ្រងការតភ្ជាប់ BOSH បានបញ្ចប់សម័យរបស់អ្នក ។" + msgid "No session ID given" -msgstr "គ្មានហេតុផលបានផ្ដល់" - -#, fuzzy +msgstr "គ្មានលេខសម្គាល់សម័យត្រូវបានផ្ដល់ទេ" + msgid "Unsupported version of BOSH protocol" -msgstr "កំណែដែលមិនបានគាំទ្រ" - -#, fuzzy +msgstr "កំណែមិនបានគាំទ្រពិធីការ BOSH" + msgid "Unable to establish a connection with the server" -msgstr "" -"មិនអាចបង្កើតការតភ្ជាប់ជាមួយម៉ាស៊ីនបម្រើ ៖\n" -"%s" +msgstr "មិនអាចបង្កើតការតភ្ជាប់ជាមួយម៉ាស៊ីមបម្រើទេ" #, fuzzy, c-format msgid "Unable to establish a connection with the server: %s" -msgstr "" -"មិនអាចបង្កើតការតភ្ជាប់ជាមួយម៉ាស៊ីនបម្រើ ៖\n" -"%s" - -#, fuzzy +msgstr "មិនអាចបង្កើតការតភ្ជាប់ជាមួយម៉ាស៊ីមបម្រើទេ" + msgid "Unable to establish SSL connection" -msgstr "មិនអាចចាប់ផ្ដើមការតភ្ជាប់បានទេ" +msgstr "មិនអាចបង្កើតការតភ្ជាប់ SSL" msgid "Full Name" msgstr "ឈ្មោះពេញ" @@ -3801,23 +3793,22 @@ msgid "Operating System" msgstr "ប្រព័ន្ធប្រតិបត្តិការ" -#, fuzzy msgid "Local Time" -msgstr "ឯកសារមូលដ្ឋាន ៖" +msgstr "ពេលវេលាក្នុងស្រុក" msgid "Priority" msgstr "អាទិភាព" msgid "Resource" -msgstr "ធមធាម" +msgstr "ធនធាន" #, c-format msgid "%s ago" -msgstr "" +msgstr "%s កន្លងទៅ" #, fuzzy msgid "Logged Off" -msgstr "បានចូល" +msgstr "បានចេញ" msgid "Middle Name" msgstr "ឈ្មោះកណ្ដាល" @@ -3985,26 +3976,25 @@ msgid "Find Rooms" msgstr "រកបន្ទប់" -#, fuzzy msgid "Affiliations:" msgstr "ឈ្មោះក្លែងក្លាយ ៖" -#, fuzzy msgid "No users found" -msgstr "រកមិនឃើញអ្នកប្រើដែលផ្គូផ្គងទេ" - -#, fuzzy +msgstr "រកមិនឃើញអ្នកប្រើ" + msgid "Roles:" -msgstr "តួនាទី" +msgstr "តួនាទី ៖" #, fuzzy msgid "Ping timed out" msgstr "Ping អស់ពេល" +#, fuzzy msgid "" "Unable to find alternative XMPP connection methods after failing to connect " "directly." msgstr "" +"មិនអាចរកវិធីសាស្ត្រតភ្ជាប់ XMPP ជាជម្រើសបានទេ បន្ទាប់ពីបរាជ័យក្នុងការតភ្ជាប់ដោយផ្ទាល់ ។\n" msgid "Invalid XMPP ID" msgstr "លេខសម្គាល់ XMPP មិនត្រឹមត្រូវ" @@ -4014,7 +4004,7 @@ #, fuzzy msgid "Malformed BOSH URL" -msgstr "បានបរាជ័យក្នុងការតភ្ជាប់ទៅម៉ាស៊ីនបម្រើ ។" +msgstr "ការតភ្ជាប់ម៉ាស៊ីនបម្រើ BOSH មិនត្រឹមត្រូវ" #, c-format msgid "Registration of %s@%s successful" @@ -4082,10 +4072,6 @@ msgid "Change Registration" msgstr "ផ្លាស់ប្តូរការចុះឈ្មោះ" -#, fuzzy -msgid "Malformed BOSH Connect Server" -msgstr "បានបរាជ័យក្នុងការតភ្ជាប់ទៅម៉ាស៊ីនបម្រើ ។" - msgid "Error unregistering account" msgstr "កំហុសក្នុងការលុបការចុះឈ្មោះគណនី" @@ -4371,19 +4357,19 @@ msgid "Unable to ping user %s" msgstr "មិនអាច ping អ្នកប្រើ %s បានទេ" -#, fuzzy, c-format +#, c-format msgid "Unable to buzz, because there is nothing known about %s." -msgstr "មិនអាចកេះកៀវបានទេ ពីព្រោះមិនស្គាល់អំពីអ្នកប្រើ %s ។" - -#, fuzzy, c-format +msgstr "មិនអាចកេះកៀវបានទេ ពីព្រោះមិនស្គាល់អ្វីទាំងអស់ពីអ្នកប្រើ %s ។" + +#, c-format msgid "Unable to buzz, because %s might be offline." -msgstr "មិនអាចកេះកៀងបានទេ ពីព្រើអ្នកប្រើ %s នៅក្រៅបណ្ដាញ ។" - -#, fuzzy, c-format +msgstr "មិនអាចកេះកៀវបានទេ ពីព្រោះ %s នៅក្រៅបណ្ដាញ ។" + +#, c-format msgid "" "Unable to buzz, because %s does not support it or does not wish to receive " "buzzes now." -msgstr "មិនអាចកេះកៀវបានទេ ពីព្រោះអ្នកប្រើ %s មិនគាំទ្រវាទេ ។" +msgstr "មិនអាចកេះកៀវបានទេ ពីព្រោះ %s មិនគាំទ្រវាទេ ឬមិនមានបំណងទទួលការកេះកៀវឥឡូវនោះទេ ។" #, c-format msgid "Buzzing %s..." @@ -4398,34 +4384,32 @@ msgid "%s has buzzed you!" msgstr "%s បានកេះកៀវអ្នក !" -#, fuzzy, c-format +#, c-format msgid "Unable to initiate media with %s: invalid JID" -msgstr "មិនអាចផ្ញើឯកសារទៅកាន់ %s បានទេ ដោយសារតែ JID មិនត្រឹមត្រូវ" - -#, fuzzy, c-format +msgstr "មិនអាចចាប់ផ្ដើមមេឌៀជាមួយ %s បានទេ ៖ JID មិនត្រឹមត្រូវ" + +#, c-format msgid "Unable to initiate media with %s: user is not online" -msgstr "មិនអាចផ្ញើឯកសារ %s បានទេ អ្នកប្រើមិននៅលើបណ្ដាញទេ" - -#, fuzzy, c-format +msgstr "មិនអាចចាប់ផ្ដើមមេឌៀជាមួយ %s ៖ អ្នកប្រើមិននៅលើបណ្ដាញទេ" + +#, c-format msgid "Unable to initiate media with %s: not subscribed to user presence" -msgstr "មិនអាចផ្ញើឯកសារ %s បានទេ មិនបានជាវទៅវត្តមានរបស់អ្នកប្រើ" - -#, fuzzy +msgstr "មិនអាចចាប់ផ្ដើមមេឌៀជាមួយ %s បានទេ ៖ មិនបានជាវទៅវត្តមានអ្នកប្រើបានទេ" + msgid "Media Initiation Failed" -msgstr "បានបរាជ័យក្នុងការចុះឈ្មោះ" - -#, fuzzy, c-format +msgstr "បានបរាជ័យក្នុងការចាប់ផ្ដើមមេឌៀ" + +#, c-format msgid "" "Please select the resource of %s with which you would like to start a media " "session." -msgstr "សូមជ្រើសធនធានរបស់ %s ដែលអ្នកចង់ផ្ញើឯកសារ" +msgstr "សូមជ្រើសធនធាន %s ដែលអ្នកចង់ចាប់ផ្ដើមសម័យមេឌៀ ។" msgid "Select a Resource" msgstr "ជ្រើសធនធាន" -#, fuzzy msgid "Initiate Media" -msgstr "ចាប់ផ្ដើមជជែក" +msgstr "ចាប់ផ្ដើមមេឌៀ" msgid "config: Configure a chat room." msgstr "config ៖ កំណត់រចនាសម្ព័ន្ធបន្ទប់ជជែក ។" @@ -4445,21 +4429,19 @@ msgid "ban <user> [reason]: Ban a user from the room." msgstr "ហាមឃាត់ <អ្នកប្រើ> [ហេតុផល] ៖ ហាមឃាត់អ្នកប្រើពីបន្ទប់ ។" -#, fuzzy msgid "" "affiliate <owner|admin|member|outcast|none> [nick1] [nick2] ...: Get " "the users with an affiliation or set users' affiliation with the room." msgstr "" -"ទាក់ទង <អ្នកប្រើ> <ម្ចាស់|អ្នកគ្រប់គ្រង|សមាជិក|outcast|គ្មាន> ៖ កំណត់ទំនាក់ទំនង" -"របស់អ្នកប្រើជាមួយនឹងបន្ទប់ ។" - -#, fuzzy +"affiliate <owner|admin|member|outcast|none> [nick1] [nick2] ...: យកអ្នក" +"ប្រើជាមួយទំនាក់ទំនង ឬកំណត់ទំនាក់ទំនងរបស់អ្នកប្រើក្នុងបន្ទប់នេះ ។" + msgid "" "role <moderator|participant|visitor|none> [nick1] [nick2] ...: Get the " "users with an role or set users' role with the room." msgstr "" -"តួនាទី <អ្នកប្រើ> <អ្នកអន្តរការី|អ្នកចូលរួម|អ្នកទស្សនា|គ្មាន> ៖ កំណត់តួនាទីរបស់អ្នក" -"ប្រើនៅក្នុងបន្ទប់ ។" +"តួនាទី <អន្តរការី|អ្នកចូលរួម|អ្នកទស្សនា|គ្មាន> [nick1] [nick2] ...: យកអ្នកប្រើ" +"ដែលមានតួនាទី ឬកំណត់តួនាទីរបស់អ្នកក្នុងបន្ទប់ ។" msgid "invite <user> [message]: Invite a user to the room." msgstr "អញ្ជើញ <អ្នកប្រើ> [សារ] ៖ អញ្ជើញអ្នកប្រើឲ្យចូលបន្ទប់ ។" @@ -4595,18 +4577,16 @@ #, fuzzy msgid "An error occurred on the in-band bytestream transfer\n" -msgstr "កំហុសមួយបានកើតឡើងខណៈពេលបើកឯកសារ ។" - -#, fuzzy +msgstr "កំហុសមួយបានកើតឡើងនៅលើការផ្ទេរស្ទ្រីមបៃក្នុងក្រុម\n" + msgid "Transfer was closed." -msgstr "បានបរាជ័យក្នុងការផ្ទេរឯកសារ" - -#, fuzzy +msgstr "ការផ្ទេរត្រូវបានបិទ ។" + msgid "Failed to open the file" -msgstr "បានបរាជ័យក្នុងការបើកឯកសារ '%s' ៖ %s" +msgstr "បានបរាជ័យក្នុងការបើកឯកសារ" msgid "Failed to open in-band bytestream" -msgstr "" +msgstr "បានបរាជ័យក្នុងការបើកនៅក្នុងស្ទ្រីមបៃក្នុងក្រុម" #, c-format msgid "Unable to send file to %s, user does not support file transfers" @@ -4925,6 +4905,22 @@ msgid "Non-IM Contacts" msgstr "ទំនាក់ទំនងដែលមិនមានជា IM" +#, c-format +msgid "%s sent a wink. <a href='msn-wink://%s'>Click here to play it</a>" +msgstr "" + +#, c-format +msgid "%s sent a wink, but it could not be saved" +msgstr "" + +#, c-format +msgid "%s sent a voice clip. <a href='audio://%s'>Click here to play it</a>" +msgstr "" + +#, c-format +msgid "%s sent a voice clip, but it could not be saved" +msgstr "" + #, fuzzy, c-format msgid "%s sent you a voice chat invite, which is not yet supported." msgstr "%s បានផ្ញើការអញ្ជើញអ្នកឲ្យបើកម៉ាស៊ីនថតតាមបណ្ដាញ ដែលមិនត្រូវបានគាំទ្រនៅឡើយទេ ។" @@ -5079,6 +5075,29 @@ msgid "SSL support is needed for MSN. Please install a supported SSL library." msgstr "ការគាំទ្រ SSL ត្រូវបានទាមទារសម្រាប់ MSN ។ សូមដំឡើងបណ្ណាល័យ SSL ដែលបានគាំទ្រ ។" +#, fuzzy, c-format +msgid "" +"Unable to add the buddy %s because the username is invalid. Usernames must " +"be a valid email address." +msgstr "" +"មិនអាចបន្ថែមមិត្តភក្ដិ %s បានទេ ពីព្រោះឈ្មោះអ្នកប្រើមិនត្រឹមត្រូវ ។ ឈ្មោះអ្នកប្រើត្រូវតែជា" +"អាសយដ្ឋានអ៊ីមែលត្រឹមត្រូវ ឬចាប់ផ្ដើមដោយអក្សរ ហើយមានតែអក្សរ លេខ និងចន្លោះ ឬមានតែលេខ ។" + +msgid "Unable to Add" +msgstr "មិនអាចបន្ថែម" + +msgid "Authorization Request Message:" +msgstr "សារសំណើផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ ៖" + +msgid "Please authorize me!" +msgstr "សូមអនុញ្ញាតខ្ញុំ !" + +#. * +#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons. +#. +msgid "_OK" +msgstr "យល់ព្រម" + msgid "Error retrieving profile" msgstr "កំហុសក្នុងការទៅទទួលយកទម្រង់" @@ -5268,13 +5287,14 @@ msgid "%s just sent you a Nudge!" msgstr "%s គ្រាន់តែបានផ្ញើឲ្យអ្នកនូវការច្រានចេញ !" -#, fuzzy, c-format +#, c-format msgid "Unknown error (%d): %s" -msgstr "មិនស្គាល់កំហុស (%d)" +msgstr "មិនស្គាល់កំហុស (%d) ៖ %s" msgid "Unable to add user" msgstr "មិនអាចបន្ថែមអ្នកប្រើបានទេ" +#. Unknown error! #, c-format msgid "Unknown error (%d)" msgstr "មិនស្គាល់កំហុស (%d)" @@ -6413,9 +6433,8 @@ #. Unregistered username #. uid is not exist #. the username does not exist -#, fuzzy msgid "Username does not exist" -msgstr "មិនមានអ្នកប្រើទេ" +msgstr "មិនមានឈ្មោះអ្នកប្រើ" #. Suspended account #, fuzzy @@ -6426,6 +6445,7 @@ msgid "The AOL Instant Messenger service is temporarily unavailable." msgstr "សេវាកម្មវិធីផ្ញើសារបន្ទាន់ AOL បច្ចុប្បន្នប្រើមិនបានទេ ។" +#. client too old #, c-format msgid "The client version you are using is too old. Please upgrade at %s" msgstr "កំណែម៉ាស៊ីនភ្ញៀវដែលអ្នកកំពុងប្រើចាស់ពេក ។ សូមធ្វើឲ្យប្រសើរនៅ %s" @@ -6449,12 +6469,6 @@ msgid "Enter the 6 digit number from the digital display." msgstr "បញ្ចូលលេខ ៦ តួលេខពីការបង្ហាញឌីជីថល ។" -#. * -#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons. -#. -msgid "_OK" -msgstr "យល់ព្រម" - msgid "Password sent" msgstr "បានផ្ញើពាក្យសម្ងាត់" @@ -6464,12 +6478,6 @@ msgid "Please authorize me so I can add you to my buddy list." msgstr "សូមអនុញ្ញាតខ្ញុំ ដូច្នេះខ្ញុំអាចបន្ថែមអ្នកនៅកាន់បញ្ជីមិត្តភក្ដិរបស់ខ្ញុំ ។" -msgid "Authorization Request Message:" -msgstr "សារសំណើផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ ៖" - -msgid "Please authorize me!" -msgstr "សូមអនុញ្ញាតខ្ញុំ !" - msgid "No reason given." msgstr "គ្មានហេតុផលបានផ្ដល់ ។" @@ -6773,9 +6781,6 @@ "មិនអាចបន្ថែមមិត្តភក្ដិ %s បានទេ ពីព្រោះឈ្មោះអ្នកប្រើមិនត្រឹមត្រូវ ។ ឈ្មោះអ្នកប្រើត្រូវតែជា" "អាសយដ្ឋានអ៊ីមែលត្រឹមត្រូវ ឬចាប់ផ្ដើមដោយអក្សរ ហើយមានតែអក្សរ លេខ និងចន្លោះ ឬមានតែលេខ ។" -msgid "Unable to Add" -msgstr "មិនអាចបន្ថែម" - msgid "Unable to Retrieve Buddy List" msgstr "មិនអាចទៅយកបញ្ជីមិត្តភ្ដិបានទេ" @@ -7159,30 +7164,26 @@ msgstr "ចំណាំ" #. callback -#, fuzzy msgid "Buddy Memo" -msgstr "កែប្រែ មិត្តភក្ដិ" +msgstr "អនុស្សារណមិត្តភក្ដិ" msgid "Change his/her memo as you like" -msgstr "" - -#, fuzzy +msgstr "ផ្លាស់ប្ដូរកំណត់ហេតុរំលឹករបសគាត់តាមដែលអ្នកពេញចិត្ត" + msgid "_Modify" -msgstr "កែប្រែ" - -#, fuzzy +msgstr "កែប្រែ " + msgid "Memo Modify" -msgstr "កែប្រែ" - -#, fuzzy +msgstr "កែប្រែកំណត់ហេតុរំលឹក" + msgid "Server says:" -msgstr "ម៉ាស៊ីនបម្រើរវល់" +msgstr "ម៉ាស៊ីនបម្រើនិយាយ ៖" msgid "Your request was accepted." -msgstr "" +msgstr "សំណើរបស់អ្នកត្រូវបានទទួលយក ។" msgid "Your request was rejected." -msgstr "" +msgstr "សំណើរបស់អ្នកត្រូវបានច្រានចោល ។" #, c-format msgid "%u requires verification" @@ -7494,7 +7495,7 @@ msgstr "<p><b>អ្នកសាកល្បងហ្មតចត់</b> ៖<br>\n" msgid "and more, please let me know... thank you!))" -msgstr "" +msgstr "និងផ្សេងៗទៀត សូមឲ្យខ្ញុំដឹង... អរគុណ !))" msgid "<p><i>And, all the boys in the backroom...</i><br>\n" msgstr "<p><i>ប្រុសៗទាំងអស់នៅក្នុងបន្ទប់...</i><br>\n" @@ -7640,7 +7641,7 @@ #, fuzzy msgid "Unable to resolve hostname" -msgstr "មិនអាចតភ្ជាប់ទៅកាន់ម៉ាស៊ីនបម្រើបានទេ ។" +msgstr "មិនអាចដោះស្រាយម៉ាស៊ីនបម្រើបានទេ" msgid "Invalid server or port" msgstr "ម៉ាស៊ីនបម្រើ ឬច្រកមិនត្រឹមត្រូវ" @@ -8684,10 +8685,6 @@ msgid "Connecting to SILC Server" msgstr "តភ្ជាប់ទៅកាន់ម៉ាស៊ីនបម្រើ SILC" -#, fuzzy -msgid "Unable to not load SILC key pair" -msgstr "មិនអាចផ្ទុកការផ្គូផ្គងសោ SILC បានទេ" - msgid "Out of memory" msgstr "អស់សតិOut of memory" @@ -9252,7 +9249,7 @@ msgstr "កម្មវិធីជំនួយពិធីការរបស់យ៉ាហ៊ូ" msgid "Your SMS was not delivered" -msgstr "" +msgstr "SMS របស់អ្នកមិនត្រូវបានបញ្ជូនទេ" msgid "Your Yahoo! message did not get sent." msgstr "យ៉ាហ៊ូរបស់អ្នក ! សារមិនត្រូវបានផ្ញើទេ ។" @@ -9277,28 +9274,30 @@ msgstr "បន្ថែមមិត្តភក្ដិដែលបានច្រានចេញ" #. Some error in the received stream -#, fuzzy msgid "Received invalid data" -msgstr "បានទទួលទិន្នន័យមិនត្រឹមត្រូវនៅលើការតភ្ជាប់ជាមួយម៉ាស៊ីនបម្រើ ។ " +msgstr "បានទទួលទិន្នន័យមិនត្រឹមត្រូវ" #. security lock from too many failed login attempts #, fuzzy msgid "" "Account locked: Too many failed login attempts. Logging into the Yahoo! " "website may fix this." -msgstr "មិនស្គាល់លេខកំហុស %d ។ ចូលក្នុងតំបន់យ៉ាហ៊ូ ! អាចជួសជុលវាបាន ។" +msgstr "" +"គណនីជាប់សោ ៖ ប៉ុនប៉ងចូលច្រើនដងពេក ។\n" +"ចូលក្នុង Yahoo! តំបន់បណ្ដាញអាចជួសជុលវា ។" #. indicates a lock of some description #, fuzzy msgid "" "Account locked: Unknown reason. Logging into the Yahoo! website may fix " "this." -msgstr "មិនស្គាល់លេខកំហុស %d ។ ចូលក្នុងតំបន់យ៉ាហ៊ូ ! អាចជួសជុលវាបាន ។" +msgstr "" +"គណនីជាប់សោ ៖ មិនស្គាល់ហេតុផលទេ ។\n" +"ចូលក្នុង Yahoo! តំបន់បណ្ដាញអាចជួសជុលវា ។" #. username or password missing -#, fuzzy msgid "Username or password missing" -msgstr "ឈ្មោះអ្នកប្រើ ឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ" +msgstr "បាត់ឈ្មោះអ្នកប្រើ ឬពាក្យសម្ងាត់" #, c-format msgid "" @@ -9354,9 +9353,7 @@ #, fuzzy, c-format msgid "Unable to establish a connection with %s: %s" -msgstr "" -"មិនអាចបង្កើតការតភ្ជាប់ជាមួយម៉ាស៊ីនបម្រើ ៖\n" -"%s" +msgstr "មិនអាចបង្កើតការតភ្ជាប់ជាមួយម៉ាស៊ីមបម្រើទេ" msgid "Not at Home" msgstr "មិននៅផ្ទះទេ" @@ -9500,12 +9497,9 @@ msgid "The user's profile is empty." msgstr "ទម្រង់របស់អ្នកប្រើទទេរ ។" -#, c-format -msgid "%s declined your conference invitation to room \"%s\" because \"%s\"." -msgstr "%s បានបដិសេធការអញ្ជើញសន្និសីទរបស់អ្នកក្នុងបន្ទប់ \"%s\" ដោយសារតែ \"%s\" ។" - -msgid "Invitation Rejected" -msgstr "បានបដិសេធការអញ្ជើញ" +#, fuzzy, c-format +msgid "%s has declined to join." +msgstr "%s បានចូល ។" msgid "Failed to join chat" msgstr "បានបរាជ័យក្នុងការចូលរួមក្នុងការជជែក" @@ -9929,13 +9923,13 @@ msgid "Error Reading %s" msgstr "កំហុសក្នុងការអាន %s" -#, fuzzy, c-format +#, c-format msgid "" "An error was encountered reading your %s. The file has not been loaded, and " "the old file has been renamed to %s~." msgstr "" -"មានកំហុសក្នុងការអាន %s របស់អ្នក ។ ពួកវាមិនត្រូវបានផ្ទុកទេ ហើយឯកសារចាស់ត្រូវបានប្ដូរឈ្មោះទៅជា %" -"s~." +"មានកំហុសមួយក្នុងការអាន %s របស់អ្នក ។ ឯកសារមិនត្រូវបានផ្ទុកទេ ហើយឯកសារចាស់ត្រូវបានប្ដូរឈ្មោះទៅ" +"ជា %s~ ។" msgid "Internet Messenger" msgstr "កម្មវិធីផ្ញើសារអ៊ីនធឺណិត" @@ -9979,7 +9973,8 @@ msgid "Use this buddy _icon for this account:" msgstr "ប្រើរូបតំណាងមិត្តភក្ដិនេះសម្រាប់គណនីនេះ ៖" -msgid "_Advanced" +#, fuzzy +msgid "Ad_vanced" msgstr "កម្រិតខ្ពស់" msgid "Use GNOME Proxy Settings" @@ -10043,7 +10038,7 @@ msgstr "បង្កើតគណនីថ្មីនៅលើម៉ាស៊ីនបម្រើ" #, fuzzy -msgid "_Proxy" +msgid "P_roxy" msgstr "ប្រូកស៊ី" msgid "Enabled" @@ -10090,9 +10085,8 @@ msgid "Please update the necessary fields." msgstr "សូមធ្វើឲ្យវាលដែលចាំបាច់ទាន់សម័យ ។" -#, fuzzy msgid "A_ccount" -msgstr "គណនី" +msgstr "គណនី " msgid "" "Please enter the appropriate information about the chat you would like to " @@ -10117,16 +10111,14 @@ msgid "I_M" msgstr "IM" -#, fuzzy msgid "_Audio Call" -msgstr "បន្ថែមការជជែក" +msgstr "ការហៅអូឌីយ៉ូ" msgid "Audio/_Video Call" -msgstr "" - -#, fuzzy +msgstr "អូឌីយ៉ូ/ការហៅវីដេអូ" + msgid "_Video Call" -msgstr "ជជែកតាមវីដេអូ" +msgstr "ការហៅវីដេអូ " msgid "_Send File..." msgstr "ផ្ញើឯកសារ..." @@ -10267,9 +10259,8 @@ msgid "/Tools/_Certificates" msgstr "/ឧបករណ៍/វិញ្ញាបនបត្រ" -#, fuzzy msgid "/Tools/Custom Smile_ys" -msgstr "/ឧបករណ៍/សញ្ញាណអារម្មណ៍" +msgstr "/ឧបករណ៍/សញ្ញាណអារម្មណ៍ផ្ទាល់ខ្លួន" msgid "/Tools/Plu_gins" msgstr "/ឧបករណ៍/កម្មវិធីជំនួយ" @@ -10397,7 +10388,7 @@ msgstr "តាមស្ថានភាព" msgid "By recent log activity" -msgstr "" +msgstr "តាមសកម្មភាពកំណត់ហេតុថ្មីៗ" #, c-format msgid "%s disconnected" @@ -10414,7 +10405,7 @@ msgstr "បើកឡើងវិញ" msgid "SSL FAQs" -msgstr "" +msgstr "SSL FAQs" msgid "Welcome back!" msgstr "សូមស្វាគមន៍ការត្រឡប់មកវិញ !" @@ -10509,7 +10500,7 @@ msgstr "នៅក្នុងការជជែកបន្ទាប់ពីបង្អួចត្រូវបានបិទ ។" msgid "Please enter the name of the group to be added." -msgstr "សូមបញ្ចូលឈ្មោះរបសក្រុមដែលត្រូវបន្ថែម ។" +msgstr "សូមបញ្ចូលឈ្មោះក្រុមដែលត្រូវបន្ថែម ។" msgid "Enable Account" msgstr "បើកគណនី" @@ -10588,7 +10579,7 @@ #, fuzzy msgid "Contact Text" -msgstr "ផ្លូវកាត់" +msgstr "អត្ថបទផ្លូវកាត់" msgid "The text information for when a contact is expanded" msgstr "" @@ -10736,21 +10727,17 @@ msgid "/Conversation/Clea_r Scrollback" msgstr "/សន្ទនា/ជំម្រះ" -#, fuzzy msgid "/Conversation/M_edia" -msgstr "/សន្ទនា/ផ្សេងៗទៀត" - -#, fuzzy +msgstr "/សន្ទនា/មេឌៀ" + msgid "/Conversation/Media/_Audio Call" -msgstr "/សន្ទនា/ផ្សេងៗទៀត" - -#, fuzzy +msgstr "/សន្ទនា/មេឌៀ/ការហៅអូឌីយ៉ូ" + msgid "/Conversation/Media/_Video Call" -msgstr "/សន្ទនា/ផ្សេងៗទៀត" - -#, fuzzy +msgstr "/សន្ទនា/មេឌៀ/ការហៅវីដេអូ" + msgid "/Conversation/Media/Audio\\/Video _Call" -msgstr "/សន្ទនា/មើលកំណត់ហេតុ" +msgstr "/សន្ទនា/មេឌៀ/អូឌីយ៉ូ/ការហៅវីដេអូ" msgid "/Conversation/Se_nd File..." msgstr "/សន្ទនា/ផ្ញើឯកសារ..." @@ -10824,17 +10811,14 @@ msgid "/Conversation/View Log" msgstr "/សន្ទនា/មើលកំណត់ហេតុ" -#, fuzzy msgid "/Conversation/Media/Audio Call" -msgstr "/សន្ទនា/ផ្សេងៗទៀត" - -#, fuzzy +msgstr "/សន្ទនា/មេឌៀ/ការហៅអូឌីយ៉ូ" + msgid "/Conversation/Media/Video Call" -msgstr "/សន្ទនា/មើលកំណត់ហេតុ" - -#, fuzzy +msgstr "/សន្ទនា/មេឌៀ/ការហៅវីដេអូ" + msgid "/Conversation/Media/Audio\\/Video Call" -msgstr "/សន្ទនា/ផ្សេងៗទៀត" +msgstr "/សន្ទនា/មេឌៀ/អូឌីយ៉ូ\\/ការហៅវីដេអូ" msgid "/Conversation/Send File..." msgstr "/សន្ទនា/ផ្ញើឯកសារ..." @@ -11018,7 +11002,7 @@ msgstr "Ka-Hing Cheung" msgid "voice and video" -msgstr "" +msgstr "សំឡេង និងវីដេអូ" msgid "support" msgstr "គាំទ្រ" @@ -11144,9 +11128,8 @@ msgid "Hungarian" msgstr "ហុងគ្រី" -#, fuzzy msgid "Armenian" -msgstr "រូម៉ានី" +msgstr "អាម៉ីនៀន" msgid "Indonesian" msgstr "ឥណ្ឌូនេស៊ី" @@ -11163,9 +11146,8 @@ msgid "Ubuntu Georgian Translators" msgstr "អ្នកប្រើប្រែហ្សកហ្ស៊ីរបស់អូប៊ុនទូ" -#, fuzzy msgid "Khmer" -msgstr "ផ្សេងៗទៀត" +msgstr "ខ្មែរ" msgid "Kannada" msgstr "កិណាដា" @@ -11246,7 +11228,7 @@ msgstr "ស៊ុយអែដ" msgid "Swahili" -msgstr "" +msgstr "ស្វាហ៊ីលី" msgid "Tamil" msgstr "តាមីល" @@ -11866,7 +11848,7 @@ msgid "%s %s. Try `%s -h' for more information.\n" msgstr "%s %s ។ ព្យាយាម `%s -h' សម្រាប់ព័ត៌មានបន្ថែម ។\n" -#, fuzzy, c-format +#, c-format msgid "" "%s %s\n" "Usage: %s [OPTION]...\n" @@ -11884,20 +11866,21 @@ " -v, --version display the current version and exit\n" msgstr "" "%s %s\n" -"ការប្រើប្រាស់ ៖ %s [ជម្រើស]...\n" +"ការប្រើប្រាស់ ៖ %s [ជម្រើស]...\n" "\n" " -c, --config=DIR ប្រើ DIR សម្រាប់ឯកសារកំណត់រចនាសម្ព័ន្ធ\n" -" -d, --debug បោះពុម្ពសារបំបាត់កំហុសទៅ stdout\n" +" -d, --debug បោះពុម្ពសារបំបាត់កំហុសទៅកាន់ stdout\n" +" -f, --force-online បង្ខំលើបណ្ដាញ ទាក់ទងនឹងស្ថានភាពបណ្ដាញ\n" " -h, --help បង្ហាញជំនួយនេះ ហើយចេញ\n" -" -m, --multiple មិនប្រាកដធាតុតែមួយ\n" +" -m, --multiple កុំប្រាកដលើធាតុតែមួយ\n" " -n, --nologin កុំចូលដោយស្វ័យប្រវត្តិ\n" -" -l, --login[=NAME] បើកគណនីដែលបានបញ្ជាក់ (អាគុយម៉ងជម្រើស NAME\n" -" បញ្ជាក់គណនីត្រូវប្រើ បំបែកដោយសញ្ញា (,) ។\n" -" ដោយគ្មានគណនីដំបូងនេះនឹងត្រូវបានបើក) ។\n" +" -l, --login[=NAME] បើកគណនីដែលបានបញ្ជាក់ (អាគុយម៉ង់ជម្រើស NAME\n" +" បញ្ជាក់គណនីត្រូវប្រើ បំបែកដោយសញ្ញា(,) ។\n" +" ដោយមិនមានតែគណនីដំបូងនឹងត្រូវបានបើក) ។\n" " --display=DISPLAY ការបង្ហាញ X ត្រូវប្រើ\n" " -v, --version បង្ហាញកំណែបច្ចុប្បន្ន ហើយចេញ\n" -#, fuzzy, c-format +#, c-format msgid "" "%s %s\n" "Usage: %s [OPTION]...\n" @@ -11964,22 +11947,21 @@ msgstr "ចេញ ដោយសារតែម៉ាស៊ីនភ្ញើ libpurple ផ្សេងទៀតកំពុងរត់រួចហើយ ។\n" msgid "/_Media" -msgstr "" +msgstr "/មេឌៀ" msgid "/Media/_Hangup" -msgstr "" - -#, fuzzy +msgstr "/មេឌៀ/រង់ចាំ" + msgid "Calling..." -msgstr "កំពុងគណនា..." +msgstr "កំពុងហៅ..." #, c-format msgid "%s wishes to start an audio/video session with you." -msgstr "" +msgstr "%s មានបំណងចាប់ផ្ដើមសម័យអូឌីយ៉ូ/វីដេអូជាមួយអ្នក ។" #, c-format msgid "%s wishes to start a video session with you." -msgstr "" +msgstr "%s មានបំណងចាប់ផ្ដើមសម័យវីដេអូជាមួយអ្នក ។" #, c-format msgid "%s has %d new message." @@ -12006,9 +11988,8 @@ "The 'Manual' browser command has been chosen, but no command has been set." msgstr "ពាក្យបញ្ជាកម្មវិធីរុករក 'ដោយដៃ' ត្រូវបានជ្រើស ប៉ុន្តែគ្មានពាក្យបញ្ជាត្រូវបានជ្រើសទេ ។" -#, fuzzy msgid "No message" -msgstr "មិនស្គាល់សារ" +msgstr "គ្មានសារ" msgid "Open All Messages" msgstr "បើកសារទាំងអស់" @@ -12016,16 +11997,14 @@ msgid "<span weight=\"bold\" size=\"larger\">You have mail!</span>" msgstr "<span weight=\"bold\" size=\"larger\">អ្នកមានសំបុត្រ !</span>" -#, fuzzy msgid "New Pounces" -msgstr "ក្រុមមិត្តភក្ដិថ្មី" +msgstr "ក្រុមមិត្តភក្ដិថ្មី" msgid "Dismiss" -msgstr "" - -#, fuzzy +msgstr "បណ្ដេញចេញ" + msgid "<span weight=\"bold\" size=\"larger\">You have pounced!</span>" -msgstr "<span weight=\"bold\" size=\"larger\">អ្នកមានសំបុត្រ !</span>" +msgstr "<span weight=\"bold\" size=\"larger\">អ្នកបានដាក់ជាក្រុមមិត្តភក្ដិ !</span>" msgid "The following plugins will be unloaded." msgstr "កម្មវិធីជំនួយដូចខាងក្រោមនឹងត្រូវបានផ្ទុកឡើង ។" @@ -12073,7 +12052,6 @@ msgid "Select a file" msgstr "ជ្រើសឯកសារ" -#, fuzzy msgid "Modify Buddy Pounce" msgstr "កែសម្រួលក្រុមមិត្តភក្ដិ" @@ -12150,49 +12128,49 @@ msgid "Pounce Target" msgstr "ក្រុមគោលដៅ" -#, fuzzy, c-format +#, c-format msgid "Started typing" -msgstr "ចាប់ផ្ដើមវាយ" - -#, fuzzy, c-format +msgstr "បានចាប់ផ្ដើមវាយ" + +#, c-format msgid "Paused while typing" -msgstr "ផ្អាកខណៈពេលវាយ" - -#, fuzzy, c-format +msgstr "បានផ្អាកខណៈពេលវាយ" + +#, c-format msgid "Signed on" -msgstr "ចូល" - -#, fuzzy, c-format +msgstr "បានចូល" + +#, c-format msgid "Returned from being idle" -msgstr "%s បានត្រឡប់ពីស្ថានភាពទំនេរ (%s)" - -#, fuzzy, c-format +msgstr "បានត្រឡប់ពីស្ថានភាពទំនេរ" + +#, c-format msgid "Returned from being away" -msgstr "ត្រឡប់ពីការចាកឆ្ងាយ" - -#, fuzzy, c-format +msgstr "បានត្រឡប់ពីស្ថានភាពចាកឆ្ងាយ" + +#, c-format msgid "Stopped typing" -msgstr "ឈប់វាយ" - -#, fuzzy, c-format +msgstr "បញ្ឈប់ការវាយ" + +#, c-format msgid "Signed off" -msgstr "ចេញទ" - -#, fuzzy, c-format +msgstr "បានចេញ" + +#, c-format msgid "Became idle" msgstr "ក្លាយជាទំនេរ" -#, fuzzy, c-format +#, c-format msgid "Went away" -msgstr "នៅពេលចាកឆ្ងាយ" - -#, fuzzy, c-format +msgstr "នៅពេលចាកឆ្ងាយ" + +#, c-format msgid "Sent a message" -msgstr "ផ្ញើសារ" - -#, fuzzy, c-format +msgstr "បានផ្ញើសារ" + +#, c-format msgid "Unknown.... Please report this!" -msgstr "មិនស្គាល់ព្រឹត្តិការណ៍ក្រុម ។ សូមរាយការណ៍វា !" +msgstr "មិនស្គាល់.... សូមរាយការណ៍អំពីបញ្ហានេះ !" #, fuzzy msgid "Theme failed to unpack." @@ -12226,9 +12204,8 @@ msgstr "បិទការសន្ទនាដោយប្រើគ្រាប់ចុចគេច (Escape)" #. Buddy List Themes -#, fuzzy msgid "Buddy List Theme" -msgstr "បញ្ជីមិត្តភក្ដិ" +msgstr "ស្បែកបញ្ជីមិត្តភក្ដិ" #. System Tray msgid "System Tray Icon" @@ -12368,7 +12345,7 @@ #. TURN server msgid "Relay Server (TURN)" -msgstr "" +msgstr "បញ្ជូនម៉ាស៊ីនបម្រើត (TURN)" msgid "Proxy Server & Browser" msgstr "ម៉ាស៊ីនបម្រើប្រូកស៊ី & កម្មវិធីរុករក" @@ -12711,10 +12688,10 @@ msgid "Status for %s" msgstr "ស្ថានភាពសម្រាប់ %s" -#, fuzzy, c-format +#, c-format msgid "" "A custom smiley for '%s' already exists. Please use a different shortcut." -msgstr "សញ្ញាអារម្មណ៍ផ្ទាល់ខ្លួនសម្រាប់ផ្លូវកាត់ដែលបានជ្រើសមានរួចហើយ ។ សូមបញ្ជីផ្លូវកាត់ផ្សេង ។" +msgstr "មានសញ្ញាណអារម្មណ៍ផ្ទាល់ខ្លួនសម្រាប់ '%s' រួចហើយ ។ សូមប្រើផ្លូវកាត់ផ្សេង ។" msgid "Custom Smiley" msgstr "សញ្ញាអារម្មណ៍ផ្ទាល់ខ្លួន" @@ -12728,28 +12705,24 @@ msgid "Add Smiley" msgstr "បន្ថែមសញ្ញាអារម្មណ៍" -#, fuzzy msgid "_Image:" -msgstr "រូបភាព" +msgstr "រូបភាព ៖" #. Shortcut text -#, fuzzy msgid "S_hortcut text:" -msgstr "ផ្លូវកាត់" +msgstr "អត្ថបទផ្លូវកាត់ ៖" msgid "Smiley" msgstr "សញ្ញាអារម្មណ៍" -#, fuzzy msgid "Shortcut Text" -msgstr "ផ្លូវកាត់" +msgstr "អត្ថបទផ្លូវកាត់" msgid "Custom Smiley Manager" msgstr "កម្មវិធីគ្រប់គ្រងសញ្ញាអារម្មណ៍ផ្ទាល់ខ្លួន" -#, fuzzy msgid "Select Buddy Icon" -msgstr "ជ្រើសមិត្តភក្ដិ" +msgstr "ជ្រើសរូបតំណាងមិត្តភក្ដិ" msgid "Click to change your buddyicon for this account." msgstr "ចុចដើម្បីផ្លាស់ប្ដូររូបតំណាងមិត្តភក្ដិរបស់អ្នកសម្រាប់គណនីនេះ ។" @@ -12866,9 +12839,8 @@ "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "បានបរាជ័យក្នុងការផ្ទុករូបភាព '%s' ៖ មិនស្គាល់ហេតុផល ប្រហែលជាឯកសាររូបភាពតូច" -#, fuzzy msgid "_Open Link" -msgstr "បើកតំណនៅក្នុង ៖" +msgstr "បើកតំណ " msgid "_Copy Link Location" msgstr "ចម្លងទីតាំងតំណ" @@ -12876,9 +12848,25 @@ msgid "_Copy Email Address" msgstr "ចម្លងអាសយដ្ឋានអ៊ីមែល" +#, fuzzy +msgid "_Open File" +msgstr "បើកឯកសារ..." + +#, fuzzy +msgid "Open _Containing Directory" +msgstr "ថតកំណត់ហេតុ" + msgid "Save File" msgstr "រក្សាទុកឯកសារ" +#, fuzzy +msgid "_Play Sound" +msgstr "ចាក់សំឡេង" + +#, fuzzy +msgid "_Save File" +msgstr "រក្សាទុកឯកសារ" + msgid "Select color" msgstr "ជ្រើសពណ៌" @@ -13537,9 +13525,8 @@ msgid "Highlighted Message Name Color" msgstr "ពណ៌ឈ្មោះសារដែលបានបន្លិច" -#, fuzzy msgid "Typing Notification Color" -msgstr "វាយពណ៌ជូនដំណឹង" +msgstr "វាយពណ៌ជូនដំណឹង" msgid "GtkTreeView Horizontal Separation" msgstr "ការបំបែកផ្ដេករបស់ GtkTreeView" @@ -13570,23 +13557,20 @@ msgid "GTK+ Text Shortcut Theme" msgstr "GTK+ ស្បែកផ្លូវកាត់អត្ថបទ" -#, fuzzy msgid "Disable Typing Notification Text" -msgstr "អនុញ្ញាតវាយការជូនដំណឹង" - -#, fuzzy +msgstr "បិទការវាយអត្ថបទជូនដំណឹង" + msgid "GTK+ Theme Control Settings" -msgstr "កម្មវិធីជំនួយ GTK+ ការត្រួតពិនិត្យស្បែក" - -#, fuzzy +msgstr "GTK+ ការកំណត់វត្ថុបញ្ជាស្បែក" + msgid "Colors" -msgstr "បិទ" +msgstr "ពណ៌" msgid "Fonts" msgstr "ពុម្ពអក្សរ" msgid "Miscellaneous" -msgstr "" +msgstr "ផ្សេងៗ" msgid "Gtkrc File Tools" msgstr "ឧបករណ៍ឯកសារ Gtkrc" @@ -13803,11 +13787,11 @@ #, fuzzy msgid "Pidgin Buddylist Theme Editor" -msgstr "បញ្ជីមិត្តភក្ដិ" +msgstr "ស្បែកបញ្ជីមិត្តភក្ដិ" #, fuzzy msgid "Edit Buddylist Theme" -msgstr "បញ្ជីមិត្តភក្ដិ" +msgstr "ស្បែកបញ្ជីមិត្តភក្ដិ" msgid "Edit Icon Theme" msgstr "" @@ -14075,9 +14059,6 @@ #~ msgid "Last Activity" #~ msgstr "សកម្មភាពចុងក្រោយ" -#~ msgid "Service Discovery Info" -#~ msgstr "ព័ត៌មានរកឃើញសេវា" - #~ msgid "Service Discovery Items" #~ msgstr "ធាតុរកឃើញព័ត៌មាន" @@ -14096,9 +14077,6 @@ #~ msgid "Ad-Hoc Commands" #~ msgstr "ពាក្យបញ្ជា Ad-Hoc" -#~ msgid "PubSub Service" -#~ msgstr "សេវា PubSub" - #~ msgid "SOCKS5 Bytestreams" #~ msgstr "ស្ទ្រីមបៃ SOCKS5" @@ -14241,9 +14219,6 @@ #~ msgid "Error. SSL support is not installed." #~ msgstr "កំហុស ។ ការគាំទ្រ SSL មិនត្រូវបានដំឡើងទេ ។" -#~ msgid "Incorrect password." -#~ msgstr "ពាក្យសម្ងាត់មិនត្រឹមត្រូវ ។" - #~ msgid "" #~ "Could not connect to BOS server:\n" #~ "%s" @@ -14251,14 +14226,17 @@ #~ "មិនអាចតភ្ជាប់ទៅកាន់ម៉ាស៊ីនបម្រើ BOS ៖\n" #~ "%s" -#~ msgid "You may be disconnected shortly. Check %s for updates." -#~ msgstr "អ្នកអាចត្រូវបានផ្ដាច់ក្នុងរយៈពេលបន្តិចទៀតនេះ ។ ពិនិត្យមើលភាពទាន់សម័យ %s ។" +#~ msgid "Invalid username." +#~ msgstr "ឈ្មោះអ្នកប្រើមិនត្រឹមត្រូវ ។" + +#~ msgid "Incorrect password." +#~ msgstr "ពាក្យសម្ងាត់មិនត្រឹមត្រូវ ។" #~ msgid "Could Not Connect" #~ msgstr "មិនអាចតភ្ជាប់បានទេ" -#~ msgid "Invalid username." -#~ msgstr "ឈ្មោះអ្នកប្រើមិនត្រឹមត្រូវ ។" +#~ msgid "You may be disconnected shortly. Check %s for updates." +#~ msgstr "អ្នកអាចត្រូវបានផ្ដាច់ក្នុងរយៈពេលបន្តិចទៀតនេះ ។ ពិនិត្យមើលភាពទាន់សម័យ %s ។" #~ msgid "Could not decrypt server reply" #~ msgstr "មិនអាចឌិគ្រីបការឆ្លើយតបរបស់ម៉ាស៊ីនបម្រើបានទេ" @@ -14293,7 +14271,6 @@ #~ msgid "Could not resolve hostname" #~ msgstr "មិនអាចដោះស្រាយឈ្មោះម៉ាស៊ីនបានទេ" -#, fuzzy #~ msgid "Incorrect Password" #~ msgstr "ពាក្យសម្ងាត់មិនត្រឹមត្រូវ" @@ -14304,6 +14281,9 @@ #~ "មិនអាចបង្កើតការតភ្ជាប់ជាមួយ %s បានទេ ៖\n" #~ "%s" +#~ msgid "Activate which ID?" +#~ msgstr "ធ្វើឲ្យសកម្មនូវលេខសម្គាល់ណាមួយ ?" + #~ msgid "Yahoo Japan" #~ msgstr "យ៉ាហ៊ូ ជប៉ុន" @@ -14314,6 +14294,13 @@ #~ msgstr "ម៉ាស៊ីនបម្រើផ្ទេរឯកសារជប៉ុន" #~ msgid "" +#~ "%s declined your conference invitation to room \"%s\" because \"%s\"." +#~ msgstr "%s បានបដិសេធការអញ្ជើញសន្និសីទរបស់អ្នកក្នុងបន្ទប់ \"%s\" ដោយសារតែ \"%s\" ។" + +#~ msgid "Invitation Rejected" +#~ msgstr "បានបដិសេធការអញ្ជើញ" + +#~ msgid "" #~ "Lost connection with server\n" #~ "%s" #~ msgstr "" @@ -14323,11 +14310,15 @@ #~ msgid "Could not resolve host name" #~ msgstr "មិនអាចដោះស្រាយឈ្មោះម៉ាស៊ីនបានទេ" -#, fuzzy #~ msgid "" #~ "Unable to connect to %s: Server requires TLS/SSL, but no TLS/SSL support " #~ "was found." -#~ msgstr "ម៉ាស៊ីនបម្រើត្រូវការ TLS/SSL ដើម្បីចូល ។ រកមិនឃើញការគាំទ្រ TLS/SSL នោះទេ ។" +#~ msgstr "" +#~ "មិនអាចតភ្ជាប់ទៅកាន់ %s បានទេ ៖ ម៉ាស៊ីនបម្រើត្រូវការ TLS/SSL ប៉ុន្តែរកមិនឃើញការគាំទ្រ TLS/" +#~ "SSL នោះទេ ។" + +#~ msgid "_Proxy" +#~ msgstr "ប្រូកស៊ី " #~ msgid "Conversation Window Hiding" #~ msgstr "លាក់បង្អួចសន្ទនា" @@ -14340,188 +14331,3 @@ #~ msgid "Please select an image for the smiley." #~ msgstr "សូមជ្រើសរូបភាពសម្រាប់សញ្ញាអារម្មណ៍ ។" - -#~ msgid "Activate which ID?" -#~ msgstr "ធ្វើឲ្យសកម្មនូវលេខសម្គាល់ណាមួយ ?" - -#~ msgid "Cursor Color" -#~ msgstr "ពណ៌ទស្សន៍ទ្រនិច" - -#~ msgid "Secondary Cursor Color" -#~ msgstr "ពណ៌ទស្សន៍ទ្រនិចទីពីរ" - -#~ msgid "Interface colors" -#~ msgstr "ពណ៌ចំណុចប្រទាក់" - -#~ msgid "Widget Sizes" -#~ msgstr "ទំហំធាតុក្រាហ្វិក" - -#~ msgid "Invite message" -#~ msgstr "សារអញ្ជើញ" - -#~ msgid "" -#~ "Please enter the name of the user you wish to invite,\n" -#~ "along with an optional invite message." -#~ msgstr "" -#~ "សូមបញ្ចូលឈ្មោះអ្នកប្រើដែលអ្នកចង់អញ្ជើញ\n" -#~ "រួមជាមួយនឹងសារអញ្ជើញជាជម្រើស ។" - -#~ msgid "Looking up %s" -#~ msgstr "រកមើល %s" - -#~ msgid "Connect to %s failed" -#~ msgstr "បានបរាជ័យក្នុងការតភ្ជាប់ %s" - -#~ msgid "Signon: %s" -#~ msgstr "ចូល ៖ %s" - -#~ msgid "Unable to write file %s." -#~ msgstr "មិនអាចសរសេរឯកសារ %s បាននោះទេ ។" - -#~ msgid "Unable to read file %s." -#~ msgstr "មិនអាចអានឯកសារ %s បានទេ ។" - -#~ msgid "Message too long, last %s bytes truncated." -#~ msgstr "សារវែងពេក បានកាត់ឲ្យខ្លីចុងក្រោយត្រឹម %s បៃ ។" - -#~ msgid "%s not currently logged in." -#~ msgstr "%s បច្ចុប្បន្នមិនបានចូលទេ ។" - -#~ msgid "Warning of %s not allowed." -#~ msgstr "មិនបានអនុញ្ញាតការព្រមានរបស់ %s ទេ ។" - -#~ msgid "" -#~ "A message has been dropped, you are exceeding the server speed limit." -#~ msgstr "សារត្រូវបានទម្លាក់ អ្នកបានលើសដែនកំណត់ល្បឿនរបស់ម៉ាស៊ីនបម្រើ ។" - -#~ msgid "Chat in %s is not available." -#~ msgstr "មិនមានការជជែកនៅក្នុង %s ទេ ។" - -#~ msgid "You are sending messages too fast to %s." -#~ msgstr "អ្នកកំពុងផ្ញើសារយ៉ាងលឿនទៅ %s ។" - -#~ msgid "You missed an IM from %s because it was too big." -#~ msgstr "អ្នកបាត់ IM ពី %s ពីព្រោះវាធំពេក ។" - -#~ msgid "You missed an IM from %s because it was sent too fast." -#~ msgstr "អ្នកបានបាត់ IM ពី %s ពីព្រោះវាលឿនពេក ។" - -#~ msgid "Failure." -#~ msgstr "បរាជ័យ ។" - -#~ msgid "Too many matches." -#~ msgstr "មានការផ្គូផ្គងច្រើនពេក ។" - -#~ msgid "Need more qualifiers." -#~ msgstr "ត្រូវការឧបករណ៍បញ្ជាក់បន្ថែមទៀត ។" - -#~ msgid "Dir service temporarily unavailable." -#~ msgstr "សេវា Dir មិនអាចប្រើបានជាបណ្ដោះអាសន្ន ។" - -#~ msgid "Email lookup restricted." -#~ msgstr "បានដាក់កម្ងិរការរកមើលអ៊ីមែល ។" - -#~ msgid "Keyword ignored." -#~ msgstr "បានមិនអើពើពាក្យគន្លឹះ ។" - -#~ msgid "No keywords." -#~ msgstr "គ្មានពាក្យគន្លឹះ ។" - -#~ msgid "User has no directory information." -#~ msgstr "អ្នកប្រើមិនមានព័ត៌មានថតទៀតទេ ។" - -#~ msgid "Country not supported." -#~ msgstr "មិនបានគាំទ្រប្រទេសទេ ។" - -#~ msgid "Failure unknown: %s." -#~ msgstr "មិនស្គាល់ភាពបរាជ័យ ៖ %s ។" - -#~ msgid "Incorrect username or password." -#~ msgstr "ឈ្មោះអ្នកប្រើ ឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ ។" - -#~ msgid "The service is temporarily unavailable." -#~ msgstr "សេវាមិនអាចប្រើបានជាបណ្ដោះអាសន្ន ។" - -#~ msgid "Your warning level is currently too high to log in." -#~ msgstr "កម្រិតព្រមានរបស់អ្នកបច្ចុប្បន្នខ្ពស់ពេកត្រូវចូល ។" - -#~ msgid "" -#~ "You have been connecting and disconnecting too frequently. Wait ten " -#~ "minutes and try again. If you continue to try, you will need to wait " -#~ "even longer." -#~ msgstr "" -#~ "អ្នកបានតភ្ជាប់ និងផ្ដាច់ញឹកញាប់ពេក ។ រង់ចាំរយៈពេល ១០ នាទី ហើយព្យាយាមម្ដងទៀត ។ ប្រសិនបើ" -#~ "អ្នកបន្តព្យាយាម អ្នកនឹងត្រូវរង់ចាំយូរជាងនេះ ។" - -#~ msgid "An unknown signon error has occurred: %s." -#~ msgstr "មិនស្គាល់កំហុសក្នុងការចូលបានកើតឡើង ៖ %s ។" - -#~ msgid "An unknown error, %d, has occurred. Info: %s" -#~ msgstr "មិនស្គាល់កំហុស %d ដែលបានកើតឡើង ។ ព័ត៌មាន ៖ %s" - -#~ msgid "Invalid Groupname" -#~ msgstr "ឈ្មោះក្រុមមិនត្រឹមត្រូវ" - -#~ msgid "Connection Closed" -#~ msgstr "បានបិទការតភ្ជាប់" - -#~ msgid "Waiting for reply..." -#~ msgstr "កំពុងរង់ចាំការឆ្លើយតប..." - -#~ msgid "TOC has come back from its pause. You may now send messages again." -#~ msgstr "TOC បានត្រឡប់ពីការផ្អាករបស់វា ។ ឥឡូវអ្នកផ្ញើសារម្ដងទៀត ។" - -#~ msgid "Password Change Successful" -#~ msgstr "ផ្លាស់ប្ដូរពាក្យសម្ងាត់ដោយជោគជ័យ" - -#~ msgid "Get Dir Info" -#~ msgstr "យកព័ត៌មាន Dir" - -#~ msgid "Set Dir Info" -#~ msgstr "កំណត់ព័ត៌មាន Dir" - -#~ msgid "Could not open %s for writing!" -#~ msgstr "មិនអាចបើក %s ដើម្បីសរសេរបានទេ !" - -#~ msgid "File transfer failed; other side probably canceled." -#~ msgstr "បានបរាជ័យក្នុងការផ្ទេរឯកសារ ផ្នែកផ្សេងប្រហែលជាបានបោះបង់ហើយ " - -#~ msgid "Could not connect for transfer." -#~ msgstr "មិនអាចតភ្ជាប់ដើម្បីផ្ទេរបានទេ ។" - -#~ msgid "Could not write file header. The file will not be transferred." -#~ msgstr "មិនអាចសរសេរបឋមកថាឯកសារបានទេ ។ ឯកសារនឹងមិនត្រូវបានផ្ទេរទេ ។" - -#~ msgid "Save As..." -#~ msgstr "រក្សាទុកជា..." - -#~ msgid "%s requests %s to accept %d file: %s (%.2f %s)%s%s" -#~ msgid_plural "%s requests %s to accept %d files: %s (%.2f %s)%s%s" -#~ msgstr[0] "%s ស្នើ %s ឲ្យទទួលឯកសារ %d ៖ %s (%.2f %s)%s%s" - -#~ msgid "%s requests you to send them a file" -#~ msgstr "%s ស្នើអ្នកឲ្យផ្ញើឯកសារឲ្យពួកវា" - -#~ msgid "TOC Protocol Plugin" -#~ msgstr "កម្មវិធីពិធីការ TOC" - -#~ msgid "%s Options" -#~ msgstr "ជម្រើស %s" - -#~ msgid "Proxy Options" -#~ msgstr "ជម្រើសប្រូកស៊ី" - -#~ msgid "By log size" -#~ msgstr "តាមទំហំកំណត់ហេតុ" - -#~ msgid "_Open Link in Browser" -#~ msgstr "បើកតំណនៅក្នុងកម្មវិធីរុករក" - -#~ msgid "ST_UN server:" -#~ msgstr "ម៉ាស៊ីនបម្រើ STUN ៖" - -#~ msgid "Smiley _Image" -#~ msgstr "រូបភាពសញ្ញាអារម្មណ៍" - -#~ msgid "Smiley S_hortcut" -#~ msgstr "ផ្លូវកាត់សញ្ញាអារម្មណ៍"
--- a/po/nl.po Tue Jul 21 04:31:27 2009 +0000 +++ b/po/nl.po Tue Jul 21 06:16:43 2009 +0000 @@ -10874,7 +10874,7 @@ #, fuzzy msgid "_Remain in chat after window is closed." -msgstr "Verberg c_hat wanneer de verbinding verbroken wordt." +msgstr "Verberg c_hat wanneer het venster gesloten is." msgid "Please enter the name of the group to be added." msgstr "Geef de naam van de toe te voegen groep."
--- a/po/pt_BR.po Tue Jul 21 04:31:27 2009 +0000 +++ b/po/pt_BR.po Tue Jul 21 06:16:43 2009 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Pidgin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-06 15:04-0700\n" +"POT-Creation-Date: 2009-07-20 11:50-0700\n" "PO-Revision-Date: 2009-02-24 22:11-0300\n" "Last-Translator: Rodrigo Luiz Marques Flores <mail@rodrigoflores.org>\n" "Language-Team: Rodrigo Luiz Marques Flores <mail@rodrigoflores.org>\n" @@ -52,9 +52,9 @@ "investigate and complete the migration by hand. Please report this error at " "http://developer.pidgin.im" msgstr "" -"%s encontrou erros ao migrar suas configurações de %s para %s. Favor " -"investigar e completar a migração manualmente. Pedimos também que você " -"relate este erro em http://developer.pidgin.im" +"%s encontrou erros ao migrar suas configurações de %s para %s. Por favor, " +"investigue e complete a migração manualmente. Pedimos também que você relate " +"este erro em http://developer.pidgin.im" msgid "Error" msgstr "Erro" @@ -114,11 +114,11 @@ msgstr "Você tem certeza de que deseja remover %s?" msgid "Delete Account" -msgstr "Remover conta" +msgstr "Excluir conta" #. Delete button msgid "Delete" -msgstr "Remover" +msgstr "Excluir" msgid "Accounts" msgstr "Contas" @@ -196,7 +196,7 @@ msgstr "Nome do usuário" msgid "Alias (optional)" -msgstr "Apelidar contato (opcional)" +msgstr "Apelidar (opcional)" msgid "Add in group" msgstr "Adicionar no grupo" @@ -208,7 +208,7 @@ msgstr "Adicionar amigo" msgid "Please enter buddy information." -msgstr "Favor digitar as informações do amigo." +msgstr "Por favor digite as informações do amigo." msgid "Chats" msgstr "Bate-papos" @@ -247,10 +247,10 @@ msgstr "Digite o nome do grupo" msgid "Edit Chat" -msgstr "Modificar bate-papo" +msgstr "Editar bate-papo" msgid "Please Update the necessary fields." -msgstr "Favor atualizar os campos necessários." +msgstr "Por favor atualize os campos necessários." msgid "Edit" msgstr "Editar" @@ -486,7 +486,7 @@ #, c-format msgid "Certificate for %s" -msgstr "Certificado de %s" +msgstr "Certificado para %s" #, c-format msgid "" @@ -505,7 +505,7 @@ #, c-format msgid "Really delete certificate for %s?" -msgstr "Tem certeza de que deseja deletar o certificado de %s?" +msgstr "Tem certeza de que deseja excluir o certificado de %s?" msgid "Confirm certificate delete" msgstr "Confirmação de remoção de certificado" @@ -868,12 +868,11 @@ msgid "System Log" msgstr "Histórico do sistema" -#, fuzzy msgid "Calling ... " -msgstr "Calculando..." +msgstr "Ligando ... " msgid "Hangup" -msgstr "" +msgstr "Colocar no gancho" #. Number of actions msgid "Accept" @@ -883,28 +882,28 @@ msgstr "Rejeitar" msgid "Call in progress." -msgstr "" +msgstr "Ligação em progresso." msgid "The call has been terminated." -msgstr "" +msgstr "A ligação foi finalizada." #, c-format msgid "%s wishes to start an audio session with you." -msgstr "" +msgstr "%s quer iniciar uma sessão de aúdio com você." #, c-format msgid "%s is trying to start an unsupported media session type with you." msgstr "" - -#, fuzzy +"%s está tentando iniciar um tipo de sessão de mídia sem suporte com você." + msgid "You have rejected the call." -msgstr "Você saiu do canal%s%s" +msgstr "Você rejeitou a ligação." msgid "call: Make an audio call." -msgstr "" +msgstr "ligação: Fazer uma ligação de aúdio." msgid "Emails" -msgstr "Emails" +msgstr "E-mails" msgid "You have mail!" msgstr "Você tem email!" @@ -1070,7 +1069,7 @@ msgstr "Abrir uma janela de MI" msgid "Pop up a notification" -msgstr "Exibir notificação popup" +msgstr "Exibir pop-up de notificação" msgid "Send a message" msgstr "Enviar uma mensagem" @@ -1082,7 +1081,7 @@ msgstr "Tocar um som" msgid "Pounce only when my status is not Available" -msgstr "Executar apenas quando meu status não for Disponível" +msgstr "Receber ação apenas quando meu status não for Disponível" msgid "Recurring" msgstr "Recorrente" @@ -1144,7 +1143,7 @@ msgstr "%s te enviou uma mensagem. (%s)" msgid "Unknown pounce event. Please report this!" -msgstr "Evento de ação desconhecido. Por favor reporte isso!" +msgstr "Evento de ação desconhecido. Por favor nos avise disso!" msgid "Based on keyboard use" msgstr "A partir do uso do teclado" @@ -1286,7 +1285,7 @@ msgstr "Método para reproduzir o som" msgid "Method: " -msgstr "Método:" +msgstr "Método: " #, c-format msgid "" @@ -1339,7 +1338,7 @@ msgstr "Você tem certeza de que deseja remover \"%s\"" msgid "Delete Status" -msgstr "Remover status" +msgstr "Excluir status" msgid "Saved Statuses" msgstr "Status salvos" @@ -1359,7 +1358,7 @@ #. not independent #. Attributes - each status can have a message. msgid "Message" -msgstr "Mensagem:" +msgstr "Mensagem" #. Use msgid "Use" @@ -1372,7 +1371,7 @@ msgstr "Favor digitar um título não-vazio para o status." msgid "Duplicate title" -msgstr "Título duplicado duplicada" +msgstr "Título duplicado" msgid "Please enter a different title for the status." msgstr "Favor digitar um título diferente para o status." @@ -1499,7 +1498,7 @@ "mensagens recentes para os mesmos tipos de conversa." msgid "GntHistory" -msgstr "GntMensagens recentes" +msgstr "GntHistórico" msgid "Shows recently logged conversations in new conversations." msgstr "Mostra conversas gravadas recentemente em novas conversas." @@ -1536,13 +1535,13 @@ msgstr "Subgrupo aninhado" msgid "Nested Grouping (experimental)" -msgstr "Aninhas Grupos (experimental)" +msgstr "Aninhar Grupos (experimental)" msgid "Provides alternate buddylist grouping options." msgstr "Fornece opções alternativas de agrupamento da lista de amigos." msgid "Lastlog" -msgstr "Última menção" +msgstr "Último registro" #. Translator Note: The "backlog" is the conversation buffer/history. msgid "lastlog: Searches for a substring in the backlog." @@ -1552,29 +1551,32 @@ msgstr "GntLastLog" msgid "Lastlog plugin." -msgstr "Plug-in de busca de mensagens" +msgstr "Plug-in Lastlog" #, c-format msgid "" "\n" "Fetching TinyURL..." msgstr "" +"\n" +"Obtendo TinyURL..." msgid "Only create TinyURL for urls of this length or greater" -msgstr "" +msgstr "Somente criar TinyURL para endereços deste tamanho ou maiores" msgid "TinyURL (or other) address prefix" -msgstr "" - -#, fuzzy +msgstr "TinyURL (ou outro) prefixo de endereço" + msgid "TinyURL" -msgstr "URL da música" +msgstr "TinyURL" msgid "TinyURL plugin" -msgstr "" +msgstr "Plug-in do TinyURL" msgid "When receiving a message with URL(s), TinyURL for easier copying" msgstr "" +"Quando receber uma mensagem com endereço(s), usar o TinyURL para copiá-los " +"mais fácil" msgid "accounts" msgstr "contas" @@ -1619,7 +1621,7 @@ msgstr "Mudar senha para %s" msgid "Please enter your current password and your new password." -msgstr "Favor digitar sua senha atual e sua nova senha." +msgstr "Por favor, digite sua senha atual e sua nova senha." #, c-format msgid "Change user information for %s" @@ -1643,7 +1645,7 @@ #. Make messages #, c-format msgid "%s has presented the following certificate for just-this-once use:" -msgstr "%s enviou este certificado de uso único:" +msgstr "%s apresentou o seguinte certificado para o uso apenas-esta-vez:" #, c-format msgid "" @@ -1709,7 +1711,7 @@ "You have no database of root certificates, so this certificate cannot be " "validated." msgstr "" -"você não tem um banco de dados de certificados raiz, logo este certificado " +"Você não tem um banco de dados de certificados raiz, logo este certificado " "não pode ser validado." #. vrq will be completed by user_auth @@ -1779,7 +1781,6 @@ msgstr "+++ %s desconectou" #. Unknown error -#. Unknown error! msgid "Unknown error" msgstr "Erro desconhecido" @@ -1826,9 +1827,8 @@ msgid "%s left the room (%s)." msgstr "%s saiu da sala (%s)." -#, fuzzy msgid "Invite to chat" -msgstr "Convidar para uma conferência" +msgstr "Convidar para um bate-papo" #. Put our happy label in it. msgid "" @@ -1906,7 +1906,7 @@ "Error writing %s: \n" "%s.\n" msgstr "" -"Erro ao gravar em %s: \n" +"Erro escrevendo em %s: \n" "%s.\n" #, c-format @@ -1969,8 +1969,12 @@ msgstr "Iniciar transferência de %s a partir de %s" #, c-format +msgid "Transfer of file <A HREF=\"file://%s\">%s</A> complete" +msgstr "Transferência do arquivo <A HREF=\"file://%s\">%s</A> completa" + +#, c-format msgid "Transfer of file %s complete" -msgstr "Transferência de %s completa" +msgstr "Transferência do arquivo %s completa" msgid "File transfer complete" msgstr "Transferência de arquivo completa" @@ -2185,9 +2189,8 @@ msgid "(%s) %s <AUTO-REPLY>: %s\n" msgstr "(%s) %s <AUTO-RESPOSTA>: %s\n" -#, fuzzy msgid "Error creating conference." -msgstr "Erro ao criar a conexão" +msgstr "Erro ao criar a conferência" #, c-format msgid "You are using %s, but this plugin requires %s." @@ -2215,7 +2218,7 @@ "The required plugin %s was not found. Please install this plugin and try " "again." msgstr "" -"O plug-in requerido %s não foi encontrado. Por favor instale esse plug-in e " +"O plug-in necessário %s não foi encontrado. Por favor instale esse plug-in e " "tente novamente." msgid "Unable to load the plugin" @@ -2223,7 +2226,7 @@ #, c-format msgid "The required plugin %s was unable to load." -msgstr "O plug-in requerido %s não pôde ser carregado." +msgstr "O plug-in necessário %s não pôde ser carregado." msgid "Unable to load your plugin." msgstr "Não foi possível carregar seu plug-in." @@ -2279,7 +2282,7 @@ "Path to save the files in\n" "(Please provide the full path)" msgstr "" -"Caminho para salvar os arquivos\n" +"Caminho para salvar os arquivos em\n" "(Favor digitar o caminho completo)" msgid "Automatically reject from users not in buddy list" @@ -2377,7 +2380,7 @@ msgstr "Permite controlar ações inserindo comandos em um arquivo." msgid "Minutes" -msgstr "minutos" +msgstr "Minutos" #. This is a cultural reference. Dy'er Mak'er is a song by Led Zeppelin. #. If that doesn't translate well into your language, drop the 's before translating. @@ -2599,7 +2602,6 @@ "históricos." #. * description -#, fuzzy msgid "" "When viewing logs, this plugin will include logs from other IM clients. " "Currently, this includes Adium, MSN Messenger, aMSN, and Trillian.\n" @@ -2657,7 +2659,6 @@ msgid "Save messages sent to an offline user as pounce." msgstr "Salva mensagens enviadas para um usuário desconectado numa ação." -#, fuzzy msgid "" "The rest of the messages will be saved as pounces. You can edit/delete the " "pounce from the `Buddy Pounce' dialog." @@ -2693,9 +2694,8 @@ msgid "Do not ask. Always save in pounce." msgstr "Não perguntar. Sempre salvar como ações." -#, fuzzy msgid "One Time Password" -msgstr "Digite a senha" +msgstr "Senha uma vez" #. *< type #. *< ui_requirement @@ -2704,13 +2704,13 @@ #. *< priority #. *< id msgid "One Time Password Support" -msgstr "" +msgstr "Suporte de senha uma vez" #. *< name #. *< version #. * summary msgid "Enforce that passwords are used only once." -msgstr "" +msgstr "Forçar que senhas são usadas somente uma vez." #. * description msgid "" @@ -2718,6 +2718,9 @@ "are only used in a single successful connection.\n" "Note: The account password must not be saved for this to work." msgstr "" +"Permite que você force, para uma conta, que as senhas não sejam salvas só " +"sejam utilizadas em uma conexão feita com sucesso.\n" +"Nota: A senha da conta não deve estar salva para isto funcionar." #. *< type #. *< ui_requirement @@ -2912,17 +2915,15 @@ "Não foi possível detectar uma instalação do ActiveTCL. Se você deseja usar " "plug-ins TCL, instale o ActiveTCL de http://www.activestate.com\n" -#, fuzzy msgid "" "Unable to find Apple's \"Bonjour for Windows\" toolkit, see http://d.pidgin." "im/BonjourWindows for more information." msgstr "" -"O Kit de Ferramentas do Apple Bonjour para Windows não foi encontrado, veja " -"o FAQ no: http://d.pidgin.im/BonjourWindows para mais informações." - -#, fuzzy +"O toolkit \"Bonjour for Windows\" não foi encontrado, vá em http://d.pidgin." +"im/BonjourWindows para mais informações." + msgid "Unable to listen for incoming IM connections" -msgstr "Não foi possível escutar por conexões de mensagens instantâneas\n" +msgstr "Não foi possível escutar por conexões de mensagens instantâneas" msgid "" "Unable to establish connection with the local mDNS server. Is it running?" @@ -2931,7 +2932,7 @@ "rodando?" msgid "First name" -msgstr "Nome" +msgstr "Primeiro nome" msgid "Last name" msgstr "Sobrenome" @@ -2975,21 +2976,17 @@ msgid "Unable to send the message, the conversation couldn't be started." msgstr "Não foi possível enviar mensagem: a conversa não pôde ser iniciada." -#, fuzzy, c-format +#, c-format msgid "Unable to create socket: %s" -msgstr "" -"Não foi possível criar socket\n" -"%s" - -#, fuzzy, c-format +msgstr "Não foi possível criar socket: %s" + +#, c-format msgid "Unable to bind socket to port: %s" -msgstr "Não foi possível vincular socket à porta" - -#, fuzzy, c-format +msgstr "Não foi possível vincular socket à porta: %s" + +#, c-format msgid "Unable to listen on socket: %s" -msgstr "" -"Não foi possível criar socket\n" -"%s" +msgstr "Não foi possível escutar no socket: %s" msgid "Error communicating with local mDNSResponder." msgstr "Erro comunicando com o mDNSResponder local." @@ -3017,7 +3014,7 @@ msgstr "Sua lista de amigos está vazia, nada foi escrito no arquivo." msgid "Buddylist saved successfully!" -msgstr "Lista de amigos salva com sucesso" +msgstr "Lista de amigos salva com sucesso!" #, c-format msgid "Couldn't write buddy list for %s to %s" @@ -3038,17 +3035,15 @@ msgid "Load buddylist from file..." msgstr "Carregar lista de amigos do arquivo.." -#, fuzzy msgid "You must fill in all registration fields" -msgstr "Preencha os campos de registro." - -#, fuzzy +msgstr "Você deve preencher todos os campos de registro" + msgid "Passwords do not match" msgstr "As senhas não conferem." -#, fuzzy msgid "Unable to register new account. An unknown error occurred." -msgstr "Não foi possível registrar uma nova conta. Ocorreu um erro.\n" +msgstr "" +"Não foi possível registrar uma nova conta. Ocorreu um erro desconhecido." msgid "New Gadu-Gadu Account Registered" msgstr "Nova conta do Gadu-Gadu registrada" @@ -3063,9 +3058,8 @@ msgstr "Senha (novamente)" msgid "Enter captcha text" -msgstr "" - -#, fuzzy +msgstr "Digite o texto do captcha" + msgid "Captcha" msgstr "Imagem do captcha" @@ -3100,7 +3094,7 @@ msgstr "Encontrar amigos" msgid "Please, enter your search criteria below" -msgstr "Favor digitar seu critério de busca abaixo" +msgstr "Por favor, digite seu critério de busca abaixo" msgid "Fill in the fields." msgstr "Preencha os campos." @@ -3112,7 +3106,7 @@ msgstr "Não foi possível alterar a senha. Ocorreu um erro.\n" msgid "Change password for the Gadu-Gadu account" -msgstr "Mudar senha da conta do Gadu-Gadu" +msgstr "Mudar a senha da conta do Gadu-Gadu" msgid "Password was changed successfully!" msgstr "Senha alterada com sucesso!" @@ -3206,9 +3200,9 @@ msgid "Chat _name:" msgstr "_Nome do bate-papo:" -#, fuzzy, c-format +#, c-format msgid "Unable to resolve hostname '%s': %s" -msgstr "Não foi possível conectar ao servidor." +msgstr "Não foi possível resolver nome do computador '%s': %s" #. 1. connect to server #. connect to the server @@ -3221,9 +3215,8 @@ msgid "This chat name is already in use" msgstr "Este nome de bate-papo já está sendo utilizado" -#, fuzzy msgid "Not connected to the server" -msgstr "Não conectado ao servidor." +msgstr "Não conectado ao servidor" msgid "Find buddies..." msgstr "Encontrar amigos..." @@ -3238,7 +3231,7 @@ msgstr "Transferir lista de amigos do servidor" msgid "Delete buddylist from Server" -msgstr "Remover lista de amigos do servidor" +msgstr "Excluir lista de amigos do servidor" msgid "Save buddylist to file..." msgstr "Salvar lista de amigos para um arquivo..." @@ -3264,9 +3257,8 @@ msgid "Gadu-Gadu User" msgstr "Usuário do Gadu-Gadu" -#, fuzzy msgid "GG server" -msgstr "Coletando servidor" +msgstr "Servidor do GG" #, c-format msgid "Unknown command: %s" @@ -3282,7 +3274,6 @@ msgid "File Transfer Failed" msgstr "Transferência de arquivo falhou" -#, fuzzy msgid "Unable to open a listening port." msgstr "Não foi possível abrir uma porta para escuta." @@ -3306,11 +3297,9 @@ #. #. TODO: what to do here - do we really have to disconnect? #. TODO: do we really want to disconnect on a failure to write? -#, fuzzy, c-format +#, c-format msgid "Lost connection with server: %s" -msgstr "" -"A conexão com o servidor foi perdida: \n" -"%s" +msgstr "A conexão com o servidor foi perdida: %s" msgid "View MOTD" msgstr "Ver mensagem do dia (MOTD)" @@ -3321,9 +3310,8 @@ msgid "_Password:" msgstr "_Senha:" -#, fuzzy msgid "IRC nick and server may not contain whitespace" -msgstr "Apelidos do IRC não podem conter espaços" +msgstr "Nome des servidor e Apelidos do IRC não podem conter espaços" msgid "SSL support unavailable" msgstr "Suporte a SSL indisponível" @@ -3332,13 +3320,13 @@ msgstr "Não foi possível conectar" #. this is a regular connect, error out -#, fuzzy, c-format +#, c-format msgid "Unable to connect: %s" -msgstr "Não foi possível conectar a %s" - -#, fuzzy, c-format +msgstr "Não foi possível conectar: %s" + +#, c-format msgid "Server closed the connection" -msgstr "O servidor encerrou a conexão." +msgstr "O servidor encerrou a conexão" msgid "Users" msgstr "Usuários" @@ -3522,13 +3510,12 @@ #. We only want to do the following dance if the connection #. has not been successfully completed. If it has, just #. notify the user that their /nick command didn't go. -#, fuzzy, c-format +#, c-format msgid "The nickname \"%s\" is already being used." -msgstr "Este nome de bate-papo já está sendo utilizado" - -#, fuzzy +msgstr "Este apelido \"%s\" já está sendo utilizado" + msgid "Nickname in use" -msgstr "Apelido" +msgstr "Apelido em uso" msgid "Cannot change nick" msgstr "Não foi possível mudar apelido" @@ -3769,15 +3756,13 @@ msgid "execute" msgstr "execute" -#, fuzzy msgid "Server requires TLS/SSL, but no TLS/SSL support was found." msgstr "" -"O servidor requer TLS/SSL para conexão. Nenhum suporte a TLS/SSL foi " -"encontrado." - -#, fuzzy +"O servidor requer TLS/SSL para conexão mas nenhum suporte a TLS/SSL " +"foiencontrado." + msgid "You require encryption, but no TLS/SSL support was found." -msgstr "Você requer TLS/SSL, mas nenhum suporte a TLS/SSL foi encontrado. " +msgstr "Você requer criptografia, mas nenhum suporte a TLS/SSL foi encontrado." msgid "Server requires plaintext authentication over an unencrypted stream" msgstr "" @@ -3794,11 +3779,9 @@ msgid "Plaintext Authentication" msgstr "Autenticação via texto puro" -#, fuzzy msgid "SASL authentication failed" -msgstr "Autenticação mal sucedida" - -#, fuzzy +msgstr "Autenticação SASL mal sucedida" + msgid "Invalid response from server" msgstr "O servidor retornou uma resposta inválida." @@ -3811,36 +3794,28 @@ msgid "Invalid challenge from server" msgstr "O servidor retornou uma identificação inválida" -#, fuzzy, c-format +#, c-format msgid "SASL error: %s" -msgstr "Erro de SASL" +msgstr "Erro de SASL: %s" msgid "The BOSH connection manager terminated your session." -msgstr "" - -#, fuzzy +msgstr "O gerenciador de conexão BOSH terminou sua sessão." + msgid "No session ID given" -msgstr "Nenhum motivo foi dado." - -#, fuzzy +msgstr "Nenhum ID da sessão foi dado." + msgid "Unsupported version of BOSH protocol" -msgstr "Versão não suportada" - -#, fuzzy +msgstr "Versão do protocolo BOSH não suportada" + msgid "Unable to establish a connection with the server" -msgstr "" -"Não foi possível estabelecer conexão com o servidor:\n" -"%s" - -#, fuzzy, c-format +msgstr "Não foi possível estabelecer conexão com o servidor:" + +#, c-format msgid "Unable to establish a connection with the server: %s" -msgstr "" -"Não foi possível estabelecer conexão com o servidor:\n" -"%s" - -#, fuzzy +msgstr "Não foi possível estabelecer conexão com o servidor: %s" + msgid "Unable to establish SSL connection" -msgstr "Não foi possível inicializar conexão" +msgstr "Não foi possível estabelecer uma conexão SSL" msgid "Full Name" msgstr "Nome completo" @@ -3908,9 +3883,8 @@ msgid "Operating System" msgstr "Sistema operacional" -#, fuzzy msgid "Local Time" -msgstr "Arquivo local:" +msgstr "Hora local" msgid "Priority" msgstr "Prioridade" @@ -3920,11 +3894,10 @@ #, c-format msgid "%s ago" -msgstr "" - -#, fuzzy +msgstr "%s atrás" + msgid "Logged Off" -msgstr "Conectado" +msgstr "Desconectado" msgid "Middle Name" msgstr "Nome do meio" @@ -3952,7 +3925,7 @@ msgstr "Cancelar notificação de presença" msgid "(Re-)Request authorization" -msgstr "(Re-)requisitar autorização" +msgstr "(Re-)Pedir autorização" #. if(NOT ME) #. shouldn't this just happen automatically when the buddy is @@ -4094,19 +4067,15 @@ msgid "Find Rooms" msgstr "Encontrar salas" -#, fuzzy msgid "Affiliations:" -msgstr "Apelido:" - -#, fuzzy +msgstr "Afiliações:" + msgid "No users found" -msgstr "Nenhum usuário compatível encontrado" - -#, fuzzy +msgstr "Nenhum usuário encontrado" + msgid "Roles:" -msgstr "Função" - -#, fuzzy +msgstr "Funções:" + msgid "Ping timed out" msgstr "Tempo limite de ping excedido" @@ -4114,6 +4083,8 @@ "Unable to find alternative XMPP connection methods after failing to connect " "directly." msgstr "" +"Não foi possível encontrar métodos de conexão do XMPP depois de não " +"conseguir conectar diretamente." msgid "Invalid XMPP ID" msgstr "ID do XMPP inválido" @@ -4121,9 +4092,8 @@ msgid "Invalid XMPP ID. Domain must be set." msgstr "ID do XMPP inválido. O domínio precisa ser especificado." -#, fuzzy msgid "Malformed BOSH URL" -msgstr "Não foi possível conectar ao servidor." +msgstr "URL BOSH inválida." #, c-format msgid "Registration of %s@%s successful" @@ -4193,10 +4163,6 @@ msgid "Change Registration" msgstr "Mudar registro" -#, fuzzy -msgid "Malformed BOSH Connect Server" -msgstr "Não foi possível conectar ao servidor." - msgid "Error unregistering account" msgstr "Erro ao desregistrar conta" @@ -4338,13 +4304,13 @@ msgstr "Não permitido" msgid "Payment Required" -msgstr "Pagamento requerido" +msgstr "Pagamento necessário" msgid "Recipient Unavailable" msgstr "Destinatário indisponível" msgid "Registration Required" -msgstr "Registro requerido" +msgstr "Registro necessário" msgid "Remote Server Not Found" msgstr "Servidor remoto não encontrado" @@ -4359,7 +4325,7 @@ msgstr "Serviço indisponível" msgid "Subscription Required" -msgstr "Inscrição requerida" +msgstr "Inscrição necessária" msgid "Unexpected Request" msgstr "Requisição inesperada" @@ -4476,29 +4442,29 @@ #, c-format msgid "Unable to kick user %s" -msgstr "Não foi possível convidar usuário (%s)." +msgstr "Não foi possível expulsar usuário (%s)." #, c-format msgid "Unable to ping user %s" msgstr "Não foi possível verificar presença de usuário %s" -#, fuzzy, c-format +#, c-format msgid "Unable to buzz, because there is nothing known about %s." -msgstr "" -"Não foi possível chamar a atenção de %s, pois nada é conhecido sobre ele(a)." - -#, fuzzy, c-format +msgstr "Não foi possível chamar a atenção, pois nada é conhecido sobre %s." + +#, c-format msgid "Unable to buzz, because %s might be offline." msgstr "" "Não foi possível chamar a atenção de %s, pois este(a) pode estar " "desconectado." -#, fuzzy, c-format +#, c-format msgid "" "Unable to buzz, because %s does not support it or does not wish to receive " "buzzes now." msgstr "" -"Não foi possível chamar a atenção de %s, pois este não suporta tal recurso." +"Não foi possível chamar a atenção de %s, pois este não suporta tal recurso " +"ou não deseja receber chamados de atenção agora." #, c-format msgid "Buzzing %s..." @@ -4513,39 +4479,36 @@ msgid "%s has buzzed you!" msgstr "%s chamou sua atenção!" -#, fuzzy, c-format +#, c-format msgid "Unable to initiate media with %s: invalid JID" -msgstr "Não foi possível enviar o arquivo para %s, ID do Jabber inválido" - -#, fuzzy, c-format +msgstr "Não foi possível iniciar mídia com %s: ID do Jabber inválido" + +#, c-format msgid "Unable to initiate media with %s: user is not online" -msgstr "" -"Não foi possível enviar arquivo para %s, pois o usuário não está conectado" - -#, fuzzy, c-format +msgstr "Não foi possível iniciar mídia com %s: o usuário não está conectado" + +#, c-format msgid "Unable to initiate media with %s: not subscribed to user presence" msgstr "" -"Não foi possível enviar arquivo para %s, pois você não está recebendo " -"informações de presença deste usuário" - -#, fuzzy +"Não foi possível iniciar mídia com %s: você não está recebendo informações " +"de presença deste usuário" + msgid "Media Initiation Failed" -msgstr "Registro falhou" - -#, fuzzy, c-format +msgstr "Não foi possível fazer a Inicialização de mídia" + +#, c-format msgid "" "Please select the resource of %s with which you would like to start a media " "session." msgstr "" -"Favor selecionar o recurso de %s para o qual você gostaria de mandar um " -"arquivo" +"Favor selecionar o recurso de %s para o qual você gostaria iniciar uma " +"sessão de mídia." msgid "Select a Resource" msgstr "Selecione um recurso" -#, fuzzy msgid "Initiate Media" -msgstr "Iniciar _bate-papo" +msgstr "Iniciar Mídia" msgid "config: Configure a chat room." msgstr "config: Configura uma sala de bate-papo." @@ -4565,21 +4528,19 @@ msgid "ban <user> [reason]: Ban a user from the room." msgstr "ban <usuário> [sala]: Bane o usuário da sala." -#, fuzzy msgid "" "affiliate <owner|admin|member|outcast|none> [nick1] [nick2] ...: Get " "the users with an affiliation or set users' affiliation with the room." msgstr "" -"affiliate <usuário> <owner|admin|member|outcast|none>: define a " -"filiação do usuário com a sala." - -#, fuzzy +"affiliate <owner|admin|member|outcast|none>: [apelido1] " +"[apelido2] ...: recebe ou define a filiação do usuário com a sala." + msgid "" "role <moderator|participant|visitor|none> [nick1] [nick2] ...: Get the " "users with an role or set users' role with the room." msgstr "" -"role <usuário> <moderator|participant|visitor|none>: Define o " -"cargo do usuário na sala." +"role <moderator|participant|visitor|none>: recebe ou define o cargo do " +"usuário na sala." msgid "invite <user> [message]: Invite a user to the room." msgstr "invite <usuário> [mensagem]: Convida o usuário para a sala." @@ -4643,7 +4604,7 @@ msgstr "Proxy de transferência de arquivo" msgid "BOSH URL" -msgstr "" +msgstr "URL BOSH" #. this should probably be part of global smiley theme settings later on, #. shared with MSN @@ -4707,32 +4668,28 @@ msgid "_Accept Defaults" msgstr "_Aceitar padrões" -#, fuzzy msgid "No reason" -msgstr "Nenhum motivo foi dado." - -#, fuzzy, c-format +msgstr "Sem razão" + +#, c-format msgid "You have been kicked: (%s)" -msgstr "Você foi expulso por %s: (%s)" - -#, fuzzy, c-format +msgstr "Você foi expulso: (%s)" + +#, c-format msgid "Kicked (%s)" -msgstr "Chutado por %s (%s)" - -#, fuzzy +msgstr "Expulso (%s)" + msgid "An error occurred on the in-band bytestream transfer\n" -msgstr "Ocorreu um erro na abertura do arquivo." - -#, fuzzy +msgstr "Um erro aconteceu na transferência do stream in-band\n" + msgid "Transfer was closed." -msgstr "Transferência de arquivo falhou" - -#, fuzzy +msgstr "A Transferência de arquivo foi fechada." + msgid "Failed to open the file" -msgstr "Falha ao abrir arquivo '%s': %s" +msgstr "Falha ao abrir arquivo" msgid "Failed to open in-band bytestream" -msgstr "" +msgstr "Falha ao abrir o fluxo de bytes in-band" #, c-format msgid "Unable to send file to %s, user does not support file transfers" @@ -5060,10 +5017,29 @@ msgid "Non-IM Contacts" msgstr "Contatos que não são do mensageiro" -#, fuzzy, c-format +#, c-format +msgid "%s sent a wink. <a href='msn-wink://%s'>Click here to play it</a>" +msgstr "" +"%s enviou um wink. <a href='msn-wink://%s'>Clique aqui para reproduzí-lo</a>" + +#, c-format +msgid "%s sent a wink, but it could not be saved" +msgstr "%s envou um wink, mas o wink não pôde ser salvo" + +#, c-format +msgid "%s sent a voice clip. <a href='audio://%s'>Click here to play it</a>" +msgstr "" +"%s envou um clipe de voz. <a href='audio://%s'>Clique aqui para reproduzí-" +"lo</a>" + +#, c-format +msgid "%s sent a voice clip, but it could not be saved" +msgstr "%s te enviou um clipe de voz, mas este não pôde ser salvo" + +#, c-format msgid "%s sent you a voice chat invite, which is not yet supported." msgstr "" -"%s te enviou um convite para ver webcam, que é um recurso não suportado." +"%s te enviou um convite para bate-pao de voz, que é um recurso sem suporte." msgid "Nudge" msgstr "Chamar a atenção" @@ -5219,6 +5195,29 @@ "O suporte ao SSL é necessário para o MSN. Por favor instale uma biblioteca " "SSL suportada." +#, c-format +msgid "" +"Unable to add the buddy %s because the username is invalid. Usernames must " +"be a valid email address." +msgstr "" +"Não foi possível adicionar o amigo %s porque o nome de usuário é inválido. " +"Nomes de usuário devem ser um endereço de e-mail válido." + +msgid "Unable to Add" +msgstr "Não foi possível adicionar" + +msgid "Authorization Request Message:" +msgstr "Mensagem para pedido de autorização:" + +msgid "Please authorize me!" +msgstr "Por favor me autorize!" + +#. * +#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons. +#. +msgid "_OK" +msgstr "_OK" + msgid "Error retrieving profile" msgstr "Erro ao obter perfil" @@ -5411,13 +5410,14 @@ msgid "%s just sent you a Nudge!" msgstr "%s chamou sua atenção!" -#, fuzzy, c-format +#, c-format msgid "Unknown error (%d): %s" -msgstr "Erro desconhecido (%d)" +msgstr "Erro desconhecido (%d): %s" msgid "Unable to add user" msgstr "Não foi possível adicionar usuário" +#. Unknown error! #, c-format msgid "Unknown error (%d)" msgstr "Erro desconhecido (%d)" @@ -5489,15 +5489,12 @@ "Erro de conexão do servidor %s:\n" "%s" -#, fuzzy msgid "Our protocol is not supported by the server" -msgstr "Nosso protocolo não é suportado pelo servidor." - -#, fuzzy +msgstr "Nosso protocolo não possui suporte do servidor." + msgid "Error parsing HTTP" msgstr "Erro ao processar HTTP." -#, fuzzy msgid "You have signed on from another location" msgstr "Você conectou de outro local." @@ -5506,7 +5503,6 @@ "Os servidores do MSN estão temporariamente indisponíveis. Favor esperar e " "tentar novamente." -#, fuzzy msgid "The MSN servers are going down temporarily" msgstr "Os servidores MSN vão sair do ar temporariamente." @@ -5538,10 +5534,11 @@ msgid "Retrieving buddy list" msgstr "Recuperando lista de amigos" -#, fuzzy, c-format +#, c-format msgid "%s requests to view your webcam, but this request is not yet supported." msgstr "" -"%s te enviou um convite para ver webcam, que é um recurso não suportado." +"%s te enviou um convite para ver sua webcam, mas este recurso ainda não tem " +"suporte." #, c-format msgid "%s has sent you a webcam invite, which is not yet supported." @@ -5739,15 +5736,15 @@ msgid "Protocol error, code %d: %s" msgstr "Erro de protocolo, código %d: %s" -#, fuzzy, c-format +#, c-format msgid "" "%s Your password is %zu characters, which is longer than the maximum length " "of %d. Please shorten your password at http://profileedit.myspace.com/index." "cfm?fuseaction=accountSettings.changePassword and try again." msgstr "" -"%s Sua senha é %d caracteres, maior que o tamanho máximo esperado de %d para " -"o MySpaceIM. Por favor, encurte sua senha no http://profileedit.myspace.com/" -"index.cfm?fuseaction=accountSettings.changePassword e tente novamente." +"%s Sua senha é %zu caracteres, o que é maior que o tamanho máximo esperado " +"de %d. Por favor, encurte sua senha no http://profileedit.myspace.com/index." +"cfm?fuseaction=accountSettings.changePassword e tente novamente." msgid "Incorrect username or password" msgstr "Nome de usuário ou senha incorreto(a)" @@ -5843,14 +5840,14 @@ msgid "Client Version" msgstr "Versão do cliente" -#, fuzzy msgid "" "An error occurred while trying to set the username. Please try again, or " "visit http://editprofile.myspace.com/index.cfm?fuseaction=profile.username " "to set your username." msgstr "" -"Favor visitar http://e<ditprofile.myspace.com/index.cfm?fuseaction=profile." -"username e escolher um nome de usuário e tentar conectar novamente." +"Um erro aconteceu enquanto tentava-se definir o nome de usuário. Por favor, " +"tente novamente ou visite http://editprofile.myspace.com/index.cfm?" +"fuseaction=profile.username para definir seu nome de usuário." msgid "MySpaceIM - Username Available" msgstr "MySpaceIM - Nome de Usuário Disponível" @@ -6109,9 +6106,9 @@ msgid "Unknown error: 0x%X" msgstr "Erro desconhecido: 0x%X" -#, fuzzy, c-format +#, c-format msgid "Unable to login: %s" -msgstr "Não foi possível fazer o login" +msgstr "Não foi possível fazer o login: %s" #, c-format msgid "Unable to send message. Could not get details for user (%s)." @@ -6248,7 +6245,6 @@ "%s parece estar desconectado e não recebeu a mensagem que você acabou de " "enviar." -#, fuzzy msgid "" "Unable to connect to server. Please enter the address of the server to which " "you wish to connect." @@ -6278,9 +6274,8 @@ msgid "Server port" msgstr "Porta do servidor" -#, fuzzy msgid "Received unexpected response from " -msgstr "O servidor retornou uma resposta HTTP inválida." +msgstr "Recebido resposta inesperada de " #. username connecting too frequently msgid "" @@ -6291,12 +6286,12 @@ "minutos e tente novamente. Se você continuar tentando, vai ter que esperar " "ainda mais." -#, fuzzy, c-format +#, c-format msgid "Error requesting " -msgstr "Erro ao solicitar token de conexão" +msgstr "Erro solicitando " msgid "AOL does not allow your screen name to authenticate here" -msgstr "" +msgstr "A AOL não permite que seu nome de tela autentique aqui" msgid "Could not join chat room" msgstr "Não foi possível entrar na sala de bate-papo" @@ -6304,9 +6299,8 @@ msgid "Invalid chat room name" msgstr "Nome de sala de bate-papo inválido" -#, fuzzy msgid "Received invalid data on connection with server" -msgstr "Dados inválidos foram recebidos na conexão com o servidor." +msgstr "Dados inválidos foram recebidos na conexão com o servidor" #. *< type #. *< ui_requirement @@ -6353,7 +6347,6 @@ msgid "Received invalid data on connection with remote user." msgstr "Dados inválidos foram recebidos na conexão com o usuário remoto." -#, fuzzy msgid "Unable to establish a connection with the remote user." msgstr "Não foi possível estabelecer conexão com o usuário remoto." @@ -6554,15 +6547,13 @@ msgid "Buddy Comment" msgstr "Comentário do amigo" -#, fuzzy, c-format +#, c-format msgid "Unable to connect to authentication server: %s" -msgstr "" -"Não foi possível conectar ao servidor de autenticação:\n" -"%s" - -#, fuzzy, c-format +msgstr "Não foi possível conectar ao servidor de autenticação: %s" + +#, c-format msgid "Unable to connect to BOS server: %s" -msgstr "Não foi possível conectar ao servidor." +msgstr "Não foi possível conectar ao servidor BOS: %s" msgid "Username sent" msgstr "Nome de usuário enviado" @@ -6574,16 +6565,15 @@ msgid "Finalizing connection" msgstr "Finalizando a conexão" -#, fuzzy, c-format +#, c-format msgid "" "Unable to sign on as %s because the username is invalid. Usernames must be " "a valid email address, or start with a letter and contain only letters, " "numbers and spaces, or contain only numbers." msgstr "" -"Impossível efetuar login: Não foi possível conectar como %s porque o nome de " -"usuário é inválido. Nomes de usuário têm que ser um endereço de email " -"válido, ou têm que começar com uma letra e conter apenas letras, números e " -"espaços, ou conter apenas números." +"Não foi possível se conectar como %s porque o nome de usuário é inválido. " +"Nomes de usuário devem ser um endereço de e-mail válido, ou começar com uma " +"letra ou somente conter letras, números e espaços, ou conter somente números." #, c-format msgid "You may be disconnected shortly. If so, check %s for updates." @@ -6603,12 +6593,10 @@ #. Unregistered username #. uid is not exist #. the username does not exist -#, fuzzy msgid "Username does not exist" -msgstr "Usuário inexistente" +msgstr "Nome de usuário inexistente" #. Suspended account -#, fuzzy msgid "Your account is currently suspended" msgstr "Atualmente, sua conta está suspensa." @@ -6616,6 +6604,7 @@ msgid "The AOL Instant Messenger service is temporarily unavailable." msgstr "O serviço AOL Instant Messenger está temporariamente indisponível." +#. client too old #, c-format msgid "The client version you are using is too old. Please upgrade at %s" msgstr "" @@ -6623,18 +6612,16 @@ "s" #. IP address connecting too frequently -#, fuzzy msgid "" "You have been connecting and disconnecting too frequently. Wait a minute and " "try again. If you continue to try, you will need to wait even longer." msgstr "" -"Você esteve conectando e desconectando com muita freqüência. Espere dez " -"minutos e tente novamente. Se você continuar tentando, vai ter que esperar " +"Você esteve conectando e desconectando com muita freqüência. Espere um " +"minuto e tente novamente. Se você continuar tentando, vai ter que esperar " "ainda mais." -#, fuzzy msgid "The SecurID key entered is invalid" -msgstr "A chave SecurID digitada é inválida." +msgstr "A chave SecurID digitada é inválida" msgid "Enter SecurID" msgstr "Digite o SecurID" @@ -6642,12 +6629,6 @@ msgid "Enter the 6 digit number from the digital display." msgstr "Digite o número de 6 dígitos do visor digital." -#. * -#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons. -#. -msgid "_OK" -msgstr "_OK" - msgid "Password sent" msgstr "Senha enviada" @@ -6659,12 +6640,6 @@ "Por favor me autorize para que eu possa adicioná-lo(a) à minha lista de " "amigos." -msgid "Authorization Request Message:" -msgstr "Mensagem para pedido de autorização:" - -msgid "Please authorize me!" -msgstr "Por favor me autorize!" - msgid "No reason given." msgstr "Nenhum motivo foi dado." @@ -6995,7 +6970,7 @@ msgid "Away message too long." msgstr "Mensagem de ausência muito extensa." -#, fuzzy, c-format +#, c-format msgid "" "Unable to add the buddy %s because the username is invalid. Usernames must " "be a valid email address, or start with a letter and contain only letters, " @@ -7005,9 +6980,6 @@ "Nomes de usuário têm que ser um email válido, começar com uma letra e conter " "apenas letras, números e espaços, ou conter apenas números." -msgid "Unable to Add" -msgstr "Não foi possível adicionar" - msgid "Unable to Retrieve Buddy List" msgstr "Não foi possível recuperar lista de amigos" @@ -7022,7 +6994,7 @@ msgid "Orphans" msgstr "Órfãos" -#, fuzzy, c-format +#, c-format msgid "" "Unable to add the buddy %s because you have too many buddies in your buddy " "list. Please remove one and try again." @@ -7033,7 +7005,7 @@ msgid "(no name)" msgstr "(sem nome)" -#, fuzzy, c-format +#, c-format msgid "Unable to add the buddy %s for an unknown reason." msgstr "Não foi possível adicionar o amigo %s por um motivo desconhecido." @@ -7197,9 +7169,8 @@ msgid "Search for Buddy by Information" msgstr "Procurar por amigos por informações" -#, fuzzy msgid "Use clientLogin" -msgstr "O usuário está desconectado" +msgstr "Usar clientLogin" msgid "" "Always use AIM/ICQ proxy server for\n" @@ -7397,30 +7368,26 @@ msgstr "Nota" #. callback -#, fuzzy msgid "Buddy Memo" -msgstr "Modificar Lembrete do Amigo" +msgstr "Lembrete do Amigo" msgid "Change his/her memo as you like" -msgstr "" - -#, fuzzy +msgstr "Altere o lembrete dele/dela como você quiser" + msgid "_Modify" -msgstr "Modificar" - -#, fuzzy +msgstr "_Modificar" + msgid "Memo Modify" -msgstr "Modificar" - -#, fuzzy +msgstr "Modificar Lembrete" + msgid "Server says:" -msgstr "Servidor ocupado" +msgstr "Servidor diz:" msgid "Your request was accepted." -msgstr "" +msgstr "Sua requisição foi aceita." msgid "Your request was rejected." -msgstr "" +msgstr "Sua requisição foi rejeitada." #, c-format msgid "%u requires verification" @@ -7734,7 +7701,7 @@ msgstr "<p><b>Testadores Escrupulosos</b>:<br>\n" msgid "and more, please let me know... thank you!))" -msgstr "" +msgstr "e mais, por favor me avise... obrigado!))" msgid "<p><i>And, all the boys in the backroom...</i><br>\n" msgstr "<p><i>E, todos os garotos nos bastidores...</i><br>\n" @@ -7810,7 +7777,6 @@ msgid "Update interval (seconds)" msgstr "Intervalo de update (segundos)" -#, fuzzy msgid "Unable to decrypt server reply" msgstr "Não foi possível decodificar a resposta do servidor" @@ -7878,9 +7844,8 @@ msgid "Requesting token" msgstr "Token de requisição" -#, fuzzy msgid "Unable to resolve hostname" -msgstr "Não foi possível conectar ao servidor." +msgstr "Não foi possível solucionar o nome do computador" msgid "Invalid server or port" msgstr "Porta ou servidor inválido" @@ -7933,7 +7898,6 @@ msgid "QQ Qun Command" msgstr "Comando QQ Qun" -#, fuzzy msgid "Unable to decrypt login reply" msgstr "Não foi possível decodificar a resposta do login" @@ -8918,7 +8882,6 @@ msgid "Disconnected by server" msgstr "Desconectado pelo servidor" -#, fuzzy msgid "Error connecting to SILC Server" msgstr "Erro ao conectar no servidor SILC" @@ -8934,7 +8897,6 @@ msgid "Performing key exchange" msgstr "Fazendo troca de chaves" -#, fuzzy msgid "Unable to load SILC key pair" msgstr "Não foi possível carregar par de chaves SILC" @@ -8942,14 +8904,9 @@ msgid "Connecting to SILC Server" msgstr "Conectando ao servidor SILC" -#, fuzzy -msgid "Unable to not load SILC key pair" -msgstr "Não foi possível carregar par de chaves SILC" - msgid "Out of memory" msgstr "Sem memória" -#, fuzzy msgid "Unable to initialize SILC protocol" msgstr "Não foi possível iniciar protocolo SILC" @@ -9251,9 +9208,8 @@ msgid "Creating SILC key pair..." msgstr "Criando par de chaves do SILC..." -#, fuzzy msgid "Unable to create SILC key pair" -msgstr "Não foi possível criar par de chaves do SILC\n" +msgstr "Não foi possível criar par de chaves do SILC" #. Hint for translators: Please check the tabulator width here and in #. the next strings (short strings: 2 tabs, longer strings 1 tab, @@ -9391,27 +9347,24 @@ msgid "Failure: Authentication failed" msgstr "Falha: Autenticação mal sucedida" -#, fuzzy msgid "Unable to initialize SILC Client connection" msgstr "Não foi possível iniciar conexão do cliente SILC" msgid "John Noname" msgstr "João sem nome" -#, fuzzy, c-format +#, c-format msgid "Unable to load SILC key pair: %s" msgstr "Não foi possível carregar par de chaves SILC: %s" msgid "Unable to create connection" msgstr "Não foi possível criar conexão." -#, fuzzy msgid "Unknown server response" -msgstr "Resposta do servidor desconhecida." - -#, fuzzy +msgstr "Resposta do servidor desconhecida" + msgid "Unable to create listen socket" -msgstr "Não foi possível criar socket" +msgstr "Não foi possível escutar socket" msgid "SIP usernames may not contain whitespaces or @ symbols" msgstr "Nomes de usuário do SIP não podem conter espaços ou arrobas" @@ -9474,9 +9427,8 @@ #. *< version #. * summary #. * description -#, fuzzy msgid "Yahoo! Protocol Plugin" -msgstr "Plug-in do protocolo Yahoo" +msgstr "Plug-in do protocolo Yahoo!" msgid "Pager server" msgstr "Servidor do pager" @@ -9505,9 +9457,8 @@ msgid "Yahoo Chat port" msgstr "Porta de bate-papo do Yahoo" -#, fuzzy msgid "Yahoo JAPAN ID..." -msgstr "ID do Yahoo..." +msgstr "ID do Yahoo JAPAN..." #. *< type #. *< ui_requirement @@ -9519,12 +9470,11 @@ #. *< version #. * summary #. * description -#, fuzzy msgid "Yahoo! JAPAN Protocol Plugin" -msgstr "Plug-in do protocolo Yahoo" +msgstr "Plug-in do protocolo Yahoo! JAPAN" msgid "Your SMS was not delivered" -msgstr "" +msgstr "Seu SMS não foi entregue" msgid "Your Yahoo! message did not get sent." msgstr "Sua mensagem do Yahoo! não foi enviada." @@ -9551,32 +9501,28 @@ msgstr "Pedido para adicionar amigo negado" #. Some error in the received stream -#, fuzzy msgid "Received invalid data" -msgstr "Dados inválidos foram recebidos na conexão com o servidor." +msgstr "Dados inválidos recebidos" #. security lock from too many failed login attempts -#, fuzzy msgid "" "Account locked: Too many failed login attempts. Logging into the Yahoo! " "website may fix this." msgstr "" -"Número de erro %d desconhecido. Entrar na sua conta no site do Yahoo! pode " -"corrigir isso." +"Conta travada: muitas tentativas de login fracassadas. Entrar na sua conta " +"no site do Yahoo! pode corrigir isso." #. indicates a lock of some description -#, fuzzy msgid "" "Account locked: Unknown reason. Logging into the Yahoo! website may fix " "this." msgstr "" -"Número de erro %d desconhecido. Entrar na sua conta no site do Yahoo! pode " -"corrigir isso." +"Conta travada: razão desconhecida. Entrar na sua conta no site do Yahoo! " +"pode corrigir isso." #. username or password missing -#, fuzzy msgid "Username or password missing" -msgstr "Nome de usuário ou senha incorreto(a)" +msgstr "Nome de usuário ou senha faltando" #, c-format msgid "" @@ -9611,13 +9557,12 @@ "Número de erro %d desconhecido. Entrar na sua conta no site do Yahoo! pode " "corrigir isso." -#, fuzzy, c-format +#, c-format msgid "Unable to add buddy %s to group %s to the server list on account %s." msgstr "" "Não foi possível adicionar o amigo %s ao grupo %s à lista do servidor na " "conta %s." -#, fuzzy msgid "Unable to add buddy to server list" msgstr "Não foi possível adicionar amigo à lista do servidor" @@ -9625,21 +9570,16 @@ msgid "[ Audible %s/%s/%s.swf ] %s" msgstr "[ Audível %s/%s/%s.swf ] %s" -#, fuzzy msgid "Received unexpected HTTP response from server" -msgstr "O servidor retornou uma resposta HTTP inválida." - -#, fuzzy, c-format +msgstr "O servidor retornou uma resposta HTTP inesperada." + +#, c-format msgid "Lost connection with %s: %s" -msgstr "" -"A conexão com %s foi perdida:\n" -"%s" - -#, fuzzy, c-format +msgstr "A conexão com %s foi perdida: %s" + +#, c-format msgid "Unable to establish a connection with %s: %s" -msgstr "" -"Não foi possível estabelecer conexão com o servidor:\n" -"%s" +msgstr "Não foi possível estabelecer conexão com o servidor %s: %s" msgid "Not at Home" msgstr "Fora de casa" @@ -9687,7 +9627,7 @@ msgstr "Começar a desenhar" msgid "Select the ID you want to activate" -msgstr "" +msgstr "Selecione o ID que você quer ativar" msgid "Join whom in chat?" msgstr "Juntar-se a quem no bate-papo?" @@ -9788,13 +9728,9 @@ msgid "The user's profile is empty." msgstr "O perfil do usuário está vazio." -#, c-format -msgid "%s declined your conference invitation to room \"%s\" because \"%s\"." -msgstr "" -"%s rejeitou seu convite para uma conferência na sala \"%s\" porque \"%s\"." - -msgid "Invitation Rejected" -msgstr "Convite rejeitado" +#, fuzzy, c-format +msgid "%s has declined to join." +msgstr "%s conectou." msgid "Failed to join chat" msgstr "Falha ao entrar no bate-papo" @@ -9846,9 +9782,8 @@ msgid "User Rooms" msgstr "Salas de usuário" -#, fuzzy msgid "Connection problem with the YCHT server" -msgstr "Problema na conexão ao servidor YCHT." +msgstr "Problema na conexão com o servidor YCHT." msgid "" "(There was an error converting this message.\t Check the 'Encoding' option " @@ -9979,18 +9914,18 @@ msgid "Exposure" msgstr "Exposição" -#, fuzzy, c-format +#, c-format msgid "Unable to parse response from HTTP proxy: %s" -msgstr "Não foi possível interpretar resposta do proxy HTTP: %s\n" +msgstr "Não foi possível interpretar resposta do proxy HTTP: %s" #, c-format msgid "HTTP proxy connection error %d" msgstr "Erro de conexão do proxy HTTP %d" -#, fuzzy, c-format +#, c-format msgid "Access denied: HTTP proxy server forbids port %d tunneling" msgstr "" -"Acesso negado: o servidor proxy HTTP não permite o tunelamento da porta %d." +"Acesso negado: o servidor proxy HTTP não permite o tunelamento da porta %d" #, c-format msgid "Error resolving %s" @@ -10234,13 +10169,13 @@ msgid "Error Reading %s" msgstr "Erro ao ler %s" -#, fuzzy, c-format +#, c-format msgid "" "An error was encountered reading your %s. The file has not been loaded, and " "the old file has been renamed to %s~." msgstr "" -"Um erro foi encontrado ao processar sua %s. Eles(as) não foram carregados" -"(as), e o antigo arquivo foi movido para %s~." +"Um erro foi encontrado ao ler sua %s. Eles(as) não foram carregados(as), e o " +"antigo arquivo foi renomeado para %s~." msgid "Internet Messenger" msgstr "Mensageiro da Internet" @@ -10284,7 +10219,7 @@ msgid "Use this buddy _icon for this account:" msgstr "Usar este _ícone de exibição para esta conta:" -msgid "_Advanced" +msgid "Ad_vanced" msgstr "_Avançado" msgid "Use GNOME Proxy Settings" @@ -10347,9 +10282,8 @@ msgid "Create _this new account on the server" msgstr "Criar es_ta nova conta no servidor" -#, fuzzy -msgid "_Proxy" -msgstr "Proxy" +msgid "P_roxy" +msgstr "P_roxy" msgid "Enabled" msgstr "Ativado" @@ -10378,7 +10312,7 @@ "novamente para configurar quantas contas quiser.\n" "\n" "Você pode voltar a esta janela para adicionar, alterar ou remover contas a " -"partir do menu <b>Contas->Gerenciar Gontas</b> na janela da Lista de Amigos" +"partir do menu <b>Contas->Gerenciar Contas</b> na janela da Lista de Amigos" #, c-format msgid "You have %d contact named %s. Would you like to merge them?" @@ -10399,7 +10333,6 @@ msgid "Please update the necessary fields." msgstr "Favor atualizar os campos necessários." -#, fuzzy msgid "A_ccount" msgstr "_Conta:" @@ -10428,16 +10361,14 @@ msgid "I_M" msgstr "_MI" -#, fuzzy msgid "_Audio Call" -msgstr "_Adicionar bate-papo" +msgstr "Ch_amada de Áudio" msgid "Audio/_Video Call" -msgstr "" - -#, fuzzy +msgstr "Chamada de Áudio/_Vídeo" + msgid "_Video Call" -msgstr "Bate-papo com vídeo" +msgstr "Chamada de _vídeo" msgid "_Send File..." msgstr "_Enviar arquivo..." @@ -10448,11 +10379,9 @@ msgid "View _Log" msgstr "Ver _histórico" -#, fuzzy msgid "Hide When Offline" msgstr "Esconder quando desconectado" -#, fuzzy msgid "Show When Offline" msgstr "Mostrar quando desconectado" @@ -10475,7 +10404,7 @@ msgstr "Adicionar _bate-papo..." msgid "_Delete Group" -msgstr "_Remover grupo" +msgstr "Exclui_r grupo" msgid "_Rename" msgstr "_Renomear" @@ -10579,9 +10508,8 @@ msgid "/Tools/_Certificates" msgstr "/Ferramentas/_Certificados" -#, fuzzy msgid "/Tools/Custom Smile_ys" -msgstr "/Ferramentas/Smile_y" +msgstr "/Ferramentas/Smile_ys personalizados" msgid "/Tools/Plu_gins" msgstr "/Ferramentas/Plu_gins" @@ -10710,7 +10638,7 @@ msgstr "Por status" msgid "By recent log activity" -msgstr "" +msgstr "Pela atividade de registro recente" #, c-format msgid "%s disconnected" @@ -10727,7 +10655,7 @@ msgstr "Re-ativar" msgid "SSL FAQs" -msgstr "" +msgstr "FAQs do SSL" msgid "Welcome back!" msgstr "Bem vindo de volta!" @@ -10860,111 +10788,98 @@ msgid "Background Color" msgstr "Cor do fundo" -#, fuzzy msgid "The background color for the buddy list" -msgstr "Este grupo foi adicionado à sua lista de amigos." - -#, fuzzy +msgstr "A cor de fundo para sua lista de amigos." + msgid "Layout" -msgstr "Laociano" +msgstr "Layout" msgid "The layout of icons, name, and status of the blist" -msgstr "" +msgstr "O layout de ícones, nome e status da lista" #. Group -#, fuzzy msgid "Expanded Background Color" -msgstr "Cor do fundo" +msgstr "Cor do fundo expandido" msgid "The background color of an expanded group" -msgstr "" - -#, fuzzy +msgstr "A cor de fundo de um grupo expandido" + msgid "Expanded Text" -msgstr "_Expandir" +msgstr "Texto Expandido" msgid "The text information for when a group is expanded" -msgstr "" - -#, fuzzy +msgstr "A informação de texto para quando um grupo estiver expandido" + msgid "Collapsed Background Color" -msgstr "Selecionar cor de fundo" +msgstr "Cor de fundo colapsado" msgid "The background color of a collapsed group" -msgstr "" - -#, fuzzy +msgstr "A cor de fundo de um grupo colapsado" + msgid "Collapsed Text" -msgstr "Re_colher" +msgstr "Texto colapsado" msgid "The text information for when a group is collapsed" -msgstr "" +msgstr "A informação de texto para quando um grupo for colapsado" #. Buddy -#, fuzzy msgid "Contact/Chat Background Color" -msgstr "Selecionar cor de fundo" +msgstr "Cor de fundo do Contato/Bate-papo" msgid "The background color of a contact or chat" -msgstr "" - -#, fuzzy +msgstr "A cor de fundo de um contato ou bate-papo" + msgid "Contact Text" -msgstr "Atalho" +msgstr "Texto de contato" msgid "The text information for when a contact is expanded" -msgstr "" - -#, fuzzy +msgstr "A informação de texto para quando um contato está expandido" + msgid "On-line Text" -msgstr "Conectado" +msgstr "Texto de online" msgid "The text information for when a buddy is online" -msgstr "" - -#, fuzzy +msgstr "A informação de texto para quando um contato está conectado" + msgid "Away Text" -msgstr "Ausente" +msgstr "Texto de ausante" msgid "The text information for when a buddy is away" -msgstr "" - -#, fuzzy +msgstr "A informação de texto para quando um contato está ausente" + msgid "Off-line Text" -msgstr "Desconectado" +msgstr "Texto de off-line" msgid "The text information for when a buddy is off-line" -msgstr "" - -#, fuzzy +msgstr "A informação de texto para quando um contato está desconectado" + msgid "Idle Text" -msgstr "Humor (texto)" +msgstr "Texto de inativo" msgid "The text information for when a buddy is idle" -msgstr "" - -#, fuzzy +msgstr "A informação de texto para quando um contato está inativo" + msgid "Message Text" -msgstr "Mensagem enviada" +msgstr "Texto de mensagem" msgid "The text information for when a buddy has an unread message" -msgstr "" +msgstr "A informação de texto para quando um contato tem uma mensagem não lida" msgid "Message (Nick Said) Text" -msgstr "" +msgstr "Mensagem texto (Apelido diz)" msgid "" "The text information for when a chat has an unread message that mentions " "your nick" msgstr "" - -#, fuzzy +"A informação de texto para quando um bate-papo tem uma mensagem não lida que " +"mensiona seu apelido" + msgid "The text information for a buddy's status" -msgstr "Modificar informações do usuário para %s" - -#, fuzzy +msgstr "Informação de texto para o status de um amigo" + msgid "Type the host name for this certificate." -msgstr "Digite o nome de host para o qual este certificado será gerado." +msgstr "Digite o nome de host para este certificado." #. Widget creation function msgid "SSL Servers" @@ -11011,7 +10926,6 @@ msgid "Get Away Message" msgstr "Obter mensagem de ausência" -#, fuzzy msgid "Last Said" msgstr "Última mensagem" @@ -11058,21 +10972,17 @@ msgid "/Conversation/Clea_r Scrollback" msgstr "/Conversa/Limpa_r" -#, fuzzy msgid "/Conversation/M_edia" -msgstr "/Conversa/M_ais" - -#, fuzzy +msgstr "/Conv_ersa/M_ídia" + msgid "/Conversation/Media/_Audio Call" -msgstr "/Conversa/M_ais" - -#, fuzzy +msgstr "/Conversa/Ch_amada de áudio" + msgid "/Conversation/Media/_Video Call" -msgstr "/Conversa/M_ais" - -#, fuzzy +msgstr "/Conversa/Chamada de _vídeo" + msgid "/Conversation/Media/Audio\\/Video _Call" -msgstr "/Conversa/Ver _histórico" +msgstr "/Conversa/_Chamada de áudio/vídeio" msgid "/Conversation/Se_nd File..." msgstr "/Conversa/E_nviar arquivo..." @@ -11146,17 +11056,14 @@ msgid "/Conversation/View Log" msgstr "/Conversa/Ver histórico" -#, fuzzy msgid "/Conversation/Media/Audio Call" -msgstr "/Conversa/Mais" - -#, fuzzy +msgstr "/Conversa/Chamada de áudio" + msgid "/Conversation/Media/Video Call" -msgstr "/Conversa/Ver histórico" - -#, fuzzy +msgstr "/Conversa/Chamada de vídeo" + msgid "/Conversation/Media/Audio\\/Video Call" -msgstr "/Conversa/Mais" +msgstr "/Conversa/Chamada de aúdio/vídeo" msgid "/Conversation/Send File..." msgstr "/Conversa/Enviar arquivo..." @@ -11342,7 +11249,7 @@ msgstr "Ka-Hing Cheung" msgid "voice and video" -msgstr "" +msgstr "voz e vídeo" msgid "support" msgstr "suporte" @@ -11468,9 +11375,8 @@ msgid "Hungarian" msgstr "Húngaro" -#, fuzzy msgid "Armenian" -msgstr "Romeno" +msgstr "Armênio" msgid "Indonesian" msgstr "Bahasa Indonésia" @@ -11487,9 +11393,8 @@ msgid "Ubuntu Georgian Translators" msgstr "Tradutores do Ubuntu do idioma Geórgio" -#, fuzzy msgid "Khmer" -msgstr "Outro" +msgstr "Khmer" msgid "Kannada" msgstr "Canarês" @@ -11570,7 +11475,7 @@ msgstr "Sueco" msgid "Swahili" -msgstr "" +msgstr "Swahili" msgid "Tamil" msgstr "Tamil" @@ -11908,11 +11813,9 @@ msgid "Hyperlink visited color" msgstr "Cor do hyperlink visitado" -#, fuzzy msgid "Color to draw hyperlink after it has been visited (or activated)." msgstr "" -"Cor a ser usada para desenhar os hyperlinks quando já tiverem sido visitados " -"(ou estiverem ativos)." +"Cor para desenhar hiperlinks depois que eles foram visitados (ou ativados)." msgid "Hyperlink prelight color" msgstr "Cor do hyperlink sob o cursor" @@ -11949,23 +11852,20 @@ msgid "Action Message Name Color for Whispered Message" msgstr "Cor do Nome da Mensagem de Ação para Mensagem de Sussurro" -#, fuzzy msgid "Color to draw the name of a whispered action message." msgstr "Cor para desenhar o nome de uma mensagem de ação." msgid "Whisper Message Name Color" msgstr "Cor do Nome das Mensagens de Sussurro" -#, fuzzy msgid "Color to draw the name of a whispered message." -msgstr "Cor para desenhar o nome de uma mensagem de ação." +msgstr "Cor para desenhar o nome de uma mensagem sussurada." msgid "Typing notification color" msgstr "Cor da notificação de digitação" -#, fuzzy msgid "The color to use for the typing notification" -msgstr "Cor para utilizar na fonte da notificação de digitação" +msgstr "Cor para utilizar na notificação de digitação" msgid "Typing notification font" msgstr "Fonte da notificação da digitação" @@ -12218,7 +12118,7 @@ msgid "%s %s. Try `%s -h' for more information.\n" msgstr "%s %s. Tente `%s -h' para mais informações.\n" -#, fuzzy, c-format +#, c-format msgid "" "%s %s\n" "Usage: %s [OPTION]...\n" @@ -12240,6 +12140,7 @@ "\n" " -c, --config=DIR use o diretório DIR para os arquivos de configuração\n" " -d, --debug imprima mensagens de depuração para a saída padrão\n" +" -f, --force-online força estar online, independente do status da rede\n" " -h, --help exiba esta ajuda e saia\n" " -m, --multiple permitir uso simultâneo de mais de uma instância\n" " -n, --nologin não conecte automaticamente\n" @@ -12249,7 +12150,7 @@ " --display=DISPLAY seleciona o display X a usar\n" " -v, --version exiba a versão atual e saia\n" -#, fuzzy, c-format +#, c-format msgid "" "%s %s\n" "Usage: %s [OPTION]...\n" @@ -12270,6 +12171,7 @@ "\n" " -c, --config=DIR use o diretório DIR para os arquivos de configuração\n" " -d, --debug imprima mensagens de depuração para a saída padrão\n" +" -f, --force-online força estar online, independente do status da rede\n" " -h, --help exiba esta ajuda e saia\n" " -m, --multiple permitir uso simultâneo de mais de uma instância\n" " -n, --nologin não conecte automaticamente\n" @@ -12317,22 +12219,21 @@ msgstr "Saindo porque outro cliente libpurple já está sendo executado.\n" msgid "/_Media" -msgstr "" +msgstr "/_Mídia" msgid "/Media/_Hangup" -msgstr "" - -#, fuzzy +msgstr "/Mídia/Colocar no gancho" + msgid "Calling..." -msgstr "Calculando..." +msgstr "Chamando..." #, c-format msgid "%s wishes to start an audio/video session with you." -msgstr "" +msgstr "%s quer começar uma sessão de aúdio/vídeo com você." #, c-format msgid "%s wishes to start a video session with you." -msgstr "" +msgstr "%s quer iniciar uma sessão de vídeo com você." #, c-format msgid "%s has %d new message." @@ -12363,9 +12264,8 @@ "A opção de comando do navegador 'Manual' foi escolhida, mas nenhum comando " "foi definido." -#, fuzzy msgid "No message" -msgstr "Mensagem desconhecida" +msgstr "Sem mensagem" msgid "Open All Messages" msgstr "Abrir todas as mensagens" @@ -12373,16 +12273,14 @@ msgid "<span weight=\"bold\" size=\"larger\">You have mail!</span>" msgstr "<span weight=\"bold\" size=\"larger\">Você tem email!</span>" -#, fuzzy msgid "New Pounces" msgstr "Nova ação de usuário" msgid "Dismiss" -msgstr "" - -#, fuzzy +msgstr "Dispensar" + msgid "<span weight=\"bold\" size=\"larger\">You have pounced!</span>" -msgstr "<span weight=\"bold\" size=\"larger\">Você tem email!</span>" +msgstr "<span weight=\"bold\" size=\"larger\">Você recebeu uma ação!</span>" msgid "The following plugins will be unloaded." msgstr "Os plug-ins a seguir serão descarregados." @@ -12432,9 +12330,8 @@ msgid "Select a file" msgstr "Selecione um arquivo" -#, fuzzy msgid "Modify Buddy Pounce" -msgstr "Editar ação de usuário" +msgstr "Modificar ação de usuário" #. Create the "Pounce on Whom" frame. msgid "Pounce on Whom" @@ -12509,61 +12406,58 @@ msgid "Pounce Target" msgstr "Alvo da ação" -#, fuzzy, c-format +#, c-format msgid "Started typing" -msgstr "Começar a digitar" - -#, fuzzy, c-format +msgstr "Começou a digitar" + +#, c-format msgid "Paused while typing" -msgstr "Pausar ao digitar" - -#, fuzzy, c-format +msgstr "Pausado enquanto digitava" + +#, c-format msgid "Signed on" -msgstr "Conectar" - -#, fuzzy, c-format +msgstr "Conectou" + +#, c-format msgid "Returned from being idle" -msgstr "%s voltou do estado 'Inativo' (%s)" - -#, fuzzy, c-format +msgstr "Saiu da inatividade" + +#, c-format msgid "Returned from being away" -msgstr "Voltar da ausência" - -#, fuzzy, c-format +msgstr "Voltou da ausência" + +#, c-format msgid "Stopped typing" msgstr "Parou de digitar" -#, fuzzy, c-format +#, c-format msgid "Signed off" -msgstr "Desconectar" - -#, fuzzy, c-format +msgstr "Desconectou" + +#, c-format msgid "Became idle" msgstr "Tornar-se inativo" -#, fuzzy, c-format +#, c-format msgid "Went away" -msgstr "Quando ausente" - -#, fuzzy, c-format +msgstr "Ausentou-se" + +#, c-format msgid "Sent a message" -msgstr "Enviar uma mensagem" - -#, fuzzy, c-format +msgstr "Enviou uma mensagem" + +#, c-format msgid "Unknown.... Please report this!" -msgstr "Evento de ação desconhecido. Por favor reporte isso!" - -#, fuzzy +msgstr "Desconhecido.... Por favor nos avise disso!" + msgid "Theme failed to unpack." -msgstr "O tema de emoticons não pôde ser descompactado." - -#, fuzzy +msgstr "O tema não pôde ser descompactado." + msgid "Theme failed to load." -msgstr "O tema de emoticons não pôde ser descompactado." - -#, fuzzy +msgstr "O tema de emoticons não pôde ser carregado." + msgid "Theme failed to copy." -msgstr "O tema de emoticons não pôde ser descompactado." +msgstr "O tema de emoticons não pôde ser copiado." msgid "Install Theme" msgstr "Instalar tema" @@ -12585,9 +12479,8 @@ msgstr "Fechar C_onversas com a Tecla Esc" #. Buddy List Themes -#, fuzzy msgid "Buddy List Theme" -msgstr "Lista de amigos" +msgstr "Tema da Lista de amigos" #. System Tray msgid "System Tray Icon" @@ -12599,9 +12492,8 @@ msgid "On unread messages" msgstr "Para as mensagens não lidas" -#, fuzzy msgid "Conversation Window" -msgstr "Janelas de conversa por mensagem instantânea" +msgstr "Janela de conversa" msgid "_Hide new IM conversations:" msgstr "_Esconder novas conversas de MI:" @@ -12704,9 +12596,9 @@ msgid "<span style=\"italic\">Example: stunserver.org</span>" msgstr "<span style=\"italic\">Exemplo: stunserver.org</span>" -#, fuzzy, c-format +#, c-format msgid "Use _automatically detected IP address: %s" -msgstr "Detectar endereço IP _automaticamente" +msgstr "Usar endereço de IP _automaticamente detectado: %s" msgid "Public _IP:" msgstr "_IP público:" @@ -12728,7 +12620,7 @@ #. TURN server msgid "Relay Server (TURN)" -msgstr "" +msgstr "Servidor de Relay (TURN)" msgid "Proxy Server & Browser" msgstr "Servidor proxy & navegador" @@ -13077,12 +12969,12 @@ msgid "Status for %s" msgstr "Status de %s" -#, fuzzy, c-format +#, c-format msgid "" "A custom smiley for '%s' already exists. Please use a different shortcut." msgstr "" -"Um emoticon personalizado para o atalho selecionado já existe. Por favor, " -"forneça um atalho diferente." +"Um emoticon personalizado para o '%s' já existe. Por favor, use um atalho " +"diferente." msgid "Custom Smiley" msgstr "Emoticon personalizado" @@ -13096,28 +12988,24 @@ msgid "Add Smiley" msgstr "Adicionar Emoticon" -#, fuzzy msgid "_Image:" -msgstr "Ima_gem" +msgstr "Ima_gem:" #. Shortcut text -#, fuzzy msgid "S_hortcut text:" -msgstr "Atalho" +msgstr "Texto de Atal_ho:" msgid "Smiley" msgstr "Emoticon" -#, fuzzy msgid "Shortcut Text" -msgstr "Atalho" +msgstr "Texto de Atalho" msgid "Custom Smiley Manager" msgstr "Gerenciador de emoticons personalizados" -#, fuzzy msgid "Select Buddy Icon" -msgstr "Selecionar amigo" +msgstr "Selecionar Ícone do amigo" msgid "Click to change your buddyicon for this account." msgstr "Clique para alterar seu ícone de exibição para esta conta." @@ -13203,7 +13091,6 @@ msgid "Cannot send launcher" msgstr "Não é possível enviar atalhos" -#, fuzzy msgid "" "You dragged a desktop launcher. Most likely you wanted to send the target of " "this launcher instead of this launcher itself." @@ -13242,9 +13129,8 @@ "Falha ao carregar imagem '%s': motivo desconhecido, provavelmente o arquivo " "de imagem está corrompido" -#, fuzzy msgid "_Open Link" -msgstr "_Abrir link no:" +msgstr "_Abrir link" msgid "_Copy Link Location" msgstr "_Copiar endereço do link" @@ -13252,9 +13138,21 @@ msgid "_Copy Email Address" msgstr "_Copiar endereço de email" +msgid "_Open File" +msgstr "Abrir arquivo" + +msgid "Open _Containing Directory" +msgstr "Abrir diretório contendo" + msgid "Save File" msgstr "Salvar arquivo" +msgid "_Play Sound" +msgstr "Tocar Som" + +msgid "_Save File" +msgstr "_Salvar arquivo" + msgid "Select color" msgstr "Selecionar cor" @@ -13343,77 +13241,65 @@ msgstr "" "Mostrar informações estatísticas sobre a disponibilidade de seus amigos" -#, fuzzy msgid "Server name request" msgstr "Endereço do servidor" -#, fuzzy msgid "Enter an XMPP Server" -msgstr "Entrar num servidor de conferência" - -#, fuzzy +msgstr "Entrar num servidor de XMPP" + msgid "Select an XMPP server to query" -msgstr "Selecione um servidor de conferência a ser consultado" - -#, fuzzy +msgstr "Selecione um servidor de SMTP para consultar" + msgid "Find Services" -msgstr "Serviços online" - -#, fuzzy +msgstr "Encontrar serviços" + msgid "Add to Buddy List" -msgstr "Enviar lista de amigos" - -#, fuzzy +msgstr "Adicionar à lista de amigos" + msgid "Gateway" -msgstr "Ficar ausente" - -#, fuzzy +msgstr "Gateway" + msgid "Directory" -msgstr "Diretório dos históricos" - -#, fuzzy +msgstr "Diretório" + msgid "PubSub Collection" -msgstr "Seleção de som" - -#, fuzzy +msgstr "Coleção PubSub" + msgid "PubSub Leaf" -msgstr "Serviço PubSub" - -#, fuzzy +msgstr "Folha PubSub" + msgid "" "\n" "<b>Description:</b> " -msgstr "Descrição" +msgstr "" +"\n" +"<b>Descrição</b>" #. Create the window. -#, fuzzy msgid "Service Discovery" -msgstr "Informações da localização de serviços" - -#, fuzzy +msgstr "Descoberta de Serviços" + msgid "_Browse" -msgstr "_Navegador:" - -#, fuzzy +msgstr "Navegar:" + msgid "Server does not exist" -msgstr "Usuário inexistente" - -#, fuzzy +msgstr "Servidor não existe" + msgid "Server does not support service discovery" -msgstr "O servidor não tem suporte a bloqueio" - -#, fuzzy +msgstr "O servidor não tem suporte à descoberta de serviços" + msgid "XMPP Service Discovery" -msgstr "Informações da localização de serviços" +msgstr "Descoberta de serviços XMPP" msgid "Allows browsing and registering services." -msgstr "" - -#, fuzzy +msgstr "Permite navegação e serviços de registro." + msgid "" "This plugin is useful for registering with legacy transports or other XMPP " "services." -msgstr "Este plug-in é útil para depurar servidores ou clientes XMPP." +msgstr "" +"Este plug-in é útil para registrar com transportes legados ou outros " +"serviços XMPP." msgid "Buddy is idle" msgstr "O amigo estiver inativo" @@ -13813,14 +13699,13 @@ msgstr "Plug-in de conversa musical para composição colaborativa." #. * summary -#, fuzzy msgid "" "The Music Messaging Plugin allows a number of users to simultaneously work " "on a piece of music by editing a common score in real-time." msgstr "" -"O plug-in de conversa musical permite que vários usuários trabalhem " -"simultaneamente numa composição musical editando uma partitura comum em " -"tempo real." +"O Plug-in Music Messaging permite a um número de usuários trabalharem " +"simultaneamente num trecho de música editando uma partitura comum em tempo " +"real." #. ---------- "Notify For" ---------- msgid "Notify For" @@ -13939,7 +13824,6 @@ msgid "Highlighted Message Name Color" msgstr "Cor do Nome de Mensagens Realçadas" -#, fuzzy msgid "Typing Notification Color" msgstr "Cor da notificação de digitação" @@ -13972,23 +13856,20 @@ msgid "GTK+ Text Shortcut Theme" msgstr "Tema de atalhos do GTK+" -#, fuzzy msgid "Disable Typing Notification Text" -msgstr "Habilitar notificação de digitação" - -#, fuzzy +msgstr "Desabilitar notificação de digitação" + msgid "GTK+ Theme Control Settings" -msgstr "Controle do tema do GTK+ do Pidgin" - -#, fuzzy +msgstr "Preferências do controle do tema do GTK+" + msgid "Colors" -msgstr "Fechar" +msgstr "Cores" msgid "Fonts" msgstr "Fontes" msgid "Miscellaneous" -msgstr "" +msgstr "Miscelânias" msgid "Gtkrc File Tools" msgstr "Ferramentas do gtkrc" @@ -14073,13 +13954,12 @@ msgstr "Botão de Enviar da Janela de Conversa." #. *< summary -#, fuzzy msgid "" "Adds a Send button to the entry area of the conversation window. Intended " "for use when no physical keyboard is present." msgstr "" -"Adiciona um botão Enviar na área de entrada da janela de conversação. " -"Idealpara quando nenhum teclado físico está presente." +"Adiciona um botão Enviar na área de entrada da janela de conversação. Ideal " +"para quando nenhum teclado físico está presente." msgid "Duplicate Correction" msgstr "Correção duplicada" @@ -14134,94 +14014,78 @@ "Substitui texto nas mensagens enviadas de acordo com regras definidas pelo " "usuário." -#, fuzzy msgid "Just logged in" -msgstr "Desconectado" - -#, fuzzy +msgstr "Acabou de conectar-se" + msgid "Just logged out" -msgstr "Desconectado" +msgstr "Acabou de desconectar-se" msgid "" "Icon for Contact/\n" "Icon for Unknown person" msgstr "" - -#, fuzzy +"Ícone para Contato/\n" +"Ícone para pessoa desconhecida" + msgid "Icon for Chat" -msgstr "Entrar em um bate-papo" - -#, fuzzy +msgstr "Ícone para bate-papo" + msgid "Ignored" -msgstr "Ignorar" - -#, fuzzy +msgstr "Ignorado" + msgid "Founder" -msgstr "Mais alto" - -#, fuzzy +msgstr "Fundador" + msgid "Operator" -msgstr "Opera" +msgstr "Operador" msgid "Half Operator" -msgstr "" - -#, fuzzy +msgstr "Operador parcial" + msgid "Authorization dialog" -msgstr "Autorização concedida" - -#, fuzzy +msgstr "Diálogo de autorização" + msgid "Error dialog" -msgstr "Erro " - -#, fuzzy +msgstr "Diálogo de erro" + msgid "Information dialog" -msgstr "Informações" +msgstr "Diálogo de informações" msgid "Mail dialog" -msgstr "" - -#, fuzzy +msgstr "Diálogo de correio" + msgid "Question dialog" -msgstr "Diálogo de requisição" - -#, fuzzy +msgstr "Diálogo de questão" + msgid "Warning dialog" -msgstr "Nível de alerta" +msgstr "Diálogo de alerta" msgid "What kind of dialog is this?" -msgstr "" - -#, fuzzy +msgstr "Que tipo de diálogo é esse?" + msgid "Status Icons" -msgstr "Status de %s" - -#, fuzzy +msgstr "Ícones de Status" + msgid "Chatroom Emblems" -msgstr "Locale da sala de bate-papo" - -#, fuzzy +msgstr "Emblema de sala de bate-papo" + msgid "Dialog Icons" -msgstr "Alterar Ícone" - -#, fuzzy +msgstr "Ícone de diálogo" + msgid "Pidgin Icon Theme Editor" -msgstr "Controle do tema do GTK+ do Pidgin" - -#, fuzzy +msgstr "Editor de tema de Ícone do Pidgin" + msgid "Contact" -msgstr "Informações do contato" - -#, fuzzy +msgstr "Contato" + msgid "Pidgin Buddylist Theme Editor" -msgstr "Lista de amigos" - -#, fuzzy +msgstr "Editor de tema da Lista de amigos do Pidgin" + msgid "Edit Buddylist Theme" -msgstr "Lista de amigos" +msgstr "Editar tema da Lista de amigos" msgid "Edit Icon Theme" -msgstr "" +msgstr "Editar tema de ícones" #. *< type #. *< ui_requirement @@ -14230,16 +14094,14 @@ #. *< priority #. *< id #. * description -#, fuzzy msgid "Pidgin Theme Editor" -msgstr "Controle do tema do GTK+ do Pidgin" +msgstr "Editor de tema do Pidgin" #. *< name #. *< version #. * summary -#, fuzzy msgid "Pidgin Theme Editor." -msgstr "Controle do tema do GTK+ do Pidgin" +msgstr "Editor de tema do Pidgin." #. *< type #. *< ui_requirement @@ -14409,12 +14271,11 @@ msgid "Options specific to Pidgin for Windows." msgstr "Opções específicas do Pidgin para Windows." -#, fuzzy msgid "" "Provides options specific to Pidgin for Windows, such as buddy list docking." msgstr "" -"Fornece opções específicas do Pidgin para Windows, como ancoramento da lista " -"de amigos." +"Fornece opções específicas do Pidgin para Windows, como encaixamento da " +"lista de amigos." msgid "<font color='#777777'>Logged out.</font>" msgstr "\"<font color='#777777'>Desconectado.</font>" @@ -14453,6 +14314,23 @@ msgid "This plugin is useful for debbuging XMPP servers or clients." msgstr "Este plug-in é útil para depurar servidores ou clientes XMPP." +#~ msgid "Malformed BOSH Connect Server" +#~ msgstr "Servidor de conexão BOSH inválido" + +#~ msgid "Unable to not load SILC key pair" +#~ msgstr "Não foi possível não carregar par de chaves SILC" + +#~ msgid "" +#~ "%s declined your conference invitation to room \"%s\" because \"%s\"." +#~ msgstr "" +#~ "%s rejeitou seu convite para uma conferência na sala \"%s\" porque \"%s\"." + +#~ msgid "Invitation Rejected" +#~ msgstr "Convite rejeitado" + +#~ msgid "_Proxy" +#~ msgstr "_Proxy" + #~ msgid "Cannot open socket" #~ msgstr "Não foi possível abrir socket" @@ -14709,7 +14587,6 @@ #~ msgid "Could not resolve hostname" #~ msgstr "Não foi possível resolver host" -#, fuzzy #~ msgid "Incorrect Password" #~ msgstr "Senha incorreta" @@ -14739,13 +14616,12 @@ #~ msgid "Could not resolve host name" #~ msgstr "Não foi possível resolver host" -#, fuzzy #~ msgid "" #~ "Unable to connect to %s: Server requires TLS/SSL, but no TLS/SSL support " #~ "was found." #~ msgstr "" -#~ "O servidor requer TLS/SSL para conexão. Nenhum suporte a TLS/SSL foi " -#~ "encontrado." +#~ "Não foi possível conectar-se a %s: o servidor requer TLS/SSL, mas nenhum " +#~ "suporte a TLS/SSL foi encontrado." #~ msgid "Conversation Window Hiding" #~ msgstr "Quando esconder as janelas de conversa"