diff options
Diffstat (limited to 'share')
322 files changed, 12533 insertions, 0 deletions
diff --git a/share/applications/gcstar-thumbnailer b/share/applications/gcstar-thumbnailer new file mode 100644 index 0000000..ff054fe --- /dev/null +++ b/share/applications/gcstar-thumbnailer @@ -0,0 +1,260 @@ +#!/usr/bin/perl +use strict; + +use XML::Simple; +use URI::file; +use Gtk2; + +{ + # GCS file to load + my $uriIn = URI->new($ARGV[0]); + my $fileIn = $uriIn->file; + + my $maxIcons = 16; + my $itemsPerRow = 4; + my $skin; + my $skinFile; + + # Find user selected skin + # Fix - hardcoded path + open (CONF, $ENV{'HOME'}.'/.config/gcstar/GCstar.conf'); + my $line; + foreach $line (<CONF>) { + if ($line =~ /listImgSkin=(.*)/) + { + $skinFile= $1; + } + } + if (!$skinFile) + { + $skinFile = "Wood"; + } + close (CONF); + + # Fix - hardcoded path + $skin = "/usr/local/share/gcstar/list_bg/".$skinFile."/list_bg.png"; + + # Load the collection file temporarily, to grab the model type + my $collectionXML= XMLin($fileIn, forcearray => 1); + + # Load the collection model to determine id and cover fields + # Fix - hardcoded path + my $collectionModel = XMLin("/usr/local/lib/gcstar/GCModels/".$collectionXML->{type}.".gcm"); + my $idField = $collectionModel->{options}->{fields}->{id}; + my $picField = $collectionModel->{options}->{fields}->{cover}; + + # Now that we now the id field, reopen collection xml using proper id + $collectionXML= XMLin($fileIn, forcearray => 1, keyattr=>$idField); + my $collectionItems=$collectionXML->{item}; + + my $count; + my $favCount; + my $nonFavCount; + my @images; + my @favourites; + my @nonFavourites; + + # Hacky part, but for some reason items won't load as an array, so just jump through collection grabbing the first few covers + # (Prefer favourites - so I don't see romantic comedies as the thumbnail for my films!!) + + foreach my $collectionItem (values %$collectionItems) + { + if ($collectionItem->{$picField}) + { + if ($collectionItem->{favourite}) + { + if ($favCount < $maxIcons) + { + @favourites[$favCount] = $collectionItem->{$picField}; + $favCount++; + } + } + else + { + @nonFavourites[$nonFavCount] = $collectionItem->{$picField}; + $nonFavCount++; + } + + } + } + + # Load a few pixbufs + my $gcstarIconPixBuf; + my $backgroundPixBuf; + + # Fix - hardcoded path + $gcstarIconPixBuf = Gtk2::Gdk::Pixbuf->new_from_file("/usr/local/share/gcstar/icons/gcstar_24x24.png"); + $backgroundPixBuf = Gtk2::Gdk::Pixbuf->new_from_file($skin); + + + my $tempPixbuf; + my @pixBuf; + my $bgWidth = $backgroundPixBuf->get_width; + my $bgHeight = $backgroundPixBuf->get_height; + my $maxHeight; + + # Load covers to pixbufs, scale them to fit in background + for (my $imgCount = 0; $imgCount < $maxIcons; $imgCount++) + { + if (@favourites[$imgCount]) + { + @pixBuf[$imgCount] = Gtk2::Gdk::Pixbuf->new_from_file(@favourites[$imgCount]); + # Scale to 80% of background size (seems like a good size) + @pixBuf[$imgCount] = scaleMaxPixbuf(@pixBuf[$imgCount], $bgWidth*.80, $bgHeight*.80); + if (@pixBuf[$imgCount]->get_height > $maxHeight) + { + $maxHeight = @pixBuf[$imgCount]->get_height; + } + } + elsif (@nonFavourites[$imgCount - $favCount]) + { + @pixBuf[$imgCount] = Gtk2::Gdk::Pixbuf->new_from_file(@nonFavourites[$imgCount - $favCount]); + # Scale to 80% of background size (seems like a good size) + @pixBuf[$imgCount] = scaleMaxPixbuf(@pixBuf[$imgCount], $bgWidth*.80, $bgHeight*.80); + if (@pixBuf[$imgCount]->get_height > $maxHeight) + { + $maxHeight = @pixBuf[$imgCount]->get_height; + } + } + else + { + # If we run out of items in the collection with covers, just make empty pixbufs for simplicity + @pixBuf[$imgCount] = Gtk2::Gdk::Pixbuf->new('rgb',1,8,$bgWidth * .80,$bgHeight * .80); + @pixBuf[$imgCount]->fill(0x00000000); + } + } + + my $factor; + my $rows; + my $destHeight; + + # Change the positioning slightly if it's a reflection type skin (items sit higher on shelf) + # Work out number of rows of pictures, and desired height of rows (not much logic to these numbers, + # it's just what looks good) + if ($skinFile =~ /Glass/) + { + $factor = 40; + if ($maxHeight < 70) + { + $rows = 4; + $destHeight = $bgHeight - 145; + } + elsif ($maxHeight < 130) + { + $rows = 3; + $destHeight = $bgHeight - 100; + } + else + { + $rows = 2; + $destHeight = $bgHeight; + } + } + else + { + $factor = 10; + if ($maxHeight < 70) + { + $rows = 4; + $destHeight = $bgHeight - 60; + } + elsif ($maxHeight < 130) + { + $rows = 3; + $destHeight = $bgHeight - 15; + } + else + { + $rows = 3; + $destHeight = $bgHeight; + } + } + + # Put covers on background + for (my $imgCount = 0; $imgCount < $itemsPerRow * $rows; $imgCount++) + { + $tempPixbuf = $backgroundPixBuf->copy; + @pixBuf[$imgCount]->composite($tempPixbuf, + ( $bgWidth - @pixBuf[$imgCount]->get_width ) / 2, + $bgHeight - @pixBuf[$imgCount]->get_height - $factor, + @pixBuf[$imgCount]->get_width, @pixBuf[$imgCount]->get_height, + ( $bgWidth - @pixBuf[$imgCount]->get_width ) / 2, + $bgHeight - @pixBuf[$imgCount]->get_height - $factor, + 1, 1, + 'nearest', 255); + + if ($rows > 2) + { + # If needed, crop image to avoid wasted space + $tempPixbuf = $tempPixbuf->new_subpixbuf(0,$bgHeight-$destHeight,$bgWidth,$destHeight); + } + @pixBuf[$imgCount] = $tempPixbuf; + } + + # Get pixbuf ready for final image + $tempPixbuf = Gtk2::Gdk::Pixbuf->new('rgb',1,8,$bgWidth * $itemsPerRow,$destHeight * $rows); + $tempPixbuf->fill(0x00000000); + + # Put each cover in place + for (my $imgCount = 0; $imgCount < $itemsPerRow * $rows; $imgCount++) + { + @pixBuf[$imgCount]->composite($tempPixbuf, + @pixBuf[0]->get_width * ($imgCount % $itemsPerRow), + @pixBuf[0]->get_height * int($imgCount / $itemsPerRow), + @pixBuf[5]->get_width, + @pixBuf[5]->get_height, + @pixBuf[0]->get_width * ($imgCount % $itemsPerRow), + @pixBuf[0]->get_height * int($imgCount / $itemsPerRow), + 1, 1, 'nearest', 255); + } + + # Scale to specified size, or else to max 128 pixels wide/high + if ($ARGV[2]) + { + $tempPixbuf = scaleMaxPixbuf($tempPixbuf,$ARGV[2],$ARGV[2]); + } + else + { + $tempPixbuf = scaleMaxPixbuf($tempPixbuf,128,128); + } + + # Place little gcstar icon in corner + $gcstarIconPixBuf->composite($tempPixbuf, + $tempPixbuf->get_width - $gcstarIconPixBuf->get_width - 4, + $tempPixbuf->get_height - $gcstarIconPixBuf->get_height - 5, + $gcstarIconPixBuf->get_width, + $gcstarIconPixBuf->get_height, + $tempPixbuf->get_width - $gcstarIconPixBuf->get_width - 4, + $tempPixbuf->get_height - $gcstarIconPixBuf->get_height - 5, + 1,1,'nearest',255); + + # Save pixbuf + $tempPixbuf->save($ARGV[1],"png"); + +} + +sub scaleMaxPixbuf +{ + my ($pixbuf, $maxWidth, $maxHeight) = @_; + + my ($width, $height) = ($pixbuf->get_width, $pixbuf->get_height); + if (($height > $maxHeight) || ($width > $maxWidth)) + { + my ($newWidth, $newHeight); + my $ratio = $height / $width; + if (($width) * ($maxHeight / $height) < $maxWidth) + { + $newHeight = $maxHeight; + $newWidth = $newHeight / $ratio; + } + else + { + $newWidth = $maxWidth; + $newHeight = $newWidth * $ratio; + } + + $pixbuf = $pixbuf->scale_simple($newWidth, $newHeight, 'bilinear'); + } + + return $pixbuf; +} diff --git a/share/applications/gcstar.desktop b/share/applications/gcstar.desktop new file mode 100644 index 0000000..aa6a46d --- /dev/null +++ b/share/applications/gcstar.desktop @@ -0,0 +1,18 @@ +[Desktop Entry] +Version=1.0 +Name=GCstar Collections Manager +Name[es]=Gestor de colecciones GCstar +Name[fr]=GCstar gestionnaire de collections +GenericName=Personal Collections Manager +Comment=Manage your collections of movies, games, books, music and more +Comment[en]=Manage your collections of movies, games, books, music and more +Comment[es]=Organice sus colecciones de pelÃculas, juegos, libros, música y más +Comment[fr]=Gérer vos collections de films, jeux vidéos, livres, musique,... +Comment[pt]=Organize as suas colecções de filmes, jogos, vÃdeos, livros e música... +Exec=gcstar %f +Icon=gcstar +Terminal=false +StartupNotify=true +Type=Application +Categories=Office; +MimeType=application/x-gcstar diff --git a/share/applications/gcstar.xml b/share/applications/gcstar.xml new file mode 100644 index 0000000..c342767 --- /dev/null +++ b/share/applications/gcstar.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> + <mime-type type="application/x-gcstar"> + <comment>GCstar collection</comment> + <glob pattern="*.gcs"/> + </mime-type> +</mime-info> diff --git a/share/gcstar/LICENSE b/share/gcstar/LICENSE new file mode 100644 index 0000000..3912109 --- /dev/null +++ b/share/gcstar/LICENSE @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/share/gcstar/fonts/AUTHORS b/share/gcstar/fonts/AUTHORS new file mode 100644 index 0000000..8448d44 --- /dev/null +++ b/share/gcstar/fonts/AUTHORS @@ -0,0 +1,8 @@ +Designer: + + Steve Matteson (Ascender Corp.) + http://www.ascendercorp.com/typedesigners.html + +Maintainer: + + Caius 'kaio' Chance <k AT kaio.me> diff --git a/share/gcstar/fonts/COPYING b/share/gcstar/fonts/COPYING new file mode 100644 index 0000000..846b7da --- /dev/null +++ b/share/gcstar/fonts/COPYING @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/share/gcstar/fonts/ChangeLog b/share/gcstar/fonts/ChangeLog new file mode 100644 index 0000000..4ceea3f --- /dev/null +++ b/share/gcstar/fonts/ChangeLog @@ -0,0 +1,176 @@ +* Tue 14 Jul 2009 Caius 'kaio' Chance <me AT kaio.me> +- Generated TTFs with tradition kern table, with fontforge ver 20090408. +- Added make target alias dist-src as dist-sfd. + +* Mon 13 Jul 2009 Caius 'kaio' Chance <me AT kaio.me> +- Updated for generation of traditional kern table via scripts. + +* Mon 06 Jul 2009 Caius 'kaio' Chance <me AT kaio.me> +- Reconverted SFDs from original TTFs with traditional kern table. +- Updated "clean" target in Makefile. + +* Tue 30 Jun 2009 Caius 'kaio' Chance <me AT kaio.me> +- Reconverted SFDs from original TTFs with traditional kern table. +- Updated "clean" target in Makefile. + +* Tue 30 Jun 2009 Caius 'kaio' Chance <me AT kaio.me> +- Generated cleaner SFD from original TTFs. +- Include Makefile in sources tarball. + +* Wed 24 Jun 2009 Caius 'kaio' Chance <me AT kaio.me> +- Makefile: pack SFD files as source tarball. +- Makefile: pack TTF files as ttf packs. +- Tidy up repository. +- Updated documents. + +* Mon 12 Jan 2009 Caius Chance <cchance@redhat.com> +- Fixed copyright holder name typo for Sans Regular font (rhbz#479521). + +* Tue 09 Dec 2008 Caius Chance <cchance@redhat.com> +- Changed cent sign glyph (U+00A2) to be coressed in Sans and Mono + (rhbz#474522). + +* Wed 03 Dec 2008 Caius Chance <cchance@redhat.com> +- Started 1.04.93.devel. +- Fixed blurriness of U+03BC for Sans Regular font (rhbz#473481). +- Fixed src tarball mis-inclusion of dist files in Makefile. + +* Fri 28 Nov 2008 Caius Chance <cchance@redhat.com> +- Corrected version number in Makefile. +- Fixed make target of source tarball. +- Uploaded 1.04.92 source tarball to release area. + +* Wed 15 Oct 2008 Caius Chance <cchance@redhat.com> +- Fixed blurred 'u' and 'W' for Sans Bold font (rhbz#463036). +- Released as version 1.04.92 + +* Wed 17 Sep 2008 Caius Chance <cchance@redhat.com> +- Fixed missing hinting instructions for all Mono fonts (rhbz#460090). +- Fixed missing hinting instructions for all Sans fonts (rhbz#460090). +- Fixed missing hinting instructions for all Serif fonts (rhbz#460090). +- Released as version 1.04.91 + +* Tue 09 Sep 2008 Caius Chance <cchance@redhat.com> +- Backed up all released files in ./dist directory. + +* Fri 05 Sep 2008 Caius Chance <cchance@redhat.com> +- Fixed incorrect glyph points and missing hinting instructions for: + Mono Bold Italic (up to U+2012) (rhbz#460090). + +* Mon 25 Aug 2008 Caius Chance <cchance@redhat.com> +- Fixed incorrect glyph points and missing hinting instructions for: + U+0079, U+03BC, U+0431, U+2010..2012, U+1114117 (rhbz#458592). +- Released as version 1.04.90. + +* Thu 13 Jul 2008 Caius Chance <cchance@redhat.com> +- Released as version 1.04. + +* Thu 12 Jun 2008 Caius Chance <cchance@redhat.com> +- Released as version 1.04.beta2 (1.03.99). +- Added ZIP package building for non-tar users. +- rhbz#440992: + - Created Romanian "T/t/S/s with comma below" (U+0218..021B) on all fonts. + - Fixed "T/s with cedilla below" (U+0162/0163) on all fonts. + - Created "Hyphen" and "Non-Breaking Hyphen" (U+2010..2011) on all fonts. + +* Wed 11 Jun 2008 Caius Chance <cchance@redhat.com> +- Added last Version 1.03 from original manufacturer. +- Renamed directory 'archive' to 'sandbox'. +- Added directory description in hosting home directory. +- Created ZIP packages for Version 1.03 and 1.04.beta. + +* Tue 04 Jun 2008 Caius Chance <cchance@redhat.com> +- rhbz#440992: + - Created "Hyphen" and "Non-Breaking Hyphen" (U+2010..2011) on Sans Regular. + +* Mon 03 Jun 2008 Caius Chance <cchance@redhat.com> +- rhbz#440992: + - Created Romanian "T/t/S/s with comma below" (U+0218..021B) on Sans Regular. + - Fixed "T/s with cedilla below" (U+0162/0163) on Sans Regular. + +* Fri 30 May 2008 Caius Chance <cchance@redhat.com> +- Release Version 1.04.beta (liberation-fonts-1_04_beta). + +* Thu 29 May 2008 Caius Chance <cchance@redhat.com> +- Correct SFD version numbers in "TTF Info" categor for correct version + number during export to TTFs. + +* Wed 28 May 2008 Caius Chance <cchance@redhat.com> +- Reencoded with "Glyph Order" by FontForge. +- Corrected font name for all Regular fonts. +- Generated TTFs (experimantal, in "archive") with old stle kern and dummy + DSIG table. +- Updated README in 1.04b TTFs (experimental, in "archive"). + +* Tue 27 May 2008 Caius Chance <cchance@redhat.com> +- Fixed Unicode name mis-mapping of Sans and Serif TTF files. +- Regenerate SFD files from Unicode name mis-mapping fixed Sans and Serif TTF + files. + +* Mon 26 May 2008 Caius Chance <cchance@redhat.com> +- Fixed Unicode name mis-mapping of Mono TTF files. +- Regenerate SFD files from Unicode name mis-mapping fixed Mono TTF files. +========== +- Applied following patches submitted by Nicolas Spalinger + <nicolas_spalinger sil org>: + - We-need-versioned-tarballs. + - Add-ignore-file-so-the-VCS-does-not-track-the-folder. + - Adjust-path-for-various-Makefile-targets-subfolders. + - Fix-versionning-mismatch-in-the-binary-font-metadata. + - Add-some-description-and-extra-lines-to-the-build-ta. + - Reword-and-restructure-maintainers-recommendations. + - Some-rewording-of-the-readme-file. +========== + +* Thu May 22 2008 Caius Chance <cchance@redhat.com> +- Added latest (1.03) TTF files from Ascender. (in 'archive') + +* Fri May 16 2008 Caius Chance <cchance@redhat.com> +- Change source tree as 'trunk', 'tags', 'branches'. +========== +- Applied following patches submitted by Nicolas Spalinger + <nicolas_spalinger sil org>: + - Add-more-information-about-the-upstream-designer. + - Minor-typo-and-layout-fixes. + - Adjust-fontforge-path-with-env-as-a-source-build. +========== + +* Wed May 14 2008 Caius Chance <cchance@redhat.com> +- Renamed target 'ttf' to 'build'. +- Removed 'Re-Package' chapter from README and refine contents. +- Changed AUTHORS contents. +- Created maintainer documentation MAINTAINER. + +* Tue May 06 2008 Caius Chance <cchance@redhat.com> +- Refined clean target. +- Removed TTFs from git. + +* Fri May 02 2008 Caius Chance <cchance@redhat.com> +- Imported into fedorahosted.org repository and be hosted. + https://fedorahosted.org/liberation-fonts/ +- Modified source root directory name definition in Makefile. +- Created 'dist' target for binary TTF tarball and 'src' for source tarball. +- Corrected Regular fonts filenames. +- Added TTF -> SFD make target. + +* Thu May 01 2008 Caius Chance <cchance@redhat.com> +- Converted previous TTF files into SFD files to be open source. +- Created fontforge SFD -> TTF scripts. +- Created Makefile. +- Added documentations: AUTHORS, ChangeLog, README. + +* Thu Apr 10 2008 Caius Chance <cchance@redhat.com> +- Fixed exchanged and incomplete glyphs (from Ascender). +- Repacked source tarball. +- Released version 1.03. + +* Tue Mar 25 2008 Caius Chance <cchance@redhat.com> +- Fixed alignment mismatch of dot accents (from Ascender). +- Released version 1.02. + +* Mon Jan 14 2008 Caius Chance <cchance@redhat.com> +- Updated new source tarball from Ascender. +- Released version 1.0. + +* Thu Jun 14 2007 Caius Chance <cchance@redhat.com> +- Updated new source tarball from Ascender. diff --git a/share/gcstar/fonts/LiberationSans-Regular.ttf b/share/gcstar/fonts/LiberationSans-Regular.ttf Binary files differnew file mode 100644 index 0000000..4b2ebce --- /dev/null +++ b/share/gcstar/fonts/LiberationSans-Regular.ttf diff --git a/share/gcstar/fonts/License.txt b/share/gcstar/fonts/License.txt new file mode 100644 index 0000000..f178728 --- /dev/null +++ b/share/gcstar/fonts/License.txt @@ -0,0 +1,19 @@ +LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY +LIBERATION FONT SOFTWARE + +This agreement governs the use of the Software and any updates to the Software, regardless of the delivery mechanism. Subject to the following terms, Red Hat, Inc. ("Red Hat") grants to the user ("Client") a license to this work pursuant to the GNU General Public License v.2 with the exceptions set forth below and such other terms as are set forth in this End User License Agreement. + + 1. The Software and License Exception. LIBERATION font software (the "Software") consists of TrueType-OpenType formatted font software for rendering LIBERATION typefaces in sans-serif, serif, and monospaced character styles. You are licensed to use, modify, copy, and distribute the Software pursuant to the GNU General Public License v.2 with the following exceptions: + + (a) As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. + + (b) As a further exception, any distribution of the object code of the Software in a physical product must provide you the right to access and modify the source code for the Software and to reinstall that modified version of the Software in object code form on the same physical product on which you received it. + + 2. Intellectual Property Rights. The Software and each of its components, including the source code, documentation, appearance, structure and organization are owned by Red Hat and others and are protected under copyright and other laws. Title to the Software and any component, or to any copy, modification, or merged portion shall remain with the aforementioned, subject to the applicable license. The "LIBERATION" trademark is a trademark of Red Hat, Inc. in the U.S. and other countries. This agreement does not permit Client to distribute modified versions of the Software using Red Hat's trademarks. If Client makes a redistribution of a modified version of the Software, then Client must modify the files names to remove any reference to the Red Hat trademarks and must not use the Red Hat trademarks in any way to reference or promote the modified Software. + + 3. Limited Warranty. To the maximum extent permitted under applicable law, the Software is provided and licensed "as is" without warranty of any kind, expressed or implied, including the implied warranties of merchantability, non-infringement or fitness for a particular purpose. Red Hat does not warrant that the functions contained in the Software will meet Client's requirements or that the operation of the Software will be entirely error free or appear precisely as described in the accompanying documentation. + + 4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential damages, including lost profits or lost savings arising out of the use or inability to use the Software, even if Red Hat or such dealer has been advised of the possibility of such damages. + + 5. General. If any provision of this agreement is held to be unenforceable, that shall not affect the enforceability of the remaining provisions. This agreement shall be governed by the laws of the State of North Carolina and of the United States, without regard to any conflict of laws provisions, except that the United Nations Convention on the International Sale of Goods shall not apply. +Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. diff --git a/share/gcstar/fonts/README b/share/gcstar/fonts/README new file mode 100644 index 0000000..13d1bd4 --- /dev/null +++ b/share/gcstar/fonts/README @@ -0,0 +1,90 @@ + 1. What's this? +================= + + The Liberation Fonts is font collection which aims display compatibility to + document files that used Times New Roman, Arial, Courier New as fonts. + + + 2. Requirements +================= + + * fontforge to be installed. + (http://fontforge.sourceforge.net) + + + 3. Install +============ + + 3.1 Decompress tarball + + You can extract the files by following command: + + $ tar zxvf liberation-fonts-[VERSION].tar.gz + + 3.2 Build from the source + + Change into directory liberation-fonts-[VERSION]/ and build from sources by + following commands: + + $ cd liberation-fonts-[VERSION] + $ make + + The built font files will be available in 'build' directory. + + 3.3 Install to system + + You can manually install the fonts by copying the TTFs to ~/.fonts for user + wide usage, or to /usr/share/fonts/truetype/liberation for system-wide + availability. + + + 4. Usage +========== + + The fonts should be installed and detected by the system after installation. + Simply select preferred liberation font in applications and start using. + + + 5. License +============ + + For redistribution information, please read the GPL license file 'COPYING'. + + For EULA information, please read file 'License.txt'. + + + 6. Maintainers +================ + + (FIXME) + Before packaging a new release based on a new source tarball, you have to + update the version number in the Makefile: + + VER = [VERSION] + + Make sure that the defined version corresponds to the font software metadata +which you can check with ftinfo/otfinfo or fontforge itself. It is highly recommended that file 'ChangeLog' is updated to reflect +changes. + +Create a tarball with the following command: +$ make dist + +The new versionned tarball will be available in the dist/ folder as +'liberation-fonts-[NEW_VERSION].tar.gz'. + (FIXME) + + 7. Credits +============ + +Special thanks to all involved to the proejct of Liberation Fonts! + + * Caius 'kaio' Chance <k AT kaio.me> + - Current project maintainer. + + * Mark Webbink <mwebbink AT redhat.com> + - Release coordinator, Red Hat Inc. + + * Steve Matteson + - Designer, Ascender Corp. + + * And, all other anonymous participants. diff --git a/share/gcstar/genres/EN.genres b/share/gcstar/genres/EN.genres new file mode 100644 index 0000000..83074cb --- /dev/null +++ b/share/gcstar/genres/EN.genres @@ -0,0 +1,12 @@ +Science Fiction|Sci-Fi,SF +Fantasy|Fantastic,Fantastique,Fantastico,Fantascienza +Comedy|Comedie,Commedia,Comédie +Adventure|Avventura,Aventure,Action-Adventure +Animation|Anime,Cartoon,Animated +Music|Musical +Thriller|Suspense +Action|Martial Arts +Family|Children,Kids +Classic|Classics +Television|TV +War|Military
\ No newline at end of file diff --git a/share/gcstar/genres/ES.genres b/share/gcstar/genres/ES.genres new file mode 100644 index 0000000..ead23a3 --- /dev/null +++ b/share/gcstar/genres/ES.genres @@ -0,0 +1,12 @@ +Ciencia Ficción|Sci-Fi,SF +Fantástico|Fantastic,Fantastique,Fantastico,Fantascienza +Comedia|Comedie,Commedia,Comédie,Comedy,Commedia +Aventuras|Avventura,Aventure,Action-Adventure +Animación|Anime,Cartoon,Animated +Musical|Musical +Thriller|Suspense +Acción|Martial Arts +Familiar|Children,Kids +Clásico|Classics +Televisión|TV +Bélico|Military diff --git a/share/gcstar/genres/FR.genres b/share/gcstar/genres/FR.genres new file mode 100644 index 0000000..a450b52 --- /dev/null +++ b/share/gcstar/genres/FR.genres @@ -0,0 +1,4 @@ +Comédie|Comedie,Comedy,Commedia
+Aventure|Avventura,Adventure
+Fantastique|Fantastico,Fantascienza,Fantastic
+Science Fiction|SF,Sci-Fi
\ No newline at end of file diff --git a/share/gcstar/helpers/xdg-open b/share/gcstar/helpers/xdg-open new file mode 100644 index 0000000..e25e67f --- /dev/null +++ b/share/gcstar/helpers/xdg-open @@ -0,0 +1,469 @@ +#!/bin/sh +#--------------------------------------------- +# xdg-open +# +# Utility script to open a URL in the registered default application. +# +# Refer to the usage() function below for usage. +# +# Copyright 2006, Kevin Krammer <kevin.krammer@gmx.at> +# Copyright 2006, Jeremy White <jwhite@codeweavers.com> +# +# LICENSE: +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +#--------------------------------------------- + +manualpage() +{ +cat << _MANUALPAGE +Name + +xdg-open ? opens a file or URL in the user's preferred application + +Synopsis + +xdg-open { file | URL } + +xdg-open { --help | --manual | --version } + +Description + +xdg-open opens a file or URL in the user's preferred application. If a URL is +provided the URL will be opened in the user's preferred web browser. If a file +is provided the file will be opened in the preferred application for files of +that type. xdg-open supports file, ftp, http and https URLs. + +xdg-open is for use inside a desktop session only. It is not recommended to use +xdg-open as root. + +Options + +--help + Show command synopsis. +--manual + Show this manualpage. +--version + Show the xdg-utils version information. + +Exit Codes + +An exit code of 0 indicates success while a non-zero exit code indicates +failure. The following failure codes can be returned: + +1 + Error in command line syntax. +2 + One of the files passed on the command line did not exist. +3 + A required tool could not be found. +4 + The action failed. + +Examples + +xdg-open 'http://www.freedesktop.org/' + +Opens the Freedesktop.org website in the user's default browser + +xdg-open /tmp/foobar.png + +Opens the PNG image file /tmp/foobar.png in the user's default image viewing +application. + +_MANUALPAGE +} + +usage() +{ +cat << _USAGE +xdg-open ? opens a file or URL in the user's preferred application + +Synopsis + +xdg-open { file | URL } + +xdg-open { --help | --manual | --version } + +_USAGE +} + +#@xdg-utils-common@ + +#---------------------------------------------------------------------------- +# Common utility functions included in all XDG wrapper scripts +#---------------------------------------------------------------------------- + +DEBUG() +{ + [ -z "${XDG_UTILS_DEBUG_LEVEL}" ] && return 0; + [ ${XDG_UTILS_DEBUG_LEVEL} -lt $1 ] && return 0; + shift + echo "$@" >&2 +} + +#------------------------------------------------------------- +# Exit script on successfully completing the desired operation + +exit_success() +{ + if [ $# -gt 0 ]; then + echo "$@" + echo + fi + + exit 0 +} + + +#----------------------------------------- +# Exit script on malformed arguments, not enough arguments +# or missing required option. +# prints usage information + +exit_failure_syntax() +{ + if [ $# -gt 0 ]; then + echo "xdg-open: $@" >&2 + echo "Try 'xdg-open --help' for more information." >&2 + else + usage + echo "Use 'man xdg-open' or 'xdg-open --manual' for additional info." + fi + + exit 1 +} + +#------------------------------------------------------------- +# Exit script on missing file specified on command line + +exit_failure_file_missing() +{ + if [ $# -gt 0 ]; then + echo "xdg-open: $@" >&2 + fi + + exit 2 +} + +#------------------------------------------------------------- +# Exit script on failure to locate necessary tool applications + +exit_failure_operation_impossible() +{ + if [ $# -gt 0 ]; then + echo "xdg-open: $@" >&2 + fi + + exit 3 +} + +#------------------------------------------------------------- +# Exit script on failure returned by a tool application + +exit_failure_operation_failed() +{ + if [ $# -gt 0 ]; then + echo "xdg-open: $@" >&2 + fi + + exit 4 +} + +#------------------------------------------------------------ +# Exit script on insufficient permission to read a specified file + +exit_failure_file_permission_read() +{ + if [ $# -gt 0 ]; then + echo "xdg-open: $@" >&2 + fi + + exit 5 +} + +#------------------------------------------------------------ +# Exit script on insufficient permission to read a specified file + +exit_failure_file_permission_write() +{ + if [ $# -gt 0 ]; then + echo "xdg-open: $@" >&2 + fi + + exit 6 +} + +check_input_file() +{ + if [ ! -e "$1" ]; then + exit_failure_file_missing "file '$1' does not exist" + fi + if [ ! -r "$1" ]; then + exit_failure_file_permission_read "no permission to read file '$1'" + fi +} + +check_vendor_prefix() +{ + file_label="$2" + [ -n "$file_label" ] || file_label="filename" + file=`basename "$1"` + case "$file" in + [a-zA-Z]*-*) + return + ;; + esac + + echo "xdg-open: $file_label '$file' does not have a proper vendor prefix" >&2 + echo 'A vendor prefix consists of alpha characters ([a-zA-Z]) and is terminated' >&2 + echo 'with a dash ("-"). An example '"$file_label"' is '"'example-$file'" >&2 + echo "Use --novendor to override or 'xdg-open --manual' for additional info." >&2 + exit 1 +} + +check_output_file() +{ + # if the file exists, check if it is writeable + # if it does not exists, check if we are allowed to write on the directory + if [ -e "$1" ]; then + if [ ! -w "$1" ]; then + exit_failure_file_permission_write "no permission to write to file '$1'" + fi + else + DIR=`dirname "$1"` + if [ ! -w "$DIR" -o ! -x "$DIR" ]; then + exit_failure_file_permission_write "no permission to create file '$1'" + fi + fi +} + +#---------------------------------------- +# Checks for shared commands, e.g. --help + +check_common_commands() +{ + while [ $# -gt 0 ] ; do + parm="$1" + shift + + case "$parm" in + --help) + usage + echo "Use 'man xdg-open' or 'xdg-open --manual' for additional info." + exit_success + ;; + + --manual) + manualpage + exit_success + ;; + + --version) + echo "xdg-open 1.0.2" + exit_success + ;; + esac + done +} + +check_common_commands "$@" + +[ -z "${XDG_UTILS_DEBUG_LEVEL}" ] && unset XDG_UTILS_DEBUG_LEVEL; +if [ ${XDG_UTILS_DEBUG_LEVEL-0} -lt 1 ]; then + # Be silent + xdg_redirect_output=" > /dev/null 2> /dev/null" +else + # All output to stderr + xdg_redirect_output=" >&2" +fi + +#-------------------------------------- +# Checks for known desktop environments +# set variable DE to the desktop environments name, lowercase + +detectDE() +{ + if [ x"$KDE_FULL_SESSION" = x"true" ]; then DE=kde; + elif [ x"$GNOME_DESKTOP_SESSION_ID" != x"" ]; then DE=gnome; + elif `dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetNameOwner string:org.gnome.SessionManager > /dev/null 2>&1` ; then DE=gnome; + elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$' >/dev/null 2>&1; then DE=xfce; + fi +} + +#---------------------------------------------------------------------------- +# kfmclient exec/openURL can give bogus exit value in KDE <= 3.5.4 +# It also always returns 1 in KDE 3.4 and earlier +# Simply return 0 in such case + +kfmclient_fix_exit_code() +{ + version=`kde${KDE_SESSION_VERSION}-config --version 2>/dev/null | grep KDE` + major=`echo $version | sed 's/KDE: \([0-9]\).*/\1/'` + minor=`echo $version | sed 's/KDE: [0-9]*\.\([0-9]\).*/\1/'` + release=`echo $version | sed 's/KDE: [0-9]*\.[0-9]*\.\([0-9]\).*/\1/'` + test "$major" -gt 3 && return $1 + test "$minor" -gt 5 && return $1 + test "$release" -gt 4 && return $1 + return 0 +} + +open_kde() +{ + if kde-open -v 2>/dev/null 1>&2; then + kde-open "$1" + else + if [ x"$KDE_SESSION_VERSION" = x"4" ]; then + kfmclient openURL "$1" + else + kfmclient exec "$1" + kfmclient_fix_exit_code $? + fi + fi + + if [ $? -eq 0 ]; then + exit_success + else + exit_failure_operation_failed + fi +} + +open_gnome() +{ + if gvfs-open --help 2>/dev/null 1>&2; then + gvfs-open "$1" + else + gnome-open "$1" + fi + + if [ $? -eq 0 ]; then + exit_success + else + exit_failure_operation_failed + fi +} + +open_xfce() +{ + exo-open "$1" + + if [ $? -eq 0 ]; then + exit_success + else + exit_failure_operation_failed + fi +} + +open_generic() +{ + if mimeopen -v 2>/dev/null 1>&2; then + mimeopen -n "$1" + if [ $? -eq 0 ]; then + exit_success + fi + fi + + if which run-mailcap 2>/dev/null 1>&2 && + (echo "$1" | grep -q '^file://' || + ! echo "$1" | egrep -q '^[a-zA-Z+\.\-]+:'); then + + local file=$(echo "$1" | sed 's%^file://%%') + run-mailcap --action=view "$file" + if [ $? -eq 0 ]; then + exit_success + fi + fi + + IFS=":" + for browser in $BROWSER; do + if [ x"$browser" != x"" ]; then + + browser_with_arg=`printf "$browser" "$1" 2>/dev/null` + if [ $? -ne 0 ]; then browser_with_arg=$browser; + fi + + if [ x"$browser_with_arg" = x"$browser" ]; then "$browser" "$1"; + else $browser_with_arg; + fi + + if [ $? -eq 0 ]; then exit_success; + fi + fi + done + + exit_failure_operation_impossible "no method available for opening '$1'" +} + +[ x"$1" != x"" ] || exit_failure_syntax + +url= +while [ $# -gt 0 ] ; do + parm="$1" + shift + + case "$parm" in + -*) + exit_failure_syntax "unexpected option '$parm'" + ;; + + *) + if [ -n "$url" ] ; then + exit_failure_syntax "unexpected argument '$parm'" + fi + url="$parm" + ;; + esac +done + +if [ -z "${url}" ] ; then + exit_failure_syntax "file or URL argument missing" +fi + +detectDE + +if [ x"$DE" = x"" ]; then + # if BROWSER variable is not set, check some well known browsers instead + if [ x"$BROWSER" = x"" ]; then + BROWSER=htmlview:firefox:mozilla:netscape:links:lynx + fi + DE=generic +fi + +case "$DE" in + kde) + open_kde "$url" + ;; + + gnome) + open_gnome "$url" + ;; + + xfce) + open_xfce "$url" + ;; + + generic) + open_generic "$url" + ;; + + *) + exit_failure_operation_impossible "no method available for opening '$url'" + ;; +esac diff --git a/share/gcstar/html_models/GCboardgames/piwi b/share/gcstar/html_models/GCboardgames/piwi new file mode 100644 index 0000000..9a32430 --- /dev/null +++ b/share/gcstar/html_models/GCboardgames/piwi @@ -0,0 +1,275 @@ +[HEADER]
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
+<!--
+ Template made by Tian ( http://www.c-sait.net/ ) - Mods by Piwi -->
+<head>
+ <title>$$PAGETITLE$$</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+[JAVASCRIPT]
+ <script type="text/javascript">
+<!--
+expandTooltip="Afficher les informations du jeu";
+collapseTooltip="Masquer les informations du jeu";
+function prn(s)
+{
+ document.write(s)
+}
+function getE(id)
+{
+ return document.getElementById(id)
+}
+function expcolAll(dir,rowNum)
+{
+ for(x=0;x < rowNum;x++) {
+ try {
+ getE('movie'+x).style.display=dir
+ if(dir=="none") getE('switch'+x).innerHTML="+"
+ else getE('switch'+x).innerHTML="–"
+ }
+ catch(err) { }
+ }
+}
+function toggleDisplay(id,swt)
+{
+ if((getE(id).style.display=="")||(getE(id).style.display=="none")) {
+ getE(id).style.display="block"
+ getE(swt).innerHTML="–"
+ getE(swt).title=collapseTooltip
+ } else {
+ getE(id).style.display="none"
+ getE(swt).innerHTML="+"
+ getE(swt).title=expandTooltip
+ }
+ return false
+}
+function writeExpandControl(elementId,collapse)
+{
+ prn("<a href=\"#\" class=\"movie-expand\" id=\"switch"+elementId+"\" onclick=\"return toggleDisplay('movie"+elementId+"','switch"+elementId+"');\" title=\""+((collapse) ? expandTooltip : collapseTooltip)+"\">"+((collapse) ? "+" : "–")+"</a>")
+}
+function searchMovies(text)
+{
+ getE("collapseAll").click()
+ alldt=document.getElementsByTagName("dt")
+ alldd=document.getElementsByTagName("dd")
+ nb=alldt.length
+ re=new RegExp(text,"i")
+ for(i=0;i<nb;i++) {
+ s1=alldt[i].getElementsByTagName("a")[1].innerHTML
+ s2=alldd[i].innerHTML
+ res=0
+ if(getE("searchType").value=="all") res=(re.test(s1)||re.test(s2))
+ else res=re.test(s1)
+ if(res) st="block"
+ else st="none"
+ alldt[i].style.display=st
+ alldd[i].style.display=st
+ }
+}
+-->
+ </script>
+[/JAVASCRIPT]
+ <style type="text/css">
+ body {
+ background:#FEEFCF;
+ }
+ h1 {
+ font-weight:bold;
+ font-size:160%;
+ text-align:center;
+ margin-bottom:1em;
+ }
+ #top {
+ color:#FF912D ! important;
+ background:transparent ! important;
+ }
+ form {
+ text-align:center;
+ border:1px dashed #999999;
+ background:#FCCC67;
+ margin:0 3em;
+ padding:0.5em;
+ }
+ input, select {
+ border:1px solid #666666;
+ background: #FCCC67;
+ color: #993300;
+ margin:0 0.5em;
+ }
+ input:focus, input.submit:hover {
+ background:#FCCC67;
+ color: #993300;
+ }
+ }
+ input:hover, input.submit:hover {
+ background:#FCCC67;
+ color: #993300;
+ }
+ input.submit {
+ cursor:pointer;
+ }
+ #links {
+ margin-top:0.5em;
+ text-align:center;
+ font-size:120%;
+ color: #993300;
+ }
+ img {
+ float:left;
+ margin:0 1em 1em 1em;
+ }
+ dt {
+ color:#FF912D;
+ font-size:120%;
+ margin:0em 0.5em;
+ clear:both;
+ }
+ dd {
+ margin:0.5em 2em 1em;
+ border-left:1px dashed #FF912D;
+ border-bottom:1px dashed #FF912D;
+ }
+ table {
+ font-size:90%;
+ margin:0 1em;
+ border:1px dashed #990000;
+ width:60%;
+ color: #990000;
+ }
+ th {
+ font-weight:bold;
+ text-align:left;
+ width:25%;
+ }
+ .tr1 {
+ background:#FCCC67;
+ }
+ .tr2 {
+ background:#FCCC67;
+ }
+ a {
+ color:#ffaa00;
+ background:transparent;
+ text-decoration:none;
+ }
+ a:hover, a:focus {
+ color:#FCCC67;
+ background-color:#ffaa00;
+ }
+ .topl {
+ color:#BBBBBB;
+ font-size:90%;
+ }
+ .movie-expand {
+ width:1em;
+ text-align:center;
+ font-size:120%;
+ float:left;
+ margin:0.2em;
+ }
+ p, #note {
+ color:#993300;
+ background:#FEEFCF;
+ border:1px dashed #999999;
+ clear:left;
+ margin:1em 2em;
+ padding:0.5em;
+ }
+ .borrowed0 {
+ color:#BBBBBB;
+ background:transparent;
+ text-decoration:none;
+ font-size:50%;
+ display:block;
+ }
+ .borrowed1 {
+ color:#BBBBBB;
+ background:transparent;
+ text-decoration:none;
+ font-size:50%;
+ display:block;
+ }
+ #note {
+ text-align:center;
+ }
+ </style>
+</head>
+<body>
+ <h1><a id="top">$$PAGETITLE$$</a></h1>
+[JAVASCRIPT]
+ <form onsubmit="searchMovies(getE('searchText').value); return false" action="">
+ <div>
+ <input type="text" id="searchText" title="$$FORM_INPUT$$" size="20" />
+ <select id="searchType">
+ <option value="title">$$FORM_SEARCH1$$</option>
+ <option value="all">$$FORM_SEARCH2$$</option>
+ </select>
+ <input type="button" class="submit" value="$$FORM_SEARCHBUTTON$$" title="$$FORM_SEARCHTITLE$$" onclick="searchMovies(getE('searchText').value)" />
+ <input type="button" class="submit" value="$$FORM_ALLBUTTON$$" title="$$FORM_ALLTITLE$$" onclick="searchMovies('')" />
+ <br />
+ <br />
+ <input type="button" class="submit" value="$$FORM_EXPAND$$" onclick="expcolAll('block','$$TOTALNUMBER$$')" title="$$FORM_EXPANDTITLE$$" />
+ <input type="button" id="collapseAll" class="submit" value="$$FORM_COLLAPSE$$" onclick="expcolAll('none','$$TOTALNUMBER$$')" title="$$FORM_COLLAPSETITLE$$" />
+ </div>
+ </form>
+[/JAVASCRIPT]
+ <div id="links">| _ | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |</div>
+ <dl>
+[/HEADER]
+[ITEM]
+ <dt>
+[JAVASCRIPT]
+ <script type="text/javascript">writeExpandControl('$$IDX$$',1)</script>
+[/JAVASCRIPT]
+ <a id="movielink_$$IDX$$" href="$$URL$$">$$TITLE_FIELD$$</a> | <a class="topl" href="#top">($$TOP$$)</a>
+ <span class="borrowed$$borrower_FLAG$$">$$borrower_YESNO$$$$borrower_OREMPTY$$</span>
+ </dt>
+ <dd>
+ <div id="movie$$IDX$$" style="display:none;">
+ <img src="$$boxpic$$" alt="$$name$$" title= "$$name$$" height="$$HEIGHT_PIC$$" />
+ <table>
+ <tr class="tr1"><th>$$playingtime_LABEL$$</th><td>$$playingtime$$</td></tr>
+ <tr class="tr2"><th>$$mechanics_LABEL$$</th><td>$$mechanics$$</td></tr>
+ <tr class="tr1"><th>$$suggestedage_LABEL$$</th><td>$$suggestedage$$</td></tr>
+ <tr class="tr2"><th>$$players_LABEL$$</th><td>$$players$$</td></tr>
+ <tr class="tr1"><th>$$publishedby_LABEL$$</th><td>$$publishedby$$</td></tr>
+ <tr class="tr2"><th>$$designedby_LABEL$$</th><td>$$designedby$$</td></tr>
+ <tr class="tr1"><th>$$illustratedby_LABEL$$</th><td>$$illustratedby$$</td></tr>
+ <tr class="tr2"><th>$$original_LABEL$$</th><td>$$original$$</td></tr>
+ <tr class="tr1"><th>$$expandedby_LABEL$$</th><td>$$expandedby$$</td></tr>
+ <tr class="tr2"><th>$$expansionfor_LABEL$$</th><td>$$expansionfor$$</td></tr>
+ <tr class="tr1"><th>$$released_LABEL$$</th><td>$$released$$</td></tr>
+ </table>
+ <p>$$description$$<br /><br /><em>$$comment$$</em></p>
+ </div>
+ </dd>
+[/ITEM]
+[FOOTER]
+ </dl>
+ <div id="note">$$GENERATOR_NOTE$$ - Modèle Piwi - Adapté de Tian</div>
+</body>
+</html>
+[/FOOTER]
+[POST]
+
+ my %letters = ();
+ my $idx = 0; foreach (@items)
+ {
+ my $firstLetter = uc(substr($_->{name}, 0, 1));
+ $firstLetter =~ s/[^A-Z]/_/;
+ if (!$letters{$firstLetter})
+ {
+ $body =~ s/<a id="movielink_$idx"/<a id="$firstLetter"/;
+ $letters{$firstLetter} = 1;
+ }
+ $idx++;
+ }
+
+ foreach (keys %letters)
+ {
+ $header =~ s/\| $_ \|/| <a class="letter" href="#$_">$_<\/a> |/;
+ }
+ $header =~ s/\| ([^<|]) /| <span class="letter">$1<\/span> /g;
+ #$header =~ s/\| ([^<]) \|/| <span class="letter">$1<\/span> |/g;
+[/POST]
\ No newline at end of file diff --git a/share/gcstar/html_models/GCboardgames/piwi.png b/share/gcstar/html_models/GCboardgames/piwi.png Binary files differnew file mode 100644 index 0000000..bbd6ce8 --- /dev/null +++ b/share/gcstar/html_models/GCboardgames/piwi.png diff --git a/share/gcstar/html_models/GCbooks/FloFred b/share/gcstar/html_models/GCbooks/FloFred new file mode 100644 index 0000000..59c625a --- /dev/null +++ b/share/gcstar/html_models/GCbooks/FloFred @@ -0,0 +1,73 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template par Florent pour fred. Adapaté de rootII. +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body +{ + color:black; +} +.borrowed1 +{ + color:#777777; + font-style:italic; +} +#legend +{ + margin:1em; + border:1px solid black; + display:inline; + padding:0.5em; +} +#note +{ + border-top:1px solid black; + margin:3em 8%; + margin-bottom:2em; + padding-top:0.5em; + text-align:center; + font-size:90%; +} +#note a +{ + color:black ! important; + text-decoration:underline; + font-weight:bold; +} +</style> +</head> +<body> +<h1>$$PAGETITLE$$</h1> +<table border="0" align="center" cellspacing="0" cellpadding="0" width="80%"> +<tr><td><br><hr></td></tr> +[/HEADER] +[ITEM] +<tr><td> +<table border="0" cellspacing="10" cellpadding="0" width="100%"> + <tr><td colspan="3"><strong>$$title$$</strong></td></tr> + <tr><td rowspan="5" width="80"><img src="$$cover$$" height="$$HEIGHT_PIC$$" alt="$$title$$" title="$$title$$" border="0"/></td></tr> + <tr><td style="font-size:10pt;" width="100"><b>$$authors_LABEL$$$$SEPARATOR$$</b></td><td style="font-size:10pt;">$$authors$$ </td></tr> + <tr><td style="font-size:10pt;" width="100"><b>$$publisher_LABEL$$$$SEPARATOR$$</b></td><td style="font-size:10pt;">$$publisher$$</td></tr> + <tr><td style="font-size:10pt;" width="100"><b>$$publication_LABEL$$$$SEPARATOR$$</b></td><td style="font-size:10pt;">$$publication$$</td></tr> + <tr><td style="font-size:10pt;" width="100"><b>$$format_LABEL$$$$SEPARATOR$$</b></td><td style="font-size:10pt;">$$format$$</td></tr> + <tr><td colspan="3" style="font-size:10pt;">$$description$$</td></tr> +</table> +</td></tr> +<tr><td><br><hr></td></tr> +[/ITEM] +[FOOTER] +</table> +<p id="note">$$GENERATOR_NOTE$$ - Design Florent</p> +</body> +</html> +[/FOOTER] +[POST] +[/POST] + + + diff --git a/share/gcstar/html_models/GCbooks/FloFred.png b/share/gcstar/html_models/GCbooks/FloFred.png Binary files differnew file mode 100644 index 0000000..050fd0a --- /dev/null +++ b/share/gcstar/html_models/GCbooks/FloFred.png diff --git a/share/gcstar/html_models/GCbooks/NellistosDark b/share/gcstar/html_models/GCbooks/NellistosDark new file mode 100644 index 0000000..79b983d --- /dev/null +++ b/share/gcstar/html_models/GCbooks/NellistosDark @@ -0,0 +1,67 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template mady by Nellistos. + nellistos@hotmail.com +--> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>$$PAGETITLE$$</title> + <style type="text/css"> + body{font-family:sans;font-size:0.7em; background-color: #151515; color: #fff;} + h1{text-align:center;} + label{font-weight:bold;} + a {color:#36A0A6;font-weight:bold;} + + .books{margin:50px;} + ul.bookslist{list-style:none;margin:0px;padding:0;} + ul.bookslist li {margin:35px 0px 0px 0px;padding:5px 5px 5px 5px;border-top:1px solid #555;border-bottom:1px solid #555; background-color: #333;} + ul.fieldslist{margin:0;padding:0;} + ul.fieldslist li {margin:0;padding:0;border:none;} + + .details{margin-top:5px;padding: 5px 5px 5px 5px;} + .image{float:left;padding:0; margin:0px 25px 0px 0px;} + .clear{clear:both;} + </style> +</head> +<body> + <h1>$$PAGETITLE$$</h1> + <div class="books"> + <ul class="bookslist"> +[/HEADER] +[ITEM] + <li> + <div class="item"> + <div class="caption"><a href="$$gcsfield1$$">$$title$$</a></div> + <div class="details"> + <div class="image"><img src="$$cover$$" height="$$HEIGHT_PIC$$" alt="Book cover" title="$$title$$"/></div> + <div class="fields"> + <ul class="fieldslist"> + <li><label>$$authors_LABEL$$$$SEPARATOR$$</label>$$authors$$</li> + <li><label>$$publisher_LABEL$$$$SEPARATOR$$</label>$$publisher$$</li> + <li><label>$$publication_LABEL$$$$SEPARATOR$$</label>$$publication$$</li> + <li><label>$$format_LABEL$$$$SEPARATOR$$</label>$$format$$</li> + <li><label>$$tag_LABEL$$$$SEPARATOR$$</label>$$tags$$</li> + </ul> + </div> + </div> + <div class="description"><small>$$description$$</small> </div> + </div> + <div class="clear"/> + </li> +[/ITEM] +[FOOTER] + </ul> + </div> + <div align="center">Design <a href="mailto:nellistos@hotmail.com">Nellistos</a> + <br/> + <small><i>based on microFormats Spec</i></small></div> +</body> +</html> +[/FOOTER] +[POST] +[/POST] + + + diff --git a/share/gcstar/html_models/GCbooks/NellistosDark.png b/share/gcstar/html_models/GCbooks/NellistosDark.png Binary files differnew file mode 100644 index 0000000..ca505cd --- /dev/null +++ b/share/gcstar/html_models/GCbooks/NellistosDark.png diff --git a/share/gcstar/html_models/GCbooks/NellistosLight b/share/gcstar/html_models/GCbooks/NellistosLight new file mode 100644 index 0000000..2cf897d --- /dev/null +++ b/share/gcstar/html_models/GCbooks/NellistosLight @@ -0,0 +1,66 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template mady by Nellistos. + nellistos@hotmail.com +--> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>$$PAGETITLE$$</title> + <style type="text/css"> + body{font-family:sans;font-size:0.7em; background-color: #fff; color: #000;} + h1{text-align:center;} + label{font-weight:bold;} + + .books{margin:50px;} + ul.bookslist{list-style:none;margin:0px;padding:0;} + ul.bookslist li {margin:35px 0px 0px 0px;padding:5px 5px 5px 5px;border-top:1px solid #cdcdcd;border-bottom:1px solid #cdcdcd; background-color: #fff;} + ul.fieldslist{margin:0;padding:0;} + ul.fieldslist li {margin:0;padding:0;border:none;} + + .details{margin-top:5px;padding: 5px 5px 5px 5px;} + .image{float:left;padding:0; margin:0px 25px 0px 0px;} + .clear{clear:both;} + </style> +</head> +<body> + <h1>$$PAGETITLE$$</h1> + <div class="books"> + <ul class="bookslist"> +[/HEADER] +[ITEM] + <li> + <div class="item"> + <div class="caption"><a href="$$gcsfield1$$">$$title$$</a></div> + <div class="details"> + <div class="image"><img src="$$cover$$" height="$$HEIGHT_PIC$$" alt="Book cover" title="$$title$$"/></div> + <div class="fields"> + <ul class="fieldslist"> + <li><label>$$authors_LABEL$$$$SEPARATOR$$</label>$$authors$$</li> + <li><label>$$publisher_LABEL$$$$SEPARATOR$$</label>$$publisher$$</li> + <li><label>$$publication_LABEL$$$$SEPARATOR$$</label>$$publication$$</li> + <li><label>$$format_LABEL$$$$SEPARATOR$$</label>$$format$$</li> + <li><label>$$tag_LABEL$$$$SEPARATOR$$</label>$$tags$$</li> + </ul> + </div> + </div> + <div class="description"><small>$$description$$</small> </div> + </div> + <div class="clear"/> + </li> +[/ITEM] +[FOOTER] + </ul> + </div> + <div align="center">Design <a href="mailto:nellistos@hotmail.com">Nellistos</a> + <br/> + <small><i>based on microFormats Spec</i></small></div> +</body> +</html> +[/FOOTER] +[POST] +[/POST] + + + diff --git a/share/gcstar/html_models/GCbooks/NellistosLight.png b/share/gcstar/html_models/GCbooks/NellistosLight.png Binary files differnew file mode 100644 index 0000000..3186e1b --- /dev/null +++ b/share/gcstar/html_models/GCbooks/NellistosLight.png diff --git a/share/gcstar/html_models/GCbooks/Shelf b/share/gcstar/html_models/GCbooks/Shelf new file mode 100644 index 0000000..72def06 --- /dev/null +++ b/share/gcstar/html_models/GCbooks/Shelf @@ -0,0 +1,12 @@ +<metamodel> + <model>Shelf</model> + <fields> + <field>authors</field> + <field>publisher</field> + <field>publication</field> + <field>description</field> + <field>format</field> + <field>rating</field> + <field>acquisition</field> + </fields> +</metamodel>
\ No newline at end of file diff --git a/share/gcstar/html_models/GCbooks/Shelf.png b/share/gcstar/html_models/GCbooks/Shelf.png Binary files differnew file mode 100644 index 0000000..a74305b --- /dev/null +++ b/share/gcstar/html_models/GCbooks/Shelf.png diff --git a/share/gcstar/html_models/GCbooks/Simple b/share/gcstar/html_models/GCbooks/Simple new file mode 100644 index 0000000..b737209 --- /dev/null +++ b/share/gcstar/html_models/GCbooks/Simple @@ -0,0 +1,10 @@ +<metamodel> + <model>Simple</model> + <fields> + <field>title</field> + <field>authors</field> + <field>publisher</field> + <field>publication</field> + <field>format</field> + </fields> +</metamodel>
\ No newline at end of file diff --git a/share/gcstar/html_models/GCbooks/Simple.png b/share/gcstar/html_models/GCbooks/Simple.png Binary files differnew file mode 100644 index 0000000..341a1f7 --- /dev/null +++ b/share/gcstar/html_models/GCbooks/Simple.png diff --git a/share/gcstar/html_models/GCcoins/Simple b/share/gcstar/html_models/GCcoins/Simple new file mode 100644 index 0000000..2111fe2 --- /dev/null +++ b/share/gcstar/html_models/GCcoins/Simple @@ -0,0 +1,11 @@ +<metamodel> + <model>Simple</model> + <fields> + <field>type</field> + <field>currency</field> + <field>value</field> + <field>year</field> + <field>country</field> + <field>condition</field> + </fields> +</metamodel>
\ No newline at end of file diff --git a/share/gcstar/html_models/GCcoins/Simple.png b/share/gcstar/html_models/GCcoins/Simple.png Binary files differnew file mode 100644 index 0000000..8052733 --- /dev/null +++ b/share/gcstar/html_models/GCcoins/Simple.png diff --git a/share/gcstar/html_models/GCfilms/Flat b/share/gcstar/html_models/GCfilms/Flat new file mode 100644 index 0000000..a33d302 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Flat @@ -0,0 +1,109 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Yanbab. Flat and compact list. +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> + +body { + color:black; + background-color : white; + font-family : arial, sans-serif; + font-size : 12px; + margin : 10px; +} + +td { + font-family : arial, sans-serif; + font-size : 12px; +} + +h1 { + font-size:130%; + font-weight:bold; + border-bottom : solid black 1px; + margin:0px; +} + +.borrowed1 { +} + +#footer { + border-top : solid black 1px; + font-size:small; + color : #666; +} +a { + color : #666; + text-decoration : none; + +} +a:hover { + text-decoration : underline; +} +#total { + float: right; + font-weight: bold; +} +.title { + font-size : 110%; + font-weight : bold; +} + +.synopsis { + margin-top : .6em; + text-align : justify; + + margin-bottom : 1.5em; + color : #333; +} + +.image { + margin-bottom : 1.5em; +} + +.detail { + float : right; + text-align : right; + color : #888; +} +</style> +</head> +<body> +<div id="total">$$TOTALNUMBER$$ $$ITEMS$$</div> +<h1>$$PAGETITLE$$</h1> +<table cellpadding="8" cellspacing="0"> +[/HEADER] +[ITEM] +<tr class="borrowed$$borrower_FLAG$$"> + <td valign="top" align="center" bgcolor="#ddd" width="80" > + <img align="top" src="$$image$$" height="$$HEIGHT_PIC$$" border="0" alt="$$title$$" title="$$title$$" class="image"> + </td> + <td valign="top"> + <div class="detail">$$genre$$ - $$country$$ - $$time$$<br> + $$date$$</div> + + <div class="title">$$title$$</div> + $$director$$ <br> + + <div class="synopsis">$$actors_LABEL$$$$SEPARATOR$$$$actors$$<br> + $$synopsis$$ + </div> + + </td> +</tr> +[/ITEM] +[FOOTER] +</table> +<div id="footer"> + $$GENERATOR_NOTE$$ +</div> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCfilms/Flat.png b/share/gcstar/html_models/GCfilms/Flat.png Binary files differnew file mode 100644 index 0000000..5373102 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Flat.png diff --git a/share/gcstar/html_models/GCfilms/Shelf b/share/gcstar/html_models/GCfilms/Shelf new file mode 100644 index 0000000..1a7d7ae --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Shelf @@ -0,0 +1,284 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Tian. It emulates a shelf display. +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body +{ + color:black; +} +h1 +{ + text-align:left; + margin-left:0.5em; + font-size:200%; + font-weight:bold; + color:#6c7b8b; +} +h2 +{ + font-size:150%; + text-align:center; + color:#1c86ee; + font-weight:bold; +} +h3 +{ + font-size:120%; + font-weight:bold; + margin:1em 0; + color:#6c7b8b; + border-bottom:1px dashed #6c7b8b; +} +#left +{ +[JAVASCRIPT] + width:48%; +[/JAVASCRIPT] + border:1px dashed #6c7b8b; + background:#f0f0f0; +} +.imgbox +{ + float:left; + padding:2em 1em 0em; + margin:0; +} +img +{ + margin:0; + padding:0; +[JAVASCRIPT] + cursor:pointer; +[/JAVASCRIPT] +} +.imginfo +{ + float:left; + margin-top:0.5em; +[JAVASCRIPT] + cursor:default; +[/JAVASCRIPT] +} +.synopsis +{ + height:8em; + overflow:auto; + padding:0.2em; + background:#f0f0f0; +} +table +{ + margin:0 0.5em; +} +th +{ + font-weight:bold; + text-align:left; + white-space:nowrap; + padding:0.5em; + background:#f0f0f0; +} +td +{ + padding:0.5em; + background:#f0f0f0; +} +#note +{ + text-align:center; + padding-top:0.5em; +[JAVASCRIPT] + width:48%; +[/JAVASCRIPT] + color:#6c7b8b; +} +#note a +{ + font-weight:bold; + color:#1c86ee; +} +#note a:hover +{ + color:#6c7b8b; +} +.spacer +{ + clear: both; +} +[JAVASCRIPT] +.expander +{ + padding:0; + width:1em; + display:block; + float:left; + text-align:center; + margin-right:0.5em; + cursor:pointer; +} +[/JAVASCRIPT] +.info +{ + position:fixed; + top:0; + right:1%; + width:48%; + display:none; +} +.details +{ + overflow: auto; + height: 500px; +} +</style> +[JAVASCRIPT] +<script type="text/javascript"> +<!-- +function getBoxes() +{ + return document.getElementById("left").getElementsByTagName("div") +} +function getHeight() +{ + //From http://www.howtocreate.co.uk/tutorials/javascript/browserwindow + myHeight = 0; + if( typeof( window.innerWidth ) == 'number' ) { + //Non-IE + myHeight = window.innerHeight; + } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { + //IE 6+ in 'standards compliant mode' + myHeight = document.documentElement.clientHeight; + } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { + //IE 4 compatible + myHeight = document.body.clientHeight; + } + return myHeight - 150; +} +function init() +{ + // CSS changes from http://www.quirksmode.org/dom/changess.html + if (!document.styleSheets) return; + var theRules = new Array(); + if (document.styleSheets[0].cssRules) + theRules = document.styleSheets[0].cssRules + else if (document.styleSheets[0].rules) + theRules = document.styleSheets[0].rules + theRules[theRules.length-1].style.height = getHeight()+'px'; + + boxes = getBoxes() + for(i=0; i < boxes.length; i++) + { + box = boxes[i] + if (box.className == "movie") + { + boxes2 = box.getElementsByTagName("div") + boxes2[0].onclick = function(evt) + { + div = this.parentNode + showMe(div.getElementsByTagName("div")[1], this) + } + } + } + headers = document.getElementById("left").getElementsByTagName("h3") + for(i=0; i < headers.length; i++) + { + header = headers[i] + header.style.cursor = 'pointer' + header.innerHTML = '<span class="expander">−</span> ' + header.innerHTML + header.onclick = function(evt) + { + table = this.nextSibling + while (table.tagName != "TABLE") { table = table.nextSibling } + if (table.style.display == "none") + { + table.style.display = "table" + this.innerHTML = this.innerHTML.replace(/\+<\/span>/, '−</span>') + } + else + { + table.style.display = "none" + this.innerHTML = this.innerHTML.replace(/−<\/span>/, '+</span>') + } + } + } +} +var currentBox = 0 +var currentImg = 0 +function showMe(box, img) +{ + hidePrevious() + box.style.display = "block" + img.style.background = "#4b4f63" + img.style.padding = "1em" + currentBox = box + currentImg = img +} +function hidePrevious() +{ + if (currentBox) + { + currentBox.style.display = "none" + currentImg.style.background = "#f0f0f0" + currentImg.style.padding = "2em 1em 0em" + } +} +--> +</script> +[/JAVASCRIPT] +</head> +<body [JAVASCRIPT]onload="init()"[/JAVASCRIPT]> +<h1>$$PAGETITLE$$</h1> +<div id="left"> +[/HEADER] +[ITEM] +<div class="movie"> + <div class="imgbox"> + <img src="$$image$$" height="$$HEIGHT_PIC$$" alt="$$title$$" title="$$title$$" /> + </div> + <div class="info"> + <h2>$$title$$</h2> + <div class="details"> + <h3>$$info_LABEL$$</h3> + <table> + <tr> + <td rowspan="5" width="10%"> + <img class="imginfo" src="$$image$$" height="$$HEIGHT_PIC$$" alt="$$title$$" title="$$title$$" /> + </td> + <th>$$date_LABEL$$</th><td>$$date$$</td> + </tr> + <tr><th>$$director_LABEL$$</th><td>$$director$$</td></tr> + <tr><th>$$time_LABEL$$</th><td>$$time$$</td></tr> + <tr><th>$$genre_LABEL$$</th><td>$$genre$$</td></tr> + <tr><th>$$actors_LABEL$$</th><td>$$actors$$</td></tr> + <tr> + <td colspan="3"> + <p class="synopsis"> + $$synopsis$$ + </p> + </td> + </table> + <h3>$$details_LABEL$$</h3> + <table> + <tr><th>$$rating_LABEL$$</th><td>$$rating$$/10</td></tr> + <tr><th>$$format_LABEL$$</th><td>$$format$$ ($$number$$)</td></tr> + <tr><th>$$borrower_LABEL$$</th><td>$$borrower$$</td></tr> + </table> + </div> + </div> +</div> +[/ITEM] +[FOOTER] +<div class="spacer"> </div> +</div> +<p id="note">$$GENERATOR_NOTE$$</p> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCfilms/Shelf.png b/share/gcstar/html_models/GCfilms/Shelf.png Binary files differnew file mode 100644 index 0000000..f4423d0 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Shelf.png diff --git a/share/gcstar/html_models/GCfilms/Simple b/share/gcstar/html_models/GCfilms/Simple new file mode 100644 index 0000000..ee5a5f8 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Simple @@ -0,0 +1,100 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Tian. A really simple list that could be printed +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body +{ + color:black; +} +h1 +{ + text-align:center; + font-size:200%; + font-weight:bold; +} +table +{ + border-collapse:collapse; + margin:1em 5%; + margin-bottom:3em; + width:90%; +} +tr+tr +{ + border-top:1px solid black; +} +.borrowed1 +{ + color:#777777; + font-style:italic; +} +th +{ + border-bottom:2px solid black; + margin:0; + padding:1em; + font-weight:bold; +} +td +{ + padding:0.2em 1em; +} +#legend +{ + margin:1em; + border:1px solid black; + display:inline; + padding:0.5em; +} +#note +{ + border-top:1px solid black; + margin:3em 8%; + margin-bottom:2em; + padding-top:0.5em; + text-align:center; + font-size:90%; +} +#note a +{ + color:black ! important; + text-decoration:underline; + font-weight:bold; +} +</style> +</head> +<body> +<h1>$$PAGETITLE$$</h1> +<table> +<tr> + <th>$$title_LABEL$$</th> + <th>$$director_LABEL$$</th> + <th>$$genre_LABEL$$</th> + <th>$$date_LABEL$$</th> + <th>$$time_LABEL$$</th> +</tr> +[/HEADER] +[ITEM] +<tr class="borrowed$$borrower_FLAG$$"> + <td>$$title$$</td> + <td>$$director$$</td> + <td>$$genre$$</td> + <td>$$date$$</td> + <td>$$time$$</td> +</tr> +[/ITEM] +[FOOTER] +</table> +<p id="legend" class="borrowed1">$$BORROWED_ITEMS$$</p> +<p id="note">$$GENERATOR_NOTE$$</p> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCfilms/Simple.png b/share/gcstar/html_models/GCfilms/Simple.png Binary files differnew file mode 100644 index 0000000..3e23235 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Simple.png diff --git a/share/gcstar/html_models/GCfilms/Tabs b/share/gcstar/html_models/GCfilms/Tabs new file mode 100644 index 0000000..bec3b18 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Tabs @@ -0,0 +1,245 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Tian. It emulates a notebook display. +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body { + margin:0; + padding:0; + background:white; +} +h1 { + text-align:center; + color:#7c551a; +} +h2 { + background:transparent; + margin:0 0 1em; + color:#ffffff; +} +.movie { + height:18em; + clear:both; + margin:1em; + padding:0.5em; + background:#e3c79e; + border:1px dashed #7c551a; +} +.imgbox { + text-align:center; + float:left; + margin-right:1em; + width:120px; +} +h3 { + color:#513D23; + background:#ffffff; + cursor:default; + margin:0; + padding:0.4em; + display:none; + font-size:100%; + border-left:0.1em solid black; + border-bottom:0.1em solid white; + border-right:0.1em solid black; + border-top:0.1em solid black; + -moz-border-radius-topright:2em; + z-index:99; + position:relative; +} +div > h3 +{ + display:block; +} +.details h3, .synopsis h3 { + background:#ffffff; + border-bottom:0.1em solid black; +} +.info, .details, .synopsis { + float:left; + width:12em; +} +.info dl, .details dl, .synopsis p { + border:0.1em solid black; + padding:1em 0.5em 0.5em; + margin:-0.1em 0 0; + z-index:1; + position:relative; + width:45em; + height:10em; + background:white; +} +.details dl, .synopsis p { + display:none; + margin-left:-11.8em; + width:44.8em; +} +.synopsis p { + margin-left:-23.8em; +} +dt { + float:left; + width:10em; + font-weight:bold; + height:1.5em; + color:#A49480; +} +dd { + padding:0; + margin-left:10em; + height:1.5em; + color:#555555; +} +#note { + text-align:center; + margin:2em 5em; + background:#e3c79e; + border:1px solid #7c551a; + padding:0.3em; +} +#note a { + font-weight:bold; + color:#7c551a; +} +[NOJAVASCRIPT] +.info:hover dl,.details:hover dl, .synopsis:hover p { + padding-top:1em; + display:block; + color:#555555; + z-index:2; +} +.details:hover dl, .synopsis:hover p { + border:0; + border-top:0.1em solid black; + margin-top:-0.1em; + margin-left:-11.9em; + height:9.9em; + z-index:100; +} +.synopsis:hover p { + margin-left:-23.9em; +} +.info:hover h3, .details:hover h3, .synopsis:hover h3 { + background:#ffffff; + border-bottom:0; + border-bottom:0.1em solid white; + z-index:999; +} +[/NOJAVASCRIPT] +[JAVASCRIPT] +h3 { + cursor:pointer; + background:#e8ded0 ! important; +} +.details_active dl, .synopsis_active p { + padding-top:1em; + display:block; + color:#555555; + z-index:2; +} +.details_active dl, .synopsis_active p { + border:0; + border-top:0.1em solid black; + margin-top:-0.1em; + margin-left:-11.9em; + height:9.9em; + z-index:100; +} +.synopsis_active p { + margin-left:-23.9em; +} +.info_active h3, .details_active h3, .synopsis_active h3 { + background:#ffffff ! important; + border-bottom:0.1em solid white; + z-index:999; +} +.synopsis p { + overflow:auto; +} +[/JAVASCRIPT] +</style> +[JAVASCRIPT] +<script type="text/javascript"> +<!-- + function showMe(cssClass, objectId) + { + divs = document.getElementById('movie'+objectId).getElementsByTagName("div") + for(i=0; i < divs.length; i++) + { + if ((divs[i].className != 'imgbox') && (divs[i].className.substr(0,4) != 'note')) + { + if (divs[i].className.indexOf(cssClass) != -1) + { + divs[i].className = cssClass + '_active ' + cssClass + } + else + { + idx = divs[i].className.indexOf(' ') + if (idx != -1) + { + //alert('Setting ' + divs[i].className.substring(idx + 1)) + divs[i].className = divs[i].className.substring(idx + 1) + } + } + } + } + } +--> +</script> +[/JAVASCRIPT] +</head> +<body> +<h1>$$PAGETITLE$$</h1> +[/HEADER] +[ITEM] +<div class="movie" id="movie$$IDX$$"> + <h2>$$title$$</h2> + <div class="imgbox"> + <img src="$$image$$" height="$$HEIGHT_PIC$$" alt="$$title$$" title="$$title$$" /> + </div> + <div class="info[JAVASCRIPT]_active info[/JAVASCRIPT]"> + <h3[JAVASCRIPT] onclick="showMe('info', $$IDX$$)"[/JAVASCRIPT]>$$info_LABEL$$</h3> + <dl> + <dt>$$date_LABEL$$</dt> + <dd>$$date$$</dd> + <dt>$$director_LABEL$$</dt> + <dd>$$director$$</dd> + <dt>$$time_LABEL$$</dt> + <dd>$$time$$</dd> + <dt>$$genre_LABEL$$</dt> + <dd>$$genre$$</dd> + <dt>$$actors_LABEL$$</dt> + <dd>$$actors$$</dd> + </dl> + </div> + <div class="details"> + <h3[JAVASCRIPT] onclick="showMe('details', $$IDX$$)"[/JAVASCRIPT]>$$details_LABEL$$</h3> + <dl> + <dt>$$rating_LABEL$$</dt> + <dd><div class="note$$RATING$$">$$rating$$/10</div></dd> + <dt>$$format_LABEL$$</dt> + <dd>$$format$$ ($$number$$)</dd> + <dt>$$audio_LABEL$$</dt> + <dd>$$audio$$</dd> + <dt>$$borrower_LABEL$$</dt> + <dd>$$borrower$$</dd> + </dl> + </div> + <div class="synopsis"> + <h3[JAVASCRIPT] onclick="showMe('synopsis', $$IDX$$)"[/JAVASCRIPT]>$$synopsis_LABEL$$</h3> + <p>$$synopsis$$</p> + </div> +</div> +[/ITEM] +[FOOTER] +<div id="note">$$GENERATOR_NOTE$$</div> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCfilms/Tabs.png b/share/gcstar/html_models/GCfilms/Tabs.png Binary files differnew file mode 100644 index 0000000..fc217aa --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Tabs.png diff --git a/share/gcstar/html_models/GCfilms/Tian b/share/gcstar/html_models/GCfilms/Tian new file mode 100644 index 0000000..c87d34f --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Tian @@ -0,0 +1,276 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> +<!-- + Template made by Tian. It is based on design of Tian's website: + http://www.c-sait.net/ +--> +<head> + <title>$$PAGETITLE$$</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +[JAVASCRIPT] + <script type="text/javascript"> +<!-- +expandTooltip="Afficher les informations du film"; +collapseTooltip="Masquer les informations du film"; +function prn(s) +{ + document.write(s) +} +function getE(id) +{ + return document.getElementById(id) +} +function expcolAll(dir,rowNum) +{ + for(x=0;x < rowNum;x++) { + try { + getE('movie'+x).style.display=dir + if(dir=="none") getE('switch'+x).innerHTML="+" + else getE('switch'+x).innerHTML="–" + } + catch(err) { } + } +} +function toggleDisplay(id,swt) +{ + if((getE(id).style.display=="")||(getE(id).style.display=="none")) { + getE(id).style.display="block" + getE(swt).innerHTML="–" + getE(swt).title=collapseTooltip + } else { + getE(id).style.display="none" + getE(swt).innerHTML="+" + getE(swt).title=expandTooltip + } + return false +} +function writeExpandControl(elementId,collapse) +{ + prn("<a href=\"#\" class=\"movie-expand\" id=\"switch"+elementId+"\" onclick=\"return toggleDisplay('movie"+elementId+"','switch"+elementId+"');\" title=\""+((collapse) ? expandTooltip : collapseTooltip)+"\">"+((collapse) ? "+" : "–")+"</a>") +} +function searchMovies(text) +{ + getE("collapseAll").click() + alldt=document.getElementsByTagName("dt") + alldd=document.getElementsByTagName("dd") + nb=alldt.length + re=new RegExp(text,"i") + for(i=0;i<nb;i++) { + s1=alldt[i].getElementsByTagName("a")[1].innerHTML + s2=alldd[i].innerHTML + res=0 + if(getE("searchType").value=="all") res=(re.test(s1)||re.test(s2)) + else res=re.test(s1) + if(res) st="block" + else st="none" + alldt[i].style.display=st + alldd[i].style.display=st + } +} +--> + </script> +[/JAVASCRIPT] + <style type="text/css"> + body { + background:#f7f8ff; + } + h1 { + font-weight:bold; + font-size:160%; + text-align:center; + margin-bottom:1em; + } + #top { + color:#624a66 ! important; + background:transparent ! important; + } + form { + text-align:center; + border:1px solid #c0c0c0; + background:#e2e2df; + margin:0 3em; + padding:0.5em; + } + input,select { + border:2px solid #aaaaaa; + background:purple; + color:white; + margin:0 0.5em; + } + input:focus, input.submit:hover { + background:#f3e3f9; + color:black; + } + input.submit { + cursor:pointer; + } + #links { + margin-top:0.5em; + text-align:center; + font-size:120%; + color:#aaaaaa; + } + .letter { + padding:0 0.5em; + } + img { + float:left; + margin:0 1em 1em 1em; + } + dt { + color:#aaaaaa; + font-size:120%; + margin:0em 0.5em; + clear:both; + } + dd { + margin:0.5em 2em 1em; + border-left:1px solid #2e3766; + border-bottom:1px solid #2e3766; + } + table { + font-size:90%; + margin:0 1em; + border:1px solid black; + width:60%; + } + th { + font-weight:bold; + text-align:left; + width:25%; + } + .tr1 { + background:#d4cce0; + } + .tr2 { + background:#c0b9cc; + } + a { + color:#2e3766; + background:transparent; + text-decoration:none; + } + a:hover, a:focus { + background-color:#e8e8ef; + } + .topl { + color:#aaaaaa; + font-size:90%; + } + .movie-expand { + width:1em; + text-align:center; + font-size:120%; + float:left; + margin:0.2em; + } + p, #note { + background:white; + border:2px solid purple; + clear:left; + margin:1em 2em; + padding:0.5em; + } + .borrowed0 { + font-size:80%; + color:#c0b9cc; + background:transparent; + text-decoration:none; + display:block; + } + .borrowed1 { + font-size:80%; + color:purple; + background:transparent; + text-decoration:none; + display:block; + } + #note { + text-align:center; + } + #note a { + text-decoration:underline; + } + </style> +</head> +<body> + <h1><a id="top">$$PAGETITLE$$</a></h1> +[JAVASCRIPT] + <form onsubmit="searchMovies(getE('searchText').value); return false" action=""> + <div> + <input type="text" id="searchText" title="$$FORM_INPUT$$" /> + <select id="searchType"> + <option value="title">$$FORM_SEARCH1$$</option> + <option value="all">$$FORM_SEARCH2$$</option> + </select> + <input type="button" class="submit" value="$$FORM_SEARCHBUTTON$$" title="$$FORM_SEARCHTITLE$$" onclick="searchMovies(getE('searchText').value)" /> + <input type="button" class="submit" value="$$FORM_ALLBUTTON$$" title="$$FORM_ALLTITLE$$" onclick="searchMovies('')" /> + <br /> + <br /> + <input type="button" class="submit" value="$$FORM_EXPAND$$" onclick="expcolAll('block','$$TOTALNUMBER$$')" title="$$FORM_EXPANDTITLE$$" /> + <input type="button" id="collapseAll" class="submit" value="$$FORM_COLLAPSE$$" onclick="expcolAll('none','$$TOTALNUMBER$$')" title="$$FORM_COLLAPSETITLE$$" /> + </div> + </form> +[/JAVASCRIPT] + <div id="links">| _ | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |</div> + <dl> +[/HEADER] +[ITEM] + <dt> +[JAVASCRIPT] + <script type="text/javascript">writeExpandControl('$$IDX$$',1)</script> +[/JAVASCRIPT] + <a id="movielink_$$IDX$$" href="$$URL$$">$$title$$</a> | <a class="topl" href="#top">($$TOP$$)</a> + <span class="borrowed$$borrower_FLAG$$">$$borrower_YESNO$$$$borrower_OREMPTY$$</span> + </dt> + <dd> + <div id="movie$$IDX$$" style="display:none;"> + <img src="$$image$$" alt="$$title$$" title= "$$title$$" height="$$HEIGHT_PIC$$" /> + <table> + <tr class="tr1"><th>$$time_LABEL$$</th><td>$$time$$</td></tr> + <tr class="tr2"><th>$$genre_LABEL$$</th><td>$$genre$$</td></tr> + <tr class="tr1"><th>$$date_LABEL$$</th><td>$$date$$</td></tr> + <tr class="tr2"><th>$$director_LABEL$$</th><td>$$director$$</td></tr> + <tr class="tr1"><th>$$actors_LABEL$$</th><td>$$actors$$</td></tr> + <tr class="tr2"><th>$$format_LABEL$$</th><td>$$format$$ ($$number$$)</td></tr> + <tr class="tr1"><th>$$rating_LABEL$$</th><td>$$rating$$/10</td></tr> + <tr class="tr2"><th>$$audio_LABEL$$</th><td>$$audio$$</td></tr> + <tr class="tr1"><th>$$subt_LABEL$$</th><td>$$subt$$</td></tr> + </table> + <p>$$synopsis$$<br /><br /><em>$$comment$$</em></p> + </div> + </dd> +[/ITEM] +[FOOTER] + </dl> + <div id="note">$$GENERATOR_NOTE$$</div> +</body> +</html> +[/FOOTER] +[POST] + + my %letters = (); + my $idx = 0; + + foreach (@items) + { + my $title = $self->{options}->{originalList}->transformValue($_->{title}, 'title'); + my $firstLetter = uc(substr($title, 0, 1)); + $firstLetter =~ s/[^A-Z]/_/; + if (!$letters{$firstLetter}) + { + $body =~ s/<a id="movielink_$idx"/<a id="$firstLetter"/; + $letters{$firstLetter} = 1; + } + $idx++; + } + + foreach (keys %letters) + { + $header =~ s/\| $_ \|/| <a class="letter" href="#$_">$_<\/a> |/; + } + $header =~ s/\| ([^<|]) /| <span class="letter">$1<\/span> /g; + #$header =~ s/\| ([^<]) \|/| <span class="letter">$1<\/span> |/g; +[/POST] diff --git a/share/gcstar/html_models/GCfilms/Tian-Mario b/share/gcstar/html_models/GCfilms/Tian-Mario new file mode 100644 index 0000000..15ff986 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Tian-Mario @@ -0,0 +1,276 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> +<!-- + Template made by Tian ( http://www.c-sait.net/ ) + Color scheme by Mario Tomic ( http://www.mariotomic.com/ ) +--> +<head> + <title>$$PAGETITLE$$</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +[JAVASCRIPT] + <script type="text/javascript"> +<!-- +expandTooltip="Afficher les informations du film"; +collapseTooltip="Masquer les informations du film"; +function prn(s) +{ + document.write(s) +} +function getE(id) +{ + return document.getElementById(id) +} +function expcolAll(dir,rowNum) +{ + for(x=0;x < rowNum;x++) { + try { + getE('movie'+x).style.display=dir + if(dir=="none") getE('switch'+x).innerHTML="+" + else getE('switch'+x).innerHTML="–" + } + catch(err) { } + } +} +function toggleDisplay(id,swt) +{ + if((getE(id).style.display=="")||(getE(id).style.display=="none")) { + getE(id).style.display="block" + getE(swt).innerHTML="–" + getE(swt).title=collapseTooltip + } else { + getE(id).style.display="none" + getE(swt).innerHTML="+" + getE(swt).title=expandTooltip + } + return false +} +function writeExpandControl(elementId,collapse) +{ + prn("<a href=\"#\" class=\"movie-expand\" id=\"switch"+elementId+"\" onclick=\"return toggleDisplay('movie"+elementId+"','switch"+elementId+"');\" title=\""+((collapse) ? expandTooltip : collapseTooltip)+"\">"+((collapse) ? "+" : "–")+"</a>") +} +function searchMovies(text) +{ + getE("collapseAll").click() + alldt=document.getElementsByTagName("dt") + alldd=document.getElementsByTagName("dd") + nb=alldt.length + re=new RegExp(text,"i") + for(i=0;i<nb;i++) { + s1=alldt[i].getElementsByTagName("a")[1].innerHTML + s2=alldd[i].innerHTML + res=0 + if(getE("searchType").value=="all") res=(re.test(s1)||re.test(s2)) + else res=re.test(s1) + if(res) st="block" + else st="none" + alldt[i].style.display=st + alldd[i].style.display=st + } +} +--> + </script> +[/JAVASCRIPT] + <style type="text/css"> + body { + background:#222222; + } + h1 { + font-weight:bold; + font-size:160%; + text-align:center; + margin-bottom:1em; + } + #top { + color:#ffaa00 ! important; + background:transparent ! important; + } + form { + text-align:center; + border:1px dashed #999999; + background:#111111; + margin:0 3em; + padding:0.5em; + } + input,select { + border:1px solid #666666; + background: #333333; + color: #b2b2b2; + margin:0 0.5em; + } + input:focus, input.submit:hover { + background:#000000; + color: #b2b2b2; + } + } + input:hover, input.submit:hover { + background:#000000; + color: #b2b2b2; + } + input.submit { + cursor:pointer; + } + #links { + margin-top:0.5em; + text-align:center; + font-size:120%; + color: #333333; + } + img { + float:left; + margin:0 1em 1em 1em; + } + dt { + color:#aaaaaa; + font-size:120%; + margin:0em 0.5em; + clear:both; + } + dd { + margin:0.5em 2em 1em; + border-left:1px dashed #999999; + border-bottom:1px dashed #999999; + } + table { + font-size:90%; + margin:0 1em; + border:1px dashed #b2b2b2; + width:60%; + color: #b2b2b2; + } + th { + font-weight:bold; + text-align:left; + width:25%; + } + .tr1 { + background:#333333; + } + .tr2 { + background:#333333; + } + a { + color:#ffaa00; + background:transparent; + text-decoration:none; + } + a:hover, a:focus { + color:#000000; + background-color:#ffaa00; + } + .topl { + color:#444444; + font-size:90%; + } + .movie-expand { + width:1em; + text-align:center; + font-size:120%; + float:left; + margin:0.2em; + } + p, #note { + color:#b2b2b2; + background:#000000; + border:1px dashed #999999; + clear:left; + margin:1em 2em; + padding:0.5em; + } + .borrowed0 { + color:#222222; + background:transparent; + text-decoration:none; + font-size:50%; + display:block; + } + .borrowed1 { + color:#333333; + background:transparent; + text-decoration:none; + font-size:50%; + display:block; + } + #note { + text-align:center; + } + </style> +</head> +<body> + <h1><a id="top">$$PAGETITLE$$</a></h1> +[JAVASCRIPT] + <form onsubmit="searchMovies(getE('searchText').value); return false" action=""> + <div> + <input type="text" id="searchText" title="$$FORM_INPUT$$" /> + <select id="searchType"> + <option value="title">$$FORM_SEARCH1$$</option> + <option value="all">$$FORM_SEARCH2$$</option> + </select> + <input type="button" class="submit" value="$$FORM_SEARCHBUTTON$$" title="$$FORM_SEARCHTITLE$$" onclick="searchMovies(getE('searchText').value)" /> + <input type="button" class="submit" value="$$FORM_ALLBUTTON$$" title="$$FORM_ALLTITLE$$" onclick="searchMovies('')" /> + <br /> + <br /> + <input type="button" class="submit" value="$$FORM_EXPAND$$" onclick="expcolAll('block','$$TOTALNUMBER$$')" title="$$FORM_EXPANDTITLE$$" /> + <input type="button" id="collapseAll" class="submit" value="$$FORM_COLLAPSE$$" onclick="expcolAll('none','$$TOTALNUMBER$$')" title="$$FORM_COLLAPSETITLE$$" /> + </div> + </form> +[/JAVASCRIPT] + <div id="links">| _ | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |</div> + <dl> +[/HEADER] +[ITEM] + <dt> +[JAVASCRIPT] + <script type="text/javascript">writeExpandControl('$$IDX$$',1)</script> +[/JAVASCRIPT] + <a id="movielink_$$IDX$$" href="$$URL$$">$$title$$</a> | <a class="topl" href="#top">($$TOP$$)</a> + <span class="borrowed$$borrower_FLAG$$">$$borrower_YESNO$$$$borrower_OREMPTY$$</span> + </dt> + <dd> + <div id="movie$$IDX$$" style="display:none;"> + <img src="$$image$$" alt="$$title$$" title= "$$title$$" height="$$HEIGHT_PIC$$" /> + <table> + <tr class="tr1"><th>$$time_LABEL$$</th><td>$$time$$</td></tr> + <tr class="tr2"><th>$$genre_LABEL$$</th><td>$$genre$$</td></tr> + <tr class="tr1"><th>$$date_LABEL$$</th><td>$$date$$</td></tr> + <tr class="tr2"><th>$$director_LABEL$$</th><td>$$director$$</td></tr> + <tr class="tr1"><th>$$actors_LABEL$$</th><td>$$actors$$</td></tr> + <tr class="tr2"><th>$$format_LABEL$$</th><td>$$format$$ ($$number$$)</td></tr> + <tr class="tr1"><th>$$rating_LABEL$$</th><td>$$rating$$/10</td></tr> + <tr class="tr2"><th>$$audio_LABEL$$</th><td>$$audio$$</td></tr> + <tr class="tr1"><th>$$subt_LABEL$$</th><td>$$subt$$</td></tr> + </table> + <p>$$synopsis$$<br /><br /><em>$$comment$$</em></p> + </div> + </dd> +[/ITEM] +[FOOTER] + </dl> + <div id="note">$$GENERATOR_NOTE$$</div> +</body> +</html> +[/FOOTER] +[POST] + + my %letters = (); + my $idx = 0; + + foreach (@items) + { + my $title = $self->{options}->{originalList}->transformValue($_->{title}, 'title'); + my $firstLetter = uc(substr($title, 0, 1)); + $firstLetter =~ s/[^A-Z]/_/; + if (!$letters{$firstLetter}) + { + $body =~ s/<a id="movielink_$idx"/<a id="$firstLetter"/; + $letters{$firstLetter} = 1; + } + $idx++; + } + + foreach (keys %letters) + { + $header =~ s/\| $_ \|/| <a href="#$_">$_<\/a> |/; + } +[/POST] diff --git a/share/gcstar/html_models/GCfilms/Tian-Mario-Kim b/share/gcstar/html_models/GCfilms/Tian-Mario-Kim new file mode 100644 index 0000000..2772020 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Tian-Mario-Kim @@ -0,0 +1,281 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> +<!-- + Template made by Tian ( http://www.c-sait.net/ ) + Color scheme by Mario Tomic ( http://www.mariotomic.com/ ) +--> +<head> + <title>$$PAGETITLE$$</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +[JAVASCRIPT] + <script type="text/javascript"> +<!-- +expandTooltip="Afficher les informations du film"; +collapseTooltip="Masquer les informations du film"; +function prn(s) +{ + document.write(s) +} +function getE(id) +{ + return document.getElementById(id) +} +function expcolAll(dir,rowNum) +{ + for(x=0;x < rowNum;x++) { + try { + getE('movie'+x).style.display=dir + if(dir=="none") getE('switch'+x).innerHTML="+" + else getE('switch'+x).innerHTML="–" + } + catch(err) { } + } +} +function toggleDisplay(id,swt) +{ + if((getE(id).style.display=="")||(getE(id).style.display=="none")) { + getE(id).style.display="block" + getE(swt).innerHTML="–" + getE(swt).title=collapseTooltip + } else { + getE(id).style.display="none" + getE(swt).innerHTML="+" + getE(swt).title=expandTooltip + } + return false +} +function writeExpandControl(elementId,collapse) +{ + prn("<a href=\"#\" class=\"movie-expand\" id=\"switch"+elementId+"\" onclick=\"return toggleDisplay('movie"+elementId+"','switch"+elementId+"');\" title=\""+((collapse) ? expandTooltip : collapseTooltip)+"\">"+((collapse) ? "+" : "–")+"</a>") +} +function searchMovies(text) +{ + getE("collapseAll").click() + alldt=document.getElementsByTagName("dt") + alldd=document.getElementsByTagName("dd") + nb=alldt.length + re=new RegExp(text,"i") + for(i=0;i<nb;i++) { + s1=alldt[i].getElementsByTagName("a")[1].innerHTML + s2=alldd[i].innerHTML + res=0 + if(getE("searchType").value=="all") res=(re.test(s1)||re.test(s2)) + else res=re.test(s1) + if(res) st="block" + else st="none" + alldt[i].style.display=st + alldd[i].style.display=st + } +} +--> + </script> +[/JAVASCRIPT] + <style type="text/css"> + body { + background:#222222; + } + h1 { + font-weight:bold; + font-size:160%; + text-align:center; + margin-bottom:1em; + } + #top { + color:#ffaa00 ! important; + background:transparent ! important; + } + form { + text-align:center; + border:1px dashed #999999; + background:#111111; + margin:0 3em; + padding:0.5em; + } + input,select { + border:1px solid #666666; + background: #333333; + color: #b2b2b2; + margin:0 0.5em; + } + input:focus, input.submit:hover { + background:#000000; + color: #b2b2b2; + } + } + input:hover, input.submit:hover { + background:#000000; + color: #b2b2b2; + } + input.submit { + cursor:pointer; + } + #links { + margin-top:0.5em; + text-align:center; + font-size:120%; + color: #333333; + } + img { + float:left; + margin:0 1em 1em 1em; + } + dt { + color:#aaaaaa; + font-size:120%; + margin:0em 0.5em; + clear:both; + } + dd { + margin:0.5em 2em 1em; + border-left:1px dashed #999999; + border-bottom:1px dashed #999999; + } + table { + font-size:90%; + margin:0 1em; + border:1px dashed #b2b2b2; + width:60%; + color: #b2b2b2; + } + th { + font-weight:bold; + text-align:left; + width:25%; + } + .tr1 { + background:#333333; + } + .tr2 { + background:#333333; + } + a { + color:#ffaa00; + background:transparent; + text-decoration:none; + } + a:hover, a:focus { + color:#000000; + background-color:#ffaa00; + } + .topl { + color:#444444; + font-size:90%; + } + .movie-expand { + width:1em; + text-align:center; + font-size:120%; + float:left; + margin:0.2em; + } + p, #note { + color:#b2b2b2; + background:#000000; + border:1px dashed #999999; + clear:left; + margin:1em 2em; + padding:0.5em; + } + .borrowed0 { + color:#222222; + background:transparent; + text-decoration:none; + font-size:50%; + display:block; + } + .borrowed1 { + color:#333333; + background:transparent; + text-decoration:none; + font-size:50%; + display:block; + } + #note { + text-align:center; + } + </style> +</head> +<body> + <h1><a id="top">$$PAGETITLE$$</a></h1> +[JAVASCRIPT] + <form onsubmit="searchMovies(getE('searchText').value); return false" action=""> + <div> + <input type="text" id="searchText" title="$$FORM_INPUT$$" /> + <select id="searchType"> + <option value="title">$$FORM_SEARCH1$$</option> + <option value="all">$$FORM_SEARCH2$$</option> + </select> + <input type="button" class="submit" value="$$FORM_SEARCHBUTTON$$" title="$$FORM_SEARCHTITLE$$" onclick="searchMovies(getE('searchText').value)" /> + <input type="button" class="submit" value="$$FORM_ALLBUTTON$$" title="$$FORM_ALLTITLE$$" onclick="searchMovies('')" /> + <br /> + <br /> + <input type="button" class="submit" value="$$FORM_EXPAND$$" onclick="expcolAll('block','$$TOTALNUMBER$$')" title="$$FORM_EXPANDTITLE$$" /> + <input type="button" id="collapseAll" class="submit" value="$$FORM_COLLAPSE$$" onclick="expcolAll('none','$$TOTALNUMBER$$')" title="$$FORM_COLLAPSETITLE$$" /> + </div> + </form> +[/JAVASCRIPT] + <div id="links">| _ | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |</div> + <dl> +[/HEADER] +[ITEM] + <dt> +[JAVASCRIPT] + <script type="text/javascript">writeExpandControl('$$IDX$$',1)</script> +[/JAVASCRIPT] + <a id="movielink_$$IDX$$" href="$$URL$$">$$title$$</a> | <a class="topl" href="#top">($$TOP$$)</a> + <span class="borrowed$$borrower_FLAG$$">$$borrower_YESNO$$$$borrower_OREMPTY$$</span> + </dt> + <dd> + <div id="movie$$IDX$$" style="display:none;"> + <a href="$$backpic$$"><img src="$$image$$" alt="$$title$$" title= "$$title$$" height="$$HEIGHT_PIC$$" /></a> + <table> + <tr class="tr1"><th>$$date_LABEL$$</th><td>$$date$$</td></tr> + <tr class="tr2"><th>$$genre_LABEL$$</th><td>$$genre$$</td></tr> + <tr class="tr1"><th>$$id_LABEL$$</th><td>$$id$$</td></tr> + <tr class="tr2"><th>$$original_LABEL$$</th><td>$$original$$</td></tr> + <tr class="tr1"><th>$$time_LABEL$$</th><td>$$time$$ Min.</td></tr> + <tr class="tr2"><th>$$director_LABEL$$</th><td>$$director$$</td></tr> + <tr class="tr1"><th>$$actors_LABEL$$</th><td>$$actors$$</td></tr> + <tr class="tr2"><th>$$rating_LABEL$$</th><td>$$rating$$/10</td></tr> + <tr class="tr1"><th>$$age_LABEL$$</th><td>$$age$$</td></tr> + <tr class="tr2"><th>$$country_LABEL$$</th><td>$$country$$</td></tr> + <tr class="tr1"><th>$$audio_LABEL$$</th><td>$$audio$$</td></tr> + <tr class="tr2"><th>$$comment_LABEL$$</th><td>$$comment$$</td></tr> + <tr class="tr1"><th>$$serie_LABEL$$</th><td>$$serie$$</td></tr> + <tr class="tr2"><th>$$subt_LABEL$$</th><td>$$subt$$</td></tr> + </table> + <p>$$synopsis$$</p> + </div> + </dd> +[/ITEM] +[FOOTER] + </dl> + <div id="note">$$GENERATOR_NOTE$$</div> +</body> +</html> +[/FOOTER] +[POST] + + my %letters = (); + my $idx = 0; + + foreach (@items) + { + my $title = $self->{options}->{originalList}->transformValue($_->{title}, 'title'); + my $firstLetter = uc(substr($title, 0, 1)); + $firstLetter =~ s/[^A-Z]/_/; + if (!$letters{$firstLetter}) + { + $body =~ s/<a id="movielink_$idx"/<a id="$firstLetter"/; + $letters{$firstLetter} = 1; + } + $idx++; + } + + foreach (keys %letters) + { + $header =~ s/\| $_ \|/| <a href="#$_">$_<\/a> |/; + } +[/POST] diff --git a/share/gcstar/html_models/GCfilms/Tian-Mario.png b/share/gcstar/html_models/GCfilms/Tian-Mario.png Binary files differnew file mode 100644 index 0000000..70dc0b3 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Tian-Mario.png diff --git a/share/gcstar/html_models/GCfilms/Tian.png b/share/gcstar/html_models/GCfilms/Tian.png Binary files differnew file mode 100644 index 0000000..942f51c --- /dev/null +++ b/share/gcstar/html_models/GCfilms/Tian.png diff --git a/share/gcstar/html_models/GCfilms/float b/share/gcstar/html_models/GCfilms/float new file mode 100644 index 0000000..47a9924 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/float @@ -0,0 +1,120 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by float +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body { + color:#004DFF; + background-color : white; + font-family : arial, helvetica, sans-serif; + font-size : 12px; + margin : 10px; +} + +td { + font-family : arial, sans-serif; + font-size : 12px; +} +h1 { + font-size:130%; + font-weight:bold; + border-bottom : solid black 1px; + margin:0px; +} +.borrowed1 { +} +a { + color : #666; + text-decoration : none; + +} +a:hover { + text-decoration : underline; +} +.title { + font-size : 110%; + font-weight : bold; +} +.synopsis { + margin-top : .6em; + text-align : justify; + + margin-bottom : 1.5em; + color : #333; +} +.image { + margin-bottom : 1.5em; +} +.detail { + float : right; + text-align : right; + color : #888; +} +#total { + float: center; + font-weight: bold; + text-align: center; +} +#footer { + border-top : solid black 1px; + font-size:small; + color : #666; + text-align: center; +} +#top { + text-align: left; +} +#middle { + text-align: center; +} +#bottom { + text-align: right; +} +</style> +</head> +<body> +<a name="top" id="top"></a> +<div id="total">$$PAGETITLE$$ - $$TOTALNUMBER$$ $$ITEMS$$</div><br><br> +<table width="550" align="center" cellpadding="8" cellspacing="0"> +[/HEADER] +[ITEM] +<tr class="borrowed$$borrower_FLAG$$"> + <td valign="top" align="center" bgcolor="#E3E1C6" width="80" > + <img align="top" src="$$image$$" height="$$HEIGHT_PIC$$" border="0" alt="$$title$$" title="$$title$$" class="image"> + </td> + <td valign="top" bgcolor="#ECEBD9"> + <div class="detail"><b>$$time_LABEL$$:</b> $$time$$<br> + <b>$$genre_LABEL$$:</b> $$genre$$</div> + <div class="title">$$title$$</div> + <div class="synopsis"><b>$$director_LABEL$$:</b><br>$$director$$ + <br><br><b>$$actors_LABEL$$:</b><br>$$actors$$ + <br><br><b>$$synopsis_LABEL$$:</b><br>$$synopsis$$ + <br><br> + <b> + <table width="100%"> + <tr> + <td align="left"><a href="#top">$$TOP$$</a></td> + <td align="center"><a href="$$trailer$$">$$gtk-media-play$$</a></td> + <td align="right"><a href="#bottom">$$BOTTOM$$</a></td> + </tr> + </table> + </div> + </td> +</tr> +[/ITEM] +[FOOTER] +</table> +<div id="footer"> + $$GENERATOR_NOTE$$ +</div> +<a name="bottom" id="bottom"></a> +</body> +</html> +[/FOOTER] +[POST] +[/POST]
\ No newline at end of file diff --git a/share/gcstar/html_models/GCfilms/float.png b/share/gcstar/html_models/GCfilms/float.png Binary files differnew file mode 100644 index 0000000..e047a32 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/float.png diff --git a/share/gcstar/html_models/GCfilms/rootII_design b/share/gcstar/html_models/GCfilms/rootII_design new file mode 100644 index 0000000..74873aa --- /dev/null +++ b/share/gcstar/html_models/GCfilms/rootII_design @@ -0,0 +1,118 @@ +[HEADER] +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<html> + <!-- ------------------------------------------------------------------------------------------------ + rootII 2005 + Template for HTML export of a GCfilms collection + ------------------------------------------------------------------------------------------------ --> +<head> + <meta content="text/html; charset=UTF-8" http-equiv="content-type"> + <title>$$PAGETITLE$$</title> +[JAVASCRIPT] + <script type="text/javascript" language="javascript1.2"><!-- + var alreadyOpennedLayer=""; + function hidelayer(id){ + if (document.getElementById(id).style.visibility=="visible") + document.getElementById(id).style.visibility='hidden'; + } + function showlayer(id){ + if (document.getElementById(id) && document.getElementById(id).style.visibility!='visible') + { + if (alreadyOpennedLayer!="") hidelayer(alreadyOpennedLayer); + alreadyOpennedLayer=id; + document.getElementById(id).style.visibility='visible'; + } + } +//--></script> +[/JAVASCRIPT] +<style type="text/css" media="screen"> + body { + font-family:helvetica, verdana, arial; + color:rgb(253, 253, 253); + background-color:rgb(204, 204, 204); + font-family:helvetica, verdana, arial; + font-size:100%; + } + .synopsis { + background-color:rgb(174,174,174 ); + border:1px none #000000; + text-align:justify; + font-family:helvetica, verdana, arial; + font-size:90%; + visibility:hidden; + position:absolute; + width:80%; + } + strong { + color:#FFFFFF; + font-size:120%; + } + td { + color : #666666; + } + a { + text-decoration : none; + } + #design { + text-align:right; + color:rgb(174, 174, 174); + } + #gcstar { + text-align:right; + color:rgb(174, 174, 174); + } +</style> +<style type="text/css" media="print" > + body { + font-family:helvetica, verdana, arial; + font-size:100%; + } + .synopsis { + display: none; + } + #design { + display: none; + } + #gcstar { + text-align:right; + color:rgb(174, 174,174); + } +</style> +</head> +<body link="#666666" alink="#666666" vlink="#999999"> + <div id="header-title"> + <h1>$$PAGETITLE$$</h1> + </div> + <table border="0" align="center" cellspacing="0" cellpadding="0" width="80%"> + <tr> + <td> +[/HEADER] +[ITEM] + <table border="0" align="center" cellspacing="0" cellpadding="0" width="100%"> + <tr><td colspan=3><strong>$$title$$</strong></td></tr> + <tr><td width="80" rowspan=7><img align="top" src="$$image$$" height="$$HEIGHT_PIC$$" border="0" + name="image$$IDX$$" alt="$$title$$" title="$$title$$" + [JAVASCRIPT]onMouseOver='showlayer("synop$$IDX$$")'[/JAVASCRIPT]></td> + <td width="100"><small>$$original_LABEL$$$$SEPARATOR$$</small></td><td><small>$$original$$</small></td></tr> + <tr><td><small>$$director_LABEL$$$$SEPARATOR$$</small></td><td><small>$$director$$</small></td></tr> + <tr><td><small>$$date_LABEL$$$$SEPARATOR$$</small></td><td><small>$$date$$</small></td></tr> + <tr><td><small>$$time_LABEL$$$$SEPARATOR$$</small></td><td><small>$$time$$</small></td></tr> + <tr><td><small>$$country_LABEL$$$$SEPARATOR$$</small></td><td><small>$$country$$</small></td></tr> + <tr><td><small>$$genre_LABEL$$$$SEPARATOR$$</small></td><td><small>$$genre$$</small></td></tr> + <tr><td><small>$$actors_LABEL$$$$SEPARATOR$$</small></td><td><small>$$actors$$</small></td></tr> + <tr><td colspan=3><div class="synopsis" id="synop$$IDX$$" [JAVASCRIPT]onMouseOut='hidelayer("synop$$IDX$$")'[/JAVASCRIPT]>$$synopsis$$</div></td></tr> + <tr><td colspan=3><hr></td></tr> + </table> +[/ITEM] +[FOOTER] +</td></tr> +<tr><td>$$TOTALNUMBER$$ films</td></tr> + </table> + <div id="design"><br><br><br><br><small>design by + <em>rootII design department</em></small></div> + <div id="export">$$GENERATOR_NOTE$$</div> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCfilms/rootII_design.png b/share/gcstar/html_models/GCfilms/rootII_design.png Binary files differnew file mode 100644 index 0000000..ffeae14 --- /dev/null +++ b/share/gcstar/html_models/GCfilms/rootII_design.png diff --git a/share/gcstar/html_models/GCgames/Flat b/share/gcstar/html_models/GCgames/Flat new file mode 100644 index 0000000..8587298 --- /dev/null +++ b/share/gcstar/html_models/GCgames/Flat @@ -0,0 +1,111 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Yanbab. Flat and compact list. + Adapted to video games by Tian. +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> + +body { + color:black; + background-color : white; + font-family : arial, sans-serif; + font-size : 12px; + margin : 10px; +} + +td { + font-family : arial, sans-serif; + font-size : 12px; +} + +h1 { + font-size:130%; + font-weight:bold; + border-bottom : solid black 1px; + margin:0px; +} + +.borrowed1 { +} + +#footer { + border-top : solid black 1px; + font-size:small; + color : #666; +} +a { + color : #666; + text-decoration : none; + +} +a:hover { + text-decoration : underline; +} +#total { + float: right; + font-weight: bold; +} +.title { + font-size : 110%; + font-weight : bold; +} + +.synopsis { + margin-top : .6em; + text-align : justify; + + margin-bottom : 1.5em; + color : #333; +} + +.image { + margin-bottom : 1.5em; +} + +.detail { + float : right; + text-align : right; + color : #888; +} +</style> +</head> +<body> +<div id="total">$$TOTALNUMBER$$ $$ITEMS$$</div> +<h1>$$PAGETITLE$$</h1> +<table cellpadding="8" cellspacing="0"> +[/HEADER] +[ITEM] +<tr class="borrowed$$borrower_FLAG$$"> + <td valign="top" align="center" bgcolor="#ddd" width="80" > + <a href="$$web$$"> + <img align="top" src="$$boxpic$$" height="$$HEIGHT_PIC$$" border="0" alt="$$name$$" title="$$name$$" class="image"> + </a> + </td> + <td valign="top"> + <div class="detail">$$platform$$ - $$editor$$<br> + $$genre$$</div> + + <div class="title">$$name$$</div> + + <div class="synopsis"> + $$description$$ + </div> + + </td> +</tr> +[/ITEM] +[FOOTER] +</table> +<div id="footer"> + $$GENERATOR_NOTE$$ +</div> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCgames/Flat.png b/share/gcstar/html_models/GCgames/Flat.png Binary files differnew file mode 100644 index 0000000..68dc96a --- /dev/null +++ b/share/gcstar/html_models/GCgames/Flat.png diff --git a/share/gcstar/html_models/GCgames/Simple b/share/gcstar/html_models/GCgames/Simple new file mode 100644 index 0000000..dc61b0d --- /dev/null +++ b/share/gcstar/html_models/GCgames/Simple @@ -0,0 +1,10 @@ +<metamodel> + <model>Simple</model> + <fields> + <field>name</field> + <field>editor</field> + <field>platform</field> + <field>genre</field> + <field>players</field> + </fields> +</metamodel> diff --git a/share/gcstar/html_models/GCgames/Simple.png b/share/gcstar/html_models/GCgames/Simple.png Binary files differnew file mode 100644 index 0000000..d1c34d3 --- /dev/null +++ b/share/gcstar/html_models/GCgames/Simple.png diff --git a/share/gcstar/html_models/GCgames/Tabs b/share/gcstar/html_models/GCgames/Tabs new file mode 100644 index 0000000..e6b5ccb --- /dev/null +++ b/share/gcstar/html_models/GCgames/Tabs @@ -0,0 +1,284 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Tian. It emulates a notebook display. +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body { + margin:0; + padding:0; + background:white; +} +h1 { + text-align:center; + color:#7c551a; +} +h2 { + background:transparent; + margin:0 0 1em; + color:#ffffff; +} +.item { + height:23em; + clear:both; + margin:1em; + padding:0.5em; + background:#e3c79e; + border:1px dashed #7c551a; +} +.imgbox { + text-align:center; + float:left; + margin-right:1em; + width:120px; +} +a img { + border:0; +} +h3 { + color:#513D23; + background:#ffffff; + cursor:default; + margin:0; + padding:0.4em; + display:none; + font-size:100%; + border-left:0.1em solid black; + border-bottom:0.1em solid white; + border-right:0.1em solid black; + border-top:0.1em solid black; + -moz-border-radius-topright:2em; + z-index:99; + position:relative; +} +div > h3 +{ + display:block; +} +.description h3, .tips h3 { + background:#ffffff; + border-bottom:0.1em solid black; +} +.info, .description, .tips { + float:left; + width:12em; +} +.info dl, .description table, .tips div { + border:0.1em solid black; + padding:1em 0.5em 0.5em; + margin:-0.1em 0 0; + z-index:1; + position:relative; + width:45em; + height:15em; + background:white; +} +.description table, .tips div { + display:none; + margin-left:-11.8em; + width:44.8em; +} +.tips div { + margin-left:-23.8em; +} +dt { + float:left; + width:15em; + font-weight:bold; + height:1.5em; + color:#A49480; +} +dd { + padding:0; + margin-left:15em; + height:1.5em; + color:#555555; +} +.codes { + width:99%; +} +.codes td, .codes th { + padding:0.2em; + width:50%; +} +.codes th, .codes .odd td { + background:#e8ded0; +} +.codes + .codes { + margin:1em 0; + padding:1em 0; + border-top:2px solid #7c551a; + border-bottom:2px solid #7c551a; +} +#note { + text-align:center; + margin:2em 5em; + background:#e3c79e; + border:1px solid #7c551a; + padding:0.3em; +} +#note a { + font-weight:bold; + color:#7c551a; +} +[NOJAVASCRIPT] +.info:hover dl,.description:hover table, .tips:hover div { + padding-top:1em; + display:block; + color:#555555; + z-index:2; +} +.description:hover table, .tips:hover div { + border:0; + border-top:0.1em solid black; + margin-top:-0.1em; + margin-left:-11.9em; + height:14.9em; + z-index:100; +} +.tips:hover div { + margin-left:-23.9em; +} +.info:hover h3, .description:hover h3, .tips:hover h3 { + background:#ffffff; + border-bottom:0; + border-bottom:0.1em solid white; + z-index:999; +} +[/NOJAVASCRIPT] +[JAVASCRIPT] +h3 { + cursor:pointer; + background:#e8ded0 ! important; +} +.description_active table, .tips_active div { + padding-top:1em; + display:block; + color:#555555; + z-index:2; +} +.description_active table, .tips_active div { + border:0; + border-top:0.1em solid black; + margin-top:-0.1em; + margin-left:-11.9em; + height:14.9em; + z-index:100; +} +.tips_active div { + margin-left:-23.9em; +} +.info_active h3, .description_active h3, .tips_active h3 { + background:#ffffff ! important; + border-bottom:0.1em solid white; + z-index:999; +} +.tips div { + overflow:auto; +} +td.desc { + height:5em; +} +td.desc p { + margin:0; + padding:0; + overflow:auto; + height:7em; +} +[/JAVASCRIPT] +</style> +[JAVASCRIPT] +<script type="text/javascript"> +<!-- + function showMe(cssClass, objectId) + { + divs = document.getElementById('item'+objectId).getElementsByTagName("div") + for(i=0; i < divs.length; i++) + { + if ((divs[i].className != 'imgbox') && (divs[i].className.substr(0,4) != 'note')) + { + if (divs[i].className.indexOf(cssClass) != -1) + { + divs[i].className = cssClass + '_active ' + cssClass + } + else + { + idx = divs[i].className.indexOf(' ') + if (idx != -1) + { + //alert('Setting ' + divs[i].className.substring(idx + 1)) + divs[i].className = divs[i].className.substring(idx + 1) + } + } + } + } + } +--> +</script> +[/JAVASCRIPT] +</head> +<body> +<h1>$$PAGETITLE$$</h1> +[/HEADER] +[ITEM] +<div class="item" id="item$$IDX$$"> + <h2>$$name$$</h2> + <div class="imgbox"> + <img src="$$boxpic$$" height="$$HEIGHT_PIC$$" alt="$$name$$" title="$$name$$" /> + </div> + <div class="info[JAVASCRIPT]_active info[/JAVASCRIPT]"> + <h3[JAVASCRIPT] onclick="showMe('info', $$IDX$$)"[/JAVASCRIPT]>$$info_LABEL$$</h3> + <dl> + <dt>$$platform_LABEL$$</dt> + <dd>$$platform$$</dd> + <dt>$$genre_LABEL$$</dt> + <dd>$$genre$$</dd> + <dt>$$players_LABEL$$</dt> + <dd>$$players$$</dd> + <dt>$$editor_LABEL$$</dt> + <dd>$$editor$$</dd> + <dt>$$released_LABEL$$</dt> + <dd>$$released$$</dd> + <dt>$$rating_LABEL$$</dt> + <dd>$$rating$$/10</dd> + <dt>$$completion_LABEL$$</dt> + <dd>$$completion$$</dd> + <dt>$$borrower_LABEL$$</dt> + <dd>$$borrower$$</dd> + </dl> + </div> + <div class="description"> + <h3[JAVASCRIPT] onclick="showMe('description', $$IDX$$)"[/JAVASCRIPT]>$$description_LABEL$$</h3> + <table> + <tr><td><a href="$$screenshot1$$"><img height="100" src="$$screenshot1$$" alt="$$screenshot1_LABEL$$" /></a></td> + <td><a href="$$screenshot2$$"><img height="100" src="$$screenshot2$$" alt="$$screenshot2_LABEL$$" /></a></td></tr> + <tr><td colspan="2" class="desc"><p>$$description$$</p></td></tr> + </table> + </div> + <div class="tips"> + <h3[JAVASCRIPT] onclick="showMe('tips', $$IDX$$)"[/JAVASCRIPT]>$$tips_LABEL$$</h3> + <div> + <table class="codes"> + <tr><th>$$code_LABEL$$</th><th>$$Effect_LABEL$$</th></tr> + $$code_TABLE$$ + </table> + <table class="codes"> + <tr><th>$$unlockable_LABEL$$</th><th>$$Howto_LABEL$$</th></tr> + $$unlockable_TABLE$$ + </table> + <p>$$secrets$$</p> + </div> + </div> +</div> +[/ITEM] +[FOOTER] +<div id="note">$$GENERATOR_NOTE$$</div> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCgames/Tabs.png b/share/gcstar/html_models/GCgames/Tabs.png Binary files differnew file mode 100644 index 0000000..01adbc7 --- /dev/null +++ b/share/gcstar/html_models/GCgames/Tabs.png diff --git a/share/gcstar/html_models/GCminicars/Tian-Jim b/share/gcstar/html_models/GCminicars/Tian-Jim new file mode 100644 index 0000000..1d942bf --- /dev/null +++ b/share/gcstar/html_models/GCminicars/Tian-Jim @@ -0,0 +1,279 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> +<!-- + Template made by Tian. It is based on design of Tian's website: + http://www.c-sait.net/ +--> +<head> + <title>$$PAGETITLE$$</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +[JAVASCRIPT] + <script type="text/javascript"> +<!-- +expandTooltip="Afficher les informations de la Miniature"; +collapseTooltip="Masquer les informations de la Miniature"; +function prn(s) +{ + document.write(s) +} +function getE(id) +{ + return document.getElementById(id) +} +function expcolAll(dir,rowNum) +{ + for(x=0;x < rowNum;x++) { + try { + getE('minicar'+x).style.display=dir + if(dir=="none") getE('switch'+x).innerHTML="+" + else getE('switch'+x).innerHTML="–" + } + catch(err) { } + } +} +function toggleDisplay(id,swt) +{ + if((getE(id).style.display=="")||(getE(id).style.display=="none")) { + getE(id).style.display="block" + getE(swt).innerHTML="–" + getE(swt).name=collapseTooltip + } else { + getE(id).style.display="none" + getE(swt).innerHTML="+" + getE(swt).name=expandTooltip + } + return false +} +function writeExpandControl(elementId,collapse) +{ + prn("<a href=\"#\" class=\"minicar-expand\" id=\"switch"+elementId+"\" onclick=\"return toggleDisplay('minicar"+elementId+"','switch"+elementId+"');\" title=\""+((collapse) ? expandTooltip : collapseTooltip)+"\">"+((collapse) ? "+" : "–")+"</a>") +} +function searchMinicars(text) +{ + getE("collapseAll").click() + alldt=document.getElementsByTagName("dt") + alldd=document.getElementsByTagName("dd") + nb=alldt.length + re=new RegExp(text,"i") + for(i=0;i<nb;i++) { + s1=alldt[i].getElementsByTagName("a")[1].innerHTML + s2=alldd[i].innerHTML + res=0 + if(getE("searchType").value=="all") res=(re.test(s1)||re.test(s2)) + else res=re.test(s1) + if(res) st="block" + else st="none" + alldt[i].style.display=st + alldd[i].style.display=st + } +} +--> + </script> +[/JAVASCRIPT] + <style type="text/css"> + body { + background:#f7f8ff; + } + h1 { + font-weight:bold; + font-size:160%; + text-align:center; + margin-bottom:1em; + } + #top { + color:#624a66 ! important; + background:transparent ! important; + } + form { + text-align:center; + border:1px solid #c0c0c0; + background:#e2e2df; + margin:0 3em; + padding:0.5em; + } + input,select { + border:2px solid #aaaaaa; + background:purple; + color:white; + margin:0 0.5em; + } + input:focus, input.submit:hover { + background:#f3e3f9; + color:black; + } + input.submit { + cursor:pointer; + } + #links { + margin-top:0.5em; + text-align:center; + font-size:120%; + color:#aaaaaa; + } + .letter { + padding:0 0.5em; + } + img { + float:left; + margin:0 1em 1em 1em; + border:1px solid #aaaaaa; + } + dt { + color:#aaaaaa; + font-size:120%; + margin:0em 0.5em; + clear:both; + } + dd { + margin:0.5em 2em 1em; + border-left:1px solid #2e3766; + border-bottom:1px solid #2e3766; + } + table { + font-size:90%; + margin:0 1em; + border:1px solid black; + width:60%; + } + th { + font-weight:bold; + text-align:left; + width:25%; + } + .tr1 { + background:#d4cce0; + } + .tr2 { + background:#c0b9cc; + } + a { + color:#2e3766; + background:transparent; + text-decoration:none; + } + a:hover, a:focus { + background-color:#e8e8ef; + } + .topl { + color:#aaaaaa; + font-size:90%; + } + .minicar-expand { + width:1em; + text-align:center; + font-size:120%; + float:left; + margin:0.2em; + } + p, #note { + background:white; + border:2px solid purple; + clear:left; + margin:1em 2em; + padding:0.5em; + } + .borrowed0 { + font-size:80%; + color:#c0b9cc; + background:transparent; + text-decoration:none; + display:block; + } + .borrowed1 { + font-size:80%; + color:purple; + background:transparent; + text-decoration:none; + display:block; + } + #note { + text-align:center; + } + #note a { + text-decoration:underline; + } + </style> +</head> +<body> + <h1><a id="top">$$PAGETITLE$$</a></h1> +[JAVASCRIPT] + <form onsubmit="searchMinicars(getE('searchText').value); return false" action=""> + <div> + <input type="text" id="searchText" title="$$FORM_INPUT$$" /> + <select id="searchType"> + <option value="name">$$FORM_SEARCH1$$</option> + <option value="all">$$FORM_SEARCH2$$</option> + </select> + <input type="button" class="submit" value="$$FORM_SEARCHBUTTON$$" title="$$FORM_SEARCHTITLE$$" onclick="searchMinicars(getE('searchText').value)" /> + <input type="button" class="submit" value="$$FORM_ALLBUTTON$$" title="$$FORM_ALLTITLE$$" onclick="searchMinicars('')" /> + <br /> + <br /> + <input type="button" class="submit" value="$$FORM_EXPAND$$" onclick="expcolAll('block','$$TOTALNUMBER$$')" title="$$FORM_EXPANDTITLE$$" /> + <input type="button" id="collapseAll" class="submit" value="$$FORM_COLLAPSE$$" onclick="expcolAll('none','$$TOTALNUMBER$$')" title="$$FORM_COLLAPSETITLE$$" /> + </div> + </form> +[/JAVASCRIPT] + <div id="links">| _ | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |</div> + <dl> +[/HEADER] +[ITEM] + <dt> +[JAVASCRIPT] + <script type="text/javascript">writeExpandControl('$$IDX$$',1)</script> +[/JAVASCRIPT] + <a id="minicarlink_$$IDX$$" href="$$URL$$">$$name$$</a> | <a class="topl" href="#top">($$TOP$$)</a> + <span class="borrowed$$borrower_FLAG$$">$$borrower_YESNO$$$$borrower_OREMPTY$$</span> + </dt> + <dd> + <div id="minicar$$IDX$$" style="display:none;"> + <img src="$$picture$$" alt="$$name$$" title="$$name$$" height="160" /> + <table> + <tr class="tr1"><th>$$scale_LABEL$$</th><td>$$scale$$</td></tr> + <tr class="tr2"><th>$$manufacturer_LABEL$$</th><td>$$manufacturer$$</td></tr> + <tr class="tr1"><th>$$type1_LABEL$$</th><td>$$type1$$</td></tr> + <tr class="tr2"><th>$$constructor_LABEL$$</th><td>$$constructor$$</td></tr> + <tr class="tr1"><th>$$modele_LABEL$$</th><td>$$modele$$</td></tr> + <tr class="tr2"><th>$$version_LABEL$$</th><td>$$version$$</td></tr> + <tr class="tr1"><th>$$color_LABEL$$</th><td>$$color$$</td></tr> + <tr class="tr2"><th>$$pub_LABEL$$</th><td>$$pub$$</td></tr> + <tr class="tr1"><th>$$year_LABEL$$</th><td>$$year$$</td></tr> + <tr class="tr2"><th>$$reference_LABEL$$</th><td>$$reference$$</td></tr> + <tr class="tr1"><th>$$rating1_LABEL$$</th><td>$$rating1$$/10</td></tr> + </table> + <p><em>$$comments1$$</em></p> + </div> + </dd> +[/ITEM] +[FOOTER] + </dl> + <div id="note">$$GENERATOR_NOTE$$</div> +</body> +</html> +[/FOOTER] +[POST] + + my %letters = (); + my $idx = 0; + + foreach (@items) + { + my $name = $self->{options}->{originalList}->transformValue($_->{name}, 'name'); + my $firstLetter = uc(substr($name, 0, 1)); + $firstLetter =~ s/[^A-Z]/_/; + if (!$letters{$firstLetter}) + { + $body =~ s/<a id="minicarlink_$idx"/<a id="$firstLetter"/; + $letters{$firstLetter} = 1; + } + $idx++; + } + + foreach (keys %letters) + { + $header =~ s/\| $_ \|/| <a class="letter" href="#$_">$_<\/a> |/; + } + $header =~ s/\| ([^<|]) /| <span class="letter">$1<\/span> /g; + #$header =~ s/\| ([^<]) \|/| <span class="letter">$1<\/span> |/g; +[/POST] diff --git a/share/gcstar/html_models/GCminicars/Tian-Jim.png b/share/gcstar/html_models/GCminicars/Tian-Jim.png Binary files differnew file mode 100644 index 0000000..3815533 --- /dev/null +++ b/share/gcstar/html_models/GCminicars/Tian-Jim.png diff --git a/share/gcstar/html_models/GCmusics/Shelf b/share/gcstar/html_models/GCmusics/Shelf new file mode 100644 index 0000000..429f179 --- /dev/null +++ b/share/gcstar/html_models/GCmusics/Shelf @@ -0,0 +1,298 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Tian. It emulates a shelf display. +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body +{ + color:black; +} +h1 +{ + text-align:left; + margin-left:0.5em; + font-size:200%; + font-weight:bold; + color:#6c7b8b; +} +h2 +{ + font-size:150%; + text-align:center; + color:#1c86ee; + font-weight:bold; + height:3em; +} +h3 +{ + font-size:120%; + font-weight:bold; + margin:1em 0; + color:#6c7b8b; + border-bottom:1px dashed #6c7b8b; +} +#left +{ +[JAVASCRIPT] + width:48%; +[/JAVASCRIPT] + border:1px dashed #6c7b8b; + background:#f0f0f0; +} +.imgbox +{ + float:left; + padding:2em 1em 0em; + margin:0; +} +img +{ + margin:0; + padding:0; +[JAVASCRIPT] + cursor:pointer; +[/JAVASCRIPT] +} +.imginfo +{ + float:left; + margin-top:0.5em; +[JAVASCRIPT] + cursor:default; +[/JAVASCRIPT] +} +.synopsis +{ + height:8em; + overflow:auto; + padding:0.2em; + background:#f0f0f0; +} +table +{ + margin:0 2%; + width:95%; +} +th +{ + font-weight:bold; + text-align:left; + white-space:nowrap; + padding:0.5em; + background:#f0f0f0; + width:40%; +} +td +{ + padding:0.5em; + background:#f0f0f0; + display:block; + min-height:1.5em; + max-height:10em; + overflow:auto; +} +#tracks td +{ + display:table-cell; +} +tr.even td +{ + background:#f0f0f0; +} +tr.odd td +{ + background:#e0e0d0; +} +#note +{ + text-align:center; + padding-top:0.5em; +[JAVASCRIPT] + width:48%; +[/JAVASCRIPT] + color:#6c7b8b; +} +#note a +{ + font-weight:bold; + color:#1c86ee; +} +#note a:hover +{ + color:#6c7b8b; +} +.spacer +{ + clear: both; +} +[JAVASCRIPT] +.expander +{ + padding:0; + width:1em; + display:block; + float:left; + text-align:center; + margin-right:0.5em; + cursor:pointer; +} +[/JAVASCRIPT] +.info +{ + position:fixed; + top:0; + right:1%; + width:48%; + display:none; +} +.details +{ + overflow: auto; + height: 500px; +} +</style> +[JAVASCRIPT] +<script type="text/javascript"> +<!-- +function getBoxes() +{ + return document.getElementById("left").getElementsByTagName("div") +} +function getHeight() +{ + //From http://www.howtocreate.co.uk/tutorials/javascript/browserwindow + myHeight = 0; + if( typeof( window.innerWidth ) == 'number' ) { + //Non-IE + myHeight = window.innerHeight; + } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { + //IE 6+ in 'standards compliant mode' + myHeight = document.documentElement.clientHeight; + } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { + //IE 4 compatible + myHeight = document.body.clientHeight; + } + return myHeight - 150; +} +function init() +{ + // CSS changes from http://www.quirksmode.org/dom/changess.html + if (!document.styleSheets) return; + var theRules = new Array(); + if (document.styleSheets[0].cssRules) + theRules = document.styleSheets[0].cssRules + else if (document.styleSheets[0].rules) + theRules = document.styleSheets[0].rules + theRules[theRules.length-1].style.height = getHeight()+'px'; + + boxes = getBoxes() + for(i=0; i < boxes.length; i++) + { + box = boxes[i] + if (box.className == "movie") + { + boxes2 = box.getElementsByTagName("div") + boxes2[0].onclick = function(evt) + { + div = this.parentNode + showMe(div.getElementsByTagName("div")[1], this) + } + } + } + headers = document.getElementById("left").getElementsByTagName("h3") + for(i=0; i < headers.length; i++) + { + header = headers[i] + header.style.cursor = 'pointer' + header.innerHTML = '<span class="expander">−</span> ' + header.innerHTML + header.onclick = function(evt) + { + table = this.nextSibling + while (table.tagName != "TABLE") { table = table.nextSibling } + if (table.style.display == "none") + { + table.style.display = "table" + this.innerHTML = this.innerHTML.replace(/\+<\/span>/, '−</span>') + } + else + { + table.style.display = "none" + this.innerHTML = this.innerHTML.replace(/−<\/span>/, '+</span>') + } + } + } +} +var currentBox = 0 +var currentImg = 0 +function showMe(box, img) +{ + hidePrevious() + box.style.display = "block" + img.style.background = "#4b4f63" + img.style.padding = "1em" + currentBox = box + currentImg = img +} +function hidePrevious() +{ + if (currentBox) + { + currentBox.style.display = "none" + currentImg.style.background = "#f0f0f0" + currentImg.style.padding = "2em 1em 0em" + } +} +--> +</script> +[/JAVASCRIPT] +</head> +<body [JAVASCRIPT]onload="init()"[/JAVASCRIPT]> +<h1>$$PAGETITLE$$</h1> +<div id="left"> +[/HEADER] +[ITEM] +<div class="movie"> + <div class="imgbox"> + <img src="$$COVER_FIELD$$" height="$$HEIGHT_PIC$$" alt="$$TITLE_FIELD$$" title="$$TITLE_FIELD$$" /> + </div> + <div class="info"> + <h2>$$TITLE_FIELD$$</h2> + <div class="details"> + <h3>$$main_LABEL$$</h3> + <table> + <tr><th>$$artist_LABEL$$</th><td>$$artist$$</td></tr> + <tr><th>$$label_LABEL$$</th><td>$$label$$</td></tr> + <tr><th>$$release_LABEL$$</th><td>$$release$$</td></tr> + <tr><th>$$running_LABEL$$</th><td>$$running$$</td></tr> + <tr><th>$$genre_LABEL$$</th><td>$$genre$$</td></tr> + </table> + + <h3>$$details_LABEL$$</h3> + <table> + <tr><th>$$producer_LABEL$$</th><td>$$producer$$</td></tr> + <tr><th>$$composer_LABEL$$</th><td>$$composer$$</td></tr> + <tr><th>$$comments_LABEL$$</th><td>$$comments$$</td></tr> + </table> + + <h3>$$tracks_LABEL$$</h3> + <table id="tracks"> + $$tracks_TABLE$$ + </table> + </div> + </div> +</div> +[/ITEM] +[FOOTER] +<div class="spacer"> </div> +</div> +<p id="note">$$GENERATOR_NOTE$$</p> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCmusics/Shelf.png b/share/gcstar/html_models/GCmusics/Shelf.png Binary files differnew file mode 100644 index 0000000..83dbfd8 --- /dev/null +++ b/share/gcstar/html_models/GCmusics/Shelf.png diff --git a/share/gcstar/html_models/GCmusics/Simple b/share/gcstar/html_models/GCmusics/Simple new file mode 100644 index 0000000..7cef04c --- /dev/null +++ b/share/gcstar/html_models/GCmusics/Simple @@ -0,0 +1,10 @@ +<metamodel> + <model>Simple</model> + <fields> + <field>title</field> + <field>artist</field> + <field>running</field> + <field>label</field> + <field>genre</field> + </fields> +</metamodel> diff --git a/share/gcstar/html_models/GCmusics/Simple.png b/share/gcstar/html_models/GCmusics/Simple.png Binary files differnew file mode 100644 index 0000000..4bc59cf --- /dev/null +++ b/share/gcstar/html_models/GCmusics/Simple.png diff --git a/share/gcstar/html_models/GCstar/Shelf b/share/gcstar/html_models/GCstar/Shelf new file mode 100644 index 0000000..e699fdc --- /dev/null +++ b/share/gcstar/html_models/GCstar/Shelf @@ -0,0 +1,282 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Tian. It emulates a shelf display. +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body +{ + color:black; +} +h1 +{ + text-align:left; + margin-left:0.5em; + font-size:200%; + font-weight:bold; + color:#6c7b8b; +} +h2 +{ + font-size:150%; + text-align:center; + color:#1c86ee; + font-weight:bold; + height:3em; +} +h3 +{ + font-size:120%; + font-weight:bold; + margin:1em 0; + color:#6c7b8b; + border-bottom:1px dashed #6c7b8b; +} +#left +{ +[JAVASCRIPT] + width:48%; +[/JAVASCRIPT] + border:1px dashed #6c7b8b; + background:#f0f0f0; +} +.imgbox +{ + float:left; + padding:2em 1em 0em; + margin:0; +} +.imgbox img +{ + margin:0; + padding:0; +[JAVASCRIPT] + cursor:pointer; +[/JAVASCRIPT] +} +.imginfo +{ + float:left; + margin-top:0.5em; +[JAVASCRIPT] + cursor:default; +[/JAVASCRIPT] +} +.info +{ + position:fixed; + top:0; + right:1%; + width:48%; + display:none; +} +.synopsis +{ + height:8em; + overflow:auto; + padding:0.2em; + background:#f0f0f0; +} +table +{ + margin:0 2%; + width:95%; +} +th +{ + font-weight:bold; + text-align:left; + white-space:nowrap; + padding:0.5em; + background:#f0f0f0; + width:40%; +} +td +{ + padding:0.5em; + background:#f0f0f0; + display:block; + min-height:1.5em; + max-height:12em; + overflow:auto; +} +#note +{ + text-align:center; + padding-top:0.5em; +[JAVASCRIPT] + width:48%; +[/JAVASCRIPT] + color:#6c7b8b; +} +#note a +{ + font-weight:bold; + color:#1c86ee; +} +#note a:hover +{ + color:#6c7b8b; +} +.spacer +{ + clear: both; +} +[JAVASCRIPT] +.expander +{ + padding:0; + width:1em; + display:block; + float:left; + text-align:center; + margin-right:0.5em; + cursor:pointer; +} +[/JAVASCRIPT] +.info +{ + position:fixed; + top:0; + right:1%; + width:48%; + display:none; +} +.details +{ + overflow: auto; + height: 500px; +} +</style> +[JAVASCRIPT] +<script type="text/javascript"> +<!-- +function getBoxes() +{ + return document.getElementById("left").getElementsByTagName("div") +} +function getHeight() +{ + //From http://www.howtocreate.co.uk/tutorials/javascript/browserwindow + myHeight = 0; + if( typeof( window.innerWidth ) == 'number' ) { + //Non-IE + myHeight = window.innerHeight; + } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { + //IE 6+ in 'standards compliant mode' + myHeight = document.documentElement.clientHeight; + } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { + //IE 4 compatible + myHeight = document.body.clientHeight; + } + return myHeight - 150; +} +function init() +{ + // CSS changes from http://www.quirksmode.org/dom/changess.html + if (!document.styleSheets) return; + var theRules = new Array(); + if (document.styleSheets[0].cssRules) + theRules = document.styleSheets[0].cssRules + else if (document.styleSheets[0].rules) + theRules = document.styleSheets[0].rules + theRules[theRules.length-1].style.height = getHeight()+'px'; + + boxes = getBoxes() + for(i=0; i < boxes.length; i++) + { + box = boxes[i] + if (box.className == "movie") + { + boxes2 = box.getElementsByTagName("div") + boxes2[0].onclick = function(evt) + { + div = this.parentNode + showMe(div.getElementsByTagName("div")[1], this) + } + } + } + headers = document.getElementById("left").getElementsByTagName("h3") + for(i=0; i < headers.length; i++) + { + header = headers[i] + header.style.cursor = 'pointer' + header.innerHTML = '<span class="expander">−</span> ' + header.innerHTML + header.onclick = function(evt) + { + table = this.nextSibling + while (table.tagName != "TABLE") { table = table.nextSibling } + if (table.style.display == "none") + { + table.style.display = "table" + this.innerHTML = this.innerHTML.replace(/\+<\/span>/, '−</span>') + } + else + { + table.style.display = "none" + this.innerHTML = this.innerHTML.replace(/−<\/span>/, '+</span>') + } + } + } +} +var currentBox = 0 +var currentImg = 0 +function showMe(box, img) +{ + hidePrevious() + box.style.display = "block" + img.style.background = "#4b4f63" + img.style.padding = "1em" + currentBox = box + currentImg = img +} +function hidePrevious() +{ + if (currentBox) + { + currentBox.style.display = "none" + currentImg.style.background = "#f0f0f0" + currentImg.style.padding = "2em 1em 0em" + } +} +--> +</script> +[/JAVASCRIPT] +</head> +<body [JAVASCRIPT]onload="init()"[/JAVASCRIPT]> +<h1>$$PAGETITLE$$</h1> +<div id="left"> +[/HEADER] +[ITEM] +<div class="movie"> + <div class="imgbox"> + <img src="$$COVER_FIELD$$" height="$$HEIGHT_PIC$$" alt="$$TITLE_FIELD$$" title="$$TITLE_FIELD$$" /> + </div> + <div class="info"> + <h2>$$TITLE_FIELD$$</h2> + <div class="details"> + [LOOP0 values=GCSgroups idx=GROUP] + <h3>$$GROUP_LABEL$$</h3> + <table> + [LOOP1 values=GROUP idx=VALUE] + <tr><th>$$VALUE_LABEL$$</th><td>$$VALUE$$</td></tr> + [/LOOP1] + </table> + [/LOOP0] + </div> + </div> +</div> +[/ITEM] +[FOOTER] +<div class="spacer"> </div> +</div> +<p id="note">$$GENERATOR_NOTE$$</p> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCstar/Shelf.png b/share/gcstar/html_models/GCstar/Shelf.png Binary files differnew file mode 100644 index 0000000..f4423d0 --- /dev/null +++ b/share/gcstar/html_models/GCstar/Shelf.png diff --git a/share/gcstar/html_models/GCstar/Simple b/share/gcstar/html_models/GCstar/Simple new file mode 100644 index 0000000..1db1548 --- /dev/null +++ b/share/gcstar/html_models/GCstar/Simple @@ -0,0 +1,96 @@ +[HEADER] +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- + Template made by Tian. A really simple list that could be printed +--> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>$$PAGETITLE$$</title> +<style type="text/css"> +body +{ + color:black; +} +h1 +{ + text-align:center; + font-size:200%; + font-weight:bold; +} +table +{ + border-collapse:collapse; + margin:1em 5%; + margin-bottom:3em; + width:90%; +} +tr+tr +{ + border-top:1px solid black; +} +.borrowed1 +{ + color:#777777; + font-style:italic; +} +th +{ + border-bottom:2px solid black; + margin:0; + padding:1em; + font-weight:bold; +} +td +{ + padding:0.2em 1em; +} +#legend +{ + margin:1em; + border:1px solid black; + display:inline; + padding:0.5em; +} +#note +{ + border-top:1px solid black; + margin:3em 8%; + margin-bottom:2em; + padding-top:0.5em; + text-align:center; + font-size:90%; +} +#note a +{ + color:black ! important; + text-decoration:underline; + font-weight:bold; +} +</style> +</head> +<body> +<h1>$$PAGETITLE$$</h1> +<table> +<tr> + [LOOP1 values=GCSfields idx=title] + <th>$$title_LABEL$$</th> + [/LOOP1] +</tr> +[/HEADER] +[ITEM] +<tr class="borrowed$$borrower_FLAG$$"> + [LOOP2 values=GCSfields idx=field] + <td>$$field$$</td> + [/LOOP2] +</tr> +[/ITEM] +[FOOTER] +</table> +[LENDING]<p id="legend" class="borrowed1">$$BORROWED_ITEMS$$</p>[/LENDING] +<p id="note">$$GENERATOR_NOTE$$</p> +</body> +</html> +[/FOOTER] +[POST] +[/POST] diff --git a/share/gcstar/html_models/GCstar/Simple.png b/share/gcstar/html_models/GCstar/Simple.png Binary files differnew file mode 100644 index 0000000..3e23235 --- /dev/null +++ b/share/gcstar/html_models/GCstar/Simple.png diff --git a/share/gcstar/icons/GCstar.ico b/share/gcstar/icons/GCstar.ico Binary files differnew file mode 100644 index 0000000..ddc75ec --- /dev/null +++ b/share/gcstar/icons/GCstar.ico diff --git a/share/gcstar/icons/gcstar_128x128.png b/share/gcstar/icons/gcstar_128x128.png Binary files differnew file mode 100644 index 0000000..6121ebf --- /dev/null +++ b/share/gcstar/icons/gcstar_128x128.png diff --git a/share/gcstar/icons/gcstar_16x16.png b/share/gcstar/icons/gcstar_16x16.png Binary files differnew file mode 100644 index 0000000..249b4c0 --- /dev/null +++ b/share/gcstar/icons/gcstar_16x16.png diff --git a/share/gcstar/icons/gcstar_192x192.png b/share/gcstar/icons/gcstar_192x192.png Binary files differnew file mode 100644 index 0000000..a1d65b8 --- /dev/null +++ b/share/gcstar/icons/gcstar_192x192.png diff --git a/share/gcstar/icons/gcstar_22x22.png b/share/gcstar/icons/gcstar_22x22.png Binary files differnew file mode 100644 index 0000000..ba81e06 --- /dev/null +++ b/share/gcstar/icons/gcstar_22x22.png diff --git a/share/gcstar/icons/gcstar_24x24.png b/share/gcstar/icons/gcstar_24x24.png Binary files differnew file mode 100644 index 0000000..c361bee --- /dev/null +++ b/share/gcstar/icons/gcstar_24x24.png diff --git a/share/gcstar/icons/gcstar_256x256.png b/share/gcstar/icons/gcstar_256x256.png Binary files differnew file mode 100644 index 0000000..0db7cb5 --- /dev/null +++ b/share/gcstar/icons/gcstar_256x256.png diff --git a/share/gcstar/icons/gcstar_32x32.png b/share/gcstar/icons/gcstar_32x32.png Binary files differnew file mode 100644 index 0000000..6a4aa63 --- /dev/null +++ b/share/gcstar/icons/gcstar_32x32.png diff --git a/share/gcstar/icons/gcstar_36x36.png b/share/gcstar/icons/gcstar_36x36.png Binary files differnew file mode 100644 index 0000000..09d0815 --- /dev/null +++ b/share/gcstar/icons/gcstar_36x36.png diff --git a/share/gcstar/icons/gcstar_48x48.png b/share/gcstar/icons/gcstar_48x48.png Binary files differnew file mode 100644 index 0000000..75b22e4 --- /dev/null +++ b/share/gcstar/icons/gcstar_48x48.png diff --git a/share/gcstar/icons/gcstar_64x64.png b/share/gcstar/icons/gcstar_64x64.png Binary files differnew file mode 100644 index 0000000..9ab0f26 --- /dev/null +++ b/share/gcstar/icons/gcstar_64x64.png diff --git a/share/gcstar/icons/gcstar_72x72.png b/share/gcstar/icons/gcstar_72x72.png Binary files differnew file mode 100644 index 0000000..6346b0c --- /dev/null +++ b/share/gcstar/icons/gcstar_72x72.png diff --git a/share/gcstar/icons/gcstar_96x96.png b/share/gcstar/icons/gcstar_96x96.png Binary files differnew file mode 100644 index 0000000..fc4bb66 --- /dev/null +++ b/share/gcstar/icons/gcstar_96x96.png diff --git a/share/gcstar/icons/gcstar_scalable.svg b/share/gcstar/icons/gcstar_scalable.svg new file mode 100644 index 0000000..a8f4345 --- /dev/null +++ b/share/gcstar/icons/gcstar_scalable.svg @@ -0,0 +1,354 @@ +<?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="svg2819" + sodipodi:version="0.32" + inkscape:version="0.47pre4 r22446" + sodipodi:docname="gcstar_scalable.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + version="1.0" + inkscape:export-filename="/home/nyall/Sources/gcstar/gcstar/share/gcstar/icons/gcstar48.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3"> + <linearGradient + id="linearGradient12410"> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="0" + id="stop12412" /> + <stop + id="stop12418" + offset="0.41" + style="stop-color:#ffffff;stop-opacity:0.84482759;" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0.41379312;" + offset="1" + id="stop12414" /> + </linearGradient> + <linearGradient + id="linearGradient12204"> + <stop + style="stop-color:#f8f7f5;stop-opacity:0.68965518;" + offset="0" + id="stop12206" /> + <stop + style="stop-color:#f8f7f5;stop-opacity:1;" + offset="1" + id="stop12208" /> + </linearGradient> + <linearGradient + id="linearGradient12049"> + <stop + style="stop-color:#1c86ee;stop-opacity:1;" + offset="0" + id="stop12051" /> + <stop + id="stop12057" + offset="0.02173913" + style="stop-color:#1c86ee;stop-opacity:1;" /> + <stop + style="stop-color:#1c86ee;stop-opacity:0;" + offset="1" + id="stop12053" /> + </linearGradient> + <linearGradient + id="linearGradient12019"> + <stop + style="stop-color:#e9f6fd;stop-opacity:1;" + offset="0" + id="stop12021" /> + <stop + id="stop12029" + offset="0.89999998" + style="stop-color:#e9f6fd;stop-opacity:0.80000001;" /> + <stop + style="stop-color:#1c86ee;stop-opacity:0.62068963;" + offset="1" + id="stop12023" /> + </linearGradient> + <linearGradient + id="linearGradient10825-3"> + <stop + style="stop-color:#ff8b00;stop-opacity:1" + offset="0" + id="stop10827-7" /> + <stop + style="stop-color:#ffda2c;stop-opacity:1;" + offset="1" + id="stop10829-2" /> + </linearGradient> + <linearGradient + y2="81.559097" + x2="48.764919" + y1="49.470879" + x1="13.621812" + gradientUnits="userSpaceOnUse" + id="linearGradient10903" + xlink:href="#linearGradient10825-3" + inkscape:collect="always" + gradientTransform="matrix(0.41155376,0,0,0.37629294,-265.80467,82.438907)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient12019" + id="radialGradient12025" + cx="-84.0952" + cy="66.399673" + fx="-84.0952" + fy="66.399673" + r="53.790623" + gradientTransform="matrix(1,0,0,1.1502348,0,-9.9755405)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient12049" + id="radialGradient12055" + cx="-168.95901" + cy="50.659706" + fx="-168.95901" + fy="50.659706" + r="34.345188" + gradientTransform="matrix(1.4498533,-0.12758225,0.20790246,1.4810386,65.474492,-46.435922)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient12204" + id="radialGradient12212" + cx="-194.366" + cy="76.325996" + fx="-194.366" + fy="76.325996" + r="35.096848" + gradientTransform="matrix(0.61646016,0.02621381,-0.01958688,0.4371301,-122.60409,75.947141)" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter12283" + color-interpolation-filters="sRGB"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.55968507" + id="feGaussianBlur12285" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient12410" + id="linearGradient12440" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + x1="76.058029" + y1="14.752228" + x2="75.362732" + y2="104.39509" + gradientTransform="matrix(0.39783017,0,0,0.38755469,3.0478444,71.768767)" /> + <linearGradient + id="linearGradient12049-8"> + <stop + style="stop-color:#1c86ee;stop-opacity:1;" + offset="0" + id="stop12051-8" /> + <stop + id="stop12057-0" + offset="0.02173913" + style="stop-color:#1c86ee;stop-opacity:1;" /> + <stop + style="stop-color:#1c86ee;stop-opacity:0;" + offset="1" + id="stop12053-3" /> + </linearGradient> + <radialGradient + r="34.345188" + fy="50.659706" + fx="-168.95901" + cy="50.659706" + cx="-168.95901" + gradientTransform="matrix(1.4498533,-0.12758225,0.20790246,1.4810386,65.474492,-46.435922)" + gradientUnits="userSpaceOnUse" + id="radialGradient12624" + xlink:href="#linearGradient12049-8" + inkscape:collect="always" /> + </defs> + <sodipodi:namedview + inkscape:document-units="px" + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="5.6" + inkscape:cx="58.070793" + inkscape:cy="21.605344" + inkscape:current-layer="layer2" + inkscape:window-width="1024" + inkscape:window-height="525" + inkscape:window-x="0" + inkscape:window-y="25" + height="350px" + width="350px" + showgrid="false" + inkscape:snap-nodes="false" + inkscape:snap-grids="false" + inkscape:snap-to-guides="false" + inkscape:window-maximized="1" + inkscape:showpageshadow="true"> + <inkscape:grid + type="xygrid" + id="grid12442" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" + dotted="false" + originy="0px" + spacingx="1px" + spacingy="1px" + originx="0px" /> + </sodipodi:namedview> + <metadata + id="metadata4"> + <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 + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Shadow" /> + <g + inkscape:label="Shape" + inkscape:groupmode="layer" + id="layer1" + style="display:inline" + transform="translate(278.8021,-83.301965)"> + <path + sodipodi:type="arc" + style="fill:#1c86ee;fill-opacity:1;stroke:none" + id="path11995" + sodipodi:cx="-84.0952" + sodipodi:cy="66.399673" + sodipodi:rx="53.790623" + sodipodi:ry="61.871845" + d="m -30.304577,66.399673 a 53.790623,61.871845 0 1 1 -107.581243,0 53.790623,61.871845 0 1 1 107.581243,0 z" + transform="matrix(0.39969792,0,0,0.37173613,-220.64158,82.694658)" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient12025);fill-opacity:1;stroke:none;display:inline" + id="path11995-2" + sodipodi:cx="-84.0952" + sodipodi:cy="66.399673" + sodipodi:rx="53.790623" + sodipodi:ry="61.871845" + d="m -30.304577,66.399673 a 53.790623,61.871845 0 1 1 -107.581243,0 53.790623,61.871845 0 1 1 107.581243,0 z" + transform="matrix(0.35487197,0,0,0.34244851,-224.17797,84.004615)" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient12055);fill-opacity:1;stroke:none" + id="path12031" + sodipodi:cx="-195.46452" + sodipodi:cy="55.287994" + sodipodi:rx="34.345188" + sodipodi:ry="38.133259" + d="m -161.11934,55.287994 a 34.345188,38.133259 0 1 1 -68.69037,0 34.345188,38.133259 0 1 1 68.69037,0 z" + transform="matrix(0.34955445,-0.20324359,0.23891661,0.3610748,-194.81789,40.934613)" /> + <path + sodipodi:type="arc" + style="opacity:0.63333333;fill:url(#radialGradient12624);fill-opacity:1;stroke:none;display:inline" + id="path12031-7" + sodipodi:cx="-195.46452" + sodipodi:cy="55.287994" + sodipodi:rx="34.345188" + sodipodi:ry="38.133259" + d="m -161.11934,55.287994 a 34.345188,38.133259 0 1 1 -68.69037,0 34.345188,38.133259 0 1 1 68.69037,0 z" + transform="matrix(0.24395051,0.31715383,-0.34463632,0.26837757,-183.28697,161.43492)" /> + </g> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Frame Details" + style="display:inline" + transform="translate(0,-70.692917)"> + <path + transform="matrix(0.42963728,0,0,0.39370638,0.8196103,71.267098)" + style="opacity:0.92957746;fill:#1c86ee;fill-opacity:1;stroke:none;filter:url(#filter12283)" + d="m 92.403138,59.05006 c 0,24.852814 -13.645663,45 -34.903138,45 -20.316188,0 -36.785713,-20.147186 -36.785713,-45 0,-24.852813 18.135902,-45.37322 38.44969,-45.703125 21.647369,-0.351562 33.239161,21.347496 33.239161,45.703125 z" + id="path12267" + sodipodi:nodetypes="csssc" /> + <path + style="fill:url(#linearGradient12440);fill-opacity:1;stroke:none;display:inline" + d="m 32.089449,77.618419 c 5.761051,3.911675 8.752263,7.524674 8.752263,16.967628 0,9.679593 -6.174441,16.554383 -12.508561,17.647563 7.783371,-0.69205 14.069638,-7.11559 14.211772,-17.090451 0.142081,-9.971217 -3.505091,-14.44351 -10.455474,-17.52474 z" + id="path12366" + sodipodi:nodetypes="cscsc" /> + </g> + <g + inkscape:groupmode="layer" + id="layer3" + inkscape:label="Orange Face" + style="display:inline" + transform="translate(278.8021,-83.301965)"> + <path + style="fill:url(#linearGradient10903);fill-opacity:1;stroke:none;display:inline" + d="m -238.78208,107.13955 c 0,9.02702 -6.74719,16.34487 -15.07029,16.34487 -8.32308,0 -15.07028,-7.31785 -15.07028,-16.34487 0,-9.027022 5.78737,-16.531557 15.07028,-16.344869 8.32132,0.167349 15.07029,7.317847 15.07029,16.344869 z" + id="path10051" + sodipodi:nodetypes="csssc" /> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Eyes" + style="display:inline" + transform="translate(278.8021,-83.301965)"> + <path + sodipodi:type="arc" + style="fill:#2287e7;fill-opacity:1;stroke:none" + id="path12200" + sodipodi:cx="-230.56732" + sodipodi:cy="68.167442" + sodipodi:rx="8.8388348" + sodipodi:ry="14.647212" + d="m -221.72849,68.167442 a 8.8388348,14.647212 0 1 1 -17.67767,0 8.8388348,14.647212 0 1 1 17.67767,0 z" + transform="matrix(0.37134401,-0.021034,0.0215917,0.36175264,-172.41705,77.950439)" /> + <path + sodipodi:type="arc" + style="fill:#2287e7;fill-opacity:1;stroke:none" + id="path12202" + sodipodi:cx="-204.30336" + sodipodi:cy="67.914902" + sodipodi:rx="7.0710678" + sodipodi:ry="12.879445" + d="m -197.23229,67.914902 a 7.0710678,12.879445 0 1 1 -14.14214,0 7.0710678,12.879445 0 1 1 14.14214,0 z" + transform="matrix(0.39204386,0.02209561,-0.02344396,0.3769938,-165.14717,86.401306)" + inkscape:export-xdpi="120" + inkscape:export-ydpi="120" /> + </g> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Gloss" + transform="translate(278.8021,-83.301965)" + style="display:inline"> + <path + style="opacity:0.85;fill:url(#radialGradient12212);fill-opacity:1;display:inline" + d="m -265.40032,100.20156 c -2.68359,5.52441 -1.5331,7.47527 6.84606,5.40973 6.11499,-1.50737 11.50992,-1.7882 19.78978,1.22675 -0.0647,-6.61559 -3.94917,-12.281952 -9.09606,-14.70295 -7.39496,-1.875584 -14.40235,1.607757 -17.53978,8.06647 z" + id="path6484-2" + sodipodi:nodetypes="csccs" /> + </g> +</svg> diff --git a/share/gcstar/icons/icon_install.ico b/share/gcstar/icons/icon_install.ico Binary files differnew file mode 100644 index 0000000..6fe942e --- /dev/null +++ b/share/gcstar/icons/icon_install.ico diff --git a/share/gcstar/icons/star.png b/share/gcstar/icons/star.png Binary files differnew file mode 100644 index 0000000..063d0df --- /dev/null +++ b/share/gcstar/icons/star.png diff --git a/share/gcstar/icons/star_hover.png b/share/gcstar/icons/star_hover.png Binary files differnew file mode 100644 index 0000000..fb7f0d1 --- /dev/null +++ b/share/gcstar/icons/star_hover.png diff --git a/share/gcstar/icons/stardark.png b/share/gcstar/icons/stardark.png Binary files differnew file mode 100644 index 0000000..4c57a41 --- /dev/null +++ b/share/gcstar/icons/stardark.png diff --git a/share/gcstar/icons/stardark_hover.png b/share/gcstar/icons/stardark_hover.png Binary files differnew file mode 100644 index 0000000..0874b55 --- /dev/null +++ b/share/gcstar/icons/stardark_hover.png diff --git a/share/gcstar/icons/web.ico b/share/gcstar/icons/web.ico Binary files differnew file mode 100644 index 0000000..9cdd1d9 --- /dev/null +++ b/share/gcstar/icons/web.ico diff --git a/share/gcstar/list_bg/Box/group.png b/share/gcstar/list_bg/Box/group.png Binary files differnew file mode 100644 index 0000000..ff26ccf --- /dev/null +++ b/share/gcstar/list_bg/Box/group.png diff --git a/share/gcstar/list_bg/Box/list_bg.png b/share/gcstar/list_bg/Box/list_bg.png Binary files differnew file mode 100644 index 0000000..302ec62 --- /dev/null +++ b/share/gcstar/list_bg/Box/list_bg.png diff --git a/share/gcstar/list_bg/Box/style b/share/gcstar/list_bg/Box/style new file mode 100644 index 0000000..25b9cd4 --- /dev/null +++ b/share/gcstar/list_bg/Box/style @@ -0,0 +1,2 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" diff --git a/share/gcstar/list_bg/Brick_and_Glass/group.png b/share/gcstar/list_bg/Brick_and_Glass/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Brick_and_Glass/group.png diff --git a/share/gcstar/list_bg/Brick_and_Glass/list_bg.png b/share/gcstar/list_bg/Brick_and_Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..42cc613 --- /dev/null +++ b/share/gcstar/list_bg/Brick_and_Glass/list_bg.png diff --git a/share/gcstar/list_bg/Brick_and_Glass/list_fg.png b/share/gcstar/list_bg/Brick_and_Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..361a825 --- /dev/null +++ b/share/gcstar/list_bg/Brick_and_Glass/list_fg.png diff --git a/share/gcstar/list_bg/Brick_and_Glass/style b/share/gcstar/list_bg/Brick_and_Glass/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Brick_and_Glass/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Dark_Glass/group.png b/share/gcstar/list_bg/Dark_Glass/group.png Binary files differnew file mode 100644 index 0000000..9e634fc --- /dev/null +++ b/share/gcstar/list_bg/Dark_Glass/group.png diff --git a/share/gcstar/list_bg/Dark_Glass/list_bg.png b/share/gcstar/list_bg/Dark_Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..7b6c933 --- /dev/null +++ b/share/gcstar/list_bg/Dark_Glass/list_bg.png diff --git a/share/gcstar/list_bg/Dark_Glass/list_fg.png b/share/gcstar/list_bg/Dark_Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..3f4b0ec --- /dev/null +++ b/share/gcstar/list_bg/Dark_Glass/list_fg.png diff --git a/share/gcstar/list_bg/Dark_Glass/style b/share/gcstar/list_bg/Dark_Glass/style new file mode 100644 index 0000000..a15c4b2 --- /dev/null +++ b/share/gcstar/list_bg/Dark_Glass/style @@ -0,0 +1,4 @@ +groupStyle="weight='bold' color='#ffffff' size='large'" +groupAlign="center" +withReflect=1 + diff --git a/share/gcstar/list_bg/Glass/group.png b/share/gcstar/list_bg/Glass/group.png Binary files differnew file mode 100644 index 0000000..bbf095c --- /dev/null +++ b/share/gcstar/list_bg/Glass/group.png diff --git a/share/gcstar/list_bg/Glass/list_bg.png b/share/gcstar/list_bg/Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..028b75c --- /dev/null +++ b/share/gcstar/list_bg/Glass/list_bg.png diff --git a/share/gcstar/list_bg/Glass/list_fg.png b/share/gcstar/list_bg/Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..9886f4e --- /dev/null +++ b/share/gcstar/list_bg/Glass/list_fg.png diff --git a/share/gcstar/list_bg/Glass/style b/share/gcstar/list_bg/Glass/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Glass/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Green_Glass/group.png b/share/gcstar/list_bg/Green_Glass/group.png Binary files differnew file mode 100644 index 0000000..ca4c99a --- /dev/null +++ b/share/gcstar/list_bg/Green_Glass/group.png diff --git a/share/gcstar/list_bg/Green_Glass/list_bg.png b/share/gcstar/list_bg/Green_Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..12d2b1a --- /dev/null +++ b/share/gcstar/list_bg/Green_Glass/list_bg.png diff --git a/share/gcstar/list_bg/Green_Glass/list_fg.png b/share/gcstar/list_bg/Green_Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..3da18aa --- /dev/null +++ b/share/gcstar/list_bg/Green_Glass/list_fg.png diff --git a/share/gcstar/list_bg/Green_Glass/style b/share/gcstar/list_bg/Green_Glass/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Green_Glass/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Luxury_Green_Glass/group.png b/share/gcstar/list_bg/Luxury_Green_Glass/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Green_Glass/group.png diff --git a/share/gcstar/list_bg/Luxury_Green_Glass/list_bg.png b/share/gcstar/list_bg/Luxury_Green_Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..9af5e50 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Green_Glass/list_bg.png diff --git a/share/gcstar/list_bg/Luxury_Green_Glass/list_fg.png b/share/gcstar/list_bg/Luxury_Green_Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..f555372 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Green_Glass/list_fg.png diff --git a/share/gcstar/list_bg/Luxury_Green_Glass/style b/share/gcstar/list_bg/Luxury_Green_Glass/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Green_Glass/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Luxury_Green_Wood/group.png b/share/gcstar/list_bg/Luxury_Green_Wood/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Green_Wood/group.png diff --git a/share/gcstar/list_bg/Luxury_Green_Wood/list_bg.png b/share/gcstar/list_bg/Luxury_Green_Wood/list_bg.png Binary files differnew file mode 100644 index 0000000..bedb34a --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Green_Wood/list_bg.png diff --git a/share/gcstar/list_bg/Luxury_Green_Wood/list_fg.png b/share/gcstar/list_bg/Luxury_Green_Wood/list_fg.png Binary files differnew file mode 100644 index 0000000..968a418 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Green_Wood/list_fg.png diff --git a/share/gcstar/list_bg/Luxury_Green_Wood/style b/share/gcstar/list_bg/Luxury_Green_Wood/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Green_Wood/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Luxury_Grey_Glass/group.png b/share/gcstar/list_bg/Luxury_Grey_Glass/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Grey_Glass/group.png diff --git a/share/gcstar/list_bg/Luxury_Grey_Glass/list_bg.png b/share/gcstar/list_bg/Luxury_Grey_Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..bafb27c --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Grey_Glass/list_bg.png diff --git a/share/gcstar/list_bg/Luxury_Grey_Glass/list_fg.png b/share/gcstar/list_bg/Luxury_Grey_Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..77234f7 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Grey_Glass/list_fg.png diff --git a/share/gcstar/list_bg/Luxury_Grey_Glass/style b/share/gcstar/list_bg/Luxury_Grey_Glass/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Grey_Glass/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Luxury_Grey_Wood/group.png b/share/gcstar/list_bg/Luxury_Grey_Wood/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Grey_Wood/group.png diff --git a/share/gcstar/list_bg/Luxury_Grey_Wood/list_bg.png b/share/gcstar/list_bg/Luxury_Grey_Wood/list_bg.png Binary files differnew file mode 100644 index 0000000..14f22c1 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Grey_Wood/list_bg.png diff --git a/share/gcstar/list_bg/Luxury_Grey_Wood/list_fg.png b/share/gcstar/list_bg/Luxury_Grey_Wood/list_fg.png Binary files differnew file mode 100644 index 0000000..968a418 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Grey_Wood/list_fg.png diff --git a/share/gcstar/list_bg/Luxury_Grey_Wood/style b/share/gcstar/list_bg/Luxury_Grey_Wood/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Grey_Wood/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Luxury_Purple_Glass/group.png b/share/gcstar/list_bg/Luxury_Purple_Glass/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Purple_Glass/group.png diff --git a/share/gcstar/list_bg/Luxury_Purple_Glass/list_bg.png b/share/gcstar/list_bg/Luxury_Purple_Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..7d8dd4b --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Purple_Glass/list_bg.png diff --git a/share/gcstar/list_bg/Luxury_Purple_Glass/list_fg.png b/share/gcstar/list_bg/Luxury_Purple_Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..85dde3e --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Purple_Glass/list_fg.png diff --git a/share/gcstar/list_bg/Luxury_Purple_Glass/style b/share/gcstar/list_bg/Luxury_Purple_Glass/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Purple_Glass/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Luxury_Purple_Wood/group.png b/share/gcstar/list_bg/Luxury_Purple_Wood/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Purple_Wood/group.png diff --git a/share/gcstar/list_bg/Luxury_Purple_Wood/list_bg.png b/share/gcstar/list_bg/Luxury_Purple_Wood/list_bg.png Binary files differnew file mode 100644 index 0000000..8930822 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Purple_Wood/list_bg.png diff --git a/share/gcstar/list_bg/Luxury_Purple_Wood/list_fg.png b/share/gcstar/list_bg/Luxury_Purple_Wood/list_fg.png Binary files differnew file mode 100644 index 0000000..968a418 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Purple_Wood/list_fg.png diff --git a/share/gcstar/list_bg/Luxury_Purple_Wood/style b/share/gcstar/list_bg/Luxury_Purple_Wood/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Purple_Wood/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Luxury_Red_Glass/group.png b/share/gcstar/list_bg/Luxury_Red_Glass/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Red_Glass/group.png diff --git a/share/gcstar/list_bg/Luxury_Red_Glass/list_bg.png b/share/gcstar/list_bg/Luxury_Red_Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..8205509 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Red_Glass/list_bg.png diff --git a/share/gcstar/list_bg/Luxury_Red_Glass/list_fg.png b/share/gcstar/list_bg/Luxury_Red_Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..1b3305f --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Red_Glass/list_fg.png diff --git a/share/gcstar/list_bg/Luxury_Red_Glass/style b/share/gcstar/list_bg/Luxury_Red_Glass/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Red_Glass/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Luxury_Red_Wood/group.png b/share/gcstar/list_bg/Luxury_Red_Wood/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Red_Wood/group.png diff --git a/share/gcstar/list_bg/Luxury_Red_Wood/list_bg.png b/share/gcstar/list_bg/Luxury_Red_Wood/list_bg.png Binary files differnew file mode 100644 index 0000000..876682b --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Red_Wood/list_bg.png diff --git a/share/gcstar/list_bg/Luxury_Red_Wood/list_fg.png b/share/gcstar/list_bg/Luxury_Red_Wood/list_fg.png Binary files differnew file mode 100644 index 0000000..968a418 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Red_Wood/list_fg.png diff --git a/share/gcstar/list_bg/Luxury_Red_Wood/style b/share/gcstar/list_bg/Luxury_Red_Wood/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Luxury_Red_Wood/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Marble/group.png b/share/gcstar/list_bg/Marble/group.png Binary files differnew file mode 100644 index 0000000..371a322 --- /dev/null +++ b/share/gcstar/list_bg/Marble/group.png diff --git a/share/gcstar/list_bg/Marble/list_bg.png b/share/gcstar/list_bg/Marble/list_bg.png Binary files differnew file mode 100644 index 0000000..adbb4bc --- /dev/null +++ b/share/gcstar/list_bg/Marble/list_bg.png diff --git a/share/gcstar/list_bg/Marble/style b/share/gcstar/list_bg/Marble/style new file mode 100644 index 0000000..613426b --- /dev/null +++ b/share/gcstar/list_bg/Marble/style @@ -0,0 +1,2 @@ +groupStyle="weight='bold' color='#ffffff'" +groupAlign="center" diff --git a/share/gcstar/list_bg/Wood/group.png b/share/gcstar/list_bg/Wood/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Wood/group.png diff --git a/share/gcstar/list_bg/Wood/list_bg.png b/share/gcstar/list_bg/Wood/list_bg.png Binary files differnew file mode 100644 index 0000000..b30737e --- /dev/null +++ b/share/gcstar/list_bg/Wood/list_bg.png diff --git a/share/gcstar/list_bg/Wood/list_fg.png b/share/gcstar/list_bg/Wood/list_fg.png Binary files differnew file mode 100644 index 0000000..fd1b76f --- /dev/null +++ b/share/gcstar/list_bg/Wood/list_fg.png diff --git a/share/gcstar/list_bg/Wood/style b/share/gcstar/list_bg/Wood/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Wood/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Wood2/group.png b/share/gcstar/list_bg/Wood2/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Wood2/group.png diff --git a/share/gcstar/list_bg/Wood2/list_bg.png b/share/gcstar/list_bg/Wood2/list_bg.png Binary files differnew file mode 100644 index 0000000..e89f956 --- /dev/null +++ b/share/gcstar/list_bg/Wood2/list_bg.png diff --git a/share/gcstar/list_bg/Wood2/list_fg.png b/share/gcstar/list_bg/Wood2/list_fg.png Binary files differnew file mode 100644 index 0000000..968a418 --- /dev/null +++ b/share/gcstar/list_bg/Wood2/list_fg.png diff --git a/share/gcstar/list_bg/Wood2/style b/share/gcstar/list_bg/Wood2/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Wood2/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/list_bg/Wood_and_Glass/group.png b/share/gcstar/list_bg/Wood_and_Glass/group.png Binary files differnew file mode 100644 index 0000000..6b23fab --- /dev/null +++ b/share/gcstar/list_bg/Wood_and_Glass/group.png diff --git a/share/gcstar/list_bg/Wood_and_Glass/list_bg.png b/share/gcstar/list_bg/Wood_and_Glass/list_bg.png Binary files differnew file mode 100644 index 0000000..d3e4135 --- /dev/null +++ b/share/gcstar/list_bg/Wood_and_Glass/list_bg.png diff --git a/share/gcstar/list_bg/Wood_and_Glass/list_fg.png b/share/gcstar/list_bg/Wood_and_Glass/list_fg.png Binary files differnew file mode 100644 index 0000000..62c1c0e --- /dev/null +++ b/share/gcstar/list_bg/Wood_and_Glass/list_fg.png diff --git a/share/gcstar/list_bg/Wood_and_Glass/style b/share/gcstar/list_bg/Wood_and_Glass/style new file mode 100644 index 0000000..58ff634 --- /dev/null +++ b/share/gcstar/list_bg/Wood_and_Glass/style @@ -0,0 +1,3 @@ +groupStyle="weight='bold' color='#ffffff' size='medium'" +groupAlign="center" +withReflect=1 diff --git a/share/gcstar/logos/Peri.png b/share/gcstar/logos/Peri.png Binary files differnew file mode 100644 index 0000000..08f39ff --- /dev/null +++ b/share/gcstar/logos/Peri.png diff --git a/share/gcstar/logos/Peri_main_logo.png b/share/gcstar/logos/Peri_main_logo.png Binary files differnew file mode 100644 index 0000000..cb4cd37 --- /dev/null +++ b/share/gcstar/logos/Peri_main_logo.png diff --git a/share/gcstar/logos/Peri_main_logo.svg b/share/gcstar/logos/Peri_main_logo.svg new file mode 100644 index 0000000..98bff66 --- /dev/null +++ b/share/gcstar/logos/Peri_main_logo.svg @@ -0,0 +1,3436 @@ +<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
+ <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
+ <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
+ <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
+ <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
+ <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
+ <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
+ <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
+ <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1"
+ xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" i:viewOrigin="-192 208" i:rulerOrigin="0 0" i:pageBounds="0 16 16 0"
+ xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" width="401" height="401"
+ viewBox="0 0 401 401" overflow="visible" enable-background="new 0 0 401 401" xml:space="preserve">
+<metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> +<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="3.1.1-111"> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <rdf:Description rdf:about="" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <dc:format>image/svg+xml</dc:format> + </rdf:Description> + <rdf:Description rdf:about="" + xmlns:xap="http://ns.adobe.com/xap/1.0/" + xmlns:xapGImg="http://ns.adobe.com/xap/1.0/g/img/"> + <xap:CreatorTool>Adobe Illustrator CS2</xap:CreatorTool> + <xap:CreateDate>2005-11-07T17:36:23+01:00</xap:CreateDate> + <xap:ModifyDate>2005-11-07T17:36:23+01:00</xap:ModifyDate> + <xap:MetadataDate>2005-11-07T17:36:23+01:00</xap:MetadataDate> + <xap:Thumbnails> + <rdf:Alt> + <rdf:li rdf:parseType="Resource"> + <xapGImg:width>256</xapGImg:width> + <xapGImg:height>256</xapGImg:height> + <xapGImg:format>JPEG</xapGImg:format> + <xapGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7
FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F
XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX
Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY
q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq
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
wG3COqcfc1p7Vrm37I12efoI4x3np8XSdvdm6bH64ngl/NA2PuG1efTyY9+XXkC58wX8d5eRMmiw
Nyldqr6xU/3aHwqPiI6fPM7tTtIYI8MT+8P2ef6nW9jdjy1MhKY/dDn5+Q/T+t79nEPozsVdirsV
dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVSnV/Kfl3WLu
C81KxS5uLcUidy1KA8qMoIVxXswOZWDW5cUTGEqBcHU9m4M8xPJHilH8b948imkUUUMSRRIscUah
Y41AVVVRQAAbAAZjEkmzzcyMREAAUAuwMnYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq
7FXYq7FXYq7FXYq7FXYqhX1SzQkc+RHgCcmMZYHIFP8AS9t2Vz9A/rh8Mo8UO/SsR6I34Y+GV8QL
hqSH9g/fg4F8RcNQQ/sHHgTxrxexnsfwwcKeJcLmI+IwcKeJUV1boa4KS3irsVdirsVdirsVdirs
VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVU3t4JDV41Y+JArhEigxCmdPsz/uofQSP1HD
xlHAGv0dadkP3nDxlHAG/wBH247H78HGV4A2LKAdj9+PEU8AXC1hH7P4nHiKeELhDEOi4LWl4AHQ
UwJdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir
sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs
VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV
dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd
irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi
rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir
sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs
VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV
dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd
irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi
rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir
sVdirsVdirsVdirsVdir/9k=</xapGImg:image> + </rdf:li> + </rdf:Alt> + </xap:Thumbnails> + </rdf:Description> + <rdf:Description rdf:about="" + xmlns:xapMM="http://ns.adobe.com/xap/1.0/mm/"> + <xapMM:DocumentID>uuid:0D242DA2AC4FDA11B312AE4ADC8A7260</xapMM:DocumentID> + <xapMM:InstanceID>uuid:0E242DA2AC4FDA11B312AE4ADC8A7260</xapMM:InstanceID> + </rdf:Description> + </rdf:RDF> +</x:xmpmeta> + + + + + + + + + + + + + + + + + + + + + +<?xpacket end="w"?>
+ </metadata>
+<switch>
+ <foreignObject requiredExtensions="&ns_ai;" x="0" y="0" width="1" height="1">
+ <i:pgfRef xlink:href="#adobe_illustrator_pgf">
+ </i:pgfRef>
+ </foreignObject>
+ <g i:extraneous="self">
+ <g id="Calque_1" i:layer="yes" i:editable="no" i:dimmedPercent="50" i:rgbTrio="#4F008000FFFF">
+ <rect x="0.5" y="0.5" fill="none" stroke="#FFFFFF" width="400" height="400"/>
+ </g>
+ <g id="logo_x5F_GCfilms" i:layer="yes" i:editable="no" i:dimmedPercent="50" i:rgbTrio="#FFFF4F004F00">
+ <g>
+
+ <linearGradient id="XMLID_84_" gradientUnits="userSpaceOnUse" x1="464.9299" y1="-455.522" x2="289.7179" y2="-477.1064" gradientTransform="matrix(1 0.0046 0.0046 -1 -289.3605 -205.7951)">
+ <stop offset="0.0056" style="stop-color:#FFFFFF"/>
+ <stop offset="0.3072" style="stop-color:#ECF2F9"/>
+ <stop offset="0.9175" style="stop-color:#BAD2EA"/>
+ <stop offset="1" style="stop-color:#B3CDE8"/>
+ <a:midPointStop offset="0.0056" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.3072" style="stop-color:#ECF2F9"/>
+ <a:midPointStop offset="0.5" style="stop-color:#ECF2F9"/>
+ <a:midPointStop offset="0.9175" style="stop-color:#BAD2EA"/>
+ <a:midPointStop offset="0.5" style="stop-color:#BAD2EA"/>
+ <a:midPointStop offset="1" style="stop-color:#B3CDE8"/>
+ </linearGradient>
+ <path fill="url(#XMLID_84_)" d="M132.352,262.551c-0.012,2.467-21.148,4.367-47.21,4.246
+ c-26.062-0.119-47.18-2.217-47.168-4.684c0.011-2.465,21.148-4.367,47.209-4.246
+ C111.244,257.986,132.363,260.085,132.352,262.551z"/>
+ <g>
+ <path i:knockout="Off" fill="#FFFFFF" d="M382.129,194.818c-0.992-0.993-2.266-1.519-3.683-1.519
+ c-1.016,0-1.948,0.281-2.759,0.803c0.052-0.266,0.105-0.531,0.138-0.805c0.443-3.673-0.979-6.05-2.966-7.64
+ c0.496-0.16,1.005-0.387,1.528-0.697c2.944-1.732,4.224-5.028,3.029-7.834c-1.1-2.572-3.624-3.624-4.839-4.127
+ c-6.059-2.543-12.757-2.287-18.363,0.707c-1.276,0.684-2.379,1.47-3.321,2.341c-0.437-0.839-1.059-1.624-1.913-2.322
+ l-0.15-0.151c-0.003-0.001-0.246-0.175-0.246-0.175c-3.16-2.265-7.138-2.194-9.854-1.945c-1.664,0.154-3.25,0.48-4.724,0.972
+ c0.006-0.001-0.263,0.088-0.263,0.088c-0.935,0.314-1.729,0.576-2.373,0.6c-0.152-0.062-0.398-0.181-0.577-0.267
+ c-0.349-0.168-0.782-0.379-1.283-0.567c-1.665-0.637-3.439-1.031-5.246-1.159c-1.841-0.127-3.566,0.015-5.144,0.425
+ c-0.665,0.171-1.284,0.387-1.785,0.561c-0.64,0.22-1.181,0.407-1.568,0.444c-0.457,0.044-1.206-0.069-1.932-0.18
+ c-1.948-0.291-4.549-0.655-7.141,0.711c0.2-0.6,0.337-1.019,0.335-1.016l0.002-0.008c0.396-1.18,1.129-3.378,0.407-5.71
+ c-0.903-2.919-3.816-4.531-7.25-4.008c-1.454,0.22-3.237,0.865-4.82,2.506c-0.434-0.769-1.052-1.444-1.854-1.976
+ c-1.959-1.303-4.627-1.34-7.063-0.147c-2.898-2.799-8.086-1.713-8.138-1.701c-2.988,0.662-5.713,2.35-8.115,5.016
+ c-0.836,0.927-1.536,1.924-2.151,2.802c-0.299,0.423-0.585,0.819-0.864,1.195c-0.86-3.145-3.153-5.964-6.404-7.795l0.002,0.002
+ c-4.699-2.65-10.969-3.066-17.653-1.173c-4.856,1.378-9.38,4.144-13.091,8c-1.12,1.165-2.144,2.423-3.085,3.743
+ c-0.002-0.98-0.152-2.006-0.48-3.051c-0.946-2.998-3.185-5.618-6.307-7.38c-4.703-2.646-10.971-3.06-17.649-1.168
+ c-9.6,2.723-17.588,10.789-20.851,21.051c-2.234,7.024-1.416,13.599,2.244,18.038c4.392,5.332,11.449,5.824,15.265,5.642
+ c5.93-0.277,11.632-2.402,16.484-6.139c1.841-1.416,4.039-3.252,5.949-5.485c0.56,2.188,1.534,4.166,2.911,5.837
+ c4.391,5.33,11.446,5.825,15.266,5.646c5.89-0.281,11.556-2.375,16.385-6.059c0.637-0.487,1.499-1.147,2.36-1.97
+ c-0.337,2.125-0.206,4.698,1.823,6.607c1.183,1.111,2.753,1.69,4.426,1.623c2.536-0.102,4.772-1.61,6.026-2.989
+ c0.316-0.349,0.593-0.714,0.855-1.084c0.617,1.684,1.92,2.989,3.636,3.568c2.76,0.941,5.786-0.19,7.426-1.637
+ c0.429-0.378,0.796-0.783,1.14-1.193c0.116,0.24,0.249,0.483,0.407,0.719c0.908,1.373,2.34,2.279,4.027,2.543
+ c2.508,0.39,4.961-0.719,6.298-1.791c0.622-0.492,1.145-1.053,1.597-1.633c0.674,1.559,1.854,2.396,2.757,2.831
+ c3.46,1.656,7.563,0.003,9.964-4.022c0.727-1.216,1.135-2.466,1.46-3.472c0.002-0.009,0.141-0.422,0.141-0.422
+ c-0.005,0.016,1.434-4.307,1.434-4.307c0.164-0.49,0.341-1.033,0.531-1.648c0.515-1.621,1.045-3.305,1.785-4.614
+ c0.723-1.282,2.437-2.394,3.775-2.177c-0.114,0.588-0.373,1.314-0.629,2.022c-0.123,0.34-0.265,0.735-0.399,1.135l0.073,0.012
+ c-0.286,0.646-0.531,1.366-0.782,2.124l-0.702,2.114c-0.003,0.013-0.221,0.677-0.221,0.677c-0.317,0.979-0.69,2.13-1.027,3.272
+ l-0.149,0.505v0.02c-0.459,1.639-0.995,4.134,0.349,6.506c0.843,1.488,2.236,2.495,3.928,2.844
+ c2.467,0.51,4.897-0.49,6.347-1.596c2.698-2.045,3.688-5.325,4.344-7.496c-0.002,0.002,0.119-0.398,0.119-0.398
+ c0.435-1.424,0.908-2.881,1.368-4.291l0.063-0.193c0.004-0.012,1.063-3.304,1.063-3.304c0.538-1.708,1.132-2.983,2.305-3.718
+ c0.512-0.322,1.243-0.559,1.801-0.536c-0.045,0.328-0.153,0.847-0.41,1.658c0.004-0.003-0.041,0.135-0.041,0.135
+ c-0.714,2.261-1.524,4.826-2.377,7.265c-1.499,4.281-1.449,7.458,0.155,9.712c1.164,1.637,3.003,2.533,5.177,2.521
+ c2.955-0.005,4.942-1.676,6.289-3.574c0.764,0.866,1.649,1.558,2.496,2.029c4.323,2.388,10.096,2.638,17.16,0.747
+ c3.296-0.879,6.737-2.86,9.002-5.737c0.144,1.13,0.633,2.182,1.455,3.004c0.986,0.986,2.284,1.529,3.654,1.529
+ c1.377,0,2.687-0.544,3.687-1.532c0.964-0.95,1.495-2.247,1.495-3.65C383.628,197.085,383.096,195.784,382.129,194.818z"/>
+ <path i:knockout="Off" fill="#FFFFFF" d="M137.419,202.284c0.012,0.025,0.019,0.053,0.031,0.078
+ c0.008,0.016,0.021,0.031,0.029,0.051L137.419,202.284z"/>
+ <path i:knockout="Off" fill="#FFFFFF" d="M172.476,136.879l-0.01-0.01l-0.007-0.009c-0.003-0.001-0.012-0.013-0.018-0.017
+ c-0.307-0.407-0.639-0.819-1.039-1.286c-2.015-2.348-4.362-4.217-6.967-5.568l0.067,0.035l-0.207-0.126
+ c-0.005-0.002-0.032-0.014-0.066-0.029c-0.063-0.038-0.129-0.077-0.226-0.127c-0.187-0.098-0.359-0.178-0.497-0.244
+ c-0.061-0.027-0.116-0.054-0.158-0.075l-0.013-0.006c-0.125-0.06-0.138-0.066-0.138-0.066l-0.1-0.049
+ c-0.093-0.049-0.246-0.132-0.441-0.217l-0.078-0.034c-0.116-0.046-0.195-0.076-0.195-0.076l-0.034-0.013
+ c-1.978-0.85-4.147-1.408-6.378-1.627c-2.538-0.282-5.249-0.133-8.012,0.451c-0.076,0.016-0.371,0.078-0.371,0.078
+ c-0.114,0.023-0.262,0.062-0.387,0.088l-1.649-0.15l-0.247-0.039c-1.03-0.165-2.025-0.29-2.958-0.369
+ c-13.499-1.652-31.593,1.844-40.393,27.953c-0.722,2.144-2.493,7.979-4.733,15.367l-2.848,9.363
+ c-9.089,0.619-15.507,2.667-19.093,6.104c-1.508,1.314-2.433,3.182-2.534,5.167c-0.028,0.561,0.034,1.132,0.149,1.723
+ c0.405,3.66,3.474,6.563,7.207,6.778c2.252,0.132,4.439-0.712,6.002-2.313l0.079-0.064c-0.068,0.072-0.112,0.105-0.113,0.106
+ c0.267-0.199,1.246-0.629,3.218-1.06c-0.076,0.244-0.338,1.074-0.338,1.074l-1.156,3.656l-0.056-0.111
+ c0.005-0.016-2.783,8.315-2.783,8.315l-0.299,0.893l-0.09,0.271c0.017-0.047-0.049,0.142-0.049,0.142l-0.596,1.711l0.015,0.023
+ c-0.514,1.5-0.709,1.998-0.781,2.159c-0.521,1.124-1.351,2.135-2.405,2.926c-1.049,0.763-2.435,1.394-4.193,1.899l-0.563,0.155
+ c-1.674,0.457-4.205,1.144-5.874,3.504c-1.94,2.755-1.774,6.442,0.397,8.966c1.95,2.276,5.118,3.228,8.473,2.543
+ c2.214-0.45,4.518-1.197,6.846-2.226c0.004,0,0.222-0.099,0.222-0.099c0.842-0.371,1.734-0.77,2.623-1.252
+ c0.404,0.377,0.825,0.734,1.264,1.075c-0.85,1.118-1.378,2.436-1.519,3.831c-0.204,2.029,0.392,4.006,1.675,5.571
+ c1.268,1.545,3.057,2.504,5.038,2.696c1.297,0.134,2.624-0.084,3.823-0.634l-0.02,0.04c4.696-2.093,8.683-4.902,11.849-8.358
+ c1.53-1.721,2.89-3.618,4.083-5.681l-0.048-0.035c0.219-0.309,0.422-0.62,0.596-0.943c1.171-2.165,2.154-4.488,2.921-6.9
+ l0.324-1.018l0.056-0.021c0.118-0.034,0.683-1.813,0.683-1.813l0.023-0.075l2.144-6.741l0.006,0.004
+ c0.004,0,1.072-3.381,1.072-3.381c0.032-0.1,0.065-0.194,0.097-0.293c0.198,0.256,0.36,0.483,0.522,0.715
+ c0.359,0.515,0.766,1.097,1.452,1.761c2.832,2.741,6.75,3.37,9.785,1.594l-0.042,0.029c0.031-0.016,0.051-0.031,0.081-0.049
+ c0.013-0.009,0.028-0.013,0.042-0.02l0.382-0.231l0.094-0.095c0.011-0.006,0.028-0.018,0.036-0.023
+ c0.205-0.137,0.456-0.304,0.737-0.555c2.534-2.259,3.174-5.932,1.611-9.156c-0.468-1.027-1.11-1.945-1.919-2.729
+ c-0.076-0.076-0.146-0.129-0.221-0.195c-0.31-0.36-0.632-0.732-0.984-1.124c-0.45-0.516-1.005-1.139-1.64-1.819
+ c0.083,0.007,0.167,0.021,0.25,0.031c0.639,0.363,1.265,0.697,1.89,0.981c2.786,1.269,5.753,1.987,8.823,2.14
+ c0.046,0.002,0.138,0.006,0.138,0.006l0.206,0.011c0.12,0.008,0.29,0.011,0.44,0.014c4.102,0.101,8.095-0.795,11.998-2.663
+ c0.223-0.104,0.423-0.218,0.569-0.3c0.052-0.03,0.108-0.061,0.135-0.075c0.523-0.26,1.099-0.568,1.66-0.891
+ c8.19-4.73,14.806-13.263,18.146-23.411c4.192-12.732,2.521-26.267-4.359-35.322L172.476,136.879z"/>
+ <path i:knockout="Off" fill="#FFFFFF" d="M75.22,186.231c0.019-0.02,0.042-0.035,0.062-0.052
+ c0.056-0.048,0.106-0.102,0.164-0.151L75.22,186.231z"/>
+ </g>
+ <g i:knockout="Off">
+ <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" fill="#1C86EE" d="M378.447,194.799
+ c-1.01,0-1.897,0.374-2.583,1.07c-0.707,0.716-1.09,1.645-1.09,2.612c0,0.979,0.373,1.887,1.079,2.593
+ c0.707,0.707,1.625,1.09,2.594,1.09s1.907-0.383,2.633-1.1c0.686-0.676,1.049-1.574,1.049-2.583
+ c0-0.999-0.363-1.907-1.06-2.603C380.364,195.173,379.455,194.799,378.447,194.799z M378.456,195.465
+ c0.827,0,1.563,0.313,2.139,0.888c0.565,0.565,0.867,1.312,0.867,2.128c0,0.828-0.292,1.554-0.857,2.108
+ c-0.595,0.586-1.361,0.898-2.148,0.898c-0.797,0-1.544-0.313-2.118-0.889c-0.576-0.574-0.898-1.331-0.898-2.118
+ c0-0.796,0.322-1.553,0.898-2.138C376.903,195.768,377.628,195.465,378.456,195.465z"/>
+ <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" fill="#1C86EE" d="M378.408,197.87
+ c-0.208-0.38-0.563-0.531-0.975-0.531c-0.6,0-1.076,0.424-1.076,1.142c0,0.73,0.448,1.143,1.097,1.143
+ c0.416,0,0.771-0.229,0.967-0.576l-0.457-0.232c-0.102,0.245-0.258,0.318-0.453,0.318c-0.338,0-0.494-0.282-0.494-0.653
+ c0-0.371,0.132-0.652,0.494-0.652c0.098,0,0.294,0.053,0.408,0.297L378.408,197.87z"/>
+ <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" fill="#1C86EE" d="M380.533,197.87
+ c-0.209-0.38-0.563-0.531-0.976-0.531c-0.6,0-1.076,0.424-1.076,1.142c0,0.73,0.448,1.143,1.097,1.143
+ c0.417,0,0.771-0.229,0.967-0.576l-0.456-0.232c-0.103,0.245-0.258,0.318-0.453,0.318c-0.338,0-0.494-0.282-0.494-0.653
+ c0-0.371,0.131-0.652,0.494-0.652c0.098,0,0.293,0.053,0.408,0.297L380.533,197.87z"/>
+ </g>
+ <g>
+
+ <linearGradient id="XMLID_85_" gradientUnits="userSpaceOnUse" x1="82.4421" y1="213.8887" x2="91.0083" y2="222.7718" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_85_)" d="M97.208,231.683c3.602,1.103,7.555,0.707,10.867-1.08
+ c1.632-0.882,3.25-2.056,4.142-3.703c1.081-2,1.966-4.106,2.653-6.271c-4.832,1.115-9.986,0.685-14.652-0.941
+ c-4.633-1.616-9.5-4.569-11.809-9.063c-0.321,0.947-1.531,4.669-1.945,5.562c-0.792,1.71-2.017,3.176-3.524,4.308
+ c-1.608,1.17-3.471,1.94-5.377,2.486c-1.624,0.465-3.423,0.787-4.465,2.261c-0.957,1.36-0.906,3.219,0.186,4.487
+ c1.236,1.442,3.21,1.708,4.981,1.346c2.086-0.423,4.157-1.131,6.104-1.989c1.708-0.754,3.539-1.53,4.886-2.868
+ c1.017,1.453,2.308,2.703,3.788,3.678c0.737,0.483,1.521,0.899,2.339,1.235C95.835,231.316,97.235,231.689,97.208,231.683"/>
+
+ <linearGradient id="XMLID_86_" gradientUnits="userSpaceOnUse" x1="115.2771" y1="131.5142" x2="122.2609" y2="160.4007" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0.0056" style="stop-color:#FFF7FF"/>
+ <stop offset="0.1382" style="stop-color:#CEDFFB"/>
+ <stop offset="0.3023" style="stop-color:#98C4F7"/>
+ <stop offset="0.4629" style="stop-color:#6CAEF4"/>
+ <stop offset="0.6163" style="stop-color:#499CF1"/>
+ <stop offset="0.7607" style="stop-color:#3090F0"/>
+ <stop offset="0.8924" style="stop-color:#2189EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.0056" style="stop-color:#FFF7FF"/>
+ <a:midPointStop offset="0.3352" style="stop-color:#FFF7FF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_86_)" d="M174.29,149.629c-1.714-7.276-6.044-13.546-11.979-16.661
+ c-3.138-1.648-6.722-2.417-10.608-1.985c-0.358,0.04-0.717,0.091-1.078,0.152c-0.242,0.04-0.483,0.089-0.727,0.138
+ c-0.104,0.023-0.212,0.042-0.322,0.065c-0.307,0.069-0.621,0.147-0.936,0.229c-0.029,0.01-0.059,0.017-0.09,0.026
+ c-0.338,0.091-0.683,0.191-1.028,0.304c-1.88,0.6-3.813,1.472-5.786,2.662c-5.366,3.238-9.574,7.509-12.657,12.308
+ c-0.151,0.236-0.292,0.479-0.44,0.717c1.438-3.934,3.367-6.72,4.865-8.309c2.655-2.812,6.597-6.066,11.229-7.917
+ c-0.965-0.154-1.87-0.265-2.694-0.336c-16.241-1.984-29.679,4.871-36.627,25.485c-1.065,3.159-4.568,14.885-8.373,27.337
+ c-6.443,0.292-15.021,1.456-19.092,5.352c-0.837,0.676-1.397,1.674-1.465,2.815c-0.129,2.188,1.589,4.067,3.834,4.196
+ c1.246,0.071,2.389-0.406,3.186-1.22l0.007,0.009c1.323-1.434,5.837-2.443,10.998-2.917c-0.134,0.431-0.267,0.859-0.397,1.287
+ c-0.442,1.389-0.881,2.777-1.316,4.167c-0.602,1.911-1.2,3.823-1.81,5.731c-0.303,0.951-0.611,1.905-0.92,2.856
+ c-0.084,2.672,1.574,5.437,4.7,7.801c4.804,3.633,13.475,6.386,21.173,3.853c0.85-2.676,1.984-6.246,3.24-10.188h0.005
+ c0.696-2.201,1.439-4.089,2.211-5.711c1.441,1.307,2.868,2.746,4.129,4.135c0.804,1.016,1.028,1.547,1.742,2.239
+ c1.935,1.872,4.539,2.157,6.21,0.46c1.669-1.694,1.458-4.585-0.474-6.458c-0.092-0.088-0.188-0.171-0.286-0.251
+ c-1.414-1.656-3.803-4.287-6.628-6.747c3.402-2.957,6.864-2.728,9.392-1.856c0.032,0.019,0.059,0.038,0.089,0.055
+ c6.097,3.571,13.021,3.274,19.294,0.276c5.137-2.454,9.604-6.613,13.015-11.663c3.114-4.612,5.332-9.944,6.476-15.453
+ C175.528,160.928,175.568,155.044,174.29,149.629z M166.707,179.95c-6.425,9.176-17.576,14.066-26.006,7.692
+ c-12.5-9.453-10.592-33.814,5.362-45.217c11.903-8.513,22.89-1.746,26.018,9.706
+ C174.475,160.894,172.172,172.143,166.707,179.95z"/>
+
+ <linearGradient id="XMLID_87_" gradientUnits="userSpaceOnUse" x1="82.511" y1="213.6699" x2="91.1143" y2="222.5916" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_87_)" d="M97.208,231.683c-0.78,0.461-1.603,0.911-2.521,1.331
+ c-0.141,0.049-0.275,0.11-0.407,0.171c-0.532,0.316-1.014,0.678-1.408,1.124c-0.442,0.568-0.739,1.263-0.817,2.034
+ c-0.216,2.152,1.325,4.066,3.442,4.273c0.693,0.069,1.36-0.051,1.952-0.323l0.012,0.025c4.799-2.137,8.215-4.84,10.646-7.491
+ c1.379-1.554,2.576-3.248,3.614-5.042C108.151,231.624,102.563,233.318,97.208,231.683z"/>
+
+ <linearGradient id="XMLID_88_" gradientUnits="userSpaceOnUse" x1="97.8445" y1="229.5684" x2="100.5151" y2="232.3378" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_88_)" d="M97.208,231.683c-0.78,0.461-1.603,0.911-2.521,1.331
+ c-0.141,0.049-0.275,0.11-0.407,0.171c-0.532,0.316-1.014,0.678-1.408,1.124c-0.442,0.568-0.739,1.263-0.817,2.034
+ c-0.216,2.152,1.325,4.066,3.442,4.273c0.693,0.069,1.36-0.051,1.952-0.323l0.012,0.025c4.799-2.137,8.215-4.84,10.646-7.491
+ c1.379-1.554,2.576-3.248,3.614-5.042C108.151,231.624,102.563,233.318,97.208,231.683z"/>
+
+ <linearGradient id="XMLID_89_" gradientUnits="userSpaceOnUse" x1="86.2268" y1="180.4746" x2="90.0388" y2="190.0047" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_89_)" d="M80.06,195.488c1.182,0.06,2.266-0.403,3.015-1.18l0.009,0.008
+ c1.958-2.153,11.391-3.375,18.972-3.165l0.375,0.009c0.002,0,0.373-0.061,0.373-0.061s2.002-1.694,1.503-4.469
+ c-0.498-2.775-2.037-3.083-2.037-3.083c-4.407-0.126-18.958-0.094-24.512,5.298c-0.79,0.648-1.314,1.6-1.37,2.685
+ C76.281,193.609,77.927,195.382,80.06,195.488z"/>
+
+ <linearGradient id="XMLID_90_" gradientUnits="userSpaceOnUse" x1="127.3293" y1="216.0127" x2="127.9639" y2="198.5599" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_90_)" d="M133.174,202.521c-0.088-0.091-0.181-0.177-0.277-0.255
+ c-1.757-2.147-5.078-5.911-8.921-8.913c-0.851,2.681-1.738,5.475-2.613,8.229c1.429,1.349,2.841,2.821,4.083,4.247
+ c0.773,1.021,0.979,1.543,1.681,2.249c1.888,1.897,4.523,2.296,6.283,0.726C135.168,207.235,135.064,204.421,133.174,202.521z"
+ />
+ <g>
+ <g i:knockout="On" a:adobe-knockout="true">
+
+ <radialGradient id="XMLID_91_" cx="155.7458" cy="161.2598" r="52.7172" gradientTransform="matrix(1.0169 0.0102 0.0047 1.0111 -2.8353 -3.7854)" gradientUnits="userSpaceOnUse">
+ <stop offset="0.118" style="stop-color:#1C86EE"/>
+ <stop offset="0.5169" style="stop-color:#80D1FF"/>
+ <stop offset="0.6036" style="stop-color:#5BB5F9"/>
+ <stop offset="0.7215" style="stop-color:#2E93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#80D1FF"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#80D1FF"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
+ </radialGradient>
+ <path i:knockout="Off" fill="url(#XMLID_91_)" a:adobe-knockout="false" d="M173.478,171.201
+ c-6.066,18.417-22.996,29.434-37.141,22.992c-13.995-6.372-18.005-26.599-9.819-43.702
+ c7.471-15.623,22.702-23.197,34.678-18.066C173.273,137.604,179.011,154.404,173.478,171.201z"/>
+
+ <linearGradient id="XMLID_92_" gradientUnits="userSpaceOnUse" x1="153.156" y1="186.3149" x2="129.7401" y2="75.1286" gradientTransform="matrix(1.0119 0.0089 0.0036 1.008 -1.7908 -3.1402)">
+ <stop offset="0" style="stop-color:#1C86EE"/>
+ <stop offset="0.118" style="stop-color:#1C86EE"/>
+ <stop offset="0.5169" style="stop-color:#7DCFFE"/>
+ <stop offset="0.5989" style="stop-color:#5BB5F8"/>
+ <stop offset="0.7199" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#7DCFFE"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#7DCFFE"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_92_)" a:adobe-knockout="false" d="M173.443,171.214
+ c-6.034,18.341-22.859,29.278-36.93,22.872c-13.924-6.337-17.989-26.464-9.914-43.532
+ c7.385-15.642,22.567-23.264,34.547-18.128C173.225,137.607,178.962,154.435,173.443,171.214z"/>
+
+ <linearGradient id="XMLID_93_" gradientUnits="userSpaceOnUse" x1="151.5535" y1="187.2744" x2="136.4717" y2="76.2394" gradientTransform="matrix(1.007 0.0076 0.0025 1.0049 -0.7472 -2.493)">
+ <stop offset="0" style="stop-color:#1D86EE"/>
+ <stop offset="0.118" style="stop-color:#1D86EE"/>
+ <stop offset="0.5169" style="stop-color:#7ACCFE"/>
+ <stop offset="0.594" style="stop-color:#5BB5F9"/>
+ <stop offset="0.7182" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1D86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D86EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1D86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D86EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#7ACCFE"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#7ACCFE"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_93_)" a:adobe-knockout="false" d="M173.407,171.227
+ c-6.001,18.265-22.723,29.122-36.719,22.752c-13.853-6.303-17.973-26.33-10.008-43.363
+ c7.299-15.662,22.432-23.331,34.416-18.191C173.177,137.612,178.913,154.466,173.407,171.227z"/>
+
+ <linearGradient id="XMLID_94_" gradientUnits="userSpaceOnUse" x1="149.8308" y1="188.0806" x2="142.9579" y2="78.1492" gradientTransform="matrix(1.002 0.0063 0.0014 1.0019 0.2973 -1.8467)">
+ <stop offset="0" style="stop-color:#1D87EE"/>
+ <stop offset="0.118" style="stop-color:#1D87EE"/>
+ <stop offset="0.5169" style="stop-color:#77CAFD"/>
+ <stop offset="0.5887" style="stop-color:#5BB5F8"/>
+ <stop offset="0.7165" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#77CAFD"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#77CAFD"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_94_)" a:adobe-knockout="false" d="M173.372,171.24
+ c-5.968,18.188-22.585,28.966-36.508,22.632c-13.782-6.268-17.957-26.195-10.103-43.193
+ c7.213-15.681,22.296-23.397,34.284-18.253C173.129,137.616,178.864,154.497,173.372,171.24z"/>
+
+ <linearGradient id="XMLID_95_" gradientUnits="userSpaceOnUse" x1="148.0081" y1="188.7188" x2="149.1006" y2="80.8275" gradientTransform="matrix(0.9971 0.0051 2.741814e-004 0.9988 1.3409 -1.201)">
+ <stop offset="0" style="stop-color:#1E87EE"/>
+ <stop offset="0.118" style="stop-color:#1D87EE"/>
+ <stop offset="0.5169" style="stop-color:#74C8FD"/>
+ <stop offset="0.5831" style="stop-color:#5BB5F9"/>
+ <stop offset="0.7146" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#74C8FD"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#74C8FD"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_95_)" a:adobe-knockout="false" d="M173.336,171.253
+ c-5.936,18.112-22.449,28.81-36.298,22.512c-13.71-6.233-17.94-26.061-10.197-43.024c7.127-15.7,22.161-23.464,34.153-18.315
+ C173.081,137.62,178.815,154.527,173.336,171.253z"/>
+
+ <linearGradient id="XMLID_96_" gradientUnits="userSpaceOnUse" x1="146.1008" y1="189.1719" x2="154.7993" y2="84.218" gradientTransform="matrix(0.9921 0.0038 -8.322702e-004 0.9957 2.385 -0.5547)">
+ <stop offset="0" style="stop-color:#1E87EE"/>
+ <stop offset="0.118" style="stop-color:#1E87EE"/>
+ <stop offset="0.5169" style="stop-color:#71C5FC"/>
+ <stop offset="0.5772" style="stop-color:#5BB5F8"/>
+ <stop offset="0.7126" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#71C5FC"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#71C5FC"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_96_)" a:adobe-knockout="false" d="M173.301,171.267
+ c-5.903,18.036-22.312,28.654-36.087,22.392c-13.64-6.198-17.924-25.926-10.292-42.854
+ c7.041-15.719,22.026-23.531,34.021-18.378C173.033,137.624,178.766,154.558,173.301,171.267z"/>
+
+ <linearGradient id="XMLID_97_" gradientUnits="userSpaceOnUse" x1="144.1335" y1="189.4263" x2="159.97" y2="88.2441" gradientTransform="matrix(0.9872 0.0025 -0.0019 0.9926 3.4291 0.0906)">
+ <stop offset="0" style="stop-color:#1E87EE"/>
+ <stop offset="0.118" style="stop-color:#1E87EE"/>
+ <stop offset="0.5169" style="stop-color:#6EC3FC"/>
+ <stop offset="0.5686" style="stop-color:#5CB5F9"/>
+ <stop offset="0.7098" style="stop-color:#2E93F1"/>
+ <stop offset="0.7809" style="stop-color:#1D86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#6EC3FC"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#6EC3FC"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D86EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_97_)" a:adobe-knockout="false" d="M173.265,171.28
+ c-5.871,17.96-22.175,28.498-35.876,22.272c-13.569-6.164-17.908-25.791-10.387-42.686
+ c6.955-15.738,21.891-23.597,33.891-18.44C172.985,137.628,178.717,154.588,173.265,171.28z"/>
+
+ <linearGradient id="XMLID_98_" gradientUnits="userSpaceOnUse" x1="142.1311" y1="189.4775" x2="164.5387" y2="92.8278" gradientTransform="matrix(0.9822 0.0012 -0.003 0.9896 4.4727 0.7373)">
+ <stop offset="0" style="stop-color:#1F88EE"/>
+ <stop offset="0.118" style="stop-color:#1E87EE"/>
+ <stop offset="0.5169" style="stop-color:#6BC1FB"/>
+ <stop offset="0.5616" style="stop-color:#5CB5F8"/>
+ <stop offset="0.7074" style="stop-color:#2E93F1"/>
+ <stop offset="0.7809" style="stop-color:#1D86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#6BC1FB"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#6BC1FB"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D86EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_98_)" a:adobe-knockout="false" d="M173.23,171.293
+ c-5.837,17.884-22.038,28.342-35.666,22.152c-13.498-6.129-17.892-25.656-10.481-42.516
+ c6.869-15.757,21.755-23.664,33.759-18.502C172.937,137.632,178.668,154.619,173.23,171.293z"/>
+
+ <linearGradient id="XMLID_99_" gradientUnits="userSpaceOnUse" x1="140.115" y1="189.3169" x2="168.4442" y2="97.8604" gradientTransform="matrix(0.9772 -7.098209e-005 -0.0042 0.9865 5.5168 1.3831)">
+ <stop offset="0" style="stop-color:#1F88EE"/>
+ <stop offset="0.118" style="stop-color:#1F88EE"/>
+ <stop offset="0.5169" style="stop-color:#68BEFB"/>
+ <stop offset="0.5541" style="stop-color:#5CB5F9"/>
+ <stop offset="0.7049" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#68BEFB"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#68BEFB"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_99_)" a:adobe-knockout="false" d="M173.195,171.306
+ c-5.805,17.808-21.902,28.186-35.455,22.033c-13.427-6.095-17.876-25.522-10.577-42.347
+ c6.784-15.777,21.621-23.731,33.628-18.564C172.889,137.636,178.619,154.65,173.195,171.306z"/>
+
+ <linearGradient id="XMLID_100_" gradientUnits="userSpaceOnUse" x1="138.1189" y1="188.9487" x2="171.6521" y2="103.2424" gradientTransform="matrix(0.9723 -0.0014 -0.0053 0.9834 6.5608 2.0294)">
+ <stop offset="0" style="stop-color:#1F88EE"/>
+ <stop offset="0.118" style="stop-color:#1F88EE"/>
+ <stop offset="0.5169" style="stop-color:#65BCFA"/>
+ <stop offset="0.546" style="stop-color:#5CB5F8"/>
+ <stop offset="0.7022" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#65BCFA"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#65BCFA"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_100_)" a:adobe-knockout="false" d="M173.159,171.319
+ c-5.772,17.731-21.765,28.03-35.244,21.913c-13.356-6.06-17.86-25.387-10.671-42.177
+ c6.698-15.796,21.485-23.797,33.497-18.626C172.841,137.64,178.571,154.681,173.159,171.319z"/>
+
+ <linearGradient id="XMLID_101_" gradientUnits="userSpaceOnUse" x1="136.1531" y1="188.3687" x2="174.126" y2="108.8494" gradientTransform="matrix(0.9673 -0.0026 -0.0064 0.9803 7.6049 2.6751)">
+ <stop offset="0" style="stop-color:#2088EE"/>
+ <stop offset="0.118" style="stop-color:#2088EE"/>
+ <stop offset="0.5169" style="stop-color:#62BAFA"/>
+ <stop offset="0.5373" style="stop-color:#5CB5F9"/>
+ <stop offset="0.6993" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#62BAFA"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#62BAFA"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_101_)" a:adobe-knockout="false" d="M173.123,171.333
+ c-5.74,17.655-21.628,27.874-35.033,21.793c-13.285-6.025-17.844-25.252-10.766-42.008
+ c6.612-15.815,21.35-23.864,33.366-18.689C172.793,137.644,178.521,154.711,173.123,171.333z"/>
+
+ <linearGradient id="XMLID_102_" gradientUnits="userSpaceOnUse" x1="134.2507" y1="187.5918" x2="175.8687" y2="114.579" gradientTransform="matrix(0.9624 -0.0039 -0.0075 0.9772 8.6485 3.3214)">
+ <stop offset="0" style="stop-color:#2088EE"/>
+ <stop offset="0.118" style="stop-color:#2088EE"/>
+ <stop offset="0.5169" style="stop-color:#5FB7F9"/>
+ <stop offset="0.5279" style="stop-color:#5CB5F8"/>
+ <stop offset="0.6962" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#5FB7F9"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#5FB7F9"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_102_)" a:adobe-knockout="false" d="M173.088,171.346
+ c-5.708,17.579-21.491,27.718-34.823,21.673c-13.214-5.99-17.828-25.118-10.861-41.838
+ c6.526-15.834,21.215-23.931,33.234-18.751C172.744,137.648,178.472,154.742,173.088,171.346z"/>
+
+ <linearGradient id="XMLID_103_" gradientUnits="userSpaceOnUse" x1="132.4299" y1="186.6201" x2="176.8879" y2="120.3128" gradientTransform="matrix(0.9574 -0.0052 -0.0086 0.9742 9.6931 3.9672)">
+ <stop offset="0" style="stop-color:#2189EE"/>
+ <stop offset="0.118" style="stop-color:#2088EE"/>
+ <stop offset="0.5169" style="stop-color:#5CB5F8"/>
+ <stop offset="0.5176" style="stop-color:#5CB5F8"/>
+ <stop offset="0.6927" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#5CB5F8"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#5CB5F8"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_103_)" a:adobe-knockout="false" d="M173.052,171.359
+ c-5.674,17.503-21.354,27.562-34.612,21.553c-13.143-5.956-17.811-24.983-10.955-41.669
+ c6.44-15.854,21.08-23.997,33.103-18.813C172.697,137.652,178.424,154.772,173.052,171.359z"/>
+
+ <linearGradient id="XMLID_104_" gradientUnits="userSpaceOnUse" x1="130.7205" y1="185.4746" x2="177.2194" y2="125.9561" gradientTransform="matrix(0.9524 -0.0065 -0.0097 0.9711 10.7367 4.6134)">
+ <stop offset="0" style="stop-color:#2189EE"/>
+ <stop offset="0.118" style="stop-color:#2189EE"/>
+ <stop offset="0.5169" style="stop-color:#59B3F8"/>
+ <stop offset="0.689" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#59B3F8"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#59B3F8"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_104_)" a:adobe-knockout="false" d="M173.017,171.372
+ c-5.642,17.427-21.217,27.405-34.401,21.433c-13.072-5.921-17.795-24.848-11.05-41.5
+ c6.354-15.873,20.944-24.064,32.972-18.876C172.649,137.656,178.375,154.803,173.017,171.372z"/>
+
+ <linearGradient id="XMLID_105_" gradientUnits="userSpaceOnUse" x1="129.1306" y1="184.166" x2="176.8978" y2="131.4056" gradientTransform="matrix(0.9475 -0.0078 -0.0108 0.968 11.7807 5.2592)">
+ <stop offset="0" style="stop-color:#2189EE"/>
+ <stop offset="0.118" style="stop-color:#2189EE"/>
+ <stop offset="0.5169" style="stop-color:#56B0F7"/>
+ <stop offset="0.6849" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#56B0F7"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#56B0F7"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_105_)" a:adobe-knockout="false" d="M172.982,171.385
+ c-5.609,17.351-21.081,27.25-34.191,21.313c-13.001-5.886-17.779-24.714-11.145-41.331
+ c6.268-15.892,20.809-24.131,32.84-18.938C172.6,137.66,178.325,154.834,172.982,171.385z"/>
+
+ <linearGradient id="XMLID_106_" gradientUnits="userSpaceOnUse" x1="127.675" y1="182.7129" x2="175.9801" y2="136.5743" gradientTransform="matrix(0.9425 -0.0091 -0.0119 0.9649 12.8248 5.9054)">
+ <stop offset="0" style="stop-color:#2289EE"/>
+ <stop offset="0.118" style="stop-color:#2189EE"/>
+ <stop offset="0.5169" style="stop-color:#53AEF7"/>
+ <stop offset="0.6803" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#2289EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2289EE"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#53AEF7"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#53AEF7"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_106_)" a:adobe-knockout="false" d="M172.946,171.398
+ c-5.577,17.274-20.944,27.093-33.98,21.193c-12.93-5.852-17.763-24.579-11.239-41.161c6.182-15.911,20.674-24.197,32.709-19
+ C172.552,137.664,178.277,154.865,172.946,171.398z"/>
+
+ <linearGradient id="XMLID_107_" gradientUnits="userSpaceOnUse" x1="126.3665" y1="181.1421" x2="174.5361" y2="141.3942" gradientTransform="matrix(0.9376 -0.0103 -0.013 0.9619 13.8689 6.5512)">
+ <stop offset="0" style="stop-color:#228AEF"/>
+ <stop offset="0.118" style="stop-color:#2289EF"/>
+ <stop offset="0.5169" style="stop-color:#4FACF6"/>
+ <stop offset="0.6716" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#228AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#228AEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2289EF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2289EF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#4FACF6"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#4FACF6"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_107_)" a:adobe-knockout="false" d="M172.91,171.412
+ c-5.543,17.198-20.807,26.938-33.769,21.074c-12.859-5.817-17.746-24.444-11.334-40.992
+ c6.097-15.931,20.539-24.264,32.578-19.063C172.504,137.668,178.228,154.896,172.91,171.412z"/>
+
+ <linearGradient id="XMLID_108_" gradientUnits="userSpaceOnUse" x1="125.2053" y1="179.4717" x2="172.6345" y2="145.8021" gradientTransform="matrix(0.9326 -0.0116 -0.0141 0.9588 14.9125 7.1975)">
+ <stop offset="0" style="stop-color:#238AEF"/>
+ <stop offset="0.118" style="stop-color:#2289EF"/>
+ <stop offset="0.5169" style="stop-color:#4CAAF6"/>
+ <stop offset="0.6656" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2289EF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2289EF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#4CAAF6"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#4CAAF6"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_108_)" a:adobe-knockout="false" d="M172.875,171.425
+ c-5.511,17.122-20.67,26.781-33.558,20.954c-12.788-5.782-17.73-24.31-11.429-40.822
+ c6.011-15.95,20.404-24.331,32.447-19.125C172.456,137.672,178.179,154.926,172.875,171.425z"/>
+
+ <linearGradient id="XMLID_109_" gradientUnits="userSpaceOnUse" x1="124.1907" y1="177.7261" x2="170.3514" y2="149.7558" gradientTransform="matrix(0.9277 -0.0129 -0.0152 0.9557 15.9566 7.8433)">
+ <stop offset="0" style="stop-color:#238AEF"/>
+ <stop offset="0.118" style="stop-color:#2289EF"/>
+ <stop offset="0.5169" style="stop-color:#49A7F5"/>
+ <stop offset="0.6587" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#2289EF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2289EF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#49A7F5"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#49A7F5"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_109_)" a:adobe-knockout="false" d="M172.84,171.438
+ c-5.479,17.045-20.533,26.625-33.348,20.834c-12.717-5.748-17.714-24.175-11.523-40.653
+ c5.925-15.969,20.269-24.397,32.315-19.187C172.408,137.676,178.13,154.957,172.84,171.438z"/>
+
+ <linearGradient id="XMLID_110_" gradientUnits="userSpaceOnUse" x1="123.3127" y1="175.9224" x2="167.7589" y2="153.2217" gradientTransform="matrix(0.9227 -0.0142 -0.0163 0.9526 17.0007 8.4895)">
+ <stop offset="0" style="stop-color:#238AEF"/>
+ <stop offset="0.118" style="stop-color:#238AEF"/>
+ <stop offset="0.5169" style="stop-color:#46A5F5"/>
+ <stop offset="0.6509" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#46A5F5"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#46A5F5"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_110_)" a:adobe-knockout="false" d="M172.804,171.451
+ c-5.446,16.969-20.396,26.469-33.137,20.714c-12.646-5.713-17.698-24.04-11.618-40.483
+ c5.839-15.989,20.133-24.464,32.184-19.249C172.36,137.68,178.081,154.988,172.804,171.451z"/>
+
+ <linearGradient id="XMLID_111_" gradientUnits="userSpaceOnUse" x1="122.5662" y1="174.0825" x2="164.934" y2="156.1875" gradientTransform="matrix(0.9177 -0.0155 -0.0174 0.9496 18.0448 9.1353)">
+ <stop offset="0" style="stop-color:#248BEF"/>
+ <stop offset="0.118" style="stop-color:#238AEF"/>
+ <stop offset="0.5169" style="stop-color:#43A3F4"/>
+ <stop offset="0.6422" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#248BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#248BEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#43A3F4"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#43A3F4"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_111_)" a:adobe-knockout="false" d="M172.768,171.464
+ c-5.413,16.893-20.259,26.313-32.926,20.594c-12.575-5.678-17.681-23.906-11.712-40.314
+ c5.753-16.008,19.998-24.531,32.053-19.312C172.312,137.684,178.032,155.018,172.768,171.464z"/>
+
+ <linearGradient id="XMLID_112_" gradientUnits="userSpaceOnUse" x1="121.9314" y1="172.2173" x2="161.9359" y2="158.6452" gradientTransform="matrix(0.9128 -0.0168 -0.0185 0.9465 19.0888 9.7816)">
+ <stop offset="0" style="stop-color:#248BEF"/>
+ <stop offset="0.118" style="stop-color:#238AEF"/>
+ <stop offset="0.5169" style="stop-color:#40A0F3"/>
+ <stop offset="0.6318" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#248BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#248BEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#40A0F3"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#40A0F3"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_112_)" a:adobe-knockout="false" d="M172.733,171.478
+ c-5.38,16.817-20.123,26.157-32.716,20.474c-12.504-5.643-17.665-23.771-11.807-40.145
+ c5.667-16.027,19.863-24.597,31.921-19.374C172.264,137.688,177.983,155.049,172.733,171.478z"/>
+
+ <linearGradient id="XMLID_113_" gradientUnits="userSpaceOnUse" x1="121.3962" y1="170.3374" x2="158.8235" y2="160.6005" gradientTransform="matrix(0.9078 -0.018 -0.0196 0.9434 20.1324 10.4274)">
+ <stop offset="0" style="stop-color:#258BEF"/>
+ <stop offset="0.118" style="stop-color:#248AEF"/>
+ <stop offset="0.5169" style="stop-color:#3D9EF3"/>
+ <stop offset="0.6196" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#248AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#248AEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#3D9EF3"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#3D9EF3"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_113_)" a:adobe-knockout="false" d="M172.698,171.491
+ c-5.348,16.741-19.986,26.001-32.505,20.354c-12.433-5.609-17.649-23.637-11.902-39.976
+ c5.581-16.046,19.728-24.664,31.79-19.436C172.216,137.692,177.934,155.08,172.698,171.491z"/>
+
+ <linearGradient id="XMLID_114_" gradientUnits="userSpaceOnUse" x1="120.9348" y1="168.4482" x2="155.6342" y2="162.0641" gradientTransform="matrix(0.9029 -0.0193 -0.0207 0.9403 21.1765 11.0736)">
+ <stop offset="0" style="stop-color:#258BEF"/>
+ <stop offset="0.118" style="stop-color:#248AEF"/>
+ <stop offset="0.5169" style="stop-color:#3A9CF2"/>
+ <stop offset="0.6049" style="stop-color:#2F94F0"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#248AEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#248AEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#3A9CF2"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#3A9CF2"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_114_)" a:adobe-knockout="false" d="M172.662,171.504
+ c-5.315,16.665-19.849,25.845-32.294,20.234c-12.362-5.574-17.633-23.501-11.997-39.806
+ c5.495-16.065,19.592-24.73,31.659-19.498C172.168,137.696,177.885,155.11,172.662,171.504z"/>
+
+ <linearGradient id="XMLID_115_" gradientUnits="userSpaceOnUse" x1="120.5334" y1="166.5493" x2="152.4035" y2="163.0492" gradientTransform="matrix(0.8979 -0.0206 -0.0219 0.9372 22.2201 11.7194)">
+ <stop offset="0" style="stop-color:#258BEF"/>
+ <stop offset="0.118" style="stop-color:#258BEF"/>
+ <stop offset="0.5169" style="stop-color:#3799F2"/>
+ <stop offset="0.5869" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#3799F2"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#3799F2"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E88EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_115_)" a:adobe-knockout="false" d="M172.627,171.517
+ c-5.283,16.588-19.712,25.689-32.083,20.115c-12.292-5.54-17.617-23.367-12.092-39.637
+ c5.41-16.085,19.458-24.798,31.528-19.561C172.12,137.7,177.836,155.141,172.627,171.517z"/>
+
+ <linearGradient id="XMLID_116_" gradientUnits="userSpaceOnUse" x1="120.1799" y1="164.6333" x2="149.1568" y2="163.5659" gradientTransform="matrix(0.8929 -0.0219 -0.023 0.9342 23.2647 12.3657)">
+ <stop offset="0" style="stop-color:#268CEF"/>
+ <stop offset="0.118" style="stop-color:#258BEF"/>
+ <stop offset="0.5169" style="stop-color:#3497F1"/>
+ <stop offset="0.5645" style="stop-color:#2F94F0"/>
+ <stop offset="0.7809" style="stop-color:#1E88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#268CEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#268CEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#3497F1"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#3497F1"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1E88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1E88EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_116_)" a:adobe-knockout="false" d="M172.591,171.53
+ c-5.25,16.512-19.575,25.533-31.873,19.995c-12.22-5.504-17.601-23.232-12.187-39.467
+ c5.324-16.104,19.322-24.864,31.396-19.623C172.072,137.704,177.787,155.172,172.591,171.53z"/>
+
+ <linearGradient id="XMLID_117_" gradientUnits="userSpaceOnUse" x1="119.8655" y1="162.6899" x2="145.9115" y2="163.6213" gradientTransform="matrix(0.888 -0.0232 -0.0241 0.9311 24.3083 13.0119)">
+ <stop offset="0" style="stop-color:#268CEF"/>
+ <stop offset="0.118" style="stop-color:#258BEF"/>
+ <stop offset="0.5169" style="stop-color:#3195F1"/>
+ <stop offset="0.5239" style="stop-color:#3095F1"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#268CEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#268CEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#3195F1"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#3195F1"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_117_)" a:adobe-knockout="false" d="M172.555,171.543
+ c-5.217,16.436-19.438,25.377-31.662,19.875c-12.149-5.47-17.584-23.098-12.281-39.298
+ c5.238-16.123,19.187-24.931,31.266-19.685C172.024,137.708,177.738,155.203,172.555,171.543z"/>
+
+ <linearGradient id="XMLID_118_" gradientUnits="userSpaceOnUse" x1="119.5852" y1="160.7065" x2="142.6797" y2="163.2177" gradientTransform="matrix(0.883 -0.0245 -0.0252 0.928 25.3524 13.6577)">
+ <stop offset="0" style="stop-color:#268CEF"/>
+ <stop offset="0.118" style="stop-color:#268BEF"/>
+ <stop offset="0.5169" style="stop-color:#2E92F0"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#268CEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#268CEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#268BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#268BEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#2E92F0"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#2E92F0"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_118_)" a:adobe-knockout="false" d="M172.52,171.557
+ c-5.185,16.36-19.302,25.221-31.451,19.755c-12.079-5.435-17.568-22.963-12.376-39.128
+ c5.152-16.143,19.052-24.998,31.134-19.747C171.976,137.712,177.689,155.233,172.52,171.557z"/>
+
+ <linearGradient id="XMLID_119_" gradientUnits="userSpaceOnUse" x1="119.3435" y1="158.6733" x2="139.4767" y2="162.3551" gradientTransform="matrix(0.8781 -0.0257 -0.0263 0.9249 26.3965 14.304)">
+ <stop offset="0" style="stop-color:#278CEF"/>
+ <stop offset="0.118" style="stop-color:#268BEF"/>
+ <stop offset="0.5169" style="stop-color:#2B90F0"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#278CEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#278CEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#268BEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#268BEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#2B90F0"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#2B90F0"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_119_)" a:adobe-knockout="false" d="M172.485,171.57
+ c-5.152,16.284-19.165,25.065-31.241,19.635c-12.007-5.401-17.552-22.829-12.47-38.959
+ c5.066-16.162,18.917-25.064,31.003-19.81C171.927,137.716,177.64,155.264,172.485,171.57z"/>
+
+ <linearGradient id="XMLID_120_" gradientUnits="userSpaceOnUse" x1="119.1467" y1="156.5752" x2="136.3165" y2="161.0223" gradientTransform="matrix(0.8731 -0.027 -0.0274 0.9219 27.44 14.9498)">
+ <stop offset="0" style="stop-color:#278DEF"/>
+ <stop offset="0.118" style="stop-color:#268CEF"/>
+ <stop offset="0.5169" style="stop-color:#288EEF"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#278DEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#278DEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#268CEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#268CEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#288EEF"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#288EEF"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_120_)" a:adobe-knockout="false" d="M172.449,171.583
+ c-5.119,16.208-19.028,24.909-31.03,19.515c-11.936-5.366-17.536-22.694-12.565-38.79
+ c4.98-16.181,18.781-25.131,30.872-19.872C171.88,137.72,177.592,155.294,172.449,171.583z"/>
+
+ <linearGradient id="XMLID_121_" gradientUnits="userSpaceOnUse" x1="119.0105" y1="154.4019" x2="133.2236" y2="159.2068" gradientTransform="matrix(0.8682 -0.0283 -0.0285 0.9188 28.4846 15.5965)">
+ <stop offset="0" style="stop-color:#288DEF"/>
+ <stop offset="0.118" style="stop-color:#278CEF"/>
+ <stop offset="0.5169" style="stop-color:#258BEF"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#288DEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#288DEF"/>
+ <a:midPointStop offset="0.118" style="stop-color:#278CEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#278CEF"/>
+ <a:midPointStop offset="0.5169" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.4474" style="stop-color:#258BEF"/>
+ <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_121_)" a:adobe-knockout="false" d="M172.414,171.596
+ c-5.086,16.131-18.892,24.753-30.819,19.396c-11.865-5.332-17.52-22.559-12.66-38.621c4.894-16.2,18.646-25.198,30.74-19.934
+ C171.831,137.725,177.542,155.325,172.414,171.596z"/>
+
+ <linearGradient id="XMLID_122_" gradientUnits="userSpaceOnUse" x1="118.9534" y1="152.1465" x2="130.2265" y2="156.8936" gradientTransform="matrix(0.8632 -0.0296 -0.0296 0.9157 29.5282 16.2423)">
+ <stop offset="0" style="stop-color:#288DEF"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#288DEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#288DEF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_122_)" a:adobe-knockout="false" d="M172.378,171.609
+ c-5.054,16.055-18.754,24.597-30.608,19.275c-11.794-5.296-17.503-22.424-12.754-38.451
+ c4.808-16.219,18.511-25.264,30.609-19.996C171.783,137.729,177.493,155.356,172.378,171.609z"/>
+ </g>
+ </g>
+ <g i:knockout="On" a:adobe-knockout="true">
+
+ <linearGradient id="XMLID_123_" gradientUnits="userSpaceOnUse" x1="123.4993" y1="153.2236" x2="133.7782" y2="157.5521" gradientTransform="matrix(0.9353 -0.0269 -0.0269 0.9832 16.7265 6.8872)">
+ <stop offset="0" style="stop-color:#288DEF"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#288DEF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#288DEF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_123_)" a:adobe-knockout="false" d="M173.429,171.119
+ c-5.866,18.006-22.17,28.784-35.066,22.997c-12.833-5.761-16.029-25.442-7.991-42.314
+ c7.276-15.275,20.611-23.793,31.373-19.106C172.549,137.399,179.088,153.876,173.429,171.119z"/>
+
+ <linearGradient id="XMLID_124_" gradientUnits="userSpaceOnUse" x1="123.5725" y1="153.0771" x2="135.24" y2="158.0536" gradientTransform="matrix(0.9373 -0.0258 -0.0258 0.9833 16.1743 6.7037)">
+ <stop offset="0" style="stop-color:#2F91EF"/>
+ <stop offset="0.0169" style="stop-color:#2F91EF"/>
+ <stop offset="0.1966" style="stop-color:#2B8FEF"/>
+ <stop offset="0.6471" style="stop-color:#258BEF"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#2F91EF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2F91EF"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#2F91EF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#2F91EF"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#2B8FEF"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#2B8FEF"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_124_)" a:adobe-knockout="false" d="M173.38,171.184
+ c-5.875,17.927-22.109,28.601-34.94,22.809c-12.754-5.759-15.965-25.325-8.007-42.12c7.222-15.252,20.551-23.762,31.32-19.078
+ C172.578,137.502,179.056,153.991,173.38,171.184z"/>
+
+ <linearGradient id="XMLID_125_" gradientUnits="userSpaceOnUse" x1="123.6511" y1="152.9263" x2="136.6876" y2="158.5575" gradientTransform="matrix(0.9393 -0.0247 -0.0247 0.9833 15.622 6.521)">
+ <stop offset="0" style="stop-color:#3694F0"/>
+ <stop offset="0.0169" style="stop-color:#3694F0"/>
+ <stop offset="0.1966" style="stop-color:#3092F0"/>
+ <stop offset="0.5721" style="stop-color:#2A8FEF"/>
+ <stop offset="1" style="stop-color:#1C87EE"/>
+ <a:midPointStop offset="0" style="stop-color:#3694F0"/>
+ <a:midPointStop offset="0.5" style="stop-color:#3694F0"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#3694F0"/>
+ <a:midPointStop offset="0.5" style="stop-color:#3694F0"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#3092F0"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#3092F0"/>
+ <a:midPointStop offset="1" style="stop-color:#1C87EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_125_)" a:adobe-knockout="false" d="M173.33,171.248
+ c-5.885,17.848-22.048,28.418-34.813,22.621c-12.677-5.756-15.903-25.208-8.024-41.925
+ c7.168-15.229,20.492-23.732,31.268-19.05C172.608,137.605,179.023,154.106,173.33,171.248z"/>
+
+ <linearGradient id="XMLID_126_" gradientUnits="userSpaceOnUse" x1="123.7273" y1="152.7769" x2="138.114" y2="159.0699" gradientTransform="matrix(0.9413 -0.0236 -0.0236 0.9834 15.0696 6.3374)">
+ <stop offset="0" style="stop-color:#3D98F0"/>
+ <stop offset="0.0169" style="stop-color:#3D98F0"/>
+ <stop offset="0.1966" style="stop-color:#3595F0"/>
+ <stop offset="0.5225" style="stop-color:#2F92F0"/>
+ <stop offset="0.9596" style="stop-color:#1E88EE"/>
+ <stop offset="1" style="stop-color:#1C87EE"/>
+ <a:midPointStop offset="0" style="stop-color:#3D98F0"/>
+ <a:midPointStop offset="0.5" style="stop-color:#3D98F0"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#3D98F0"/>
+ <a:midPointStop offset="0.5" style="stop-color:#3D98F0"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#3595F0"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#3595F0"/>
+ <a:midPointStop offset="1" style="stop-color:#1C87EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_126_)" a:adobe-knockout="false" d="M173.281,171.313
+ c-5.894,17.77-21.987,28.235-34.687,22.434c-12.599-5.754-15.839-25.09-8.04-41.731c7.114-15.207,20.432-23.701,31.215-19.021
+ C172.637,137.708,178.991,154.221,173.281,171.313z"/>
+
+ <linearGradient id="XMLID_127_" gradientUnits="userSpaceOnUse" x1="123.803" y1="152.6226" x2="139.5216" y2="159.5844" gradientTransform="matrix(0.9433 -0.0226 -0.0226 0.9834 14.5173 6.1537)">
+ <stop offset="0" style="stop-color:#449CF1"/>
+ <stop offset="0.0169" style="stop-color:#449CF1"/>
+ <stop offset="0.1966" style="stop-color:#3998F1"/>
+ <stop offset="0.4933" style="stop-color:#3394F0"/>
+ <stop offset="0.8911" style="stop-color:#228AEF"/>
+ <stop offset="1" style="stop-color:#1C87EE"/>
+ <a:midPointStop offset="0" style="stop-color:#449CF1"/>
+ <a:midPointStop offset="0.5" style="stop-color:#449CF1"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#449CF1"/>
+ <a:midPointStop offset="0.5" style="stop-color:#449CF1"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#3998F1"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#3998F1"/>
+ <a:midPointStop offset="1" style="stop-color:#1C87EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_127_)" a:adobe-knockout="false" d="M173.232,171.377
+ c-5.903,17.691-21.925,28.052-34.561,22.246c-12.521-5.751-15.776-24.973-8.057-41.536
+ c7.061-15.184,20.372-23.671,31.163-18.994C172.666,137.811,178.959,154.336,173.232,171.377z"/>
+
+ <linearGradient id="XMLID_128_" gradientUnits="userSpaceOnUse" x1="123.8835" y1="152.4751" x2="140.9147" y2="160.112" gradientTransform="matrix(0.9453 -0.0215 -0.0215 0.9835 13.9645 5.9706)">
+ <stop offset="0" style="stop-color:#4B9FF1"/>
+ <stop offset="0.0169" style="stop-color:#4B9FF1"/>
+ <stop offset="0.1966" style="stop-color:#3E9BF1"/>
+ <stop offset="0.4648" style="stop-color:#3897F0"/>
+ <stop offset="0.8243" style="stop-color:#278DEF"/>
+ <stop offset="1" style="stop-color:#1C87EE"/>
+ <a:midPointStop offset="0" style="stop-color:#4B9FF1"/>
+ <a:midPointStop offset="0.5" style="stop-color:#4B9FF1"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#4B9FF1"/>
+ <a:midPointStop offset="0.5" style="stop-color:#4B9FF1"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#3E9BF1"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#3E9BF1"/>
+ <a:midPointStop offset="1" style="stop-color:#1C87EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_128_)" a:adobe-knockout="false" d="M173.182,171.441
+ c-5.913,17.612-21.864,27.869-34.434,22.058c-12.444-5.75-15.713-24.855-8.073-41.342c7.007-15.161,20.312-23.64,31.11-18.965
+ C172.696,137.914,178.926,154.451,173.182,171.441z"/>
+
+ <linearGradient id="XMLID_129_" gradientUnits="userSpaceOnUse" x1="123.9617" y1="152.3184" x2="142.2882" y2="160.6375" gradientTransform="matrix(0.9472 -0.0204 -0.0204 0.9836 13.4122 5.7875)">
+ <stop offset="0" style="stop-color:#52A3F2"/>
+ <stop offset="0.0169" style="stop-color:#52A3F2"/>
+ <stop offset="0.1966" style="stop-color:#439DF2"/>
+ <stop offset="0.4425" style="stop-color:#3D9AF1"/>
+ <stop offset="0.772" style="stop-color:#2C91F0"/>
+ <stop offset="1" style="stop-color:#1C88EE"/>
+ <a:midPointStop offset="0" style="stop-color:#52A3F2"/>
+ <a:midPointStop offset="0.5" style="stop-color:#52A3F2"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#52A3F2"/>
+ <a:midPointStop offset="0.5" style="stop-color:#52A3F2"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#439DF2"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#439DF2"/>
+ <a:midPointStop offset="1" style="stop-color:#1C88EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_129_)" a:adobe-knockout="false" d="M173.133,171.505
+ c-5.922,17.534-21.803,27.687-34.308,21.871c-12.366-5.747-15.65-24.738-8.089-41.147
+ c6.953-15.138,20.252-23.61,31.058-18.938C172.725,138.017,178.894,154.565,173.133,171.505z"/>
+
+ <linearGradient id="XMLID_130_" gradientUnits="userSpaceOnUse" x1="124.0432" y1="152.1655" x2="143.646" y2="161.1728" gradientTransform="matrix(0.9492 -0.0193 -0.0193 0.9836 12.8599 5.6043)">
+ <stop offset="0" style="stop-color:#59A7F2"/>
+ <stop offset="0.0169" style="stop-color:#59A7F2"/>
+ <stop offset="0.1966" style="stop-color:#48A0F2"/>
+ <stop offset="0.4243" style="stop-color:#429DF1"/>
+ <stop offset="0.7295" style="stop-color:#3193F0"/>
+ <stop offset="1" style="stop-color:#1C88EE"/>
+ <a:midPointStop offset="0" style="stop-color:#59A7F2"/>
+ <a:midPointStop offset="0.5" style="stop-color:#59A7F2"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#59A7F2"/>
+ <a:midPointStop offset="0.5" style="stop-color:#59A7F2"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#48A0F2"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#48A0F2"/>
+ <a:midPointStop offset="1" style="stop-color:#1C88EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_130_)" a:adobe-knockout="false" d="M173.083,171.57
+ c-5.931,17.455-21.742,27.504-34.182,21.683c-12.288-5.745-15.587-24.621-8.106-40.953
+ c6.899-15.115,20.192-23.579,31.005-18.909C172.754,138.12,178.862,154.681,173.083,171.57z"/>
+
+ <linearGradient id="XMLID_131_" gradientUnits="userSpaceOnUse" x1="124.1233" y1="152.0103" x2="144.9854" y2="161.7125" gradientTransform="matrix(0.9512 -0.0182 -0.0182 0.9837 12.3071 5.4207)">
+ <stop offset="0" style="stop-color:#5FAAF3"/>
+ <stop offset="0.0169" style="stop-color:#5FAAF3"/>
+ <stop offset="0.1966" style="stop-color:#4DA3F3"/>
+ <stop offset="0.4093" style="stop-color:#47A0F2"/>
+ <stop offset="0.695" style="stop-color:#3696F1"/>
+ <stop offset="1" style="stop-color:#1C88EE"/>
+ <a:midPointStop offset="0" style="stop-color:#5FAAF3"/>
+ <a:midPointStop offset="0.5" style="stop-color:#5FAAF3"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#5FAAF3"/>
+ <a:midPointStop offset="0.5" style="stop-color:#5FAAF3"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#4DA3F3"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#4DA3F3"/>
+ <a:midPointStop offset="1" style="stop-color:#1C88EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_131_)" a:adobe-knockout="false" d="M173.033,171.634
+ c-5.94,17.376-21.68,27.321-34.055,21.495c-12.21-5.742-15.524-24.503-8.122-40.757c6.845-15.093,20.132-23.549,30.953-18.881
+ C172.784,138.223,178.829,154.795,173.033,171.634z"/>
+
+ <linearGradient id="XMLID_132_" gradientUnits="userSpaceOnUse" x1="124.2048" y1="151.8516" x2="146.3088" y2="162.2551" gradientTransform="matrix(0.9532 -0.0171 -0.0171 0.9838 11.7547 5.2376)">
+ <stop offset="0" style="stop-color:#66AEF3"/>
+ <stop offset="0.0169" style="stop-color:#66AEF3"/>
+ <stop offset="0.1966" style="stop-color:#52A6F3"/>
+ <stop offset="0.3966" style="stop-color:#4CA3F2"/>
+ <stop offset="0.6652" style="stop-color:#3B9AF1"/>
+ <stop offset="0.9717" style="stop-color:#1F8BEE"/>
+ <stop offset="1" style="stop-color:#1C89EE"/>
+ <a:midPointStop offset="0" style="stop-color:#66AEF3"/>
+ <a:midPointStop offset="0.5" style="stop-color:#66AEF3"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#66AEF3"/>
+ <a:midPointStop offset="0.5" style="stop-color:#66AEF3"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#52A6F3"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#52A6F3"/>
+ <a:midPointStop offset="1" style="stop-color:#1C89EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_132_)" a:adobe-knockout="false" d="M172.984,171.699
+ c-5.95,17.298-21.619,27.138-33.929,21.308c-12.132-5.74-15.46-24.386-8.138-40.563c6.791-15.07,20.073-23.519,30.9-18.854
+ C172.813,138.326,178.797,154.91,172.984,171.699z"/>
+
+ <linearGradient id="XMLID_133_" gradientUnits="userSpaceOnUse" x1="124.2874" y1="151.6953" x2="147.6169" y2="162.8068" gradientTransform="matrix(0.9552 -0.0161 -0.0161 0.9838 11.2024 5.0544)">
+ <stop offset="0" style="stop-color:#6DB2F4"/>
+ <stop offset="0.0169" style="stop-color:#6DB2F4"/>
+ <stop offset="0.1966" style="stop-color:#57A9F4"/>
+ <stop offset="0.3857" style="stop-color:#51A6F3"/>
+ <stop offset="0.6397" style="stop-color:#409CF2"/>
+ <stop offset="0.9294" style="stop-color:#248DEF"/>
+ <stop offset="1" style="stop-color:#1C89EE"/>
+ <a:midPointStop offset="0" style="stop-color:#6DB2F4"/>
+ <a:midPointStop offset="0.5" style="stop-color:#6DB2F4"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#6DB2F4"/>
+ <a:midPointStop offset="0.5" style="stop-color:#6DB2F4"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#57A9F4"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#57A9F4"/>
+ <a:midPointStop offset="1" style="stop-color:#1C89EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_133_)" a:adobe-knockout="false" d="M172.935,171.763
+ c-5.959,17.219-21.558,26.955-33.803,21.12c-12.055-5.737-15.398-24.268-8.155-40.368
+ c6.737-15.047,20.013-23.488,30.848-18.825C172.843,138.429,178.764,155.025,172.935,171.763z"/>
+
+ <linearGradient id="XMLID_134_" gradientUnits="userSpaceOnUse" x1="124.3708" y1="151.5381" x2="148.9081" y2="163.3634" gradientTransform="matrix(0.9572 -0.015 -0.015 0.9839 10.6496 4.8708)">
+ <stop offset="0" style="stop-color:#74B5F4"/>
+ <stop offset="0.0169" style="stop-color:#74B5F4"/>
+ <stop offset="0.1966" style="stop-color:#5CACF4"/>
+ <stop offset="0.3761" style="stop-color:#56A9F3"/>
+ <stop offset="0.6173" style="stop-color:#459FF2"/>
+ <stop offset="0.8925" style="stop-color:#2990EF"/>
+ <stop offset="1" style="stop-color:#1C89EE"/>
+ <a:midPointStop offset="0" style="stop-color:#74B5F4"/>
+ <a:midPointStop offset="0.5" style="stop-color:#74B5F4"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#74B5F4"/>
+ <a:midPointStop offset="0.5" style="stop-color:#74B5F4"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#5CACF4"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#5CACF4"/>
+ <a:midPointStop offset="1" style="stop-color:#1C89EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_134_)" a:adobe-knockout="false" d="M172.885,171.828
+ c-5.968,17.14-21.496,26.772-33.676,20.932c-11.977-5.735-15.334-24.151-8.171-40.174
+ c6.683-15.025,19.953-23.458,30.795-18.797C172.872,138.532,178.732,155.14,172.885,171.828z"/>
+
+ <linearGradient id="XMLID_135_" gradientUnits="userSpaceOnUse" x1="124.4534" y1="151.3784" x2="150.1816" y2="163.9236" gradientTransform="matrix(0.9592 -0.0139 -0.0139 0.9839 10.0978 4.6877)">
+ <stop offset="0" style="stop-color:#7BB9F4"/>
+ <stop offset="0.0169" style="stop-color:#7BB9F4"/>
+ <stop offset="0.1966" style="stop-color:#60AFF4"/>
+ <stop offset="0.3694" style="stop-color:#5AACF3"/>
+ <stop offset="0.6015" style="stop-color:#49A2F2"/>
+ <stop offset="0.8663" style="stop-color:#2D92EF"/>
+ <stop offset="1" style="stop-color:#1C89EE"/>
+ <a:midPointStop offset="0" style="stop-color:#7BB9F4"/>
+ <a:midPointStop offset="0.5" style="stop-color:#7BB9F4"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#7BB9F4"/>
+ <a:midPointStop offset="0.5" style="stop-color:#7BB9F4"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#60AFF4"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#60AFF4"/>
+ <a:midPointStop offset="1" style="stop-color:#1C89EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_135_)" a:adobe-knockout="false" d="M172.836,171.892
+ c-5.978,17.062-21.435,26.589-33.55,20.745c-11.899-5.733-15.271-24.034-8.188-39.979
+ c6.63-15.002,19.893-23.427,30.743-18.769C172.901,138.635,178.699,155.255,172.836,171.892z"/>
+
+ <linearGradient id="XMLID_136_" gradientUnits="userSpaceOnUse" x1="124.5378" y1="151.2192" x2="151.441" y2="164.4907" gradientTransform="matrix(0.9612 -0.0128 -0.0128 0.984 9.5455 4.5045)">
+ <stop offset="0" style="stop-color:#82BDF5"/>
+ <stop offset="0.0169" style="stop-color:#82BDF5"/>
+ <stop offset="0.1966" style="stop-color:#65B2F5"/>
+ <stop offset="0.3618" style="stop-color:#5FAFF4"/>
+ <stop offset="0.5837" style="stop-color:#4EA5F3"/>
+ <stop offset="0.8368" style="stop-color:#3296F0"/>
+ <stop offset="1" style="stop-color:#1C8AEE"/>
+ <a:midPointStop offset="0" style="stop-color:#82BDF5"/>
+ <a:midPointStop offset="0.5" style="stop-color:#82BDF5"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#82BDF5"/>
+ <a:midPointStop offset="0.5" style="stop-color:#82BDF5"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#65B2F5"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#65B2F5"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8AEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_136_)" a:adobe-knockout="false" d="M172.786,171.957
+ c-5.987,16.983-21.374,26.406-33.424,20.557c-11.822-5.73-15.208-23.916-8.204-39.785
+ c6.576-14.979,19.833-23.396,30.69-18.741C172.93,138.737,178.667,155.37,172.786,171.957z"/>
+
+ <linearGradient id="XMLID_137_" gradientUnits="userSpaceOnUse" x1="124.6213" y1="151.0547" x2="152.6828" y2="165.0581" gradientTransform="matrix(0.9632 -0.0117 -0.0117 0.9841 8.9927 4.3209)">
+ <stop offset="0" style="stop-color:#89C0F5"/>
+ <stop offset="0.0169" style="stop-color:#89C0F5"/>
+ <stop offset="0.1966" style="stop-color:#6AB5F5"/>
+ <stop offset="0.355" style="stop-color:#64B2F4"/>
+ <stop offset="0.5677" style="stop-color:#53A8F3"/>
+ <stop offset="0.8103" style="stop-color:#3799F0"/>
+ <stop offset="1" style="stop-color:#1C8AEE"/>
+ <a:midPointStop offset="0" style="stop-color:#89C0F5"/>
+ <a:midPointStop offset="0.5" style="stop-color:#89C0F5"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#89C0F5"/>
+ <a:midPointStop offset="0.5" style="stop-color:#89C0F5"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#6AB5F5"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#6AB5F5"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8AEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_137_)" a:adobe-knockout="false" d="M172.737,172.021
+ c-5.996,16.904-21.313,26.223-33.297,20.369c-11.744-5.728-15.145-23.799-8.22-39.59
+ c6.522-14.957,19.773-23.366,30.638-18.713C172.96,138.84,178.635,155.485,172.737,172.021z"/>
+
+ <linearGradient id="XMLID_138_" gradientUnits="userSpaceOnUse" x1="124.7058" y1="150.8931" x2="153.9094" y2="165.6344" gradientTransform="matrix(0.9652 -0.0106 -0.0106 0.9841 8.4403 4.1378)">
+ <stop offset="0" style="stop-color:#90C4F6"/>
+ <stop offset="0.0169" style="stop-color:#90C4F6"/>
+ <stop offset="0.1966" style="stop-color:#6FB8F6"/>
+ <stop offset="0.3489" style="stop-color:#69B5F5"/>
+ <stop offset="0.5534" style="stop-color:#58ABF4"/>
+ <stop offset="0.7867" style="stop-color:#3C9CF1"/>
+ <stop offset="1" style="stop-color:#1C8AEE"/>
+ <a:midPointStop offset="0" style="stop-color:#90C4F6"/>
+ <a:midPointStop offset="0.5" style="stop-color:#90C4F6"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#90C4F6"/>
+ <a:midPointStop offset="0.5" style="stop-color:#90C4F6"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#6FB8F6"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#6FB8F6"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8AEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_138_)" a:adobe-knockout="false" d="M172.687,172.085
+ c-6.005,16.825-21.251,26.04-33.171,20.181c-11.666-5.726-15.082-23.681-8.237-39.396
+ c6.468-14.934,19.713-23.335,30.585-18.685C172.989,138.943,178.602,155.6,172.687,172.085z"/>
+
+ <linearGradient id="XMLID_139_" gradientUnits="userSpaceOnUse" x1="124.7927" y1="150.7305" x2="155.1227" y2="166.2156" gradientTransform="matrix(0.9671 -0.0096 -0.0096 0.9842 7.888 3.9546)">
+ <stop offset="0" style="stop-color:#97C8F6"/>
+ <stop offset="0.0169" style="stop-color:#97C8F6"/>
+ <stop offset="0.1966" style="stop-color:#74BAF6"/>
+ <stop offset="0.3433" style="stop-color:#6EB7F5"/>
+ <stop offset="0.5404" style="stop-color:#5DAEF4"/>
+ <stop offset="0.7662" style="stop-color:#419FF1"/>
+ <stop offset="1" style="stop-color:#1C8BEE"/>
+ <a:midPointStop offset="0" style="stop-color:#97C8F6"/>
+ <a:midPointStop offset="0.5" style="stop-color:#97C8F6"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#97C8F6"/>
+ <a:midPointStop offset="0.5" style="stop-color:#97C8F6"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#74BAF6"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#74BAF6"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8BEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_139_)" a:adobe-knockout="false" d="M172.638,172.149
+ c-6.015,16.747-21.19,25.857-33.045,19.994c-11.588-5.723-15.019-23.564-8.253-39.201
+ c6.414-14.911,19.654-23.305,30.533-18.657C173.018,139.046,178.57,155.715,172.638,172.149z"/>
+
+ <linearGradient id="XMLID_140_" gradientUnits="userSpaceOnUse" x1="124.8782" y1="150.5669" x2="156.3197" y2="166.802" gradientTransform="matrix(0.9691 -0.0085 -0.0085 0.9842 7.3352 3.7715)">
+ <stop offset="0" style="stop-color:#9ECCF7"/>
+ <stop offset="0.0169" style="stop-color:#9ECCF7"/>
+ <stop offset="0.1966" style="stop-color:#79BDF7"/>
+ <stop offset="0.3383" style="stop-color:#73BAF6"/>
+ <stop offset="0.5286" style="stop-color:#62B1F5"/>
+ <stop offset="0.7466" style="stop-color:#46A1F2"/>
+ <stop offset="0.9837" style="stop-color:#1F8DEE"/>
+ <stop offset="1" style="stop-color:#1C8BEE"/>
+ <a:midPointStop offset="0" style="stop-color:#9ECCF7"/>
+ <a:midPointStop offset="0.5" style="stop-color:#9ECCF7"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#9ECCF7"/>
+ <a:midPointStop offset="0.5" style="stop-color:#9ECCF7"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#79BDF7"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#79BDF7"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8BEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_140_)" a:adobe-knockout="false" d="M172.589,172.214
+ c-6.024,16.668-21.129,25.674-32.918,19.806c-11.511-5.721-14.956-23.446-8.27-39.006c6.36-14.888,19.594-23.274,30.48-18.628
+ C173.048,139.149,178.537,155.83,172.589,172.214z"/>
+
+ <linearGradient id="XMLID_141_" gradientUnits="userSpaceOnUse" x1="124.9661" y1="150.3999" x2="157.5024" y2="167.3901" gradientTransform="matrix(0.9711 -0.0074 -0.0074 0.9843 6.7829 3.5878)">
+ <stop offset="0" style="stop-color:#A5CFF7"/>
+ <stop offset="0.0169" style="stop-color:#A5CFF7"/>
+ <stop offset="0.1966" style="stop-color:#7EC0F7"/>
+ <stop offset="0.3337" style="stop-color:#78BDF6"/>
+ <stop offset="0.5178" style="stop-color:#67B3F5"/>
+ <stop offset="0.7287" style="stop-color:#4BA4F2"/>
+ <stop offset="0.958" style="stop-color:#248FEF"/>
+ <stop offset="1" style="stop-color:#1C8BEE"/>
+ <a:midPointStop offset="0" style="stop-color:#A5CFF7"/>
+ <a:midPointStop offset="0.5" style="stop-color:#A5CFF7"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#A5CFF7"/>
+ <a:midPointStop offset="0.5" style="stop-color:#A5CFF7"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#7EC0F7"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#7EC0F7"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8BEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_141_)" a:adobe-knockout="false" d="M172.539,172.278
+ c-6.033,16.589-21.067,25.492-32.792,19.619c-11.433-5.718-14.893-23.329-8.286-38.812
+ c6.306-14.865,19.534-23.244,30.427-18.601C173.077,139.252,178.505,155.945,172.539,172.278z"/>
+
+ <linearGradient id="XMLID_142_" gradientUnits="userSpaceOnUse" x1="125.054" y1="150.2329" x2="158.6707" y2="167.9843" gradientTransform="matrix(0.9731 -0.0063 -0.0063 0.9844 6.2306 3.4052)">
+ <stop offset="0" style="stop-color:#ACD3F8"/>
+ <stop offset="0.0169" style="stop-color:#ACD3F8"/>
+ <stop offset="0.1966" style="stop-color:#83C3F8"/>
+ <stop offset="0.3294" style="stop-color:#7DC0F7"/>
+ <stop offset="0.5078" style="stop-color:#6CB7F6"/>
+ <stop offset="0.7122" style="stop-color:#50A8F3"/>
+ <stop offset="0.9344" style="stop-color:#2993EF"/>
+ <stop offset="1" style="stop-color:#1C8CEE"/>
+ <a:midPointStop offset="0" style="stop-color:#ACD3F8"/>
+ <a:midPointStop offset="0.5" style="stop-color:#ACD3F8"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#ACD3F8"/>
+ <a:midPointStop offset="0.5" style="stop-color:#ACD3F8"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#83C3F8"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#83C3F8"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8CEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_142_)" a:adobe-knockout="false" d="M172.49,172.343
+ c-6.042,16.511-21.006,25.309-32.666,19.431c-11.355-5.716-14.83-23.211-8.302-38.617
+ c6.252-14.842,19.474-23.213,30.375-18.572C173.106,139.355,178.472,156.06,172.49,172.343z"/>
+
+ <linearGradient id="XMLID_143_" gradientUnits="userSpaceOnUse" x1="125.1428" y1="150.0654" x2="159.8252" y2="168.5836" gradientTransform="matrix(0.9751 -0.0052 -0.0052 0.9844 5.6782 3.2215)">
+ <stop offset="0" style="stop-color:#B3D7F8"/>
+ <stop offset="0.0169" style="stop-color:#B3D7F8"/>
+ <stop offset="0.1966" style="stop-color:#87C6F8"/>
+ <stop offset="0.3262" style="stop-color:#81C3F7"/>
+ <stop offset="0.5004" style="stop-color:#70B9F6"/>
+ <stop offset="0.6998" style="stop-color:#54AAF3"/>
+ <stop offset="0.9166" style="stop-color:#2D95F0"/>
+ <stop offset="1" style="stop-color:#1C8CEE"/>
+ <a:midPointStop offset="0" style="stop-color:#B3D7F8"/>
+ <a:midPointStop offset="0.5" style="stop-color:#B3D7F8"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#B3D7F8"/>
+ <a:midPointStop offset="0.5" style="stop-color:#B3D7F8"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#87C6F8"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#87C6F8"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8CEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_143_)" a:adobe-knockout="false" d="M172.44,172.407
+ c-6.052,16.432-20.945,25.125-32.54,19.243c-11.277-5.714-14.767-23.094-8.319-38.423
+ c6.199-14.819,19.415-23.183,30.323-18.544C173.135,139.458,178.44,156.175,172.44,172.407z"/>
+
+ <linearGradient id="XMLID_144_" gradientUnits="userSpaceOnUse" x1="125.2317" y1="149.897" x2="160.9635" y2="169.187" gradientTransform="matrix(0.9771 -0.0041 -0.0041 0.9845 5.1254 3.0379)">
+ <stop offset="0" style="stop-color:#BADAF8"/>
+ <stop offset="0.0169" style="stop-color:#BADAF8"/>
+ <stop offset="0.1966" style="stop-color:#8CC9F8"/>
+ <stop offset="0.3225" style="stop-color:#86C6F7"/>
+ <stop offset="0.4917" style="stop-color:#75BCF6"/>
+ <stop offset="0.6855" style="stop-color:#59ADF3"/>
+ <stop offset="0.896" style="stop-color:#3298F0"/>
+ <stop offset="1" style="stop-color:#1C8CEE"/>
+ <a:midPointStop offset="0" style="stop-color:#BADAF8"/>
+ <a:midPointStop offset="0.5" style="stop-color:#BADAF8"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#BADAF8"/>
+ <a:midPointStop offset="0.5" style="stop-color:#BADAF8"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#8CC9F8"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#8CC9F8"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8CEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_144_)" a:adobe-knockout="false" d="M172.39,172.472
+ c-6.061,16.354-20.884,24.942-32.413,19.056c-11.199-5.711-14.703-22.977-8.335-38.229
+ c6.145-14.797,19.354-23.152,30.27-18.516C173.165,139.561,178.408,156.29,172.39,172.472z"/>
+
+ <linearGradient id="XMLID_145_" gradientUnits="userSpaceOnUse" x1="125.324" y1="149.729" x2="162.0907" y2="169.7964" gradientTransform="matrix(0.9791 -0.0031 -0.0031 0.9845 4.5731 2.8548)">
+ <stop offset="0" style="stop-color:#C1DEF9"/>
+ <stop offset="0.0169" style="stop-color:#C1DEF9"/>
+ <stop offset="0.1966" style="stop-color:#91CCF9"/>
+ <stop offset="0.3191" style="stop-color:#8BC9F8"/>
+ <stop offset="0.4836" style="stop-color:#7ABFF7"/>
+ <stop offset="0.6721" style="stop-color:#5EB0F4"/>
+ <stop offset="0.877" style="stop-color:#379BF1"/>
+ <stop offset="1" style="stop-color:#1C8CEE"/>
+ <a:midPointStop offset="0" style="stop-color:#C1DEF9"/>
+ <a:midPointStop offset="0.5" style="stop-color:#C1DEF9"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#C1DEF9"/>
+ <a:midPointStop offset="0.5" style="stop-color:#C1DEF9"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#91CCF9"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#91CCF9"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8CEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_145_)" a:adobe-knockout="false" d="M172.341,172.536
+ c-6.07,16.274-20.822,24.76-32.287,18.868c-11.122-5.709-14.641-22.859-8.352-38.034
+ c6.091-14.774,19.294-23.122,30.217-18.488C173.194,139.664,178.375,156.405,172.341,172.536z"/>
+
+ <linearGradient id="XMLID_146_" gradientUnits="userSpaceOnUse" x1="125.4158" y1="149.5596" x2="163.204" y2="170.4103" gradientTransform="matrix(0.9811 -0.002 -0.002 0.9846 4.0208 2.6716)">
+ <stop offset="0" style="stop-color:#C8E2F9"/>
+ <stop offset="0.0169" style="stop-color:#C8E2F9"/>
+ <stop offset="0.1966" style="stop-color:#96CFF9"/>
+ <stop offset="0.3158" style="stop-color:#90CCF8"/>
+ <stop offset="0.4761" style="stop-color:#7FC2F7"/>
+ <stop offset="0.6597" style="stop-color:#63B3F4"/>
+ <stop offset="0.8591" style="stop-color:#3C9EF1"/>
+ <stop offset="1" style="stop-color:#1C8DEE"/>
+ <a:midPointStop offset="0" style="stop-color:#C8E2F9"/>
+ <a:midPointStop offset="0.5" style="stop-color:#C8E2F9"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#C8E2F9"/>
+ <a:midPointStop offset="0.5" style="stop-color:#C8E2F9"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#96CFF9"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#96CFF9"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8DEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_146_)" a:adobe-knockout="false" d="M172.292,172.601
+ c-6.08,16.196-20.761,24.577-32.161,18.68c-11.044-5.707-14.577-22.742-8.368-37.839c6.037-14.751,19.235-23.091,30.165-18.46
+ C173.223,139.767,178.343,156.52,172.292,172.601z"/>
+
+ <linearGradient id="XMLID_147_" gradientUnits="userSpaceOnUse" x1="125.5081" y1="149.3862" x2="164.3029" y2="171.0255" gradientTransform="matrix(0.9831 -8.870935e-004 -8.870935e-004 0.9847 3.4679 2.4885)">
+ <stop offset="0" style="stop-color:#CEE5FA"/>
+ <stop offset="0.0169" style="stop-color:#CEE5FA"/>
+ <stop offset="0.1966" style="stop-color:#9BD2FA"/>
+ <stop offset="0.3129" style="stop-color:#95CFF9"/>
+ <stop offset="0.4691" style="stop-color:#84C5F8"/>
+ <stop offset="0.6481" style="stop-color:#68B6F5"/>
+ <stop offset="0.8425" style="stop-color:#41A1F1"/>
+ <stop offset="1" style="stop-color:#1C8DEE"/>
+ <a:midPointStop offset="0" style="stop-color:#CEE5FA"/>
+ <a:midPointStop offset="0.5" style="stop-color:#CEE5FA"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#CEE5FA"/>
+ <a:midPointStop offset="0.5" style="stop-color:#CEE5FA"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#9BD2FA"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#9BD2FA"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8DEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_147_)" a:adobe-knockout="false" d="M172.242,172.665
+ c-6.089,16.117-20.7,24.394-32.034,18.492c-10.966-5.704-14.514-22.625-8.384-37.644
+ c5.983-14.729,19.175-23.061,30.112-18.432C173.253,139.87,178.31,156.634,172.242,172.665z"/>
+
+ <linearGradient id="XMLID_148_" gradientUnits="userSpaceOnUse" x1="125.5979" y1="149.2148" x2="165.3848" y2="171.6476" gradientTransform="matrix(0.9851 1.967764e-004 1.967764e-004 0.9847 2.9156 2.3048)">
+ <stop offset="0" style="stop-color:#D5E9FA"/>
+ <stop offset="0.0169" style="stop-color:#D5E9FA"/>
+ <stop offset="0.1966" style="stop-color:#A0D5FA"/>
+ <stop offset="0.31" style="stop-color:#9AD2F9"/>
+ <stop offset="0.4625" style="stop-color:#89C8F8"/>
+ <stop offset="0.6372" style="stop-color:#6DB9F5"/>
+ <stop offset="0.8269" style="stop-color:#46A4F2"/>
+ <stop offset="1" style="stop-color:#1C8DEE"/>
+ <a:midPointStop offset="0" style="stop-color:#D5E9FA"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D5E9FA"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#D5E9FA"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D5E9FA"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#A0D5FA"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#A0D5FA"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8DEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_148_)" a:adobe-knockout="false" d="M172.193,172.729
+ c-6.098,16.039-20.639,24.21-31.908,18.305c-10.889-5.702-14.451-22.507-8.4-37.45c5.929-14.706,19.115-23.03,30.06-18.404
+ C173.282,139.973,178.278,156.75,172.193,172.729z"/>
+
+ <linearGradient id="XMLID_149_" gradientUnits="userSpaceOnUse" x1="125.6917" y1="149.0425" x2="166.4561" y2="172.2738" gradientTransform="matrix(0.987 0.0013 0.0013 0.9848 2.3638 2.1222)">
+ <stop offset="0" style="stop-color:#DCEDFB"/>
+ <stop offset="0.0169" style="stop-color:#DCEDFB"/>
+ <stop offset="0.1966" style="stop-color:#A5D7FB"/>
+ <stop offset="0.3074" style="stop-color:#9FD4FA"/>
+ <stop offset="0.4564" style="stop-color:#8ECBF9"/>
+ <stop offset="0.627" style="stop-color:#72BCF6"/>
+ <stop offset="0.8135" style="stop-color:#4BA7F2"/>
+ <stop offset="1" style="stop-color:#1C8EEE"/>
+ <a:midPointStop offset="0" style="stop-color:#DCEDFB"/>
+ <a:midPointStop offset="0.5" style="stop-color:#DCEDFB"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#DCEDFB"/>
+ <a:midPointStop offset="0.5" style="stop-color:#DCEDFB"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#A5D7FB"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#A5D7FB"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8EEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_149_)" a:adobe-knockout="false" d="M172.143,172.793
+ c-6.107,15.96-20.578,24.028-31.782,18.117c-10.811-5.699-14.388-22.39-8.417-37.255c5.875-14.683,19.055-23,30.007-18.376
+ C173.312,140.076,178.246,156.864,172.143,172.793z"/>
+
+ <linearGradient id="XMLID_150_" gradientUnits="userSpaceOnUse" x1="125.7878" y1="148.8711" x2="167.5164" y2="172.9064" gradientTransform="matrix(0.989 0.0024 0.0024 0.9849 1.8114 1.9385)">
+ <stop offset="0" style="stop-color:#E3F0FB"/>
+ <stop offset="0.0169" style="stop-color:#E3F0FB"/>
+ <stop offset="0.1966" style="stop-color:#AADAFB"/>
+ <stop offset="0.3049" style="stop-color:#A4D7FA"/>
+ <stop offset="0.4505" style="stop-color:#93CEF9"/>
+ <stop offset="0.6173" style="stop-color:#77BFF6"/>
+ <stop offset="0.7999" style="stop-color:#50AAF3"/>
+ <stop offset="0.9933" style="stop-color:#1E8FEE"/>
+ <stop offset="1" style="stop-color:#1C8EEE"/>
+ <a:midPointStop offset="0" style="stop-color:#E3F0FB"/>
+ <a:midPointStop offset="0.5" style="stop-color:#E3F0FB"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#E3F0FB"/>
+ <a:midPointStop offset="0.5" style="stop-color:#E3F0FB"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#AADAFB"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#AADAFB"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8EEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_150_)" a:adobe-knockout="false" d="M172.094,172.858
+ c-6.117,15.881-20.516,23.845-31.655,17.93c-10.733-5.697-14.325-22.272-8.433-37.061
+ c5.821-14.661,18.995-22.969,29.955-18.348C173.341,140.179,178.213,156.979,172.094,172.858z"/>
+
+ <linearGradient id="XMLID_151_" gradientUnits="userSpaceOnUse" x1="125.8831" y1="148.6938" x2="168.5633" y2="173.5392" gradientTransform="matrix(0.991 0.0034 0.0034 0.9849 1.2586 1.7549)">
+ <stop offset="0" style="stop-color:#EAF4FC"/>
+ <stop offset="0.0169" style="stop-color:#EAF4FC"/>
+ <stop offset="0.1966" style="stop-color:#AEDDFC"/>
+ <stop offset="0.303" style="stop-color:#A8DAFB"/>
+ <stop offset="0.446" style="stop-color:#97D0FA"/>
+ <stop offset="0.6099" style="stop-color:#7BC1F7"/>
+ <stop offset="0.7893" style="stop-color:#54ACF3"/>
+ <stop offset="0.9793" style="stop-color:#2291EF"/>
+ <stop offset="1" style="stop-color:#1C8EEE"/>
+ <a:midPointStop offset="0" style="stop-color:#EAF4FC"/>
+ <a:midPointStop offset="0.5" style="stop-color:#EAF4FC"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#EAF4FC"/>
+ <a:midPointStop offset="0.5" style="stop-color:#EAF4FC"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#AEDDFC"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#AEDDFC"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8EEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_151_)" a:adobe-knockout="false" d="M172.044,172.922
+ c-6.126,15.803-20.455,23.662-31.529,17.742c-10.655-5.694-14.262-22.155-8.45-36.866
+ c5.768-14.638,18.936-22.939,29.902-18.32C173.37,140.282,178.181,157.094,172.044,172.922z"/>
+
+ <linearGradient id="XMLID_152_" gradientUnits="userSpaceOnUse" x1="125.9778" y1="148.521" x2="169.594" y2="174.1801" gradientTransform="matrix(0.993 0.0045 0.0045 0.985 0.7063 1.5718)">
+ <stop offset="0" style="stop-color:#F1F8FC"/>
+ <stop offset="0.0169" style="stop-color:#F1F8FC"/>
+ <stop offset="0.1966" style="stop-color:#B3E0FC"/>
+ <stop offset="0.3008" style="stop-color:#ADDDFB"/>
+ <stop offset="0.4408" style="stop-color:#9CD3FA"/>
+ <stop offset="0.6013" style="stop-color:#80C4F7"/>
+ <stop offset="0.7769" style="stop-color:#59AFF4"/>
+ <stop offset="0.9628" style="stop-color:#2794EF"/>
+ <stop offset="1" style="stop-color:#1C8EEE"/>
+ <a:midPointStop offset="0" style="stop-color:#F1F8FC"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F1F8FC"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#F1F8FC"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F1F8FC"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#B3E0FC"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#B3E0FC"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8EEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_152_)" a:adobe-knockout="false" d="M171.995,172.987
+ c-6.135,15.724-20.394,23.479-31.403,17.554c-10.577-5.692-14.198-22.038-8.466-36.671
+ c5.713-14.615,18.875-22.908,29.85-18.292C173.4,140.384,178.149,157.209,171.995,172.987z"/>
+
+ <linearGradient id="XMLID_153_" gradientUnits="userSpaceOnUse" x1="126.0779" y1="148.3438" x2="170.6163" y2="174.8215" gradientTransform="matrix(0.995 0.0056 0.0056 0.985 0.154 1.3886)">
+ <stop offset="0" style="stop-color:#F8FBFD"/>
+ <stop offset="0.0169" style="stop-color:#F8FBFD"/>
+ <stop offset="0.1966" style="stop-color:#B8E3FD"/>
+ <stop offset="0.2987" style="stop-color:#B2E0FC"/>
+ <stop offset="0.4358" style="stop-color:#A1D7FB"/>
+ <stop offset="0.593" style="stop-color:#85C7F8"/>
+ <stop offset="0.765" style="stop-color:#5EB2F4"/>
+ <stop offset="0.9471" style="stop-color:#2C98F0"/>
+ <stop offset="1" style="stop-color:#1C8FEE"/>
+ <a:midPointStop offset="0" style="stop-color:#F8FBFD"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F8FBFD"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#F8FBFD"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F8FBFD"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#B8E3FD"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#B8E3FD"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8FEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_153_)" a:adobe-knockout="false" d="M171.945,173.051
+ c-6.145,15.645-20.332,23.296-31.276,17.366c-10.5-5.689-14.136-21.92-8.482-36.477c5.66-14.592,18.816-22.878,29.797-18.264
+ C173.429,140.487,178.116,157.324,171.945,173.051z"/>
+
+ <linearGradient id="XMLID_154_" gradientUnits="userSpaceOnUse" x1="126.175" y1="148.168" x2="171.6249" y2="175.4708" gradientTransform="matrix(0.997 0.0067 0.0067 0.9851 -0.3988 1.2055)">
+ <stop offset="0.0169" style="stop-color:#FFFFFD"/>
+ <stop offset="0.1966" style="stop-color:#BDE6FD"/>
+ <stop offset="0.2966" style="stop-color:#B7E3FC"/>
+ <stop offset="0.4311" style="stop-color:#A6D9FB"/>
+ <stop offset="0.5851" style="stop-color:#8ACAF8"/>
+ <stop offset="0.7538" style="stop-color:#63B5F5"/>
+ <stop offset="0.9323" style="stop-color:#319AF0"/>
+ <stop offset="1" style="stop-color:#1C8FEE"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#FFFFFD"/>
+ <a:midPointStop offset="0.5" style="stop-color:#FFFFFD"/>
+ <a:midPointStop offset="0.1966" style="stop-color:#BDE6FD"/>
+ <a:midPointStop offset="0.6441" style="stop-color:#BDE6FD"/>
+ <a:midPointStop offset="1" style="stop-color:#1C8FEE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_154_)" a:adobe-knockout="false" d="M171.896,173.116
+ c-6.154,15.566-20.271,23.113-31.15,17.179c-10.422-5.688-14.072-21.803-8.499-36.282
+ c5.605-14.569,18.756-22.847,29.745-18.235C173.458,140.59,178.084,157.439,171.896,173.116z"/>
+ </g>
+
+ <linearGradient id="XMLID_155_" gradientUnits="userSpaceOnUse" x1="164.9543" y1="202.2217" x2="149.6072" y2="161.9356" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0.0169" style="stop-color:#FFFFFF"/>
+ <stop offset="0.0405" style="stop-color:#FFF8D8"/>
+ <stop offset="0.0716" style="stop-color:#FFF0AB"/>
+ <stop offset="0.1058" style="stop-color:#FFE982"/>
+ <stop offset="0.1424" style="stop-color:#FFE35F"/>
+ <stop offset="0.182" style="stop-color:#FFDD41"/>
+ <stop offset="0.2257" style="stop-color:#FFD929"/>
+ <stop offset="0.2749" style="stop-color:#FFD617"/>
+ <stop offset="0.3331" style="stop-color:#FFD40A"/>
+ <stop offset="0.4089" style="stop-color:#FFD202"/>
+ <stop offset="0.5674" style="stop-color:#FFD200"/>
+ <stop offset="1" style="stop-color:#FF8B00"/>
+ <a:midPointStop offset="0.0169" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.1657" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.5674" style="stop-color:#FFD200"/>
+ <a:midPointStop offset="0.5" style="stop-color:#FFD200"/>
+ <a:midPointStop offset="1" style="stop-color:#FF8B00"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_155_)" d="M146.963,187.534c4.335,0.355,8.602-1.261,12.088-3.753
+ c2.567-1.832,4.755-4.097,6.448-6.695c0.013-0.017,0.02-0.032,0.032-0.047c0.335-0.515,0.649-1.043,0.947-1.583
+ c0.002-0.008,0.007-0.018,0.012-0.026c0.595-1.093,1.106-2.237,1.526-3.425c1.907-5.378,2.463-11.103,1.254-16.71
+ c-1.074-4.971-3.68-9.773-7.839-12.81c-1.984-1.447-4.13-2.335-6.593-2.491c-2.774-0.178-5.532,0.516-8.021,1.722
+ c-0.292,0.19-0.583,0.382-0.873,0.591c-9.198,6.574-13.717,17.453-13.508,27.301c0.333,5.737,2.45,11.024,6.418,14.594
+ C141.177,186.048,143.957,187.287,146.963,187.534z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M152.871,163.726c0.6-3.865-0.522-7.005-2.662-6.849
+ c-2.314,0.169-4.753,4.052-5.243,8.456c-0.463,4.194,1.088,6.84,3.284,6.14C150.298,170.817,152.301,167.43,152.871,163.726z"
+ />
+ <path i:knockout="Off" fill="#1C86EE" d="M162.636,162.831c-0.229-0.074-0.595-0.122-1.02,0.095
+ c-1.451,0.724-2.662,4.385-2.89,5.114c-0.319,1.026-1.306,4.479-0.473,5.754c0.22,0.333,0.541,0.539,0.91,0.59
+ c0.917,0.124,1.58-0.733,1.997-1.385c0.242-0.378,0.491-0.838,0.734-1.364c0.351-0.751,0.686-1.621,0.961-2.508
+ C163.516,167.019,164.369,163.397,162.636,162.831z"/>
+
+ <linearGradient id="XMLID_156_" gradientUnits="userSpaceOnUse" x1="157.2424" y1="146.5264" x2="154.0309" y2="160.3349" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.4169" style="stop-color:#FFFFFD"/>
+ <stop offset="0.6466" style="stop-color:#FFFFF5"/>
+ <stop offset="0.8302" style="stop-color:#FFFFE7"/>
+ <stop offset="0.9894" style="stop-color:#FFFFD4"/>
+ <stop offset="1" style="stop-color:#FFFFD2"/>
+ <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="0.8136" style="stop-color:#FFFFFF"/>
+ <a:midPointStop offset="1" style="stop-color:#FFFFD2"/>
+ </linearGradient>
+ <path i:knockout="Off" opacity="0.75" fill="url(#XMLID_156_)" d="M141.049,150.84c-3.562,6.513-3.258,7.708,7.139,8.935
+ c7.664,1.236,11.396,3.66,15.189,5.776c2.492,1.122,4.064,3.785,5.62,1.77c2.158-3.913,1.6-13.077-3.001-19.51
+ C158.905,138.266,146.682,142.015,141.049,150.84z"/>
+
+ <linearGradient id="XMLID_157_" gradientUnits="userSpaceOnUse" x1="174.7786" y1="143.7949" x2="142.9488" y2="191.5393" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0.0056" style="stop-color:#1C86EE"/>
+ <stop offset="0.3764" style="stop-color:#FCFFFC"/>
+ <stop offset="0.437" style="stop-color:#F0F9FB"/>
+ <stop offset="0.5465" style="stop-color:#D0E7F9"/>
+ <stop offset="0.6924" style="stop-color:#9DCCF6"/>
+ <stop offset="0.8669" style="stop-color:#56A6F2"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.0056" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0.3764" style="stop-color:#FCFFFC"/>
+ <a:midPointStop offset="0.5763" style="stop-color:#FCFFFC"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_157_)" d="M171.884,152.011c-1.553-5.683-5.044-10.198-9.621-12.281
+ c2.69,1.772,4.894,4.438,6.383,7.697c0.524,1.133,0.966,2.337,1.31,3.598c1.867,6.835,0.87,15.174-2.249,22.22
+ c0.136-0.382,0.264-0.767,0.388-1.158c-0.129,0.322-0.261,0.641-0.4,0.953c0.01-0.018,0.02-0.034,0.027-0.051
+ c-0.985,2.716-2.309,5.289-3.931,7.549c-4.159,5.805-10.422,9.747-16.525,9.768c6.978,0.854,14.433-3.608,19.244-10.475
+ C171.976,172.024,174.278,160.775,171.884,152.011z"/>
+
+ <linearGradient id="XMLID_158_" gradientUnits="userSpaceOnUse" x1="187.4504" y1="142.1313" x2="164.2581" y2="156.7162" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
+ <stop offset="0" style="stop-color:#CDF0FC"/>
+ <stop offset="0.0783" style="stop-color:#C1E9FB"/>
+ <stop offset="0.2197" style="stop-color:#A1D6F9"/>
+ <stop offset="0.408" style="stop-color:#6EB7F4"/>
+ <stop offset="0.6339" style="stop-color:#278DEF"/>
+ <stop offset="0.6685" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#CDF0FC"/>
+ <a:midPointStop offset="0.5763" style="stop-color:#CDF0FC"/>
+ <a:midPointStop offset="0.6685" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_158_)" d="M164.172,141.119c-1.251-1.094-2.555-1.922-4.174-2.326
+ c-1.721-0.43-3.498-0.503-5.252-0.271c-2.867,0.38-5.571,1.604-7.956,3.206c2.497-1.214,5.264-1.912,8.048-1.733
+ c2.463,0.156,4.609,1.043,6.593,2.491c4.159,3.037,6.765,7.839,7.839,12.81c1.209,5.607,0.653,11.332-1.254,16.71
+ c-0.419,1.188-0.931,2.332-1.526,3.425c-0.005,0.008-0.01,0.018-0.012,0.026c-0.298,0.54-0.612,1.069-0.947,1.583
+ c-0.012,0.015-0.019,0.03-0.032,0.047c-1.693,2.599-3.881,4.864-6.448,6.695c-3.487,2.492-7.753,4.108-12.088,3.753
+ c-3.006-0.247-5.786-1.486-8.109-3.333c-4.351-3.915-6.502-9.888-6.484-16.264c-0.254,7.866,2.438,15.275,8.14,19.584
+ c2.119,1.604,4.413,2.494,6.758,2.782c3.801-0.011,7.666-1.546,11.044-4.104c4.957-3.631,8.622-9.341,10.458-14.954
+ C171.896,161.679,172.442,148.35,164.172,141.119z"/>
+ </g>
+ <g>
+ <path i:knockout="Off" fill="#1C86EE" d="M374.069,178.561c-0.518-1.209-1.943-1.804-2.892-2.197l0,0
+ c-5.054-2.121-10.609-1.918-15.247,0.558c-2.162,1.159-3.67,2.625-4.479,4.36c-1.121,2.403-0.544,4.625,1.627,6.257
+ c1.782,1.344,3.916,1.957,5.948,2.472c2.727,0.688,4.185,1.78,4.465,3.334c0.336,1.868-2.13,3.869-3.915,4.377
+ c-2.181,0.618-4.308,0.205-5.683-1.104c-0.185-0.176-0.364-0.368-0.558-0.57c-0.627-0.659-1.334-1.405-2.301-1.709
+ c-1.347-0.427-2.814,0.161-3.671,0.928c-0.735,0.661-1.07,1.479-0.969,2.361c0.159,1.401,1.395,2.667,2.545,3.305
+ c3.47,1.917,8.33,2.054,14.451,0.416c3.881-1.036,8.297-4.134,8.815-8.484c0.578-4.775-4.066-5.914-7.461-6.744
+ c-0.476-0.117-0.923-0.225-1.346-0.339c-1.201-0.327-3.317-1.071-3.959-2.365c-0.252-0.51-0.25-1.06,0.008-1.683
+ c0.848-2.061,3.841-2.931,5.852-2.302c0.743,0.23,1.438,0.76,2.173,1.318c1.413,1.071,3.013,2.287,5.056,1.076
+ C373.666,181.157,374.587,179.784,374.069,178.561z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M347.107,185.276c0.838-2.559,2.233-6.842-0.644-8.913l-0.273,0.378l0.273-0.381
+ c-2.172-1.555-5.265-1.475-7.4-1.277c-1.379,0.127-2.694,0.396-3.9,0.8l-0.27,0.09c-1.246,0.419-2.42,0.814-3.707,0.793
+ c-0.68-0.012-1.313-0.315-1.98-0.64c-0.314-0.151-0.638-0.307-0.976-0.434c-1.359-0.522-2.783-0.835-4.225-0.938
+ c-1.434-0.099-2.77,0.006-3.973,0.318c-0.513,0.132-1.015,0.305-1.498,0.473c-0.822,0.285-1.597,0.554-2.424,0.631
+ c-0.888,0.085-1.829-0.053-2.821-0.205c-1.745-0.26-3.555-0.532-5.178,0.471c-2.08,1.279-2.789,3.631-3.419,5.706
+ c-0.123,0.414-0.243,0.806-0.373,1.189l-0.715,2.152l-2.154,6.479c0,0-0.567,1.636-0.567,1.636
+ c-0.486,1.382-0.987,2.81-1.335,4.26c-0.215,0.915-0.79,3.34,0.968,4.18c1.994,0.954,4.081-0.618,5.264-2.601
+ c0.522-0.872,0.831-1.827,1.131-2.751l0.138-0.413l1.44-4.322c0.176-0.522,0.349-1.061,0.512-1.583
+ c0.571-1.813,1.164-3.685,2.087-5.318c1.573-2.787,5.328-4.991,8.656-3.695c1.48,0.577,2.222,2.113,1.892,3.915
+ c-0.164,0.891-0.488,1.788-0.8,2.656c-0.126,0.348-0.257,0.709-0.375,1.065c0-0.001-1.401,4.227-1.401,4.227l-0.218,0.664
+ c-0.337,1.037-0.683,2.111-0.997,3.175c0,0.002-0.031,0.111-0.031,0.111c-0.346,1.185-0.822,2.807-0.093,4.093
+ c0.318,0.563,0.837,0.931,1.492,1.067c1.182,0.243,2.59-0.309,3.4-0.923c1.763-1.337,2.485-3.735,3.065-5.657l0.122-0.4
+ c0.462-1.524,0.964-3.063,1.45-4.552l1.061-3.292c0.638-2.021,1.592-4.279,3.836-5.688c1.438-0.904,3.823-1.608,5.817-0.617
+ c2.174,1.083,1.719,3.6,0.988,5.918c-0.732,2.33-1.563,4.969-2.454,7.511c-0.734,2.092-1.383,4.896-0.317,6.393
+ c0.471,0.662,1.208,0.995,2.189,0.99c3.044-0.005,4.46-3.898,5.145-5.767c0.883-2.428,1.67-4.931,2.436-7.353l1.134-3.557
+ L347.107,185.276z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M303.573,170.912L303.573,170.912c0.318-0.958,0.758-2.27,0.384-3.487
+ c-0.366-1.18-1.568-1.734-3.222-1.482c-1.99,0.3-3.494,1.76-4.475,4.338c-1.388,3.639-2.576,7.433-3.73,11.1l-1.695,5.323
+ c0,0.003-2.808,8.527-2.808,8.527c-0.082,0.258-0.195,0.556-0.312,0.873c-0.595,1.588-1.414,3.764-0.416,5.264
+ c0.348,0.525,0.886,0.857,1.557,0.962c1.188,0.187,2.64-0.379,3.459-1.033c1.376-1.093,2.119-2.739,2.668-4.206
+ c0.347-0.936,0.632-1.902,0.905-2.835l0.382-1.281c0.491-1.585,1.033-3.189,1.559-4.74l0.738-2.202l3.164-9.55L303.573,170.912
+ z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M277.81,180.669c0.863-0.629,1.755-1.276,2.476-2.125l-0.358-0.301l0.358,0.3
+ c0.911-1.073,0.336-2.331-0.084-3.25c-0.059-0.129-0.115-0.256-0.167-0.375c-0.488-1.143-0.618-2.146-0.382-2.98
+ c0.305-1.075,1.21-1.617,2.17-2.19c0.991-0.592,2.014-1.204,2.471-2.429c0.338-0.916,0.052-1.52-0.249-1.865
+ c-1.092-1.256-4.009-1.08-4.948-0.874c-2.221,0.493-4.303,1.802-6.188,3.895c-0.698,0.775-1.31,1.65-1.905,2.496
+ c-0.859,1.22-1.747,2.484-2.875,3.413c-0.188,0.155-0.389,0.304-0.603,0.463c-0.722,0.538-1.54,1.147-1.945,2.065
+ c-0.516,1.162-0.032,2.259,0.392,3.227c0.098,0.223,0.19,0.435,0.269,0.639c0.667,1.755,0.507,3.067-0.026,4.873
+ c-0.423,1.43-0.904,2.874-1.368,4.27l-0.203,0.608c-0.263,0.805-0.563,1.617-0.846,2.402c-0.333,0.902-0.674,1.833-0.972,2.765
+ l-0.055,0.166c-0.501,1.555-1.433,4.441,0.079,5.865c0.47,0.443,1.09,0.663,1.785,0.636c1.309-0.053,2.718-0.966,3.472-1.796
+ c1.068-1.176,1.72-2.629,2.265-4.023c0.805-2.062,1.455-4.212,2.085-6.292c0.416-1.375,0.849-2.802,1.316-4.182
+ c0.465-1.36,0.929-2.575,1.902-3.63C276.292,181.769,277.03,181.235,277.81,180.669z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M288.105,181.76c0.083-0.25,0.202-0.528,0.324-0.823
+ c0.411-0.992,0.877-2.119,0.693-3.14h0.001c-0.124-0.724-0.484-1.281-1.042-1.606c-1.065-0.62-2.455-0.224-3.004-0.026
+ c-1.848,0.672-3.002,1.91-3.743,4.016l-1.5,4.156l-1.475,4.076l-0.869,2.563c-0.484,1.436-0.979,2.921-1.53,4.354l-0.11,0.288
+ c-0.532,1.372-1.197,3.081-0.886,4.665c0.171,0.868,0.702,1.497,1.497,1.766c1.273,0.432,2.955-0.13,3.851-0.918
+ c1.775-1.576,2.488-3.801,3.173-5.956c0.14-0.436,0.285-0.886,0.436-1.32l1.614-4.665l1.284-3.709L288.105,181.76z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M287.126,170.453l-0.06-0.033c0.801,0.536,1.919,0.518,3.075-0.053
+ c1.077-0.531,2.196-1.592,2.273-2.767c0.03-0.476-0.102-1.155-0.915-1.695c-1.119-0.745-2.646-0.381-3.702,0.207
+ c-1.235,0.688-2.013,1.726-1.981,2.654C285.834,169.261,286.073,169.956,287.126,170.453z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M263.784,171.393c-0.5-2.365-2.247-4.543-4.795-5.978v0.001
+ c-3.849-2.169-9.13-2.466-14.868-0.841c-4.233,1.202-8.194,3.629-11.456,7.019c-3.144,3.269-5.534,7.291-6.912,11.633
+ c-1.854,5.821-1.277,11.148,1.578,14.613c3.38,4.106,9.147,4.468,12.279,4.322c5.15-0.246,10.108-2.085,14.349-5.318
+ c1.531-1.168,4.385-3.341,4.204-5.813c-0.037-0.514-0.276-0.958-0.692-1.279c-0.674-0.522-1.683-0.627-2.386-0.502
+ c-1.226,0.227-2.24,1.058-3.138,1.79l-0.449,0.362c-1.908,1.507-3.986,3.035-6.548,3.733c-2.5,0.678-5.005,0.737-7.057,0.17
+ c-5.951-1.649-4.499-9.141-3.911-11.397c1.328-5.108,4.568-9.584,8.658-11.978c3.939-2.302,10.393-2.634,13.36,0.57
+ c0.397,0.433,0.725,1.006,1.04,1.56c0.81,1.421,1.727,3.034,4.082,2.331C263.346,175.725,264.317,173.904,263.784,171.393z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M218.376,165.557c-3.85-2.166-9.13-2.463-14.866-0.837
+ c-8.435,2.393-15.473,9.535-18.37,18.648c-1.854,5.823-1.276,11.152,1.58,14.616c3.381,4.105,9.145,4.468,12.277,4.32
+ c5.189-0.244,10.181-2.105,14.439-5.385c3.166-2.436,7.522-6.221,8.751-10.965c0.56-2.147,0.171-3.742-1.091-4.484
+ c-0.788-0.464-1.762-0.532-2.617-0.594c-0.191-0.013-0.373-0.026-0.547-0.044c-1.563-0.15-2.854-0.183-4.066-0.103
+ c-3.681,0.245-5.999,1.249-6.891,2.989c-1.021,2.007,0.73,3.055,2.009,3.818c0.6,0.359,1.222,0.73,1.529,1.137
+ c0.83,1.084-0.178,2.822-1.055,3.723c-1.199,1.227-2.729,2.139-4.538,2.711c-1.364,0.431-6.073,1.677-9.396-0.416
+ c-3.129-1.971-2.963-6.216-2.586-8.572c0.588-3.669,2.018-6.985,4.144-9.583l-0.363-0.296l0.363,0.295
+ c1.919-2.348,3.799-3.947,5.751-4.891c2.163-1.048,4.733-1.465,7.433-1.205c1.816,0.175,4.261,0.805,5.594,2.798
+ c0.215,0.317,0.393,0.659,0.583,1.02c0.336,0.633,0.683,1.288,1.229,1.834c1.149,1.147,2.866,0.466,3.6,0.174
+ c2.104-0.838,2.382-3.322,1.723-5.41C222.328,168.742,220.688,166.86,218.376,165.557z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M374.069,178.561c-0.518-1.209-1.943-1.804-2.892-2.197l0,0
+ c-5.054-2.121-10.609-1.918-15.247,0.558c-2.162,1.159-3.67,2.625-4.479,4.36c-1.121,2.403-0.544,4.625,1.627,6.257
+ c1.782,1.344,3.916,1.957,5.948,2.472c2.727,0.688,4.185,1.78,4.465,3.334c0.336,1.868-2.13,3.869-3.915,4.377
+ c-2.181,0.618-4.308,0.205-5.683-1.104c-0.185-0.176-0.364-0.368-0.558-0.57c-0.627-0.659-1.334-1.405-2.301-1.709
+ c-1.347-0.427-2.814,0.161-3.671,0.928c-0.735,0.661-1.07,1.479-0.969,2.361c0.159,1.401,1.395,2.667,2.545,3.305
+ c3.47,1.917,8.33,2.054,14.451,0.416c3.881-1.036,8.297-4.134,8.815-8.484c0.578-4.775-4.066-5.914-7.461-6.744
+ c-0.476-0.117-0.923-0.225-1.346-0.339c-1.201-0.327-3.317-1.071-3.959-2.365c-0.252-0.51-0.25-1.06,0.008-1.683
+ c0.848-2.061,3.841-2.931,5.852-2.302c0.743,0.23,1.438,0.76,2.173,1.318c1.413,1.071,3.013,2.287,5.056,1.076
+ C373.666,181.157,374.587,179.784,374.069,178.561z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M347.107,185.276c0.838-2.559,2.233-6.842-0.644-8.913v-0.003
+ c-2.172-1.555-5.265-1.475-7.4-1.277c-1.379,0.127-2.694,0.396-3.9,0.8l-0.27,0.09c-1.246,0.419-2.42,0.814-3.707,0.793
+ c-0.68-0.012-1.313-0.315-1.98-0.64c-0.314-0.151-0.638-0.307-0.976-0.434c-1.359-0.522-2.783-0.835-4.225-0.938
+ c-1.434-0.099-2.77,0.006-3.973,0.318c-0.513,0.132-1.015,0.305-1.498,0.473c-0.822,0.285-1.597,0.554-2.424,0.631
+ c-0.888,0.085-1.829-0.053-2.821-0.205c-1.745-0.26-3.555-0.532-5.178,0.471c-2.08,1.279-2.789,3.631-3.419,5.706
+ c-0.123,0.414-0.243,0.806-0.373,1.189l-0.715,2.152l-2.154,6.479c0,0-0.567,1.636-0.567,1.636
+ c-0.486,1.382-0.987,2.81-1.335,4.26c-0.215,0.915-0.79,3.34,0.968,4.18c1.994,0.954,4.081-0.618,5.264-2.601
+ c0.522-0.872,0.831-1.827,1.131-2.751l0.138-0.413l1.44-4.322c0.176-0.522,0.349-1.061,0.512-1.583
+ c0.571-1.813,1.164-3.685,2.087-5.318c1.573-2.787,5.328-4.991,8.656-3.695c1.48,0.577,2.222,2.113,1.892,3.915
+ c-0.164,0.891-0.488,1.788-0.8,2.656c-0.126,0.348-0.257,0.709-0.375,1.065c0-0.001-1.401,4.227-1.401,4.227l-0.218,0.664
+ c-0.337,1.037-0.683,2.111-0.997,3.175c0,0.002-0.031,0.111-0.031,0.111c-0.346,1.185-0.822,2.807-0.093,4.093
+ c0.318,0.563,0.837,0.931,1.492,1.067c1.182,0.243,2.59-0.309,3.4-0.923c1.763-1.337,2.485-3.735,3.065-5.657l0.122-0.4
+ c0.462-1.524,0.964-3.063,1.45-4.552l1.061-3.292c0.638-2.021,1.592-4.279,3.836-5.688c1.438-0.904,3.823-1.608,5.817-0.617
+ c2.174,1.083,1.719,3.6,0.988,5.918c-0.732,2.33-1.563,4.969-2.454,7.511c-0.734,2.092-1.383,4.896-0.317,6.393
+ c0.471,0.662,1.208,0.995,2.189,0.99c3.044-0.005,4.46-3.898,5.145-5.767c0.883-2.428,1.67-4.931,2.436-7.353l1.134-3.557
+ L347.107,185.276z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M303.573,170.912L303.573,170.912c0.318-0.958,0.758-2.27,0.384-3.487
+ c-0.366-1.18-1.568-1.734-3.222-1.482c-1.99,0.3-3.494,1.76-4.475,4.338c-1.388,3.639-2.576,7.433-3.73,11.1l-1.695,5.323
+ c0,0.003-2.808,8.527-2.808,8.527c-0.082,0.258-0.195,0.556-0.312,0.873c-0.595,1.588-1.414,3.764-0.416,5.264
+ c0.348,0.525,0.886,0.857,1.557,0.962c1.188,0.187,2.64-0.379,3.459-1.033c1.376-1.093,2.119-2.739,2.668-4.206
+ c0.347-0.936,0.632-1.902,0.905-2.835l0.382-1.281c0.491-1.585,1.033-3.189,1.559-4.74l0.738-2.202l3.164-9.55L303.573,170.912
+ z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M277.81,180.669c0.863-0.629,1.755-1.276,2.476-2.125v-0.001
+ c0.911-1.073,0.336-2.331-0.084-3.25c-0.059-0.129-0.115-0.256-0.167-0.375c-0.488-1.143-0.618-2.146-0.382-2.98
+ c0.305-1.075,1.21-1.617,2.17-2.19c0.991-0.592,2.014-1.204,2.471-2.429c0.338-0.916,0.052-1.52-0.249-1.865
+ c-1.092-1.256-4.009-1.08-4.948-0.874c-2.221,0.493-4.303,1.802-6.188,3.895c-0.698,0.775-1.31,1.65-1.905,2.496
+ c-0.859,1.22-1.747,2.484-2.875,3.413c-0.188,0.155-0.389,0.304-0.603,0.463c-0.722,0.538-1.54,1.147-1.945,2.065
+ c-0.516,1.162-0.032,2.259,0.392,3.227c0.098,0.223,0.19,0.435,0.269,0.639c0.667,1.755,0.507,3.067-0.026,4.873
+ c-0.423,1.43-0.904,2.874-1.368,4.27l-0.203,0.608c-0.263,0.805-0.563,1.617-0.846,2.402c-0.333,0.902-0.674,1.833-0.972,2.765
+ l-0.055,0.166c-0.501,1.555-1.433,4.441,0.079,5.865c0.47,0.443,1.09,0.663,1.785,0.636c1.309-0.053,2.718-0.966,3.472-1.796
+ c1.068-1.176,1.72-2.629,2.265-4.023c0.805-2.062,1.455-4.212,2.085-6.292c0.416-1.375,0.849-2.802,1.316-4.182
+ c0.465-1.36,0.929-2.575,1.902-3.63C276.292,181.769,277.03,181.235,277.81,180.669z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M288.105,181.76c0.083-0.25,0.202-0.528,0.324-0.823
+ c0.411-0.992,0.877-2.119,0.693-3.14h0.001c-0.124-0.724-0.484-1.281-1.042-1.606c-1.065-0.62-2.455-0.224-3.004-0.026
+ c-1.848,0.672-3.002,1.91-3.743,4.016l-1.5,4.156l-1.475,4.076l-0.869,2.563c-0.484,1.436-0.979,2.921-1.53,4.354l-0.11,0.288
+ c-0.532,1.372-1.197,3.081-0.886,4.665c0.171,0.868,0.702,1.497,1.497,1.766c1.273,0.432,2.955-0.13,3.851-0.918
+ c1.775-1.576,2.488-3.801,3.173-5.956c0.14-0.436,0.285-0.886,0.436-1.32l1.614-4.665l1.284-3.709L288.105,181.76z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M287.126,170.453l-0.06-0.033c0.801,0.536,1.919,0.518,3.075-0.053
+ c1.077-0.531,2.196-1.592,2.273-2.767c0.03-0.476-0.102-1.155-0.915-1.695c-1.119-0.745-2.646-0.381-3.702,0.207
+ c-1.235,0.688-2.013,1.726-1.981,2.654C285.834,169.261,286.073,169.956,287.126,170.453z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M263.784,171.393c-0.5-2.365-2.247-4.543-4.795-5.978v0.001
+ c-3.849-2.169-9.13-2.466-14.868-0.841c-4.233,1.202-8.194,3.629-11.456,7.019c-3.144,3.269-5.534,7.291-6.912,11.633
+ c-1.854,5.821-1.277,11.148,1.578,14.613c3.38,4.106,9.147,4.468,12.279,4.322c5.15-0.246,10.108-2.085,14.349-5.318
+ c1.531-1.168,4.385-3.341,4.204-5.813c-0.037-0.514-0.276-0.958-0.692-1.279c-0.674-0.522-1.683-0.627-2.386-0.502
+ c-1.226,0.227-2.24,1.058-3.138,1.79l-0.449,0.362c-1.908,1.507-3.986,3.035-6.548,3.733c-2.5,0.678-5.005,0.737-7.057,0.17
+ c-5.951-1.649-4.499-9.141-3.911-11.397c1.328-5.108,4.568-9.584,8.658-11.978c3.939-2.302,10.393-2.634,13.36,0.57
+ c0.397,0.433,0.725,1.006,1.04,1.56c0.81,1.421,1.727,3.034,4.082,2.331C263.346,175.725,264.317,173.904,263.784,171.393z"/>
+ <path i:knockout="Off" fill="#1C86EE" d="M218.376,165.557c-3.85-2.166-9.13-2.463-14.866-0.837
+ c-8.435,2.393-15.473,9.535-18.37,18.648c-1.854,5.823-1.276,11.152,1.58,14.616c3.381,4.105,9.145,4.468,12.277,4.32
+ c5.189-0.244,10.181-2.105,14.439-5.385c3.166-2.436,7.522-6.221,8.751-10.965c0.56-2.147,0.171-3.742-1.091-4.484
+ c-0.788-0.464-1.762-0.532-2.617-0.594c-0.191-0.013-0.373-0.026-0.547-0.044c-1.563-0.15-2.854-0.183-4.066-0.103
+ c-3.681,0.245-5.999,1.249-6.891,2.989c-1.021,2.007,0.73,3.055,2.009,3.818c0.6,0.359,1.222,0.73,1.529,1.137
+ c0.83,1.084-0.178,2.822-1.055,3.723c-1.199,1.227-2.729,2.139-4.538,2.711c-1.364,0.431-6.073,1.677-9.396-0.416
+ c-3.129-1.971-2.963-6.216-2.586-8.572c0.588-3.669,2.018-6.985,4.144-9.583l-0.363-0.296l0.363,0.295
+ c1.919-2.348,3.799-3.947,5.751-4.891c2.163-1.048,4.733-1.465,7.433-1.205c1.816,0.175,4.261,0.805,5.594,2.798
+ c0.215,0.317,0.393,0.659,0.583,1.02c0.336,0.633,0.683,1.288,1.229,1.834c1.149,1.147,2.866,0.466,3.6,0.174
+ c2.104-0.838,2.382-3.322,1.723-5.41C222.328,168.742,220.688,166.86,218.376,165.557z"/>
+
+ <linearGradient id="XMLID_159_" gradientUnits="userSpaceOnUse" x1="365.386" y1="171.939" x2="344.2614" y2="240.946" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_159_)" d="M359.018,181.556c0.949-2.313,4.176-3.272,6.421-2.571
+ c2.354,0.732,4.128,4.052,6.852,2.441c0.854-0.505,1.794-1.634,1.348-2.683c-0.435-1.008-1.702-1.561-2.639-1.948
+ c-4.786-2.01-10.259-1.912-14.848,0.538c-1.771,0.949-3.412,2.29-4.278,4.146c-1.052,2.253-0.464,4.222,1.485,5.688
+ c1.706,1.285,3.739,1.875,5.782,2.392c0.822,0.207,1.726,0.503,2.54,0.938c3.183-0.361,6.069-0.898,8.662-1.623
+ c-1.773-1.543-4.819-2.036-7.065-2.646C361.214,185.67,357.886,184.306,359.018,181.556z"/>
+
+ <linearGradient id="XMLID_160_" gradientUnits="userSpaceOnUse" x1="332.6799" y1="161.3398" x2="311.5294" y2="230.4315" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_160_)" d="M346.19,176.741c-1.972-1.413-4.771-1.407-7.085-1.193
+ c-1.288,0.118-2.566,0.37-3.795,0.779c-1.364,0.456-2.669,0.93-4.135,0.906c-1.128-0.019-2.087-0.716-3.11-1.104
+ c-1.31-0.502-2.694-0.809-4.093-0.907c-1.272-0.089-2.581-0.018-3.821,0.303c-1.347,0.347-2.599,0.985-3.993,1.119
+ c-2.551,0.244-5.455-1.25-7.801,0.198c-2.307,1.42-2.799,4.262-3.594,6.646c-0.255,0.77-0.51,1.536-0.763,2.305
+ c1.946,0.332,3.863,0.65,5.77,0.95c0.271-0.656,0.565-1.295,0.911-1.911c1.718-3.05,5.729-5.265,9.233-3.901
+ c1.829,0.714,2.521,2.577,2.179,4.434c-0.189,1.035-0.569,2.04-0.929,3.039c2.079,0.272,4.121,0.521,6.127,0.747
+ c0.193-0.593,0.389-1.183,0.576-1.776c0.755-2.402,1.832-4.563,4.029-5.943c1.803-1.132,4.296-1.623,6.274-0.638
+ c2.585,1.285,1.929,4.247,1.227,6.475c-0.306,0.971-0.612,1.938-0.925,2.902c2.224,0.15,4.383,0.266,6.479,0.339
+ c0.567-1.771,1.115-3.544,1.691-5.308C347.444,182.748,348.816,178.631,346.19,176.741z"/>
+
+ <linearGradient id="XMLID_161_" gradientUnits="userSpaceOnUse" x1="305.2522" y1="152.4683" x2="283.8183" y2="222.4857" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_161_)" d="M303.511,167.562c-0.36-1.168-1.658-1.318-2.708-1.16
+ c-2.174,0.331-3.378,2.125-4.105,4.043c-1.647,4.329-3.001,8.8-4.402,13.228c2.078,0.396,4.143,0.781,6.18,1.15
+ c1.551-4.686,3.104-9.371,4.657-14.06C303.464,169.768,303.835,168.61,303.511,167.562z"/>
+
+ <linearGradient id="XMLID_162_" gradientUnits="userSpaceOnUse" x1="282.7883" y1="146.2827" x2="261.7765" y2="214.9215" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_162_)" d="M279.927,178.243c0.826-0.975,0.095-2.17-0.32-3.141
+ c-0.439-1.024-0.714-2.195-0.402-3.291c0.683-2.417,3.825-2.43,4.651-4.655c0.899-2.427-3.341-2.408-4.659-2.118
+ c-2.379,0.526-4.335,1.965-5.941,3.75c-1.693,1.88-2.862,4.337-4.831,5.957c-0.851,0.697-1.952,1.309-2.418,2.357
+ c-0.159,0.36-0.194,0.717-0.163,1.073c3.784,0.841,7.536,1.658,11.248,2.442C278.087,179.879,279.129,179.187,279.927,178.243z
+ "/>
+
+ <linearGradient id="XMLID_163_" gradientUnits="userSpaceOnUse" x1="294.2581" y1="149.7964" x2="273.247" y2="218.4326" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_163_)" d="M288.667,177.878c-0.3-1.753-2.064-1.77-3.43-1.273
+ c-1.848,0.669-2.814,1.892-3.462,3.73c-0.136,0.391-0.282,0.781-0.419,1.171c1.991,0.41,3.965,0.805,5.93,1.195
+ c0.127-0.365,0.251-0.729,0.375-1.092C288.038,180.528,288.873,179.048,288.667,177.878z"/>
+
+ <linearGradient id="XMLID_164_" gradientUnits="userSpaceOnUse" x1="294.8293" y1="149.333" x2="273.1385" y2="220.19" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_164_)" d="M291.243,166.296c-2.219-1.479-7.096,2.231-3.918,3.736
+ C289.356,171.395,293.643,167.891,291.243,166.296z"/>
+
+ <linearGradient id="XMLID_165_" gradientUnits="userSpaceOnUse" x1="257.8372" y1="137.8828" x2="236.4768" y2="207.6601" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_165_)" d="M242.406,171.526c3.845-2.247,10.615-2.931,13.935,0.658
+ c1.487,1.604,1.817,4.604,4.648,3.759c2.125-0.636,2.779-2.368,2.34-4.456c-0.527-2.486-2.408-4.449-4.566-5.666
+ c-4.369-2.46-9.845-2.12-14.514-0.796c-4.294,1.217-8.162,3.684-11.25,6.893c-1.124,1.173-2.15,2.446-3.067,3.792
+ c2.661-0.205,5.331-0.341,8.002-0.394C239.215,173.815,240.714,172.516,242.406,171.526z"/>
+
+ <linearGradient id="XMLID_166_" gradientUnits="userSpaceOnUse" x1="220.092" y1="126.3511" x2="198.8581" y2="195.7153" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
+ <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
+ <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path i:knockout="Off" fill="url(#XMLID_166_)" d="M202.628,171.224c2.365-1.145,5.081-1.499,7.681-1.248
+ c2.254,0.217,4.628,1.04,5.939,3.001c0.608,0.912,0.968,1.997,1.755,2.782c0.843,0.846,2.133,0.456,3.095,0.073
+ c1.95-0.775,1.994-3.115,1.453-4.837c-0.691-2.197-2.432-3.919-4.403-5.03c-4.367-2.459-9.84-2.12-14.513-0.797
+ c-8.675,2.462-15.359,9.874-18.052,18.339c-0.124,0.4-0.238,0.807-0.346,1.218c2.617-0.811,5.346-1.61,8.161-2.383
+ c0.751-2.209,1.853-4.303,3.32-6.103C198.358,174.236,200.281,172.357,202.628,171.224z"/>
+ </g>
+ </g>
+ </g>
+ </g>
+</switch>
+<i:pgf id="adobe_illustrator_pgf">
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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 +b/8OXgZOVY5v5At7bPf/+vB9By/dvfr5Rx//5L9VD8XD57xv93H5zx/+9Dv458fX8Nzfbvmtf/Zw +f//hw/++/92HX36RvV99/Q4eLL6qehn9wh/n/1r95ofPfhF91d99v/kk+apN8fv3f5J61Wf3/+f9 +n/+zehn3helVf7V596f/dHf9WexVH376f5pN6lU/+egf25tfe6+KL4MvXL37m59/+PyLz2Ovev/q +3z5453/87Jc/+bfYq2b77O9/mXjV5qd/1334Xa8v6MjbrX77r9n+m80/Rt/r/7u/++BnX1x9/lX0 +VT/+6e1n3qvyfYMv/N//4bPq89RJ/qf/n7337IpbidKFv89a/AfAgdiNSlk4k22wjQM2OIAxxtnG +Jtw78+X97e9+nl1Sq9WSWh3OPXfdmQk+dEmquGvncP7uxH2EUed6dnhz+rV3I7ickc/8s55zXb4O +ELAD787MFI7Wfxlt/uSocqs+rneP+v78/auPzytGXT4K9j59WeqMKsPkBj5svXxSOWq09PnFTPmo +t6fmzi+WFy7KR92NDjGMBeOe5V7M3D0wFaMGX+dmVk43y0f1594v3L71K7dWDJM/2uPg2t/w6nHZ +qM7G9rOVilHDazeCOLhXMerBEQB64+zly9LlTm9ev3Nz5/TrXumom8/iV1U7vHWzNdX+qqOuv/ux +AUjLb/L03MXM/UVu8nzPqFtHv4K/838cGTX6Uxx15+GT93bUg9ZsYa0yTBS02286A3ct982Ks/Pr +WVQ+6sPpq3jn4CQuHfXpz9Otzqg4m+6Bt9t//yxWjPp2wXmx8/eqfNRt73BnY+PeVNmoOJuXD789 +rFzui8fhyw9Vo645r5zDpHzUnda1l5+O5m9xVBmmuNxXh3cuKkd9NXt69Kdq1MfO69a9lbJRZRgZ +eH3h9f34fLV0k98svjysHPX79MudlYpR34XO++MPCxyVkFZY7pO9bz+WbzxZLB318HD/qHLUs9N7 +s1/KRpVhMPBj58P6zlr5Jm/smen9y2cPy0Y9P3/SumZH/ejNFS7PQjK/7nFUGcYcT19udmOo5fMr +b9XBqIs9oz69M/v3cH3/vox657ww6sLy2cGiHfVHMt8ZFRgaA9/4/HZaybu7cmAeduOK5876k7eb +GLXVS2WftK7/9m7tyqirl8UdXl//3uaoPJvZ9cUCXpz5tGAxlHd9eXW7Gy+eLtyJn7zFqEu9o4Y3 +pu8cbG3JqI+mOqNiGLJZ7srTr7rce8vP2oVN/n52Z/2Hjnpvb2ene4flcL9/PSOVFc5qdzX/1L38 +NeUu//6Yshy9L1zdnPI+/fpT/tSfk8tzNzitenouEPH4W+dpAXX6b+44O/c9ly/0YvQ395yd5/f8 +qqcPnJ1P22HZUwXoN6vO46nXcdXn687Tk4fPq54eOS9Wf1xWPH276Lx4dW0q3bSSF9rOy/uPZ6ue +Bs7e1N92+dPbU8751VRkn5bQG//tlvNqb+qOvlC8UP7bR86rL617VU93nNfXkwdlT3XT3j5xXofr +q1Wf7zpvrkXvq55+d97vv5mvePouct5//7yYbVrvC4lzuHfLq3p63zkKj5KKp0fnpj2/HXSeFjft +eNYkH9zHFZ9/vGZWbh5uVD19YbafTT+q3rSTM/Pkh/ut4vNPc+bg+/bN8qfB4e+Xt25fvil/6l7s +Ts3MPXqSbpo7c3d2q/uFB1Ptrft39WkRz7mXP6du+4++556utuaf50Ww2U8vF1bOLp5kyEZlNH/x +OXDQigDg6UqZAGpFzHvmxv2ly5nVjZf3ooO1NxsHL9ferN9uS5uzsbrSPlldXVnaXg==
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ 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
+ ]]>
+ <![CDATA[
+ yjXWLYapxYfOQHUP1TO5qcKeXXlXBvNNYDZ5R00IA00Qg6Ma8cpbMm1iwy/DynDvT39anZ7ghUgR +qUK8uc3P23DPN8+Agw0l9prJ9dA3EH2CBO1Oy6BIF2BKyNaN0ZQncyLrce5wtCcb2pdKlOThg+gX +e5TOsDdTm6FWP1qlSfhzQKpTGMlkKruUMKjlS0uDc7o1C5uVLyRL6alYDK/9Ksuwmkb9icLHRXXk +on5ypchyUYm5rNVclnMuCz6fFoSuFY0uKktPS0/XylNXSlhPKlyPamC+4kmd7KKS9qTcdhTpntbk +nlbtLkt7T+t/FxXCq2XEp7XGi2rklULOZbXnoh50tWjUjd4ydRvaEfFrGUqOrNLEXg6KsIO/Ey1g +2jUAak3mmUH75fOk6E2EAGhEZ0x42Oco/iWpAUv3RUk0sLluYBI7zZKfZjstDgZeiA7oY1eHFcIY +elxmyMfUNSo88JtO4i0CxmTbJogHmYZbsqRBkjPrPnd0b3bgQSsKFgzDhk4b+9T9mK5A9dhNPHMC +DhtqB+sgh1RgqVF3sg6baD93AvJBybdFMiJsPPuZOV6GVWBkVWBNWrUuFmV6nYASve41iWkIbeVe +5+XSFTJg7AgaSSUweeuZ6L7qiqdyqnr7Xd+ff9d72jiwZtFwbucID/7C71Mq/+6Psts750Zb6Nmm +yNy/+IcvKq3FkUzNQUIuU/MccTD+GuQH5Tfi0IQ31qZhvSh13ib32kAmfEAs7slrX/MawwEZv7OC +I2KfYbuTGg8oENqXotjMDN5NnRkR0VfAB1SmqKtAaiF1BKoocBfHqqJEwuP2aIHrCp6NeZX4HrfM +C9Iw1rBU5s15j+EO1o6AdZraOK8xuvKBPOinzQ1NW4TjjXKUfNrstsqb6UBjg6J3+DeCKGZwh9Br +0XOIxWr9rIHAjHoHk5Tg06NUkZiPD8bFyjtJ8wGeSdINvRPT4xWS+NaAWnDDpJYWiY2YFAPcM7Nw +u3mkfNzBYHg/3B0/q1QKhKDqRyF6YzS+WC0JtiQ5bVazceSNLOeWB7iYGIIlBNEt7zZaE4sN9cQK +WR4iNZkQCYW5anUtLhodIa2CZ2PorQKJZZQ0bLaBAvYnL+iiowbO2l6lij5xPfQP/GkmfcBAMCat +EU4KH9B9jL6vSVKyFUgj27b5AJ9whYjmroeSwfY2oadsS3TPFLk4BOTZ2HaZ+0ENMJpS2lGDgEWD +f6uCU0+o9JYlGAgTmS24gkD5qdTJqTaCv1Wyz8NpzoFtmyQbLREsHtpJwaYgxTGmVa56v2egsSoy +Ck4WKrhsJKmlU1kb1W5Ft6oY5ybC7HoBvVrok8peM2VSCePTomETHkQ6gCG1zSd2uWItDnCX80pY +9fRtDlY42xoqqLzQUXiV2CN0a52e29qwgDSqob25WxoPIWxjugtiugIXsrIm4LAj2BbmN7qb1KD0 +0XhpRS4QViaoXfTeGvO+8G3PllU12FN7P1tVZQdqSJhImQzhB3ttFpp6sIKCA6rdBiWou1MTZSML +ZvnYdWqobZp/pdr2tb328Hvrvuk1ig0qhMfJTSn+JHiBViJHixQfiEAB5XCXirOOASBnrDJSxKcI +QQCNqsVaaWkFsV/0j0TGQueSiBr3x9sXJMGbPmaDMTSWYIxafG70GmJ25nZeyG5P9GmChWqaFY+c +yUSNkCwUeHXJoFTgj7tgvuxqvX3wt8c30FjRyZF8hyADCx0QJRUIALRKcvS6EJLk9UvZCUCIkjHL +nSBkMcP5qmCpx3otax9JvrDqlEoZKBY8ZdlSjpksYI7wkEZ7/w6JIy8EJsxp8JL8RZKHLM5kji1z +mRCbSNkCRu516exvlJq4dFhCeEEF3CwuYTvaUrZIjlgMYkRGSRPhqm7YeoCM/YP03g+LRcS6GKIG +aRrnQ7fKkvIoTgVqF9H+yjqMzbfgyqXxwRnEqccBAD9e8vHJyAmxvrsTfYNV0HhNDkDhedPvmDOp +5gx4AVgz5iw9A3YYyMgg8iqDqLHDAgc7T5fitRtCgGqCc6JYL91fE6c3IGqIUNf/kJAVSE7gueDE +DhCzZz8VA6YoyeMIUDpCVE9UgloHrSP+qpiWq3Irsx5Y5MhPCQvIFXWtk2kWCIDQaKWkDrwHEF3y +7ctnJTCgM4ShEgjwVHWi8VYoG3A0cWqH4jekWk2WUxr2OC5U7MlDpb8Ag7S/1qhVQXMFs2lUXbAp +HIm0tlDWIeNK0R9Ptw0ONzR9uHXAv1O1S/VDIg6J0jSb13NHyeCynpV4t9hASYP22glE/Wx4BC3x +v22F/7YIQvLcLBfmyBDUa/0jZxEdCqmJlWFO00Z0ea300I0/e9oiS2oJVQmoJBOun6UNrkXjndP+ +rXjAbLR2owwSRT/BYiOM0wThB7PYoI3v3J3cS50dollZt24dV/6aoMOahicW4sypQw9LCOiovZ+N +qiSbGO6nr+kzU5NI1SiL1m36v+yXhLzmJnDeyf6J2AdYavvLXVyi6IMarT9vH/K6MlAHHfA3HxBM +SjW6WC5M7rfSQAtz355MWIieEsEC93SwJesOoMQ1vUyjiSbRfXUCa3qHrSciHjXQumiXBHDghUYt +HzqcYqMZvOafYx0P2fYoDV0mDqONfvFzp1xOlynIcMHQaMdCZP/BXL7UwAnPIW752l6bSFtuH8FR +IVwOVYlWm44g2yqP4oKCE4Dl1up9nG8T8ig2LFTdHIlTgnKYvu1BoQiYBam2rQrhH5So2cogkSYn +FRc6kT370dosKhMmFs1lzRYNXeYMOpCLmCLFEuZuCKiAbkW04E/HL3rHbFhtM9GBk83rY/uqYuAG +xpyVJOy3qpJHj/qAmcNP+mtWFyNAkFqz2p1sTupHZEmgSoVJZHg32qS+Bvk+WpiRZ1dcrz5NpMgk +VqLG0096YcpPu8LrBwt9yHDh66Bq9/WVCOnrF42/8PWkQNSPxhAo5OK1r+21QZBPjb7oTEuG4kXx +VsmNEiHDZXTr8usP0UACxKGkBBPgfjPyF3BSgZJURZ7QiLx1xDQbhNKqzjkEzCIydW8kgwyUaow6 +94fUFcWprhqp7dcQTaeJQ5hG1HLq0Nor+G3Rbvd0j6ghbF3n41fWV/V/u6VedP2W+5nVBBs5wjgj +JiiHJFumTDir9aB0vyx4nAztRaNFD8sFTT/XMBYyggloBNVPJCJH9CVNoHIUfdfJNr3NUSke8S7N +BJCctvWjPriiBEAhbNKpiTP8nWVOAVpQGFSN5lF3DBUKFEiX/ZJLcAtFOCGeZn9hjqwTVxPoWpVd +nCUamIAXGpYXoYNJ+nnIfLPpE7OteWAy04qitu2ogPfBu7V9rLvmbRymt8kLdpRN/JQZSPAQNomG +bOyAp+eocE/8819f38MvZzWjWhoG6hAbWEaDXAkBEQe7D4ITlg0L8scwfajkfJnrSgbnQ1NOI8XS +9QE/+a2ms3U47VP2zG2AH4iK8lVQZgmMDTnZkfBRf0XVXAF8IF8lsa2KYSe5ED8rol7H0rAAjY9b +rHkrJRQIaEzghjI5A3KMRaE5244F2DqtFNKvAQ03v0HfYznf9anFB72cRTJXMIMNRwHn0faM9uE2 +gegkKcuGhAraaBNZprW3OYfgIZ3JVLPhmaSoMpNteDhmi9WqZ7DTBZSNqC+HlVuKMYhCjyMPlW3q +gOsoiv2LpyTM3fIplmFw4I5gxS/mP5JJgKlqMbkM5r07OLCu+4D8ID9Lh55ql9We+n4Y1Vo33ftc +gLhAzFHhIClxG2JFteiRrKsh9d7Jnkir1mPv1T5J1oCpLqHTFErqoTfSVwRHh2UoStKgGqMomKNF +pyzJxsyu2mAxcZRiKf/AAfEnFErSDZv7XawI0C3hpiYJPoK+fFresEtqSRlOSjH5kkljROHa8ojU +MFS78Zk4ljDLmJKpRdgHg2WWPtGQlkPmnhFxd+4FippF/kFlzmVEkFgoJe0MmCYshkm6PlRFpK7R +k/2yJON4RMAZVdmEK8meUbQigYdZHaAjsWc26tJO6CnuoSPLWC/pOIC1MQ9723CUFCsnCIVJ0gn1 +bNbj4a9wldaqLP6+ErPkAKEChMxYhhYff8iwHRYAOss0qe3+SDMDGDWR0doO1qoHAFeTdhMVrw57 +Y7UH140OBEc0bQOKGT+6rCV6d93cebH0tTsHuNirWDF9BZHxCnGHKDA1HKlZerOKAaMzBWCgaiOa +J08I+K0jd2jqykp02fKVATFse6i3YXrYjiTkjUa28blpkyDVbcaavLiWNZ4avJbVaYI+9ckvWqbi +/FWa3UxR7Ad7Cd+hdieT8M6hqM+zPPP6uaQhI/L24HTkCYUQ6vazG4hGSn3rKc5uG0/T6wbF0Uv5 +eOVr/RFoH+ilMoY6m1FCie7LAoMw7HzQ3bBYQsQAVFC4fxNvaEWhvJ7RdLoyoVPdj0avCkUgV+uD +BRNUlr+AGpi9LV+gfrEdZsQJ4AuahagDFMlUT0CInq91aqqxAn0VTsxekiIbnTXmpxmBjp7xBHGM +EsoxMG3D8pL3spcy5Yyv9VIWa3e0Kgbj1ZxWU6gebSylKQoVrQ4OqSHpM0GU05PjKqiFkdQNioZh +Pq5gjGpln6piX9wHpNg/gg6ajIxXU+VsH3hyt4Pa2XIuM3h+Fyxkm9HArERNyerfM4pjAr/TUL2M +7mQQoFyvTwfncm+KMWzNbMUxWsfRtkdBd1XJQk2+Xz7ZuS8aBymybZx3Oj9+sM3WmmC8Ail/rZdW +lm6nYrEtqr52dk2ZOaysSPDgVaY5bTYBSs6WLXbXzG6WVFvUC5RRNimDAtNg2u0lWD1PES+42WgM +mBOVyuJ9LIuYxeBFkTavW6aY2nG2IFuI5FHuBWBHmeGj7m7FaUKtNc2U1LAgf4bCYQLvNbqHlA2t +xksguslz1hXNYh2n7OH6kzv44SWfDked5OaaBaE/6KWkl+gAJVNbyYY+idWQNAIhE1QNbbFPXpHN +MtJBUwZYAsTitZuoENALnD2iT4SoYn+wihbN2tEtdsN3U0tINjuvw5iwrwl2IBWSjyJclu0R6OQN +YAzWNiFQUjM0GbCCsPujGA8HSvcScIwKiDSW5Pzx4pe1LCw2O4N4KDQcKbPpLhRXnqI4C3i/W2bC +Ad1tlwHlaaoqBPny6hnoLvbAAGJNwVjtSjTeEix8SFnjmllVhGJjL6LkzNFYOy2X5aVkQc1Iwllr +A0bPGGAeIDwjT7L721BFonY5TAKGyXN1xQ1Swngrhahh4xUscCEoai50Blrw0IpwJWkoa4Jf0Icy +11tNrkOyAEOGDX374CXaYVFgQ3PeiPBAhJC8vkF72GILBn79Jc0e9SOXlu42PK5qwybjoP8ouk6F +PLF4+E+zsSiU0PgCdNQ06cGsTkPYSikuKLxNiIWW5o34bIUXYfNtHiH0IIdDYxQhAmaQ6KrQ5c5m +pkqXW9G4A6g1v9+ZrQaWlWSU+58M7Cqt60YRWi0mtVNZ4XrA9A2iEMMKEjjGmekV1w==
+ ]]>
+ <![CDATA[
+ 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 +R15h0bHgq6/+6m9/9fOf/X/OP/pG
+ ]]>
+</i:pgf>
+</svg>
diff --git a/share/gcstar/logos/about.png b/share/gcstar/logos/about.png Binary files differnew file mode 100644 index 0000000..0810e23 --- /dev/null +++ b/share/gcstar/logos/about.png diff --git a/share/gcstar/logos/bg_no.png b/share/gcstar/logos/bg_no.png Binary files differnew file mode 100644 index 0000000..dedab7b --- /dev/null +++ b/share/gcstar/logos/bg_no.png diff --git a/share/gcstar/logos/book_no.png b/share/gcstar/logos/book_no.png Binary files differnew file mode 100644 index 0000000..1214dc4 --- /dev/null +++ b/share/gcstar/logos/book_no.png diff --git a/share/gcstar/logos/button.png b/share/gcstar/logos/button.png Binary files differnew file mode 100644 index 0000000..75b22e4 --- /dev/null +++ b/share/gcstar/logos/button.png diff --git a/share/gcstar/logos/cd_no.png b/share/gcstar/logos/cd_no.png Binary files differnew file mode 100644 index 0000000..9ec486f --- /dev/null +++ b/share/gcstar/logos/cd_no.png diff --git a/share/gcstar/logos/film_no.png b/share/gcstar/logos/film_no.png Binary files differnew file mode 100644 index 0000000..7c99a68 --- /dev/null +++ b/share/gcstar/logos/film_no.png diff --git a/share/gcstar/logos/find.png b/share/gcstar/logos/find.png Binary files differnew file mode 100644 index 0000000..ecfabc0 --- /dev/null +++ b/share/gcstar/logos/find.png diff --git a/share/gcstar/logos/install.png b/share/gcstar/logos/install.png Binary files differnew file mode 100644 index 0000000..64d019b --- /dev/null +++ b/share/gcstar/logos/install.png diff --git a/share/gcstar/logos/no.png b/share/gcstar/logos/no.png Binary files differnew file mode 100644 index 0000000..7d3ba0a --- /dev/null +++ b/share/gcstar/logos/no.png diff --git a/share/gcstar/logos/no_minicars.png b/share/gcstar/logos/no_minicars.png Binary files differnew file mode 100644 index 0000000..281d7f6 --- /dev/null +++ b/share/gcstar/logos/no_minicars.png diff --git a/share/gcstar/logos/no_smartcards.png b/share/gcstar/logos/no_smartcards.png Binary files differnew file mode 100644 index 0000000..e9e0aea --- /dev/null +++ b/share/gcstar/logos/no_smartcards.png diff --git a/share/gcstar/logos/no_stamp.png b/share/gcstar/logos/no_stamp.png Binary files differnew file mode 100644 index 0000000..3abc5e8 --- /dev/null +++ b/share/gcstar/logos/no_stamp.png diff --git a/share/gcstar/logos/periscope_main_logo.svg b/share/gcstar/logos/periscope_main_logo.svg new file mode 100644 index 0000000..2492e09 --- /dev/null +++ b/share/gcstar/logos/periscope_main_logo.svg @@ -0,0 +1,1230 @@ +<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.0" id="Calque_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="401" height="401" viewBox="0 0 401 401"
+ overflow="visible" enable-background="new 0 0 401 401" xml:space="preserve">
+<g id="Calque_6">
+ <rect x="0.5" y="0.5" fill="none" stroke="#FFFFFF" width="400" height="400"/>
+</g>
+<g id="Calque_6_-_copie">
+ <rect x="0.5" y="0.5" fill="#FFFFFF" width="400" height="400"/>
+</g>
+<g id="Calque_10">
+
+ <linearGradient id="XMLID_37_" gradientUnits="userSpaceOnUse" x1="174.3203" y1="444.0762" x2="-0.8899" y2="465.6604" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0.0056" style="stop-color:#FFFFFF"/>
+ <stop offset="0.3072" style="stop-color:#ECF2F9"/>
+ <stop offset="0.9175" style="stop-color:#BAD2EA"/>
+ <stop offset="1" style="stop-color:#B3CDE8"/>
+ </linearGradient>
+ <path fill="url(#XMLID_37_)" d="M132.352,262.551c-0.012,2.467-21.149,4.367-47.21,4.246c-26.062-0.12-47.18-2.217-47.168-4.684
+ c0.011-2.465,21.148-4.367,47.209-4.246C111.244,257.986,132.363,260.085,132.352,262.551z"/>
+ <g>
+
+ <linearGradient id="XMLID_38_" gradientUnits="userSpaceOnUse" x1="83.4087" y1="405.668" x2="91.9835" y2="414.5602" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_38_)" d="M97.31,231.516c3.604,1.102,7.562,0.705,10.878-1.084c1.634-0.882,3.253-2.057,4.146-3.707
+ c1.082-2,1.968-4.107,2.656-6.276c-4.837,1.114-9.997,0.686-14.668-0.941c-4.639-1.614-9.51-4.573-11.822-9.071
+ c-0.322,0.945-1.533,4.672-1.948,5.563c-0.792,1.715-2.018,3.183-3.527,4.313c-1.61,1.174-3.476,1.944-5.383,2.49
+ c-1.626,0.467-3.427,0.788-4.47,2.266c-0.958,1.358-0.908,3.221,0.186,4.492c1.237,1.44,3.214,1.707,4.987,1.347
+ c2.089-0.425,4.162-1.132,6.109-1.991c1.71-0.759,3.544-1.533,4.893-2.87c1.017,1.453,2.31,2.705,3.792,3.679
+ c0.738,0.485,1.522,0.903,2.341,1.239C95.935,231.146,97.335,231.521,97.31,231.516"/>
+
+ <linearGradient id="XMLID_39_" gradientUnits="userSpaceOnUse" x1="116.2788" y1="323.1982" x2="123.2704" y2="352.1169" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0.0056" style="stop-color:#FFF7FF"/>
+ <stop offset="0.1382" style="stop-color:#CEDFFB"/>
+ <stop offset="0.3023" style="stop-color:#98C4F7"/>
+ <stop offset="0.4629" style="stop-color:#6CAEF4"/>
+ <stop offset="0.6163" style="stop-color:#499CF1"/>
+ <stop offset="0.7607" style="stop-color:#3090F0"/>
+ <stop offset="0.8924" style="stop-color:#2189EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_39_)" d="M174.477,149.37c-1.717-7.284-6.05-13.56-11.993-16.68c-3.141-1.649-6.73-2.419-10.62-1.987
+ c-0.358,0.04-0.718,0.091-1.08,0.153c-0.241,0.04-0.482,0.089-0.726,0.138c-0.106,0.023-0.212,0.042-0.323,0.065
+ c-0.308,0.069-0.622,0.148-0.937,0.23c-0.029,0.009-0.06,0.016-0.092,0.025c-0.339,0.091-0.682,0.191-1.029,0.304
+ c-1.883,0.602-3.819,1.474-5.792,2.667c-5.371,3.239-9.584,7.517-12.671,12.32c-0.152,0.237-0.292,0.48-0.44,0.719
+ c1.439-3.938,3.37-6.728,4.87-8.318c2.659-2.815,6.604-6.074,11.241-7.926c-0.966-0.153-1.872-0.265-2.698-0.336
+ c-16.258-1.986-29.712,4.876-36.667,25.514c-1.066,3.163-4.573,14.902-8.382,27.367c-6.451,0.293-15.039,1.458-19.114,5.358
+ c-0.838,0.677-1.398,1.678-1.466,2.819c-0.13,2.19,1.591,4.072,3.839,4.202c1.247,0.072,2.391-0.408,3.188-1.223l0.008,0.009
+ c1.325-1.434,5.844-2.444,11.01-2.919c-0.134,0.431-0.268,0.859-0.399,1.287c-0.441,1.39-0.881,2.781-1.317,4.173
+ c-0.603,1.913-1.202,3.826-1.813,5.737c-0.302,0.951-0.612,1.906-0.922,2.861c-0.085,2.672,1.576,5.438,4.706,7.807
+ c4.809,3.637,13.489,6.392,21.196,3.856c0.851-2.68,1.986-6.255,3.244-10.2l0.005,0.002c0.697-2.205,1.44-4.095,2.213-5.721
+ c1.443,1.313,2.871,2.75,4.133,4.143c0.805,1.016,1.03,1.549,1.744,2.242c1.937,1.873,4.544,2.156,6.218,0.459
+ c1.671-1.694,1.459-4.593-0.475-6.463c-0.093-0.093-0.189-0.174-0.286-0.253c-1.415-1.66-3.807-4.292-6.637-6.756
+ c3.407-2.961,6.873-2.732,9.403-1.859c0.031,0.018,0.059,0.039,0.089,0.055c6.104,3.575,13.035,3.278,19.316,0.277
+ c5.143-2.456,9.615-6.621,13.029-11.675c3.117-4.618,5.338-9.956,6.482-15.472C175.716,160.68,175.755,154.791,174.477,149.37z
+ M166.884,179.725c-6.431,9.186-17.595,14.081-26.032,7.7c-12.514-9.462-10.605-33.852,5.365-45.267
+ c11.919-8.522,22.916-1.749,26.048,9.716C174.663,160.647,172.356,171.909,166.884,179.725z"/>
+
+ <linearGradient id="XMLID_40_" gradientUnits="userSpaceOnUse" x1="83.479" y1="405.4453" x2="92.0916" y2="414.3767" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_40_)" d="M97.31,231.516c-0.782,0.461-1.606,0.91-2.524,1.332c-0.142,0.049-0.276,0.108-0.408,0.172
+ c-0.531,0.315-1.015,0.679-1.409,1.125c-0.443,0.567-0.74,1.264-0.818,2.035c-0.216,2.152,1.328,4.069,3.446,4.277
+ c0.693,0.07,1.36-0.053,1.954-0.321l0.012,0.024c4.804-2.143,8.223-4.848,10.657-7.501c1.381-1.556,2.579-3.251,3.618-5.048
+ C108.263,231.455,102.67,233.15,97.31,231.516z"/>
+
+ <linearGradient id="XMLID_41_" gradientUnits="userSpaceOnUse" x1="98.8281" y1="421.3633" x2="101.5017" y2="424.1357" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_41_)" d="M97.31,231.516c-0.782,0.461-1.606,0.91-2.524,1.332c-0.142,0.049-0.276,0.108-0.408,0.172
+ c-0.531,0.315-1.015,0.679-1.409,1.125c-0.443,0.567-0.74,1.264-0.818,2.035c-0.216,2.152,1.328,4.069,3.446,4.277
+ c0.693,0.07,1.36-0.053,1.954-0.321l0.012,0.024c4.804-2.143,8.223-4.848,10.657-7.501c1.381-1.556,2.579-3.251,3.618-5.048
+ C108.263,231.455,102.67,233.15,97.31,231.516z"/>
+
+ <linearGradient id="XMLID_42_" gradientUnits="userSpaceOnUse" x1="87.1963" y1="372.2148" x2="91.0126" y2="381.7556" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_42_)" d="M80.141,195.28c1.184,0.06,2.269-0.404,3.019-1.182l0.008,0.008
+ c1.96-2.155,11.404-3.377,18.993-3.167l0.376,0.009c0.003,0,0.374-0.063,0.374-0.063s2.003-1.696,1.504-4.474
+ c-0.498-2.778-2.039-3.085-2.039-3.085c-4.412-0.126-18.979-0.093-24.539,5.303c-0.792,0.65-1.317,1.603-1.372,2.689
+ C76.358,193.399,78.005,195.174,80.141,195.28z"/>
+
+ <linearGradient id="XMLID_43_" gradientUnits="userSpaceOnUse" x1="128.3442" y1="407.792" x2="128.9795" y2="390.3197" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1178" style="stop-color:#ECF5FE"/>
+ <stop offset="0.3575" style="stop-color:#BADAFA"/>
+ <stop offset="0.6939" style="stop-color:#6AB0F4"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_43_)" d="M133.314,202.32c-0.088-0.092-0.181-0.176-0.277-0.258c-1.758-2.146-5.083-5.917-8.93-8.921
+ c-0.853,2.684-1.741,5.481-2.617,8.238c1.43,1.348,2.844,2.824,4.087,4.251c0.774,1.021,0.981,1.546,1.683,2.251
+ c1.89,1.902,4.528,2.299,6.29,0.729C135.31,207.039,135.207,204.223,133.314,202.32z"/>
+ </g>
+</g>
+<g id="Calque_7">
+ <path fill="#1C86EE" d="M361.816,214.289c-0.555-1.294-2.082-1.932-3.096-2.354l0,0c-5.414-2.272-11.367-2.057-16.336,0.598
+ c-2.316,1.24-3.932,2.813-4.8,4.672c-1.2,2.574-0.581,4.955,1.743,6.704c1.91,1.438,4.195,2.097,6.374,2.647
+ c2.919,0.735,4.481,1.904,4.78,3.57c0.361,2.002-2.281,4.146-4.189,4.688c-2.339,0.664-4.615,0.223-6.09-1.183
+ c-0.199-0.188-0.395-0.396-0.602-0.61c-0.67-0.705-1.428-1.504-2.463-1.832c-1.443-0.455-3.016,0.175-3.934,0.996
+ c-0.787,0.709-1.146,1.584-1.038,2.529c0.172,1.501,1.493,2.859,2.728,3.541c3.717,2.053,8.928,2.201,15.481,0.445
+ c4.157-1.109,8.888-4.43,9.446-9.092c0.617-5.114-4.359-6.334-7.994-7.226c-0.51-0.125-0.989-0.241-1.441-0.364
+ c-1.289-0.351-3.558-1.146-4.242-2.533c-0.27-0.545-0.267-1.135,0.008-1.801c0.908-2.207,4.115-3.142,6.271-2.468
+ c0.797,0.246,1.54,0.813,2.328,1.411c1.514,1.146,3.229,2.45,5.416,1.154C361.386,217.07,362.376,215.602,361.816,214.289z"/>
+ <path fill="#1C86EE" d="M332.934,221.484c0.896-2.74,2.396-7.33-0.688-9.549l-0.293,0.404l0.292-0.406
+ c-2.327-1.668-5.641-1.58-7.93-1.369c-1.478,0.137-2.885,0.425-4.181,0.855c-0.001,0-0.288,0.098-0.288,0.098
+ c-1.332,0.447-2.592,0.873-3.971,0.851c-0.729-0.013-1.404-0.339-2.121-0.685c-0.337-0.164-0.686-0.332-1.045-0.468
+ c-1.458-0.559-2.98-0.896-4.527-1.004c-1.535-0.104-2.969,0.009-4.255,0.34c-0.55,0.144-1.086,0.328-1.604,0.509
+ c-0.881,0.306-1.713,0.594-2.598,0.678c-0.951,0.092-1.959-0.059-3.021-0.219c-1.872-0.28-3.811-0.57-5.551,0.502
+ c-2.228,1.371-2.986,3.892-3.661,6.112c-0.134,0.443-0.261,0.863-0.397,1.275l-0.767,2.305l-2.312,6.94
+ c0.002-0.002-0.604,1.755-0.604,1.755c-0.521,1.479-1.061,3.012-1.432,4.563c-0.23,0.979-0.847,3.579,1.035,4.479
+ c2.139,1.021,4.373-0.661,5.642-2.783c0.559-0.936,0.891-1.959,1.213-2.949l0.146-0.441l1.545-4.631
+ c0.188-0.561,0.371-1.139,0.547-1.695c0.613-1.94,1.248-3.946,2.234-5.696c1.688-2.985,5.711-5.351,9.276-3.959
+ c1.584,0.617,2.38,2.265,2.024,4.192c-0.176,0.955-0.521,1.916-0.856,2.847c-0.136,0.373-0.272,0.76-0.401,1.144
+ c0.001-0.002-1.502,4.526-1.502,4.526c0,0.001-0.23,0.711-0.23,0.711c-0.359,1.11-0.731,2.261-1.067,3.401
+ c0,0.002-0.034,0.117-0.034,0.117c-0.371,1.269-0.88,3.004-0.1,4.386c0.343,0.604,0.896,0.998,1.598,1.144
+ c1.268,0.262,2.779-0.328,3.646-0.988c1.888-1.434,2.66-3.998,3.283-6.062l0.129-0.43c0.496-1.632,1.033-3.28,1.556-4.876
+ l1.135-3.526c0.685-2.166,1.706-4.584,4.11-6.094c1.539-0.97,4.096-1.724,6.229-0.66c2.33,1.158,1.846,3.854,1.063,6.341
+ c-0.785,2.495-1.678,5.323-2.629,8.047c-0.785,2.239-1.48,5.246-0.34,6.85c0.506,0.71,1.293,1.066,2.344,1.063
+ c3.262-0.006,4.781-4.176,5.512-6.18c0.945-2.602,1.793-5.282,2.611-7.877l1.217-3.813L332.934,221.484z"/>
+ <path fill="#1C86EE" d="M286.293,206.096L286.293,206.096c0.343-1.027,0.813-2.433,0.409-3.736
+ c-0.392-1.264-1.681-1.856-3.45-1.587c-2.132,0.322-3.745,1.887-4.794,4.649c-1.485,3.897-2.763,7.963-3.996,11.894l-1.819,5.703
+ l-3.004,9.133c-0.09,0.276-0.209,0.598-0.337,0.937c-0.638,1.703-1.513,4.034-0.442,5.642c0.371,0.563,0.947,0.918,1.664,1.028
+ c1.274,0.199,2.832-0.405,3.709-1.106c1.474-1.172,2.271-2.934,2.855-4.504c0.374-1.004,0.678-2.039,0.971-3.039l0.409-1.371
+ c0.527-1.696,1.107-3.418,1.669-5.077l0.793-2.359l3.387-10.229L286.293,206.096z"/>
+ <path fill="#1C86EE" d="M258.689,216.548c0.924-0.672,1.881-1.366,2.649-2.274l-0.382-0.322l0.382,0.32
+ c0.978-1.148,0.361-2.498-0.087-3.479c-0.063-0.142-0.125-0.272-0.182-0.399c-0.522-1.228-0.661-2.303-0.409-3.195
+ c0.325-1.149,1.299-1.73,2.325-2.346c1.063-0.636,2.158-1.289,2.646-2.604c0.362-0.98,0.055-1.628-0.268-1.999
+ c-1.17-1.345-4.295-1.155-5.301-0.934c-2.381,0.527-4.61,1.93-6.631,4.171c-0.748,0.832-1.404,1.769-2.043,2.675
+ c-0.918,1.31-1.869,2.659-3.078,3.655c-0.201,0.166-0.416,0.326-0.646,0.496c-0.773,0.576-1.65,1.229-2.086,2.213
+ c-0.551,1.244-0.035,2.42,0.421,3.457c0.104,0.24,0.203,0.466,0.287,0.687c0.716,1.88,0.542,3.286-0.027,5.222
+ c-0.452,1.531-0.969,3.077-1.466,4.572l-0.216,0.651c-0.284,0.86-0.604,1.731-0.911,2.573c-0.354,0.968-0.719,1.963-1.039,2.963
+ l-0.057,0.179c-0.538,1.664-1.537,4.758,0.082,6.278c0.506,0.478,1.168,0.713,1.912,0.684c1.404-0.057,2.912-1.035,3.721-1.923
+ c1.145-1.263,1.843-2.817,2.427-4.312c0.863-2.209,1.562-4.514,2.233-6.742c0.445-1.474,0.906-3,1.41-4.479
+ c0.498-1.459,0.994-2.76,2.037-3.891C257.064,217.729,257.854,217.154,258.689,216.548z"/>
+ <path fill="#1C86EE" d="M269.717,217.718c0.094-0.268,0.219-0.565,0.35-0.881c0.44-1.063,0.938-2.271,0.746-3.364l0,0
+ c-0.133-0.777-0.52-1.373-1.119-1.722c-1.143-0.663-2.629-0.241-3.217-0.026c-1.979,0.719-3.215,2.045-4.009,4.301l-1.608,4.451
+ l-1.578,4.369l-0.934,2.745c-0.517,1.538-1.05,3.132-1.638,4.666c0-0.001-0.12,0.308-0.12,0.308
+ c-0.57,1.472-1.279,3.301-0.947,4.998c0.183,0.931,0.75,1.604,1.604,1.892c1.36,0.464,3.166-0.138,4.124-0.981
+ c1.904-1.688,2.666-4.072,3.4-6.381c0.149-0.469,0.306-0.949,0.465-1.415l1.729-4.997l1.375-3.975L269.717,217.718z"/>
+ <path fill="#1C86EE" d="M268.672,205.604l-0.064-0.035c0.856,0.574,2.059,0.556,3.295-0.057c1.154-0.568,2.354-1.705,2.438-2.964
+ c0.032-0.51-0.109-1.237-0.979-1.815c-1.198-0.799-2.836-0.41-3.969,0.221c-1.322,0.735-2.154,1.851-2.121,2.844
+ C267.285,204.327,267.543,205.07,268.672,205.604z"/>
+ <path fill="#1C86EE" d="M243.664,206.609c-0.536-2.534-2.408-4.866-5.137-6.403v0.001c-4.123-2.324-9.782-2.643-15.936-0.9
+ c-4.531,1.287-8.775,3.886-12.271,7.52c-3.365,3.501-5.928,7.81-7.405,12.461c-1.983,6.237-1.365,11.944,1.692,15.657
+ c3.623,4.396,9.799,4.787,13.156,4.63c5.514-0.263,10.828-2.232,15.373-5.698c1.641-1.25,4.695-3.578,4.504-6.227
+ c-0.041-0.551-0.298-1.025-0.742-1.371c-0.721-0.559-1.801-0.672-2.556-0.537c-1.313,0.24-2.401,1.132-3.362,1.917l-0.479,0.389
+ c-2.046,1.613-4.272,3.252-7.017,4c-2.678,0.726-5.363,0.789-7.562,0.183c-6.377-1.769-4.817-9.795-4.188-12.211
+ c1.424-5.474,4.892-10.271,9.272-12.834c4.22-2.465,11.136-2.82,14.313,0.611c0.431,0.465,0.779,1.077,1.117,1.67
+ c0.867,1.523,1.852,3.25,4.373,2.498C243.193,211.252,244.232,209.3,243.664,206.609z"/>
+ <path fill="#1C86EE" d="M195.014,200.358c-4.125-2.321-9.783-2.64-15.929-0.898c-9.037,2.563-16.578,10.218-19.681,19.979
+ c-1.984,6.237-1.367,11.947,1.693,15.658c3.623,4.396,9.797,4.789,13.156,4.629c5.557-0.263,10.905-2.259,15.466-5.771
+ c3.394-2.608,8.061-6.667,9.378-11.749c0.597-2.301,0.181-4.008-1.17-4.807c-0.845-0.495-1.885-0.568-2.803-0.637
+ c-0.206-0.014-0.4-0.027-0.587-0.047c-1.673-0.16-3.056-0.195-4.354-0.107c-3.946,0.262-6.429,1.339-7.382,3.201
+ c-1.097,2.149,0.78,3.272,2.152,4.092c0.641,0.385,1.305,0.781,1.638,1.217c0.889,1.164-0.19,3.023-1.131,3.988
+ c-1.286,1.313-2.922,2.291-4.861,2.904c-1.461,0.463-6.507,1.797-10.067-0.443c-3.353-2.11-3.175-6.659-2.772-9.184
+ c0.628-3.934,2.165-7.484,4.44-10.269l-0.387-0.317l0.387,0.316c2.055-2.516,4.07-4.229,6.162-5.24
+ c2.318-1.122,5.071-1.568,7.962-1.29c1.945,0.188,4.565,0.861,5.996,2.998c0.229,0.341,0.421,0.705,0.626,1.092
+ c0.359,0.679,0.731,1.382,1.315,1.966c1.229,1.229,3.069,0.5,3.854,0.188c2.255-0.897,2.553-3.56,1.848-5.798
+ C199.248,203.77,197.491,201.755,195.014,200.358z"/>
+ <path fill="#1C86EE" d="M361.816,214.289c-0.555-1.294-2.082-1.932-3.096-2.354l0,0c-5.414-2.272-11.367-2.057-16.336,0.598
+ c-2.316,1.24-3.932,2.813-4.8,4.672c-1.2,2.574-0.581,4.955,1.743,6.704c1.91,1.438,4.195,2.097,6.374,2.647
+ c2.919,0.735,4.481,1.904,4.78,3.57c0.361,2.002-2.281,4.146-4.189,4.688c-2.339,0.664-4.615,0.223-6.09-1.183
+ c-0.199-0.188-0.395-0.396-0.602-0.61c-0.67-0.705-1.428-1.504-2.463-1.832c-1.443-0.455-3.016,0.175-3.934,0.996
+ c-0.787,0.709-1.146,1.584-1.038,2.529c0.172,1.501,1.493,2.859,2.728,3.541c3.717,2.053,8.928,2.201,15.481,0.445
+ c4.157-1.109,8.888-4.43,9.446-9.092c0.617-5.114-4.359-6.334-7.994-7.226c-0.51-0.125-0.989-0.241-1.441-0.364
+ c-1.289-0.351-3.558-1.146-4.242-2.533c-0.27-0.545-0.267-1.135,0.008-1.801c0.908-2.207,4.115-3.142,6.271-2.468
+ c0.797,0.246,1.54,0.813,2.328,1.411c1.514,1.146,3.229,2.45,5.416,1.154C361.386,217.07,362.376,215.602,361.816,214.289z"/>
+ <path fill="#1C86EE" d="M332.934,221.484c0.896-2.74,2.396-7.33-0.688-9.549l-0.001-0.002c-2.327-1.668-5.641-1.58-7.93-1.369
+ c-1.478,0.137-2.885,0.425-4.181,0.855c-0.001,0-0.288,0.098-0.288,0.098c-1.332,0.447-2.592,0.873-3.971,0.851
+ c-0.729-0.013-1.404-0.339-2.121-0.685c-0.337-0.164-0.686-0.332-1.045-0.468c-1.458-0.559-2.98-0.896-4.527-1.004
+ c-1.535-0.104-2.969,0.007-4.255,0.34c-0.55,0.144-1.086,0.328-1.604,0.509c-0.881,0.306-1.713,0.594-2.598,0.678
+ c-0.951,0.092-1.959-0.061-3.021-0.219c-1.872-0.281-3.811-0.57-5.551,0.502c-2.228,1.371-2.986,3.892-3.661,6.112
+ c-0.134,0.443-0.261,0.863-0.397,1.275l-0.767,2.305l-2.312,6.94c0.002-0.002-0.604,1.755-0.604,1.755
+ c-0.521,1.479-1.061,3.012-1.432,4.563c-0.23,0.979-0.847,3.579,1.035,4.479c2.139,1.021,4.373-0.661,5.642-2.783
+ c0.559-0.936,0.891-1.959,1.213-2.949l0.146-0.441l1.545-4.631c0.188-0.561,0.371-1.139,0.547-1.695
+ c0.613-1.94,1.248-3.946,2.234-5.696c1.688-2.985,5.711-5.351,9.276-3.959c1.584,0.617,2.38,2.265,2.024,4.192
+ c-0.176,0.955-0.521,1.916-0.856,2.847c-0.136,0.373-0.272,0.76-0.401,1.144c0.001-0.002-1.502,4.526-1.502,4.526
+ c0,0.001-0.23,0.711-0.23,0.711c-0.359,1.11-0.731,2.261-1.067,3.401c0,0.002-0.034,0.117-0.034,0.117
+ c-0.371,1.269-0.88,3.004-0.1,4.386c0.343,0.604,0.896,0.998,1.598,1.144c1.268,0.262,2.779-0.328,3.646-0.988
+ c1.888-1.434,2.66-3.998,3.283-6.062l0.129-0.43c0.496-1.632,1.033-3.28,1.556-4.877l1.135-3.525
+ c0.685-2.166,1.706-4.584,4.11-6.094c1.539-0.97,4.096-1.724,6.229-0.66c2.33,1.158,1.846,3.854,1.063,6.341
+ c-0.785,2.495-1.678,5.323-2.629,8.047c-0.785,2.239-1.48,5.246-0.34,6.85c0.506,0.709,1.293,1.066,2.344,1.063
+ c3.262-0.006,4.781-4.176,5.512-6.18c0.945-2.602,1.793-5.282,2.611-7.877l1.217-3.813L332.934,221.484z"/>
+ <path fill="#1C86EE" d="M286.293,206.096L286.293,206.096c0.343-1.027,0.813-2.433,0.409-3.736
+ c-0.392-1.264-1.681-1.856-3.45-1.587c-2.132,0.322-3.745,1.887-4.794,4.649c-1.485,3.897-2.763,7.963-3.996,11.894l-1.819,5.703
+ l-3.004,9.133c-0.09,0.276-0.209,0.598-0.337,0.937c-0.638,1.703-1.513,4.034-0.442,5.642c0.371,0.563,0.947,0.918,1.664,1.028
+ c1.274,0.199,2.832-0.405,3.709-1.106c1.474-1.172,2.271-2.934,2.855-4.504c0.374-1.004,0.678-2.039,0.971-3.039l0.409-1.371
+ c0.527-1.696,1.107-3.418,1.669-5.077l0.793-2.359l3.387-10.229L286.293,206.096z"/>
+ <path fill="#1C86EE" d="M258.689,216.548c0.924-0.672,1.881-1.366,2.649-2.274v-0.002c0.978-1.148,0.361-2.498-0.087-3.479
+ c-0.063-0.142-0.125-0.272-0.182-0.399c-0.522-1.228-0.661-2.303-0.409-3.195c0.325-1.149,1.299-1.73,2.325-2.346
+ c1.063-0.636,2.158-1.289,2.646-2.604c0.362-0.98,0.055-1.628-0.268-1.999c-1.17-1.345-4.295-1.155-5.301-0.934
+ c-2.381,0.527-4.61,1.93-6.631,4.171c-0.748,0.832-1.404,1.769-2.043,2.675c-0.918,1.31-1.869,2.659-3.078,3.655
+ c-0.201,0.166-0.416,0.326-0.646,0.496c-0.773,0.576-1.65,1.229-2.086,2.213c-0.551,1.244-0.035,2.42,0.421,3.457
+ c0.104,0.24,0.203,0.466,0.287,0.687c0.716,1.88,0.542,3.286-0.027,5.222c-0.452,1.531-0.969,3.077-1.466,4.572l-0.216,0.651
+ c-0.284,0.86-0.604,1.731-0.911,2.573c-0.354,0.968-0.719,1.963-1.039,2.963l-0.057,0.179c-0.538,1.664-1.537,4.758,0.082,6.278
+ c0.506,0.478,1.168,0.713,1.912,0.684c1.404-0.057,2.912-1.035,3.721-1.923c1.145-1.263,1.843-2.817,2.427-4.312
+ c0.863-2.209,1.562-4.514,2.233-6.742c0.445-1.474,0.906-3,1.41-4.479c0.498-1.459,0.994-2.76,2.037-3.891
+ C257.064,217.729,257.854,217.154,258.689,216.548z"/>
+ <path fill="#1C86EE" d="M269.717,217.718c0.094-0.268,0.219-0.565,0.35-0.881c0.44-1.063,0.938-2.271,0.746-3.364l0,0
+ c-0.133-0.777-0.52-1.373-1.119-1.722c-1.143-0.663-2.629-0.241-3.217-0.026c-1.979,0.719-3.215,2.045-4.009,4.301l-1.608,4.451
+ l-1.578,4.369l-0.934,2.745c-0.517,1.538-1.05,3.132-1.638,4.666c0-0.001-0.12,0.308-0.12,0.308
+ c-0.57,1.472-1.279,3.301-0.947,4.998c0.183,0.931,0.75,1.604,1.604,1.892c1.36,0.464,3.166-0.138,4.124-0.981
+ c1.904-1.688,2.666-4.072,3.4-6.381c0.149-0.469,0.306-0.949,0.465-1.415l1.729-4.997l1.375-3.975L269.717,217.718z"/>
+ <path fill="#1C86EE" d="M268.672,205.604l-0.064-0.035c0.856,0.574,2.059,0.556,3.295-0.057c1.154-0.568,2.354-1.705,2.438-2.964
+ c0.032-0.51-0.109-1.237-0.979-1.815c-1.198-0.799-2.836-0.41-3.969,0.221c-1.322,0.735-2.154,1.851-2.121,2.844
+ C267.285,204.327,267.543,205.07,268.672,205.604z"/>
+ <path fill="#1C86EE" d="M243.664,206.609c-0.536-2.534-2.408-4.866-5.137-6.403v0.001c-4.123-2.324-9.782-2.643-15.936-0.9
+ c-4.531,1.287-8.775,3.886-12.271,7.52c-3.365,3.501-5.928,7.81-7.405,12.461c-1.983,6.237-1.365,11.944,1.692,15.657
+ c3.623,4.396,9.799,4.787,13.156,4.63c5.514-0.263,10.828-2.232,15.373-5.698c1.641-1.25,4.695-3.578,4.504-6.227
+ c-0.041-0.551-0.298-1.025-0.742-1.371c-0.721-0.559-1.801-0.672-2.556-0.537c-1.313,0.24-2.401,1.132-3.362,1.917l-0.479,0.389
+ c-2.046,1.613-4.272,3.252-7.017,4c-2.678,0.726-5.363,0.789-7.562,0.183c-6.377-1.769-4.817-9.795-4.188-12.211
+ c1.424-5.474,4.892-10.271,9.272-12.834c4.22-2.465,11.136-2.82,14.313,0.611c0.431,0.465,0.779,1.077,1.117,1.67
+ c0.867,1.523,1.852,3.25,4.373,2.498C243.193,211.252,244.232,209.3,243.664,206.609z"/>
+ <path fill="#1C86EE" d="M195.014,200.358c-4.125-2.321-9.783-2.64-15.929-0.898c-9.037,2.563-16.578,10.218-19.681,19.979
+ c-1.984,6.237-1.367,11.947,1.693,15.658c3.623,4.396,9.797,4.789,13.156,4.629c5.557-0.263,10.905-2.259,15.466-5.771
+ c3.394-2.608,8.061-6.667,9.378-11.749c0.597-2.301,0.181-4.008-1.17-4.807c-0.845-0.495-1.885-0.568-2.803-0.637
+ c-0.206-0.014-0.4-0.027-0.587-0.047c-1.673-0.16-3.056-0.195-4.354-0.107c-3.946,0.262-6.429,1.339-7.382,3.201
+ c-1.097,2.149,0.78,3.272,2.152,4.092c0.641,0.385,1.305,0.781,1.638,1.217c0.889,1.164-0.19,3.023-1.131,3.988
+ c-1.286,1.313-2.922,2.291-4.861,2.904c-1.461,0.463-6.507,1.797-10.067-0.443c-3.353-2.11-3.175-6.659-2.772-9.184
+ c0.628-3.934,2.165-7.484,4.44-10.269l-0.387-0.317l0.387,0.316c2.055-2.516,4.07-4.229,6.162-5.24
+ c2.318-1.122,5.071-1.568,7.962-1.29c1.945,0.188,4.565,0.861,5.996,2.998c0.229,0.341,0.421,0.705,0.626,1.092
+ c0.359,0.679,0.731,1.382,1.315,1.966c1.229,1.229,3.069,0.5,3.854,0.188c2.255-0.897,2.553-3.56,1.848-5.798
+ C199.248,203.77,197.491,201.755,195.014,200.358z"/>
+
+ <linearGradient id="XMLID_44_" gradientUnits="userSpaceOnUse" x1="352.1504" y1="401.8721" x2="329.5183" y2="475.8033" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2427 -194.2114)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_44_)" d="M345.693,217.498c1.02-2.479,4.474-3.505,6.881-2.754c2.521,0.785,4.423,4.341,7.341,2.613
+ c0.914-0.539,1.921-1.75,1.442-2.873c-0.463-1.078-1.825-1.67-2.83-2.088c-5.125-2.152-10.988-2.049-15.905,0.578
+ c-1.897,1.017-3.654,2.452-4.582,4.439c-1.126,2.415-0.497,4.521,1.59,6.094c1.83,1.379,4.009,2.012,6.197,2.563
+ c0.88,0.224,1.848,0.539,2.717,1.006c3.412-0.387,6.507-0.962,9.283-1.738c-1.899-1.652-5.162-2.181-7.567-2.834
+ C348.048,221.906,344.48,220.445,345.693,217.498z"/>
+
+ <linearGradient id="XMLID_45_" gradientUnits="userSpaceOnUse" x1="317.1084" y1="390.5186" x2="294.4502" y2="464.5356" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2427 -194.2114)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_45_)" d="M331.95,212.342c-2.112-1.515-5.112-1.507-7.591-1.279c-1.381,0.127-2.752,0.396-4.067,0.834
+ c-1.46,0.488-2.856,0.998-4.426,0.974c-1.211-0.021-2.237-0.769-3.334-1.185c-1.402-0.537-2.886-0.867-4.386-0.972
+ c-1.364-0.096-2.768-0.021-4.097,0.325c-1.438,0.371-2.782,1.055-4.278,1.197c-2.729,0.26-5.84-1.34-8.355,0.211
+ c-2.471,1.521-2.998,4.566-3.85,7.121c-0.273,0.824-0.545,1.646-0.818,2.469c2.085,0.355,4.143,0.695,6.182,1.02
+ c0.291-0.701,0.605-1.39,0.979-2.049c1.844-3.267,6.142-5.641,9.893-4.179c1.959,0.764,2.7,2.762,2.336,4.75
+ c-0.201,1.108-0.611,2.187-0.994,3.255c2.227,0.292,4.414,0.559,6.563,0.801c0.206-0.635,0.414-1.268,0.613-1.902
+ c0.813-2.572,1.968-4.89,4.32-6.366c1.93-1.214,4.604-1.738,6.721-0.687c2.771,1.377,2.068,4.551,1.314,6.938
+ c-0.328,1.039-0.658,2.075-0.99,3.106c2.381,0.162,4.696,0.285,6.94,0.362c0.606-1.896,1.194-3.797,1.813-5.688
+ C333.292,218.775,334.764,214.365,331.95,212.342z"/>
+
+ <linearGradient id="XMLID_46_" gradientUnits="userSpaceOnUse" x1="287.7227" y1="381.0137" x2="264.7614" y2="456.0205" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2427 -194.2114)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_46_)" d="M286.225,202.506c-0.387-1.25-1.774-1.41-2.896-1.242c-2.331,0.354-3.622,2.277-4.401,4.334
+ c-1.768,4.635-3.216,9.426-4.717,14.17c2.229,0.424,4.438,0.838,6.622,1.232c1.66-5.021,3.325-10.04,4.985-15.063
+ C286.175,204.871,286.572,203.63,286.225,202.506z"/>
+
+ <linearGradient id="XMLID_47_" gradientUnits="userSpaceOnUse" x1="263.6563" y1="374.3867" x2="241.1457" y2="447.9211" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2427 -194.2114)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_47_)" d="M260.959,213.949c0.884-1.045,0.1-2.323-0.345-3.365c-0.47-1.098-0.765-2.352-0.433-3.525
+ c0.732-2.59,4.102-2.604,4.983-4.985c0.964-2.6-3.578-2.58-4.992-2.271c-2.548,0.563-4.646,2.106-6.362,4.019
+ c-1.815,2.017-3.067,4.646-5.179,6.383c-0.907,0.747-2.093,1.4-2.591,2.525c-0.17,0.387-0.206,0.769-0.175,1.147
+ c4.053,0.901,8.073,1.778,12.05,2.617C258.989,215.703,260.102,214.961,260.959,213.949z"/>
+
+ <linearGradient id="XMLID_48_" gradientUnits="userSpaceOnUse" x1="275.9443" y1="378.1533" x2="253.4364" y2="451.6787" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2427 -194.2114)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_48_)" d="M270.32,213.559c-0.321-1.877-2.209-1.896-3.674-1.365c-1.979,0.721-3.017,2.029-3.707,3.998
+ c-0.146,0.418-0.304,0.836-0.451,1.254c2.135,0.439,4.25,0.863,6.354,1.279c0.134-0.39,0.271-0.779,0.402-1.17
+ C269.648,216.396,270.543,214.813,270.32,213.559z"/>
+
+ <linearGradient id="XMLID_49_" gradientUnits="userSpaceOnUse" x1="276.5596" y1="377.6504" x2="253.3182" y2="453.5727" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2427 -194.2114)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_49_)" d="M273.081,201.148c-2.376-1.583-7.599,2.393-4.195,4.004
+ C271.061,206.611,275.652,202.857,273.081,201.148z"/>
+
+ <linearGradient id="XMLID_50_" gradientUnits="userSpaceOnUse" x1="236.9277" y1="365.3828" x2="214.0403" y2="440.1483" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2427 -194.2114)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_50_)" d="M220.757,206.754c4.118-2.408,11.373-3.141,14.933,0.704c1.596,1.719,1.947,4.933,4.979,4.026
+ c2.279-0.68,2.979-2.535,2.508-4.772c-0.563-2.663-2.581-4.769-4.894-6.07c-4.682-2.636-10.549-2.271-15.553-0.853
+ c-4.6,1.304-8.742,3.947-12.051,7.384c-1.205,1.257-2.307,2.62-3.287,4.063c2.852-0.219,5.713-0.366,8.573-0.424
+ C217.34,209.206,218.945,207.814,220.757,206.754z"/>
+
+ <linearGradient id="XMLID_51_" gradientUnits="userSpaceOnUse" x1="196.4858" y1="353.0273" x2="173.7346" y2="427.3483" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2427 -194.2114)">
+ <stop offset="0" style="stop-color:#F7FFFF"/>
+ <stop offset="0.1124" style="stop-color:#D9E8ED"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_51_)" d="M178.143,206.43c2.533-1.227,5.443-1.605,8.228-1.338c2.413,0.232,4.957,1.115,6.364,3.217
+ c0.653,0.978,1.035,2.141,1.878,2.98c0.905,0.906,2.284,0.488,3.316,0.078c2.088-0.832,2.137-3.338,1.555-5.184
+ c-0.742-2.354-2.603-4.199-4.715-5.391c-4.68-2.634-10.543-2.271-15.548-0.853c-9.294,2.636-16.456,10.582-19.34,19.649
+ c-0.134,0.429-0.255,0.864-0.373,1.306c2.804-0.869,5.726-1.728,8.744-2.556c0.805-2.366,1.985-4.608,3.56-6.538
+ C173.564,209.657,175.625,207.645,178.143,206.43z"/>
+</g>
+<g id="Calque_8">
+ <g>
+ <g>
+
+ <radialGradient id="XMLID_52_" cx="147.7085" cy="348.5166" r="52.7762" gradientTransform="matrix(1.0169 0.0102 0.0047 1.0111 4.6242 -193.2883)" gradientUnits="userSpaceOnUse">
+ <stop offset="0.118" style="stop-color:#1C86EE"/>
+ <stop offset="0.5169" style="stop-color:#80D1FF"/>
+ <stop offset="0.6036" style="stop-color:#5BB5F9"/>
+ <stop offset="0.7215" style="stop-color:#2E93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ </radialGradient>
+ <path fill="url(#XMLID_52_)" d="M173.665,170.965c-6.073,18.438-23.024,29.468-37.183,23.018
+ c-14.01-6.38-18.025-26.629-9.83-43.751c7.479-15.64,22.729-23.224,34.717-18.086
+ C173.459,137.33,179.202,154.149,173.665,170.965z"/>
+
+ <linearGradient id="XMLID_53_" gradientUnits="userSpaceOnUse" x1="147.7441" y1="374.1729" x2="124.3015" y2="262.8594" gradientTransform="matrix(1.0119 0.009 0.0036 1.008 3.178 -192.6773)">
+ <stop offset="0" style="stop-color:#1C86EE"/>
+ <stop offset="0.118" style="stop-color:#1C86EE"/>
+ <stop offset="0.5169" style="stop-color:#7DCFFE"/>
+ <stop offset="0.5989" style="stop-color:#5BB5F8"/>
+ <stop offset="0.7199" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_53_)" d="M173.629,170.978c-6.04,18.362-22.887,29.312-36.972,22.898
+ c-13.939-6.345-18.009-26.494-9.925-43.582c7.394-15.659,22.594-23.29,34.586-18.148
+ C173.411,137.334,179.153,154.18,173.629,170.978z"/>
+
+ <linearGradient id="XMLID_54_" gradientUnits="userSpaceOnUse" x1="147.9409" y1="375.7422" x2="132.843" y2="264.589" gradientTransform="matrix(1.007 0.0077 0.0025 1.005 2.5764 -192.1149)">
+ <stop offset="0" style="stop-color:#1D86EE"/>
+ <stop offset="0.118" style="stop-color:#1D86EE"/>
+ <stop offset="0.5169" style="stop-color:#7ACCFE"/>
+ <stop offset="0.594" style="stop-color:#5BB5F9"/>
+ <stop offset="0.7182" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_54_)" d="M173.593,170.991c-6.007,18.286-22.75,29.155-36.761,22.778
+ c-13.868-6.31-17.993-26.359-10.02-43.412c7.308-15.678,22.458-23.357,34.455-18.211
+ C173.363,137.338,179.104,154.211,173.593,170.991z"/>
+
+ <linearGradient id="XMLID_55_" gradientUnits="userSpaceOnUse" x1="148.894" y1="377.998" x2="142.0136" y2="267.9479" gradientTransform="matrix(1.002 0.0064 0.0014 1.0019 1.1296 -192.3518)">
+ <stop offset="0" style="stop-color:#1D87EE"/>
+ <stop offset="0.118" style="stop-color:#1D87EE"/>
+ <stop offset="0.5169" style="stop-color:#77CAFD"/>
+ <stop offset="0.5887" style="stop-color:#5BB5F8"/>
+ <stop offset="0.7165" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_55_)" d="M173.558,171.004c-5.975,18.209-22.613,28.999-36.55,22.658
+ c-13.797-6.276-17.977-26.225-10.115-43.243c7.222-15.697,22.323-23.424,34.323-18.273
+ C173.314,137.342,179.055,154.242,173.558,171.004z"/>
+
+ <linearGradient id="XMLID_56_" gradientUnits="userSpaceOnUse" x1="149.7539" y1="380.1016" x2="150.8477" y2="272.0876" gradientTransform="matrix(0.9971 0.0051 2.000000e-004 0.9988 -0.2735 -192.5862)">
+ <stop offset="0" style="stop-color:#1E87EE"/>
+ <stop offset="0.118" style="stop-color:#1D87EE"/>
+ <stop offset="0.5169" style="stop-color:#74C8FD"/>
+ <stop offset="0.5831" style="stop-color:#5BB5F9"/>
+ <stop offset="0.7146" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_56_)" d="M173.522,171.018c-5.942,18.133-22.476,28.843-36.339,22.538
+ c-13.726-6.241-17.96-26.09-10.209-43.073c7.135-15.717,22.187-23.491,34.191-18.336
+ C173.267,137.346,179.006,154.272,173.522,171.018z"/>
+
+ <linearGradient id="XMLID_57_" gradientUnits="userSpaceOnUse" x1="150.5835" y1="382.0322" x2="159.292" y2="276.9577" gradientTransform="matrix(0.9921 0.0038 -9.000000e-004 0.9957 -1.7202 -192.8226)">
+ <stop offset="0" style="stop-color:#1E87EE"/>
+ <stop offset="0.118" style="stop-color:#1E87EE"/>
+ <stop offset="0.5169" style="stop-color:#71C5FC"/>
+ <stop offset="0.5772" style="stop-color:#5BB5F8"/>
+ <stop offset="0.7126" style="stop-color:#2D93F1"/>
+ <stop offset="0.7809" style="stop-color:#1C86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_57_)" d="M173.487,171.031c-5.909,18.057-22.339,28.687-36.128,22.418
+ c-13.655-6.206-17.944-25.955-10.304-42.903c7.049-15.736,22.052-23.557,34.06-18.398
+ C173.218,137.35,178.957,154.303,173.487,171.031z"/>
+
+ <linearGradient id="XMLID_58_" gradientUnits="userSpaceOnUse" x1="150.5122" y1="382.9463" x2="166.3651" y2="281.6582" gradientTransform="matrix(0.9872 0.0025 -0.002 0.9927 -2.3233 -192.2593)">
+ <stop offset="0" style="stop-color:#1E87EE"/>
+ <stop offset="0.118" style="stop-color:#1E87EE"/>
+ <stop offset="0.5169" style="stop-color:#6EC3FC"/>
+ <stop offset="0.5686" style="stop-color:#5CB5F9"/>
+ <stop offset="0.7098" style="stop-color:#2E93F1"/>
+ <stop offset="0.7809" style="stop-color:#1D86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_58_)" d="M173.451,171.044c-5.876,17.98-22.202,28.53-35.917,22.298
+ c-13.584-6.171-17.928-25.82-10.399-42.733c6.963-15.755,21.917-23.624,33.929-18.46
+ C173.17,137.354,178.908,154.334,173.451,171.044z"/>
+
+ <linearGradient id="XMLID_59_" gradientUnits="userSpaceOnUse" x1="151.2979" y1="383.6377" x2="173.7307" y2="286.88" gradientTransform="matrix(0.9822 0.0013 -0.0031 0.9896 -3.77 -191.6517)">
+ <stop offset="0" style="stop-color:#1F88EE"/>
+ <stop offset="0.118" style="stop-color:#1E87EE"/>
+ <stop offset="0.5169" style="stop-color:#6BC1FB"/>
+ <stop offset="0.5616" style="stop-color:#5CB5F8"/>
+ <stop offset="0.7074" style="stop-color:#2E93F1"/>
+ <stop offset="0.7809" style="stop-color:#1D86EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_59_)" d="M173.416,171.057c-5.844,17.904-22.065,28.374-35.707,22.178
+ c-13.513-6.136-17.912-25.685-10.494-42.564c6.877-15.774,21.781-23.69,33.797-18.522
+ C173.122,137.358,178.859,154.365,173.416,171.057z"/>
+
+ <linearGradient id="XMLID_60_" gradientUnits="userSpaceOnUse" x1="152.1089" y1="385" x2="180.4698" y2="293.4412" gradientTransform="matrix(0.9772 0 -0.0042 0.9865 -5.2167 -191.8881)">
+ <stop offset="0" style="stop-color:#1F88EE"/>
+ <stop offset="0.118" style="stop-color:#1F88EE"/>
+ <stop offset="0.5169" style="stop-color:#68BEFB"/>
+ <stop offset="0.5541" style="stop-color:#5CB5F9"/>
+ <stop offset="0.7049" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_60_)" d="M173.38,171.07c-5.811,17.828-21.928,28.218-35.495,22.058
+ c-13.442-6.102-17.896-25.55-10.589-42.395c6.792-15.794,21.646-23.758,33.666-18.585
+ C173.074,137.362,178.81,154.396,173.38,171.07z"/>
+
+ <linearGradient id="XMLID_61_" gradientUnits="userSpaceOnUse" x1="152.0825" y1="386.168" x2="185.6536" y2="300.3651" gradientTransform="matrix(0.9723 -0.0013 -0.0053 0.9834 -5.8197 -192.123)">
+ <stop offset="0" style="stop-color:#1F88EE"/>
+ <stop offset="0.118" style="stop-color:#1F88EE"/>
+ <stop offset="0.5169" style="stop-color:#65BCFA"/>
+ <stop offset="0.546" style="stop-color:#5CB5F8"/>
+ <stop offset="0.7022" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_61_)" d="M173.345,171.083c-5.778,17.751-21.791,28.062-35.284,21.938
+ c-13.371-6.067-17.879-25.416-10.684-42.225c6.706-15.813,21.51-23.824,33.535-18.647
+ C173.026,137.367,178.761,154.426,173.345,171.083z"/>
+
+ <linearGradient id="XMLID_62_" gradientUnits="userSpaceOnUse" x1="153.0029" y1="387.1455" x2="191.0197" y2="307.5345" gradientTransform="matrix(0.9673 -0.0026 -0.0064 0.9803 -7.2665 -192.3584)">
+ <stop offset="0" style="stop-color:#2088EE"/>
+ <stop offset="0.118" style="stop-color:#2088EE"/>
+ <stop offset="0.5169" style="stop-color:#62BAFA"/>
+ <stop offset="0.5373" style="stop-color:#5CB5F9"/>
+ <stop offset="0.6993" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_62_)" d="M173.309,171.097c-5.746,17.675-21.654,27.905-35.073,21.818
+ c-13.3-6.032-17.864-25.281-10.778-42.055c6.619-15.833,21.375-23.891,33.403-18.71
+ C172.978,137.371,178.712,154.457,173.309,171.097z"/>
+
+ <linearGradient id="XMLID_63_" gradientUnits="userSpaceOnUse" x1="153.1177" y1="387.0771" x2="194.7797" y2="313.9872" gradientTransform="matrix(0.9624 -0.0039 -0.0075 0.9773 -7.87 -191.796)">
+ <stop offset="0" style="stop-color:#2088EE"/>
+ <stop offset="0.118" style="stop-color:#2088EE"/>
+ <stop offset="0.5169" style="stop-color:#5FB7F9"/>
+ <stop offset="0.5279" style="stop-color:#5CB5F8"/>
+ <stop offset="0.6962" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_63_)" d="M173.273,171.11c-5.713,17.599-21.517,27.749-34.862,21.698
+ c-13.229-5.998-17.847-25.146-10.873-41.886c6.533-15.852,21.239-23.958,33.271-18.772
+ C172.93,137.375,178.663,154.488,173.273,171.11z"/>
+
+ <linearGradient id="XMLID_64_" gradientUnits="userSpaceOnUse" x1="154.2466" y1="387.6943" x2="198.7525" y2="321.3156" gradientTransform="matrix(0.9574 -0.0052 -0.0086 0.9742 -9.3167 -192.0324)">
+ <stop offset="0" style="stop-color:#2189EE"/>
+ <stop offset="0.118" style="stop-color:#2088EE"/>
+ <stop offset="0.5169" style="stop-color:#5CB5F8"/>
+ <stop offset="0.5176" style="stop-color:#5CB5F8"/>
+ <stop offset="0.6927" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_64_)" d="M173.238,171.123c-5.681,17.523-21.38,27.593-34.651,21.578
+ c-13.158-5.962-17.831-25.011-10.968-41.716c6.447-15.871,21.104-24.024,33.14-18.834
+ C172.881,137.378,178.614,154.519,173.238,171.123z"/>
+
+ <linearGradient id="XMLID_65_" gradientUnits="userSpaceOnUse" x1="155.5146" y1="388.1504" x2="202.0645" y2="328.5667" gradientTransform="matrix(0.9524 -0.0065 -0.0097 0.9711 -10.763 -192.2664)">
+ <stop offset="0" style="stop-color:#2189EE"/>
+ <stop offset="0.118" style="stop-color:#2189EE"/>
+ <stop offset="0.5169" style="stop-color:#59B3F8"/>
+ <stop offset="0.689" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_65_)" d="M173.203,171.136c-5.647,17.446-21.243,27.438-34.44,21.458
+ c-13.087-5.928-17.815-24.876-11.063-41.547c6.361-15.89,20.968-24.091,33.009-18.897
+ C172.833,137.383,178.565,154.549,173.203,171.136z"/>
+
+ <linearGradient id="XMLID_66_" gradientUnits="userSpaceOnUse" x1="156.0215" y1="387.5674" x2="203.8433" y2="334.7467" gradientTransform="matrix(0.9475 -0.0077 -0.0108 0.968 -11.3655 -191.6588)">
+ <stop offset="0" style="stop-color:#2189EE"/>
+ <stop offset="0.118" style="stop-color:#2189EE"/>
+ <stop offset="0.5169" style="stop-color:#56B0F7"/>
+ <stop offset="0.6849" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_66_)" d="M173.167,171.149c-5.615,17.37-21.105,27.28-34.229,21.338
+ c-13.016-5.894-17.799-24.741-11.158-41.377c6.275-15.91,20.833-24.158,32.877-18.959
+ C172.785,137.387,178.516,154.58,173.167,171.149z"/>
+
+ <linearGradient id="XMLID_67_" gradientUnits="userSpaceOnUse" x1="157.605" y1="386.8857" x2="205.9639" y2="340.6957" gradientTransform="matrix(0.9425 -0.009 -0.0119 0.965 -12.8123 -191.0964)">
+ <stop offset="0" style="stop-color:#2289EE"/>
+ <stop offset="0.118" style="stop-color:#2189EE"/>
+ <stop offset="0.5169" style="stop-color:#53AEF7"/>
+ <stop offset="0.6803" style="stop-color:#2E94F1"/>
+ <stop offset="0.7809" style="stop-color:#1D87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_67_)" d="M173.131,171.163c-5.582,17.294-20.968,27.124-34.018,21.218
+ c-12.944-5.858-17.783-24.606-11.252-41.208c6.189-15.929,20.698-24.225,32.746-19.021
+ C172.737,137.391,178.467,154.611,173.131,171.163z"/>
+
+ <linearGradient id="XMLID_68_" gradientUnits="userSpaceOnUse" x1="158.4619" y1="386.958" x2="206.6836" y2="347.1672" gradientTransform="matrix(0.9376 -0.0103 -0.013 0.9619 -13.4163 -191.3318)">
+ <stop offset="0" style="stop-color:#228AEF"/>
+ <stop offset="0.118" style="stop-color:#2289EF"/>
+ <stop offset="0.5169" style="stop-color:#4FACF6"/>
+ <stop offset="0.6716" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_68_)" d="M173.096,171.176c-5.55,17.217-20.832,26.968-33.807,21.097
+ c-12.874-5.824-17.767-24.472-11.347-41.038c6.103-15.949,20.562-24.292,32.614-19.084
+ C172.689,137.395,178.418,154.642,173.096,171.176z"/>
+
+ <linearGradient id="XMLID_69_" gradientUnits="userSpaceOnUse" x1="160.4146" y1="386.959" x2="207.8983" y2="353.2505" gradientTransform="matrix(0.9326 -0.0116 -0.0141 0.9588 -14.8625 -191.5682)">
+ <stop offset="0" style="stop-color:#238AEF"/>
+ <stop offset="0.118" style="stop-color:#2289EF"/>
+ <stop offset="0.5169" style="stop-color:#4CAAF6"/>
+ <stop offset="0.6656" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_69_)" d="M173.061,171.189c-5.517,17.141-20.695,26.812-33.596,20.977
+ c-12.803-5.789-17.75-24.337-11.442-40.868c6.017-15.968,20.427-24.358,32.483-19.146
+ C172.641,137.399,178.37,154.672,173.061,171.189z"/>
+
+ <linearGradient id="XMLID_70_" gradientUnits="userSpaceOnUse" x1="162.5522" y1="386.9033" x2="208.7663" y2="358.9007" gradientTransform="matrix(0.9276 -0.0129 -0.0152 0.9557 -16.3092 -191.8031)">
+ <stop offset="0" style="stop-color:#238AEF"/>
+ <stop offset="0.118" style="stop-color:#2289EF"/>
+ <stop offset="0.5169" style="stop-color:#49A7F5"/>
+ <stop offset="0.6587" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_70_)" d="M173.025,171.203c-5.484,17.065-20.558,26.655-33.385,20.857
+ c-12.731-5.754-17.734-24.202-11.537-40.698c5.931-15.987,20.292-24.425,32.352-19.208
+ C172.593,137.403,178.32,154.703,173.025,171.203z"/>
+
+ <linearGradient id="XMLID_71_" gradientUnits="userSpaceOnUse" x1="163.9199" y1="385.918" x2="208.4154" y2="363.1921" gradientTransform="matrix(0.9227 -0.0142 -0.0163 0.9527 -16.9128 -191.2403)">
+ <stop offset="0" style="stop-color:#238AEF"/>
+ <stop offset="0.118" style="stop-color:#238AEF"/>
+ <stop offset="0.5169" style="stop-color:#46A5F5"/>
+ <stop offset="0.6509" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_71_)" d="M172.989,171.216c-5.451,16.988-20.42,26.499-33.174,20.737
+ c-12.661-5.72-17.718-24.067-11.632-40.529c5.845-16.006,20.156-24.492,32.22-19.271
+ C172.545,137.407,178.271,154.734,172.989,171.216z"/>
+
+ <linearGradient id="XMLID_72_" gradientUnits="userSpaceOnUse" x1="166.3784" y1="384.8955" x2="208.7956" y2="366.9797" gradientTransform="matrix(0.9177 -0.0154 -0.0174 0.9496 -18.359 -190.6317)">
+ <stop offset="0" style="stop-color:#248BEF"/>
+ <stop offset="0.118" style="stop-color:#238AEF"/>
+ <stop offset="0.5169" style="stop-color:#43A3F4"/>
+ <stop offset="0.6422" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_72_)" d="M172.954,171.229c-5.419,16.912-20.284,26.343-32.963,20.617
+ c-12.589-5.685-17.702-23.933-11.727-40.359c5.759-16.026,20.021-24.559,32.089-19.333
+ C172.497,137.411,178.223,154.765,172.954,171.229z"/>
+
+ <linearGradient id="XMLID_73_" gradientUnits="userSpaceOnUse" x1="168.0645" y1="384.7578" x2="208.1143" y2="371.1703" gradientTransform="matrix(0.9128 -0.0167 -0.0185 0.9465 -18.9621 -190.8685)">
+ <stop offset="0" style="stop-color:#248BEF"/>
+ <stop offset="0.118" style="stop-color:#238AEF"/>
+ <stop offset="0.5169" style="stop-color:#40A0F3"/>
+ <stop offset="0.6318" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_73_)" d="M172.918,171.242c-5.386,16.836-20.146,26.187-32.752,20.497
+ c-12.518-5.65-17.686-23.797-11.821-40.19c5.673-16.045,19.885-24.625,31.958-19.396
+ C172.448,137.415,178.174,154.795,172.918,171.242z"/>
+
+ <linearGradient id="XMLID_74_" gradientUnits="userSpaceOnUse" x1="170.8232" y1="384.6436" x2="208.2939" y2="374.8952" gradientTransform="matrix(0.9078 -0.018 -0.0196 0.9434 -20.4088 -191.1045)">
+ <stop offset="0" style="stop-color:#258BEF"/>
+ <stop offset="0.118" style="stop-color:#248AEF"/>
+ <stop offset="0.5169" style="stop-color:#3D9EF3"/>
+ <stop offset="0.6196" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_74_)" d="M172.883,171.255c-5.354,16.76-20.009,26.03-32.541,20.377
+ c-12.448-5.615-17.67-23.663-11.916-40.02c5.587-16.064,19.75-24.692,31.826-19.458
+ C172.4,137.419,178.125,154.826,172.883,171.255z"/>
+
+ <linearGradient id="XMLID_75_" gradientUnits="userSpaceOnUse" x1="172.7466" y1="384.5195" x2="207.4841" y2="378.1284" gradientTransform="matrix(0.9029 -0.0193 -0.0207 0.9403 -21.0128 -191.3399)">
+ <stop offset="0" style="stop-color:#258BEF"/>
+ <stop offset="0.118" style="stop-color:#248AEF"/>
+ <stop offset="0.5169" style="stop-color:#3A9CF2"/>
+ <stop offset="0.6049" style="stop-color:#2F94F0"/>
+ <stop offset="0.7809" style="stop-color:#1E87EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_75_)" d="M172.847,171.269c-5.321,16.684-19.872,25.874-32.33,20.257
+ c-12.376-5.58-17.653-23.528-12.011-39.851c5.501-16.083,19.614-24.758,31.694-19.52
+ C172.352,137.423,178.076,154.857,172.847,171.269z"/>
+
+ <linearGradient id="XMLID_76_" gradientUnits="userSpaceOnUse" x1="175.7002" y1="383.5332" x2="207.607" y2="380.029" gradientTransform="matrix(0.8979 -0.0206 -0.0218 0.9373 -22.4586 -190.7766)">
+ <stop offset="0" style="stop-color:#258BEF"/>
+ <stop offset="0.118" style="stop-color:#258BEF"/>
+ <stop offset="0.5169" style="stop-color:#3799F2"/>
+ <stop offset="0.5869" style="stop-color:#2F94F1"/>
+ <stop offset="0.7809" style="stop-color:#1E88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_76_)" d="M172.812,171.282c-5.288,16.607-19.735,25.718-32.119,20.137
+ c-12.306-5.546-17.638-23.393-12.106-39.681c5.415-16.103,19.479-24.826,31.563-19.583
+ C172.304,137.427,178.027,154.888,172.812,171.282z"/>
+
+ <linearGradient id="XMLID_77_" gradientUnits="userSpaceOnUse" x1="178.7642" y1="383.4414" x2="207.7752" y2="382.3727" gradientTransform="matrix(0.8929 -0.0219 -0.0229 0.9342 -23.9053 -191.0129)">
+ <stop offset="0" style="stop-color:#268CEF"/>
+ <stop offset="0.118" style="stop-color:#258BEF"/>
+ <stop offset="0.5169" style="stop-color:#3497F1"/>
+ <stop offset="0.5645" style="stop-color:#2F94F0"/>
+ <stop offset="0.7809" style="stop-color:#1E88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_77_)" d="M172.776,171.295c-5.255,16.531-19.598,25.562-31.908,20.017
+ c-12.234-5.511-17.622-23.258-12.201-39.512c5.329-16.122,19.343-24.892,31.432-19.645
+ C172.256,137.431,177.978,154.918,172.776,171.295z"/>
+
+ <linearGradient id="XMLID_78_" gradientUnits="userSpaceOnUse" x1="180.9126" y1="382.3936" x2="206.9879" y2="383.326" gradientTransform="matrix(0.888 -0.0231 -0.024 0.9311 -24.5078 -190.4053)">
+ <stop offset="0" style="stop-color:#268CEF"/>
+ <stop offset="0.118" style="stop-color:#258BEF"/>
+ <stop offset="0.5169" style="stop-color:#3195F1"/>
+ <stop offset="0.5239" style="stop-color:#3095F1"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_78_)" d="M172.741,171.308c-5.223,16.455-19.461,25.405-31.697,19.897
+ c-12.163-5.476-17.605-23.124-12.295-39.342c5.243-16.142,19.208-24.959,31.3-19.708
+ C172.208,137.436,177.929,154.949,172.741,171.308z"/>
+
+ <linearGradient id="XMLID_79_" gradientUnits="userSpaceOnUse" x1="184.1323" y1="382.2773" x2="207.253" y2="384.7914" gradientTransform="matrix(0.883 -0.0244 -0.0251 0.928 -25.9546 -190.6402)">
+ <stop offset="0" style="stop-color:#268CEF"/>
+ <stop offset="0.118" style="stop-color:#268BEF"/>
+ <stop offset="0.5169" style="stop-color:#2E92F0"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_79_)" d="M172.705,171.321c-5.19,16.378-19.324,25.249-31.486,19.777
+ c-12.092-5.441-17.589-22.988-12.391-39.172c5.157-16.161,19.073-25.025,31.169-19.77
+ C172.16,137.439,177.88,154.98,172.705,171.321z"/>
+
+ <linearGradient id="XMLID_80_" gradientUnits="userSpaceOnUse" x1="186.4248" y1="381.1992" x2="206.5794" y2="384.8848" gradientTransform="matrix(0.8781 -0.0257 -0.0262 0.925 -26.5581 -190.0764)">
+ <stop offset="0" style="stop-color:#278CEF"/>
+ <stop offset="0.118" style="stop-color:#268BEF"/>
+ <stop offset="0.5169" style="stop-color:#2B90F0"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_80_)" d="M172.669,171.334c-5.157,16.302-19.187,25.093-31.275,19.657
+ c-12.021-5.406-17.573-22.854-12.485-39.002c5.071-16.18,18.937-25.092,31.037-19.832
+ C172.112,137.443,177.831,155.011,172.669,171.334z"/>
+
+ <linearGradient id="XMLID_81_" gradientUnits="userSpaceOnUse" x1="189.8101" y1="381.0098" x2="206.9989" y2="385.4618" gradientTransform="matrix(0.8731 -0.027 -0.0273 0.9219 -28.0053 -190.3133)">
+ <stop offset="0" style="stop-color:#278DEF"/>
+ <stop offset="0.118" style="stop-color:#268CEF"/>
+ <stop offset="0.5169" style="stop-color:#288EEF"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_81_)" d="M172.634,171.348c-5.125,16.226-19.05,24.937-31.064,19.537
+ c-11.95-5.372-17.557-22.719-12.58-38.833c4.985-16.199,18.801-25.159,30.906-19.895
+ C172.063,137.447,177.782,155.042,172.634,171.348z"/>
+
+ <linearGradient id="XMLID_82_" gradientUnits="userSpaceOnUse" x1="193.3022" y1="380.7695" x2="207.5314" y2="385.5799" gradientTransform="matrix(0.8681 -0.0283 -0.0284 0.9188 -29.452 -190.5492)">
+ <stop offset="0" style="stop-color:#288DEF"/>
+ <stop offset="0.118" style="stop-color:#278CEF"/>
+ <stop offset="0.5169" style="stop-color:#258BEF"/>
+ <stop offset="0.7809" style="stop-color:#1F88EE"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_82_)" d="M172.599,171.361c-5.092,16.149-18.913,24.78-30.853,19.417
+ c-11.879-5.337-17.541-22.584-12.675-38.664c4.899-16.219,18.666-25.226,30.774-19.957
+ C172.016,137.452,177.733,155.072,172.599,171.361z"/>
+
+ <linearGradient id="XMLID_83_" gradientUnits="userSpaceOnUse" x1="196.894" y1="380.4717" x2="208.1796" y2="385.2241" gradientTransform="matrix(0.8632 -0.0296 -0.0296 0.9157 -30.8542 -190.7841)">
+ <stop offset="0" style="stop-color:#288DEF"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_83_)" d="M172.563,171.374c-5.059,16.073-18.776,24.624-30.642,19.297
+ c-11.808-5.302-17.524-22.449-12.77-38.494c4.813-16.238,18.531-25.292,30.643-20.019
+ C171.967,137.456,177.684,155.103,172.563,171.374z"/>
+ </g>
+ </g>
+ <g>
+
+ <linearGradient id="bord_x5F_01_1_" gradientUnits="userSpaceOnUse" x1="128.1006" y1="345.5605" x2="167.9155" y2="362.3145" gradientTransform="matrix(1.014 -0.0058 -0.0058 1.0243 3.555 -199.5085)">
+ <stop offset="0" style="stop-color:#F5FFFD"/>
+ <stop offset="0.103" style="stop-color:#EFFCFD"/>
+ <stop offset="0.2416" style="stop-color:#DEF2FB"/>
+ <stop offset="0.4004" style="stop-color:#C2E2F9"/>
+ <stop offset="0.5743" style="stop-color:#9ACCF7"/>
+ <stop offset="0.7604" style="stop-color:#68B0F3"/>
+ <stop offset="0.954" style="stop-color:#2C8FEF"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path id="bord_x5F_01_2_" display="none" fill="url(#bord_x5F_01_1_)" d="M171.564,170.625
+ c-5.232,16.208-19.158,24.638-30.424,18.449c-10.767-5.915-14.442-22.777-8.834-37.359c5.389-14.025,17.75-21.583,28.169-17.198
+ C171.339,139.092,176.58,155.083,171.564,170.625z"/>
+ <g>
+
+ <linearGradient id="XMLID_1_" gradientUnits="userSpaceOnUse" x1="160.2134" y1="363.3564" x2="170.5038" y2="367.6898" gradientTransform="matrix(0.9353 -0.0269 -0.0269 0.9832 -11.8253 -198.981)">
+ <stop offset="0" style="stop-color:#288DEF"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_1_)" d="M173.615,170.884c-5.874,18.025-22.195,28.817-35.105,23.022c-12.847-5.768-16.046-25.47-8-42.362
+ c7.285-15.292,20.634-23.82,31.407-19.127C172.733,137.126,179.279,153.621,173.615,170.884z"/>
+
+ <linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="159.6836" y1="363.0547" x2="171.365" y2="368.0372" gradientTransform="matrix(0.9373 -0.0259 -0.0259 0.9833 -12.0883 -199.0828)">
+ <stop offset="0" style="stop-color:#2F91EF"/>
+ <stop offset="0.0169" style="stop-color:#2F91EF"/>
+ <stop offset="0.1966" style="stop-color:#2B8FEF"/>
+ <stop offset="0.6471" style="stop-color:#258BEF"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_2_)" d="M173.565,170.948c-5.882,17.946-22.134,28.634-34.979,22.834
+ c-12.769-5.766-15.983-25.353-8.017-42.167c7.23-15.269,20.574-23.789,31.354-19.099
+ C172.762,137.229,179.247,153.736,173.565,170.948z"/>
+
+ <linearGradient id="XMLID_3_" gradientUnits="userSpaceOnUse" x1="158.2686" y1="362.709" x2="171.3202" y2="368.3468" gradientTransform="matrix(0.9393 -0.0248 -0.0248 0.9833 -11.5513 -199.1414)">
+ <stop offset="0" style="stop-color:#3694F0"/>
+ <stop offset="0.0169" style="stop-color:#3694F0"/>
+ <stop offset="0.1966" style="stop-color:#3092F0"/>
+ <stop offset="0.5721" style="stop-color:#2A8FEF"/>
+ <stop offset="1" style="stop-color:#1C87EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_3_)" d="M173.516,171.013c-5.892,17.867-22.073,28.451-34.853,22.646
+ c-12.691-5.764-15.919-25.235-8.033-41.973c7.177-15.246,20.515-23.758,31.302-19.071
+ C172.792,137.332,179.214,153.851,173.516,171.013z"/>
+
+ <linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="156.8408" y1="361.5127" x2="171.2442" y2="367.813" gradientTransform="matrix(0.9413 -0.0237 -0.0237 0.9834 -11.0152 -198.4007)">
+ <stop offset="0" style="stop-color:#3D98F0"/>
+ <stop offset="0.0169" style="stop-color:#3D98F0"/>
+ <stop offset="0.1966" style="stop-color:#3595F0"/>
+ <stop offset="0.5225" style="stop-color:#2F92F0"/>
+ <stop offset="0.9596" style="stop-color:#1E88EE"/>
+ <stop offset="1" style="stop-color:#1C87EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_4_)" d="M173.466,171.077c-5.901,17.789-22.011,28.268-34.726,22.458
+ c-12.613-5.761-15.856-25.118-8.049-41.777c7.123-15.223,20.455-23.729,31.25-19.043
+ C172.821,137.435,179.182,153.966,173.466,171.077z"/>
+
+ <linearGradient id="XMLID_5_" gradientUnits="userSpaceOnUse" x1="155.4414" y1="361.1729" x2="171.1777" y2="368.1425" gradientTransform="matrix(0.9433 -0.0226 -0.0226 0.9834 -10.4797 -198.4592)">
+ <stop offset="0" style="stop-color:#449CF1"/>
+ <stop offset="0.0169" style="stop-color:#449CF1"/>
+ <stop offset="0.1966" style="stop-color:#3998F1"/>
+ <stop offset="0.4933" style="stop-color:#3394F0"/>
+ <stop offset="0.8911" style="stop-color:#228AEF"/>
+ <stop offset="1" style="stop-color:#1C87EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_5_)" d="M173.417,171.142c-5.911,17.71-21.95,28.084-34.6,22.271c-12.535-5.759-15.793-25-8.065-41.583
+ c7.069-15.201,20.395-23.698,31.197-19.015C172.851,137.538,179.149,154.081,173.417,171.142z"/>
+
+ <linearGradient id="XMLID_6_" gradientUnits="userSpaceOnUse" x1="154.0322" y1="359.9834" x2="171.0822" y2="367.6288" gradientTransform="matrix(0.9453 -0.0215 -0.0215 0.9835 -9.9436 -197.7205)">
+ <stop offset="0" style="stop-color:#4B9FF1"/>
+ <stop offset="0.0169" style="stop-color:#4B9FF1"/>
+ <stop offset="0.1966" style="stop-color:#3E9BF1"/>
+ <stop offset="0.4648" style="stop-color:#3897F0"/>
+ <stop offset="0.8243" style="stop-color:#278DEF"/>
+ <stop offset="1" style="stop-color:#1C87EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_6_)" d="M173.367,171.206c-5.919,17.631-21.888,27.901-34.473,22.083
+ c-12.458-5.757-15.73-24.883-8.082-41.388c7.015-15.178,20.334-23.667,31.144-18.987
+ C172.88,137.641,179.117,154.196,173.367,171.206z"/>
+
+ <linearGradient id="XMLID_7_" gradientUnits="userSpaceOnUse" x1="152.6333" y1="358.7979" x2="170.9788" y2="367.1256" gradientTransform="matrix(0.9473 -0.0204 -0.0204 0.9836 -9.4076 -196.9788)">
+ <stop offset="0" style="stop-color:#52A3F2"/>
+ <stop offset="0.0169" style="stop-color:#52A3F2"/>
+ <stop offset="0.1966" style="stop-color:#439DF2"/>
+ <stop offset="0.4425" style="stop-color:#3D9AF1"/>
+ <stop offset="0.772" style="stop-color:#2C91F0"/>
+ <stop offset="1" style="stop-color:#1C88EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_7_)" d="M173.318,171.271c-5.929,17.552-21.827,27.718-34.346,21.895
+ c-12.38-5.754-15.667-24.765-8.099-41.193c6.961-15.155,20.275-23.636,31.092-18.958
+ C172.909,137.744,179.084,154.312,173.318,171.271z"/>
+
+ <linearGradient id="XMLID_8_" gradientUnits="userSpaceOnUse" x1="152.1626" y1="358.4795" x2="171.7877" y2="367.497" gradientTransform="matrix(0.9492 -0.0193 -0.0193 0.9836 -9.7137 -197.0374)">
+ <stop offset="0" style="stop-color:#59A7F2"/>
+ <stop offset="0.0169" style="stop-color:#59A7F2"/>
+ <stop offset="0.1966" style="stop-color:#48A0F2"/>
+ <stop offset="0.4243" style="stop-color:#429DF1"/>
+ <stop offset="0.7295" style="stop-color:#3193F0"/>
+ <stop offset="1" style="stop-color:#1C88EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_8_)" d="M173.268,171.335c-5.938,17.474-21.766,27.535-34.22,21.707
+ c-12.302-5.751-15.604-24.647-8.115-40.998c6.907-15.132,20.215-23.606,31.039-18.931
+ C172.939,137.847,179.052,154.426,173.268,171.335z"/>
+
+ <linearGradient id="XMLID_9_" gradientUnits="userSpaceOnUse" x1="151.6733" y1="358.1885" x2="172.5605" y2="367.9024" gradientTransform="matrix(0.9512 -0.0183 -0.0183 0.9837 -9.9778 -197.1411)">
+ <stop offset="0" style="stop-color:#5FAAF3"/>
+ <stop offset="0.0169" style="stop-color:#5FAAF3"/>
+ <stop offset="0.1966" style="stop-color:#4DA3F3"/>
+ <stop offset="0.4093" style="stop-color:#47A0F2"/>
+ <stop offset="0.695" style="stop-color:#3696F1"/>
+ <stop offset="1" style="stop-color:#1C88EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_9_)" d="M173.219,171.399c-5.947,17.395-21.705,27.352-34.093,21.52
+ c-12.224-5.75-15.541-24.53-8.131-40.804c6.853-15.109,20.155-23.576,30.986-18.903
+ C172.968,137.95,179.02,154.542,173.219,171.399z"/>
+
+ <linearGradient id="XMLID_10_" gradientUnits="userSpaceOnUse" x1="150.3096" y1="357.8555" x2="172.4399" y2="368.2715" gradientTransform="matrix(0.9532 -0.0172 -0.0172 0.9837 -9.4408 -197.1987)">
+ <stop offset="0" style="stop-color:#66AEF3"/>
+ <stop offset="0.0169" style="stop-color:#66AEF3"/>
+ <stop offset="0.1966" style="stop-color:#52A6F3"/>
+ <stop offset="0.3966" style="stop-color:#4CA3F2"/>
+ <stop offset="0.6652" style="stop-color:#3B9AF1"/>
+ <stop offset="0.9717" style="stop-color:#1F8BEE"/>
+ <stop offset="1" style="stop-color:#1C89EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_10_)" d="M173.169,171.464c-5.957,17.316-21.643,27.169-33.966,21.332
+ c-12.146-5.747-15.478-24.413-8.148-40.609c6.799-15.086,20.095-23.545,30.934-18.875
+ C172.998,138.053,178.987,154.657,173.169,171.464z"/>
+
+ <linearGradient id="XMLID_11_" gradientUnits="userSpaceOnUse" x1="148.9375" y1="356.6768" x2="172.294" y2="367.8012" gradientTransform="matrix(0.9552 -0.0161 -0.0161 0.9838 -8.9037 -196.458)">
+ <stop offset="0" style="stop-color:#6DB2F4"/>
+ <stop offset="0.0169" style="stop-color:#6DB2F4"/>
+ <stop offset="0.1966" style="stop-color:#57A9F4"/>
+ <stop offset="0.3857" style="stop-color:#51A6F3"/>
+ <stop offset="0.6397" style="stop-color:#409CF2"/>
+ <stop offset="0.9294" style="stop-color:#248DEF"/>
+ <stop offset="1" style="stop-color:#1C89EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_11_)" d="M173.12,171.528c-5.966,17.237-21.582,26.985-33.84,21.144
+ c-12.068-5.745-15.415-24.295-8.164-40.415c6.745-15.063,20.035-23.514,30.881-18.846
+ C173.027,138.156,178.955,154.771,173.12,171.528z"/>
+
+ <linearGradient id="XMLID_12_" gradientUnits="userSpaceOnUse" x1="147.5771" y1="355.5" x2="172.142" y2="367.3387" gradientTransform="matrix(0.9572 -0.015 -0.015 0.9839 -8.3681 -195.7183)">
+ <stop offset="0" style="stop-color:#74B5F4"/>
+ <stop offset="0.0169" style="stop-color:#74B5F4"/>
+ <stop offset="0.1966" style="stop-color:#5CACF4"/>
+ <stop offset="0.3761" style="stop-color:#56A9F3"/>
+ <stop offset="0.6173" style="stop-color:#459FF2"/>
+ <stop offset="0.8925" style="stop-color:#2990EF"/>
+ <stop offset="1" style="stop-color:#1C89EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_12_)" d="M173.07,171.593c-5.975,17.159-21.52,26.802-33.713,20.956
+ c-11.991-5.743-15.352-24.178-8.181-40.22c6.691-15.041,19.975-23.483,30.829-18.818
+ C173.056,138.259,178.922,154.887,173.07,171.593z"/>
+
+ <linearGradient id="XMLID_13_" gradientUnits="userSpaceOnUse" x1="146.2378" y1="355.1748" x2="171.9944" y2="367.7339" gradientTransform="matrix(0.9592 -0.0139 -0.0139 0.9839 -7.8316 -195.7758)">
+ <stop offset="0" style="stop-color:#7BB9F4"/>
+ <stop offset="0.0169" style="stop-color:#7BB9F4"/>
+ <stop offset="0.1966" style="stop-color:#60AFF4"/>
+ <stop offset="0.3694" style="stop-color:#5AACF3"/>
+ <stop offset="0.6015" style="stop-color:#49A2F2"/>
+ <stop offset="0.8663" style="stop-color:#2D92EF"/>
+ <stop offset="1" style="stop-color:#1C89EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_13_)" d="M173.02,171.657c-5.984,17.08-21.458,26.619-33.587,20.768
+ c-11.913-5.74-15.288-24.06-8.197-40.024c6.637-15.019,19.915-23.453,30.776-18.791
+ C173.086,138.362,178.89,155.001,173.02,171.657z"/>
+
+ <linearGradient id="XMLID_14_" gradientUnits="userSpaceOnUse" x1="144.8911" y1="354.0039" x2="171.8237" y2="367.2899" gradientTransform="matrix(0.9612 -0.0128 -0.0128 0.984 -7.2951 -195.0351)">
+ <stop offset="0" style="stop-color:#82BDF5"/>
+ <stop offset="0.0169" style="stop-color:#82BDF5"/>
+ <stop offset="0.1966" style="stop-color:#65B2F5"/>
+ <stop offset="0.3618" style="stop-color:#5FAFF4"/>
+ <stop offset="0.5837" style="stop-color:#4EA5F3"/>
+ <stop offset="0.8368" style="stop-color:#3296F0"/>
+ <stop offset="1" style="stop-color:#1C8AEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_14_)" d="M172.971,171.722c-5.993,17.001-21.397,26.436-33.46,20.581
+ c-11.835-5.738-15.225-23.943-8.213-39.83c6.583-14.996,19.855-23.423,30.724-18.762
+ C173.115,138.465,178.857,155.117,172.971,171.722z"/>
+
+ <linearGradient id="XMLID_15_" gradientUnits="userSpaceOnUse" x1="143.5674" y1="353.6846" x2="171.6586" y2="367.7029" gradientTransform="matrix(0.9632 -0.0117 -0.0117 0.984 -6.7595 -195.0946)">
+ <stop offset="0" style="stop-color:#89C0F5"/>
+ <stop offset="0.0169" style="stop-color:#89C0F5"/>
+ <stop offset="0.1966" style="stop-color:#6AB5F5"/>
+ <stop offset="0.355" style="stop-color:#64B2F4"/>
+ <stop offset="0.5677" style="stop-color:#53A8F3"/>
+ <stop offset="0.8103" style="stop-color:#3799F0"/>
+ <stop offset="1" style="stop-color:#1C8AEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_15_)" d="M172.921,171.786c-6.002,16.922-21.336,26.253-33.333,20.393
+ c-11.757-5.736-15.162-23.825-8.23-39.635c6.529-14.973,19.795-23.392,30.671-18.734
+ C173.145,138.568,178.825,155.232,172.921,171.786z"/>
+
+ <linearGradient id="XMLID_16_" gradientUnits="userSpaceOnUse" x1="143.1123" y1="353.3994" x2="172.3497" y2="368.1578" gradientTransform="matrix(0.9652 -0.0107 -0.0107 0.9841 -7.0226 -195.1965)">
+ <stop offset="0" style="stop-color:#90C4F6"/>
+ <stop offset="0.0169" style="stop-color:#90C4F6"/>
+ <stop offset="0.1966" style="stop-color:#6FB8F6"/>
+ <stop offset="0.3489" style="stop-color:#69B5F5"/>
+ <stop offset="0.5534" style="stop-color:#58ABF4"/>
+ <stop offset="0.7867" style="stop-color:#3C9CF1"/>
+ <stop offset="1" style="stop-color:#1C8AEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_16_)" d="M172.872,171.851c-6.012,16.844-21.275,26.07-33.208,20.205
+ c-11.679-5.733-15.099-23.708-8.246-39.44c6.475-14.95,19.735-23.361,30.618-18.706
+ C173.174,138.671,178.792,155.347,172.872,171.851z"/>
+
+ <linearGradient id="XMLID_17_" gradientUnits="userSpaceOnUse" x1="142.6772" y1="352.2402" x2="173.0432" y2="367.7437" gradientTransform="matrix(0.9671 -0.0096 -0.0096 0.9842 -7.3292 -194.4557)">
+ <stop offset="0" style="stop-color:#97C8F6"/>
+ <stop offset="0.0169" style="stop-color:#97C8F6"/>
+ <stop offset="0.1966" style="stop-color:#74BAF6"/>
+ <stop offset="0.3433" style="stop-color:#6EB7F5"/>
+ <stop offset="0.5404" style="stop-color:#5DAEF4"/>
+ <stop offset="0.7662" style="stop-color:#419FF1"/>
+ <stop offset="1" style="stop-color:#1C8BEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_17_)" d="M172.822,171.916c-6.021,16.765-21.213,25.886-33.081,20.017
+ c-11.602-5.731-15.036-23.591-8.263-39.246c6.422-14.927,19.676-23.331,30.566-18.678
+ C173.204,138.775,178.76,155.462,172.822,171.916z"/>
+
+ <linearGradient id="XMLID_18_" gradientUnits="userSpaceOnUse" x1="141.3701" y1="351.9248" x2="172.8483" y2="368.1788" gradientTransform="matrix(0.9691 -0.0085 -0.0085 0.9842 -6.7932 -194.5143)">
+ <stop offset="0" style="stop-color:#9ECCF7"/>
+ <stop offset="0.0169" style="stop-color:#9ECCF7"/>
+ <stop offset="0.1966" style="stop-color:#79BDF7"/>
+ <stop offset="0.3383" style="stop-color:#73BAF6"/>
+ <stop offset="0.5286" style="stop-color:#62B1F5"/>
+ <stop offset="0.7466" style="stop-color:#46A1F2"/>
+ <stop offset="0.9837" style="stop-color:#1F8DEE"/>
+ <stop offset="1" style="stop-color:#1C8BEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_18_)" d="M172.772,171.98c-6.03,16.686-21.152,25.703-32.955,19.829
+ c-11.524-5.729-14.973-23.473-8.279-39.051c6.368-14.904,19.616-23.3,30.514-18.65
+ C173.233,138.878,178.728,155.577,172.772,171.98z"/>
+
+ <linearGradient id="XMLID_19_" gradientUnits="userSpaceOnUse" x1="140.0654" y1="350.7637" x2="172.6386" y2="367.7731" gradientTransform="matrix(0.9711 -0.0074 -0.0074 0.9843 -6.2571 -193.7746)">
+ <stop offset="0" style="stop-color:#A5CFF7"/>
+ <stop offset="0.0169" style="stop-color:#A5CFF7"/>
+ <stop offset="0.1966" style="stop-color:#7EC0F7"/>
+ <stop offset="0.3337" style="stop-color:#78BDF6"/>
+ <stop offset="0.5178" style="stop-color:#67B3F5"/>
+ <stop offset="0.7287" style="stop-color:#4BA4F2"/>
+ <stop offset="0.958" style="stop-color:#248FEF"/>
+ <stop offset="1" style="stop-color:#1C8BEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_19_)" d="M172.723,172.044c-6.04,16.607-21.09,25.52-32.828,19.641
+ c-11.446-5.726-14.91-23.355-8.296-38.856c6.314-14.881,19.556-23.27,30.461-18.622
+ C173.262,138.981,178.695,155.692,172.723,172.044z"/>
+
+ <linearGradient id="XMLID_20_" gradientUnits="userSpaceOnUse" x1="138.7705" y1="350.4512" x2="172.4257" y2="368.2228" gradientTransform="matrix(0.9731 -0.0063 -0.0063 0.9843 -5.7211 -193.8331)">
+ <stop offset="0" style="stop-color:#ACD3F8"/>
+ <stop offset="0.0169" style="stop-color:#ACD3F8"/>
+ <stop offset="0.1966" style="stop-color:#83C3F8"/>
+ <stop offset="0.3294" style="stop-color:#7DC0F7"/>
+ <stop offset="0.5078" style="stop-color:#6CB7F6"/>
+ <stop offset="0.7122" style="stop-color:#50A8F3"/>
+ <stop offset="0.9344" style="stop-color:#2993EF"/>
+ <stop offset="1" style="stop-color:#1C8CEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_20_)" d="M172.673,172.109c-6.049,16.528-21.029,25.336-32.701,19.453
+ c-11.369-5.724-14.847-23.238-8.313-38.662c6.26-14.858,19.496-23.239,30.409-18.593
+ C173.292,139.084,178.663,155.807,172.673,172.109z"/>
+
+ <linearGradient id="XMLID_21_" gradientUnits="userSpaceOnUse" x1="137.479" y1="349.2939" x2="172.1988" y2="367.8322" gradientTransform="matrix(0.9751 -0.0052 -0.0052 0.9844 -5.184 -193.0929)">
+ <stop offset="0" style="stop-color:#B3D7F8"/>
+ <stop offset="0.0169" style="stop-color:#B3D7F8"/>
+ <stop offset="0.1966" style="stop-color:#87C6F8"/>
+ <stop offset="0.3262" style="stop-color:#81C3F7"/>
+ <stop offset="0.5004" style="stop-color:#70B9F6"/>
+ <stop offset="0.6998" style="stop-color:#54AAF3"/>
+ <stop offset="0.9166" style="stop-color:#2D95F0"/>
+ <stop offset="1" style="stop-color:#1C8CEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_21_)" d="M172.624,172.173c-6.058,16.45-20.968,25.153-32.575,19.265
+ c-11.291-5.722-14.783-23.121-8.329-38.466c6.206-14.836,19.436-23.209,30.356-18.566
+ C173.321,139.187,178.63,155.922,172.624,172.173z"/>
+
+ <linearGradient id="XMLID_22_" gradientUnits="userSpaceOnUse" x1="136.1987" y1="348.1387" x2="171.9682" y2="367.449" gradientTransform="matrix(0.9771 -0.0041 -0.0041 0.9845 -4.648 -192.3512)">
+ <stop offset="0" style="stop-color:#BADAF8"/>
+ <stop offset="0.0169" style="stop-color:#BADAF8"/>
+ <stop offset="0.1966" style="stop-color:#8CC9F8"/>
+ <stop offset="0.3225" style="stop-color:#86C6F7"/>
+ <stop offset="0.4917" style="stop-color:#75BCF6"/>
+ <stop offset="0.6855" style="stop-color:#59ADF3"/>
+ <stop offset="0.896" style="stop-color:#3298F0"/>
+ <stop offset="1" style="stop-color:#1C8CEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_22_)" d="M172.574,172.238c-6.067,16.371-20.906,24.97-32.448,19.077
+ c-11.213-5.719-14.72-23.003-8.345-38.271c6.152-14.813,19.376-23.178,30.303-18.538
+ C173.351,139.29,178.598,156.037,172.574,172.238z"/>
+
+ <linearGradient id="XMLID_23_" gradientUnits="userSpaceOnUse" x1="135.7803" y1="348.709" x2="172.5899" y2="368.7997" gradientTransform="matrix(0.9791 -0.0031 -0.0031 0.9845 -4.9106 -193.2528)">
+ <stop offset="0" style="stop-color:#C1DEF9"/>
+ <stop offset="0.0169" style="stop-color:#C1DEF9"/>
+ <stop offset="0.1966" style="stop-color:#91CCF9"/>
+ <stop offset="0.3191" style="stop-color:#8BC9F8"/>
+ <stop offset="0.4836" style="stop-color:#7ABFF7"/>
+ <stop offset="0.6721" style="stop-color:#5EB0F4"/>
+ <stop offset="0.877" style="stop-color:#379BF1"/>
+ <stop offset="1" style="stop-color:#1C8CEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_23_)" d="M172.524,172.302c-6.076,16.292-20.845,24.787-32.322,18.89
+ c-11.135-5.717-14.657-22.886-8.361-38.077c6.098-14.791,19.316-23.147,30.25-18.509
+ C173.38,139.393,178.565,156.152,172.524,172.302z"/>
+
+ <linearGradient id="XMLID_24_" gradientUnits="userSpaceOnUse" x1="134.5112" y1="347.5576" x2="172.3416" y2="368.4317" gradientTransform="matrix(0.9811 -0.002 -0.002 0.9846 -4.3745 -192.5131)">
+ <stop offset="0" style="stop-color:#C8E2F9"/>
+ <stop offset="0.0169" style="stop-color:#C8E2F9"/>
+ <stop offset="0.1966" style="stop-color:#96CFF9"/>
+ <stop offset="0.3158" style="stop-color:#90CCF8"/>
+ <stop offset="0.4761" style="stop-color:#7FC2F7"/>
+ <stop offset="0.6597" style="stop-color:#63B3F4"/>
+ <stop offset="0.8591" style="stop-color:#3C9EF1"/>
+ <stop offset="1" style="stop-color:#1C8DEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_24_)" d="M172.475,172.367c-6.085,16.213-20.783,24.604-32.195,18.702
+ c-11.057-5.715-14.594-22.768-8.378-37.882c6.044-14.768,19.256-23.117,30.198-18.481
+ C173.409,139.496,178.533,156.267,172.475,172.367z"/>
+
+ <linearGradient id="XMLID_25_" gradientUnits="userSpaceOnUse" x1="133.2515" y1="347.2549" x2="172.0898" y2="368.9183" gradientTransform="matrix(0.9831 -9.000000e-004 -9.000000e-004 0.9846 -3.8385 -192.5726)">
+ <stop offset="0" style="stop-color:#CEE5FA"/>
+ <stop offset="0.0169" style="stop-color:#CEE5FA"/>
+ <stop offset="0.1966" style="stop-color:#9BD2FA"/>
+ <stop offset="0.3129" style="stop-color:#95CFF9"/>
+ <stop offset="0.4691" style="stop-color:#84C5F8"/>
+ <stop offset="0.6481" style="stop-color:#68B6F5"/>
+ <stop offset="0.8425" style="stop-color:#41A1F1"/>
+ <stop offset="1" style="stop-color:#1C8DEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_25_)" d="M172.425,172.431c-6.095,16.135-20.722,24.42-32.068,18.514
+ c-10.979-5.713-14.531-22.651-8.395-37.688c5.99-14.745,19.196-23.086,30.146-18.453
+ C173.438,139.599,178.501,156.382,172.425,172.431z"/>
+
+ <linearGradient id="XMLID_26_" gradientUnits="userSpaceOnUse" x1="132.0005" y1="346.1094" x2="171.8303" y2="368.5664" gradientTransform="matrix(0.9851 2.000000e-004 2.000000e-004 0.9847 -3.3019 -191.8309)">
+ <stop offset="0" style="stop-color:#D5E9FA"/>
+ <stop offset="0.0169" style="stop-color:#D5E9FA"/>
+ <stop offset="0.1966" style="stop-color:#A0D5FA"/>
+ <stop offset="0.31" style="stop-color:#9AD2F9"/>
+ <stop offset="0.4625" style="stop-color:#89C8F8"/>
+ <stop offset="0.6372" style="stop-color:#6DB9F5"/>
+ <stop offset="0.8269" style="stop-color:#46A4F2"/>
+ <stop offset="1" style="stop-color:#1C8DEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_26_)" d="M172.375,172.496c-6.104,16.056-20.661,24.237-31.942,18.326
+ c-10.901-5.71-14.467-22.533-8.411-37.493c5.936-14.722,19.136-23.056,30.093-18.425
+ C173.468,139.702,178.468,156.497,172.375,172.496z"/>
+
+ <linearGradient id="XMLID_27_" gradientUnits="userSpaceOnUse" x1="131.6245" y1="344.9619" x2="172.4343" y2="368.2191" gradientTransform="matrix(0.987 0.0013 0.0013 0.9848 -3.6086 -191.0907)">
+ <stop offset="0" style="stop-color:#DCEDFB"/>
+ <stop offset="0.0169" style="stop-color:#DCEDFB"/>
+ <stop offset="0.1966" style="stop-color:#A5D7FB"/>
+ <stop offset="0.3074" style="stop-color:#9FD4FA"/>
+ <stop offset="0.4564" style="stop-color:#8ECBF9"/>
+ <stop offset="0.627" style="stop-color:#72BCF6"/>
+ <stop offset="0.8135" style="stop-color:#4BA7F2"/>
+ <stop offset="1" style="stop-color:#1C8EEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_27_)" d="M172.326,172.56c-6.113,15.977-20.6,24.054-31.815,18.138
+ c-10.824-5.708-14.405-22.416-8.427-37.298c5.882-14.699,19.077-23.025,30.041-18.397
+ C173.498,139.805,178.436,156.612,172.326,172.56z"/>
+
+ <linearGradient id="XMLID_28_" gradientUnits="userSpaceOnUse" x1="130.3853" y1="344.666" x2="172.161" y2="368.7285" gradientTransform="matrix(0.989 0.0024 0.0024 0.9848 -3.072 -191.1483)">
+ <stop offset="0" style="stop-color:#E3F0FB"/>
+ <stop offset="0.0169" style="stop-color:#E3F0FB"/>
+ <stop offset="0.1966" style="stop-color:#AADAFB"/>
+ <stop offset="0.3049" style="stop-color:#A4D7FA"/>
+ <stop offset="0.4505" style="stop-color:#93CEF9"/>
+ <stop offset="0.6173" style="stop-color:#77BFF6"/>
+ <stop offset="0.7999" style="stop-color:#50AAF3"/>
+ <stop offset="0.9933" style="stop-color:#1E8FEE"/>
+ <stop offset="1" style="stop-color:#1C8EEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_28_)" d="M172.276,172.625c-6.122,15.898-20.538,23.871-31.688,17.951
+ c-10.746-5.706-14.342-22.298-8.444-37.104c5.828-14.676,19.017-22.995,29.988-18.369
+ C173.527,139.908,178.404,156.728,172.276,172.625z"/>
+
+ <linearGradient id="XMLID_29_" gradientUnits="userSpaceOnUse" x1="129.1538" y1="343.5244" x2="171.8799" y2="368.3965" gradientTransform="matrix(0.991 0.0035 0.0035 0.9849 -2.536 -190.4085)">
+ <stop offset="0" style="stop-color:#EAF4FC"/>
+ <stop offset="0.0169" style="stop-color:#EAF4FC"/>
+ <stop offset="0.1966" style="stop-color:#AEDDFC"/>
+ <stop offset="0.303" style="stop-color:#A8DAFB"/>
+ <stop offset="0.446" style="stop-color:#97D0FA"/>
+ <stop offset="0.6099" style="stop-color:#7BC1F7"/>
+ <stop offset="0.7893" style="stop-color:#54ACF3"/>
+ <stop offset="0.9793" style="stop-color:#2291EF"/>
+ <stop offset="1" style="stop-color:#1C8EEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_29_)" d="M172.227,172.689c-6.132,15.82-20.477,23.688-31.563,17.763
+ c-10.668-5.703-14.278-22.181-8.46-36.909c5.774-14.654,18.957-22.964,29.935-18.34
+ C173.556,140.011,178.371,156.842,172.227,172.689z"/>
+
+ <linearGradient id="XMLID_30_" gradientUnits="userSpaceOnUse" x1="128.7627" y1="344.0977" x2="172.4304" y2="369.787" gradientTransform="matrix(0.993 0.0045 0.0045 0.9849 -2.799 -191.3091)">
+ <stop offset="0" style="stop-color:#F1F8FC"/>
+ <stop offset="0.0169" style="stop-color:#F1F8FC"/>
+ <stop offset="0.1966" style="stop-color:#B3E0FC"/>
+ <stop offset="0.3008" style="stop-color:#ADDDFB"/>
+ <stop offset="0.4408" style="stop-color:#9CD3FA"/>
+ <stop offset="0.6013" style="stop-color:#80C4F7"/>
+ <stop offset="0.7769" style="stop-color:#59AFF4"/>
+ <stop offset="0.9628" style="stop-color:#2794EF"/>
+ <stop offset="1" style="stop-color:#1C8EEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_30_)" d="M172.177,172.753c-6.141,15.741-20.415,23.504-31.436,17.575
+ c-10.59-5.701-14.215-22.063-8.477-36.713c5.72-14.631,18.896-22.934,29.882-18.313
+ C173.586,140.114,178.339,156.958,172.177,172.753z"/>
+
+ <linearGradient id="XMLID_31_" gradientUnits="userSpaceOnUse" x1="127.5474" y1="342.9619" x2="172.1376" y2="369.4703" gradientTransform="matrix(0.995 0.0056 0.0056 0.985 -2.2625 -190.5684)">
+ <stop offset="0" style="stop-color:#F8FBFD"/>
+ <stop offset="0.0169" style="stop-color:#F8FBFD"/>
+ <stop offset="0.1966" style="stop-color:#B8E3FD"/>
+ <stop offset="0.2987" style="stop-color:#B2E0FC"/>
+ <stop offset="0.4358" style="stop-color:#A1D7FB"/>
+ <stop offset="0.593" style="stop-color:#85C7F8"/>
+ <stop offset="0.765" style="stop-color:#5EB2F4"/>
+ <stop offset="0.9471" style="stop-color:#2C98F0"/>
+ <stop offset="1" style="stop-color:#1C8FEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_31_)" d="M172.128,172.818c-6.15,15.662-20.354,23.321-31.31,17.387
+ c-10.512-5.699-14.152-21.946-8.493-36.519c5.667-14.608,18.837-22.903,29.83-18.285
+ C173.615,140.217,178.306,157.072,172.128,172.818z"/>
+
+ <linearGradient id="XMLID_32_" gradientUnits="userSpaceOnUse" x1="126.3384" y1="341.8262" x2="171.8396" y2="369.1599" gradientTransform="matrix(0.997 0.0067 0.0067 0.9851 -1.7269 -189.8292)">
+ <stop offset="0.0169" style="stop-color:#FFFFFD"/>
+ <stop offset="0.1966" style="stop-color:#BDE6FD"/>
+ <stop offset="0.2966" style="stop-color:#B7E3FC"/>
+ <stop offset="0.4311" style="stop-color:#A6D9FB"/>
+ <stop offset="0.5851" style="stop-color:#8ACAF8"/>
+ <stop offset="0.7538" style="stop-color:#63B5F5"/>
+ <stop offset="0.9323" style="stop-color:#319AF0"/>
+ <stop offset="1" style="stop-color:#1C8FEE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_32_)" d="M172.078,172.882c-6.159,15.583-20.292,23.138-31.183,17.199
+ c-10.435-5.696-14.089-21.828-8.509-36.324c5.612-14.585,18.777-22.873,29.777-18.256
+ C173.645,140.32,178.274,157.188,172.078,172.882z"/>
+ </g>
+ </g>
+ <g>
+
+ <linearGradient id="XMLID_33_" gradientUnits="userSpaceOnUse" x1="166.0122" y1="393.9854" x2="150.6476" y2="353.6534" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0.0169" style="stop-color:#FFFFFF"/>
+ <stop offset="0.0405" style="stop-color:#FFF8D8"/>
+ <stop offset="0.0716" style="stop-color:#FFF0AB"/>
+ <stop offset="0.1058" style="stop-color:#FFE982"/>
+ <stop offset="0.1424" style="stop-color:#FFE35F"/>
+ <stop offset="0.182" style="stop-color:#FFDD41"/>
+ <stop offset="0.2257" style="stop-color:#FFD929"/>
+ <stop offset="0.2749" style="stop-color:#FFD617"/>
+ <stop offset="0.3331" style="stop-color:#FFD40A"/>
+ <stop offset="0.4089" style="stop-color:#FFD202"/>
+ <stop offset="0.5674" style="stop-color:#FFD200"/>
+ <stop offset="1" style="stop-color:#FF8B00"/>
+ </linearGradient>
+ <path fill="url(#XMLID_33_)" d="M147.12,187.316c4.339,0.356,8.61-1.264,12.102-3.756c2.569-1.834,4.758-4.103,6.455-6.705
+ c0.011-0.016,0.021-0.03,0.032-0.046c0.334-0.516,0.649-1.044,0.945-1.585c0.004-0.009,0.01-0.019,0.015-0.027
+ c0.595-1.095,1.106-2.24,1.528-3.428c1.909-5.384,2.465-11.116,1.254-16.729c-1.074-4.977-3.683-9.785-7.848-12.825
+ c-1.986-1.449-4.133-2.337-6.601-2.493c-2.777-0.178-5.538,0.517-8.03,1.724c-0.291,0.19-0.582,0.382-0.874,0.591
+ c-9.208,6.582-13.731,17.473-13.522,27.333c0.333,5.743,2.453,11.035,6.424,14.609C141.326,185.83,144.108,187.069,147.12,187.316
+ z"/>
+ <path fill="#1C86EE" d="M153.033,163.481c0.601-3.869-0.521-7.014-2.667-6.856c-2.315,0.169-4.756,4.057-5.247,8.465
+ c-0.463,4.199,1.087,6.847,3.287,6.146C150.457,170.583,152.462,167.19,153.033,163.481z"/>
+ <path fill="#1C86EE" d="M162.81,162.585c-0.231-0.074-0.597-0.121-1.02,0.095c-1.454,0.725-2.667,4.391-2.894,5.121
+ c-0.32,1.026-1.309,4.483-0.474,5.76c0.221,0.333,0.542,0.538,0.911,0.59c0.918,0.125,1.581-0.733,1.999-1.386
+ c0.242-0.379,0.49-0.839,0.735-1.366c0.351-0.752,0.686-1.622,0.961-2.51C163.691,166.778,164.545,163.153,162.81,162.585z"/>
+
+ <linearGradient id="XMLID_34_" gradientUnits="userSpaceOnUse" x1="158.292" y1="338.2295" x2="155.0771" y2="352.0526" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.4169" style="stop-color:#FFFFFD"/>
+ <stop offset="0.6466" style="stop-color:#FFFFF5"/>
+ <stop offset="0.8302" style="stop-color:#FFFFE7"/>
+ <stop offset="0.9894" style="stop-color:#FFFFD4"/>
+ <stop offset="1" style="stop-color:#FFFFD2"/>
+ </linearGradient>
+ <path opacity="0.75" fill="url(#XMLID_34_)" enable-background="new " d="M141.197,150.582
+ c-3.564,6.521-3.26,7.717,7.148,8.945c7.671,1.237,11.408,3.664,15.206,5.783c2.495,1.123,4.069,3.789,5.625,1.771
+ c2.162-3.917,1.603-13.092-3.004-19.532C159.075,137.994,146.837,141.746,141.197,150.582z"/>
+
+ <linearGradient id="XMLID_35_" gradientUnits="userSpaceOnUse" x1="175.8477" y1="335.4941" x2="143.9827" y2="383.2913" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0.0056" style="stop-color:#1C86EE"/>
+ <stop offset="0.3764" style="stop-color:#FCFFFC"/>
+ <stop offset="0.437" style="stop-color:#F0F9FB"/>
+ <stop offset="0.5465" style="stop-color:#D0E7F9"/>
+ <stop offset="0.6924" style="stop-color:#9DCCF6"/>
+ <stop offset="0.8669" style="stop-color:#56A6F2"/>
+ <stop offset="1" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_35_)" d="M172.066,151.754c-1.554-5.689-5.05-10.209-9.63-12.295c2.69,1.774,4.897,4.443,6.389,7.706
+ c0.526,1.134,0.968,2.34,1.312,3.602c1.87,6.842,0.871,15.19-2.252,22.244c0.137-0.384,0.267-0.768,0.39-1.158
+ c-0.13,0.322-0.262,0.64-0.4,0.955c0.008-0.019,0.019-0.035,0.027-0.052c-0.986,2.718-2.313,5.294-3.936,7.556
+ c-4.164,5.813-10.433,9.758-16.543,9.778c6.986,0.858,14.452-3.611,19.266-10.485
+ C172.159,171.788,174.464,160.527,172.066,151.754z"/>
+
+ <linearGradient id="XMLID_36_" gradientUnits="userSpaceOnUse" x1="188.5327" y1="333.8271" x2="165.3142" y2="348.4286" gradientTransform="matrix(1 0.0046 -0.0046 1 1.1965 -193.0119)">
+ <stop offset="0" style="stop-color:#CDF0FC"/>
+ <stop offset="0.0783" style="stop-color:#C1E9FB"/>
+ <stop offset="0.2197" style="stop-color:#A1D6F9"/>
+ <stop offset="0.408" style="stop-color:#6EB7F4"/>
+ <stop offset="0.6339" style="stop-color:#278DEF"/>
+ <stop offset="0.6685" style="stop-color:#1C86EE"/>
+ </linearGradient>
+ <path fill="url(#XMLID_36_)" d="M164.347,140.85c-1.252-1.095-2.557-1.923-4.18-2.329c-1.721-0.431-3.5-0.504-5.256-0.272
+ c-2.871,0.381-5.577,1.606-7.965,3.21c2.499-1.215,5.27-1.914,8.056-1.736c2.468,0.156,4.615,1.044,6.601,2.493
+ c4.165,3.041,6.774,7.849,7.848,12.825c1.21,5.612,0.655,11.344-1.254,16.729c-0.421,1.188-0.933,2.333-1.528,3.428
+ c-0.004,0.008-0.01,0.018-0.015,0.027c-0.296,0.541-0.611,1.069-0.945,1.585c-0.011,0.016-0.021,0.03-0.032,0.046
+ c-1.697,2.602-3.886,4.871-6.455,6.705c-3.491,2.493-7.763,4.112-12.102,3.756c-3.012-0.248-5.794-1.487-8.12-3.336
+ c-4.355-3.92-6.509-9.9-6.491-16.282c-0.254,7.874,2.441,15.292,8.147,19.606c2.122,1.605,4.418,2.496,6.768,2.785
+ c3.806-0.012,7.673-1.548,11.056-4.109c4.964-3.635,8.633-9.352,10.469-14.971C172.079,161.433,172.626,148.089,164.347,140.85z"
+ />
+ </g>
+</g>
+</svg>
diff --git a/share/gcstar/logos/splash.png b/share/gcstar/logos/splash.png Binary files differnew file mode 100644 index 0000000..2707231 --- /dev/null +++ b/share/gcstar/logos/splash.png diff --git a/share/gcstar/overlays/canevas-timbre.png b/share/gcstar/overlays/canevas-timbre.png Binary files differnew file mode 100644 index 0000000..97ad22a --- /dev/null +++ b/share/gcstar/overlays/canevas-timbre.png diff --git a/share/gcstar/overlays/cd.png b/share/gcstar/overlays/cd.png Binary files differnew file mode 100644 index 0000000..c2a2ae2 --- /dev/null +++ b/share/gcstar/overlays/cd.png diff --git a/share/gcstar/overlays/dvd.png b/share/gcstar/overlays/dvd.png Binary files differnew file mode 100644 index 0000000..7793a62 --- /dev/null +++ b/share/gcstar/overlays/dvd.png diff --git a/share/gcstar/overlays/favourite_large.png b/share/gcstar/overlays/favourite_large.png Binary files differnew file mode 100644 index 0000000..c03cb06 --- /dev/null +++ b/share/gcstar/overlays/favourite_large.png diff --git a/share/gcstar/overlays/favourite_med.png b/share/gcstar/overlays/favourite_med.png Binary files differnew file mode 100644 index 0000000..73260a7 --- /dev/null +++ b/share/gcstar/overlays/favourite_med.png diff --git a/share/gcstar/overlays/favourite_small.png b/share/gcstar/overlays/favourite_small.png Binary files differnew file mode 100644 index 0000000..fdbf576 --- /dev/null +++ b/share/gcstar/overlays/favourite_small.png diff --git a/share/gcstar/overlays/favourite_verysmall.png b/share/gcstar/overlays/favourite_verysmall.png Binary files differnew file mode 100644 index 0000000..5d44db9 --- /dev/null +++ b/share/gcstar/overlays/favourite_verysmall.png diff --git a/share/gcstar/overlays/favourite_xlarge.png b/share/gcstar/overlays/favourite_xlarge.png Binary files differnew file mode 100644 index 0000000..e5910c1 --- /dev/null +++ b/share/gcstar/overlays/favourite_xlarge.png diff --git a/share/gcstar/overlays/film.png b/share/gcstar/overlays/film.png Binary files differnew file mode 100644 index 0000000..7b5baae --- /dev/null +++ b/share/gcstar/overlays/film.png diff --git a/share/gcstar/overlays/flip.png b/share/gcstar/overlays/flip.png Binary files differnew file mode 100644 index 0000000..e81734c --- /dev/null +++ b/share/gcstar/overlays/flip.png diff --git a/share/gcstar/overlays/flip2.png b/share/gcstar/overlays/flip2.png Binary files differnew file mode 100644 index 0000000..7c5678e --- /dev/null +++ b/share/gcstar/overlays/flip2.png diff --git a/share/gcstar/overlays/lend_large.png b/share/gcstar/overlays/lend_large.png Binary files differnew file mode 100644 index 0000000..47778ac --- /dev/null +++ b/share/gcstar/overlays/lend_large.png diff --git a/share/gcstar/overlays/lend_med.png b/share/gcstar/overlays/lend_med.png Binary files differnew file mode 100644 index 0000000..3a16b33 --- /dev/null +++ b/share/gcstar/overlays/lend_med.png diff --git a/share/gcstar/overlays/lend_small.png b/share/gcstar/overlays/lend_small.png Binary files differnew file mode 100644 index 0000000..b5465b7 --- /dev/null +++ b/share/gcstar/overlays/lend_small.png diff --git a/share/gcstar/overlays/lend_verysmall.png b/share/gcstar/overlays/lend_verysmall.png Binary files differnew file mode 100644 index 0000000..5b46e7e --- /dev/null +++ b/share/gcstar/overlays/lend_verysmall.png diff --git a/share/gcstar/overlays/lend_xlarge.png b/share/gcstar/overlays/lend_xlarge.png Binary files differnew file mode 100644 index 0000000..0f76325 --- /dev/null +++ b/share/gcstar/overlays/lend_xlarge.png diff --git a/share/gcstar/overlays/minicars.png b/share/gcstar/overlays/minicars.png Binary files differnew file mode 100644 index 0000000..98cf484 --- /dev/null +++ b/share/gcstar/overlays/minicars.png diff --git a/share/gcstar/overlays/subtle.png b/share/gcstar/overlays/subtle.png Binary files differnew file mode 100644 index 0000000..3cffa1d --- /dev/null +++ b/share/gcstar/overlays/subtle.png diff --git a/share/gcstar/panels/Classic b/share/gcstar/panels/Classic new file mode 100644 index 0000000..8d7e6e7 --- /dev/null +++ b/share/gcstar/panels/Classic @@ -0,0 +1,29 @@ +pageBg = "#ffffff" + +boxBg = "#e9e9e9" +boxColor = "#000000" +boxStyle = "weight='bold'" +boxJustify = "center" + +headerBg = "#ffffff" +headerColor = "#000000" +headerStyle = "size='xx-large' weight='bold'" +headerJustify = "center" + +subheaderBg = "#ffffff" +subheaderColor = "#000000" +subheaderStyle = "size='x-large' weight='bold'" +subheaderJustify = "center" + +labelBg = "#e9e9e9" +labelColor = "#000000" +labelStyle = "weight='bold'" + +fieldBg = "#afafaf" +fieldColor = "#ffffff" +fieldStyle = "" + +expanderBg = "#ffffff" +expanderColor = "#000000" +expanderArrow = "#afafaf" +expanderPrelight = "#e9e9e9" diff --git a/share/gcstar/panels/Dark b/share/gcstar/panels/Dark new file mode 100644 index 0000000..1ca4693 --- /dev/null +++ b/share/gcstar/panels/Dark @@ -0,0 +1,29 @@ +pageBg = "#000000" + +boxBg = "#333333" +boxColor = "#eeeeee" +boxStyle = "weight='bold'" +boxJustify = "center" + +headerBg = "#000000" +headerColor = "#ffffff" +headerStyle = "size='xx-large' weight='bold'" +headerJustify = "center" + +subheaderBg = "#000000" +subheaderColor = "#ffffff" +subheaderStyle = "size='x-large' weight='bold'" +subheaderJustify = "center" + +labelBg = "#333333" +labelColor = "#eeeeee" +labelStyle = "" + +fieldBg = "#333333" +fieldColor = "#eeeeee" +fieldStyle = "" + +expanderBg = "#000000" +expanderColor = "#ffffff" +expanderArrow = "#ffffff" +expanderPrelight = "#333333" diff --git a/share/gcstar/panels/WebSite b/share/gcstar/panels/WebSite new file mode 100644 index 0000000..8096d23 --- /dev/null +++ b/share/gcstar/panels/WebSite @@ -0,0 +1,29 @@ +pageBg = "#ffffff" + +boxBg = "#eeeeee" +boxColor = "#000000" +boxStyle = "weight='bold'" +boxJustify = "center" + +headerBg = "#ffd700" +headerColor = "#ffffff" +headerStyle = "size='xx-large' weight='bold'" +headerJustify = "left" + +subheaderBg = "#ffffff" +subheaderColor = "#1c86ee" +subheaderStyle = "size='x-large' weight='bold'" +subheaderJustify = "center" + +labelBg = "#eeeeee" +labelColor = "#1c86ee" +labelStyle = "weight='bold'" + +fieldBg = "#778899" +fieldColor = "#ffffff" +fieldStyle = "" + +expanderBg = "#ffffff" +expanderColor = "#000000" +expanderArrow = "#1c86ee" +expanderPrelight = "#eeeeee" diff --git a/share/gcstar/schemas/gcm.xsd b/share/gcstar/schemas/gcm.xsd new file mode 100644 index 0000000..4f6d8a7 --- /dev/null +++ b/share/gcstar/schemas/gcm.xsd @@ -0,0 +1,291 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + Document : gcm.xsd + Created on : April 26, 2007, 9:32 PM + Author : toroman + Description: + Validates GCM files! +--> + +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> + <xs:complexType name="panelsItem"> + <xs:sequence maxOccurs="unbounded"> + <xs:element name="item" type="panelsItem" maxOccurs="unbounded" minOccurs="0" /> + </xs:sequence> + + <xs:attribute name="type" type="xs:string" use="required"/> + <xs:attribute name="style" type="xs:string" /> + <xs:attribute name="for" type="xs:string"/> + <xs:attribute name="name" type="xs:string"/> + <xs:attribute name="label" type="xs:string"/> + <xs:attribute name="editable" type="xs:string" /> + <xs:attribute name="title" type="xs:string" /> + <xs:attribute name="collapsed" type="xs:string" /> + <xs:attribute name="value" type="xs:string" /> + <xs:attribute name="values" type="xs:string" /> + <xs:attribute name="place" type="xs:string" /> + <xs:attribute name="tip" type="xs:string" /> + <xs:attribute name="width" type="xs:string" /> + <xs:attribute name="height"> + <xs:simpleType> + <xs:restriction base="xs:string"> + <xs:pattern value="[1-9]+\d*(em)?" /> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="row" type="xs:integer"/> + <xs:attribute name="col" type="xs:integer"/> + <xs:attribute name="rows" type="xs:integer"/> + <xs:attribute name="cols" type="xs:integer"/> + <xs:attribute name="colspan" type="xs:integer" /> + <xs:attribute name="expand"> + <xs:simpleType> + <xs:restriction base="xs:string"> + <xs:enumeration value="true" /> + <xs:enumeration value="false" /> + <xs:enumeration value="default" /> + <xs:enumeration value="horizontal" /> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + + <xs:attribute name="header" type="xs:boolean" /> + <xs:attribute name="nomargin" type="xs:boolean" /> + <xs:attribute name="flat" type="xs:boolean" /> + + <xs:attribute name="align"> + <xs:simpleType> + <xs:restriction base="xs:string"> + <xs:enumeration value="left" /> + <xs:enumeration value="right" /> + <xs:enumeration value="top" /> + <xs:enumeration value="bottom" /> + <xs:enumeration value="center" /> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + + </xs:complexType> + + <xs:element name="collection"> + <xs:complexType> + <xs:all> + <xs:element name="lang" type="xs:string" /> + <xs:element name="options"> + <xs:complexType> + <xs:sequence> + <xs:element name="defaults"> + <xs:complexType> + <xs:all> + <xs:element name="image" type="xs:string" minOccurs="0" /> + <xs:element name="groupby" type="xs:string" minOccurs="0" /> + <xs:element name="listImageWidth" type="xs:integer" minOccurs="0" /> + <xs:element name="listImageHeight" type="xs:integer" minOccurs="0" /> + </xs:all> + </xs:complexType> + </xs:element> + <xs:element name="overlay"> + <xs:complexType> + <xs:all> + <xs:element name="image" type="xs:string" minOccurs="0" /> + <xs:element name="paddingLeft" type="xs:integer" minOccurs="0" /> + <xs:element name="paddingRight" type="xs:integer" minOccurs="0" /> + <xs:element name="paddingTop" type="xs:integer" minOccurs="0" /> + <xs:element name="paddingBottom" type="xs:integer" minOccurs="0" /> + </xs:all> + </xs:complexType> + </xs:element> + <xs:element name="fields"> + <xs:complexType> + <xs:all> + <xs:element name="id" type="xs:string" /> + <xs:element name="title" type="xs:string" /> + <xs:element name="cover" type="xs:string" /> + <xs:element name="url" type="xs:string" minOccurs="0" /> + <xs:element name="play" type="xs:string" minOccurs="0" /> + <xs:element name="search" minOccurs="0"> + <xs:complexType> + <xs:sequence> + <xs:element name="field" type="xs:string" maxOccurs="unbounded" /> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="results" minOccurs="0"> + <xs:complexType> + <xs:sequence> + <xs:element name="field" type="xs:string" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:all> + </xs:complexType> + </xs:element> + <xs:element name="values" minOccurs="0" maxOccurs="unbounded"> + <xs:complexType> + <xs:sequence> + <xs:element name="value" maxOccurs="unbounded"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute name="displayed" type="xs:string" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute name="id" type="xs:string" use="required"/> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="groups"> + <xs:complexType> + <xs:sequence> + <xs:element name="group" maxOccurs="unbounded"> + <xs:complexType> + <xs:attribute name="label" type="xs:string" use="required"/> + <xs:attribute name="id" type="xs:string" use="required"/> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="random"> + <xs:complexType> + <xs:sequence> + <xs:element name="filter" minOccurs="0"> + <xs:complexType> + <xs:attribute name="value" use="required" type="xs:integer" /> + <xs:attribute name="numeric" use="required" type="xs:boolean" /> + <xs:attribute name="field" use="required" type="xs:string" /> + <xs:attribute name="comparison" use="required"> + <xs:simpleType> + <xs:restriction base="xs:string"> + <xs:enumeration value="eq"/> + <xs:enumeration value="contain"/> + <xs:enumeration value="lt"/> + <xs:enumeration value="le"/> + <xs:enumeration value="gt"/> + <xs:enumeration value="ge"/> + <xs:enumeration value="range"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="after" type="xs:integer" /> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="fields"> + <xs:complexType> + <xs:sequence> + <xs:element name="field" maxOccurs="unbounded"> + <xs:complexType> + <xs:attribute name="values" type="xs:string" /> + <xs:attribute name="value" type="xs:string" use="required"/> + <xs:attribute name="type" use="required"> + <xs:simpleType> + <xs:restriction base="xs:string"> + <xs:enumeration value="number" /> + <xs:enumeration value="short text" /> + <xs:enumeration value="single list" /> + <xs:enumeration value="long text" /> + <xs:enumeration value="button" /> + <xs:enumeration value="yesno" /> + <xs:enumeration value="date" /> + <xs:enumeration value="history text" /> + <xs:enumeration value="double list" /> + <xs:enumeration value="options" /> + <xs:enumeration value="file" /> + <xs:enumeration value="image" /> + <xs:enumeration value="checked text" /> + <xs:enumeration value="triple list" /> + <xs:enumeration value="formatted" /> + <xs:enumeration value="url" /> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="separator" type="xs:integer" /> + <xs:attribute name="notnull" type="xs:boolean" /> + <xs:attribute name="min" type="xs:integer" /> + <xs:attribute name="max" type="xs:integer"/> + <xs:attribute name="label3" type="xs:string" /> + <xs:attribute name="label2" type="xs:string" /> + <xs:attribute name="label1" type="xs:string" /> + <xs:attribute name="label" type="xs:string" use="required"/> + <xs:attribute name="init" type="xs:string" use="required"/> + <xs:attribute name="imported" type="xs:boolean" /> + <xs:attribute name="group" type="xs:string" use="required"/> + <xs:attribute name="format" type="xs:string"/> + <xs:attribute name="tip" type="xs:string" /> + <xs:attribute name="step" type="xs:decimal" /> + <xs:attribute name="history" type="xs:boolean" /> + <xs:attribute name="default" type="xs:string" /> + <xs:attribute name="displayed" type="xs:string" /> + <xs:attribute name="flat" type="xs:boolean" /> + <xs:attribute name="sorttype"> + <xs:simpleType> + <xs:restriction base="xs:string"> + <xs:enumeration value="number" /> + <xs:enumeration value="date" /> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute name="lending" use="required" type="xs:boolean" /> + <xs:attribute name="tags" type="xs:boolean" /> + </xs:complexType> + </xs:element> + <xs:element name="filters"> + <xs:complexType> + <xs:sequence> + <xs:element name="group" maxOccurs="unbounded"> + <xs:complexType> + <xs:sequence> + <xs:element name="filter" maxOccurs="unbounded"> + <xs:complexType> + <xs:attribute name="values" type="xs:string" /> + <xs:attribute name="quick" type="xs:boolean" /> + <xs:attribute name="preprocess" type="xs:string" /> + <xs:attribute name="numeric" type="xs:boolean" /> + <xs:attribute name="labelselect" type="xs:string" /> + <xs:attribute name="labelon" type="xs:string" /> + <xs:attribute name="labeloff" type="xs:string" /> + <xs:attribute name="label" type="xs:string" /> + <xs:attribute name="field" type="xs:string" use="required"/> + <xs:attribute name="comparison" type="xs:string" use="required"/> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute name="label" type="xs:string" use="required"/> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="panels"> + <xs:complexType> + <xs:sequence> + <xs:element name="panel" maxOccurs="unbounded"> + <xs:complexType > + <xs:sequence> + <xs:element name="item" maxOccurs="unbounded" type="panelsItem" /> + </xs:sequence> + <xs:attribute name="name" type="xs:string" use="required"/> + <xs:attribute name="label" type="xs:string" use="required"/> + <xs:attribute name="editable" type="xs:boolean" use="required" /> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:all> + <xs:attribute name="name" use="required" type="xs:string" /> + </xs:complexType> + </xs:element> +</xs:schema> diff --git a/share/gcstar/style/GCstar/gtkrc b/share/gcstar/style/GCstar/gtkrc new file mode 100644 index 0000000..b4ef09d --- /dev/null +++ b/share/gcstar/style/GCstar/gtkrc @@ -0,0 +1,277 @@ +# style <name> [= <name>] +# { +# <option> +# } +# +# widget <widget_set> style <style_name> +# widget_class <widget_class_set> style <style_name> + +# Here is a list of all the possible states. Note that some do not apply to +# certain widgets. +# +# NORMAL - The normal state of a widget, without the mouse over top of +# it, and not being pressed, etc. +# +# PRELIGHT - When the mouse is over top of the widget, colors defined +# using this state will be in effect. +# +# ACTIVE - When the widget is pressed or clicked it will be active, and +# the attributes assigned by this tag will be in effect. +# +# INSENSITIVE - When a widget is set insensitive, and cannot be +# activated, it will take these attributes. +# +# SELECTED - When an object is selected, it takes these attributes. +# +# Given these states, we can set the attributes of the widgets in each of +# these states using the following directives. +# +# fg - Sets the foreground color of a widget. +# bg - Sets the background color of a widget. +# bg_pixmap - Sets the background of a widget to a tiled pixmap. +# font - Sets the font to be used with the given widget. +# + +style "gcStocks" +{ + # Redefine used stock items. Each entry contains the stock item + # name and the file name (it should be in the same directory as + # this file. + stock["gtk-dialog-question"] = + { + {"icons/help/64x64.png", *, *, "gtk-dialog"} + } + stock["gtk-dialog-info"] = + { + {"icons/about/64x64.png", *, *, "gtk-dialog"} + } + stock["gtk-dialog-error"] = + { + {"icons/error/64x64.png", *, *, "gtk-dialog"} + } + stock["gtk-about"] = + { + {"icons/about/16x16.png", *, *, "gtk-menu"}, + {"icons/about/16x16.png"} + } + stock["gtk-add"] = + { + {"icons/add/16x16.png", *, *, "gtk-menu"}, + {"icons/add/16x16.png", *, *, "gtk-small-toolbar"}, + {"icons/add/24x24.png", *, *, "gtk-button"}, + {"icons/add/24x24.png", *, *, "gtk-large-toolbar"}, + {"icons/add/32x32.png"} + } + stock["gtk-cancel"] = + { + {"icons/cancel/24x24.png", *, *, "gtk-button"}, + {"icons/cancel/32x32.png"} + } + stock["gtk-no"] = + { + {"icons/cancel/24x24.png", *, *, "gtk-button"}, + {"icons/cancel/32x32.png"} + } + stock["gtk-clear"] = + { + {"icons/clear/24x24.png", *, *, "gtk-button"}, + {"icons/clear/32x32.png"} + } + stock["gtk-convert"] = + { + {"icons/convert/16x16.png", *, *, "gtk-menu"}, + {"icons/convert/24x24.png", *, *, "gtk-button"}, + {"icons/convert/32x32.png"} + } + stock["gtk-delete"] = + { + {"icons/delete/16x16.png", *, *, "gtk-menu"}, + {"icons/delete/24x24.png", *, *, "gtk-button"}, + {"icons/delete/32x32.png"} + } + stock["gtk-directory"] = + { + {"icons/directory/32x32.png", *, *, "gtk-large-toolbar"}, + {"icons/directory/32x32.png"} + } + stock["gtk-dnd"] = + { + {"icons/dnd/16x16.png", *, *, "gtk-menu"} + } + stock["gtk-execute"] = + { + {"icons/execute/16x16.png", *, *, "gtk-menu"}, + {"icons/execute/16x16.png", *, *, "gtk-small-toolbar"}, + {"icons/execute/24x24.png", *, *, "gtk-button"}, + {"icons/execute/24x24.png", *, *, "gtk-large-toolbar"}, + {"icons/execute/32x32.png"} + } + stock["gtk-find"] = + { + {"icons/find/16x16.png", *, *, "gtk-menu"}, + {"icons/find/16x16.png", *, *, "gtk-small-toolbar"}, + {"icons/find/24x24.png", *, *, "gtk-button"}, + {"icons/find/24x24.png", *, *, "gtk-large-toolbar"}, + {"icons/find/32x32.png"} + } + stock["gtk-go-back"] = + { + {"icons/go-back/16x16.png", *, *, "gtk-menu"}, + {"icons/go-back/16x16.png", *, *, "gtk-button"} + } + stock["gtk-go-down"] = + { + {"icons/go-down/16x16.png", *, *, "gtk-menu"}, + {"icons/go-down/16x16.png", *, *, "gtk-button"} + } + stock["gtk-go-forward"] = + { + {"icons/go-forward/16x16.png", *, *, "gtk-menu"}, + {"icons/go-forward/16x16.png", *, *, "gtk-button"} + } + stock["gtk-go-up"] = + { + {"icons/go-up/16x16.png", *, *, "gtk-menu"}, + {"icons/go-up/16x16.png", *, *, "gtk-button"} + } + stock["gtk-sort-descending"] = + { + {"icons/go-down/16x16.png", *, *, "gtk-menu"}, + {"icons/go-down/16x16.png", *, *, "gtk-button"} + } + stock["gtk-sort-ascending"] = + { + {"icons/go-up/16x16.png", *, *, "gtk-menu"}, + {"icons/go-up/16x16.png", *, *, "gtk-button"} + } + stock["gtk-help"] = + { + {"icons/help/16x16.png", *, *, "gtk-menu"} + } + stock["gtk-home"] = + { + {"icons/home/32x32.png", *, *, "gtk-large-toolbar"}, + {"icons/home/32x32.png"} + } + stock["gtk-jump-to"] = + { + {"icons/jump-to/24x24.png", *, *, "gtk-button"}, + {"icons/jump-to/32x32.png"} + } + stock["gtk-media-play"] = + { + {"icons/media-play/16x16.png", *, *, "gtk-menu"}, + {"icons/media-play/16x16.png", *, *, "gtk-small-toolbar"}, + {"icons/media-play/24x24.png", *, *, "gtk-button"}, + {"icons/media-play/24x24.png", *, *, "gtk-large-toolbar"}, + {"icons/media-play/32x32.png"} + } + stock["gtk-media-next"] = + { + {"icons/media-next/24x24.png", *, *, "gtk-button"}, + {"icons/media-next/32x32.png"} + } + stock["gtk-network"] = + { + {"icons/network/32x32.png", *, *, "gtk-large-toolbar"}, + {"icons/network/32x32.png"} + } + stock["gtk-new"] = + { + {"icons/new/16x16.png", *, *, "gtk-menu"}, + {"icons/new/16x16.png", *, *, "gtk-small-toolbar"}, + {"icons/new/24x24.png", *, *, "gtk-button"}, + {"icons/new/24x24.png", *, *, "gtk-large-toolbar"}, + {"icons/new/32x32.png"} + } + stock["gtk-ok"] = + { + {"icons/ok/24x24.png", *, *, "gtk-button"}, + {"icons/ok/32x32.png"} + } + stock["gtk-yes"] = + { + {"icons/ok/24x24.png", *, *, "gtk-button"}, + {"icons/ok/32x32.png"} + } + stock["gtk-open"] = + { + {"icons/open/16x16.png", *, *, "gtk-menu"}, + {"icons/open/24x24.png", *, *, "gtk-button"}, + {"icons/open/32x32.png"} + } + stock["gtk-preferences"] = + { + {"icons/preferences/16x16.png", *, *, "gtk-menu"}, + {"icons/preferences/16x16.png", *, *, "gtk-small-toolbar"}, + {"icons/preferences/24x24.png", *, *, "gtk-button"}, + {"icons/preferences/24x24.png", *, *, "gtk-large-toolbar"}, + {"icons/preferences/32x32.png"} + } + stock["gtk-properties"] = + { + {"icons/properties/24x24.png", *, *, "gtk-button"}, + {"icons/properties/32x32.png", *, *, "gtk-large-toolbar"}, + {"icons/properties/32x32.png"} + } + stock["gtk-quit"] = + { + {"icons/quit/16x16.png", *, *, "gtk-menu"} + } + stock["gtk-refresh"] = + { + {"icons/refresh/16x16.png", *, *, "gtk-menu"}, + {"icons/refresh/16x16.png", *, *, "gtk-small-toolbar"}, + {"icons/refresh/24x24.png", *, *, "gtk-button"}, + {"icons/refresh/24x24.png", *, *, "gtk-large-toolbar"}, + {"icons/refresh/32x32.png"} + } + stock["gtk-remove"] = + { + {"icons/remove/24x24.png", *, *, "gtk-button"}, + {"icons/remove/32x32.png"} + } + stock["gtk-revert-to-saved"] = + { + {"icons/revert-to-saved/16x16.png", *, *, "gtk-menu"}, + {"icons/revert-to-saved/24x24.png", *, *, "gtk-button"}, + {"icons/revert-to-saved/32x32.png"} + } + stock["gtk-save"] = + { + {"icons/save/16x16.png", *, *, "gtk-menu"}, + {"icons/save/16x16.png", *, *, "gtk-small-toolbar"}, + {"icons/save/24x24.png", *, *, "gtk-button"}, + {"icons/save/24x24.png", *, *, "gtk-large-toolbar"}, + {"icons/save/32x32.png"} + } + stock["gtk-save-as"] = + { + {"icons/save-as/16x16.png", *, *, "gtk-menu"}, + {"icons/save-as/24x24.png", *, *, "gtk-button"}, + {"icons/save-as/32x32.png"} + } + stock["gtk-select-color"] = + { + {"icons/select-color/32x32.png", *, *, "gtk-large-toolbar"}, + {"icons/select-color/32x32.png"} + } +} + +style "gcDefault" = "gcStocks" +{ +} + +style "gcAbout" = "gcDefault" +{ + fg[NORMAL] = "#777777" + bg[NORMAL] = "#ffffff" + bg[PRELIGHT] = "#ffffff" + bg[ACTIVE] = "#ffffff" + GtkAboutDialog::link-color = "#777777" +} + +# Default rule +widget "*" style "gcDefault" +#class "GtkAboutDialog" style : highest "gcAbout" +#widget "*GtkAboutDialog.GtkVBox.GtkVBox.*" style : highest "gcAbout" diff --git a/share/gcstar/style/GCstar/icons/about/16x16.png b/share/gcstar/style/GCstar/icons/about/16x16.png Binary files differnew file mode 100644 index 0000000..59626a8 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/about/16x16.png diff --git a/share/gcstar/style/GCstar/icons/about/64x64.png b/share/gcstar/style/GCstar/icons/about/64x64.png Binary files differnew file mode 100644 index 0000000..1a94dfc --- /dev/null +++ b/share/gcstar/style/GCstar/icons/about/64x64.png diff --git a/share/gcstar/style/GCstar/icons/add/16x16.png b/share/gcstar/style/GCstar/icons/add/16x16.png Binary files differnew file mode 100644 index 0000000..ef064df --- /dev/null +++ b/share/gcstar/style/GCstar/icons/add/16x16.png diff --git a/share/gcstar/style/GCstar/icons/add/24x24.png b/share/gcstar/style/GCstar/icons/add/24x24.png Binary files differnew file mode 100644 index 0000000..91f0ee5 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/add/24x24.png diff --git a/share/gcstar/style/GCstar/icons/add/32x32.png b/share/gcstar/style/GCstar/icons/add/32x32.png Binary files differnew file mode 100644 index 0000000..d561c5f --- /dev/null +++ b/share/gcstar/style/GCstar/icons/add/32x32.png diff --git a/share/gcstar/style/GCstar/icons/cancel/24x24.png b/share/gcstar/style/GCstar/icons/cancel/24x24.png Binary files differnew file mode 100644 index 0000000..a5495d8 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/cancel/24x24.png diff --git a/share/gcstar/style/GCstar/icons/cancel/32x32.png b/share/gcstar/style/GCstar/icons/cancel/32x32.png Binary files differnew file mode 100644 index 0000000..21c1a71 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/cancel/32x32.png diff --git a/share/gcstar/style/GCstar/icons/clear/24x24.png b/share/gcstar/style/GCstar/icons/clear/24x24.png Binary files differnew file mode 100644 index 0000000..6a0773e --- /dev/null +++ b/share/gcstar/style/GCstar/icons/clear/24x24.png diff --git a/share/gcstar/style/GCstar/icons/clear/32x32.png b/share/gcstar/style/GCstar/icons/clear/32x32.png Binary files differnew file mode 100644 index 0000000..f7aae4e --- /dev/null +++ b/share/gcstar/style/GCstar/icons/clear/32x32.png diff --git a/share/gcstar/style/GCstar/icons/convert/16x16.png b/share/gcstar/style/GCstar/icons/convert/16x16.png Binary files differnew file mode 100644 index 0000000..d67e770 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/convert/16x16.png diff --git a/share/gcstar/style/GCstar/icons/convert/24x24.png b/share/gcstar/style/GCstar/icons/convert/24x24.png Binary files differnew file mode 100644 index 0000000..f234980 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/convert/24x24.png diff --git a/share/gcstar/style/GCstar/icons/convert/32x32.png b/share/gcstar/style/GCstar/icons/convert/32x32.png Binary files differnew file mode 100644 index 0000000..3e99678 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/convert/32x32.png diff --git a/share/gcstar/style/GCstar/icons/delete/16x16.png b/share/gcstar/style/GCstar/icons/delete/16x16.png Binary files differnew file mode 100644 index 0000000..c9bc1f0 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/delete/16x16.png diff --git a/share/gcstar/style/GCstar/icons/delete/24x24.png b/share/gcstar/style/GCstar/icons/delete/24x24.png Binary files differnew file mode 100644 index 0000000..388b929 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/delete/24x24.png diff --git a/share/gcstar/style/GCstar/icons/delete/32x32.png b/share/gcstar/style/GCstar/icons/delete/32x32.png Binary files differnew file mode 100644 index 0000000..fb84487 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/delete/32x32.png diff --git a/share/gcstar/style/GCstar/icons/directory/32x32.png b/share/gcstar/style/GCstar/icons/directory/32x32.png Binary files differnew file mode 100644 index 0000000..f8b7432 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/directory/32x32.png diff --git a/share/gcstar/style/GCstar/icons/dnd/16x16.png b/share/gcstar/style/GCstar/icons/dnd/16x16.png Binary files differnew file mode 100644 index 0000000..640b95d --- /dev/null +++ b/share/gcstar/style/GCstar/icons/dnd/16x16.png diff --git a/share/gcstar/style/GCstar/icons/error/64x64.png b/share/gcstar/style/GCstar/icons/error/64x64.png Binary files differnew file mode 100644 index 0000000..e79c343 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/error/64x64.png diff --git a/share/gcstar/style/GCstar/icons/execute/16x16.png b/share/gcstar/style/GCstar/icons/execute/16x16.png Binary files differnew file mode 100644 index 0000000..eba2657 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/execute/16x16.png diff --git a/share/gcstar/style/GCstar/icons/execute/24x24.png b/share/gcstar/style/GCstar/icons/execute/24x24.png Binary files differnew file mode 100644 index 0000000..c90875b --- /dev/null +++ b/share/gcstar/style/GCstar/icons/execute/24x24.png diff --git a/share/gcstar/style/GCstar/icons/execute/32x32.png b/share/gcstar/style/GCstar/icons/execute/32x32.png Binary files differnew file mode 100644 index 0000000..2fdb1b9 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/execute/32x32.png diff --git a/share/gcstar/style/GCstar/icons/find/16x16.png b/share/gcstar/style/GCstar/icons/find/16x16.png Binary files differnew file mode 100644 index 0000000..54732b1 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/find/16x16.png diff --git a/share/gcstar/style/GCstar/icons/find/24x24.png b/share/gcstar/style/GCstar/icons/find/24x24.png Binary files differnew file mode 100644 index 0000000..9306f78 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/find/24x24.png diff --git a/share/gcstar/style/GCstar/icons/find/32x32.png b/share/gcstar/style/GCstar/icons/find/32x32.png Binary files differnew file mode 100644 index 0000000..8e5f666 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/find/32x32.png diff --git a/share/gcstar/style/GCstar/icons/go-back/16x16.png b/share/gcstar/style/GCstar/icons/go-back/16x16.png Binary files differnew file mode 100644 index 0000000..26106c8 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/go-back/16x16.png diff --git a/share/gcstar/style/GCstar/icons/go-back/24x24.png b/share/gcstar/style/GCstar/icons/go-back/24x24.png Binary files differnew file mode 100644 index 0000000..92aa6b0 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/go-back/24x24.png diff --git a/share/gcstar/style/GCstar/icons/go-down/16x16.png b/share/gcstar/style/GCstar/icons/go-down/16x16.png Binary files differnew file mode 100644 index 0000000..60c5582 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/go-down/16x16.png diff --git a/share/gcstar/style/GCstar/icons/go-down/24x24.png b/share/gcstar/style/GCstar/icons/go-down/24x24.png Binary files differnew file mode 100644 index 0000000..89c2663 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/go-down/24x24.png diff --git a/share/gcstar/style/GCstar/icons/go-forward/16x16.png b/share/gcstar/style/GCstar/icons/go-forward/16x16.png Binary files differnew file mode 100644 index 0000000..5c08037 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/go-forward/16x16.png diff --git a/share/gcstar/style/GCstar/icons/go-forward/24x24.png b/share/gcstar/style/GCstar/icons/go-forward/24x24.png Binary files differnew file mode 100644 index 0000000..3776ede --- /dev/null +++ b/share/gcstar/style/GCstar/icons/go-forward/24x24.png diff --git a/share/gcstar/style/GCstar/icons/go-up/16x16.png b/share/gcstar/style/GCstar/icons/go-up/16x16.png Binary files differnew file mode 100644 index 0000000..8fca259 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/go-up/16x16.png diff --git a/share/gcstar/style/GCstar/icons/go-up/24x24.png b/share/gcstar/style/GCstar/icons/go-up/24x24.png Binary files differnew file mode 100644 index 0000000..73d7d83 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/go-up/24x24.png diff --git a/share/gcstar/style/GCstar/icons/help/16x16.png b/share/gcstar/style/GCstar/icons/help/16x16.png Binary files differnew file mode 100644 index 0000000..ff8f892 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/help/16x16.png diff --git a/share/gcstar/style/GCstar/icons/help/32x32.png b/share/gcstar/style/GCstar/icons/help/32x32.png Binary files differnew file mode 100644 index 0000000..d795114 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/help/32x32.png diff --git a/share/gcstar/style/GCstar/icons/help/64x64.png b/share/gcstar/style/GCstar/icons/help/64x64.png Binary files differnew file mode 100644 index 0000000..a6ff6b7 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/help/64x64.png diff --git a/share/gcstar/style/GCstar/icons/home/32x32.png b/share/gcstar/style/GCstar/icons/home/32x32.png Binary files differnew file mode 100644 index 0000000..78e3a79 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/home/32x32.png diff --git a/share/gcstar/style/GCstar/icons/jump-to/24x24.png b/share/gcstar/style/GCstar/icons/jump-to/24x24.png Binary files differnew file mode 100644 index 0000000..c8275d0 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/jump-to/24x24.png diff --git a/share/gcstar/style/GCstar/icons/jump-to/32x32.png b/share/gcstar/style/GCstar/icons/jump-to/32x32.png Binary files differnew file mode 100644 index 0000000..3fb63a3 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/jump-to/32x32.png diff --git a/share/gcstar/style/GCstar/icons/media-next/24x24.png b/share/gcstar/style/GCstar/icons/media-next/24x24.png Binary files differnew file mode 100644 index 0000000..6227a36 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/media-next/24x24.png diff --git a/share/gcstar/style/GCstar/icons/media-next/32x32.png b/share/gcstar/style/GCstar/icons/media-next/32x32.png Binary files differnew file mode 100644 index 0000000..d0c897e --- /dev/null +++ b/share/gcstar/style/GCstar/icons/media-next/32x32.png diff --git a/share/gcstar/style/GCstar/icons/media-play/16x16.png b/share/gcstar/style/GCstar/icons/media-play/16x16.png Binary files differnew file mode 100644 index 0000000..4c54071 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/media-play/16x16.png diff --git a/share/gcstar/style/GCstar/icons/media-play/24x24.png b/share/gcstar/style/GCstar/icons/media-play/24x24.png Binary files differnew file mode 100644 index 0000000..bb39054 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/media-play/24x24.png diff --git a/share/gcstar/style/GCstar/icons/media-play/32x32.png b/share/gcstar/style/GCstar/icons/media-play/32x32.png Binary files differnew file mode 100644 index 0000000..6836de3 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/media-play/32x32.png diff --git a/share/gcstar/style/GCstar/icons/network/32x32.png b/share/gcstar/style/GCstar/icons/network/32x32.png Binary files differnew file mode 100644 index 0000000..33c3e56 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/network/32x32.png diff --git a/share/gcstar/style/GCstar/icons/new/16x16.png b/share/gcstar/style/GCstar/icons/new/16x16.png Binary files differnew file mode 100644 index 0000000..8fe45b5 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/new/16x16.png diff --git a/share/gcstar/style/GCstar/icons/new/24x24.png b/share/gcstar/style/GCstar/icons/new/24x24.png Binary files differnew file mode 100644 index 0000000..c4a5ca8 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/new/24x24.png diff --git a/share/gcstar/style/GCstar/icons/new/32x32.png b/share/gcstar/style/GCstar/icons/new/32x32.png Binary files differnew file mode 100644 index 0000000..a40f719 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/new/32x32.png diff --git a/share/gcstar/style/GCstar/icons/ok/24x24.png b/share/gcstar/style/GCstar/icons/ok/24x24.png Binary files differnew file mode 100644 index 0000000..4d176c0 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/ok/24x24.png diff --git a/share/gcstar/style/GCstar/icons/ok/32x32.png b/share/gcstar/style/GCstar/icons/ok/32x32.png Binary files differnew file mode 100644 index 0000000..1f02c95 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/ok/32x32.png diff --git a/share/gcstar/style/GCstar/icons/open/16x16.png b/share/gcstar/style/GCstar/icons/open/16x16.png Binary files differnew file mode 100644 index 0000000..79c76bc --- /dev/null +++ b/share/gcstar/style/GCstar/icons/open/16x16.png diff --git a/share/gcstar/style/GCstar/icons/open/24x24.png b/share/gcstar/style/GCstar/icons/open/24x24.png Binary files differnew file mode 100644 index 0000000..072c0bb --- /dev/null +++ b/share/gcstar/style/GCstar/icons/open/24x24.png diff --git a/share/gcstar/style/GCstar/icons/open/32x32.png b/share/gcstar/style/GCstar/icons/open/32x32.png Binary files differnew file mode 100644 index 0000000..099243f --- /dev/null +++ b/share/gcstar/style/GCstar/icons/open/32x32.png diff --git a/share/gcstar/style/GCstar/icons/preferences/16x16.png b/share/gcstar/style/GCstar/icons/preferences/16x16.png Binary files differnew file mode 100644 index 0000000..dfbc87d --- /dev/null +++ b/share/gcstar/style/GCstar/icons/preferences/16x16.png diff --git a/share/gcstar/style/GCstar/icons/preferences/24x24.png b/share/gcstar/style/GCstar/icons/preferences/24x24.png Binary files differnew file mode 100644 index 0000000..d611713 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/preferences/24x24.png diff --git a/share/gcstar/style/GCstar/icons/preferences/32x32.png b/share/gcstar/style/GCstar/icons/preferences/32x32.png Binary files differnew file mode 100644 index 0000000..679c0e4 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/preferences/32x32.png diff --git a/share/gcstar/style/GCstar/icons/properties/24x24.png b/share/gcstar/style/GCstar/icons/properties/24x24.png Binary files differnew file mode 100644 index 0000000..491a188 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/properties/24x24.png diff --git a/share/gcstar/style/GCstar/icons/properties/32x32.png b/share/gcstar/style/GCstar/icons/properties/32x32.png Binary files differnew file mode 100644 index 0000000..d4cc186 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/properties/32x32.png diff --git a/share/gcstar/style/GCstar/icons/quit/16x16.png b/share/gcstar/style/GCstar/icons/quit/16x16.png Binary files differnew file mode 100644 index 0000000..9eb7ce3 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/quit/16x16.png diff --git a/share/gcstar/style/GCstar/icons/quit/32x32.png b/share/gcstar/style/GCstar/icons/quit/32x32.png Binary files differnew file mode 100644 index 0000000..609d987 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/quit/32x32.png diff --git a/share/gcstar/style/GCstar/icons/refresh/16x16.png b/share/gcstar/style/GCstar/icons/refresh/16x16.png Binary files differnew file mode 100644 index 0000000..4b3a239 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/refresh/16x16.png diff --git a/share/gcstar/style/GCstar/icons/refresh/24x24.png b/share/gcstar/style/GCstar/icons/refresh/24x24.png Binary files differnew file mode 100644 index 0000000..6c9268c --- /dev/null +++ b/share/gcstar/style/GCstar/icons/refresh/24x24.png diff --git a/share/gcstar/style/GCstar/icons/refresh/32x32.png b/share/gcstar/style/GCstar/icons/refresh/32x32.png Binary files differnew file mode 100644 index 0000000..852131c --- /dev/null +++ b/share/gcstar/style/GCstar/icons/refresh/32x32.png diff --git a/share/gcstar/style/GCstar/icons/remove/24x24.png b/share/gcstar/style/GCstar/icons/remove/24x24.png Binary files differnew file mode 100644 index 0000000..63adee0 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/remove/24x24.png diff --git a/share/gcstar/style/GCstar/icons/remove/32x32.png b/share/gcstar/style/GCstar/icons/remove/32x32.png Binary files differnew file mode 100644 index 0000000..5f746bf --- /dev/null +++ b/share/gcstar/style/GCstar/icons/remove/32x32.png diff --git a/share/gcstar/style/GCstar/icons/revert-to-saved/16x16.png b/share/gcstar/style/GCstar/icons/revert-to-saved/16x16.png Binary files differnew file mode 100644 index 0000000..6798f41 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/revert-to-saved/16x16.png diff --git a/share/gcstar/style/GCstar/icons/revert-to-saved/24x24.png b/share/gcstar/style/GCstar/icons/revert-to-saved/24x24.png Binary files differnew file mode 100644 index 0000000..6da156a --- /dev/null +++ b/share/gcstar/style/GCstar/icons/revert-to-saved/24x24.png diff --git a/share/gcstar/style/GCstar/icons/revert-to-saved/32x32.png b/share/gcstar/style/GCstar/icons/revert-to-saved/32x32.png Binary files differnew file mode 100644 index 0000000..9c58749 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/revert-to-saved/32x32.png diff --git a/share/gcstar/style/GCstar/icons/save-as/16x16.png b/share/gcstar/style/GCstar/icons/save-as/16x16.png Binary files differnew file mode 100644 index 0000000..cfc18fa --- /dev/null +++ b/share/gcstar/style/GCstar/icons/save-as/16x16.png diff --git a/share/gcstar/style/GCstar/icons/save-as/24x24.png b/share/gcstar/style/GCstar/icons/save-as/24x24.png Binary files differnew file mode 100644 index 0000000..ab7c071 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/save-as/24x24.png diff --git a/share/gcstar/style/GCstar/icons/save-as/32x32.png b/share/gcstar/style/GCstar/icons/save-as/32x32.png Binary files differnew file mode 100644 index 0000000..7d3fc5f --- /dev/null +++ b/share/gcstar/style/GCstar/icons/save-as/32x32.png diff --git a/share/gcstar/style/GCstar/icons/save/16x16.png b/share/gcstar/style/GCstar/icons/save/16x16.png Binary files differnew file mode 100644 index 0000000..bdafc30 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/save/16x16.png diff --git a/share/gcstar/style/GCstar/icons/save/24x24.png b/share/gcstar/style/GCstar/icons/save/24x24.png Binary files differnew file mode 100644 index 0000000..e0e9d91 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/save/24x24.png diff --git a/share/gcstar/style/GCstar/icons/save/32x32.png b/share/gcstar/style/GCstar/icons/save/32x32.png Binary files differnew file mode 100644 index 0000000..c93c7a3 --- /dev/null +++ b/share/gcstar/style/GCstar/icons/save/32x32.png diff --git a/share/gcstar/style/GCstar/icons/select-color/32x32.png b/share/gcstar/style/GCstar/icons/select-color/32x32.png Binary files differnew file mode 100644 index 0000000..b62e5fd --- /dev/null +++ b/share/gcstar/style/GCstar/icons/select-color/32x32.png diff --git a/share/gcstar/style/GCstar/lend.png b/share/gcstar/style/GCstar/lend.png Binary files differnew file mode 100644 index 0000000..86ed939 --- /dev/null +++ b/share/gcstar/style/GCstar/lend.png diff --git a/share/gcstar/style/Gtk/gtkrc b/share/gcstar/style/Gtk/gtkrc new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/share/gcstar/style/Gtk/gtkrc @@ -0,0 +1 @@ + diff --git a/share/gcstar/style/Gtk/lend.png b/share/gcstar/style/Gtk/lend.png Binary files differnew file mode 100644 index 0000000..86ed939 --- /dev/null +++ b/share/gcstar/style/Gtk/lend.png diff --git a/share/gcstar/style/kde/active.png b/share/gcstar/style/kde/active.png Binary files differnew file mode 100644 index 0000000..093464c --- /dev/null +++ b/share/gcstar/style/kde/active.png diff --git a/share/gcstar/style/kde/active2.png b/share/gcstar/style/kde/active2.png Binary files differnew file mode 100644 index 0000000..a4f169d --- /dev/null +++ b/share/gcstar/style/kde/active2.png diff --git a/share/gcstar/style/kde/add.png b/share/gcstar/style/kde/add.png Binary files differnew file mode 100644 index 0000000..9d9dc76 --- /dev/null +++ b/share/gcstar/style/kde/add.png diff --git a/share/gcstar/style/kde/arrowdown.png b/share/gcstar/style/kde/arrowdown.png Binary files differnew file mode 100644 index 0000000..b32645f --- /dev/null +++ b/share/gcstar/style/kde/arrowdown.png diff --git a/share/gcstar/style/kde/arrowleft.png b/share/gcstar/style/kde/arrowleft.png Binary files differnew file mode 100644 index 0000000..e259529 --- /dev/null +++ b/share/gcstar/style/kde/arrowleft.png diff --git a/share/gcstar/style/kde/arrowright.png b/share/gcstar/style/kde/arrowright.png Binary files differnew file mode 100644 index 0000000..e1ee5f6 --- /dev/null +++ b/share/gcstar/style/kde/arrowright.png diff --git a/share/gcstar/style/kde/arrowup.png b/share/gcstar/style/kde/arrowup.png Binary files differnew file mode 100644 index 0000000..28d41da --- /dev/null +++ b/share/gcstar/style/kde/arrowup.png diff --git a/share/gcstar/style/kde/bghonrizontalscroll.png b/share/gcstar/style/kde/bghonrizontalscroll.png Binary files differnew file mode 100644 index 0000000..90c18b7 --- /dev/null +++ b/share/gcstar/style/kde/bghonrizontalscroll.png diff --git a/share/gcstar/style/kde/bgverticalscroll.png b/share/gcstar/style/kde/bgverticalscroll.png Binary files differnew file mode 100644 index 0000000..cb93d6d --- /dev/null +++ b/share/gcstar/style/kde/bgverticalscroll.png diff --git a/share/gcstar/style/kde/box.png b/share/gcstar/style/kde/box.png Binary files differnew file mode 100644 index 0000000..ef92f4d --- /dev/null +++ b/share/gcstar/style/kde/box.png diff --git a/share/gcstar/style/kde/box2.png b/share/gcstar/style/kde/box2.png Binary files differnew file mode 100644 index 0000000..66b00d1 --- /dev/null +++ b/share/gcstar/style/kde/box2.png diff --git a/share/gcstar/style/kde/box3.png b/share/gcstar/style/kde/box3.png Binary files differnew file mode 100644 index 0000000..8f16b83 --- /dev/null +++ b/share/gcstar/style/kde/box3.png diff --git a/share/gcstar/style/kde/cancel.png b/share/gcstar/style/kde/cancel.png Binary files differnew file mode 100644 index 0000000..c6464d9 --- /dev/null +++ b/share/gcstar/style/kde/cancel.png diff --git a/share/gcstar/style/kde/cdrom.png b/share/gcstar/style/kde/cdrom.png Binary files differnew file mode 100644 index 0000000..fe53dd8 --- /dev/null +++ b/share/gcstar/style/kde/cdrom.png diff --git a/share/gcstar/style/kde/checked.png b/share/gcstar/style/kde/checked.png Binary files differnew file mode 100644 index 0000000..143a472 --- /dev/null +++ b/share/gcstar/style/kde/checked.png diff --git a/share/gcstar/style/kde/clear.png b/share/gcstar/style/kde/clear.png Binary files differnew file mode 100644 index 0000000..0d29007 --- /dev/null +++ b/share/gcstar/style/kde/clear.png diff --git a/share/gcstar/style/kde/delete.png b/share/gcstar/style/kde/delete.png Binary files differnew file mode 100644 index 0000000..1de7a6f --- /dev/null +++ b/share/gcstar/style/kde/delete.png diff --git a/share/gcstar/style/kde/display.png b/share/gcstar/style/kde/display.png Binary files differnew file mode 100644 index 0000000..bde85be --- /dev/null +++ b/share/gcstar/style/kde/display.png diff --git a/share/gcstar/style/kde/exec.png b/share/gcstar/style/kde/exec.png Binary files differnew file mode 100644 index 0000000..f05e3e4 --- /dev/null +++ b/share/gcstar/style/kde/exec.png diff --git a/share/gcstar/style/kde/export.png b/share/gcstar/style/kde/export.png Binary files differnew file mode 100644 index 0000000..5dbf6bc --- /dev/null +++ b/share/gcstar/style/kde/export.png diff --git a/share/gcstar/style/kde/find.png b/share/gcstar/style/kde/find.png Binary files differnew file mode 100644 index 0000000..b1a6617 --- /dev/null +++ b/share/gcstar/style/kde/find.png diff --git a/share/gcstar/style/kde/gtkrc b/share/gcstar/style/kde/gtkrc new file mode 100644 index 0000000..61407a9 --- /dev/null +++ b/share/gcstar/style/kde/gtkrc @@ -0,0 +1,746 @@ +# style <name> [= <name>] +# { +# <option> +# } +# +# widget <widget_set> style <style_name> +# widget_class <widget_class_set> style <style_name> + +# Here is a list of all the possible states. Note that some do not apply to +# certain widgets. +# +# NORMAL - The normal state of a widget, without the mouse over top of +# it, and not being pressed, etc. +# +# PRELIGHT - When the mouse is over top of the widget, colors defined +# using this state will be in effect. +# +# ACTIVE - When the widget is pressed or clicked it will be active, and +# the attributes assigned by this tag will be in effect. +# +# INSENSITIVE - When a widget is set insensitive, and cannot be +# activated, it will take these attributes. +# +# SELECTED - When an object is selected, it takes these attributes. +# +# Given these states, we can set the attributes of the widgets in each of +# these states using the following directives. +# +# fg - Sets the foreground color of a widget. +# fg - Sets the background color of a widget. +# bg_pixmap - Sets the background of a widget to a tiled pixmap. +# font - Sets the font to be used with the given widget. +# + +style "gcStocks" +{ + # Redefine used stock items. Each entry contains the stock item + # name and the file name (it should be in the same directory as + # this file. + stock["gtk-preferences"] = + { + {"preferences.png"} + } + stock["gtk-properties"] = + { + {"properties.png"} + } + stock["gtk-find"] = + { + {"find.png"} + } + stock["gtk-new"] = + { + {"new.png"} + } + stock["gtk-home"] = + { + {"home.png"} + } + stock["gtk-save"] = + { + {"save.png"} + } + stock["gtk-save-as"] = + { + {"saveas.png"} + } + stock["gtk-open"] = + { + {"open.png"} + } + stock["gtk-directory"] = + { + {"paths.png"} + } + stock["gtk-refresh"] = + { + {"refresh.png"} + } + stock["gtk-select-color"] = + { + {"display.png"} + } + stock["gtk-execute"] = + { + {"tonight.png"} + } + stock["gtk-quit"] = + { + {"quit.png"} + } + stock["gtk-help"] = + { + {"help.png"} + } + stock["gtk-delete"] = + { + {"delete.png"} + } + stock["gtk-ok"] = + { + {"ok.png"} + } + stock["gtk-yes"] = + { + {"ok.png"} + } + stock["gtk-cancel"] = + { + {"cancel.png"} + } + stock["gtk-no"] = + { + {"cancel.png"} + } + stock["gtk-network"] = + { + {"internet.png"} + } + stock["gtk-clear"] = + { + {"clear.png"} + } + stock["gtk-convert"] = + { + {"import.png"} + } + stock["gtk-paste"] = + { + {"export.png"} + } + stock["gtk-cdrom"] = + { + {"cdrom.png"} + } + stock["gtk-harddisk"] = + { + {"harddisk.png"} + } + stock["gtk-add"] = + { + {"add.png"} + } + stock["gtk-remove"] = + { + {"remove.png"} + } + stock["gtk-sort-descending"] = + { + {"sortdown.png"} + } + stock["gtk-sort-ascending"] = + { + {"sortup.png"} + } + stock["gtk-go-up"] = + { + {"arrowup.png"} + } + stock["gtk-go-down"] = + { + {"arrowdown.png"} + } + stock["gtk-go-back"] = + { + {"arrowleft.png"} + } + stock["gtk-go-forward"] = + { + {"arrowright.png"} + } + stock["gtk-jump-to"] = + { + {"sortdown.png"} + } +} + +# Default theme that will use as a base for other ones +style "gcDefault" = "gcStocks" +{ + # Menu bar shadows drawn around it + GtkMenuBar::shadow_type = GTK_SHADOW_ETCHED_IN + # Tool bar shadows drawn around it + GtkToolbar::shadow_type = GTK_SHADOW_ETCHED_IN + # Frame bar shadows drawn around it + GtkFrame::shadow_type = GTK_SHADOW_ETCHED_IN + # Notebook shadows drawn around it + GtkNotebook::shadow_type = GTK_SHADOW_ETCHED_IN + # How toolbar buttons should be displayed + GtkToolbar::button_relief = GTK_RELIEF_NONE + # Background color for even rows in lists + GtkTreeView::even_row_color = "#ffffff" + # Background color for odd rows in lists + GtkTreeView::odd_row_color = "#f0f0f0" + # Sized for the handle used to resize the panel + GtkPaned::handle_size = 8 + xthickness = 2 + ythickness = 2 + + # Define default background colors for all states + bg[NORMAL] = "#f0f0f0" + bg[PRELIGHT] = "#999999" + bg[ACTIVE] = "#999999" + bg[INSENSITIVE] = "#f0f0f0" + bg[SELECTED] = "#999999" + + # Define default foreground colors for all states + fg[NORMAL] = "#000000" + fg[PRELIGHT] = "#000000" + fg[ACTIVE] = "#000000" + fg[INSENSITIVE] = "#ffffff" + fg[SELECTED] = "#ffffff" + + # Define default text (in edit boxes) colors for all states + text[SELECTED] = "#000000" + + # Define default background (in edit boxes) colors for all states + base[NORMAL] = "#ffffff" + base[ACTIVE] = "#d3d3d3" + base[SELECTED] = "#d3d3d3" + base[PRELIGHT] = "#d3d3d3" + base[INSENSITIVE] = "#ffffff" + + # This engine is used to replace various widgets with pictures + engine "pixmap" + { + # Will replace all boxes with this picture + image + { + function = BOX + recolorable = TRUE + file = "box.png" + border = { 1,1,1,1 } + stretch = TRUE + } + # Will replace all shadows with this picture + image + { + function = SHADOW + recolorable = TRUE + file = "box.png" + border = { 1,1,1,1 } + stretch = TRUE + } + + # Replaces all the arrows used in widgets with these pictures. + image + { + function = ARROW + recolorable = TRUE + overlay_file = "arrowup.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "arrowdown.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "arrowleft.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "arrowright.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + } + +} +# Used for menu bar +style "gcMenubar" = "gcDefault" +{ + bg[NORMAL] = "#f0f0f0" +} +# Used for tool bar +style "gcToolbar" = "gcDefault" +{ + bg[NORMAL] = "#d7d7ed" +} +# Used for tool bar buttons +style "gcToolbarButton" = "gcDefault" +{ + bg[PRELIGHT] = "#d7d7ed" + bg[ACTIVE] = "#d3d3d3" + bg[NORMAL] = "#d7d7ed" + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = OUT + file = "box.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + } +} +style "gcToolbarToggleButton" = "toolbarButton" +{ + bg[PRELIGHT] = "#e7e7ff" +} +# Used for all displayed buttons +style "gcButton" = "gcDefault" +{ + fg[ACTIVE] = "#000000" + + # Different pictures for different states + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = NORMAL + shadow = OUT + file = "box2.png" + border = {4, 4, 3, 3} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = IN + file = "box3.png" + border = {4, 4, 3, 3} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = OUT + file = "box3.png" + border = {4, 4, 3, 3} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "active.png" + border = {4, 4, 3, 3} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = SELECTED + shadow = IN + file = "active.png" + border = {4, 4, 3, 3} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + file = "active.png" + border = {4, 4, 3, 3} + stretch = TRUE + } + } +} +style "gcCheckButton" = "gcButton" +{ + fg[PRELIGHT] = "#000000" + fg[NORMAL] = "#000000" + fg[ACTIVE] = "#000000" + fg[SELECTED] = "#000000" + + bg[PRELIGHT] = "#d3d3d3" + + # Use defined pictures for check boxes + engine "pixmap" + { + image + { + function = CHECK + recolorable = TRUE + shadow = OUT + overlay_file = "unchecked.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + shadow = IN + overlay_file = "checked.png" + overlay_stretch = FALSE + } + } +} + +# For radio button +style "gcRadioButton" = "gcButton" +{ + fg[PRELIGHT] = "#2e3766" + fg[NORMAL] = "#732c7c" + fg[ACTIVE] = "#732c7c" + fg[SELECTED] = "#732c7c" + + bg[PRELIGHT] = "#cccce5" + + # Use defined pictures for check boxes + engine "pixmap" + { + image + { + function = OPTION + recolorable = TRUE + shadow = OUT + overlay_file = "radiounchecked.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + shadow = IN + overlay_file = "radiochecked.png" + overlay_stretch = FALSE + } + image + { + function = FLAT_BOX + recolorable = TRUE + file = "box.png" + border = {0,0,0,0} + stretch = TRUE + } + } +} + +style "gcLabel" = "gcDefault" +{ + fg[NORMAL] = "#000000" + font_name = "Sans Bold" +} +# Notebooks are defined with this style +style "gcTabs" = "gcDefault" +{ + bg[NORMAL] = "#f0f0f0" + #bg[ACTIVE] = "#f0f0f0" + bg[ACTIVE] = "#f0f0f0" + fg[ACTIVE] = "#999999" + + engine "pixmap" + { + # top background tabs + image + { + function = EXTENSION + state = ACTIVE + gap_side = BOTTOM + file = "box2.png" + border = {2,2,2,2} + stretch = TRUE + } + # top foreground tab + image + { + function = EXTENSION + gap_side = BOTTOM + file = "box2.png" + border = {2,2,2,2} + stretch = TRUE + } + # left background tabs + image + { + function = EXTENSION + state = ACTIVE + gap_side = RIGHT + file = "active.png" + border = {0,0,0,0} + stretch = TRUE + } + # left foreground tab + image + { + function = EXTENSION + gap_side = RIGHT + file = "vertical.png" + border = {2,2,0,0} + stretch = TRUE + } + + # tabs on top + image + { + function = BOX_GAP + gap_side = TOP + file = "tab_corner.png" + border = {1,1,1,1} + stretch = TRUE + } + # tabs on left + image + { + function = BOX_GAP + gap_side = LEFT + file = "tab_corner.png" + border = {1,1,1,1} + stretch = TRUE + } + } +} +style "gcFrame" = "gcDefault" +{ + bg[INSENSITIVE] = "#f3f3f3" + bg[NORMAL] = "#999999" + bg[ACTIVE] = "#f3f3f3" + bg[SELECTED] = "#f3f3f3" + bg[PRELIGHT] = "#f3f3f3" + # Remove all global theme definition + engine "" + { + } +} +# Redefine horizontal scrollbars +style "gcHscroll" = "gcFrame" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = NORMAL + shadow = OUT + file = "horizontal.png" + border = {2, 2, 2, 2} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = OUT + file = "horizontal_hover.png" + border = {2, 2, 2, 2} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "bghonrizontalscroll.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + } +} +# Redefine vertical scrollbars +style "gcVscroll" = "gcFrame" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = NORMAL + shadow = OUT + file = "vertical.png" + border = {2, 2, 2, 2} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = OUT + file = "vertical_hover.png" + border = {2, 2, 2, 2} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "bgverticalscroll.png" + border = {0, 0, 0, 0} + stretch = TRUE + } + } +} +# Used for lists +style "gcTreeView" = "default" +{ + text[NORMAL] = "#000000" + text[SELECTED] = "#000000" + text[ACTIVE] = "#000000" + text[INSENSITIVE] = "#000000" + text[PRELIGHT] = "#000000" + base[NORMAL] = "#ffffff" + base[SELECTED] = "#d3d3d3" + base[ACTIVE] = "#ffffff" + base[INSENSITIVE] = "#ffffff" + base[PRELIGHT] = "#ffffff" +} +# Used for spin buttons +style "gcSpin" = "default" +{ + engine "pixmap" + { + image + { + function = ARROW + recolorable = TRUE + overlay_file = "spinup.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "spindown.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + } +} + + +style "gctooltips" = "default" +{ + bg[NORMAL] = "#ffffdc" +} + + + +#For sliders +style "gcSlider" = "default" +{ + engine "pixmap" { + # TROUGH NORMAL + image { + function = BOX + recolorable = FALSE + detail = "trough" + file = "box.png" + border = {1,1,1,1} + stretch = TRUE + orientation = HORIZONTAL + } + # SLIDER NORMAL + image { + function = SLIDER + recolorable = FALSE + state = NORMAL + file = "box2.png" + border = {2,2,2,2} + stretch = TRUE + orientation = HORIZONTAL + } + # SLIDER PRELIGHT + image { + function = SLIDER + recolorable = FALSE + state = PRELIGHT + file = "box3.png" + border = {2,2,2,2} + stretch = TRUE + orientation = HORIZONTAL + } + # SLIDER INSENSITIVE + image { + function = SLIDER + recolorable = FALSE + state = INSENSITIVE + file = "active.png" + border = {0,0,0,0} + stretch = TRUE + orientation = HORIZONTAL + } + } +} + +# Associates previously defined styles to widgets + +# Default rule +widget "*" style "gcDefault" + +widget "*GCMenubar" style "gcMenubar" +widget "*GCToolbar" style "gcToolbar" +widget "*GCToolbar.*GtkButton" style : highest "gcToolbarButton" +widget "*GCToolbar.*GtkToggleButton" style "gcToolbarToggleButton" +class "GtkImage" style "gcStocks" +class "GtkButton" style : highest "gcButton" +widget "*GtkButton.*" style : highest "gcButton" +class "*Scale*" style : highest "gcSlider" +widget "*GCMoviesTextList" style : highest "gcTreeView" +widget "*GCMoviesDetailsList" style : highest "gcTreeView" +widget "*GtkTreeView.*GtkButton" style :highest "gcButton" +class "GtkCheckButton" style : highest "gcCheckButton" +class "GtkCheckMenuItem" style : highest "gcCheckButton" +widget "*GtkCheckButton.*" style : highest "gcCheckButton" +class "GtkRadioButton" style : highest "gcRadioButton" +class "GtkRadioMenuItem" style : highest "gcRadioButton" +class "GtkPaned" style "gcFrame" +class "GtkFrame" style : highest "gcFrame" +class "GtkNotebook" style : highest "gcTabs" +widget "*GCInfoTabs.*GtkLabel" style "gcLabel" +class "GtkHScrollbar" style : highest "gcHscroll" +class "GtkVScrollbar" style : highest "gcVscroll" +class "GtkSpinButton" style : highest "gcSpin" +widget "gtk-tooltips" style "gctooltips"
\ No newline at end of file diff --git a/share/gcstar/style/kde/gtkrcold b/share/gcstar/style/kde/gtkrcold new file mode 100644 index 0000000..2c50492 --- /dev/null +++ b/share/gcstar/style/kde/gtkrcold @@ -0,0 +1,253 @@ +style "gcStocks" +{ + # Redefine used stock items. Each entry contains the stock item + # name and the file name (it should be in the same directory as + # this file. + stock["gtk-preferences"] = + { + {"preferences.png"} + } + stock["gtk-properties"] = + { + {"properties.png"} + } + stock["gtk-find"] = + { + {"find.png"} + } + stock["gtk-new"] = + { + {"new.png"} + } + stock["gtk-home"] = + { + {"home.png"} + } + stock["gtk-save"] = + { + {"save.png"} + } + stock["gtk-save-as"] = + { + {"saveas.png"} + } + stock["gtk-open"] = + { + {"open.png"} + } + stock["gtk-directory"] = + { + {"paths.png"} + } + stock["gtk-refresh"] = + { + {"refresh.png"} + } + stock["gtk-select-color"] = + { + {"display.png"} + } + stock["gtk-execute"] = + { + {"tonight.png"} + } + stock["gtk-quit"] = + { + {"quit.png"} + } + stock["gtk-help"] = + { + {"help.png"} + } + stock["gtk-delete"] = + { + {"delete.png"} + } + stock["gtk-ok"] = + { + {"ok.png"} + } + stock["gtk-yes"] = + { + {"ok.png"} + } + stock["gtk-cancel"] = + { + {"cancel.png"} + } + stock["gtk-no"] = + { + {"cancel.png"} + } + stock["gtk-network"] = + { + {"internet.png"} + } + stock["gtk-clear"] = + { + {"clear.png"} + } + stock["gtk-convert"] = + { + {"import.png"} + } + stock["gtk-paste"] = + { + {"export.png"} + } + stock["gtk-cdrom"] = + { + {"cdrom.png"} + } + stock["gtk-harddisk"] = + { + {"harddisk.png"} + } + stock["gtk-add"] = + { + {"add.png"} + } + stock["gtk-remove"] = + { + {"remove.png"} + } + stock["gtk-sort-descending"] = + { + {"sortdown.png"} + } + stock["gtk-sort-ascending"] = + { + {"sortup.png"} + } + stock["gtk-go-up"] = + { + {"arrowup.png"} + } + stock["gtk-go-down"] = + { + {"arrowdown.png"} + } + stock["gtk-go-back"] = + { + {"arrowleft.png"} + } + stock["gtk-go-forward"] = + { + {"arrowright.png"} + } +} + +style "galaxy-default" +{ + GtkButton::default_border = {1, 2, 1, 2} + GtkButton::default_outside_border = {1, 2, 1, 2} + GtkWidget::interior_focus = 1 + GtkButton::default_spacing = 6 + GtkCheckButton::indicator_size = 15 + GtkPaned::handle_size = 6 + GtkRange::trough_border = 0 + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + GtkRange::stepper_spacing = 0 + GtkScrollbar::min_slider_length = 20 + GtkTreeView::even_row_color = "#FFFFFF" + GtkTreeView::odd_row_color = "#EFEFEF" + + fg[NORMAL] = "#000000" + fg[ACTIVE] = "#000000" + fg[INSENSITIVE] = "#949694" + fg[PRELIGHT] = "#000000" + fg[SELECTED] = "#FFFFFF" + + bg[ACTIVE] = "#CECECE" + bg[NORMAL] = "#E6E7E6" + bg[INSENSITIVE] = "#CECECE" + bg[PRELIGHT] = "#EFEFEF" + bg[SELECTED] = "#21459C" + + base[NORMAL] = "#ffffff" + base[ACTIVE] = "#7382BD" + base[INSENSITIVE] = "#E6E7E6" + base[PRELIGHT] = "#EFEFEF" + base[SELECTED] = "#2145AC" + + text[NORMAL] = "#000000" + text[ACTIVE] = "#ffffff" + text[PRELIGHT] = "#ffffff" + text[SELECTED] = "#ffffff" + text[INSENSITIVE] = "#949694" + + engine "galaxy" + { + } +} + + +style "galaxy-button" = "galaxy-default" +{ + xthickness = 4 + ythickness = 4 +} + +style "galaxy-thin" = "galaxy-default" +{ + xthickness = 1 + ythickness = 1 +} + +style "galaxy-verythin" = "galaxy-thin" +{ + xthickness = 0 + ythickness = 0 +} + + +style "galaxy-menu" = "galaxy-default" +{ + fg[PRELIGHT] = "#ffffff" +} + +style "galaxy-bar" = "galaxy-menu" +{ + xthickness = 1 + ythickness = 1 +} + + +style "galaxy-tasklist" = "galaxy-default" +{ + xthickness = 2 + ythickness = 2 + GtkWidget::focus-line-width = 0 + GtkWidget::focus-padding = 0 +} + +style "galaxy-comboboxtext" = "galaxy-default" +{ + text[PRELIGHT] = "#000000" +} + +style "galaxy-tooltips" = "galaxy-default" +{ + bg[NORMAL] = "#ffffdc" +} + +class "GtkWidget" style "galaxy-default" +class "ECanvas" style "galaxy-thin" +class "GtkButton" style "galaxy-button" +widget_class "*Notebook.GtkHBox.GtkButton" style "galaxy-verythin" +class "EComboButton" style "galaxy-thin" +widget_class "*GtkComboBox.GtkCellView" style "galaxy-comboboxtext" +widget_class "*.EShortcutsView.GtkButton" style "galaxy-thin" +widget_class "*.GtkHTMLEmbedded.*GtkButton" style "galaxy-thin" +widget_class "*Tree*GtkButton" style "galaxy-verythin" +widget_class "*List*GtkButton" style "galaxy-verythin" +widget_class "*EphyBookmarksEditor*GtkButton" style "galaxy-verythin" +class "GtkProgressBar" style "galaxy-bar" +widget_class "*MenuItem*" style "galaxy-menu" +widget_class "*.PanelApplet.*" style "galaxy-tasklist" +widget "*.tasklist-button" style "galaxy-tasklist" +class "GtkNotebook" style "galaxy-thin" +widget "gtk-tooltips" style "galaxy-tooltips" +widget_class "*GtkPathBar*" style "galaxy-thin" +class "GtkImage" style "gcStocks" diff --git a/share/gcstar/style/kde/harddisk.png b/share/gcstar/style/kde/harddisk.png Binary files differnew file mode 100644 index 0000000..739f4cf --- /dev/null +++ b/share/gcstar/style/kde/harddisk.png diff --git a/share/gcstar/style/kde/help.png b/share/gcstar/style/kde/help.png Binary files differnew file mode 100644 index 0000000..93bf094 --- /dev/null +++ b/share/gcstar/style/kde/help.png diff --git a/share/gcstar/style/kde/home.png b/share/gcstar/style/kde/home.png Binary files differnew file mode 100644 index 0000000..6790272 --- /dev/null +++ b/share/gcstar/style/kde/home.png diff --git a/share/gcstar/style/kde/horizontal.png b/share/gcstar/style/kde/horizontal.png Binary files differnew file mode 100644 index 0000000..234c021 --- /dev/null +++ b/share/gcstar/style/kde/horizontal.png diff --git a/share/gcstar/style/kde/horizontal_hover.png b/share/gcstar/style/kde/horizontal_hover.png Binary files differnew file mode 100644 index 0000000..74128d8 --- /dev/null +++ b/share/gcstar/style/kde/horizontal_hover.png diff --git a/share/gcstar/style/kde/import.png b/share/gcstar/style/kde/import.png Binary files differnew file mode 100644 index 0000000..58378b1 --- /dev/null +++ b/share/gcstar/style/kde/import.png diff --git a/share/gcstar/style/kde/internet.png b/share/gcstar/style/kde/internet.png Binary files differnew file mode 100644 index 0000000..3f7323c --- /dev/null +++ b/share/gcstar/style/kde/internet.png diff --git a/share/gcstar/style/kde/khelpcenter.png b/share/gcstar/style/kde/khelpcenter.png Binary files differnew file mode 100644 index 0000000..24582cf --- /dev/null +++ b/share/gcstar/style/kde/khelpcenter.png diff --git a/share/gcstar/style/kde/lend.png b/share/gcstar/style/kde/lend.png Binary files differnew file mode 100644 index 0000000..303d8b3 --- /dev/null +++ b/share/gcstar/style/kde/lend.png diff --git a/share/gcstar/style/kde/new.png b/share/gcstar/style/kde/new.png Binary files differnew file mode 100644 index 0000000..feba5e4 --- /dev/null +++ b/share/gcstar/style/kde/new.png diff --git a/share/gcstar/style/kde/ok.png b/share/gcstar/style/kde/ok.png Binary files differnew file mode 100644 index 0000000..230de53 --- /dev/null +++ b/share/gcstar/style/kde/ok.png diff --git a/share/gcstar/style/kde/open.png b/share/gcstar/style/kde/open.png Binary files differnew file mode 100644 index 0000000..503a004 --- /dev/null +++ b/share/gcstar/style/kde/open.png diff --git a/share/gcstar/style/kde/paths.png b/share/gcstar/style/kde/paths.png Binary files differnew file mode 100644 index 0000000..67984a2 --- /dev/null +++ b/share/gcstar/style/kde/paths.png diff --git a/share/gcstar/style/kde/preferences.png b/share/gcstar/style/kde/preferences.png Binary files differnew file mode 100644 index 0000000..4f5e273 --- /dev/null +++ b/share/gcstar/style/kde/preferences.png diff --git a/share/gcstar/style/kde/properties.png b/share/gcstar/style/kde/properties.png Binary files differnew file mode 100644 index 0000000..02bca4f --- /dev/null +++ b/share/gcstar/style/kde/properties.png diff --git a/share/gcstar/style/kde/quit.png b/share/gcstar/style/kde/quit.png Binary files differnew file mode 100644 index 0000000..86d9c47 --- /dev/null +++ b/share/gcstar/style/kde/quit.png diff --git a/share/gcstar/style/kde/radiochecked.png b/share/gcstar/style/kde/radiochecked.png Binary files differnew file mode 100644 index 0000000..722f88f --- /dev/null +++ b/share/gcstar/style/kde/radiochecked.png diff --git a/share/gcstar/style/kde/radiounchecked.png b/share/gcstar/style/kde/radiounchecked.png Binary files differnew file mode 100644 index 0000000..33c732b --- /dev/null +++ b/share/gcstar/style/kde/radiounchecked.png diff --git a/share/gcstar/style/kde/refresh.png b/share/gcstar/style/kde/refresh.png Binary files differnew file mode 100644 index 0000000..b987c58 --- /dev/null +++ b/share/gcstar/style/kde/refresh.png diff --git a/share/gcstar/style/kde/remove.png b/share/gcstar/style/kde/remove.png Binary files differnew file mode 100644 index 0000000..342ac95 --- /dev/null +++ b/share/gcstar/style/kde/remove.png diff --git a/share/gcstar/style/kde/save.png b/share/gcstar/style/kde/save.png Binary files differnew file mode 100644 index 0000000..dd00abd --- /dev/null +++ b/share/gcstar/style/kde/save.png diff --git a/share/gcstar/style/kde/saveas.png b/share/gcstar/style/kde/saveas.png Binary files differnew file mode 100644 index 0000000..61a080e --- /dev/null +++ b/share/gcstar/style/kde/saveas.png diff --git a/share/gcstar/style/kde/sortdown.png b/share/gcstar/style/kde/sortdown.png Binary files differnew file mode 100644 index 0000000..cd92e2e --- /dev/null +++ b/share/gcstar/style/kde/sortdown.png diff --git a/share/gcstar/style/kde/sortup.png b/share/gcstar/style/kde/sortup.png Binary files differnew file mode 100644 index 0000000..a5b0944 --- /dev/null +++ b/share/gcstar/style/kde/sortup.png diff --git a/share/gcstar/style/kde/spindown.png b/share/gcstar/style/kde/spindown.png Binary files differnew file mode 100644 index 0000000..44a782f --- /dev/null +++ b/share/gcstar/style/kde/spindown.png diff --git a/share/gcstar/style/kde/spinup.png b/share/gcstar/style/kde/spinup.png Binary files differnew file mode 100644 index 0000000..f4cc4c8 --- /dev/null +++ b/share/gcstar/style/kde/spinup.png diff --git a/share/gcstar/style/kde/tab_corner.png b/share/gcstar/style/kde/tab_corner.png Binary files differnew file mode 100644 index 0000000..d2fb07d --- /dev/null +++ b/share/gcstar/style/kde/tab_corner.png diff --git a/share/gcstar/style/kde/tonight.png b/share/gcstar/style/kde/tonight.png Binary files differnew file mode 100644 index 0000000..9ae5c96 --- /dev/null +++ b/share/gcstar/style/kde/tonight.png diff --git a/share/gcstar/style/kde/unchecked.png b/share/gcstar/style/kde/unchecked.png Binary files differnew file mode 100644 index 0000000..8ea6c45 --- /dev/null +++ b/share/gcstar/style/kde/unchecked.png diff --git a/share/gcstar/style/kde/vertical.png b/share/gcstar/style/kde/vertical.png Binary files differnew file mode 100644 index 0000000..721e6f9 --- /dev/null +++ b/share/gcstar/style/kde/vertical.png diff --git a/share/gcstar/style/kde/vertical_hover.png b/share/gcstar/style/kde/vertical_hover.png Binary files differnew file mode 100644 index 0000000..e390e82 --- /dev/null +++ b/share/gcstar/style/kde/vertical_hover.png diff --git a/share/gcstar/xml_models/GCfilms/Ant_Movie_Catalog b/share/gcstar/xml_models/GCfilms/Ant_Movie_Catalog new file mode 100644 index 0000000..ba5926e --- /dev/null +++ b/share/gcstar/xml_models/GCfilms/Ant_Movie_Catalog @@ -0,0 +1,31 @@ +[HEADER] +<?xml version="1.0" encoding="UTF-8"?> +<AntMovieCatalog Format="33" Version="3.4.3 (2004-22-12)" Date="23/03/2005 14:12:54"> + <Catalog> + <Properties/> + <Contents> +[/HEADER] +[ITEM] +<Movie + Number="${id}" + Date="${data}" + Rating="${rating}" + OriginalTitle="${original}" + TranslatedTitle="${title}" + Director="${director}" + Country="${country}" + Category="${type}" + Year="${year}" + Length="${length}" + Actors="${actors}" + URL="${url}" + Description="${synopsis}" + Comments="${comment}" + Picture="${image}" + Checked="True"/> +[/ITEM] +[FOOTER] + </Contents> + </Catalog> +</AntMovieCatalog> +[/FOOTER]
\ No newline at end of file diff --git a/share/gcstar/xml_models/GCfilms/DVDProfiler b/share/gcstar/xml_models/GCfilms/DVDProfiler new file mode 100644 index 0000000..d00b3cf --- /dev/null +++ b/share/gcstar/xml_models/GCfilms/DVDProfiler @@ -0,0 +1,151 @@ +[HEADER] +<?xml version="1.0" encoding="UTF-8"?> +<!-- DVD Profiler Version 2.3.1 Collection Export --> +<Collection> +[/HEADER] +[ITEM] +<DVD> + <ID>${id}</ID> + <UPC></UPC> + <ProfileTimestamp></ProfileTimestamp> + <Title>${title}</Title> + <SortTitle>${title}</SortTitle> + <Description></Description> + <Regions></Regions> + <CollectionType></CollectionType> + <CollectionNumber></CollectionNumber> + <Locks> + <Entire>False</Entire> + <Covers>False</Covers> + <Title>False</Title> + <Credits>False</Credits> + <DiscInformation>False</DiscInformation> + <Overview>False</Overview> + <Regions>False</Regions> + <AudioSubtitles>False</AudioSubtitles> + <Genres>False</Genres> + <SRP>False</SRP> + <Studios>False</Studios> + </Locks> + <Rating>U</Rating> + <ProductionYear>${year}</ProductionYear> + <Released>${date}</Released> + <RunningTime>${length}</RunningTime> + <CaseType></CaseType> + <Genres> + [LOOP genre] + <Genre>$$</Genre> + [/LOOP] + </Genres> + <Format> + <FormatAspectRatio></FormatAspectRatio> + <FormatVideoStandard></FormatVideoStandard> + <FormatLetterBox></FormatLetterBox> + <FormatPanAndScan></FormatPanAndScan> + <FormatFullFrame></FormatFullFrame> + <Format16X9></Format16X9> + <FormatDualSided></FormatDualSided> + <FormatDualLayered></FormatDualLayered> + <FormatFlipper></FormatFlipper> + </Format> + <Features> + <FeatureSceneAccess>True</FeatureSceneAccess> + <FeatureCommentary>True</FeatureCommentary> + <FeatureTrailer>False</FeatureTrailer> + <FeaturePhotoGallery>False</FeaturePhotoGallery> + <FeatureDeletedScenes>False</FeatureDeletedScenes> + <FeatureMakingOf>True</FeatureMakingOf> + <FeatureProductionNotes>True</FeatureProductionNotes> + <FeatureGame>False</FeatureGame> + <FeatureDVDROMContent>True</FeatureDVDROMContent> + <FeatureMultiAngle>False</FeatureMultiAngle> + <FeatureMusicVideos>False</FeatureMusicVideos> + <FeatureClosedCaptioned>False</FeatureClosedCaptioned> + <FeatureTHXCertified>False</FeatureTHXCertified> + </Features> + <Studios> + <Studio></Studio> + </Studios> + <Audio> + [LOOP audio] + <AudioFormat> + <AudioLanguage>$$</AudioLanguage> + <AudioCompression></AudioCompression> + <AudioChannels></AudioChannels> + </AudioFormat> + [/LOOP] + </Audio> + <Subtitles> + [LOOP subt] + <Subtitle>$$</Subtitle> + [/LOOP] + </Subtitles> + <Actors> + [LOOP actors] + [SPLIT value=$$ sep= ] + <Actor> + <FirstName>$0</FirstName> + <LastName>$1$2</LastName> + <Role></Role> + </Actor> + [/SPLIT] + [/LOOP] + </Actors> + <Credits> + <Credit> + [SPLIT value=director sep= ] + <FirstName>$0</FirstName> + <LastName>$1$2</LastName> + <CreditType>Direction</CreditType> + <CreditSubtype>Director</CreditSubtype> + [/SPLIT] + </Credit> + </Credits> + <Review> + <ReviewFilm>${rating}</ReviewFilm> + <ReviewVideo></ReviewVideo> + <ReviewAudio></ReviewAudio> + <ReviewExtras></ReviewExtras> + </Review> + <SRPInfo> + <SRP></SRP> + <SRPCurrencyID></SRPCurrencyID> + <SRPCurrencyName></SRPCurrencyName> + </SRPInfo> + <PurchaseInfo> + <PurchasePriceInfo> + <PurchasePriceCurrencyID></PurchasePriceCurrencyID> + <PurchasePriceCurrencyName></PurchasePriceCurrencyName> + </PurchasePriceInfo> + <PurchaseDate></PurchaseDate> + </PurchaseInfo> + <Events> + [LOOP history] + <Event> + [SPLIT value=$$ sep=:] + <User> + <FirstName>$0</FirstName> + <LastName></LastName> + <PhoneNumber></PhoneNumber> + <EmailAddress></EmailAddress> + </User> + <EventType>Borrowing</EventType> + <Timestamp>$2</Timestamp> + [/SPLIT] + </Event> + [/LOOP] + </Events> + <LoanInfo> + <LoanedTo>${borrower}</LoanedTo> + <LoanedDue>${lendDate}</LoanedDue> + </LoanInfo> + <Tags> + </Tags> + <Overview>${synopsis}</Overview> + <EasterEggs></EasterEggs> + <LastEdited></LastEdited> +</DVD> +[/ITEM] +[FOOTER] +</Collection> +[/FOOTER]
\ No newline at end of file diff --git a/share/gcstar/xslt/applyXSLT.pl b/share/gcstar/xslt/applyXSLT.pl new file mode 100644 index 0000000..28e83d1 --- /dev/null +++ b/share/gcstar/xslt/applyXSLT.pl @@ -0,0 +1,13 @@ +#!/usr/bin/perl + +use XML::LibXSLT; + +my $xslfile = $ARGV[0]; +my $xmlfile = $ARGV[1]; + +my $xslt = XML::XSLT->new($xslfile, warnings => 1); + +$xslt->transform($xmlfile); +print $xslt->toString; + +$xslt->dispose; diff --git a/share/gcstar/xslt/createGCSValidator.xsl b/share/gcstar/xslt/createGCSValidator.xsl new file mode 100644 index 0000000..2df922a --- /dev/null +++ b/share/gcstar/xslt/createGCSValidator.xsl @@ -0,0 +1,165 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<!-- + Document : ConvertGCMtoXSD.xsl + Created on : April 26, 2007, 9:41 PM + Version : The first one ;) + Author : toroman + Description: + Transforms GCM into XSD which can validate GCS files. +--> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0"> + + <xsl:output method="xml" indent="yes" /> + + <xsl:template match="/"> + <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> + <xs:complexType name="itemType"> + <xs:sequence> + <xsl:apply-templates select="/collection/fields/field" /> + </xs:sequence> + </xs:complexType> + <xs:element name="collection"> + <xs:complexType> + <xs:sequence> + <xs:element name="information"> + <xs:complexType> + <xs:sequence> + <xs:element name="name" type="xs:string" /> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="item" maxOccurs="unbounded" type="itemType" /> + </xs:sequence> + <xs:attribute name="type" type="xs:string" /> + <xs:attribute name="items" type="xs:integer" /> + </xs:complexType> + </xs:element> + </xs:schema> + </xsl:template> + + <xsl:template match="/collection/fields/field"> + <xsl:choose> + <xsl:when test="@type='file'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:string" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='number'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:integer" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='options'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:integer" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='age'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:integer" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='short text'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:string" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='image'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:string" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='long text'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:string" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='button'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:string" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='yesno'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:boolean" /> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='date'"> + <xsl:text disable-output-escaping="yes"><![CDATA[ + <xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA["> + <xs:simpleType> + <xs:restriction base="xs:string"> + <xs:pattern value="\d\d/\d\d/\d\d\d\d" /> + </xs:restriction> + </xs:simpleType> + </xs:element> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='single list'"> + <xsl:text disable-output-escaping="yes"><![CDATA[ + <xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA["> + <xs:complexType> + <xs:sequence maxOccurs="unbounded"> + <xs:element name="line" maxOccurs="unbounded"> + <xs:complexType> + <xs:sequence minOccurs="1" maxOccurs="1"> + <xs:element name="col" type="xs:string" /> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='double list'"> + <xsl:text disable-output-escaping="yes"><![CDATA[ + <xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA["> + <xs:complexType> + <xs:sequence maxOccurs="unbounded"> + <xs:element name="line" maxOccurs="unbounded"> + <xs:complexType> + <xs:sequence minOccurs="2" maxOccurs="2"> + <xs:element name="col" type="xs:string" /> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + ]]></xsl:text> + </xsl:when> + <xsl:when test="@type='history text'"> + <xsl:text disable-output-escaping="yes"><![CDATA[<xs:element name="]]></xsl:text> + <xsl:value-of select="@value" /> + <xsl:text disable-output-escaping="yes"><![CDATA[" type="xs:string" /> + ]]></xsl:text> + </xsl:when> + <xsl:otherwise> + <p> + <xsl:text>Unknown Type - this should trigger error on XSD validation! </xsl:text> + <xsl:value-of select="@type" /> + </p><![CDATA[ + ]]> + </xsl:otherwise> + </xsl:choose> + </xsl:template> +</xsl:stylesheet> |