File indexing completed on 2024-06-16 03:57:53

0001 #!/usr/bin/perl
0002 #
0003 # This script generates an SVG card deck suitable for KDE
0004 # card games.
0005 # Based on the xskat deck.
0006 #
0007 
0008 use MIME::Base64;
0009 
0010 my $year = 2009;
0011 my $author = "Luciano Montanaro <mikelima@cirulla.net>";
0012 
0013 # Width and height of the card board
0014 my $boardwidth = 1024;
0015 my $boardheight = 804;
0016 
0017 # Width and height of each card
0018 my $width = 144;
0019 my $height = 224;
0020 
0021 # corner radius
0022 my $cradius = 9; 
0023 
0024 # offset from card border to pattern border
0025 my $off = 6;
0026 
0027 my $xoff1 = 2 * $off;
0028 my $yoff = $off * 5;
0029 my $ioff = $off * 2.5;
0030 my $xoff2 = $width - $xoff1;
0031 
0032 # width and height of card figure
0033 my $figwidth = $width - 2 * $off;
0034 my $figheight = $height - 2 * $off;
0035 my $figradius = $cradius - 2;
0036 
0037 my $centerx = $width / 2;
0038 my $centery = $height / 2 - 1;
0039 
0040 my @suits = ("heart", "diamond", "spade", "club");
0041 
0042 # A Skat deck only has cards down to 7. The Ace is really the Queen, King is
0043 # itself, queen is high knave, jack is low knave. I guess.
0044 my @cardnames = ("1", "king", "queen", "jack", "10", "9", "8", "7", "6", "5", "4", "3", "2");
0045 
0046 my $viewwidth =  @cardnames * $width;
0047 my $viewheight = (1 + @suits) * $height;
0048 
0049 my $ratiox = 1;
0050 my $ratioy = 1;
0051 
0052 my $suitsize = 16;
0053 my $spacing = 7.4;
0054 
0055 my @column = (
0056     $centerx - 2 * ($suitsize + 3) - $off, 
0057     $centerx - ($suitsize - 2) - $off, 
0058     $centerx - $off, 
0059     $centerx + ($suitsize - 2)- $off,
0060     $centerx + 2 * ($suitsize + 3) - $off);
0061 my @row = (
0062     2 + $off + $spacing, 
0063     2 + $off + 2 * $spacing, 
0064     2 + $off + 3 * $spacing,  
0065     2 + $off + 4 * $spacing, 
0066     2 + $off + 5 * $spacing,
0067     2 + $off + 6 * $spacing,
0068     2 + $off + 7 * $spacing,
0069     2 + $off + 8 * $spacing,
0070     2 + $off + 9 * $spacing,
0071     2 + $off + 10 * $spacing,
0072     2 + $off + 11 * $spacing,
0073 );
0074 
0075 # Rows for "branched" suits.
0076 my $bspacing = 14;
0077 
0078 my @brow = (
0079     $off + $bspacing, 
0080     $off + 2 * $bspacing, 
0081     $off + 3 * $bspacing,  
0082     $off + 4 * $bspacing, 
0083     $off + 5 * $bspacing, 
0084     $off + $figwidth / 2, 
0085 );
0086 
0087 sub generate_court_images()
0088 {
0089     for ($i = 0; $i < 4; $i++) {
0090         for ($j = 1; $j < 4; $j++) {
0091             my $pngname = 1 + $j * 4 + $i;
0092             my $offsetx = $j * $width;
0093             my $offsety = $i * $height;
0094             my $cardid = "$cardnames[$j]_$suits[$i]";
0095             open(CARD, "<images/$cardid.png");
0096             binmode(CARD);
0097             my @card_data = <CARD>;
0098             my $card_encoded = encode_base64(join("", @card_data));
0099             print <<EOF;
0100 <g id="img_$cardid" transform="scale(1) translate(-64,-98)" >
0101 <image width="113" height="93" xlink:href="data:image/png;base64,$card_encoded" />
0102 </g>
0103 EOF
0104         }
0105     }
0106 }
0107 
0108 sub generate_groups($$)
0109 {
0110     my $suit = shift;
0111     my $image = shift;
0112     my $delta = $row[7] - $row[2];
0113     my $delta2 = 2 * $delta;
0114     my $deltah = $delta / 2;
0115 
0116     if ($suit eq "diamond" || $suit eq "heart") {
0117     print <<EOF;
0118 <g id="g2g-$suit" transform="translate(0,-$deltah)">
0119 <use x="0" y="$delta" xlink:href="#${image}" />
0120 <use x="0" y="0" xlink:href="#${image}" />
0121 </g>
0122 
0123 <g id="g3g-$suit" transform="translate(0,-$delta)">
0124 <use x="0" y="$delta2" xlink:href="#${image}" />
0125 <use x="0" y="$delta" xlink:href="#${image}" />
0126 <use x="0" y="0" xlink:href="#${image}" />
0127 </g>
0128 
0129 
0130 <g id="g-1_${suit}" >
0131 <use x="$centerx" y="$centery" xlink:href="#shield" />
0132 <use x="$column[0]" y="$row[0]" xlink:href="#${image}-30" />
0133 <use x="$column[4]" y="$row[0]" xlink:href="#m-${image}-30" />
0134 <use x="$column[2]" y="$brow[5]" xlink:href="#${image}" />
0135 <use x="$xoff1" y="$ioff" xlink:href="#i1" />
0136 <use x="$xoff2" y="$ioff" xlink:href="#i1" />
0137 </g>
0138 
0139 <g id="g-2_${suit}" >
0140 <use x="$column[0]" y="$row[2]" xlink:href="#${image}" />
0141 <use x="$column[4]" y="$row[2]" xlink:href="#${image}" />
0142 <use x="$xoff1" y="$ioff" xlink:href="#i2" />
0143 <use x="$xoff2" y="$ioff" xlink:href="#i2" />
0144 </g>
0145 
0146 <g id="g-3_${suit}" >
0147 <use x="$column[0]" y="$row[2]" xlink:href="#${image}" />
0148 <use x="$column[4]" y="$row[2]" xlink:href="#${image}" />
0149 <use x="$column[2]" y="$row[5]" xlink:href="#${image}" />
0150 <use x="$xoff1" y="$ioff" xlink:href="#i3" />
0151 <use x="$xoff2" y="$ioff" xlink:href="#i3" />
0152 </g>
0153 
0154 <g id="g-4_${suit}" >
0155 <use x="$column[0]" y="$row[9]" xlink:href="#${image}" />
0156 <use x="$column[4]" y="$row[9]" xlink:href="#${image}" />
0157 <use x="$column[0]" y="$row[2]" xlink:href="#${image}" />
0158 <use x="$column[4]" y="$row[2]" xlink:href="#${image}" />
0159 <use x="$xoff1" y="$ioff" xlink:href="#i4" />
0160 <use x="$xoff2" y="$ioff" xlink:href="#i4" />
0161 </g>
0162 
0163 <g id="g-5_${suit}" >
0164 <use x="$column[0]" y="$row[9]" xlink:href="#${image}" />
0165 <use x="$column[4]" y="$row[9]" xlink:href="#${image}" />
0166 <use x="$column[2]" y="$row[5]" xlink:href="#${image}" />
0167 <use x="$column[0]" y="$row[2]" xlink:href="#${image}" />
0168 <use x="$column[4]" y="$row[2]" xlink:href="#${image}" />
0169 <use x="$xoff1" y="$ioff" xlink:href="#i5" />
0170 <use x="$xoff2" y="$ioff" xlink:href="#i5" />
0171 </g>
0172 
0173 <g id="g-6_${suit}" >
0174 <use x="$column[0]" y="$row[10]" xlink:href="#${image}" />
0175 <use x="$column[4]" y="$row[10]" xlink:href="#${image}" />
0176 <use x="$column[0]" y="$row[6]" xlink:href="#${image}" />
0177 <use x="$column[4]" y="$row[6]" xlink:href="#${image}" />
0178 <use x="$column[0]" y="$row[2]" xlink:href="#${image}" />
0179 <use x="$column[4]" y="$row[2]" xlink:href="#${image}" />
0180 <use x="$xoff1" y="$ioff" xlink:href="#i6" />
0181 <use x="$xoff2" y="$ioff" xlink:href="#i6" />
0182 </g>
0183 
0184 <g id="g-7_${suit}" >
0185 <use x="$column[0]" y="$row[2]" xlink:href="#${image}" />
0186 <use x="$column[0]" y="$row[6]" xlink:href="#${image}" />
0187 <use x="$column[0]" y="$row[10]" xlink:href="#${image}" />
0188 <use x="$column[2]" y="$row[0]" xlink:href="#${image}" />
0189 <use x="$column[4]" y="$row[2]" xlink:href="#${image}" />
0190 <use x="$column[4]" y="$row[6]" xlink:href="#${image}" />
0191 <use x="$column[4]" y="$row[10]" xlink:href="#${image}" />
0192 <use x="$xoff1" y="$ioff" xlink:href="#i7" />
0193 <use x="$xoff2" y="$ioff" xlink:href="#i7" />
0194 </g>
0195 
0196 <g id="g-8_${suit}" >
0197 <use x="$column[0]" y="$row[5]" xlink:href="#${image}" />
0198 <use x="$column[0]" y="$row[10]" xlink:href="#${image}" />
0199 <use x="$column[0]" y="$row[0]" xlink:href="#${image}" />
0200 <use x="$column[2]" y="$row[7]" xlink:href="#${image}" />
0201 <use x="$column[2]" y="$row[2]" xlink:href="#${image}" />
0202 <use x="$column[4]" y="$row[5]" xlink:href="#${image}" />
0203 <use x="$column[4]" y="$row[10]" xlink:href="#${image}" />
0204 <use x="$column[4]" y="$row[0]" xlink:href="#${image}" />
0205 <use x="$xoff1" y="$ioff" xlink:href="#i8" />
0206 <use x="$xoff2" y="$ioff" xlink:href="#i8" />
0207 </g>
0208 
0209 <g id="g-9_${suit}" >
0210 <use x="$column[0]" y="$row[10]" xlink:href="#${image}" />
0211 <use x="$column[4]" y="$row[10]" xlink:href="#${image}" />
0212 <use x="$column[0]" y="$row[6]" xlink:href="#${image}" />
0213 <use x="$column[2]" y="$row[8]" xlink:href="#${image}" />
0214 <use x="$column[4]" y="$row[6]" xlink:href="#${image}" />
0215 <use x="$column[0]" y="$row[2]" xlink:href="#${image}" />
0216 <use x="$column[2]" y="$row[4]" xlink:href="#${image}" />
0217 <use x="$column[4]" y="$row[2]" xlink:href="#${image}" />
0218 <use x="$column[2]" y="$row[0]" xlink:href="#${image}" />
0219 <use x="$xoff1" y="$ioff" xlink:href="#i9" />
0220 <use x="$xoff2" y="$ioff" xlink:href="#i9" />
0221 </g>
0222 
0223 <g id="g-10_${suit}" >
0224 
0225 <use x="$column[0]" y="$row[5]" xlink:href="#g2g-${suit}" />
0226 <use x="$column[1]" y="$row[5]" xlink:href="#g3g-${suit}" />
0227 <use x="$column[3]" y="$row[5]" xlink:href="#g3g-${suit}" />
0228 <use x="$column[4]" y="$row[5]" xlink:href="#g2g-${suit}" />
0229 <use x="$xoff1" y="$ioff" xlink:href="#i10" />
0230 <use x="$xoff2" y="$ioff" xlink:href="#i10" />
0231 </g>
0232 
0233 <g id="g-jack_${suit}" >
0234 <use x="$centerx" y="$centery" xlink:href="#img_jack_$suit" />
0235 <use x="$column[0]" y="$row[8]" xlink:href="#${image}" />
0236 <use x="$xoff1" y="$ioff" xlink:href="#iu" />
0237 <use x="$xoff2" y="$ioff" xlink:href="#iu" />
0238 </g>
0239 
0240 <g id="g-queen_${suit}" >
0241 <use x="$centerx" y="$centery" xlink:href="#img_queen_$suit" />
0242 <use x="$column[0]" y="$row[1]" xlink:href="#${image}" />
0243 <use x="$xoff1" y="$ioff" xlink:href="#io" />
0244 <use x="$xoff2" y="$ioff" xlink:href="#io" />
0245 </g>
0246 
0247 <g id="g-king_${suit}" >
0248 <use x="$centerx" y="$centery" xlink:href="#img_king_$suit" />
0249 <use x="$column[0]" y="$row[1]" xlink:href="#${image}" />
0250 <use x="$column[4]" y="$row[1]" xlink:href="#${image}" />
0251 <use x="$xoff1" y="$ioff" xlink:href="#ik" />
0252 <use x="$xoff2" y="$ioff" xlink:href="#ik" />
0253 </g>
0254 EOF
0255     } else {
0256     print <<EOF;
0257 <g id="g-1_${suit}" >
0258 <use x="$centerx" y="$centery" xlink:href="#shield" />
0259 <use x="$column[0]" y="$row[0]" xlink:href="#${image}-30" />
0260 <use x="$column[2]" y="$brow[5]" xlink:href="#fancy-${image}" />
0261 <use x="$column[4]" y="$row[0]" xlink:href="#m-${image}-30" />
0262 <use x="$xoff1" y="$ioff" xlink:href="#i1" />
0263 <use x="$xoff2" y="$ioff" xlink:href="#i1" />
0264 </g>
0265 
0266 <g id="g-2_${suit}" >
0267 <use x="$column[2]" y="$brow[4]" xlink:href="#dead-beams" />
0268 <use x="$column[2]" y="$brow[3]" xlink:href="#dead-beams" />
0269 <use x="$column[2]" y="$brow[2]" xlink:href="#dead-beams" />
0270 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0271 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0272 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0273 <use x="$xoff1" y="$ioff" xlink:href="#i2" />
0274 <use x="$xoff2" y="$ioff" xlink:href="#i2" />
0275 </g>
0276 
0277 <g id="g-3_${suit}" >
0278 <use x="$column[2]" y="$brow[0]" xlink:href="#top-beam" />
0279 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0280 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0281 <use x="$column[2]" y="$brow[0]" xlink:href="#${image}" />
0282 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0283 <use x="$column[2]" y="$brow[2]" xlink:href="#dead-beams" />
0284 <use x="$column[2]" y="$brow[3]" xlink:href="#dead-beams" />
0285 <use x="$column[2]" y="$brow[4]" xlink:href="#dead-beams" />
0286 <use x="$xoff1" y="$ioff" xlink:href="#i3" />
0287 <use x="$xoff2" y="$ioff" xlink:href="#i3" />
0288 </g>
0289 
0290 <g id="g-4_${suit}" >
0291 <use x="$column[2]" y="$brow[4]" xlink:href="#dead-beams" />
0292 <use x="$column[2]" y="$brow[3]" xlink:href="#dead-beams" />
0293 <use x="$column[2]" y="$brow[2]" xlink:href="#dead-beams" />
0294 <use x="$column[2]" y="$brow[0]" xlink:href="#beams" />
0295 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0296 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0297 <use x="$column[0]" y="$brow[0]" xlink:href="#${image}-90" />
0298 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0299 <use x="$column[4]" y="$brow[0]" xlink:href="#m-${image}-90" />
0300 <use x="$xoff1" y="$ioff" xlink:href="#i4" />
0301 <use x="$xoff2" y="$ioff" xlink:href="#i4" />
0302 </g>
0303 
0304 <g id="g-5_${suit}" >
0305 <use x="$column[2]" y="$brow[0]" xlink:href="#top-beam" />
0306 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0307 <use x="$column[2]" y="$brow[2]" xlink:href="#beams" />
0308 <use x="$column[2]" y="$brow[0]" xlink:href="#${image}" />
0309 <use x="$column[0]" y="$brow[2]" xlink:href="#${image}-90" />
0310 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0311 <use x="$column[4]" y="$brow[2]" xlink:href="#m-${image}-90" />
0312 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0313 <use x="$column[2]" y="$brow[3]" xlink:href="#dead-beams" />
0314 <use x="$column[2]" y="$brow[4]" xlink:href="#dead-beams" />
0315 <use x="$xoff1" y="$ioff" xlink:href="#i5" />
0316 <use x="$xoff2" y="$ioff" xlink:href="#i5" />
0317 </g>
0318 
0319 <g id="g-6_${suit}" >
0320 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0321 <use x="$column[2]" y="$brow[2]" xlink:href="#beams" />
0322 <use x="$column[2]" y="$brow[3]" xlink:href="#beams" />
0323 <use x="$column[0]" y="$brow[3]" xlink:href="#${image}-90" />
0324 <use x="$column[0]" y="$brow[2]" xlink:href="#${image}-90" />
0325 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0326 <use x="$column[4]" y="$brow[3]" xlink:href="#m-${image}-90" />
0327 <use x="$column[4]" y="$brow[2]" xlink:href="#m-${image}-90" />
0328 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0329 <use x="$column[2]" y="$brow[4]" xlink:href="#dead-beams" />
0330 <use x="$xoff1" y="$ioff" xlink:href="#i6" />
0331 <use x="$xoff2" y="$ioff" xlink:href="#i6" />
0332 </g>
0333 
0334 <g id="g-7_${suit}" >
0335 <use x="$column[2]" y="$brow[0]" xlink:href="#top-beam" />
0336 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0337 <use x="$column[2]" y="$brow[2]" xlink:href="#beams" />
0338 <use x="$column[2]" y="$brow[3]" xlink:href="#beams" />
0339 <use x="$column[2]" y="$brow[0]" xlink:href="#${image}" />
0340 <use x="$column[0]" y="$brow[3]" xlink:href="#${image}-90" />
0341 <use x="$column[0]" y="$brow[2]" xlink:href="#${image}-90" />
0342 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0343 <use x="$column[4]" y="$brow[3]" xlink:href="#m-${image}-90" />
0344 <use x="$column[4]" y="$brow[2]" xlink:href="#m-${image}-90" />
0345 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0346 <use x="$column[2]" y="$brow[4]" xlink:href="#dead-beams" />
0347 <use x="$xoff1" y="$ioff" xlink:href="#i7" />
0348 <use x="$xoff2" y="$ioff" xlink:href="#i7" />
0349 </g>
0350 
0351 <g id="g-8_${suit}" >
0352 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0353 <use x="$column[2]" y="$brow[2]" xlink:href="#beams" />
0354 <use x="$column[2]" y="$brow[3]" xlink:href="#beams" />
0355 <use x="$column[2]" y="$brow[4]" xlink:href="#beams" />
0356 <use x="$column[0]" y="$brow[4]" xlink:href="#${image}-90" />
0357 <use x="$column[0]" y="$brow[3]" xlink:href="#${image}-90" />
0358 <use x="$column[0]" y="$brow[2]" xlink:href="#${image}-90" />
0359 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0360 <use x="$column[4]" y="$brow[4]" xlink:href="#m-${image}-90" />
0361 <use x="$column[4]" y="$brow[3]" xlink:href="#m-${image}-90" />
0362 <use x="$column[4]" y="$brow[2]" xlink:href="#m-${image}-90" />
0363 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0364 <use x="$xoff1" y="$ioff" xlink:href="#i8" />
0365 <use x="$xoff2" y="$ioff" xlink:href="#i8" />
0366 </g>
0367 
0368 <g id="g-9_${suit}" >
0369 <use x="$column[2]" y="$brow[0]" xlink:href="#top-beam" />
0370 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0371 <use x="$column[2]" y="$brow[2]" xlink:href="#beams" />
0372 <use x="$column[2]" y="$brow[3]" xlink:href="#beams" />
0373 <use x="$column[2]" y="$brow[4]" xlink:href="#beams" />
0374 <use x="$column[2]" y="$brow[0]" xlink:href="#${image}" />
0375 <use x="$column[0]" y="$brow[4]" xlink:href="#${image}-90" />
0376 <use x="$column[0]" y="$brow[3]" xlink:href="#${image}-90" />
0377 <use x="$column[0]" y="$brow[2]" xlink:href="#${image}-90" />
0378 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0379 <use x="$column[4]" y="$brow[4]" xlink:href="#m-${image}-90" />
0380 <use x="$column[4]" y="$brow[3]" xlink:href="#m-${image}-90" />
0381 <use x="$column[4]" y="$brow[2]" xlink:href="#m-${image}-90" />
0382 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0383 <use x="$xoff1" y="$ioff" xlink:href="#i9" />
0384 <use x="$xoff2" y="$ioff" xlink:href="#i9" />
0385 </g>
0386 
0387 <g id="g-10_${suit}" >
0388 <use x="$column[2]" y="$brow[0]" xlink:href="#beams" />
0389 <use x="$column[2]" y="$brow[1]" xlink:href="#beams" />
0390 <use x="$column[2]" y="$brow[2]" xlink:href="#beams" />
0391 <use x="$column[2]" y="$brow[3]" xlink:href="#beams" />
0392 <use x="$column[2]" y="$brow[4]" xlink:href="#beams" />
0393 <use x="$column[0]" y="$brow[4]" xlink:href="#${image}-90" />
0394 <use x="$column[0]" y="$brow[3]" xlink:href="#${image}-90" />
0395 <use x="$column[0]" y="$brow[2]" xlink:href="#${image}-90" />
0396 <use x="$column[0]" y="$brow[1]" xlink:href="#${image}-90" />
0397 <use x="$column[0]" y="$brow[0]" xlink:href="#${image}-90" />
0398 <use x="$column[4]" y="$brow[4]" xlink:href="#m-${image}-90" />
0399 <use x="$column[4]" y="$brow[3]" xlink:href="#m-${image}-90" />
0400 <use x="$column[4]" y="$brow[2]" xlink:href="#m-${image}-90" />
0401 <use x="$column[4]" y="$brow[1]" xlink:href="#m-${image}-90" />
0402 <use x="$column[4]" y="$brow[0]" xlink:href="#m-${image}-90" />
0403 <use x="$xoff1" y="$ioff" xlink:href="#i10" />
0404 <use x="$xoff2" y="$ioff" xlink:href="#i10" />
0405 </g>
0406 
0407 <g id="g-jack_${suit}" >
0408 <use x="$centerx" y="$centery" xlink:href="#img_jack_$suit" />
0409 <use x="$column[0]" y="$row[8]" xlink:href="#fancy-${image}" />
0410 <use x="$xoff1" y="$ioff" xlink:href="#iu" />
0411 <use x="$xoff2" y="$ioff" xlink:href="#iu" />
0412 </g>
0413 
0414 <g id="g-queen_${suit}" >
0415 <use x="$centerx" y="$centery" xlink:href="#img_queen_$suit" />
0416 <use x="$column[0]" y="$row[1]" xlink:href="#fancy-${image}" />
0417 <use x="$xoff1" y="$ioff" xlink:href="#io" />
0418 <use x="$xoff2" y="$ioff" xlink:href="#io" />
0419 </g>
0420 
0421 <g id="g-king_${suit}" >
0422 <use x="$centerx" y="$centery" xlink:href="#img_king_$suit" />
0423 <use x="$column[0]" y="$row[1]" xlink:href="#fancy-${image}" />
0424 <use x="$column[4]" y="$row[1]" xlink:href="#fancy-${image}" />
0425 <use x="$xoff1" y="$ioff" xlink:href="#ik" />
0426 <use x="$xoff2" y="$ioff" xlink:href="#ik" />
0427 </g>
0428 EOF
0429     }
0430 }
0431 
0432 print <<EOF;
0433 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
0434 <!--
0435 
0436 Copyright $year $author
0437 
0438 This program is free software: you can redistribute it and/or modify it under
0439 the terms of the Lesser GNU General Public License as published by the Free
0440 Software Foundation, either version 3 of the License, or (at your option) any
0441 later version.
0442 
0443 This program is distributed in the hope that it will be useful, but WITHOUT ANY
0444 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
0445 PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
0446 details.
0447 
0448 You should have received a copy of the GNU Lesser General Public License along
0449 with this program.  If not, see <http://www.gnu.org/licenses/>.
0450 
0451 -->
0452 <svg
0453 xmlns:dc="http://purl.org/dc/elements/1.1/"
0454 xmlns:cc="http://creativecommons.org/ns#"
0455 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
0456 xmlns:svg="http://www.w3.org/2000/svg"
0457 xmlns="http://www.w3.org/2000/svg"
0458 xmlns:xlink="http://www.w3.org/1999/xlink"
0459 id="deck" width="$viewwidth" height="$viewheight" 
0460 viewBox="0 0 $viewwidth $viewheight"
0461 >
0462 <metadata>
0463 <!--
0464 <rdf:RDF>
0465 <cc:Work rdf:about="">
0466 <dc:format>image/svg+xml</dc:format>
0467 <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
0468 </cc:Work>
0469 </rdf:RDF>
0470 -->
0471 </metadata>
0472 <defs>
0473 <!-- Gradients, for the shading -->
0474 <linearGradient id="shadow-gradient" >
0475 <stop offset="0" style="stop-color:#000;stop-opacity:0.15" />
0476 <stop offset="0.7" style="stop-color:#fff;stop-opacity:0" />
0477 <stop offset="1" style="stop-color:#000;stop-opacity:0.1" />
0478 </linearGradient>
0479 <linearGradient id="back-shadow-gradient" >
0480 <stop offset="0" style="stop-color:#000;stop-opacity:0.1" />
0481 <stop offset="0.3" style="stop-color:#fff;stop-opacity:0.3" />
0482 <stop offset="1" style="stop-color:#000;stop-opacity:0.2" />
0483 </linearGradient>
0484 <linearGradient id="texture-gradient" x1="0%" x2="5%" spreadMethod="repeat">
0485 <stop offset="0" style="stop-color:#210;stop-opacity:0.1" />
0486 <stop offset="0.3" style="stop-color:#ffe;stop-opacity:0.1" />
0487 <stop offset="0.5" style="stop-color:#320;stop-opacity:0.1" />
0488 <stop offset="0.7" style="stop-color:#fed;stop-opacity:0.1" />
0489 <stop offset="1" style="stop-color:#210;stop-opacity:0.1" />
0490 </linearGradient>
0491 EOF
0492 
0493 print <<EOF;
0494 <!-- The K-gear logo, for the firm logo on the ace of hearts {{{ -->
0495 <g id="k-logo" transform="scale(0.03555)">
0496 <polygon
0497 points="95.6421,148.227
0498 95.6421,30.5293
0499 124.227,27.793
0500 123.924,79.4941
0501 161.637,29.0107
0502 192.047,36.0029
0503 152.814,86.4878
0504 191.742,140.015
0505 161.939,149.445
0506 123.924,93.7866
0507 123.924,143.968
0508 95.6421,148.227
0509 " />
0510 <path
0511 d="M163.82,156.836
0512 L161.351,157.618
0513 C160.99,157.731 160.598,157.596 160.386,157.283
0514 C160.386,157.283 155.514,150.153 149.223,140.946
0515 C141.702,155.665 126.401,165.747 108.732,165.747
0516 C83.6294,165.747 63.2773,145.394 63.2773,120.29
0517 C63.2773,101.822 74.293,85.9395 90.106,78.8247
0518 L90.106,67.0986
0519 C87.228,68.1055 84.4463,69.3188 81.8037,70.7583
0520 C81.8013,70.7563 81.7978,70.7515 81.7905,70.7476
0521 L60.3784,56.7046
0522 C59.8013,56.3276 59.0415,56.4058 58.5566,56.894
0523 L47.3379,68.1108
0524 C46.8662,68.584 46.7773,69.3188 47.125,69.8916
0525 L60.2593,91.5229
0526 C57.9297,95.4394 56.064,99.6626 54.7295,104.117
0527 L30.6157,109.133
0528 C29.9448,109.272 29.4614,109.866 29.4614,110.555
0529 L29.4614,126.417
0530 C29.4614,127.088 29.9194,127.669 30.5659,127.826
0531 L53.9702,133.546
0532 C55.2183,138.706 57.1528,143.597 59.709,148.092
0533 L46.1626,168.75
0534 C45.7847,169.328 45.8638,170.088 46.352,170.575
0535 L57.5674,181.792
0536 C58.0391,182.262 58.7754,182.353 59.3506,182.007
0537 L80.5786,169.115
0538 C84.7485,171.521 89.2456,173.415 93.9985,174.699
0539 L98.9512,198.513
0540 C99.0908,199.188 99.688,199.668 100.372,199.668
0541 L116.237,199.668
0542 C116.904,199.668 117.485,199.213 117.645,198.559
0543 L123.479,174.695
0544 C128.379,173.373 133.013,171.402 137.284,168.886
0545 L158.204,182.604
0546 C158.779,182.983 159.539,182.907 160.027,182.418
0547 L171.246,171.202
0548 C171.721,170.727 171.807,169.994 171.458,169.422
0549 L163.82,156.836z " />
0550 </g>
0551 <g id="k-logo-big" transform="scale(0.0425)" >
0552 <path
0553 d="
0554 M76.0205,20.674
0555 L100.121,18.9199
0556 C100.121,33.4105 100.121,47.8248 100.121,62.239
0557 C109.73,47.7485 120.407,33.3342 132.456,19.3775
0558 L158.311,25.9364
0559 C146.719,38.8254 134.897,53.1634 125.441,67.5014
0560 C134.517,82.7546 144.507,96.7124 157.854,112.575
0561 L132.916,119.972
0562 C118.959,104.338 110.57,89.3135 100.121,73.1451
0563 L100.121,116.083
0564 L76.0205,119.135
0565 L76.0205,20.674
0566 L76.0205,20.674z " />
0567 <path
0568 d="
0569 M100.35,139.803
0570 C114.46,136.827 110.875,132.557 122.39,139.269
0571 L129.865,144.53
0572 C131.239,145.217 132.535,146.438 133.831,145.14
0573 C136.653,142.471 139.399,139.726 142.22,137.057
0574 C143.441,135.76 142.22,134.309 141.61,133.319
0575 L141.533,133.319
0576 L136.119,125.617
0577 L132.534,126.915
0578 C131.62,127.525 130.398,127.219 129.332,125.771
0579 L121.4,115.398
0580 C114.078,125.541 102.257,132.1 88.8342,132.1
0581 C66.7181,132.1 48.7193,114.103 48.7193,91.9849
0582 C48.7193,76.2741 57.795,62.6225 70.9879,56.0636
0583 L70.9879,46.8354
0584 C70.5304,47.0642 70.0738,47.2167 69.6904,47.3693
0585 C64.5053,49.5047 64.1992,50.4962 55.7337,45.6152
0586 L48.2606,40.2765
0587 C46.8868,39.6664 45.5903,38.3699 44.2948,39.6664
0588 C41.473,42.412 38.7274,45.1576 35.9055,47.9031
0589 C34.6853,49.1234 35.9818,50.6487 36.5157,51.6402
0590 L42.2335,59.7244
0591 L46.4292,65.6731
0592 C47.0393,66.5121 47.2671,66.5883 46.9631,67.1985
0593 C46.5828,67.8086 46.2767,68.3425 45.8953,68.9526
0594 C40.3279,78.5621 44.2175,79.3248 32.32,82.4517
0595 L23.2443,83.977
0596 C21.8726,84.4346 20.0422,84.4346 19.9649,86.3413
0597 C19.9649,90.2308 19.8886,94.1204 19.8886,98.01
0598 C19.8123,99.7641 21.7963,99.9177 22.9403,100.222
0599 L32.6272,101.976
0600 L39.8724,103.273
0601 C40.8639,103.427 41.0906,103.273 41.3204,104.035
0602 C44.2959,116.924 48.1844,113.874 41.7007,125.085
0603 L36.4394,132.635
0604 C35.753,133.932 34.5317,135.229 35.8293,136.524
0605 C38.5748,139.346 41.2431,142.094 43.9887,144.916
0606 C45.2089,146.134 46.7343,144.839 47.7268,144.306
0607 L55.8099,138.586
0608 L61.835,134.466
0609 C62.6749,133.78 62.7512,133.552 63.3613,133.932
0610 C75.4103,141.484 75.8679,136.068 79.3762,148.805
0611 L81.054,157.879
0612 C81.5116,159.253 81.5879,161.007 83.4183,161.083
0613 C87.3078,161.083 91.2737,161.083 95.1632,161.083
0614 C96.9174,161.083 97.071,159.099 97.2987,157.955
0615 L98.9766,148.194
0616 L100.121,141.023
0617 C100.197,140.337 100.197,140.029 100.35,139.803z
0618 M114.917,133.701
0619 C114.841,133.776 114.764,133.776 114.687,133.776
0620 C114.764,133.776 114.764,133.701 114.841,133.701
0621 L114.917,133.701z
0622 M101.111,139.497
0623 C100.883,139.573 100.577,139.65 100.349,139.803
0624 C100.501,139.649 100.731,139.573 101.111,139.497z" />
0625 <path
0626 d="
0627 M89.1393,129.202
0628 C101.798,129.202 112.933,122.794 119.645,113.031
0629 L119.187,112.27
0630 C111.332,120.963 102.562,126.607 89.063,126.913
0631 C72.2845,127.217 55.2771,112.193 55.1998,92.5156
0632 C55.0483,79.8555 60.9198,71.3137 70.9106,65.2124
0633 L70.9106,59.8737
0634 C59.6995,66.2038 52.074,78.3301 52.074,92.1354
0635 C52.074,112.497 68.6989,129.202 89.1393,129.202z" />
0636 </g>
0637 <g id="big-logo">
0638 <use xlink:href="#k-logo-big" transform="translate(4.5, 4.5) scale(14, 14) translate(-4.5, -4.5)"/>
0639 </g>
0640 <!-- }}} -->
0641 
0642 <!-- Suits -->
0643 
0644 <!-- This is the base shadow, it may be used by any of the four suits -->
0645 <linearGradient id="base-shadow" >
0646 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0647 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0648 </linearGradient>
0649 
0650 <!-- Heart (Same) {{{ -->
0651 <linearGradient xlink:href="#base-shadow" id="heart-shadow" 
0652 y1="8" x1="14" y2="8" gradientUnits="userSpaceOnUse" x2="8" />
0653 <linearGradient gradientTransform="matrix(0.58285,0,0,0.664942,-320.41923,14.5527)" 
0654 xlink:href="#base-shadow" id="heart-shadow" y1="-14.649101" x1="569.321" y2="-14.715566" gradientUnits="userSpaceOnUse" x2="559.836" />
0655 
0656 <path id="heart-shape"
0657 d="M4.5942,0.124594
0658 C1.80826,0.124593 0.257141,2.00514 0.0771044,4.34282
0659 C0.0673999,4.46886 0.060598,4.58832 0.0588903,4.71685
0660 C0.0589019,4.73102 0.0588145,4.74427 0.0588903,4.75841
0661 C0.0585989,4.77263 0.0590768,4.78572 0.0588903,4.79997
0662 C0.0609244,4.8135 0.0568095,4.82802 0.0588903,4.84153
0663 C0.124461,9.35304 3.52015,12.3564 6.68881,14.8364
0664 C6.69267,14.8397 6.70317,14.8332 6.70703,14.8364
0665 C6.795,14.9053 6.87449,14.9762 6.96202,15.0442
0666 C7.29842,15.325 7.63486,15.6106 7.9638,15.8754
0667 C7.97464,15.867 7.98937,15.8631 8.00023,15.8546
0668 C8.01109,15.8631 8.02581,15.867 8.03666,15.8754
0669 C8.44881,15.5436 8.87102,15.2144 9.29343,14.8572
0670 C9.30019,14.8515 9.30487,14.8422 9.31164,14.8364
0671 C9.33234,14.8202 9.34556,14.7903 9.36628,14.7741
0672 C12.5171,12.3035 15.8764,9.32357 15.9416,4.84153
0673 C15.942,4.81336 15.9414,4.78669 15.9416,4.75841
0674 C15.9387,4.6159 15.9362,4.48229 15.9233,4.34282
0675 C15.7433,2.00514 14.1922,0.124593 11.4063,0.124594
0676 C9.35839,0.124594 8.40333,0.78155 8.00023,1.18434
0677 C7.5971,0.78155 6.64206,0.124594 4.5942,0.124594z" />
0678 <g id="heart" transform="scale(1.6) translate(-8,-8)" >
0679 <use 
0680 style="opacity:1;fill:#f00;stroke:#000;stroke-width:0.33;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;overflow:visible" 
0681 xlink:href="#heart-shape" />
0682 <use 
0683 style="opacity:0.5;fill:url(#heart-shadow);stroke:none;overflow:visible" 
0684 xlink:href="#heart-shape" />
0685 </g>
0686 <use id="heart-30" xlink:href="#heart" transform="rotate(-30)" />
0687 <use id="m-heart-30" xlink:href="#heart-30" transform="scale(-1,1)" />
0688 <!-- }}} -->
0689 
0690 <!-- Bells (Diamonds) {{{ -->
0691 <linearGradient id="bell-lg3297" >
0692 <stop offset="0" style="stop-color:#fff;stop-opacity:0.75" />
0693 <stop offset="0.5" style="stop-color:#fff;stop-opacity:0.125" />
0694 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
0695 </linearGradient>
0696 <linearGradient id="bell-lg3275" >
0697 <stop offset="0" style="stop-color:#000;stop-opacity:0" />
0698 <stop offset="0.64564931" style="stop-color:#000;stop-opacity:0.125" />
0699 <stop offset="1" style="stop-color:#000;stop-opacity:0.8" />
0700 </linearGradient>
0701 <radialGradient fx="7.9963655" fy="7.6662726" cx="7.9963655" cy="7.6662726" gradientTransform="matrix(1.1034816,-6.2976034e-3,0.010861,1.9030972,-0.9107401,-7.1998347)" xlink:href="#bell-lg3275" id="bell-rg3216" r="7.2602115" gradientUnits="userSpaceOnUse" />
0702 <radialGradient fx="4.6701384" fy="4.56249" cx="4.6701384" cy="4.56249" gradientTransform="matrix(1,0,0,1.1117955,0,-0.8975088)" xlink:href="#bell-lg3297" id="bell-rg3220" r="7.2602115" gradientUnits="userSpaceOnUse" />
0703 
0704 <g id="bell" transform="scale(1.9) translate(-8,-8)">
0705 <path style="fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0706 d="M8.3125,0.0625C6.7082508,-0.0032481328 5.0815494,0.45086445 3.78125,1.40625C1.8838863,2.7497067 0.73087088,5.0792051 0.84375,7.40625C0.91344062,9.8123192 2.3409439,12.112332 4.4375,13.28125C5.049487,13.636003 5.7193002,13.878318 6.40625,14.03125C6.3844248,14.137386 6.375,14.262172 6.375,14.375C6.375,15.277622 7.1095757,16.0 8,16C8.8904243,16 9.6249998,15.277622 9.625,14.375C9.625,14.262172 9.6155752,14.137386 9.59375,14.03125C10.397641,13.853828 11.179933,13.542867 11.875,13.09375C13.893369,11.838482 15.180146,9.5078516 15.15625,7.125C15.156261,6.913449 15.143958,6.7107034 15.125,6.5C14.926835,4.047564 13.317218,1.7867831 11.09375,0.75C10.223631,0.3271543 9.2750495,0.10194888 8.3125,0.0625zM7.25,14.15625C7.7406101,14.205249 8.2593503,14.205451 8.75,14.15625C8.769506,14.225169 8.78125,14.299 8.78125,14.375C8.7812503,14.814114 8.4328184,15.15625 8,15.15625C7.5671816,15.156251 7.21875,14.814114 7.21875,14.375C7.21875,14.299 7.230494,14.225169 7.25,14.15625z" />
0707 <path style="fill:#f00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" id="path3320"
0708 d="M8.0625,7.96875C5.713722,7.9695721 3.36548,8.3252071 1.09375,9.09375C1.5405203,10.620011 2.5449032,11.955819 3.84375,12.875C4.8547187,12.454147 6.1157871,12.007714 7.132337,11.909511C8.9087168,11.720262 10.495443,12.15138 12.25,12.8125C13.492106,11.912042 14.402614,10.592434 14.84375,9.125C12.647304,8.3230467 10.352998,7.969202 8.0625,7.96875z" />
0709 <path style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="path2480"
0710 d="M8,8.78125C5.7683261,8.7818602 3.5283061,9.1479842 1.4375,9.9375C1.8300278,10.75015 2.3046977,11.534923 2.96875,12.15625C4.2574945,11.564857 5.6468378,11.145821 7.0698716,11.038413C9.1094312,10.868642 11.191464,11.260075 13.03125,12.15625C13.649381,11.558412 14.151229,10.849725 14.5,10.0625C14.281707,9.8917579 13.900781,9.7110546 13.627887,9.6153175C11.838211,8.9874613 9.9028183,8.7815434 8,8.78125z" />
0711 <use width="16" height="16" xlink:href="#path3320" transform="matrix(1,0,0,-1,0.03125,14.287229)" />
0712 <use width="16" height="16" xlink:href="#path2480" transform="matrix(1,0,0,-1,0,14.254307)" />
0713 <path style="fill:url(#bell-rg3220);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0714 d="M8.3125,0.0625C6.7082508,-0.0032481328 5.0815494,0.45086445 3.78125,1.40625C1.8838863,2.7497067 0.73087088,5.0792051 0.84375,7.40625C0.91344062,9.8123192 2.3409439,12.112332 4.4375,13.28125C5.049487,13.636003 5.7193002,13.878318 6.40625,14.03125C6.3844248,14.137386 6.375,14.262172 6.375,14.375C6.375,15.277622 7.1095757,16.0 8,16C8.8904243,16 9.6249998,15.277622 9.625,14.375C9.625,14.262172 9.6155752,14.137386 9.59375,14.03125C10.397641,13.853828 11.179933,13.542867 11.875,13.09375C13.893369,11.838482 15.180146,9.5078516 15.15625,7.125C15.156261,6.913449 15.143958,6.7107034 15.125,6.5C14.926835,4.047564 13.317218,1.7867831 11.09375,0.75C10.223631,0.3271543 9.2750495,0.10194888 8.3125,0.0625zM7.25,14.15625C7.7406101,14.205249 8.2593503,14.205451 8.75,14.15625C8.769506,14.225169 8.78125,14.299 8.78125,14.375C8.7812503,14.814114 8.4328184,15.15625 8,15.15625C7.5671816,15.156251 7.21875,14.814114 7.21875,14.375C7.21875,14.299 7.230494,14.225169 7.25,14.15625z" />
0715 <path style="fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
0716 d="M7.9849541,-0.0078075164C7.6869255,-0.028662786 7.3916886,-0.037493306 7.4873781,0.35042431C7.4464145,0.84837639 7.3453589,1.3376675 7.173728,1.8070568C7.0425575,2.2164177 7.1445189,2.7993271 7.6207682,2.9222339C7.9813255,3.0520536 8.4597678,2.9890746 8.7244661,2.6951302C9.0490657,2.2371246 8.7825399,1.6767868 8.6424276,1.2042933C8.5681178,0.80944689 8.5003713,0.41071761 8.4815713,0.0087463936C8.3162918,-0.0025950164 8.150615,-0.0078498964 7.9849541,-0.0078075164z" />
0717 <path style="fill:url(#bell-rg3216);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0718 d="M8.3125,0.0625C6.7082508,-0.0032481328 5.0815494,0.45086445 3.78125,1.40625C1.8838863,2.7497067 0.73087088,5.0792051 0.84375,7.40625C0.91344062,9.8123192 2.3409439,12.112332 4.4375,13.28125C5.049487,13.636003 5.7193002,13.878318 6.40625,14.03125C6.3844248,14.137386 6.375,14.262172 6.375,14.375C6.375,15.277622 7.1095757,16.0 8,16C8.8904243,16 9.6249998,15.277622 9.625,14.375C9.625,14.262172 9.6155752,14.137386 9.59375,14.03125C10.397641,13.853828 11.179933,13.542867 11.875,13.09375C13.893369,11.838482 15.180146,9.5078516 15.15625,7.125C15.156261,6.913449 15.143958,6.7107034 15.125,6.5C14.926835,4.047564 13.317218,1.7867831 11.09375,0.75C10.223631,0.3271543 9.2750495,0.10194888 8.3125,0.0625zM7.25,14.15625C7.7406101,14.205249 8.2593503,14.205451 8.75,14.15625C8.769506,14.225169 8.78125,14.299 8.78125,14.375C8.7812503,14.814114 8.4328184,15.15625 8,15.15625C7.5671816,15.156251 7.21875,14.814114 7.21875,14.375C7.21875,14.299 7.230494,14.225169 7.25,14.15625z" />
0719 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="path3307"
0720 d="M8,8.78125C5.7683261,8.7818602 3.5283061,9.1479842 1.4375,9.9375C1.8300278,10.75015 2.3046977,11.534923 2.96875,12.15625C4.2574945,11.564857 5.6468378,11.145821 7.0698716,11.038413C9.1094312,10.868642 11.191464,11.260075 13.03125,12.15625C13.649381,11.558412 14.151229,10.849725 14.5,10.0625C14.281707,9.8917579 13.900781,9.7110546 13.627887,9.6153175C11.838211,8.9874613 9.9028183,8.7815434 8,8.78125z" />
0721 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0722 d="M8.3125,0.0625C6.7082508,-0.0032481328 5.0815494,0.45086445 3.78125,1.40625C1.8838863,2.7497067 0.73087088,5.0792051 0.84375,7.40625C0.91344062,9.8123192 2.3409439,12.112332 4.4375,13.28125C5.049487,13.636003 5.7193002,13.878318 6.40625,14.03125C6.3844248,14.137386 6.375,14.262172 6.375,14.375C6.375,15.277622 7.1095757,16.0 8,16C8.8904243,16 9.6249998,15.277622 9.625,14.375C9.625,14.262172 9.6155752,14.137386 9.59375,14.03125C10.397641,13.853828 11.179933,13.542867 11.875,13.09375C13.893369,11.838482 15.180146,9.5078516 15.15625,7.125C15.156261,6.913449 15.143958,6.7107034 15.125,6.5C14.926835,4.047564 13.317218,1.7867831 11.09375,0.75C10.223631,0.3271543 9.2750495,0.10194888 8.3125,0.0625zM7.25,14.15625C7.7406101,14.205249 8.2593503,14.205451 8.75,14.15625C8.769506,14.225169 8.78125,14.299 8.78125,14.375C8.7812503,14.814114 8.4328184,15.15625 8,15.15625C7.5671816,15.156251 7.21875,14.814114 7.21875,14.375C7.21875,14.299 7.230494,14.225169 7.25,14.15625z" />
0723 <use width="16" height="16" xlink:href="#path3307" transform="matrix(1,0,0,-1,0.03125,14.270522)" />
0724 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="path3324"
0725 d="M8.0625,7.96875C5.713722,7.9695721 3.36548,8.3252071 1.09375,9.09375C1.5405203,10.620011 2.5449032,11.955819 3.84375,12.875C4.8547187,12.454147 6.1157871,12.007714 7.132337,11.909511C8.9087168,11.720262 10.495443,12.15138 12.25,12.8125C13.492106,11.912042 14.402614,10.592434 14.84375,9.125C12.647304,8.3230467 10.352998,7.969202 8.0625,7.96875z" />
0726 <use width="16" height="16" xlink:href="#path3324" transform="matrix(1,0,0,-1,0.03125,14.30462)" />
0727 </g>
0728 <use id="bell-30" xlink:href="#bell" transform="rotate(-30)" />
0729 <use id="m-bell-30" xlink:href="#bell-30" transform="scale(-1,1)" />
0730 <!-- }}} -->
0731 
0732 <!-- Leaves (Spades) {{{ -->
0733 <linearGradient id="leaf-lg3632" >
0734 <stop offset="0" style="stop-color:#000;stop-opacity:0.498039" />
0735 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0736 </linearGradient>
0737 <linearGradient gradientTransform="translate(-9.0064765,5.44242)" xlink:href="#leaf-lg3632" id="leaf-lg3638" y1="2.55757" x1="18.3604" y2="2.55757" x2="15.9963" gradientUnits="userSpaceOnUse" />
0738 <g id="leaf" transform="scale(1.9) translate(-8, -8)" >
0739 <g style="display:inline" >
0740 <g>
0741 <g transform="translate(0.0561231,-2.3978707e-2)" >
0742 <path style="opacity:1;fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;overflow:visible"
0743 d="M7.9375,0.0625C7.18038,0.719034 5.1645,3.19925 4.5625,4C1.63135,7.89887 -1.0067531,14.8363 4.875,15.9375C7.0301,15.9683 7.9375,14.8125 7.9375,14.8125C7.9375,14.8125 8.8449,15.9683 11,15.9375C16.8818,14.8363 14.2749,7.89887 11.3438,4C10.7417,3.19925 8.69462,0.719034 7.9375,0.0625z" />
0744 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;overflow:visible"
0745 d="M7.92824,0.0578071C7.17112,0.714341 5.15325,3.20212 4.55125,4.00288C1.6201,7.90174 -0.99790036,14.8404 4.88385,15.9416C7.03895,15.9724 7.92824,14.8165 7.92824,14.8165M7.74823,10.7291C6.4814,10.3232 4.91276,11.5342 3.8582,12.389M7.68205,7.32069C6.54396,7.01678 5.16353,8.08153 4.18732,8.85194M7.64895,3.94539C6.68775,3.69186 5.23,4.93472 5.01276,5.32039" />
0746 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;overflow:visible"
0747 d="M8.01295,0.0625C8.45152,0.595602 8.82902,1.03237 9.25282,1.52035C10.9049,3.42261 12.5022,5.42261 13.496,7.76091C14.2447,9.52247 14.8727,11.5318 14.3129,13.4371C13.906,14.8452 12.5362,15.7326 11.1493,15.9731C10.0059,16.0742 8.75394,15.7276 7.95045,14.875C7.15498,15.6974 5.92747,16.0093 4.81415,15.9106C3.4256,15.6694 2.05499,14.7824 1.64294,13.3746C1.07671,11.472 1.69689,9.46088 2.4419,7.69841C3.37192,5.50402 4.83439,3.60036 6.39041,1.81669C6.91136,1.21434 7.43218,0.608614 8.01295,0.0625z" />
0748 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;overflow:visible"
0749 d="M7.97368,0.544315C7.75654,4.28949 8.60984,11.7173 7.87993,14.8306" />
0750 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;overflow:visible"
0751 d="M8.53125,9.30017C8.53125,9.30017 9.66971,8.53737 10.8082,9.0459C11.9466,9.55443 13.1563,10.6562 13.1563,10.6562M8.46875,12.0312C8.46875,12.0312 9.46875,11.4688 10.4688,11.8438C11.4688,12.2188 12.5313,13.0312 12.5313,13.0312M8.375,4.4375C8.375,4.4375 9.13654,3.875 9.89808,4.25C10.6596,4.625 11.4688,5.4375 11.4688,5.4375M8.53125,6.78125C8.53125,6.78125 9.46202,6.21875 10.3928,6.59375C11.3236,6.96875 12.3125,7.78125 12.3125,7.78125" />
0752 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;overflow:visible"
0753 d="M7.5625,9.20642C7.5625,9.20642 6.42404,8.44362 5.28558,8.95215C4.14712,9.46068 2.9375,10.5625 2.9375,10.5625M7.625,11.9375C7.625,11.9375 6.625,11.375 5.625,11.75C4.625,12.125 3.5625,12.9375 3.5625,12.9375M7.71875,4.34375C7.71875,4.34375 6.95721,3.78125 6.19567,4.15625C5.43414,4.53125 4.625,5.34375 4.625,5.34375M7.5625,6.6875C7.5625,6.6875 6.63173,6.125 5.70096,6.5C4.77019,6.875 3.78125,7.6875 3.78125,7.6875" />
0754 </g>
0755 <path style="opacity:1;fill:url(#leaf-lg3638);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;overflow:visible"
0756 d="M8.03773,0.0361747C8.47629,0.569277 8.85379,1.00605 9.27759,1.49402C10.9297,3.39629 12.527,5.39629 13.5208,7.73459C14.2694,9.49614 14.8975,11.5055 14.3377,13.4108C13.9308,14.8189 12.561,15.7063 11.174,15.9468C10.0307,16.0479 8.77872,15.7012 7.97523,14.8487C7.17975,15.6711 5.95225,15.9829 4.83892,15.8843C3.45037,15.6431 2.07976,14.7561 1.66771,13.3483C1.10149,11.4457 1.72166,9.43456 2.46667,7.67209C3.39669,5.47769 4.85916,3.57404 6.41518,1.79037C6.93613,1.18801 7.45696,0.582289 8.03773,0.0361747z" />
0757 </g>
0758 </g>
0759 </g>
0760 
0761 <use id="leaf-90" xlink:href="#leaf" transform="rotate(90) scale(1,-1)" />
0762 <use id="m-leaf-90" xlink:href="#leaf-90" transform="scale(-1,1)" />
0763 <!-- }}} -->
0764 
0765 <!-- Leaf stalk for fancy leaves {{{ -->
0766 <linearGradient id="lstalk-lg3198" >
0767 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0768 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0769 </linearGradient>
0770 <linearGradient id="lstalk-lg3175" >
0771 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0772 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0773 </linearGradient>
0774 <radialGradient fx="8.3054" fy="16.4245" cx="8.3054" cy="16.4245" gradientTransform="matrix(0.996361,-0.1208007,0.228125,1.88157,-3.7166245,-13.88341)" xlink:href="#lstalk-lg3175" id="lstalk-rg3181" r="1.03271" gradientUnits="userSpaceOnUse" />
0775 <linearGradient xlink:href="#lstalk-lg3198" id="lstalk-lg3204" y1="20.4459" x1="10.345" y2="19.9043" x2="8.80637" gradientUnits="userSpaceOnUse" />
0776 
0777 <g id="lstalk" transform="scale(1.9) translate(-8, -8)" >
0778 <g style="display:inline" >
0779 <g>
0780 <path style="opacity:1;fill:#080;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0781 d="M7.67759,15.0882C7.67759,15.0882 7.19375,15.873 7.28388,16.7622C7.37401,17.6514 8.35323,18.8164 8.35323,18.8164C8.35323,18.8164 8.21383,18.8064 8.59833,18.5258C8.98282,18.2452 9.33812,18.565 9.33812,18.565C9.33812,18.565 8.11606,17.4066 7.99088,16.673C7.86106,15.9122 7.9477,15.5209 8.08529,15.1665C8.22289,14.8121 7.67759,15.0882 7.67759,15.0882z" />
0782 <g>
0783 <path style="opacity:1;fill:url(#lstalk-rg3181);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
0784 d="M7.67759,15.0882C7.67759,15.0882 7.19375,15.873 7.28388,16.7622C7.37401,17.6514 8.35323,18.8164 8.35323,18.8164C8.35323,18.8164 8.21383,18.8064 8.59833,18.5258C8.98282,18.2452 9.33812,18.565 9.33812,18.565C9.33812,18.565 8.11606,17.4066 7.99088,16.673C7.86106,15.9122 7.9477,15.5209 8.08529,15.1665C8.22289,14.8121 7.67759,15.0882 7.67759,15.0882z" />
0785 </g>
0786 <path style="opacity:1;fill:#080;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.451728;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0787 d="M9.98788,20.1543A0.972272,1.10485 0 1 1 9.98703,20.108" transform="matrix(0.522727,0,0,0.375,4.19242,11.2319)" />
0788 <path style="opacity:1;fill:url(#lstalk-lg3204);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
0789 d="M9.98788,20.1543A0.972272,1.10485 0 1 1 9.98703,20.108" transform="matrix(0.522727,0,0,0.375,4.19242,11.2319)" />
0790 </g>
0791 </g>
0792 </g>
0793 <!-- }}} -->
0794 
0795 <g id="fancy-leaf" >
0796 <use xlink:href="#leaf"/>
0797 <use xlink:href="#lstalk"/>
0798 </g>
0799 
0800 <use id="leaf-30" xlink:href="#fancy-leaf" transform="rotate(-30)" />
0801 <use id="m-leaf-30" xlink:href="#leaf-30" transform="scale(-1,1)" />
0802 
0803 <!-- Acorns (Clubs) {{{ -->
0804 <linearGradient id="linearGradient3387" >
0805 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0806 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0807 </linearGradient>
0808 <linearGradient gradientTransform="matrix(0.507206,0,0,0.507206,-749.28942,-395.39814)" xlink:href="#linearGradient3387" id="linearGradient2410" y1="787.647" x1="1495.69" y2="787.604" gradientUnits="userSpaceOnUse" x2="1491.63" />
0809 <linearGradient gradientTransform="translate(0.627415,7.77185)" xlink:href="#linearGradient3387" id="linearGradient2433" y1="803.728" x1="1494.68" y2="803.538" gradientUnits="userSpaceOnUse" x2="1488.61" />
0810 <g id="acorn" transform="scale(1.9) translate(-8,-8)">
0811 <g>
0812 <g transform="matrix(0.507206,0,0,0.507206,-747.96764,-399.88413)" >
0813 <g transform="translate(0.465501,9.10764)" >
0814 <path style="opacity:1;fill:#080;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.394317;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0815 d="M1500.17,802.789C1500.19,805.25 1498.65,807.483 1496.65,808.803C1493.17,811.117 1488.47,811.348 1484.71,809.591C1482.37,808.502 1480.31,806.426 1479.89,803.802C1479.49,801.52 1480.52,799.173 1482.21,797.657C1485.05,795.079 1489.22,794.321 1492.9,795.165C1495.67,795.803 1498.38,797.491 1499.59,800.147C1499.97,800.974 1500.17,801.88 1500.17,802.789z" />
0816 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.394317;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0817 d="M1499.12,799.328C1499.13,799.876 1498.34,800.285 1497.91,800.616C1495.52,802.078 1492.64,802.451 1489.88,802.445C1487.2,802.405 1484.42,802.106 1482,800.865C1481.53,800.564 1480.77,800.225 1480.62,799.693" />
0818 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.394317;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0819 d="M1499.8,800.786C1499.81,801.345 1498.96,801.745 1498.51,802.073C1496.03,803.491 1493.1,803.87 1490.28,803.902C1487.35,803.891 1484.32,803.626 1481.62,802.385C1481.03,802.068 1480.35,801.767 1479.98,801.181L1479.99,801.158L1480.01,801.15" />
0820 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.394317;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0821 d="M1500.08,802.486C1500.09,803.049 1499.22,803.446 1498.77,803.773C1496.24,805.181 1493.29,805.561 1490.44,805.602C1487.46,805.599 1484.4,805.345 1481.63,804.149C1480.98,803.819 1480.23,803.509 1479.82,802.881L1479.83,802.858L1479.85,802.85" />
0822 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.394317;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0823 d="M1499.92,804.186C1499.93,804.747 1499.07,805.146 1498.62,805.473C1496.12,806.893 1493.17,807.27 1490.33,807.303C1487.37,807.291 1484.32,807.027 1481.59,805.786C1481,805.468 1480.31,805.169 1479.94,804.581L1479.95,804.558L1479.97,804.55" />
0824 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.394317;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0825 d="M1499.28,805.886C1499.3,806.434 1498.5,806.842 1498.08,807.173C1495.68,808.636 1492.8,809.008 1490.04,809.002C1487.36,808.962 1484.58,808.663 1482.16,807.422C1481.69,807.121 1480.93,806.782 1480.78,806.25" />
0826 </g>
0827 <path style="opacity:0.506;fill:url(#linearGradient2433);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.394317;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0828 d="M1500.63,811.897C1500.66,814.358 1499.12,816.591 1497.12,817.911C1493.64,820.224 1488.94,820.456 1485.18,818.699C1482.84,817.61 1480.78,815.534 1480.36,812.91C1479.95,810.628 1480.98,808.281 1482.68,806.765C1485.51,804.186 1489.69,803.428 1493.36,804.272C1496.14,804.91 1498.84,806.598 1500.06,809.255C1500.43,810.082 1500.64,810.988 1500.63,811.897z" />
0829 </g>
0830 <path style="fill:#f00;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0831 d="M4.12888,4.01326C4.12837,6.01042 4.11838,8.00759 4.09713,10.0046C4.23808,10.3242 4.62594,10.4328 4.91987,10.577C6.06808,11.048 7.33706,11.0476 8.55826,11.029C9.64652,10.9872 10.7899,10.8469 11.7164,10.2291C12.0403,10.0203 11.8323,9.59055 11.8844,9.27668C11.8576,7.50434 11.8539,5.73132 11.8431,3.95917C11.7625,2.89492 11.2465,1.86532 10.3992,1.20712C9.69887,0.644395 8.85264,0.298359 7.99633,0.0507157C6.83675,0.273141 5.70401,0.859207 5.02253,1.84917C4.56589,2.4918 4.29408,3.24744 4.12888,4.01326z" />
0832 <path style="opacity:0.53;fill:url(#linearGradient2410);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
0833 d="M4.12889,4.01328C4.12838,6.01044 4.11839,8.0076 4.09714,10.0046C4.23804,10.3242 4.62595,10.4328 4.91988,10.577C6.06809,11.048 7.33707,11.0476 8.55822,11.029C9.64653,10.9872 10.7899,10.8469 11.7164,10.229C12.0403,10.0203 11.8323,9.59054 11.8844,9.27667C11.8576,7.50434 11.8539,5.73132 11.8431,3.95917C11.7625,2.89492 11.2465,1.86532 10.3992,1.20711C9.69887,0.644394 8.85265,0.298363 7.99634,0.0507199C6.83676,0.273135 5.70402,0.859206 5.02254,1.84917C4.5659,2.49181 4.29409,3.24744 4.12889,4.01328z" />
0834 </g>
0835 </g>
0836 <!-- }}} -->
0837 
0838 <g id="fancy-acorn" >
0839 <use xlink:href="#acorn"/>
0840 <use xlink:href="#lstalk"/>
0841 </g>
0842 <use id="acorn-30" xlink:href="#fancy-acorn" transform="rotate(-30)" />
0843 <use id="m-acorn-30" xlink:href="#acorn-30" transform="scale(-1,1)" />
0844 <use id="acorn-90" xlink:href="#acorn" transform="rotate(90) scale(1,-1)" />
0845 <use id="m-acorn-90" xlink:href="#acorn-90" transform="scale(-1,1)" />
0846 
0847 <!-- The card outline -->
0848 <g id="card-outline">
0849 <rect width="$width" x="0.4" y="0.4" rx="$cradius" height="$height" 
0850 style="fill:white;stroke:#ccc;stroke-width:0.8" />
0851 </g>
0852 <g id="card-shadow">
0853 <rect width="$width" x="0.1" y="0.1" rx="$cradius" height="$height" 
0854 style="fill:url(#shadow-gradient);stroke:none" />
0855 <rect width="$width" x="0.1" y="0.1" rx="$cradius" height="$height" 
0856 style="fill:url(#texture-gradient);stroke:none;opacity:0.5" />
0857 </g>
0858 <g id="back-shadow">
0859 <rect width="$width" x="0.1" y="0.1" rx="$cradius" height="$height" 
0860 style="fill:url(#back-shadow-gradient);stroke:none" />
0861 <rect width="$width" x="0.1" y="0.1" rx="$cradius" height="$height" 
0862 style="fill:url(#texture-gradient);stroke:none;opacity:0.5" />
0863 </g>
0864 
0865 <use id="heart-s" xlink:href="#heart" transform="scale(.5)" />
0866 <g id="card-heart">
0867 <use xlink:href="#card-outline" />
0868 <use id="heart-s1" x="$xoff1" y="$yoff" xlink:href="#heart-s" />
0869 <use id="heart-s2" x="$xoff2" y="$yoff" xlink:href="#heart-s" />
0870 <use xlink:href="#heart-s1" transform="rotate(180,$centerx,$centery)" />
0871 <use xlink:href="#heart-s2" transform="rotate(180,$centerx,$centery)" />
0872 </g>
0873 
0874 <use id="bell-s" xlink:href="#bell" transform="scale(.5)"/>
0875 <g id="card-diamond">
0876 <use xlink:href="#card-outline" />
0877 <use id="bell-s1" x="$xoff1" y="$yoff" xlink:href="#bell-s"/>
0878 <use id="bell-s2" x="$xoff2" y="$yoff" xlink:href="#bell-s"/>
0879 <use xlink:href="#bell-s1" transform="rotate(180,$centerx,$centery)"/>
0880 <use xlink:href="#bell-s2" transform="rotate(180,$centerx,$centery)"/>
0881 </g>
0882 
0883 <use id="leaf-s" xlink:href="#fancy-leaf" transform="scale(.5)"/>
0884 <g id="card-spade">
0885 <use xlink:href="#card-outline" />
0886 <use id="leaf-s1" x="$xoff1" y="$yoff" xlink:href="#leaf-s"/>
0887 <use id="leaf-s2" x="$xoff2" y="$yoff" xlink:href="#leaf-s"/>
0888 <use xlink:href="#leaf-s1" transform="rotate(180,$centerx,$centery)"/>
0889 <use xlink:href="#leaf-s2" transform="rotate(180,$centerx,$centery)"/>
0890 </g>
0891 
0892 <use id="acorn-s" xlink:href="#fancy-acorn" transform="scale(.5)"/>
0893 <g id="card-club">
0894 <use xlink:href="#card-outline" />
0895 <use id="acorn-s1" x="$xoff1" y="$yoff" xlink:href="#acorn-s"/>
0896 <use id="acorn-s2" x="$xoff2" y="$yoff" xlink:href="#acorn-s"/>
0897 <use xlink:href="#acorn-s1" transform="rotate(180,$centerx,$centery)"/>
0898 <use xlink:href="#acorn-s2" transform="rotate(180,$centerx,$centery)"/>
0899 </g>
0900 <!-- ** Court cards -->
0901 
0902 <!-- * King of Hearts {{{ -->
0903 
0904 <linearGradient id="kh-lg518" >
0905 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
0906 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0907 </linearGradient>
0908 <linearGradient gradientTransform="translate(-0.2025514,0.0347773)" xlink:href="#kh-lg518" id="kh-lg490" y1="41.090412" x1="41.015179" y2="42.879749" gradientUnits="userSpaceOnUse" x2="50.131248" />
0909 <linearGradient gradientTransform="translate(-1.1840063e-2,0.00774001)" xlink:href="#kh-lg541" id="kh-lg475" y1="45.467331" x1="19.056242" y2="43.62429" x2="34.31591" gradientUnits="userSpaceOnUse" />
0910 <linearGradient id="kh-lg509" >
0911 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
0912 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0913 </linearGradient>
0914 <linearGradient id="kh-lg503" >
0915 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
0916 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0917 </linearGradient>
0918 <linearGradient id="kh-lg539" >
0919 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
0920 <stop offset="1" style="stop-color:#f90;stop-opacity:0" />
0921 </linearGradient>
0922 <linearGradient id="kh-lg531" >
0923 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
0924 <stop offset="1" style="stop-color:#f90;stop-opacity:1" />
0925 </linearGradient>
0926 <linearGradient id="kh-lg323" >
0927 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
0928 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0929 </linearGradient>
0930 <linearGradient id="kh-lg212" >
0931 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
0932 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
0933 </linearGradient>
0934 <linearGradient id="kh-lg183" >
0935 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0936 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0937 </linearGradient>
0938 <linearGradient id="kh-lg541" >
0939 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
0940 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0941 </linearGradient>
0942 <linearGradient id="kh-lg355" >
0943 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0944 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
0945 </linearGradient>
0946 <linearGradient id="kh-lg149" >
0947 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
0948 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0949 </linearGradient>
0950 <linearGradient id="kh-lg141" >
0951 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
0952 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0953 </linearGradient>
0954 <linearGradient id="kh-lg133" >
0955 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
0956 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0957 </linearGradient>
0958 <linearGradient id="kh-lg837" >
0959 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
0960 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
0961 </linearGradient>
0962 <linearGradient id="kh-lg829" >
0963 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0964 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0965 </linearGradient>
0966 <linearGradient id="kh-lg284" >
0967 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0968 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0969 </linearGradient>
0970 <linearGradient id="kh-lg268" >
0971 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0972 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:0" />
0973 </linearGradient>
0974 <linearGradient id="kh-lg490" >
0975 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0976 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
0977 </linearGradient>
0978 <linearGradient id="kh-lg476" >
0979 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
0980 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:1" />
0981 </linearGradient>
0982 <linearGradient xlink:href="#kh-lg829" id="kh-lg835" y1="47.040368" x1="32.927524" y2="47.040367" x2="37.685322" gradientUnits="userSpaceOnUse" />
0983 <linearGradient xlink:href="#kh-lg837" id="kh-lg131" y1="40.500919" x1="34.843121" y2="43.606422" gradientUnits="userSpaceOnUse" x2="37.685322" />
0984 <linearGradient xlink:href="#kh-lg141" id="kh-lg258" y1="33.000172" x1="53.515648" y2="33.000172" gradientUnits="userSpaceOnUse" x2="59.175911" />
0985 <linearGradient xlink:href="#kh-lg133" id="kh-lg260" y1="43.39513" x1="49.551662" y2="53.567608" gradientUnits="userSpaceOnUse" x2="60.143322" />
0986 <radialGradient fx="47.758091" fy="44.704964" cx="47.758091" cy="44.704964" gradientTransform="matrix(0.1089548,-0.2010813,0.4593557,0.2488996,39.362544,111.68101)" xlink:href="#kh-lg476" id="kh-rg337" r="5.8258683" gradientUnits="userSpaceOnUse" />
0987 <radialGradient fx="32.537888" fy="38.871136" cx="32.537888" cy="38.871136" gradientTransform="matrix(0.1418416,-9.1607927e-2,0.131729,0.2039635,51.921771,108.83492)" xlink:href="#kh-lg490" id="kh-rg339" r="5.8249979" gradientUnits="userSpaceOnUse" />
0988 <radialGradient fx="38.028793" fy="45.984734" cx="38.028793" cy="45.984734" gradientTransform="matrix(0.0916311,-6.7458121e-2,0.1194303,0.1622272,50.968336,110.78822)" xlink:href="#kh-lg268" id="kh-rg341" r="5.5679789" gradientUnits="userSpaceOnUse" />
0989 <radialGradient fx="35.506214" fy="45.83128" cx="35.506214" cy="45.83128" gradientTransform="matrix(-5.9173548e-2,0.0594561,-0.133011,-0.1323791,67.486655,121.47427)" xlink:href="#kh-lg284" id="kh-rg343" r="5.3648539" gradientUnits="userSpaceOnUse" />
0990 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(-1.445883,-1.5988898,1.0478678,-0.9475914,24.665755,103.72082)" xlink:href="#kh-lg355" id="kh-rg387" r="1.3942146" gradientUnits="userSpaceOnUse" />
0991 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(-0.829114,-1.9898734,1.3041076,-0.5433782,4.4360368,100.34626)" xlink:href="#kh-lg355" id="kh-rg389" r="1.3942146" gradientUnits="userSpaceOnUse" />
0992 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(0.6121915,-2.0669416,1.3546159,0.4012132,-12.357343,78.783738)" xlink:href="#kh-lg355" id="kh-rg451" r="1.3942146" gradientUnits="userSpaceOnUse" />
0993 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(1.0723142,-1.8700717,1.2255928,0.7027649,-21.053974,70.070664)" xlink:href="#kh-lg355" id="kh-rg455" r="1.3942146" gradientUnits="userSpaceOnUse" />
0994 <linearGradient xlink:href="#kh-lg541" id="kh-lg547" y1="40" x1="50" y2="40" x2="72" gradientUnits="userSpaceOnUse" />
0995 <linearGradient xlink:href="#kh-lg541" id="kh-lg597" y1="49.980412" x1="61.079819" y2="52.42445" x2="69.65905" gradientUnits="userSpaceOnUse" />
0996 <linearGradient xlink:href="#kh-lg476" id="kh-lg683" y1="30.644566" x1="49.819027" y2="25.888603" x2="37.835533" gradientUnits="userSpaceOnUse" />
0997 <linearGradient xlink:href="#kh-lg531" id="kh-lg691" y1="20.008842" x1="44.61927" y2="21.329943" x2="50.502838" gradientUnits="userSpaceOnUse" />
0998 <linearGradient xlink:href="#kh-lg531" id="kh-lg699" y1="28.522652" x1="33.755756" y2="30.372192" x2="37.499535" gradientUnits="userSpaceOnUse" />
0999 <linearGradient xlink:href="#kh-lg531" id="kh-lg707" y1="21.669043" x1="26.539616" y2="22.263538" x2="31.303398" gradientUnits="userSpaceOnUse" />
1000 <linearGradient xlink:href="#kh-lg837" id="kh-lg927" y1="7.3695345" x1="28.886564" y2="10.975229" gradientUnits="userSpaceOnUse" x2="38.147705" />
1001 <linearGradient gradientTransform="matrix(-1,0,0,1,76.215921,0)" xlink:href="#kh-lg837" id="kh-lg931" y1="6.1144886" x1="32.387482" y2="11.305505" gradientUnits="userSpaceOnUse" x2="25.333025" />
1002 <linearGradient xlink:href="#kh-lg149" id="kh-lg939" y1="3.5431192" x1="37.339508" y2="5.2792411" x2="39.994064" gradientUnits="userSpaceOnUse" />
1003 <linearGradient xlink:href="#kh-lg837" id="kh-lg947" y1="6.8458714" x1="39.318581" y2="10.082568" x2="43.987778" gradientUnits="userSpaceOnUse" />
1004 <linearGradient xlink:href="#kh-lg149" id="kh-lg955" y1="8.1009178" x1="33.724613" y2="11.13945" x2="40.222641" gradientUnits="userSpaceOnUse" />
1005 <linearGradient xlink:href="#kh-lg149" id="kh-lg963" y1="12.031519" x1="31.411068" y2="22.798491" x2="51.935642" gradientUnits="userSpaceOnUse" />
1006 <linearGradient xlink:href="#kh-lg183" id="kh-lg189" y1="25.301659" x1="33.101379" y2="23.220924" x2="34.333027" gradientUnits="userSpaceOnUse" />
1007 <linearGradient xlink:href="#kh-lg149" id="kh-lg208" y1="50.38707" x1="58.301949" y2="50.38707" x2="60.472263" gradientUnits="userSpaceOnUse" />
1008 <linearGradient xlink:href="#kh-lg212" id="kh-lg277" y1="11.293342" x1="45.617332" y2="12.157439" gradientUnits="userSpaceOnUse" x2="47.217396" />
1009 <linearGradient gradientTransform="translate(0.053056,-9.1111897e-2)" xlink:href="#kh-lg212" id="kh-lg280" y1="13.827466" x1="38.68" y2="14.937149" gradientUnits="userSpaceOnUse" x2="40.353661" />
1010 <linearGradient xlink:href="#kh-lg212" id="kh-lg283" y1="10.346184" x1="34.528389" y2="11.462177" gradientUnits="userSpaceOnUse" x2="35.747364" />
1011 <linearGradient gradientTransform="translate(-9.3415942e-2,-0.1167699)" xlink:href="#kh-lg212" id="kh-lg286" y1="11.041109" x1="28.299332" y2="12.047712" gradientUnits="userSpaceOnUse" x2="29.502733" />
1012 <linearGradient xlink:href="#kh-lg323" id="kh-lg329" y1="53" x1="35" y2="53" x2="50" gradientUnits="userSpaceOnUse" />
1013 <linearGradient xlink:href="#kh-lg837" id="kh-lg342" y1="53" x1="12" y2="61" x2="25" gradientUnits="userSpaceOnUse" />
1014 <linearGradient gradientTransform="matrix(0.9367187,0,0,1.1125722,-3.9242179,23.041827)" xlink:href="#kh-lg541" id="kh-lg355" y1="22.432858" x1="12.729774" y2="35.016312" x2="25.540451" gradientUnits="userSpaceOnUse" />
1015 <radialGradient fx="33.148659" fy="30.229698" cx="33.148659" cy="30.229698" gradientTransform="matrix(0.671184,-3.5990143e-2,0.0702467,1.3100326,9.736531,-8.8084382)" xlink:href="#kh-lg539" id="kh-rg547" r="0.51608163" gradientUnits="userSpaceOnUse" />
1016 <linearGradient xlink:href="#kh-lg149" id="kh-lg715" y1="43.421589" x1="7.4658861" y2="54.522339" gradientUnits="userSpaceOnUse" x2="21.056282" />
1017 <linearGradient gradientTransform="translate(0,1.1209913)" xlink:href="#kh-lg149" id="kh-lg717" y1="45.625" x1="4.4870691" y2="54.966595" gradientUnits="userSpaceOnUse" x2="18.06875" />
1018 <linearGradient gradientTransform="translate(0,1.1209913)" xlink:href="#kh-lg149" id="kh-lg719" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1019 <linearGradient xlink:href="#kh-lg509" id="kh-lg721" y1="31.233809" x1="10.172477" y2="29.959764" gradientUnits="userSpaceOnUse" x2="12.830858" />
1020 <linearGradient gradientTransform="matrix(0,1,-0.3985507,0,20.613608,25.259781)" xlink:href="#kh-lg149" id="kh-lg723" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1021 <linearGradient xlink:href="#kh-lg503" id="kh-lg725" y1="31.233809" x1="10.172477" y2="29.959764" gradientUnits="userSpaceOnUse" x2="12.830858" />
1022 <linearGradient gradientTransform="matrix(0,1,0.3985507,0,-0.2474389,25.265595)" xlink:href="#kh-lg149" id="kh-lg727" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1023 <linearGradient gradientTransform="translate(1.9155963,-0.3963303)" xlink:href="#kh-lg476" id="kh-lg731" y1="52.791176" x1="16.257441" y2="50.941635" gradientUnits="userSpaceOnUse" x2="13.556959" />
1024 <linearGradient xlink:href="#kh-lg141" id="kh-lg384" y1="17.976147" x1="31.755047" y2="19.511927" gradientUnits="userSpaceOnUse" x2="33.441284" />
1025 <linearGradient xlink:href="#kh-lg837" id="kh-lg113" y1="40.500919" x1="34.843121" y2="43.606422" gradientUnits="userSpaceOnUse" x2="37.685322" />
1026 
1027 <g id="img_king_heart" transform="scale(1.8) translate(-39, -58)" >
1028 <path style="opacity:1;fill:url(#kh-lg547);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1029 d="M37.122936,25.341285L23.779816,28.049541L17.306422,31.616514L12,35C12,35 4,48 6,55L66,55C66,55 66.428324,50.131877 65.46055,47.13945C64.745658,44.928953 63,42 59,37C56.604196,34.005245 52.051376,28.511927 50.00367,27.917431C47.955963,27.322936 37.05688,25.209175 37.122936,25.341285z" />
1030 <path style="opacity:1;fill:url(#kh-lg490);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1031 d="M36.922448,25.378527L23.578699,28.097277L17.547449,31.409777L17.547449,55.034777L44.391198,55.034777C44.087634,52.866797 43.922448,50.547753 43.922448,48.128527C43.922449,38.739753 46.385789,30.778811 49.828698,27.941027C49.820032,27.938365 49.806024,27.943517 49.797448,27.941027C47.749741,27.346532 36.856392,25.246417 36.922448,25.378527z" />
1032 <path style="fill:url(#kh-lg329);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1033 d="M26.036743,50.033333C32.515063,51.982375 38.837128,52.134487 44.963257,50.033333C44.983613,50.033333 45,50.491477 45,51.060563L45,53.972769C45,54.541855 44.983613,55 44.963257,55L26.036743,55C26.016387,55 26,54.541855 26,53.972769L26,51.060563C26,50.491477 26.016387,50.033333 26.036743,50.033333z" />
1034 <path style="fill:#fff;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1035 d="M47.788327,26.414723C47.788327,26.414723 48.942243,26.908996 51.459879,28.391814C53.977515,29.874632 55.131432,30.467759 55.131432,30.467759C55.131432,30.467759 54.181964,30.971279 52.299091,34.224231C50.410865,37.486431 49.131387,41.280897 48.627539,43.714268C46.949114,51.82034 47.224972,55 47.224972,55L42.399503,55C42.399503,55 42.645743,50.041481 43.802069,41.83603C44.770381,34.96476 47.788327,26.414723 47.788327,26.414723z" />
1036 <g>
1037 <path style="opacity:1;fill:#8df;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1038 d="M28.733945,27.256881C28.733945,27.256881 26.420694,30.494643 27.412844,32.409175C29.176385,35.812245 32.697248,38.816514 34.877064,39.344954C35.251386,39.435699 33.952293,41.458715 33.952293,41.458715C31.64365,40.518613 27.368011,36.389562 25.893578,33.730276C24.003466,30.321272 26.289908,27.388991 26.289908,27.388991L28.733945,27.256881z" />
1039 <path style="opacity:1;fill:#8df;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1040 d="M44.589918,27.719266C44.589918,27.719266 44.279533,30.844804 43.136707,32.673395C41.175001,35.812245 37.852303,39.080734 35.672487,39.609174C35.298165,39.699919 36.597258,41.722935 36.597258,41.722935C38.905901,40.782833 43.18154,36.653782 44.655973,33.994496C46.546085,30.585492 46.835789,27.256881 46.835789,27.256881L44.589918,27.719266z" />
1041 </g>
1042 <g>
1043 <g>
1044 <g>
1045 <g>
1046 <g>
1047 <path style="opacity:1;fill:#ffd0d0;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1048 d="M43.531829,27.512359C43.531829,27.512359 43.613861,29.631646 40.682643,31.622661C37.751425,33.613676 36.058554,33.537687 34.16688,33.397564C32.869302,33.301448 29.946516,31.635297 29.169127,30.641793C28.391738,29.648289 27.837951,28.563288 27.837951,28.563288L30.453597,25.013483L42.504253,25.387146L43.531829,27.512359z" />
1049 <path style="opacity:1;fill:#fe0;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1050 d="M43.53125,27.5C43.531249,27.499999 43.618718,29.633985 40.6875,31.625C37.756281,33.616014 36.047924,33.546373 34.15625,33.40625C32.85867,33.310134 29.933639,31.649754 29.15625,30.65625C28.378861,29.662747 27.84375,28.5625 27.84375,28.5625L27.385665,29.60797C27.385665,29.60797 27.788717,30.443996 28.625,31.4375C29.461284,32.431004 32.60412,34.091385 34,34.1875C36.034988,34.327623 37.846713,34.397266 41,32.40625C44.153289,30.415235 44.062499,28.312501 44.0625,28.3125L42.96875,26.1875L43.53125,27.5z" />
1051 <g>
1052 <g>
1053 <path style="opacity:1;fill:url(#kh-lg707);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1054 d="M29.06422,11.53578L28.337614,13.055046C28.337614,13.055046 26.091743,15.433028 26.157799,19.726605C25.688,24.245887 24.365532,26.48677 22.722936,28.776147C22.722936,28.776147 24.713057,27.417544 28.93211,27.256881C30.842405,25.787541 30.278627,25.676254 30.278627,25.676254L30.055046,11.469725L29.06422,11.53578z" />
1055 </g>
1056 <path style="fill:url(#kh-lg683);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1057 d="M44.010759,19.069986C44.010759,24.502881 42.632146,28.452088 36.315429,29.105853C30.808849,29.675771 26.999542,23.95513 28.983317,18.801266C29.660019,17.043192 28.577054,16.480584 29.836604,13.556671C30.745432,11.446923 34.898642,11.687726 37.90075,11.667321C43.31347,11.630533 43.979379,13.657232 44.010759,19.069986z" />
1058 <path style="opacity:1;fill:url(#kh-lg691);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1059 d="M46.172477,11.403669C46.965137,12.32844 48.352294,14.376147 48.418349,15.895413C48.484404,17.414679 48.682569,20.056881 49.409174,21.179816C50.13578,22.302752 51.655046,24.350458 51.06055,25.473394C50.840679,28.002062 47.573683,28.802587 45.313762,28.577982C43.199999,28.115597 42.209174,27.124771 42.077064,25.473395C41.944954,23.822019 42.209174,21.840367 42.209174,18.86789C42.209174,15.895413 41.152294,12.19633 41.152294,12.19633L46.172477,11.403669z" />
1060 <path style="opacity:1;fill:url(#kh-lg699);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1061 d="M33.627219,26.739503C33.627219,26.739503 33.311941,26.675279 32.932438,27.340868C32.507731,28.085739 31.998279,29.209186 33.025854,30.143346C34.05343,31.077505 35.267837,31.87154 34.660634,32.198496C34.05343,32.525452 35.127713,33.599735 36.482244,32.385328C37.836776,31.170921 38.298814,29.846967 38.070315,29.11577C37.836776,28.368443 36.155289,28.041487 36.388829,27.294159C36.508675,26.910653 34.668036,27.15137 33.627219,26.739503z" />
1062 </g>
1063 </g>
1064 <g>
1065 <g transform="translate(-0.6539116,-4.6707971e-2)" >
1066 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1067 d="M35.419185,17.942147C35.171479,20.534808 34.447706,21.014679 34.447706,21.014679" />
1068 <path style="opacity:1;fill:url(#kh-lg189);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1069 d="M35.785321,21.262385C35.785321,21.262385 35.009175,21.130275 34.365138,21.014679C33.14338,20.795389 32.535779,21.378193 32.383487,22.055046C32.234862,22.715596 32.79633,23.376147 33.291743,23.607339C33.787156,23.838532 35.306422,24.102752 35.405505,24.086238" />
1070 </g>
1071 <g>
1072 <path style="fill:url(#kh-lg384);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible" id="kh-p204"
1073 d="M33.159634,18.438532A0.95779818,1.2220184 0 1 1 31.244037,18.438532A0.95779818,1.2220184 0 1 1 33.159634,18.438532z" />
1074 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1075 d="M37.497938,17.350292C37.497938,17.350292 37.635136,16.75695 38.61297,16.916871C39.590806,17.076791 40.264539,17.581879 40.264539,17.581879" />
1076 <use width="72" height="55" xlink:href="#kh-p204" transform="translate(6.3082569,-0.1321101)" />
1077 </g>
1078 <g>
1079 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1080 d="M33.281126,17.625608C33.281126,17.625608 33.001883,16.995726 32.177333,17.043179C31.188143,17.100107 30.526798,17.911986 30.526798,17.911986" />
1081 </g>
1082 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1083 d="M37.122936,25.721101C34.314561,25.98118 32.645054,25.495812 32.631193,25.440367" />
1084 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1085 d="M34.169618,16.122935C33.033357,14.743009 30.82182,14.828904 29.782488,15.517601" />
1086 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1087 d="M36.278085,16.169632C37.643858,15.108537 40.649036,15.645143 41.239965,16.334108" />
1088 </g>
1089 </g>
1090 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1091 d="M45.577982,13.451377C45.577982,13.451377 46.436697,14.772478 46.700917,16.093578C46.965138,17.414679 46.965138,20.519267 48.088073,22.434863" />
1092 </g>
1093 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1094 d="M47.163303,28.247706C47.163303,28.247706 46.436698,26.992661 45.445872,24.746789C44.455046,22.500917 44.521101,18.60367 44.521101,18.60367" />
1095 </g>
1096 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1097 d="M29.59266,13.451377C29.59266,13.451377 27.3758,16.290905 27.412843,18.07523C27.597476,26.968785 24.345569,28.179635 23.911926,28.049542" />
1098 <path style="opacity:1;fill:url(#kh-rg547);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1099 d="M34.279494,28.43886C34.177152,28.47035 33.821044,29.592424 34.488606,30.261708C35.151596,30.926407 34.836348,31.978279 34.836348,31.978279" />
1100 </g>
1101 <g transform="translate(0.4623853,-1.453211)" >
1102 <g transform="translate(-0.4293578,1.4321095)" >
1103 <path style="opacity:1;fill:url(#kh-lg131);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible" id="kh-p418"
1104 d="M37.585322,41.161469A2.2788992,2.344954 0 1 1 33.027524,41.161469A2.2788992,2.344954 0 1 1 37.585322,41.161469z" />
1105 <path style="fill:url(#kh-lg113);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kh-u422"
1106 d="M37.585322,41.161469A2.2788992,2.344954 0 1 1 33.027524,41.161469A2.2788992,2.344954 0 1 1 37.585322,41.161469z" transform="translate(0,5.878899)" />
1107 </g>
1108 <g transform="translate(-0.3963303,18.033028)" >
1109 <use width="72" height="55" xlink:href="#kh-p418" transform="translate(2.840367,-13.661469)" />
1110 <use width="72" height="55" style="fill-opacity:1;fill:url(#kh-lg835)" xlink:href="#kh-u422" transform="translate(-2.906422,-19.540368)" />
1111 </g>
1112 </g>
1113 <g>
1114 <g>
1115 <path style="opacity:1;fill:url(#kh-lg927);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1116 d="M37.651376,4.4678899C37.651376,4.4678899 34.282568,3.6091743 31.442201,3.9394495C28.601834,4.2697248 27.330584,6.0344899 27.478899,7.8366972C27.653027,9.9525744 29.130275,10.346789 29.130275,10.346789L32.300917,10.875229C32.300917,10.875229 30.310515,9.0313204 30.253211,7.7706422C30.187156,6.3174312 31.772477,5.5908257 32.895412,5.5908257C35.406373,5.5908258 38.047706,5.8550459 38.047706,5.8550459L37.651376,4.4678899z" />
1117 <path style="fill:url(#kh-lg931);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1118 d="M38.564545,4.4678899C38.564545,4.4678899 41.933353,3.6091743 44.77372,3.9394495C47.614087,4.2697248 48.885337,6.0344899 48.737022,7.8366972C48.562894,9.9525744 47.085646,10.346789 47.085646,10.346789L43.915004,10.875229C43.915004,10.875229 45.905406,9.0313204 45.96271,7.7706422C46.028765,6.3174312 44.443444,5.5908257 43.320509,5.5908257C40.809548,5.5908258 38.168215,5.8550459 38.168215,5.8550459L38.564545,4.4678899z" />
1119 <path style="fill:url(#kh-lg955);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1120 d="M36.885944,4.6660552L39.329981,4.6660552C34.417102,8.6293579 37.132383,9.1577982 36.357504,11.53578L33.913467,11.53578C32.987141,9.0548731 32.274174,7.2362051 36.885944,4.6660552z" />
1121 <path style="fill:url(#kh-lg947);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1122 d="M38.712687,4.7321102L36.26865,4.7321102C41.181529,8.6954129 38.466248,9.2238532 39.241127,11.601835L41.685164,11.601835C42.61149,9.1209281 43.324457,7.3022601 38.712687,4.7321102z" />
1123 <path style="fill:url(#kh-lg963);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1124 d="M28.01015,9.7862585C34.520789,11.147314 41.361702,10.797161 47.872341,9.7862585L47.872341,13.255319C41.361702,14.7058 34.520789,14.52576 28.01015,13.255319L28.01015,9.7862585z" />
1125 <path style="opacity:1;fill:url(#kh-lg939);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.163322;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1126 d="M39.236696,3.5431192A1.5853211,1.6513761 0 1 1 39.235317,3.4742522" transform="matrix(1.2708333,0,0,1.18,-9.8999999,-1.0238571e-2)" />
1127 </g>
1128 </g>
1129 <path style="fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1130 d="M27.997411,10.463128L30.75347,10.879236C30.771981,10.882031 30.729131,11.33824 30.657393,11.902127L30.633359,12.091042C30.56162,12.654929 30.488964,13.106639 30.470452,13.103844L27.911459,12.70425C27.684076,12.423516 27.623945,11.89958 27.62228,11.525471C27.620542,11.134849 27.796993,10.70804 27.997411,10.463128z" />
1131 <path style="fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1132 d="M47.926987,10.411824L45.090963,10.838824C45.072523,10.841692 45.116744,11.29773 45.190112,11.86133L45.214692,12.050148C45.28806,12.613748 45.361971,13.065167 45.380411,13.062299L47.929387,12.635299C48.156894,11.886781 48.152999,10.997675 47.926987,10.411824z" />
1133 <rect width="3.1045871" x="38.502068" y="13.572017" rx="0.036748853" ry="1.0275754" height="2.2458715" style="fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" transform="matrix(0.9983584,-0.0572752,0.0572752,0.9983584,0,0)" />
1134 <rect width="3.1045871" x="34.032433" y="9.4908123" rx="0.036748853" height="2.2458715" ry="1.0275754" style="fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" transform="matrix(0.9986671,0.0516139,-0.0516139,0.9986671,0,0)" />
1135 <path style="fill:url(#kh-lg286);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1136 d="M28.185024,10.924339L30.215317,11.18432C30.228954,11.186067 30.197387,11.471101 30.144541,11.823413L30.126835,11.941445C30.073988,12.293757 30.020465,12.57598 30.006828,12.574235L28.121706,12.324572C27.954201,12.149172 27.909905,11.821822 27.908678,11.588082C27.907397,11.344025 28.037383,11.077359 28.185024,10.924339z" />
1137 <rect width="2.2554522" x="34.589523" y="10.342134" rx="0.036745306" ry="1.0273724" height="1.3067259" style="fill:url(#kh-lg283);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" transform="matrix(0.9991466,0.0413058,-6.4477046e-2,0.9979192,0,0)" />
1138 <rect width="2.2587256" x="38.839367" y="13.643541" rx="0.036742982" height="1.3567177" ry="1.0272301" style="fill:url(#kh-lg280);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" transform="matrix(0.9988702,-4.7521273e-2,0.0690151,0.9976156,0,0)" />
1139 <path style="fill:url(#kh-lg277);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1140 d="M47.706508,11.065735L45.860182,11.289567C45.848177,11.29107 45.876966,11.530123 45.924731,11.825559L45.940733,11.924537C45.988498,12.219973 46.036616,12.456605 46.048621,12.455102L47.708071,12.23127C47.856184,11.838901 47.853648,11.372836 47.706508,11.065735z" />
1141 <rect width="0" x="26" y="56" rx="0.036742982" ry="0" height="0" style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1142 <path style="opacity:1;fill:url(#kh-lg475);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1143 d="M22.86316,28.570241L17.30066,31.632741L11.98816,35.007741C11.98816,35.007741 3.9881599,48.007741 5.9881602,55.007741L25.39441,55.007741C26.00574,53.450939 26.493805,51.818247 26.83191,50.101491L25.836518,38.316382C25.118096,34.662817 24.73264,31.393548 22.86316,28.570241z" />
1144 <g>
1145 <path style="fill:#fff;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1146 d="M24.217395,28.014126C24.217395,28.014126 22.79349,28.283041 20.551507,29.68428C18.309525,31.085519 17.281949,31.646015 17.281949,31.646015C17.281949,31.646015 18.127461,32.121833 19.80418,35.19582C21.485666,38.278546 22.625055,41.864255 23.073737,44.163751C24.568393,51.823858 24.447616,55 24.447616,55L28.744749,55C28.744749,55 28.400592,50.142865 27.370871,42.388847C26.508579,35.895608 24.217395,28.014126 24.217395,28.014126z" />
1147 <path style="opacity:1;fill:url(#kh-rg389);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kh-p345"
1148 d="M21.930275,30.823854C22.788991,32.47523 23.67583,32.570306 23.779817,33.069725C23.893872,33.617499 24.968807,33.26789 24.308257,31.748624C23.647706,30.229358 24.308257,29.502753 24.308257,29.502753" />
1149 <path style="opacity:1;fill:url(#kh-rg387);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kh-p363"
1150 d="M17.945368,32.346795C19.306143,33.616727 20.173839,33.410266 20.438596,33.846313C20.728988,34.324578 21.625524,33.63615 20.495651,32.424588C19.365777,31.213026 19.745842,30.30758 19.745842,30.30758" />
1151 <use width="72" height="55" id="kh-u367" xlink:href="#kh-p363" transform="matrix(-0.8144214,0.5802738,0.5802738,0.8144214,19.580415,-2.3354857)" />
1152 <use width="72" height="55" xlink:href="#kh-u367" transform="translate(2.5100917,2.3449541)" />
1153 <use width="72" height="55" xlink:href="#kh-p363" transform="translate(4.8220184,10.238532)" />
1154 <use width="72" height="55" xlink:href="#kh-u367" transform="translate(3.9963303,11.229358)" />
1155 <use width="72" height="55" xlink:href="#kh-p345" transform="translate(2.212844,19.552294)" />
1156 </g>
1157 <path style="opacity:1;fill:url(#kh-lg355);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1158 d="M12 41.96875C7.8634502 41.96875 4.5 46.441491 4.5 51.96875C4.5 53.029479 4.6459354 54.040321 4.875 55L19.125 55C19.354065 54.040321 19.5 53.029479 19.5 51.96875C19.5 46.441491 16.13655 41.968749 12 41.96875z" />
1159 <path style="opacity:1;fill:url(#kh-lg342);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1160 d="M12 41C7.86 41 4.5 45.726049 4.5 51.53125C4.5 52.748926 4.6656462 53.913113 4.9375 55L5.875 55C5.6346984 54.061455 5.5 53.051846 5.5 52C5.5 47.032 8.41936 43 12 43C15.58064 43 18.5 47.032 18.5 52C18.5 53.051846 18.365302 54.061455 18.125 55L19.0625 55C19.334354 53.913113 19.5 52.748926 19.5 51.53125C19.5 45.72605 16.14 40.999999 12 41z" />
1161 <use width="72" height="55" xlink:href="#kh-u367" transform="translate(28.205505,-2.5100917)" />
1162 <path style="opacity:1;fill:url(#kh-lg208);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1163 d="M59.062369,46.568545L59.876985,45.901937C59.596384,47.723551 59.335906,48.868572 59.216013,50.277695C59.074728,51.938246 59.541588,54.933945 59.541588,54.933945L58.653513,54.933945C58.642388,54.828239 58.295817,51.686193 58.434763,49.902695C58.550512,48.416953 58.510493,47.407669 59.062369,46.568545z" />
1164 <g>
1165 <rect width="4.1223855" x="51.997246" y="44.059875" rx="0.036748853" ry="1.0275754" height="10.823352" style="opacity:1;fill:#8df;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1166 <g transform="matrix(0.9227043,-0.3855085,0.3855085,0.9227043,-49.780102,-33.04193)" >
1167 <path style="fill:url(#kh-rg337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1168 d="M69.75545,116.81805C69.27908,116.3588 67.552409,113.53405 67.151854,113.13806L66.99159,113.97388C66.764509,114.32238 65.759279,114.08661 65.139946,113.78484C64.399441,113.42403 63.540696,112.83934 63.538339,112.59068C63.536504,112.39713 64.16569,112.43137 64.234119,112.33472C63.856118,112.01068 63.383323,111.78026 62.861776,111.74541C62.154268,111.69814 61.134453,111.63118 61.050614,112.89803C60.111615,112.55846 59.295427,113.6877 59.505994,114.88691C58.858925,115.12429 58.648374,115.49602 58.597629,115.72666C58.426127,116.04773 58.573855,116.63251 58.870048,117.16083C58.547523,117.82173 58.26261,118.73362 58.752644,119.34798C59.889747,120.77357 61.898771,121.43982 63.366318,121.73333C64.833865,122.02684 68.085572,122.61487 68.085572,122.61487C68.085572,122.61487 69.759342,120.1011 69.935354,119.28928C70.191306,118.10874 69.75545,116.81805 69.75545,116.81805z" />
1169 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1170 d="M61.012577,112.79841C61.123063,113.74859 61.661835,114.22842 62.294208,114.74296" />
1171 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1172 d="M58.885032,117.18811C59.01856,117.40309 59.240277,117.62369 59.956741,118.16039" />
1173 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1174 d="M59.487878,114.89002C59.58826,115.31491 59.854171,115.70124 60.570635,116.23794" />
1175 <path style="fill:url(#kh-rg339);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1176 d="M61.050164,112.89824C60.111165,112.55868 59.308347,113.69904 59.518914,114.89824C58.871845,115.13562 58.663409,115.51135 58.612664,115.74199C58.441161,116.06306 58.566471,116.61992 58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 69.749152,120.11632 69.925164,119.30449C70.009702,118.91458 70.013433,118.51171 69.987664,118.14824C68.596002,118.78107 64.882316,116.34675 62.812402,115.18853C61.788165,114.48593 61.185403,113.88941 61.050164,112.89824z" />
1177 <path style="fill:url(#kh-rg341);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1178 d="M59.518914,114.89824C58.871845,115.13562 58.663409,115.51135 58.612664,115.74199C58.441161,116.06306 58.566471,116.61992 58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 68.935236,121.36009 69.487664,120.33574C65.419997,119.9999 59.574444,115.9911 59.518914,114.89824z" />
1179 <path style="fill:url(#kh-rg343);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1180 d="M58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 68.683544,121.70221 69.206414,120.80449C67.845841,121.38981 66.332104,120.32139 64.295453,119.71794C62.150727,119.05218 59.665492,118.29843 58.862664,117.14824z" />
1181 </g>
1182 <g>
1183 <g>
1184 <path style="opacity:1;fill:url(#kh-lg258);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1185 d="M54,22L57,25C57,25 57.046708,44.093416 57,44L51,44L51,25L54,22z" />
1186 <path style="opacity:1;fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1187 d="M54.099083,23.888073L54.099083,43.638532" />
1188 </g>
1189 <rect width="9.6218424" x="49.199459" y="42.949341" rx="1.0275754" height="3.269558" ry="1.0275754" style="opacity:1;fill:url(#kh-lg260);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1190 </g>
1191 </g>
1192 <rect width="0" x="52" y="41.734936" rx="0.036748853" height="1.2650638" ry="1.0275754" style="opacity:1;fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1193 <use width="72" height="55" xlink:href="#kh-p363" transform="matrix(0.5208177,0.8536679,-0.8536679,0.5208177,65.393429,-2.9550029)" />
1194 <use width="72" height="55" xlink:href="#kh-p345" transform="matrix(0.9792626,0.2025948,-0.2025948,0.9792626,32.4741,1.164229)" />
1195 <use width="72" height="55" xlink:href="#kh-p363" transform="matrix(-0.8144214,0.5802738,0.5802738,0.8144214,45.077663,4.5342391)" />
1196 <path style="opacity:1;fill:url(#kh-rg451);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1197 d="M45.078751,35.882575C44.703092,37.705571 45.331157,38.338862 45.096739,38.791942C44.839626,39.28889 45.894185,39.695848 46.34024,38.100376C46.786294,36.504904 47.757211,36.357927 47.757211,36.357927" />
1198 <path style="opacity:1;fill:url(#kh-rg455);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1199 d="M44.726925,41.569997C43.94102,43.25724 44.406127,44.018291 44.07355,44.405105C43.708773,44.829373 44.641071,45.468537 45.443008,44.018919C46.244945,42.5693 47.223588,42.650171 47.223588,42.650171" />
1200 <use width="72" height="55" xlink:href="#kh-u367" transform="matrix(0.9637321,-0.2668715,0.2668715,0.9637321,15.485838,22.266688)" />
1201 <use width="72" height="55" xlink:href="#kh-p363" transform="matrix(0.6313892,0.7754661,-0.7754661,0.6313892,56.825775,12.58517)" />
1202 <use width="72" height="55" xlink:href="#kh-u367" transform="translate(22.392661,17.570642)" />
1203 <path style="opacity:1;fill:url(#kh-lg597);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1204 d="M59.066055,46.537615L60.546789,45.462385C60.546789,45.462385 63.93155,44.035715 65,46C67.453211,50.510091 66,55 66,55L60,55C60,55 60.348624,51.990826 60.207339,50.330275C60.087447,48.921153 59.647707,47.271559 59.066055,46.537615z" />
1205 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1206 d="M59.90625 45.90625L59.0625 46.53125C59.644152 47.265194 60.098857 48.934627 60.21875 50.34375C60.360035 52.004301 60 55 60 55L60.78125 55C60.792375 54.894294 61.138946 51.752248 61 49.96875C60.884251 48.483008 60.458126 46.745374 59.90625 45.90625z" />
1207 <g transform="translate(0.8247991,0.2785703)" >
1208 <g>
1209 <g>
1210 <path style="fill:url(#kh-lg715);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1211 d="M17.966973,45.289909A7.6293578,6.1431193 0 1 1 2.7082572,45.289909A7.6293578,6.1431193 0 1 1 17.966973,45.289909z" transform="translate(0,1.1209913)" />
1212 <path style="fill:url(#kh-lg717);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1213 d="M17.5625,44.495991C17.43715,44.559283 17.318853,44.623108 17.1875,44.683491C17.102324,44.723148 17.025294,44.770236 16.9375,44.808491C16.810732,44.863044 16.694472,44.913215 16.5625,44.964741C16.138631,45.133393 15.692587,45.267304 15.21875,45.402241C15.195556,45.408707 15.179553,45.427111 15.15625,45.433491C15.065085,45.459026 14.967827,45.471783 14.875,45.495991C14.45268,45.606129 14.016264,45.696114 13.5625,45.777241C13.131174,45.854357 12.674227,45.916068 12.21875,45.964741C12.102162,45.976768 11.992979,45.985905 11.875,45.995991C11.864516,45.996927 11.854245,45.99507 11.84375,45.995991C11.291318,46.044448 10.735129,46.08634 10.15625,46.089741C10.134906,46.089804 10.115124,46.089741 10.09375,46.089741C10.008699,46.089741 9.9283138,46.090738 9.84375,46.089741C9.2677157,46.082953 8.7056102,46.046991 8.15625,45.995991C7.6758791,45.951396 7.2048497,45.884358 6.75,45.808491C6.3935129,45.748188 6.0570573,45.667979 5.71875,45.589741C5.3514111,45.505823 4.999198,45.412139 4.65625,45.308491C4.6370262,45.302681 4.6128922,45.314361 4.59375,45.308491C4.2179742,45.193268 3.8735432,45.039403 3.53125,44.902241C3.403142,44.851315 3.2481852,44.830854 3.125,44.777241C3.1280539,44.768363 3.1218981,44.754853 3.125,44.745991C3.089586,44.730269 3.0662602,44.699423 3.03125,44.683491C2.830375,45.233542 2.71875,45.800061 2.71875,46.402241C2.71875,46.773132 2.7654068,47.143151 2.84375,47.495991C2.8861588,47.51683 2.9256381,47.538022 2.96875,47.558491C3.1357255,47.636738 3.3231949,47.704349 3.5,47.777241C3.5218811,47.786333 3.5404689,47.799485 3.5625,47.808491C3.9569073,47.968551 4.3743555,48.114804 4.8125,48.245991C5.1821773,48.356678 5.571758,48.470522 5.96875,48.558491C6.0641567,48.579632 6.153141,48.601233 6.25,48.620991C6.5348584,48.679155 6.8283859,48.70019 7.125,48.745991C7.7740853,48.846219 8.4608625,48.928604 9.15625,48.964741C9.5193906,48.983612 9.8770799,48.995991 10.25,48.995991C10.492576,48.995286 10.730459,48.973427 10.96875,48.964741C11.661938,48.941071 12.350229,48.895881 13,48.808491C13.179894,48.783768 13.355421,48.744038 13.53125,48.714741C13.881426,48.656393 14.230036,48.602946 14.5625,48.527241C14.894964,48.451536 15.218613,48.369258 15.53125,48.277241C15.843887,48.185224 16.146805,48.072024 16.4375,47.964741C16.728194,47.857458 17.014613,47.742495 17.28125,47.620991C17.494559,47.523788 17.681168,47.411752 17.875,47.308491C17.92933,47.012875 17.96875,46.709958 17.96875,46.402241C17.96875,45.728192 17.811986,45.102956 17.5625,44.495991z" />
1214 </g>
1215 <g transform="translate(0.1524104,0)" >
1216 <g transform="translate(-7.0101261e-2,0)" >
1217 <rect width="4.6707969" x="7.8469391" y="29.404032" rx="2.1485667" height="12.8914" ry="1.2144059" style="fill:url(#kh-lg719);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1218 <path style="opacity:1;fill:url(#kh-lg721);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.15826012000000000;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1219 d="M12.220183,30.85688A2.0477064,0.82568806 0 1 1 8.1247704,30.85688A2.0477064,0.82568806 0 1 1 12.220183,30.85688z" transform="matrix(1.140746,0,0,1.4,-1.4192109,-12.813385)" />
1220 </g>
1221 <g>
1222 <path style="fill:url(#kh-lg723);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1223 d="M9.3413813,35.255284L9.3413813,35.628947C9.3413813,36.819253 8.5914386,37.777514 7.6598955,37.777514L5.8849896,37.777514C4.9534465,37.777514 4.8825039,36.819253 4.8825039,35.628947L4.8825039,35.255284C4.8825039,34.064978 4.9534465,33.106717 5.8849896,33.106717L7.6598955,33.106717C8.5914386,33.106717 9.3413813,34.064978 9.3413813,35.255284z" />
1224 <path style="fill:url(#kh-lg725);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.15826012000000000;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1225 d="M12.220183,30.85688A2.0477064,0.82568806 0 1 1 8.1247704,30.85688A2.0477064,0.82568806 0 1 1 12.220183,30.85688z" transform="matrix(0,1.140746,-1.4,0,48.890419,23.837903)" />
1226 </g>
1227 <path style="fill:url(#kh-lg727);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1228 d="M14.678669,33.099565C15.104061,33.116227 15.374952,33.51318 15.531877,33.865954C15.91491,34.779393 15.926506,35.831931 15.629571,36.771128C15.496971,37.168254 15.271712,37.594418 14.864221,37.759765C14.446202,37.803629 14.022924,37.779685 13.602156,37.787581C13.228496,37.781998 12.852527,37.802261 12.480472,37.767206C11.793438,37.643388 11.304148,37.022683 11.126136,36.377564C10.986697,35.879172 11.007665,35.35164 11.053036,34.8415C11.156435,34.134762 11.579318,33.414308 12.281472,33.169926C12.698565,33.043982 13.139236,33.121743 13.567222,33.099564C13.939232,33.103409 14.318896,33.099565 14.678669,33.099565z" />
1229 </g>
1230 </g>
1231 <g transform="translate(-1.453211,0.658606)" >
1232 <path style="opacity:1;fill:url(#kh-lg731);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kh-p475"
1233 d="M16.249541,51.763303C17.296748,50.02135 16.79966,48.526098 16.579816,48.196331C16.447706,47.998166 15.19266,47.8 14.598165,48.658716C14.003669,49.517431 13.739449,50.772477 13.078899,51.036698C12.418348,51.300918 12.400023,52.333592 13.211008,52.820183C14.53211,53.612845 15.939678,52.278737 16.249541,51.763303z" />
1234 <use width="72" height="55" xlink:href="#kh-p475" id="kh-u485" transform="translate(-2.0477064,0.5284404)" />
1235 <use width="72" height="55" xlink:href="#kh-u485" id="kh-u487" transform="translate(-1.9155963,0.0660551)" />
1236 <use width="72" height="55" xlink:href="#kh-u487" transform="matrix(1,0,0,0.8865723,-1.7834862,5.0410395)" />
1237 </g>
1238 </g>
1239 </g>
1240 
1241 <!-- }}} -->
1242 
1243 <!-- * King of Diamonds {{{ -->
1244 <linearGradient id="kd-lg492" >
1245 <stop offset="0" style="stop-color:#ffee80;stop-opacity:1" />
1246 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1247 </linearGradient>
1248 <linearGradient id="kd-lg223" >
1249 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1250 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1251 </linearGradient>
1252 <linearGradient id="kd-lg209" >
1253 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
1254 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1255 </linearGradient>
1256 <linearGradient id="kd-lg195" >
1257 <stop offset="0" style="stop-color:#ffee80;stop-opacity:1" />
1258 <stop offset="1" style="stop-color:#fff;stop-opacity:1" />
1259 </linearGradient>
1260 <linearGradient id="kd-lg539" >
1261 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
1262 <stop offset="1" style="stop-color:#f90;stop-opacity:0" />
1263 </linearGradient>
1264 <linearGradient id="kd-lg519" >
1265 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
1266 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1267 </linearGradient>
1268 <linearGradient id="kd-lg323" >
1269 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
1270 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1271 </linearGradient>
1272 <linearGradient id="kd-lg212" >
1273 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
1274 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
1275 </linearGradient>
1276 <linearGradient id="kd-lg183" >
1277 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1278 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1279 </linearGradient>
1280 <linearGradient id="kd-lg541" >
1281 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1282 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1283 </linearGradient>
1284 <linearGradient id="kd-lg355" >
1285 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1286 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
1287 </linearGradient>
1288 <linearGradient id="kd-lg149" >
1289 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1290 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1291 </linearGradient>
1292 <linearGradient id="kd-lg141" >
1293 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
1294 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1295 </linearGradient>
1296 <linearGradient id="kd-lg133" >
1297 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
1298 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1299 </linearGradient>
1300 <linearGradient id="kd-lg837" >
1301 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1302 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1303 </linearGradient>
1304 <linearGradient id="kd-lg284" >
1305 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1306 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1307 </linearGradient>
1308 <linearGradient id="kd-lg268" >
1309 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1310 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:0" />
1311 </linearGradient>
1312 <linearGradient id="kd-lg490" >
1313 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1314 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1315 </linearGradient>
1316 <linearGradient id="kd-lg476" >
1317 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1318 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:1" />
1319 </linearGradient>
1320 <linearGradient xlink:href="#kd-lg141" id="kd-lg258" y1="33.000172" x1="53.515648" y2="33.000172" gradientUnits="userSpaceOnUse" x2="59.175911" />
1321 <linearGradient xlink:href="#kd-lg133" id="kd-lg260" y1="43.39513" x1="49.551662" y2="53.567608" gradientUnits="userSpaceOnUse" x2="60.143322" />
1322 <radialGradient fx="47.758091" fy="44.704964" cx="47.758091" cy="44.704964" gradientTransform="matrix(0.1089548,-0.2010813,0.4593557,0.2488996,39.362544,111.68101)" xlink:href="#kd-lg476" id="kd-rg337" r="5.8258683" gradientUnits="userSpaceOnUse" />
1323 <radialGradient fx="32.537888" fy="38.871136" cx="32.537888" cy="38.871136" gradientTransform="matrix(0.1418416,-9.1607927e-2,0.131729,0.2039635,51.921771,108.83492)" xlink:href="#kd-lg490" id="kd-rg339" r="5.8249979" gradientUnits="userSpaceOnUse" />
1324 <radialGradient fx="38.028793" fy="45.984734" cx="38.028793" cy="45.984734" gradientTransform="matrix(0.0916311,-6.7458121e-2,0.1194303,0.1622272,50.968336,110.78822)" xlink:href="#kd-lg268" id="kd-rg341" r="5.5679789" gradientUnits="userSpaceOnUse" />
1325 <radialGradient fx="35.506214" fy="45.83128" cx="35.506214" cy="45.83128" gradientTransform="matrix(-5.9173548e-2,0.0594561,-0.133011,-0.1323791,67.486655,121.47427)" xlink:href="#kd-lg284" id="kd-rg343" r="5.3648539" gradientUnits="userSpaceOnUse" />
1326 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(-1.445883,-1.5988898,1.0478678,-0.9475914,24.665755,103.72082)" xlink:href="#kd-lg355" id="kd-rg387" r="1.3942146" gradientUnits="userSpaceOnUse" />
1327 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(-0.829114,-1.9898734,1.3041076,-0.5433782,4.4360368,100.34626)" xlink:href="#kd-lg355" id="kd-rg389" r="1.3942146" gradientUnits="userSpaceOnUse" />
1328 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(0.6121915,-2.0669416,1.3546159,0.4012132,-12.357343,78.783738)" xlink:href="#kd-lg355" id="kd-rg451" r="1.3942146" gradientUnits="userSpaceOnUse" />
1329 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(1.0723142,-1.8700717,1.2255928,0.7027649,-21.053974,70.070664)" xlink:href="#kd-lg355" id="kd-rg455" r="1.3942146" gradientUnits="userSpaceOnUse" />
1330 <linearGradient xlink:href="#kd-lg541" id="kd-lg547" y1="40" x1="50" y2="40" x2="72" gradientUnits="userSpaceOnUse" />
1331 <linearGradient xlink:href="#kd-lg541" id="kd-lg597" y1="49.980412" x1="61.079819" y2="52.42445" x2="69.65905" gradientUnits="userSpaceOnUse" />
1332 <linearGradient xlink:href="#kd-lg209" id="kd-lg208" y1="50.38707" x1="58.301949" y2="50.38707" x2="60.472263" gradientUnits="userSpaceOnUse" />
1333 <linearGradient gradientTransform="matrix(0.9367187,0,0,1.1125722,-3.9242179,23.041827)" xlink:href="#kd-lg541" id="kd-lg355" y1="22.432858" x1="12.729774" y2="35.016312" x2="25.540451" gradientUnits="userSpaceOnUse" />
1334 <linearGradient xlink:href="#kd-lg195" id="kd-lg151" y1="23.45253" x1="22.906588" y2="24.113079" gradientUnits="userSpaceOnUse" x2="27.472206" />
1335 <linearGradient xlink:href="#kd-lg476" id="kd-lg153" y1="30.644566" x1="49.819027" y2="25.888603" gradientUnits="userSpaceOnUse" x2="37.835533" />
1336 <linearGradient xlink:href="#kd-lg183" id="kd-lg155" y1="25.301659" x1="33.101379" y2="23.220924" gradientUnits="userSpaceOnUse" x2="34.333027" />
1337 <linearGradient xlink:href="#kd-lg195" id="kd-lg159" y1="29.843752" x1="33.161263" y2="28.060266" gradientUnits="userSpaceOnUse" x2="35.782104" />
1338 <radialGradient fx="33.148659" fy="30.229698" cx="33.148659" cy="30.229698" gradientTransform="matrix(0.671184,-3.5990143e-2,0.0702467,1.3100326,9.736531,-8.8084382)" xlink:href="#kd-lg539" id="kd-rg161" r="0.51608163" gradientUnits="userSpaceOnUse" />
1339 <linearGradient xlink:href="#kd-lg195" id="kd-lg163" y1="23.773981" x1="43.364223" y2="22.122602" gradientUnits="userSpaceOnUse" x2="48.653297" />
1340 <linearGradient xlink:href="#kd-lg837" id="kd-lg165" y1="5.7568746" x1="30.268845" y2="9.7081394" gradientUnits="userSpaceOnUse" x2="23.173004" />
1341 <linearGradient gradientTransform="matrix(-1,0,0,1,76.215921,0)" xlink:href="#kd-lg837" id="kd-lg167" y1="5.4233484" x1="29.622921" y2="10.975229" gradientUnits="userSpaceOnUse" x2="35.008984" />
1342 <linearGradient xlink:href="#kd-lg149" id="kd-lg169" y1="7.4097776" x1="35.452465" y2="10.44831" gradientUnits="userSpaceOnUse" x2="29.509972" />
1343 <linearGradient xlink:href="#kd-lg837" id="kd-lg171" y1="6.8458714" x1="40.124912" y2="10.082568" gradientUnits="userSpaceOnUse" x2="36.168652" />
1344 <linearGradient xlink:href="#kd-lg149" id="kd-lg173" y1="12.722659" x1="37.941246" y2="19.2276" gradientUnits="userSpaceOnUse" x2="26.297491" />
1345 <linearGradient xlink:href="#kd-lg149" id="kd-lg175" y1="3.5431192" x1="37.339508" y2="5.2792411" gradientUnits="userSpaceOnUse" x2="39.994064" />
1346 <linearGradient gradientTransform="translate(-9.3415942e-2,-0.1167699)" xlink:href="#kd-lg212" id="kd-lg177" y1="11.041109" x1="28.299332" y2="12.047712" gradientUnits="userSpaceOnUse" x2="29.502733" />
1347 <linearGradient xlink:href="#kd-lg212" id="kd-lg179" y1="10.346184" x1="34.528389" y2="11.462177" gradientUnits="userSpaceOnUse" x2="35.747364" />
1348 <linearGradient gradientTransform="translate(0.053056,-9.1111895e-2)" xlink:href="#kd-lg212" id="kd-lg181" y1="13.827466" x1="38.68" y2="14.937149" gradientUnits="userSpaceOnUse" x2="40.353661" />
1349 <linearGradient xlink:href="#kd-lg212" id="kd-lg183" y1="11.293342" x1="45.617332" y2="12.157439" gradientUnits="userSpaceOnUse" x2="47.217396" />
1350 <linearGradient xlink:href="#kd-lg323" id="kd-lg221" y1="52.516666" x1="25.9" y2="52.516666" x2="45.099998" gradientUnits="userSpaceOnUse" />
1351 <linearGradient xlink:href="#kd-lg223" id="kd-lg229" y1="18.438532" x1="31.144037" y2="18.438532" x2="33.259634" gradientUnits="userSpaceOnUse" />
1352 <linearGradient xlink:href="#kd-lg519" id="kd-lg231" y1="17.976147" x1="31.755047" y2="19.511927" gradientUnits="userSpaceOnUse" x2="33.441284" />
1353 <linearGradient gradientTransform="translate(1.9155963,-0.3963303)" xlink:href="#kd-lg476" id="kd-lg278" y1="52.791176" x1="16.257441" y2="50.941635" gradientUnits="userSpaceOnUse" x2="13.556959" />
1354 <linearGradient gradientTransform="translate(0,1.1209913)" xlink:href="#kd-lg149" id="kd-lg303" y1="45.625" x1="4.4870691" y2="54.966595" gradientUnits="userSpaceOnUse" x2="18.06875" />
1355 <linearGradient xlink:href="#kd-lg149" id="kd-lg310" y1="43.421589" x1="7.4658861" y2="54.522339" gradientUnits="userSpaceOnUse" x2="21.056282" />
1356 <linearGradient gradientTransform="translate(0,1.1209913)" xlink:href="#kd-lg149" id="kd-lg385" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1357 <linearGradient xlink:href="#kd-lg541" id="kd-lg387" y1="31.233809" x1="10.172477" y2="29.959764" gradientUnits="userSpaceOnUse" x2="12.830858" />
1358 <linearGradient gradientTransform="matrix(0,1,-0.3985507,0,20.613608,25.259781)" xlink:href="#kd-lg149" id="kd-lg389" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1359 <linearGradient xlink:href="#kd-lg541" id="kd-lg391" y1="31.233809" x1="10.172477" y2="29.959764" gradientUnits="userSpaceOnUse" x2="12.830858" />
1360 <linearGradient gradientTransform="matrix(0,1,0.3985507,0,-0.2474389,25.265595)" xlink:href="#kd-lg149" id="kd-lg393" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1361 <linearGradient xlink:href="#kd-lg541" id="kd-lg475" y1="45.467331" x1="19.056242" y2="43.62429" x2="34.31591" gradientUnits="userSpaceOnUse" />
1362 <linearGradient xlink:href="#kd-lg492" id="kd-lg490" y1="41.090412" x1="41.015179" y2="42.879749" gradientUnits="userSpaceOnUse" x2="50.131248" />
1363 <linearGradient xlink:href="#kd-lg837" id="kd-lg648" y1="40.500919" x1="34.843121" y2="43.606422" gradientUnits="userSpaceOnUse" x2="37.685322" />
1364 <linearGradient xlink:href="#kd-lg837" id="kd-lg650" y1="40.500919" x1="34.843121" y2="43.606422" gradientUnits="userSpaceOnUse" x2="37.685322" />
1365 
1366 <g id="img_king_diamond" transform="scale(1.8) translate(-39, -58)" >
1367 <path style="opacity:1;fill:url(#kd-lg547);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1368 d="M37.122936,25.341285L23.779816,28.049541L17.306422,31.616514L12,35C12,35 4,48 6,55L66,55C66,55 66.428324,50.131877 65.46055,47.13945C64.745658,44.928953 63,42 59,37C56.604196,34.005245 52.051376,28.511927 50.00367,27.917431C47.955963,27.322936 37.05688,25.209175 37.122936,25.341285z" />
1369 <path style="opacity:1;fill:url(#kd-lg490);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1370 d="M37.125 25.34375L23.78125 28.0625L17.75 31.375L17.75 55L44.59375 55C44.290186 52.83202 44.125 50.512976 44.125 48.09375C44.125001 38.704976 46.588341 30.744034 50.03125 27.90625C50.022584 27.903588 50.008576 27.90874 50 27.90625C47.952293 27.311755 37.058944 25.21164 37.125 25.34375z" />
1371 <path style="fill:url(#kd-lg221);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1372 d="M26.036743,50.033333C32.515063,51.982375 38.837128,52.134487 44.963257,50.033333C44.983613,50.033333 45,50.491477 45,51.060563L45,53.972769C45,54.541855 44.983613,55 44.963257,55L26.036743,55C26.016387,55 26,54.541855 26,53.972769L26,51.060563C26,50.491477 26.016387,50.033333 26.036743,50.033333z" />
1373 <path style="fill:#fff;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1374 d="M47.788327,26.414723C47.788327,26.414723 48.942243,26.908996 51.459879,28.391814C53.977515,29.874632 55.131432,30.467759 55.131432,30.467759C55.131432,30.467759 54.181964,30.971279 52.299091,34.224231C50.410865,37.486431 49.131387,41.280897 48.627539,43.714268C46.949114,51.82034 47.224972,55 47.224972,55L42.399503,55C42.399503,55 42.645743,50.041481 43.802069,41.83603C44.770381,34.96476 47.788327,26.414723 47.788327,26.414723z" />
1375 <g>
1376 <path style="opacity:1;fill:#f00;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1377 d="M28.733945,27.256881C28.733945,27.256881 26.420694,30.494643 27.412844,32.409175C29.176385,35.812245 32.697248,38.816514 34.877064,39.344954C35.251386,39.435699 33.952293,41.458715 33.952293,41.458715C31.64365,40.518613 27.368011,36.389562 25.893578,33.730276C24.003466,30.321272 26.289908,27.388991 26.289908,27.388991L28.733945,27.256881z" />
1378 <path style="opacity:1;fill:#f00;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1379 d="M44.655973,26.662385C44.788083,28.313761 44.279533,30.844804 43.136707,32.673395C41.175001,35.812245 37.852303,39.080734 35.672487,39.609174C35.298165,39.699919 36.597258,41.722935 36.597258,41.722935C38.905901,40.782833 43.18154,36.653782 44.655973,33.994496C46.546085,30.585492 46.835789,27.256881 46.835789,27.256881L44.655973,26.662385z" />
1380 </g>
1381 <g transform="translate(0.4623853,-1.453211)" >
1382 <g transform="translate(-0.2754517,0.167124)" >
1383 <path style="fill:url(#kd-lg650);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kd-p418"
1384 d="M37.585322,41.161469A2.2788992,2.344954 0 1 1 33.027524,41.161469A2.2788992,2.344954 0 1 1 37.585322,41.161469z" transform="translate(-0.3141678,1.4321095)" />
1385 <path style="fill:url(#kd-lg648);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1386 d="M37.585322,41.161469A2.2788992,2.344954 0 1 1 33.027524,41.161469A2.2788992,2.344954 0 1 1 37.585322,41.161469z" transform="translate(-0.3141678,7.4219895)" />
1387 </g>
1388 <g transform="translate(-0.11519,-0.23038)" >
1389 <use width="72" height="55" xlink:href="#kd-p418" transform="translate(2.7896067,3.450039)" />
1390 <use width="72" height="55" xlink:href="#kd-p418" transform="translate(-3.11013,3.450039)" />
1391 </g>
1392 </g>
1393 <path style="fill:#090;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1394 d="M43.53125,27.5C43.531249,27.499999 43.618718,29.633985 40.6875,31.625C37.756281,33.616014 36.047924,33.546373 34.15625,33.40625C32.85867,33.310134 29.933639,31.649754 29.15625,30.65625C28.378861,29.662747 27.84375,28.5625 27.84375,28.5625L27.385665,29.60797C27.385665,29.60797 27.788717,30.443996 28.625,31.4375C29.461284,32.431004 32.60412,34.091385 34,34.1875C36.034988,34.327623 37.846713,34.397266 41,32.40625C44.153289,30.415235 44.062499,28.312501 44.0625,28.3125L42.96875,26.1875L43.53125,27.5z" />
1395 <path style="fill:#ffd0d0;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1396 d="M43.531829,27.512359C43.531829,27.512359 43.613861,29.631646 40.682643,31.622661C37.751425,33.613676 36.058554,33.537687 34.16688,33.397564C32.869302,33.301448 29.946516,31.635297 29.169127,30.641793C28.391738,29.648289 27.837951,28.563288 27.837951,28.563288L30.453597,25.013483L42.504253,25.387146L43.531829,27.512359z" />
1397 <g transform="matrix(-1,0,0,1,72.399171,-0.6605505)" >
1398 <g>
1399 <g>
1400 <g>
1401 <path style="opacity:1;fill:url(#kd-lg151);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1402 d="M29.06422,11.53578L28.337614,13.055046C28.337614,13.055046 25.365137,16.622019 25.431193,20.915596C24.961394,25.434878 22.912321,26.684935 21.269725,28.974312C21.269725,28.974312 25.241497,27.483599 29.46055,27.322936C31.370845,25.853596 30.278627,25.676254 30.278627,25.676254L30.055046,11.469725L29.06422,11.53578z" />
1403 </g>
1404 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1405 d="M29.59266,13.451377C29.59266,13.451377 27.3758,16.290905 27.412843,18.07523C27.597476,26.968785 24.345569,28.179635 23.911926,28.049542" />
1406 </g>
1407 <g>
1408 <path style="fill:url(#kd-lg153);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1409 d="M44.010759,19.069986C44.010759,24.502881 42.632146,28.452088 36.315429,29.105853C30.808849,29.675771 26.999542,23.95513 28.983317,18.801266C29.660019,17.043192 28.577054,16.480584 29.836604,13.556671C30.745432,11.446923 34.898642,11.687726 37.90075,11.667321C43.31347,11.630533 43.979379,13.657232 44.010759,19.069986z" />
1410 <g>
1411 <g transform="translate(-0.6539116,-4.6707971e-2)" >
1412 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1413 d="M35.419185,17.942147C35.171479,20.534808 34.447706,21.014679 34.447706,21.014679" />
1414 <path style="opacity:1;fill:url(#kd-lg155);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1415 d="M35.785321,21.262385C35.785321,21.262385 35.009175,21.130275 34.365138,21.014679C33.14338,20.795389 32.535779,21.378193 32.383487,22.055046C32.234862,22.715596 32.79633,23.376147 33.291743,23.607339C33.787156,23.838532 35.306422,24.102752 35.405505,24.086238" />
1416 </g>
1417 <g>
1418 <path style="fill:url(#kd-lg231);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible" id="kd-p204"
1419 d="M33.159634,18.438532A0.95779818,1.2220184 0 1 1 31.244037,18.438532A0.95779818,1.2220184 0 1 1 33.159634,18.438532z" />
1420 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1421 d="M33.281126,17.625608C33.281126,17.625608 33.001883,16.995726 32.177333,17.043179C31.188143,17.100107 30.526798,17.911986 30.526798,17.911986" />
1422 </g>
1423 <g>
1424 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1425 d="M37.497938,17.350292C37.497938,17.350292 37.635136,16.75695 38.61297,16.916871C39.590806,17.076791 40.264539,17.581879 40.264539,17.581879" />
1426 <use width="72" height="55" style="fill-opacity:1;fill:url(#kd-lg229)" xlink:href="#kd-p204" transform="translate(6.3082569,-0.1321101)" />
1427 </g>
1428 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1429 d="M37.122936,25.721101C34.314561,25.98118 32.645054,25.495812 32.631193,25.440367" />
1430 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1431 d="M34.169618,16.122935C33.033357,14.743009 30.82182,14.828904 29.782488,15.517601" />
1432 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1433 d="M36.278085,16.169632C37.643858,15.108537 40.649036,15.645143 41.239965,16.334108" />
1434 </g>
1435 <g>
1436 <path style="fill:url(#kd-lg159);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1437 d="M33.627219,26.739503C33.627219,26.739503 33.311941,26.675279 32.932438,27.340868C32.507731,28.085739 31.998279,29.209186 33.025854,30.143346C34.05343,31.077505 35.267837,31.87154 34.660634,32.198496C34.05343,32.525452 35.127713,33.599735 36.482244,32.385328C37.836776,31.170921 38.298814,29.846967 38.070315,29.11577C37.836776,28.368443 36.155289,28.041487 36.388829,27.294159C36.508675,26.910653 34.668036,27.15137 33.627219,26.739503z" />
1438 <path style="fill:url(#kd-rg161);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1439 d="M34.279494,28.43886C34.177152,28.47035 33.821044,29.592424 34.488606,30.261708C35.151596,30.926407 34.836348,31.978279 34.836348,31.978279" />
1440 </g>
1441 </g>
1442 <g>
1443 <path style="fill:url(#kd-lg163);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1444 d="M46.172477,11.403669C46.965137,12.32844 48.352294,14.376147 48.418349,15.895413C48.484404,17.414679 48.682569,20.056881 49.409174,21.179816C50.13578,22.302752 51.655046,24.350458 51.06055,25.473394C50.840679,28.002062 47.573683,28.802587 45.313762,28.577982C43.199999,28.115597 42.209174,27.124771 42.077064,25.473395C41.944954,23.822019 42.209174,21.840367 42.209174,18.86789C42.209174,15.895413 41.152294,12.19633 41.152294,12.19633L46.172477,11.403669z" />
1445 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1446 d="M45.577982,13.451377C45.577982,13.451377 46.436697,14.772478 46.700917,16.093578C46.965138,17.414679 46.965138,20.519267 48.088073,22.434863" />
1447 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1448 d="M47.163303,28.247706C47.163303,28.247706 46.436698,26.992661 45.445872,24.746789C44.455046,22.500917 44.521101,18.60367 44.521101,18.60367" />
1449 </g>
1450 </g>
1451 <g>
1452 <g>
1453 <g>
1454 <path style="opacity:1;fill:url(#kd-lg165);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1455 d="M37.651376,4.4678899C37.651376,4.4678899 34.282568,3.6091743 31.442201,3.9394495C28.601834,4.2697248 27.330584,6.0344899 27.478899,7.8366972C27.653027,9.9525744 29.130275,10.346789 29.130275,10.346789L32.300917,10.875229C32.300917,10.875229 30.310515,9.0313204 30.253211,7.7706422C30.187156,6.3174312 31.772477,5.5908257 32.895412,5.5908257C35.406373,5.5908258 38.047706,5.8550459 38.047706,5.8550459L37.651376,4.4678899z" />
1456 <path style="fill:url(#kd-lg167);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1457 d="M38.564545,4.4678899C38.564545,4.4678899 41.933353,3.6091743 44.77372,3.9394495C47.614087,4.2697248 48.885337,6.0344899 48.737022,7.8366972C48.562894,9.9525744 47.085646,10.346789 47.085646,10.346789L43.915004,10.875229C43.915004,10.875229 45.905406,9.0313204 45.96271,7.7706422C46.028765,6.3174312 44.443444,5.5908257 43.320509,5.5908257C40.809548,5.5908258 38.168215,5.8550459 38.168215,5.8550459L38.564545,4.4678899z" />
1458 <path style="fill:url(#kd-lg169);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1459 d="M36.885944,4.6660552L39.329981,4.6660552C34.417102,8.6293579 37.132383,9.1577982 36.357504,11.53578L33.913467,11.53578C32.987141,9.0548731 32.274174,7.2362051 36.885944,4.6660552z" />
1460 <path style="fill:url(#kd-lg171);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1461 d="M38.712687,4.7321102L36.26865,4.7321102C41.181529,8.6954129 38.466248,9.2238532 39.241127,11.601835L41.685164,11.601835C42.61149,9.1209281 43.324457,7.3022601 38.712687,4.7321102z" />
1462 <path style="fill:url(#kd-lg173);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1463 d="M28.01015,9.7862585C34.520789,11.147314 41.361702,10.797161 47.872341,9.7862585L47.872341,13.255319C41.361702,14.7058 34.520789,14.52576 28.01015,13.255319L28.01015,9.7862585z" />
1464 <path style="opacity:1;fill:url(#kd-lg175);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.163322;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1465 d="M39.236696,3.5431192A1.5853211,1.6513761 0 1 1 39.235317,3.4742522" transform="matrix(1.2708333,0,0,1.18,-9.8999999,-1.0238571e-2)" />
1466 </g>
1467 </g>
1468 <g>
1469 <path style="fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1470 d="M27.997411,10.463128L30.75347,10.879236C30.771981,10.882031 30.729131,11.33824 30.657393,11.902127L30.633359,12.091042C30.56162,12.654929 30.488964,13.106639 30.470452,13.103844L27.911459,12.70425C27.684076,12.423516 27.623945,11.89958 27.62228,11.525471C27.620542,11.134849 27.796993,10.70804 27.997411,10.463128z" />
1471 <rect width="3.1045871" x="38.502068" y="13.572017" rx="0.036748853" height="2.2458715" ry="1.0275754" style="fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" transform="matrix(0.9983584,-0.0572752,0.0572752,0.9983584,0,0)" />
1472 <rect width="3.1045871" x="34.032433" y="9.4908123" rx="0.036748853" ry="1.0275754" height="2.2458715" style="fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" transform="matrix(0.9986671,0.0516139,-0.0516139,0.9986671,0,0)" />
1473 <path style="fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1474 d="M47.926987,10.411824L45.090963,10.838824C45.072523,10.841692 45.116744,11.29773 45.190112,11.86133L45.214692,12.050148C45.28806,12.613748 45.361971,13.065167 45.380411,13.062299L47.929387,12.635299C48.156894,11.886781 48.152999,10.997675 47.926987,10.411824z" />
1475 <path style="fill:url(#kd-lg177);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1476 d="M28.185024,10.924339L30.215317,11.18432C30.228954,11.186067 30.197387,11.471101 30.144541,11.823413L30.126835,11.941445C30.073988,12.293757 30.020465,12.57598 30.006828,12.574235L28.121706,12.324572C27.954201,12.149172 27.909905,11.821822 27.908678,11.588082C27.907397,11.344025 28.037383,11.077359 28.185024,10.924339z" />
1477 <rect width="2.2554522" x="34.589523" y="10.342134" rx="0.036745306" height="1.3067259" ry="1.0273724" style="fill:url(#kd-lg179);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" transform="matrix(0.9991466,0.0413058,-6.4477045e-2,0.9979192,0,0)" />
1478 <rect width="2.2587256" x="38.839367" y="13.643541" rx="0.036742982" ry="1.0272301" height="1.3567177" style="fill:url(#kd-lg181);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" transform="matrix(0.9988702,-4.7521274e-2,0.0690151,0.9976156,0,0)" />
1479 <path style="fill:url(#kd-lg183);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1480 d="M47.706508,11.065735L45.860182,11.289567C45.848177,11.29107 45.876966,11.530123 45.924731,11.825559L45.940733,11.924537C45.988498,12.219973 46.036616,12.456605 46.048621,12.455102L47.708071,12.23127C47.856184,11.838901 47.853648,11.372836 47.706508,11.065735z" />
1481 </g>
1482 </g>
1483 </g>
1484 <rect width="0" x="26" y="56" rx="0.036742982" ry="0" height="0" style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1485 <path style="opacity:1;fill:url(#kd-lg475);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1486 d="M22.875 28.5625L17.3125 31.625L12 35C12 35 4 48 6 55L25.40625 55C26.01758 53.443198 26.505645 51.810506 26.84375 50.09375L26.84375 38.375C26.125328 34.721435 24.74448 31.385807 22.875 28.5625z" />
1487 <g>
1488 <path style="fill:#fff;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1489 d="M24.217395,28.014126C24.217395,28.014126 22.79349,28.283041 20.551507,29.68428C18.309525,31.085519 17.281949,31.646015 17.281949,31.646015C17.281949,31.646015 18.127461,32.121833 19.80418,35.19582C21.485666,38.278546 22.625055,41.864255 23.073737,44.163751C24.568393,51.823858 24.447616,55 24.447616,55L28.744749,55C28.744749,55 28.400592,50.142865 27.370871,42.388847C26.508579,35.895608 24.217395,28.014126 24.217395,28.014126z" />
1490 <path style="opacity:1;fill:url(#kd-rg389);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kd-p345"
1491 d="M21.930275,30.823854C22.788991,32.47523 23.67583,32.570306 23.779817,33.069725C23.893872,33.617499 24.968807,33.26789 24.308257,31.748624C23.647706,30.229358 24.308257,29.502753 24.308257,29.502753" />
1492 <path style="opacity:1;fill:url(#kd-rg387);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kd-p363"
1493 d="M17.945368,32.346795C19.306143,33.616727 20.173839,33.410266 20.438596,33.846313C20.728988,34.324578 21.625524,33.63615 20.495651,32.424588C19.365777,31.213026 19.745842,30.30758 19.745842,30.30758" />
1494 <use width="72" height="55" id="kd-u367" xlink:href="#kd-p363" transform="matrix(-0.8144214,0.5802738,0.5802738,0.8144214,19.580415,-2.3354857)" />
1495 <use width="72" height="55" xlink:href="#kd-u367" transform="translate(2.5100917,2.3449541)" />
1496 <use width="72" height="55" xlink:href="#kd-p363" transform="translate(4.8220184,10.238532)" />
1497 <use width="72" height="55" xlink:href="#kd-u367" transform="translate(3.9963303,11.229358)" />
1498 <use width="72" height="55" xlink:href="#kd-p345" transform="translate(2.212844,19.552294)" />
1499 </g>
1500 <path style="opacity:1;fill:url(#kd-lg355);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1501 d="M12 41.96875C7.8634502 41.96875 4.5 46.441491 4.5 51.96875C4.5 53.029479 4.6459354 54.040321 4.875 55L19.125 55C19.354065 54.040321 19.5 53.029479 19.5 51.96875C19.5 46.441491 16.13655 41.968749 12 41.96875z" />
1502 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1503 d="M12 41C7.86 41 4.5 45.726049 4.5 51.53125C4.5 52.748926 4.6656462 53.913113 4.9375 55L5.875 55C5.6346984 54.061455 5.5 53.051846 5.5 52C5.5 47.032 8.41936 43 12 43C15.58064 43 18.5 47.032 18.5 52C18.5 53.051846 18.365302 54.061455 18.125 55L19.0625 55C19.334354 53.913113 19.5 52.748926 19.5 51.53125C19.5 45.72605 16.14 40.999999 12 41z" />
1504 <g>
1505 <g>
1506 <g>
1507 <path style="fill:url(#kd-lg310);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1508 d="M17.966973,45.289909A7.6293578,6.1431193 0 1 1 2.7082572,45.289909A7.6293578,6.1431193 0 1 1 17.966973,45.289909z" transform="translate(0,1.1209913)" />
1509 <path style="fill:url(#kd-lg303);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1510 d="M17.5625,44.495991C17.43715,44.559283 17.318853,44.623108 17.1875,44.683491C17.102324,44.723148 17.025294,44.770236 16.9375,44.808491C16.810732,44.863044 16.694472,44.913215 16.5625,44.964741C16.138631,45.133393 15.692587,45.267304 15.21875,45.402241C15.195556,45.408707 15.179553,45.427111 15.15625,45.433491C15.065085,45.459026 14.967827,45.471783 14.875,45.495991C14.45268,45.606129 14.016264,45.696114 13.5625,45.777241C13.131174,45.854357 12.674227,45.916068 12.21875,45.964741C12.102162,45.976768 11.992979,45.985905 11.875,45.995991C11.864516,45.996927 11.854245,45.99507 11.84375,45.995991C11.291318,46.044448 10.735129,46.08634 10.15625,46.089741C10.134906,46.089804 10.115124,46.089741 10.09375,46.089741C10.008699,46.089741 9.9283138,46.090738 9.84375,46.089741C9.2677157,46.082953 8.7056102,46.046991 8.15625,45.995991C7.6758791,45.951396 7.2048497,45.884358 6.75,45.808491C6.3935129,45.748188 6.0570573,45.667979 5.71875,45.589741C5.3514111,45.505823 4.999198,45.412139 4.65625,45.308491C4.6370262,45.302681 4.6128922,45.314361 4.59375,45.308491C4.2179742,45.193268 3.8735432,45.039403 3.53125,44.902241C3.403142,44.851315 3.2481852,44.830854 3.125,44.777241C3.1280539,44.768363 3.1218981,44.754853 3.125,44.745991C3.089586,44.730269 3.0662602,44.699423 3.03125,44.683491C2.830375,45.233542 2.71875,45.800061 2.71875,46.402241C2.71875,46.773132 2.7654068,47.143151 2.84375,47.495991C2.8861588,47.51683 2.9256381,47.538022 2.96875,47.558491C3.1357255,47.636738 3.3231949,47.704349 3.5,47.777241C3.5218811,47.786333 3.5404689,47.799485 3.5625,47.808491C3.9569073,47.968551 4.3743555,48.114804 4.8125,48.245991C5.1821773,48.356678 5.571758,48.470522 5.96875,48.558491C6.0641567,48.579632 6.153141,48.601233 6.25,48.620991C6.5348584,48.679155 6.8283859,48.70019 7.125,48.745991C7.7740853,48.846219 8.4608625,48.928604 9.15625,48.964741C9.5193906,48.983612 9.8770799,48.995991 10.25,48.995991C10.492576,48.995286 10.730459,48.973427 10.96875,48.964741C11.661938,48.941071 12.350229,48.895881 13,48.808491C13.179894,48.783768 13.355421,48.744038 13.53125,48.714741C13.881426,48.656393 14.230036,48.602946 14.5625,48.527241C14.894964,48.451536 15.218613,48.369258 15.53125,48.277241C15.843887,48.185224 16.146805,48.072024 16.4375,47.964741C16.728194,47.857458 17.014613,47.742495 17.28125,47.620991C17.494559,47.523788 17.681168,47.411752 17.875,47.308491C17.92933,47.012875 17.96875,46.709958 17.96875,46.402241C17.96875,45.728192 17.811986,45.102956 17.5625,44.495991z" />
1511 </g>
1512 <g transform="translate(0.1524104,0)" >
1513 <g transform="translate(-7.0101261e-2,0)" >
1514 <rect width="4.6707969" x="7.8469391" y="29.404032" rx="2.1485667" height="12.8914" ry="1.2144059" style="fill:url(#kd-lg385);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1515 <path style="opacity:1;fill:url(#kd-lg387);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.15826012;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1516 d="M12.220183,30.85688A2.0477064,0.82568806 0 1 1 8.1247704,30.85688A2.0477064,0.82568806 0 1 1 12.220183,30.85688z" transform="matrix(1.140746,0,0,1.4,-1.4192109,-12.813385)" />
1517 </g>
1518 <g>
1519 <path style="fill:url(#kd-lg389);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1520 d="M9.3413813,35.255284L9.3413813,35.628947C9.3413813,36.819253 8.5914386,37.777514 7.6598955,37.777514L5.8849896,37.777514C4.9534465,37.777514 4.8825039,36.819253 4.8825039,35.628947L4.8825039,35.255284C4.8825039,34.064978 4.9534465,33.106717 5.8849896,33.106717L7.6598955,33.106717C8.5914386,33.106717 9.3413813,34.064978 9.3413813,35.255284z" />
1521 <path style="fill:url(#kd-lg391);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.15826012;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1522 d="M12.220183,30.85688A2.0477064,0.82568806 0 1 1 8.1247704,30.85688A2.0477064,0.82568806 0 1 1 12.220183,30.85688z" transform="matrix(0,1.140746,-1.4,0,48.890419,23.837903)" />
1523 </g>
1524 <path style="fill:url(#kd-lg393);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1525 d="M14.678669,33.099565C15.104061,33.116227 15.374952,33.51318 15.531877,33.865954C15.91491,34.779393 15.926506,35.831931 15.629571,36.771128C15.496971,37.168254 15.271712,37.594418 14.864221,37.759765C14.446202,37.803629 14.022924,37.779685 13.602156,37.787581C13.228496,37.781998 12.852527,37.802261 12.480472,37.767206C11.793438,37.643388 11.304148,37.022683 11.126136,36.377564C10.986697,35.879172 11.007665,35.35164 11.053036,34.8415C11.156435,34.134762 11.579318,33.414308 12.281472,33.169926C12.698565,33.043982 13.139236,33.121743 13.567222,33.099564C13.939232,33.103409 14.318896,33.099565 14.678669,33.099565z" />
1526 </g>
1527 </g>
1528 <g transform="translate(-1.453211,0.658606)" >
1529 <path style="opacity:1;fill:url(#kd-lg278);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kd-p475"
1530 d="M16.249541,51.763303C17.296748,50.02135 16.79966,48.526098 16.579816,48.196331C16.447706,47.998166 15.19266,47.8 14.598165,48.658716C14.003669,49.517431 13.739449,50.772477 13.078899,51.036698C12.418348,51.300918 12.400023,52.333592 13.211008,52.820183C14.53211,53.612845 15.939678,52.278737 16.249541,51.763303z" />
1531 <use width="72" height="55" xlink:href="#kd-p475" id="kd-u485" transform="translate(-2.0477064,0.5284404)" />
1532 <use width="72" height="55" xlink:href="#kd-u485" id="kd-u487" transform="translate(-1.9155963,0.0660551)" />
1533 <use width="72" height="55" xlink:href="#kd-u487" transform="matrix(1,0,0,0.8865723,-1.7834862,5.0410395)" />
1534 </g>
1535 </g>
1536 <use width="72" height="55" xlink:href="#kd-u367" transform="translate(28.205505,-2.5100917)" />
1537 <path style="opacity:1;fill:url(#kd-lg208);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1538 d="M59.062369,46.568545L59.876985,45.901937C59.596384,47.723551 59.335906,48.868572 59.216013,50.277695C59.074728,51.938246 59.541588,54.933945 59.541588,54.933945L58.653513,54.933945C58.642388,54.828239 58.295817,51.686193 58.434763,49.902695C58.550512,48.416953 58.510493,47.407669 59.062369,46.568545z" />
1539 <g>
1540 <rect width="4.1223855" x="51.997246" y="44.059875" rx="0.036748853" ry="1.0275754" height="10.823352" style="opacity:1;fill:#8df;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1541 <g transform="matrix(0.9227043,-0.3855085,0.3855085,0.9227043,-49.780102,-33.04193)" >
1542 <path style="fill:url(#kd-rg337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1543 d="M69.75545,116.81805C69.27908,116.3588 67.552409,113.53405 67.151854,113.13806L66.99159,113.97388C66.764509,114.32238 65.759279,114.08661 65.139946,113.78484C64.399441,113.42403 63.540696,112.83934 63.538339,112.59068C63.536504,112.39713 64.16569,112.43137 64.234119,112.33472C63.856118,112.01068 63.383323,111.78026 62.861776,111.74541C62.154268,111.69814 61.134453,111.63118 61.050614,112.89803C60.111615,112.55846 59.295427,113.6877 59.505994,114.88691C58.858925,115.12429 58.648374,115.49602 58.597629,115.72666C58.426127,116.04773 58.573855,116.63251 58.870048,117.16083C58.547523,117.82173 58.26261,118.73362 58.752644,119.34798C59.889747,120.77357 61.898771,121.43982 63.366318,121.73333C64.833865,122.02684 68.085572,122.61487 68.085572,122.61487C68.085572,122.61487 69.759342,120.1011 69.935354,119.28928C70.191306,118.10874 69.75545,116.81805 69.75545,116.81805z" />
1544 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1545 d="M61.012577,112.79841C61.123063,113.74859 61.661835,114.22842 62.294208,114.74296" />
1546 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1547 d="M58.885032,117.18811C59.01856,117.40309 59.240277,117.62369 59.956741,118.16039" />
1548 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1549 d="M59.487878,114.89002C59.58826,115.31491 59.854171,115.70124 60.570635,116.23794" />
1550 <path style="fill:url(#kd-rg339);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1551 d="M61.050164,112.89824C60.111165,112.55868 59.308347,113.69904 59.518914,114.89824C58.871845,115.13562 58.663409,115.51135 58.612664,115.74199C58.441161,116.06306 58.566471,116.61992 58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 69.749152,120.11632 69.925164,119.30449C70.009702,118.91458 70.013433,118.51171 69.987664,118.14824C68.596002,118.78107 64.882316,116.34675 62.812402,115.18853C61.788165,114.48593 61.185403,113.88941 61.050164,112.89824z" />
1552 <path style="fill:url(#kd-rg341);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1553 d="M59.518914,114.89824C58.871845,115.13562 58.663409,115.51135 58.612664,115.74199C58.441161,116.06306 58.566471,116.61992 58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 68.935236,121.36009 69.487664,120.33574C65.419997,119.9999 59.574444,115.9911 59.518914,114.89824z" />
1554 <path style="fill:url(#kd-rg343);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1555 d="M58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 68.683544,121.70221 69.206414,120.80449C67.845841,121.38981 66.332104,120.32139 64.295453,119.71794C62.150727,119.05218 59.665492,118.29843 58.862664,117.14824z" />
1556 </g>
1557 <g>
1558 <g>
1559 <path style="opacity:1;fill:url(#kd-lg258);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1560 d="M54,22L57,25C57,25 57.046708,44.093416 57,44L51,44L51,25L54,22z" />
1561 <path style="opacity:1;fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1562 d="M54.099083,23.888073L54.099083,43.638532" />
1563 </g>
1564 <rect width="9.6218424" x="49.199459" y="42.949341" rx="1.0275754" height="3.269558" ry="1.0275754" style="opacity:1;fill:url(#kd-lg260);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1565 </g>
1566 </g>
1567 <rect width="0" x="52" y="41.734936" rx="0.036748853" height="1.2650638" ry="1.0275754" style="opacity:1;fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1568 <use width="72" height="55" xlink:href="#kd-p363" transform="matrix(0.5208177,0.8536679,-0.8536679,0.5208177,65.393429,-2.9550029)" />
1569 <use width="72" height="55" xlink:href="#kd-p345" transform="matrix(0.9792626,0.2025948,-0.2025948,0.9792626,32.4741,1.164229)" />
1570 <use width="72" height="55" xlink:href="#kd-p363" transform="matrix(-0.8144214,0.5802738,0.5802738,0.8144214,45.077663,4.5342391)" />
1571 <path style="opacity:1;fill:url(#kd-rg451);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1572 d="M45.078751,35.882575C44.703092,37.705571 45.331157,38.338862 45.096739,38.791942C44.839626,39.28889 45.894185,39.695848 46.34024,38.100376C46.786294,36.504904 47.757211,36.357927 47.757211,36.357927" />
1573 <path style="opacity:1;fill:url(#kd-rg455);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1574 d="M44.726925,41.569997C43.94102,43.25724 44.406127,44.018291 44.07355,44.405105C43.708773,44.829373 44.641071,45.468537 45.443008,44.018919C46.244945,42.5693 47.223588,42.650171 47.223588,42.650171" />
1575 <use width="72" height="55" xlink:href="#kd-u367" transform="matrix(0.9637321,-0.2668715,0.2668715,0.9637321,15.485838,22.266688)" />
1576 <use width="72" height="55" xlink:href="#kd-p363" transform="matrix(0.6313892,0.7754661,-0.7754661,0.6313892,56.825775,12.58517)" />
1577 <use width="72" height="55" xlink:href="#kd-u367" transform="translate(22.392661,17.570642)" />
1578 <path style="opacity:1;fill:url(#kd-lg597);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1579 d="M59.066055,46.537615L60.546789,45.462385C60.546789,45.462385 63.93155,44.035715 65,46C67.453211,50.510091 66,55 66,55L60,55C60,55 60.348624,51.990826 60.207339,50.330275C60.087447,48.921153 59.647707,47.271559 59.066055,46.537615z" />
1580 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1581 d="M59.90625 45.90625L59.0625 46.53125C59.644152 47.265194 60.098857 48.934627 60.21875 50.34375C60.360035 52.004301 60 55 60 55L60.78125 55C60.792375 54.894294 61.138946 51.752248 61 49.96875C60.884251 48.483008 60.458126 46.745374 59.90625 45.90625z" />
1582 </g>
1583 
1584 <!-- }}} -->
1585 
1586 <!-- * King of Spade {{{ -->
1587 
1588 <linearGradient xlink:href="#ks-lg837" id="ks-lg648" y1="40.500919" x1="34.843121" y2="43.606422" gradientUnits="userSpaceOnUse" x2="37.685322" />
1589 <linearGradient id="ks-lg518" >
1590 <stop offset="0" style="stop-color:#ffee80;stop-opacity:1" />
1591 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1592 </linearGradient>
1593 <linearGradient gradientTransform="translate(0.2500003,2e-07)" xlink:href="#ks-lg518" id="ks-lg490" y1="41.090412" x1="41.015179" y2="42.879749" gradientUnits="userSpaceOnUse" x2="50.131248" />
1594 <linearGradient id="ks-lg519" >
1595 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
1596 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1597 </linearGradient>
1598 <linearGradient gradientTransform="translate(0.1562502,-9.37509e-2)" xlink:href="#ks-lg519" id="ks-lg475" y1="45.467331" x1="19.056242" y2="43.62429" x2="34.31591" gradientUnits="userSpaceOnUse" />
1599 <linearGradient gradientTransform="matrix(0,1,0.3985507,0,-0.2474389,25.265595)" xlink:href="#ks-lg149" id="ks-lg727" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1600 <linearGradient id="ks-lg503" >
1601 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1602 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1603 </linearGradient>
1604 <linearGradient xlink:href="#ks-lg503" id="ks-lg725" y1="31.233809" x1="10.172477" y2="29.959764" gradientUnits="userSpaceOnUse" x2="12.830858" />
1605 <linearGradient gradientTransform="matrix(0,1,-0.3985507,0,20.613608,25.259781)" xlink:href="#ks-lg149" id="ks-lg723" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1606 <linearGradient id="ks-lg509" >
1607 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1608 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1609 </linearGradient>
1610 <linearGradient xlink:href="#ks-lg509" id="ks-lg721" y1="31.233809" x1="10.172477" y2="29.959764" gradientUnits="userSpaceOnUse" x2="12.830858" />
1611 <linearGradient gradientTransform="translate(0,1.1209913)" xlink:href="#ks-lg149" id="ks-lg719" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
1612 <linearGradient gradientTransform="translate(0,1.1209913)" xlink:href="#ks-lg149" id="ks-lg717" y1="45.625" x1="4.4870691" y2="54.966595" gradientUnits="userSpaceOnUse" x2="18.06875" />
1613 <linearGradient xlink:href="#ks-lg149" id="ks-lg715" y1="43.421589" x1="7.4658861" y2="54.522339" gradientUnits="userSpaceOnUse" x2="21.056282" />
1614 <linearGradient id="ks-lg323" >
1615 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
1616 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1617 </linearGradient>
1618 <linearGradient id="ks-lg212" >
1619 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
1620 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
1621 </linearGradient>
1622 <linearGradient id="ks-lg183" >
1623 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1624 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1625 </linearGradient>
1626 <linearGradient id="ks-lg685" >
1627 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
1628 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1629 </linearGradient>
1630 <linearGradient id="ks-lg541" >
1631 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
1632 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1633 </linearGradient>
1634 <linearGradient id="ks-lg355" >
1635 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1636 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
1637 </linearGradient>
1638 <linearGradient id="ks-lg149" >
1639 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1640 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1641 </linearGradient>
1642 <linearGradient id="ks-lg141" >
1643 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
1644 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1645 </linearGradient>
1646 <linearGradient id="ks-lg133" >
1647 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
1648 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1649 </linearGradient>
1650 <linearGradient id="ks-lg837" >
1651 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1652 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1653 </linearGradient>
1654 <linearGradient id="ks-lg284" >
1655 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1656 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1657 </linearGradient>
1658 <linearGradient id="ks-lg268" >
1659 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1660 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:0" />
1661 </linearGradient>
1662 <linearGradient id="ks-lg490" >
1663 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1664 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1665 </linearGradient>
1666 <linearGradient id="ks-lg476" >
1667 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1668 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:1" />
1669 </linearGradient>
1670 <linearGradient xlink:href="#ks-lg141" id="ks-lg258" y1="33.000172" x1="53.515648" y2="33.000172" gradientUnits="userSpaceOnUse" x2="59.175911" />
1671 <linearGradient xlink:href="#ks-lg133" id="ks-lg260" y1="43.39513" x1="49.551662" y2="53.567608" gradientUnits="userSpaceOnUse" x2="60.143322" />
1672 <radialGradient fx="47.758091" fy="44.704964" cx="47.758091" cy="44.704964" gradientTransform="matrix(0.1089548,-0.2010813,0.4593557,0.2488996,39.362544,111.68101)" xlink:href="#ks-lg476" id="ks-rg337" r="5.8258683" gradientUnits="userSpaceOnUse" />
1673 <radialGradient fx="32.537888" fy="38.871136" cx="32.537888" cy="38.871136" gradientTransform="matrix(0.1418416,-9.1607927e-2,0.131729,0.2039635,51.921771,108.83492)" xlink:href="#ks-lg490" id="ks-rg339" r="5.8249979" gradientUnits="userSpaceOnUse" />
1674 <radialGradient fx="38.028793" fy="45.984734" cx="38.028793" cy="45.984734" gradientTransform="matrix(0.0916311,-6.7458121e-2,0.1194303,0.1622272,50.968336,110.78822)" xlink:href="#ks-lg268" id="ks-rg341" r="5.5679789" gradientUnits="userSpaceOnUse" />
1675 <radialGradient fx="35.506214" fy="45.83128" cx="35.506214" cy="45.83128" gradientTransform="matrix(-5.9173548e-2,0.0594561,-0.133011,-0.1323791,67.486655,121.47427)" xlink:href="#ks-lg284" id="ks-rg343" r="5.3648539" gradientUnits="userSpaceOnUse" />
1676 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(-1.445883,-1.5988898,1.0478678,-0.9475914,24.665755,103.72082)" xlink:href="#ks-lg355" id="ks-rg387" r="1.3942146" gradientUnits="userSpaceOnUse" />
1677 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(-0.829114,-1.9898734,1.3041076,-0.5433782,4.4360368,100.34626)" xlink:href="#ks-lg355" id="ks-rg389" r="1.3942146" gradientUnits="userSpaceOnUse" />
1678 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(0.6121915,-2.0669416,1.3546159,0.4012132,-12.357343,78.783738)" xlink:href="#ks-lg355" id="ks-rg451" r="1.3942146" gradientUnits="userSpaceOnUse" />
1679 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(1.0723142,-1.8700717,1.2255928,0.7027649,-21.053974,70.070664)" xlink:href="#ks-lg355" id="ks-rg455" r="1.3942146" gradientUnits="userSpaceOnUse" />
1680 <linearGradient xlink:href="#ks-lg541" id="ks-lg597" y1="49.980412" x1="61.079819" y2="52.42445" x2="69.65905" gradientUnits="userSpaceOnUse" />
1681 <linearGradient xlink:href="#ks-lg476" id="ks-lg683" y1="30.644566" x1="49.819027" y2="25.888603" x2="37.835533" gradientUnits="userSpaceOnUse" />
1682 <linearGradient xlink:href="#ks-lg685" id="ks-lg691" y1="20.008842" x1="43.232113" y2="20.735447" x2="55.192749" gradientUnits="userSpaceOnUse" />
1683 <linearGradient xlink:href="#ks-lg685" id="ks-lg699" y1="29.843752" x1="35.275021" y2="30.768522" x2="39.811462" gradientUnits="userSpaceOnUse" />
1684 <linearGradient xlink:href="#ks-lg685" id="ks-lg707" y1="19.885557" x1="23.944036" y2="23.254364" x2="42.136425" gradientUnits="userSpaceOnUse" />
1685 <linearGradient xlink:href="#ks-lg837" id="ks-lg927" y1="7.3695345" x1="28.886564" y2="10.975229" gradientUnits="userSpaceOnUse" x2="38.147705" />
1686 <linearGradient gradientTransform="matrix(-1,0,0,1,76.215921,0)" xlink:href="#ks-lg837" id="ks-lg931" y1="6.1144886" x1="32.387482" y2="11.305505" gradientUnits="userSpaceOnUse" x2="25.333025" />
1687 <linearGradient xlink:href="#ks-lg149" id="ks-lg939" y1="3.5431192" x1="37.339508" y2="5.2792411" x2="39.994064" gradientUnits="userSpaceOnUse" />
1688 <linearGradient xlink:href="#ks-lg837" id="ks-lg947" y1="6.8458714" x1="39.318581" y2="10.082568" x2="43.987778" gradientUnits="userSpaceOnUse" />
1689 <linearGradient xlink:href="#ks-lg149" id="ks-lg955" y1="8.1009178" x1="33.724613" y2="11.13945" x2="40.222641" gradientUnits="userSpaceOnUse" />
1690 <linearGradient xlink:href="#ks-lg149" id="ks-lg963" y1="12.031519" x1="31.411068" y2="22.798491" x2="51.935642" gradientUnits="userSpaceOnUse" />
1691 <linearGradient xlink:href="#ks-lg183" id="ks-lg189" y1="25.301659" x1="33.101379" y2="23.220924" x2="34.333027" gradientUnits="userSpaceOnUse" />
1692 <linearGradient xlink:href="#ks-lg149" id="ks-lg208" y1="50.38707" x1="58.301949" y2="50.38707" x2="60.472263" gradientUnits="userSpaceOnUse" />
1693 <linearGradient xlink:href="#ks-lg541" id="ks-lg273" y1="17.976147" x1="31.755047" y2="19.511927" gradientUnits="userSpaceOnUse" x2="33.441284" />
1694 <linearGradient xlink:href="#ks-lg212" id="ks-lg277" y1="11.293342" x1="45.617332" y2="12.157439" gradientUnits="userSpaceOnUse" x2="47.217396" />
1695 <linearGradient gradientTransform="translate(0.053056,-9.1111897e-2)" xlink:href="#ks-lg212" id="ks-lg280" y1="13.827466" x1="38.68" y2="14.937149" gradientUnits="userSpaceOnUse" x2="40.353661" />
1696 <linearGradient xlink:href="#ks-lg212" id="ks-lg283" y1="10.346184" x1="34.528389" y2="11.462177" gradientUnits="userSpaceOnUse" x2="35.747364" />
1697 <linearGradient gradientTransform="translate(-9.3415942e-2,-0.1167699)" xlink:href="#ks-lg212" id="ks-lg286" y1="11.041109" x1="28.299332" y2="12.047712" gradientUnits="userSpaceOnUse" x2="29.502733" />
1698 <linearGradient xlink:href="#ks-lg323" id="ks-lg329" y1="53" x1="35" y2="53" x2="50" gradientUnits="userSpaceOnUse" />
1699 <linearGradient xlink:href="#ks-lg837" id="ks-lg342" y1="53" x1="12" y2="61" x2="25" gradientUnits="userSpaceOnUse" />
1700 <linearGradient gradientTransform="matrix(0.9367187,0,0,1.1125722,-3.9242179,23.041827)" xlink:href="#ks-lg541" id="ks-lg355" y1="22.432858" x1="12.729774" y2="35.016312" x2="25.540451" gradientUnits="userSpaceOnUse" />
1701 <linearGradient gradientTransform="translate(1.9155963,-0.3963303)" xlink:href="#ks-lg476" id="ks-lg010" y1="52.791176" x1="16.257441" y2="50.941635" gradientUnits="userSpaceOnUse" x2="13.556959" />
1702 <linearGradient xlink:href="#ks-lg541" id="ks-lg562" y1="40" x1="50" y2="40" gradientUnits="userSpaceOnUse" x2="72" />
1703 <linearGradient xlink:href="#ks-lg837" id="ks-lg156" y1="40.500919" x1="34.843121" y2="43.606422" gradientUnits="userSpaceOnUse" x2="37.685322" />
1704 
1705 <g id="img_king_spade" transform="scale(1.8) translate(-39, -58)" >
1706 
1707 <path style="opacity:1;fill:url(#ks-lg562);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1708 d="M37.122936,25.341285L23.779816,28.049541L17.306422,31.616514L12,35C12,35 4,48 6,55L66,55C66,55 66.428324,50.131877 65.46055,47.13945C64.745658,44.928953 63,42 59,37C56.604196,34.005245 52.051376,28.511927 50.00367,27.917431C47.955963,27.322936 37.05688,25.209175 37.122936,25.341285z" />
1709 <path style="opacity:1;fill:url(#ks-lg490);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1710 d="M37.375,25.34375L24.03125,28.0625L18,31.375L18,55L44.84375,55C44.540186,52.83202 44.375,50.512976 44.375,48.09375C44.375001,38.704976 46.838341,30.744034 50.28125,27.90625C50.272584,27.903588 50.258576,27.90874 50.25,27.90625C48.202293,27.311755 37.308944,25.21164 37.375,25.34375z" />
1711 <path style="fill:url(#ks-lg329);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1712 d="M26.036743,50.033333C32.515063,51.982375 38.837128,52.134487 44.963257,50.033333C44.983613,50.033333 45,50.491477 45,51.060563L45,53.972769C45,54.541855 44.983613,55 44.963257,55L26.036743,55C26.016387,55 26,54.541855 26,53.972769L26,51.060563C26,50.491477 26.016387,50.033333 26.036743,50.033333z" />
1713 <path style="fill:#fff;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1714 d="M47.788327,26.414723C47.788327,26.414723 48.942243,26.908996 51.459879,28.391814C53.977515,29.874632 55.131432,30.467759 55.131432,30.467759C55.131432,30.467759 54.181964,30.971279 52.299091,34.224231C50.410865,37.486431 49.131387,41.280897 48.627539,43.714268C46.949114,51.82034 47.224972,55 47.224972,55L42.399503,55C42.399503,55 42.645743,50.041481 43.802069,41.83603C44.770381,34.96476 47.788327,26.414723 47.788327,26.414723z" />
1715 <g>
1716 <path style="opacity:1;fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1717 d="M28.733945,27.256881C28.733945,27.256881 26.420694,30.494643 27.412844,32.409175C29.176385,35.812245 32.697248,38.816514 34.877064,39.344954C35.251386,39.435699 33.952293,41.458715 33.952293,41.458715C31.64365,40.518613 27.368011,36.389562 25.893578,33.730276C24.003466,30.321272 26.289908,27.388991 26.289908,27.388991L28.733945,27.256881z" />
1718 <path style="opacity:1;fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1719 d="M44.589918,27.719266C44.589918,27.719266 44.279533,30.844804 43.136707,32.673395C41.175001,35.812245 37.852303,39.080734 35.672487,39.609174C35.298165,39.699919 36.597258,41.722935 36.597258,41.722935C38.905901,40.782833 43.18154,36.653782 44.655973,33.994496C46.546085,30.585492 46.835789,27.256881 46.835789,27.256881L44.589918,27.719266z" />
1720 </g>
1721 <g>
1722 <g>
1723 <g>
1724 <g>
1725 <g>
1726 <path style="opacity:1;fill:#ffd0d0;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1727 d="M43.531829,27.512359C43.531829,27.512359 43.613861,29.631646 40.682643,31.622661C37.751425,33.613676 36.058554,33.537687 34.16688,33.397564C32.869302,33.301448 29.946516,31.635297 29.169127,30.641793C28.391738,29.648289 27.837951,28.563288 27.837951,28.563288L30.453597,25.013483L42.504253,25.387146L43.531829,27.512359z" />
1728 <path style="opacity:1;fill:#8df;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1729 d="M43.53125,27.5C43.531249,27.499999 43.618718,29.633985 40.6875,31.625C37.756281,33.616014 36.047924,33.546373 34.15625,33.40625C32.85867,33.310134 29.933639,31.649754 29.15625,30.65625C28.378861,29.662747 27.84375,28.5625 27.84375,28.5625L27.385665,29.60797C27.385665,29.60797 27.788717,30.443996 28.625,31.4375C29.461284,32.431004 32.60412,34.091385 34,34.1875C36.034988,34.327623 37.846713,34.397266 41,32.40625C44.153289,30.415235 44.062499,28.312501 44.0625,28.3125L42.96875,26.1875L43.53125,27.5z" />
1730 <g>
1731 <g>
1732 <path style="opacity:1;fill:url(#ks-lg707);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1733 d="M29.06422,11.53578L28.337614,13.055046C28.337614,13.055046 26.091743,15.433028 26.157799,19.726605C25.688,24.245887 24.365532,26.48677 22.722936,28.776147C22.722936,28.776147 24.713057,27.417544 28.93211,27.256881C30.842405,25.787541 30.278627,25.676254 30.278627,25.676254L30.055046,11.469725L29.06422,11.53578z" />
1734 </g>
1735 <path style="fill:url(#ks-lg683);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1736 d="M44.010759,19.069986C44.010759,24.502881 42.632146,28.452088 36.315429,29.105853C30.808849,29.675771 26.999542,23.95513 28.983317,18.801266C29.660019,17.043192 28.577054,16.480584 29.836604,13.556671C30.745432,11.446923 34.898642,11.687726 37.90075,11.667321C43.31347,11.630533 43.979379,13.657232 44.010759,19.069986z" />
1737 <path style="opacity:1;fill:url(#ks-lg691);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1738 d="M46.172477,11.403669C46.965137,12.32844 48.352294,14.376147 48.418349,15.895413C48.484404,17.414679 48.682569,20.056881 49.409174,21.179816C50.13578,22.302752 51.655046,24.350458 51.06055,25.473394C50.840679,28.002062 47.573683,28.802587 45.313762,28.577982C43.199999,28.115597 42.209174,27.124771 42.077064,25.473395C41.944954,23.822019 42.209174,21.840367 42.209174,18.86789C42.209174,15.895413 41.152294,12.19633 41.152294,12.19633L46.172477,11.403669z" />
1739 <path style="opacity:1;fill:url(#ks-lg699);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1740 d="M33.627219,26.739503C33.627219,26.739503 33.311941,26.675279 32.932438,27.340868C32.507731,28.085739 31.998279,29.209186 33.025854,30.143346C34.05343,31.077505 35.267837,31.87154 34.660634,32.198496C34.05343,32.525452 35.127713,33.599735 36.482244,32.385328C37.836776,31.170921 38.298814,29.846967 38.070315,29.11577C37.836776,28.368443 36.155289,28.041487 36.388829,27.294159C36.508675,26.910653 34.668036,27.15137 33.627219,26.739503z" />
1741 </g>
1742 </g>
1743 <g>
1744 <g transform="translate(-0.6539116,-4.6707971e-2)" >
1745 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1746 d="M35.419185,17.942147C35.171479,20.534808 34.447706,21.014679 34.447706,21.014679" />
1747 <path style="opacity:1;fill:url(#ks-lg189);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1748 d="M35.785321,21.262385C35.785321,21.262385 35.009175,21.130275 34.365138,21.014679C33.14338,20.795389 32.535779,21.378193 32.383487,22.055046C32.234862,22.715596 32.79633,23.376147 33.291743,23.607339C33.787156,23.838532 35.306422,24.102752 35.405505,24.086238" />
1749 </g>
1750 <g>
1751 <path style="fill:url(#ks-lg273);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="ks-p204"
1752 d="M33.159634,18.438532A0.95779818,1.2220184 0 1 1 31.244037,18.438532A0.95779818,1.2220184 0 1 1 33.159634,18.438532z" />
1753 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1754 d="M33.281126,17.625608C33.281126,17.625608 33.001883,16.995726 32.177333,17.043179C31.188143,17.100107 30.526798,17.911986 30.526798,17.911986" />
1755 </g>
1756 <g>
1757 <use width="72" height="55" xlink:href="#ks-p204" transform="translate(6.3082569,-0.1321101)" />
1758 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1759 d="M37.497938,17.350292C37.497938,17.350292 37.635136,16.75695 38.61297,16.916871C39.590806,17.076791 40.264539,17.581879 40.264539,17.581879" />
1760 </g>
1761 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1762 d="M37.122936,25.721101C34.314561,25.98118 32.645054,25.495812 32.631193,25.440367" />
1763 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1764 d="M34.169618,16.122935C33.033357,14.743009 30.82182,14.828904 29.782488,15.517601" />
1765 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1766 d="M36.278085,16.169632C37.643858,15.108537 40.649036,15.645143 41.239965,16.334108" />
1767 </g>
1768 </g>
1769 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1770 d="M45.577982,13.451377C45.577982,13.451377 46.436697,14.772478 46.700917,16.093578C46.965138,17.414679 46.965138,20.519267 48.088073,22.434863" />
1771 </g>
1772 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1773 d="M47.163303,28.247706C47.163303,28.247706 46.436698,26.992661 45.445872,24.746789C44.455046,22.500917 44.521101,18.60367 44.521101,18.60367" />
1774 </g>
1775 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1776 d="M29.59266,13.451377C29.59266,13.451377 27.3758,16.290905 27.412843,18.07523C27.597476,26.968785 24.345569,28.179635 23.911926,28.049542" />
1777 </g>
1778 <g>
1779 <g>
1780 <path style="opacity:1;fill:url(#ks-lg927);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1781 d="M37.651376,4.4678899C37.651376,4.4678899 34.282568,3.6091743 31.442201,3.9394495C28.601834,4.2697248 27.330584,6.0344899 27.478899,7.8366972C27.653027,9.9525744 29.130275,10.346789 29.130275,10.346789L32.300917,10.875229C32.300917,10.875229 30.310515,9.0313204 30.253211,7.7706422C30.187156,6.3174312 31.772477,5.5908257 32.895412,5.5908257C35.406373,5.5908258 38.047706,5.8550459 38.047706,5.8550459L37.651376,4.4678899z" />
1782 <path style="fill:url(#ks-lg931);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1783 d="M38.564545,4.4678899C38.564545,4.4678899 41.933353,3.6091743 44.77372,3.9394495C47.614087,4.2697248 48.885337,6.0344899 48.737022,7.8366972C48.562894,9.9525744 47.085646,10.346789 47.085646,10.346789L43.915004,10.875229C43.915004,10.875229 45.905406,9.0313204 45.96271,7.7706422C46.028765,6.3174312 44.443444,5.5908257 43.320509,5.5908257C40.809548,5.5908258 38.168215,5.8550459 38.168215,5.8550459L38.564545,4.4678899z" />
1784 <path style="fill:url(#ks-lg955);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1785 d="M36.885944,4.6660552L39.329981,4.6660552C34.417102,8.6293579 37.132383,9.1577982 36.357504,11.53578L33.913467,11.53578C32.987141,9.0548731 32.274174,7.2362051 36.885944,4.6660552z" />
1786 <path style="fill:url(#ks-lg947);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1787 d="M38.712687,4.7321102L36.26865,4.7321102C41.181529,8.6954129 38.466248,9.2238532 39.241127,11.601835L41.685164,11.601835C42.61149,9.1209281 43.324457,7.3022601 38.712687,4.7321102z" />
1788 <path style="fill:url(#ks-lg963);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1789 d="M28.01015,9.7862585C34.520789,11.147314 41.361702,10.797161 47.872341,9.7862585L47.872341,13.255319C41.361702,14.7058 34.520789,14.52576 28.01015,13.255319L28.01015,9.7862585z" />
1790 <path style="opacity:1;fill:url(#ks-lg939);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.163322;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1791 d="M39.236696,3.5431192A1.5853211,1.6513761 0 1 1 39.235317,3.4742522" transform="matrix(1.2708333,0,0,1.18,-9.8999999,-1.0238571e-2)" />
1792 </g>
1793 </g>
1794 <path style="fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1795 d="M27.997411,10.463128L30.75347,10.879236C30.771981,10.882031 30.729131,11.33824 30.657393,11.902127L30.633359,12.091042C30.56162,12.654929 30.488964,13.106639 30.470452,13.103844L27.911459,12.70425C27.684076,12.423516 27.623945,11.89958 27.62228,11.525471C27.620542,11.134849 27.796993,10.70804 27.997411,10.463128z" />
1796 <path style="fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1797 d="M47.926987,10.411824L45.090963,10.838824C45.072523,10.841692 45.116744,11.29773 45.190112,11.86133L45.214692,12.050148C45.28806,12.613748 45.361971,13.065167 45.380411,13.062299L47.929387,12.635299C48.156894,11.886781 48.152999,10.997675 47.926987,10.411824z" />
1798 <rect width="3.1045871" x="38.502068" y="13.572017" rx="0.036748853" ry="1.0275754" height="2.2458715" style="fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" transform="matrix(0.9983584,-0.0572752,0.0572752,0.9983584,0,0)" />
1799 <rect width="3.1045871" x="34.032433" y="9.4908123" rx="0.036748853" height="2.2458715" ry="1.0275754" style="fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" transform="matrix(0.9986671,0.0516139,-0.0516139,0.9986671,0,0)" />
1800 <path style="fill:url(#ks-lg286);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1801 d="M28.185024,10.924339L30.215317,11.18432C30.228954,11.186067 30.197387,11.471101 30.144541,11.823413L30.126835,11.941445C30.073988,12.293757 30.020465,12.57598 30.006828,12.574235L28.121706,12.324572C27.954201,12.149172 27.909905,11.821822 27.908678,11.588082C27.907397,11.344025 28.037383,11.077359 28.185024,10.924339z" />
1802 <rect width="2.2554522" x="34.589523" y="10.342134" rx="0.036745306" ry="1.0273724" height="1.3067259" style="fill:url(#ks-lg283);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" transform="matrix(0.9991466,0.0413058,-6.4477046e-2,0.9979192,0,0)" />
1803 <rect width="2.2587256" x="38.839367" y="13.643541" rx="0.036742982" height="1.3567177" ry="1.0272301" style="fill:url(#ks-lg280);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" transform="matrix(0.9988702,-4.7521273e-2,0.0690151,0.9976156,0,0)" />
1804 <path style="fill:url(#ks-lg277);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1805 d="M47.706508,11.065735L45.860182,11.289567C45.848177,11.29107 45.876966,11.530123 45.924731,11.825559L45.940733,11.924537C45.988498,12.219973 46.036616,12.456605 46.048621,12.455102L47.708071,12.23127C47.856184,11.838901 47.853648,11.372836 47.706508,11.065735z" />
1806 <rect width="0" x="26" y="56" rx="0.036742982" ry="0" height="0" style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1807 <path style="opacity:1;fill:url(#ks-lg475);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1808 d="M23.03125,28.46875L17.46875,31.53125L12.15625,34.90625C12.15625,34.90625 4.1562502,47.90625 6.1562505,54.90625L25.5625,54.90625C26.17383,53.349448 26.661895,51.716756 27,50L26.004608,38.214891C25.286186,34.561326 24.90073,31.292057 23.03125,28.46875z" />
1809 <g>
1810 <path style="fill:#fff;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1811 d="M24.217395,28.014126C24.217395,28.014126 22.79349,28.283041 20.551507,29.68428C18.309525,31.085519 17.281949,31.646015 17.281949,31.646015C17.281949,31.646015 18.127461,32.121833 19.80418,35.19582C21.485666,38.278546 22.625055,41.864255 23.073737,44.163751C24.568393,51.823858 24.447616,55 24.447616,55L28.744749,55C28.744749,55 28.400592,50.142865 27.370871,42.388847C26.508579,35.895608 24.217395,28.014126 24.217395,28.014126z" />
1812 <path style="opacity:1;fill:url(#ks-rg389);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="ks-p345"
1813 d="M21.930275,30.823854C22.788991,32.47523 23.67583,32.570306 23.779817,33.069725C23.893872,33.617499 24.968807,33.26789 24.308257,31.748624C23.647706,30.229358 24.308257,29.502753 24.308257,29.502753" />
1814 <path style="opacity:1;fill:url(#ks-rg387);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="ks-p363"
1815 d="M17.945368,32.346795C19.306143,33.616727 20.173839,33.410266 20.438596,33.846313C20.728988,34.324578 21.625524,33.63615 20.495651,32.424588C19.365777,31.213026 19.745842,30.30758 19.745842,30.30758" />
1816 <use width="72" height="55" id="ks-u367" xlink:href="#ks-p363" transform="matrix(-0.8144214,0.5802738,0.5802738,0.8144214,19.580415,-2.3354857)" />
1817 <use width="72" height="55" xlink:href="#ks-u367" transform="translate(2.5100917,2.3449541)" />
1818 <use width="72" height="55" xlink:href="#ks-p363" transform="translate(4.8220184,10.238532)" />
1819 <use width="72" height="55" xlink:href="#ks-u367" transform="translate(3.9963303,11.229358)" />
1820 <use width="72" height="55" xlink:href="#ks-p345" transform="translate(2.212844,19.552294)" />
1821 </g>
1822 <path style="opacity:1;fill:url(#ks-lg355);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1823 d="M12 41.96875C7.8634502 41.96875 4.5 46.441491 4.5 51.96875C4.5 53.029479 4.6459354 54.040321 4.875 55L19.125 55C19.354065 54.040321 19.5 53.029479 19.5 51.96875C19.5 46.441491 16.13655 41.968749 12 41.96875z" />
1824 <path style="opacity:1;fill:url(#ks-lg342);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1825 d="M12 41C7.86 41 4.5 45.726049 4.5 51.53125C4.5 52.748926 4.6656462 53.913113 4.9375 55L5.875 55C5.6346984 54.061455 5.5 53.051846 5.5 52C5.5 47.032 8.41936 43 12 43C15.58064 43 18.5 47.032 18.5 52C18.5 53.051846 18.365302 54.061455 18.125 55L19.0625 55C19.334354 53.913113 19.5 52.748926 19.5 51.53125C19.5 45.72605 16.14 40.999999 12 41z" />
1826 <use width="72" height="55" xlink:href="#ks-u367" transform="translate(28.205505,-2.5100917)" />
1827 <path style="opacity:1;fill:url(#ks-lg208);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1828 d="M59.062369,46.568545L59.876985,45.901937C59.596384,47.723551 59.335906,48.868572 59.216013,50.277695C59.074728,51.938246 59.541588,54.933945 59.541588,54.933945L58.653513,54.933945C58.642388,54.828239 58.295817,51.686193 58.434763,49.902695C58.550512,48.416953 58.510493,47.407669 59.062369,46.568545z" />
1829 <g>
1830 <rect width="4.1223855" x="51.997246" y="44.059875" rx="0.036748853" ry="1.0275754" height="10.823352" style="opacity:1;fill:#8df;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1831 <g transform="matrix(0.9227043,-0.3855085,0.3855085,0.9227043,-49.780102,-33.04193)" >
1832 <path style="fill:url(#ks-rg337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1833 d="M69.75545,116.81805C69.27908,116.3588 67.552409,113.53405 67.151854,113.13806L66.99159,113.97388C66.764509,114.32238 65.759279,114.08661 65.139946,113.78484C64.399441,113.42403 63.540696,112.83934 63.538339,112.59068C63.536504,112.39713 64.16569,112.43137 64.234119,112.33472C63.856118,112.01068 63.383323,111.78026 62.861776,111.74541C62.154268,111.69814 61.134453,111.63118 61.050614,112.89803C60.111615,112.55846 59.295427,113.6877 59.505994,114.88691C58.858925,115.12429 58.648374,115.49602 58.597629,115.72666C58.426127,116.04773 58.573855,116.63251 58.870048,117.16083C58.547523,117.82173 58.26261,118.73362 58.752644,119.34798C59.889747,120.77357 61.898771,121.43982 63.366318,121.73333C64.833865,122.02684 68.085572,122.61487 68.085572,122.61487C68.085572,122.61487 69.759342,120.1011 69.935354,119.28928C70.191306,118.10874 69.75545,116.81805 69.75545,116.81805z" />
1834 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1835 d="M61.012577,112.79841C61.123063,113.74859 61.661835,114.22842 62.294208,114.74296" />
1836 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1837 d="M58.885032,117.18811C59.01856,117.40309 59.240277,117.62369 59.956741,118.16039" />
1838 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1839 d="M59.487878,114.89002C59.58826,115.31491 59.854171,115.70124 60.570635,116.23794" />
1840 <path style="fill:url(#ks-rg339);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1841 d="M61.050164,112.89824C60.111165,112.55868 59.308347,113.69904 59.518914,114.89824C58.871845,115.13562 58.663409,115.51135 58.612664,115.74199C58.441161,116.06306 58.566471,116.61992 58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 69.749152,120.11632 69.925164,119.30449C70.009702,118.91458 70.013433,118.51171 69.987664,118.14824C68.596002,118.78107 64.882316,116.34675 62.812402,115.18853C61.788165,114.48593 61.185403,113.88941 61.050164,112.89824z" />
1842 <path style="fill:url(#ks-rg341);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1843 d="M59.518914,114.89824C58.871845,115.13562 58.663409,115.51135 58.612664,115.74199C58.441161,116.06306 58.566471,116.61992 58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 68.935236,121.36009 69.487664,120.33574C65.419997,119.9999 59.574444,115.9911 59.518914,114.89824z" />
1844 <path style="fill:url(#ks-rg343);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
1845 d="M58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 68.683544,121.70221 69.206414,120.80449C67.845841,121.38981 66.332104,120.32139 64.295453,119.71794C62.150727,119.05218 59.665492,118.29843 58.862664,117.14824z" />
1846 </g>
1847 <g>
1848 <g>
1849 <path style="opacity:1;fill:url(#ks-lg258);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1850 d="M54,22L57,25C57,25 57.046708,44.093416 57,44L51,44L51,25L54,22z" />
1851 <path style="opacity:1;fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1852 d="M54.099083,23.888073L54.099083,43.638532" />
1853 </g>
1854 <rect width="9.6218424" x="49.199459" y="42.949341" rx="1.0275754" height="3.269558" ry="1.0275754" style="opacity:1;fill:url(#ks-lg260);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1855 </g>
1856 </g>
1857 <rect width="0" x="52" y="41.734936" rx="0.036748853" height="1.2650638" ry="1.0275754" style="opacity:1;fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1858 <use width="72" height="55" xlink:href="#ks-p363" transform="matrix(0.5208177,0.8536679,-0.8536679,0.5208177,65.393429,-2.9550029)" />
1859 <use width="72" height="55" xlink:href="#ks-p345" transform="matrix(0.9792626,0.2025948,-0.2025948,0.9792626,32.4741,1.164229)" />
1860 <use width="72" height="55" xlink:href="#ks-p363" transform="matrix(-0.8144214,0.5802738,0.5802738,0.8144214,45.077663,4.5342391)" />
1861 <path style="opacity:1;fill:url(#ks-rg451);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1862 d="M45.078751,35.882575C44.703092,37.705571 45.331157,38.338862 45.096739,38.791942C44.839626,39.28889 45.894185,39.695848 46.34024,38.100376C46.786294,36.504904 47.757211,36.357927 47.757211,36.357927" />
1863 <path style="opacity:1;fill:url(#ks-rg455);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1864 d="M44.726925,41.569997C43.94102,43.25724 44.406127,44.018291 44.07355,44.405105C43.708773,44.829373 44.641071,45.468537 45.443008,44.018919C46.244945,42.5693 47.223588,42.650171 47.223588,42.650171" />
1865 <use width="72" height="55" xlink:href="#ks-u367" transform="matrix(0.9637321,-0.2668715,0.2668715,0.9637321,15.485838,22.266688)" />
1866 <use width="72" height="55" xlink:href="#ks-p363" transform="matrix(0.6313892,0.7754661,-0.7754661,0.6313892,56.825775,12.58517)" />
1867 <use width="72" height="55" xlink:href="#ks-u367" transform="translate(22.392661,17.570642)" />
1868 <path style="opacity:1;fill:url(#ks-lg597);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1869 d="M59.066055,46.537615L60.546789,45.462385C60.546789,45.462385 63.93155,44.035715 65,46C67.453211,50.510091 66,55 66,55L60,55C60,55 60.348624,51.990826 60.207339,50.330275C60.087447,48.921153 59.647707,47.271559 59.066055,46.537615z" />
1870 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
1871 d="M59.90625 45.90625L59.0625 46.53125C59.644152 47.265194 60.098857 48.934627 60.21875 50.34375C60.360035 52.004301 60 55 60 55L60.78125 55C60.792375 54.894294 61.138946 51.752248 61 49.96875C60.884251 48.483008 60.458126 46.745374 59.90625 45.90625z" />
1872 <g transform="translate(1.0229643,0.4106801)" >
1873 <g>
1874 <g>
1875 <path style="fill:url(#ks-lg715);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1876 d="M17.966973,45.289909A7.6293578,6.1431193 0 1 1 2.7082572,45.289909A7.6293578,6.1431193 0 1 1 17.966973,45.289909z" transform="translate(0,1.1209913)" />
1877 <path style="fill:url(#ks-lg717);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1878 d="M17.5625,44.495991C17.43715,44.559283 17.318853,44.623108 17.1875,44.683491C17.102324,44.723148 17.025294,44.770236 16.9375,44.808491C16.810732,44.863044 16.694472,44.913215 16.5625,44.964741C16.138631,45.133393 15.692587,45.267304 15.21875,45.402241C15.195556,45.408707 15.179553,45.427111 15.15625,45.433491C15.065085,45.459026 14.967827,45.471783 14.875,45.495991C14.45268,45.606129 14.016264,45.696114 13.5625,45.777241C13.131174,45.854357 12.674227,45.916068 12.21875,45.964741C12.102162,45.976768 11.992979,45.985905 11.875,45.995991C11.864516,45.996927 11.854245,45.99507 11.84375,45.995991C11.291318,46.044448 10.735129,46.08634 10.15625,46.089741C10.134906,46.089804 10.115124,46.089741 10.09375,46.089741C10.008699,46.089741 9.9283138,46.090738 9.84375,46.089741C9.2677157,46.082953 8.7056102,46.046991 8.15625,45.995991C7.6758791,45.951396 7.2048497,45.884358 6.75,45.808491C6.3935129,45.748188 6.0570573,45.667979 5.71875,45.589741C5.3514111,45.505823 4.999198,45.412139 4.65625,45.308491C4.6370262,45.302681 4.6128922,45.314361 4.59375,45.308491C4.2179742,45.193268 3.8735432,45.039403 3.53125,44.902241C3.403142,44.851315 3.2481852,44.830854 3.125,44.777241C3.1280539,44.768363 3.1218981,44.754853 3.125,44.745991C3.089586,44.730269 3.0662602,44.699423 3.03125,44.683491C2.830375,45.233542 2.71875,45.800061 2.71875,46.402241C2.71875,46.773132 2.7654068,47.143151 2.84375,47.495991C2.8861588,47.51683 2.9256381,47.538022 2.96875,47.558491C3.1357255,47.636738 3.3231949,47.704349 3.5,47.777241C3.5218811,47.786333 3.5404689,47.799485 3.5625,47.808491C3.9569073,47.968551 4.3743555,48.114804 4.8125,48.245991C5.1821773,48.356678 5.571758,48.470522 5.96875,48.558491C6.0641567,48.579632 6.153141,48.601233 6.25,48.620991C6.5348584,48.679155 6.8283859,48.70019 7.125,48.745991C7.7740853,48.846219 8.4608625,48.928604 9.15625,48.964741C9.5193906,48.983612 9.8770799,48.995991 10.25,48.995991C10.492576,48.995286 10.730459,48.973427 10.96875,48.964741C11.661938,48.941071 12.350229,48.895881 13,48.808491C13.179894,48.783768 13.355421,48.744038 13.53125,48.714741C13.881426,48.656393 14.230036,48.602946 14.5625,48.527241C14.894964,48.451536 15.218613,48.369258 15.53125,48.277241C15.843887,48.185224 16.146805,48.072024 16.4375,47.964741C16.728194,47.857458 17.014613,47.742495 17.28125,47.620991C17.494559,47.523788 17.681168,47.411752 17.875,47.308491C17.92933,47.012875 17.96875,46.709958 17.96875,46.402241C17.96875,45.728192 17.811986,45.102956 17.5625,44.495991z" />
1879 </g>
1880 <g transform="translate(0.1524104,0)" >
1881 <g transform="translate(-7.0101261e-2,0)" >
1882 <rect width="4.6707969" x="7.8469391" y="29.404032" rx="2.1485667" height="12.8914" ry="1.2144059" style="fill:url(#ks-lg719);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
1883 <path style="opacity:1;fill:url(#ks-lg721);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.15826012;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1884 d="M12.220183,30.85688A2.0477064,0.82568806 0 1 1 8.1247704,30.85688A2.0477064,0.82568806 0 1 1 12.220183,30.85688z" transform="matrix(1.140746,0,0,1.4,-1.4192109,-12.813385)" />
1885 </g>
1886 <g>
1887 <path style="fill:url(#ks-lg723);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1888 d="M9.3413813,35.255284L9.3413813,35.628947C9.3413813,36.819253 8.5914386,37.777514 7.6598955,37.777514L5.8849896,37.777514C4.9534465,37.777514 4.8825039,36.819253 4.8825039,35.628947L4.8825039,35.255284C4.8825039,34.064978 4.9534465,33.106717 5.8849896,33.106717L7.6598955,33.106717C8.5914386,33.106717 9.3413813,34.064978 9.3413813,35.255284z" />
1889 <path style="fill:url(#ks-lg725);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.15826012;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1890 d="M12.220183,30.85688A2.0477064,0.82568806 0 1 1 8.1247704,30.85688A2.0477064,0.82568806 0 1 1 12.220183,30.85688z" transform="matrix(0,1.140746,-1.4,0,48.890419,23.837903)" />
1891 </g>
1892 <path style="fill:url(#ks-lg727);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
1893 d="M14.678669,33.099565C15.104061,33.116227 15.374952,33.51318 15.531877,33.865954C15.91491,34.779393 15.926506,35.831931 15.629571,36.771128C15.496971,37.168254 15.271712,37.594418 14.864221,37.759765C14.446202,37.803629 14.022924,37.779685 13.602156,37.787581C13.228496,37.781998 12.852527,37.802261 12.480472,37.767206C11.793438,37.643388 11.304148,37.022683 11.126136,36.377564C10.986697,35.879172 11.007665,35.35164 11.053036,34.8415C11.156435,34.134762 11.579318,33.414308 12.281472,33.169926C12.698565,33.043982 13.139236,33.121743 13.567222,33.099564C13.939232,33.103409 14.318896,33.099565 14.678669,33.099565z" />
1894 </g>
1895 </g>
1896 <g transform="translate(-1.453211,0.658606)" >
1897 <path style="opacity:1;fill:url(#ks-lg010);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="ks-p475"
1898 d="M16.249541,51.763303C17.296748,50.02135 16.79966,48.526098 16.579816,48.196331C16.447706,47.998166 15.19266,47.8 14.598165,48.658716C14.003669,49.517431 13.739449,50.772477 13.078899,51.036698C12.418348,51.300918 12.400023,52.333592 13.211008,52.820183C14.53211,53.612845 15.939678,52.278737 16.249541,51.763303z" />
1899 <use width="72" height="55" xlink:href="#ks-p475" id="ks-u485" transform="translate(-2.0477064,0.5284404)" />
1900 <use width="72" height="55" xlink:href="#ks-u485" id="ks-u487" transform="translate(-1.9155963,0.0660551)" />
1901 <use width="72" height="55" xlink:href="#ks-u487" transform="matrix(1,0,0,0.8865723,-1.7834862,5.0410395)" />
1902 </g>
1903 </g>
1904 <g transform="translate(0.2831963,-1.405628)" >
1905 <g transform="translate(-0.2754517,0.167124)" >
1906 <path style="fill:url(#ks-lg156);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="ks-p418"
1907 d="M37.585322,41.161469A2.2788992,2.344954 0 1 1 33.027524,41.161469A2.2788992,2.344954 0 1 1 37.585322,41.161469z" transform="translate(-0.3141678,1.4321095)" />
1908 <path style="fill:url(#ks-lg648);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
1909 d="M37.585322,41.161469A2.2788992,2.344954 0 1 1 33.027524,41.161469A2.2788992,2.344954 0 1 1 37.585322,41.161469z" transform="translate(-0.3141678,7.4219895)" />
1910 </g>
1911 <g transform="translate(-0.11519,-0.23038)" >
1912 <use width="72" height="55" xlink:href="#ks-p418" transform="translate(2.7896067,3.450039)" />
1913 <use width="72" height="55" xlink:href="#ks-p418" transform="translate(-3.11013,3.450039)" />
1914 </g>
1915 </g>
1916 </g>
1917 <!-- }}} -->
1918 
1919 <!-- * King of Club {{{ -->
1920 <linearGradient xlink:href="#kc-lg837" id="kc-lg648" y1="40.500919" x1="34.843121" y2="43.606422" gradientUnits="userSpaceOnUse" x2="37.685322" />
1921 <linearGradient id="kc-lg524" >
1922 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
1923 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1924 </linearGradient>
1925 <linearGradient id="kc-lg518" >
1926 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
1927 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1928 </linearGradient>
1929 <linearGradient id="kc-lg223" >
1930 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1931 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1932 </linearGradient>
1933 <linearGradient id="kc-lg209" >
1934 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1935 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1936 </linearGradient>
1937 <linearGradient id="kc-lg195" >
1938 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
1939 <stop offset="1" style="stop-color:#ffee80;stop-opacity:1" />
1940 </linearGradient>
1941 <linearGradient id="kc-lg539" >
1942 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
1943 <stop offset="1" style="stop-color:#f90;stop-opacity:0" />
1944 </linearGradient>
1945 <linearGradient id="kc-lg519" >
1946 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
1947 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1948 </linearGradient>
1949 <linearGradient id="kc-lg323" >
1950 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
1951 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1952 </linearGradient>
1953 <linearGradient id="kc-lg212" >
1954 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
1955 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
1956 </linearGradient>
1957 <linearGradient id="kc-lg183" >
1958 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1959 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1960 </linearGradient>
1961 <linearGradient id="kc-lg541" >
1962 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1963 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1964 </linearGradient>
1965 <linearGradient id="kc-lg355" >
1966 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1967 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
1968 </linearGradient>
1969 <linearGradient id="kc-lg149" >
1970 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1971 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1972 </linearGradient>
1973 <linearGradient id="kc-lg141" >
1974 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
1975 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1976 </linearGradient>
1977 <linearGradient id="kc-lg133" >
1978 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
1979 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1980 </linearGradient>
1981 <linearGradient id="kc-lg837" >
1982 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
1983 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
1984 </linearGradient>
1985 <linearGradient id="kc-lg284" >
1986 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1987 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1988 </linearGradient>
1989 <linearGradient id="kc-lg268" >
1990 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1991 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:0" />
1992 </linearGradient>
1993 <linearGradient id="kc-lg490" >
1994 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1995 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
1996 </linearGradient>
1997 <linearGradient id="kc-lg476" >
1998 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
1999 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:1" />
2000 </linearGradient>
2001 <linearGradient xlink:href="#kc-lg141" id="kc-lg258" y1="33.000172" x1="53.515648" y2="33.000172" gradientUnits="userSpaceOnUse" x2="59.175911" />
2002 <linearGradient xlink:href="#kc-lg133" id="kc-lg260" y1="43.39513" x1="49.551662" y2="53.567608" gradientUnits="userSpaceOnUse" x2="60.143322" />
2003 <radialGradient fx="47.758091" fy="44.704964" cx="47.758091" cy="44.704964" gradientTransform="matrix(0.1089548,-0.2010813,0.4593557,0.2488996,39.362544,111.68101)" xlink:href="#kc-lg476" id="kc-rg337" r="5.8258683" gradientUnits="userSpaceOnUse" />
2004 <radialGradient fx="32.537888" fy="38.871136" cx="32.537888" cy="38.871136" gradientTransform="matrix(0.1418416,-9.1607927e-2,0.131729,0.2039635,51.921771,108.83492)" xlink:href="#kc-lg490" id="kc-rg339" r="5.8249979" gradientUnits="userSpaceOnUse" />
2005 <radialGradient fx="38.028793" fy="45.984734" cx="38.028793" cy="45.984734" gradientTransform="matrix(0.0916311,-6.7458121e-2,0.1194303,0.1622272,50.968336,110.78822)" xlink:href="#kc-lg268" id="kc-rg341" r="5.5679789" gradientUnits="userSpaceOnUse" />
2006 <radialGradient fx="35.506214" fy="45.83128" cx="35.506214" cy="45.83128" gradientTransform="matrix(-5.9173548e-2,0.0594561,-0.133011,-0.1323791,67.486655,121.47427)" xlink:href="#kc-lg284" id="kc-rg343" r="5.3648539" gradientUnits="userSpaceOnUse" />
2007 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(-1.445883,-1.5988898,1.0478678,-0.9475914,24.665755,103.72082)" xlink:href="#kc-lg355" id="kc-rg387" r="1.3942146" gradientUnits="userSpaceOnUse" />
2008 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(-0.829114,-1.9898734,1.3041076,-0.5433782,4.4360368,100.34626)" xlink:href="#kc-lg355" id="kc-rg389" r="1.3942146" gradientUnits="userSpaceOnUse" />
2009 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(0.6121915,-2.0669416,1.3546159,0.4012132,-12.357343,78.783738)" xlink:href="#kc-lg355" id="kc-rg451" r="1.3942146" gradientUnits="userSpaceOnUse" />
2010 <radialGradient fx="25.392134" fy="31.204481" cx="25.392134" cy="31.204481" gradientTransform="matrix(1.0723142,-1.8700717,1.2255928,0.7027649,-21.053974,70.070664)" xlink:href="#kc-lg355" id="kc-rg455" r="1.3942146" gradientUnits="userSpaceOnUse" />
2011 <linearGradient xlink:href="#kc-lg519" id="kc-lg547" y1="40" x1="50" y2="40" x2="72" gradientUnits="userSpaceOnUse" />
2012 <linearGradient xlink:href="#kc-lg519" id="kc-lg597" y1="49.980412" x1="61.079819" y2="52.42445" x2="69.65905" gradientUnits="userSpaceOnUse" />
2013 <linearGradient xlink:href="#kc-lg209" id="kc-lg208" y1="50.38707" x1="58.301949" y2="50.38707" x2="60.472263" gradientUnits="userSpaceOnUse" />
2014 <linearGradient gradientTransform="matrix(0.9367187,0,0,1.1125722,-3.9242179,23.041827)" xlink:href="#kc-lg323" id="kc-lg355" y1="22.432858" x1="12.729774" y2="35.016312" x2="25.540451" gradientUnits="userSpaceOnUse" />
2015 <linearGradient xlink:href="#kc-lg195" id="kc-lg151" y1="23.45253" x1="22.906588" y2="24.113079" gradientUnits="userSpaceOnUse" x2="27.472206" />
2016 <linearGradient xlink:href="#kc-lg476" id="kc-lg153" y1="30.644566" x1="49.819027" y2="25.888603" gradientUnits="userSpaceOnUse" x2="37.835533" />
2017 <linearGradient xlink:href="#kc-lg183" id="kc-lg155" y1="25.301659" x1="33.101379" y2="23.220924" gradientUnits="userSpaceOnUse" x2="34.333027" />
2018 <linearGradient xlink:href="#kc-lg195" id="kc-lg159" y1="29.843752" x1="33.161263" y2="28.060266" gradientUnits="userSpaceOnUse" x2="35.782104" />
2019 <radialGradient fx="33.148659" fy="30.229698" cx="33.148659" cy="30.229698" gradientTransform="matrix(0.671184,-3.5990143e-2,0.0702467,1.3100326,9.736531,-8.8084382)" xlink:href="#kc-lg539" id="kc-rg161" r="0.51608163" gradientUnits="userSpaceOnUse" />
2020 <linearGradient xlink:href="#kc-lg195" id="kc-lg163" y1="23.773981" x1="43.364223" y2="22.188961" gradientUnits="userSpaceOnUse" x2="48.122421" />
2021 <linearGradient xlink:href="#kc-lg837" id="kc-lg165" y1="7.3695345" x1="28.886564" y2="10.975229" gradientUnits="userSpaceOnUse" x2="38.147705" />
2022 <linearGradient gradientTransform="matrix(-1,0,0,1,76.215921,0)" xlink:href="#kc-lg837" id="kc-lg167" y1="6.1144886" x1="32.387482" y2="11.305505" gradientUnits="userSpaceOnUse" x2="25.333025" />
2023 <linearGradient xlink:href="#kc-lg149" id="kc-lg169" y1="8.1009178" x1="33.724613" y2="11.13945" gradientUnits="userSpaceOnUse" x2="40.222641" />
2024 <linearGradient xlink:href="#kc-lg837" id="kc-lg171" y1="6.8458714" x1="39.318581" y2="10.082568" gradientUnits="userSpaceOnUse" x2="43.987778" />
2025 <linearGradient xlink:href="#kc-lg149" id="kc-lg173" y1="12.031519" x1="31.411068" y2="22.798491" gradientUnits="userSpaceOnUse" x2="51.935642" />
2026 <linearGradient xlink:href="#kc-lg149" id="kc-lg175" y1="3.5431192" x1="37.339508" y2="5.2792411" gradientUnits="userSpaceOnUse" x2="39.994064" />
2027 <linearGradient gradientTransform="translate(-9.3415942e-2,-0.1167699)" xlink:href="#kc-lg212" id="kc-lg177" y1="11.041109" x1="28.299332" y2="12.047712" gradientUnits="userSpaceOnUse" x2="29.502733" />
2028 <linearGradient xlink:href="#kc-lg212" id="kc-lg179" y1="10.346184" x1="34.528389" y2="11.462177" gradientUnits="userSpaceOnUse" x2="35.747364" />
2029 <linearGradient gradientTransform="translate(0.053056,-9.1111895e-2)" xlink:href="#kc-lg212" id="kc-lg181" y1="13.827466" x1="38.68" y2="14.937149" gradientUnits="userSpaceOnUse" x2="40.353661" />
2030 <linearGradient xlink:href="#kc-lg212" id="kc-lg183" y1="11.293342" x1="45.617332" y2="12.157439" gradientUnits="userSpaceOnUse" x2="47.217396" />
2031 <linearGradient xlink:href="#kc-lg323" id="kc-lg221" y1="52.516666" x1="25.9" y2="52.516666" x2="45.099998" gradientUnits="userSpaceOnUse" />
2032 <linearGradient xlink:href="#kc-lg223" id="kc-lg229" y1="18.438532" x1="31.144037" y2="18.438532" x2="33.259634" gradientUnits="userSpaceOnUse" />
2033 <linearGradient gradientTransform="translate(1.9155963,-0.3963303)" xlink:href="#kc-lg476" id="kc-lg278" y1="52.791176" x1="16.257441" y2="50.941635" gradientUnits="userSpaceOnUse" x2="13.556959" />
2034 <linearGradient gradientTransform="translate(0,1.1209913)" xlink:href="#kc-lg149" id="kc-lg303" y1="45.625" x1="4.4870691" y2="54.966595" gradientUnits="userSpaceOnUse" x2="18.06875" />
2035 <linearGradient xlink:href="#kc-lg149" id="kc-lg310" y1="43.421589" x1="7.4658861" y2="54.522339" gradientUnits="userSpaceOnUse" x2="21.056282" />
2036 <linearGradient gradientTransform="translate(0,1.1209913)" xlink:href="#kc-lg149" id="kc-lg385" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
2037 <linearGradient xlink:href="#kc-lg541" id="kc-lg387" y1="31.233809" x1="10.172477" y2="29.959764" gradientUnits="userSpaceOnUse" x2="12.830858" />
2038 <linearGradient gradientTransform="matrix(0,1,-0.3985507,0,20.613608,25.259781)" xlink:href="#kc-lg149" id="kc-lg389" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
2039 <linearGradient xlink:href="#kc-lg541" id="kc-lg391" y1="31.233809" x1="10.172477" y2="29.959764" gradientUnits="userSpaceOnUse" x2="12.830858" />
2040 <linearGradient gradientTransform="matrix(0,1,0.3985507,0,-0.2474389,25.265595)" xlink:href="#kc-lg149" id="kc-lg393" y1="34.728741" x1="9.2415943" y2="34.728741" gradientUnits="userSpaceOnUse" x2="15.233382" />
2041 <linearGradient xlink:href="#kc-lg519" id="kc-lg475" y1="45.467331" x1="19.056242" y2="43.62429" x2="34.31591" gradientUnits="userSpaceOnUse" />
2042 <linearGradient xlink:href="#kc-lg518" id="kc-lg490" y1="41.090412" x1="41.015179" y2="42.879749" gradientUnits="userSpaceOnUse" x2="50.131248" />
2043 <linearGradient xlink:href="#kc-lg524" id="kc-lg530" y1="17.976147" x1="31.755047" y2="19.511927" gradientUnits="userSpaceOnUse" x2="33.441284" />
2044 <linearGradient xlink:href="#kc-lg541" id="kc-lg562" y1="48.330276" x1="13.581652" y2="53.482571" x2="23.365137" gradientUnits="userSpaceOnUse" />
2045 <linearGradient xlink:href="#kc-lg149" id="kc-lg570" y1="30.878698" x1="36.797592" y2="36.691544" x2="52.683868" gradientUnits="userSpaceOnUse" />
2046 <linearGradient gradientTransform="matrix(0.977107,-0.2127482,0.2127482,0.977107,-4.516617,8.2357373)" xlink:href="#kc-lg195" id="kc-lg580" y1="25.324013" x1="31.341475" y2="25.324013" x2="37.547962" gradientUnits="userSpaceOnUse" />
2047 <linearGradient gradientTransform="matrix(-0.9971339,-7.5656291e-2,-7.5656291e-2,0.9971339,76.997439,2.5433303)" xlink:href="#kc-lg195" id="kc-lg584" y1="25.324013" x1="31.341475" y2="25.324013" gradientUnits="userSpaceOnUse" x2="37.547962" />
2048 <linearGradient xlink:href="#kc-lg837" id="kc-lg172" y1="40.500919" x1="34.843121" y2="43.606422" gradientUnits="userSpaceOnUse" x2="37.685322" />
2049 
2050 <g id="img_king_club" transform="scale(1.8) translate(-39, -58)" >
2051 <path style="opacity:1;fill:url(#kc-lg547);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2052 d="M37.122936,25.341285L23.779816,28.049541L17.306422,31.616514L12,35C12,35 4,48 6,55L66,55C66,55 66.428324,50.131877 65.46055,47.13945C64.745658,44.928953 63,42 59,37C56.604196,34.005245 52.051376,28.511927 50.00367,27.917431C47.955963,27.322936 37.05688,25.209175 37.122936,25.341285z" />
2053 <path style="opacity:1;fill:url(#kc-lg490);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2054 d="M37.125 25.34375L23.78125 28.0625L17.75 31.375L17.75 55L44.59375 55C44.290186 52.83202 44.125 50.512976 44.125 48.09375C44.125001 38.704976 46.588341 30.744034 50.03125 27.90625C50.022584 27.903588 50.008576 27.90874 50 27.90625C47.952293 27.311755 37.058944 25.21164 37.125 25.34375z" />
2055 <path style="fill:url(#kc-lg221);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2056 d="M26.036743,50.033333C32.515063,51.982375 38.837128,52.134487 44.963257,50.033333C44.983613,50.033333 45,50.491477 45,51.060563L45,53.972769C45,54.541855 44.983613,55 44.963257,55L26.036743,55C26.016387,55 26,54.541855 26,53.972769L26,51.060563C26,50.491477 26.016387,50.033333 26.036743,50.033333z" />
2057 <path style="fill:#fff;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2058 d="M47.788327,26.414723C47.788327,26.414723 48.942243,26.908996 51.459879,28.391814C53.977515,29.874632 55.131432,30.467759 55.131432,30.467759C55.131432,30.467759 54.181964,30.971279 52.299091,34.224231C50.410865,37.486431 49.131387,41.280897 48.627539,43.714268C46.949114,51.82034 47.224972,55 47.224972,55L42.399503,55C42.399503,55 42.645743,50.041481 43.802069,41.83603C44.770381,34.96476 47.788327,26.414723 47.788327,26.414723z" />
2059 <g>
2060 <path style="opacity:1;fill:#f00;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2061 d="M28.733945,27.256881C28.733945,27.256881 26.420694,30.494643 27.412844,32.409175C29.176385,35.812245 32.697248,38.816514 34.877064,39.344954C35.251386,39.435699 33.952293,41.458715 33.952293,41.458715C31.64365,40.518613 27.368011,36.389562 25.893578,33.730276C24.003466,30.321272 26.289908,27.388991 26.289908,27.388991L28.733945,27.256881z" />
2062 <path style="opacity:1;fill:#f00;fill-opacity:0.99607842999999996;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2063 d="M44.655973,26.662385C44.788083,28.313761 44.279533,30.844804 43.136707,32.673395C41.175001,35.812245 37.852303,39.080734 35.672487,39.609174C35.298165,39.699919 36.597258,41.722935 36.597258,41.722935C38.905901,40.782833 43.18154,36.653782 44.655973,33.994496C46.546085,30.585492 46.835789,27.256881 46.835789,27.256881L44.655973,26.662385z" />
2064 </g>
2065 <path style="fill:url(#kc-lg570);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2066 d="M43.53125,27.5C43.531249,27.499999 43.618718,29.633985 40.6875,31.625C37.756281,33.616014 36.047924,33.546373 34.15625,33.40625C32.85867,33.310134 29.933639,31.649754 29.15625,30.65625C28.378861,29.662747 27.84375,28.5625 27.84375,28.5625L27.385665,29.60797C27.385665,29.60797 27.788717,30.443996 28.625,31.4375C29.461284,32.431004 32.60412,34.091385 34,34.1875C36.034988,34.327623 37.846713,34.397266 41,32.40625C44.153289,30.415235 44.062499,28.312501 44.0625,28.3125L42.96875,26.1875L43.53125,27.5z" />
2067 <path style="fill:#ffd0d0;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2068 d="M43.531829,27.512359C43.531829,27.512359 43.613861,29.631646 40.682643,31.622661C37.751425,33.613676 36.058554,33.537687 34.16688,33.397564C32.869302,33.301448 29.946516,31.635297 29.169127,30.641793C28.391738,29.648289 27.837951,28.563288 27.837951,28.563288L30.453597,25.013483L42.504253,25.387146L43.531829,27.512359z" />
2069 <g transform="matrix(-1,0,0,1,72.399171,-0.6605505)" >
2070 <g>
2071 <g>
2072 <g>
2073 <path style="opacity:1;fill:url(#kc-lg151);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2074 d="M29.06422,11.53578L28.337614,13.055046C28.337614,13.055046 25.365137,16.622019 25.431193,20.915596C24.961394,25.434878 22.912321,26.684935 21.269725,28.974312C21.269725,28.974312 25.241497,27.483599 29.46055,27.322936C31.370845,25.853596 30.278627,25.676254 30.278627,25.676254L30.055046,11.469725L29.06422,11.53578z" />
2075 </g>
2076 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2077 d="M29.59266,13.451377C29.59266,13.451377 27.3758,16.290905 27.412843,18.07523C27.597476,26.968785 24.345569,28.179635 23.911926,28.049542" />
2078 </g>
2079 <g>
2080 <path style="fill:url(#kc-lg153);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2081 d="M44.010759,19.069986C44.010759,24.502881 42.632146,28.452088 36.315429,29.105853C30.808849,29.675771 26.999542,23.95513 28.983317,18.801266C29.660019,17.043192 28.577054,16.480584 29.836604,13.556671C30.745432,11.446923 34.898642,11.687726 37.90075,11.667321C43.31347,11.630533 43.979379,13.657232 44.010759,19.069986z" />
2082 <g>
2083 <g transform="translate(-0.6539116,-4.6707971e-2)" >
2084 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2085 d="M35.419185,17.942147C35.171479,20.534808 34.447706,21.014679 34.447706,21.014679" />
2086 <path style="opacity:1;fill:url(#kc-lg155);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2087 d="M35.785321,21.262385C35.785321,21.262385 35.009175,21.130275 34.365138,21.014679C33.14338,20.795389 32.535779,21.378193 32.383487,22.055046C32.234862,22.715596 32.79633,23.376147 33.291743,23.607339C33.787156,23.838532 35.306422,24.102752 35.405505,24.086238" />
2088 </g>
2089 <g>
2090 <path style="fill:url(#kc-lg530);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible" id="kc-p204"
2091 d="M33.159634,18.438532A0.95779818,1.2220184 0 1 1 31.244037,18.438532A0.95779818,1.2220184 0 1 1 33.159634,18.438532z" />
2092 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2093 d="M33.281126,17.625608C33.281126,17.625608 33.001883,16.995726 32.177333,17.043179C31.188143,17.100107 30.526798,17.911986 30.526798,17.911986" />
2094 </g>
2095 <g>
2096 <use width="72" height="55" style="fill-opacity:1;fill:url(#kc-lg229)" xlink:href="#kc-p204" transform="translate(6.3082569,-0.1321101)" />
2097 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2098 d="M37.497938,17.350292C37.497938,17.350292 37.635136,16.75695 38.61297,16.916871C39.590806,17.076791 40.264539,17.581879 40.264539,17.581879" />
2099 </g>
2100 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2101 d="M37.122936,25.721101C34.314561,25.98118 32.645054,25.495812 32.631193,25.440367" />
2102 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2103 d="M34.169618,16.122935C33.033357,14.743009 30.82182,14.828904 29.782488,15.517601" />
2104 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2105 d="M36.278085,16.169632C37.643858,15.108537 40.649036,15.645143 41.239965,16.334108" />
2106 </g>
2107 <g>
2108 <path style="fill:url(#kc-lg159);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2109 d="M33.627219,26.739503C33.627219,26.739503 33.311941,26.675279 32.932438,27.340868C32.507731,28.085739 31.998279,29.209186 33.025854,30.143346C34.05343,31.077505 35.267837,31.87154 34.660634,32.198496C34.05343,32.525452 35.127713,33.599735 36.482244,32.385328C37.836776,31.170921 38.298814,29.846967 38.070315,29.11577C37.836776,28.368443 36.155289,28.041487 36.388829,27.294159C36.508675,26.910653 34.668036,27.15137 33.627219,26.739503z" />
2110 <path style="fill:url(#kc-rg161);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2111 d="M34.279494,28.43886C34.177152,28.47035 33.821044,29.592424 34.488606,30.261708C35.151596,30.926407 34.836348,31.978279 34.836348,31.978279" />
2112 </g>
2113 </g>
2114 <g>
2115 <path style="fill:url(#kc-lg163);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2116 d="M46.172477,11.403669C46.965137,12.32844 48.352294,14.376147 48.418349,15.895413C48.484404,17.414679 48.682569,20.056881 49.409174,21.179816C50.13578,22.302752 51.655046,24.350458 51.06055,25.473394C50.840679,28.002062 47.573683,28.802587 45.313762,28.577982C43.199999,28.115597 42.209174,27.124771 42.077064,25.473395C41.944954,23.822019 42.209174,21.840367 42.209174,18.86789C42.209174,15.895413 41.152294,12.19633 41.152294,12.19633L46.172477,11.403669z" />
2117 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2118 d="M45.577982,13.451377C45.577982,13.451377 46.436697,14.772478 46.700917,16.093578C46.965138,17.414679 46.965138,20.519267 48.088073,22.434863" />
2119 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2120 d="M47.163303,28.247706C47.163303,28.247706 46.436698,26.992661 45.445872,24.746789C44.455046,22.500917 44.521101,18.60367 44.521101,18.60367" />
2121 </g>
2122 </g>
2123 <g>
2124 <g>
2125 <g>
2126 <path style="opacity:1;fill:url(#kc-lg165);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2127 d="M37.651376,4.4678899C37.651376,4.4678899 34.282568,3.6091743 31.442201,3.9394495C28.601834,4.2697248 27.330584,6.0344899 27.478899,7.8366972C27.653027,9.9525744 29.130275,10.346789 29.130275,10.346789L32.300917,10.875229C32.300917,10.875229 30.310515,9.0313204 30.253211,7.7706422C30.187156,6.3174312 31.772477,5.5908257 32.895412,5.5908257C35.406373,5.5908258 38.047706,5.8550459 38.047706,5.8550459L37.651376,4.4678899z" />
2128 <path style="fill:url(#kc-lg167);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2129 d="M38.564545,4.4678899C38.564545,4.4678899 41.933353,3.6091743 44.77372,3.9394495C47.614087,4.2697248 48.885337,6.0344899 48.737022,7.8366972C48.562894,9.9525744 47.085646,10.346789 47.085646,10.346789L43.915004,10.875229C43.915004,10.875229 45.905406,9.0313204 45.96271,7.7706422C46.028765,6.3174312 44.443444,5.5908257 43.320509,5.5908257C40.809548,5.5908258 38.168215,5.8550459 38.168215,5.8550459L38.564545,4.4678899z" />
2130 <path style="fill:url(#kc-lg169);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2131 d="M36.885944,4.6660552L39.329981,4.6660552C34.417102,8.6293579 37.132383,9.1577982 36.357504,11.53578L33.913467,11.53578C32.987141,9.0548731 32.274174,7.2362051 36.885944,4.6660552z" />
2132 <path style="fill:url(#kc-lg171);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2133 d="M38.712687,4.7321102L36.26865,4.7321102C41.181529,8.6954129 38.466248,9.2238532 39.241127,11.601835L41.685164,11.601835C42.61149,9.1209281 43.324457,7.3022601 38.712687,4.7321102z" />
2134 <path style="fill:url(#kc-lg173);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2135 d="M28.01015,9.7862585C34.520789,11.147314 41.361702,10.797161 47.872341,9.7862585L47.872341,13.255319C41.361702,14.7058 34.520789,14.52576 28.01015,13.255319L28.01015,9.7862585z" />
2136 <path style="opacity:1;fill:url(#kc-lg175);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.163322;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2137 d="M39.236696,3.5431192A1.5853211,1.6513761 0 1 1 39.235317,3.4742522" transform="matrix(1.2708333,0,0,1.18,-9.8999999,-1.0238571e-2)" />
2138 </g>
2139 </g>
2140 <g>
2141 <path style="fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2142 d="M27.997411,10.463128L30.75347,10.879236C30.771981,10.882031 30.729131,11.33824 30.657393,11.902127L30.633359,12.091042C30.56162,12.654929 30.488964,13.106639 30.470452,13.103844L27.911459,12.70425C27.684076,12.423516 27.623945,11.89958 27.62228,11.525471C27.620542,11.134849 27.796993,10.70804 27.997411,10.463128z" />
2143 <rect width="3.1045871" x="38.502068" y="13.572017" rx="0.036748853" height="2.2458715" ry="1.0275754" style="fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" transform="matrix(0.9983584,-0.0572752,0.0572752,0.9983584,0,0)" />
2144 <rect width="3.1045871" x="34.032433" y="9.4908123" rx="0.036748853" ry="1.0275754" height="2.2458715" style="fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" transform="matrix(0.9986671,0.0516139,-0.0516139,0.9986671,0,0)" />
2145 <path style="fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2146 d="M47.926987,10.411824L45.090963,10.838824C45.072523,10.841692 45.116744,11.29773 45.190112,11.86133L45.214692,12.050148C45.28806,12.613748 45.361971,13.065167 45.380411,13.062299L47.929387,12.635299C48.156894,11.886781 48.152999,10.997675 47.926987,10.411824z" />
2147 <path style="fill:url(#kc-lg177);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2148 d="M28.185024,10.924339L30.215317,11.18432C30.228954,11.186067 30.197387,11.471101 30.144541,11.823413L30.126835,11.941445C30.073988,12.293757 30.020465,12.57598 30.006828,12.574235L28.121706,12.324572C27.954201,12.149172 27.909905,11.821822 27.908678,11.588082C27.907397,11.344025 28.037383,11.077359 28.185024,10.924339z" />
2149 <rect width="2.2554522" x="34.589523" y="10.342134" rx="0.036745306" height="1.3067259" ry="1.0273724" style="fill:url(#kc-lg179);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" transform="matrix(0.9991466,0.0413058,-6.4477045e-2,0.9979192,0,0)" />
2150 <rect width="2.2587256" x="38.839367" y="13.643541" rx="0.036742982" ry="1.0272301" height="1.3567177" style="fill:url(#kc-lg181);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible" transform="matrix(0.9988702,-4.7521274e-2,0.0690151,0.9976156,0,0)" />
2151 <path style="fill:url(#kc-lg183);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2152 d="M47.706508,11.065735L45.860182,11.289567C45.848177,11.29107 45.876966,11.530123 45.924731,11.825559L45.940733,11.924537C45.988498,12.219973 46.036616,12.456605 46.048621,12.455102L47.708071,12.23127C47.856184,11.838901 47.853648,11.372836 47.706508,11.065735z" />
2153 </g>
2154 </g>
2155 </g>
2156 <rect width="0" x="26" y="56" rx="0.036742982" ry="0" height="0" style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
2157 <path style="opacity:1;fill:url(#kc-lg475);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2158 d="M22.875,28.5625L17.3125,31.625L12,35C12,35 4,48 6,55L25.40625,55C26.01758,53.443198 26.505645,51.810506 26.84375,50.09375L25.848358,38.308641C25.129936,34.655076 24.74448,31.385807 22.875,28.5625z" />
2159 <g>
2160 <path style="fill:#fff;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2161 d="M24.217395,28.014126C24.217395,28.014126 22.79349,28.283041 20.551507,29.68428C18.309525,31.085519 17.281949,31.646015 17.281949,31.646015C17.281949,31.646015 18.127461,32.121833 19.80418,35.19582C21.485666,38.278546 22.625055,41.864255 23.073737,44.163751C24.568393,51.823858 24.447616,55 24.447616,55L28.744749,55C28.744749,55 28.400592,50.142865 27.370871,42.388847C26.508579,35.895608 24.217395,28.014126 24.217395,28.014126z" />
2162 <path style="opacity:1;fill:url(#kc-rg389);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kc-p345"
2163 d="M21.930275,30.823854C22.788991,32.47523 23.67583,32.570306 23.779817,33.069725C23.893872,33.617499 24.968807,33.26789 24.308257,31.748624C23.647706,30.229358 24.308257,29.502753 24.308257,29.502753" />
2164 <path style="opacity:1;fill:url(#kc-rg387);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kc-p363"
2165 d="M17.945368,32.346795C19.306143,33.616727 20.173839,33.410266 20.438596,33.846313C20.728988,34.324578 21.625524,33.63615 20.495651,32.424588C19.365777,31.213026 19.745842,30.30758 19.745842,30.30758" />
2166 <use width="72" height="55" id="kc-u367" xlink:href="#kc-p363" transform="matrix(-0.8144214,0.5802738,0.5802738,0.8144214,19.580415,-2.3354857)" />
2167 <use width="72" height="55" xlink:href="#kc-u367" transform="translate(2.5100917,2.3449541)" />
2168 <use width="72" height="55" xlink:href="#kc-p363" transform="translate(4.8220184,10.238532)" />
2169 <use width="72" height="55" xlink:href="#kc-u367" transform="translate(3.9963303,11.229358)" />
2170 <use width="72" height="55" xlink:href="#kc-p345" transform="translate(2.212844,19.552294)" />
2171 </g>
2172 <path style="opacity:1;fill:url(#kc-lg355);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2173 d="M12 41.96875C7.8634502 41.96875 4.5 46.441491 4.5 51.96875C4.5 53.029479 4.6459354 54.040321 4.875 55L19.125 55C19.354065 54.040321 19.5 53.029479 19.5 51.96875C19.5 46.441491 16.13655 41.968749 12 41.96875z" />
2174 <path style="opacity:1;fill:url(#kc-lg562);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2175 d="M12 41C7.86 41 4.5 45.726049 4.5 51.53125C4.5 52.748926 4.6656462 53.913113 4.9375 55L5.875 55C5.6346984 54.061455 5.5 53.051846 5.5 52C5.5 47.032 8.41936 43 12 43C15.58064 43 18.5 47.032 18.5 52C18.5 53.051846 18.365302 54.061455 18.125 55L19.0625 55C19.334354 53.913113 19.5 52.748926 19.5 51.53125C19.5 45.72605 16.14 40.999999 12 41z" />
2176 <g>
2177 <g>
2178 <g>
2179 <path style="fill:url(#kc-lg310);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2180 d="M17.966973,45.289909A7.6293578,6.1431193 0 1 1 2.7082572,45.289909A7.6293578,6.1431193 0 1 1 17.966973,45.289909z" transform="translate(0,1.1209913)" />
2181 <path style="fill:url(#kc-lg303);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2182 d="M17.5625,44.495991C17.43715,44.559283 17.318853,44.623108 17.1875,44.683491C17.102324,44.723148 17.025294,44.770236 16.9375,44.808491C16.810732,44.863044 16.694472,44.913215 16.5625,44.964741C16.138631,45.133393 15.692587,45.267304 15.21875,45.402241C15.195556,45.408707 15.179553,45.427111 15.15625,45.433491C15.065085,45.459026 14.967827,45.471783 14.875,45.495991C14.45268,45.606129 14.016264,45.696114 13.5625,45.777241C13.131174,45.854357 12.674227,45.916068 12.21875,45.964741C12.102162,45.976768 11.992979,45.985905 11.875,45.995991C11.864516,45.996927 11.854245,45.99507 11.84375,45.995991C11.291318,46.044448 10.735129,46.08634 10.15625,46.089741C10.134906,46.089804 10.115124,46.089741 10.09375,46.089741C10.008699,46.089741 9.9283138,46.090738 9.84375,46.089741C9.2677157,46.082953 8.7056102,46.046991 8.15625,45.995991C7.6758791,45.951396 7.2048497,45.884358 6.75,45.808491C6.3935129,45.748188 6.0570573,45.667979 5.71875,45.589741C5.3514111,45.505823 4.999198,45.412139 4.65625,45.308491C4.6370262,45.302681 4.6128922,45.314361 4.59375,45.308491C4.2179742,45.193268 3.8735432,45.039403 3.53125,44.902241C3.403142,44.851315 3.2481852,44.830854 3.125,44.777241C3.1280539,44.768363 3.1218981,44.754853 3.125,44.745991C3.089586,44.730269 3.0662602,44.699423 3.03125,44.683491C2.830375,45.233542 2.71875,45.800061 2.71875,46.402241C2.71875,46.773132 2.7654068,47.143151 2.84375,47.495991C2.8861588,47.51683 2.9256381,47.538022 2.96875,47.558491C3.1357255,47.636738 3.3231949,47.704349 3.5,47.777241C3.5218811,47.786333 3.5404689,47.799485 3.5625,47.808491C3.9569073,47.968551 4.3743555,48.114804 4.8125,48.245991C5.1821773,48.356678 5.571758,48.470522 5.96875,48.558491C6.0641567,48.579632 6.153141,48.601233 6.25,48.620991C6.5348584,48.679155 6.8283859,48.70019 7.125,48.745991C7.7740853,48.846219 8.4608625,48.928604 9.15625,48.964741C9.5193906,48.983612 9.8770799,48.995991 10.25,48.995991C10.492576,48.995286 10.730459,48.973427 10.96875,48.964741C11.661938,48.941071 12.350229,48.895881 13,48.808491C13.179894,48.783768 13.355421,48.744038 13.53125,48.714741C13.881426,48.656393 14.230036,48.602946 14.5625,48.527241C14.894964,48.451536 15.218613,48.369258 15.53125,48.277241C15.843887,48.185224 16.146805,48.072024 16.4375,47.964741C16.728194,47.857458 17.014613,47.742495 17.28125,47.620991C17.494559,47.523788 17.681168,47.411752 17.875,47.308491C17.92933,47.012875 17.96875,46.709958 17.96875,46.402241C17.96875,45.728192 17.811986,45.102956 17.5625,44.495991z" />
2183 </g>
2184 <g transform="translate(0.1524104,0)" >
2185 <g transform="translate(-7.0101261e-2,0)" >
2186 <rect width="4.6707969" x="7.8469391" y="29.404032" rx="2.1485667" height="12.8914" ry="1.2144059" style="fill:url(#kc-lg385);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
2187 <path style="opacity:1;fill:url(#kc-lg387);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.15826012;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2188 d="M12.220183,30.85688A2.0477064,0.82568806 0 1 1 8.1247704,30.85688A2.0477064,0.82568806 0 1 1 12.220183,30.85688z" transform="matrix(1.140746,0,0,1.4,-1.4192109,-12.813385)" />
2189 </g>
2190 <g>
2191 <path style="fill:url(#kc-lg389);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2192 d="M9.3413813,35.255284L9.3413813,35.628947C9.3413813,36.819253 8.5914386,37.777514 7.6598955,37.777514L5.8849896,37.777514C4.9534465,37.777514 4.8825039,36.819253 4.8825039,35.628947L4.8825039,35.255284C4.8825039,34.064978 4.9534465,33.106717 5.8849896,33.106717L7.6598955,33.106717C8.5914386,33.106717 9.3413813,34.064978 9.3413813,35.255284z" />
2193 <path style="fill:url(#kc-lg391);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.15826012;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2194 d="M12.220183,30.85688A2.0477064,0.82568806 0 1 1 8.1247704,30.85688A2.0477064,0.82568806 0 1 1 12.220183,30.85688z" transform="matrix(0,1.140746,-1.4,0,48.890419,23.837903)" />
2195 </g>
2196 <path style="fill:url(#kc-lg393);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2197 d="M14.678669,33.099565C15.104061,33.116227 15.374952,33.51318 15.531877,33.865954C15.91491,34.779393 15.926506,35.831931 15.629571,36.771128C15.496971,37.168254 15.271712,37.594418 14.864221,37.759765C14.446202,37.803629 14.022924,37.779685 13.602156,37.787581C13.228496,37.781998 12.852527,37.802261 12.480472,37.767206C11.793438,37.643388 11.304148,37.022683 11.126136,36.377564C10.986697,35.879172 11.007665,35.35164 11.053036,34.8415C11.156435,34.134762 11.579318,33.414308 12.281472,33.169926C12.698565,33.043982 13.139236,33.121743 13.567222,33.099564C13.939232,33.103409 14.318896,33.099565 14.678669,33.099565z" />
2198 </g>
2199 </g>
2200 <g transform="translate(-1.453211,0.658606)" >
2201 <path style="opacity:1;fill:url(#kc-lg278);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kc-p475"
2202 d="M16.249541,51.763303C17.296748,50.02135 16.79966,48.526098 16.579816,48.196331C16.447706,47.998166 15.19266,47.8 14.598165,48.658716C14.003669,49.517431 13.739449,50.772477 13.078899,51.036698C12.418348,51.300918 12.400023,52.333592 13.211008,52.820183C14.53211,53.612845 15.939678,52.278737 16.249541,51.763303z" />
2203 <use width="72" height="55" xlink:href="#kc-p475" id="kc-u485" transform="translate(-2.0477064,0.5284404)" />
2204 <use width="72" height="55" xlink:href="#kc-u485" id="kc-u487" transform="translate(-1.9155963,0.0660551)" />
2205 <use width="72" height="55" xlink:href="#kc-u487" transform="matrix(1,0,0,0.8865723,-1.7834862,5.0410395)" />
2206 </g>
2207 </g>
2208 <use width="72" height="55" xlink:href="#kc-u367" transform="translate(28.205505,-2.5100917)" />
2209 <path style="opacity:1;fill:url(#kc-lg208);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2210 d="M59.062369,46.568545L59.876985,45.901937C59.596384,47.723551 59.335906,48.868572 59.216013,50.277695C59.074728,51.938246 59.541588,54.933945 59.541588,54.933945L58.653513,54.933945C58.642388,54.828239 58.295817,51.686193 58.434763,49.902695C58.550512,48.416953 58.510493,47.407669 59.062369,46.568545z" />
2211 <g>
2212 <rect width="4.1223855" x="51.997246" y="44.059875" rx="0.036748853" ry="1.0275754" height="10.823352" style="opacity:1;fill:#8df;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
2213 <g transform="matrix(0.9227043,-0.3855085,0.3855085,0.9227043,-49.780102,-33.04193)" >
2214 <path style="fill:url(#kc-rg337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2215 d="M69.75545,116.81805C69.27908,116.3588 67.552409,113.53405 67.151854,113.13806L66.99159,113.97388C66.764509,114.32238 65.759279,114.08661 65.139946,113.78484C64.399441,113.42403 63.540696,112.83934 63.538339,112.59068C63.536504,112.39713 64.16569,112.43137 64.234119,112.33472C63.856118,112.01068 63.383323,111.78026 62.861776,111.74541C62.154268,111.69814 61.134453,111.63118 61.050614,112.89803C60.111615,112.55846 59.295427,113.6877 59.505994,114.88691C58.858925,115.12429 58.648374,115.49602 58.597629,115.72666C58.426127,116.04773 58.573855,116.63251 58.870048,117.16083C58.547523,117.82173 58.26261,118.73362 58.752644,119.34798C59.889747,120.77357 61.898771,121.43982 63.366318,121.73333C64.833865,122.02684 68.085572,122.61487 68.085572,122.61487C68.085572,122.61487 69.759342,120.1011 69.935354,119.28928C70.191306,118.10874 69.75545,116.81805 69.75545,116.81805z" />
2216 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2217 d="M61.012577,112.79841C61.123063,113.74859 61.661835,114.22842 62.294208,114.74296" />
2218 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2219 d="M58.885032,117.18811C59.01856,117.40309 59.240277,117.62369 59.956741,118.16039" />
2220 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2221 d="M59.487878,114.89002C59.58826,115.31491 59.854171,115.70124 60.570635,116.23794" />
2222 <path style="fill:url(#kc-rg339);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2223 d="M61.050164,112.89824C60.111165,112.55868 59.308347,113.69904 59.518914,114.89824C58.871845,115.13562 58.663409,115.51135 58.612664,115.74199C58.441161,116.06306 58.566471,116.61992 58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 69.749152,120.11632 69.925164,119.30449C70.009702,118.91458 70.013433,118.51171 69.987664,118.14824C68.596002,118.78107 64.882316,116.34675 62.812402,115.18853C61.788165,114.48593 61.185403,113.88941 61.050164,112.89824z" />
2224 <path style="fill:url(#kc-rg341);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2225 d="M59.518914,114.89824C58.871845,115.13562 58.663409,115.51135 58.612664,115.74199C58.441161,116.06306 58.566471,116.61992 58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 68.935236,121.36009 69.487664,120.33574C65.419997,119.9999 59.574444,115.9911 59.518914,114.89824z" />
2226 <path style="fill:url(#kc-rg343);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2227 d="M58.862664,117.14824C58.540138,117.80914 58.24763,118.72138 58.737664,119.33574C59.874767,120.76133 61.895117,121.44848 63.362664,121.74199C64.830211,122.0355 68.081414,122.61699 68.081414,122.61699C68.081414,122.61699 68.683544,121.70221 69.206414,120.80449C67.845841,121.38981 66.332104,120.32139 64.295453,119.71794C62.150727,119.05218 59.665492,118.29843 58.862664,117.14824z" />
2228 </g>
2229 <g>
2230 <g>
2231 <path style="opacity:1;fill:url(#kc-lg258);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2232 d="M54,22L57,25C57,25 57.046708,44.093416 57,44L51,44L51,25L54,22z" />
2233 <path style="opacity:1;fill:#f00;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2234 d="M54.099083,23.888073L54.099083,43.638532" />
2235 </g>
2236 <rect width="9.6218424" x="49.199459" y="42.949341" rx="1.0275754" height="3.269558" ry="1.0275754" style="opacity:1;fill:url(#kc-lg260);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
2237 </g>
2238 </g>
2239 <rect width="0" x="52" y="41.734936" rx="0.036748853" height="1.2650638" ry="1.0275754" style="opacity:1;fill:#090;fill-opacity:0.99607843;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
2240 <use width="72" height="55" xlink:href="#kc-p363" transform="matrix(0.5208177,0.8536679,-0.8536679,0.5208177,65.393429,-2.9550029)" />
2241 <use width="72" height="55" xlink:href="#kc-p345" transform="matrix(0.9792626,0.2025948,-0.2025948,0.9792626,32.4741,1.164229)" />
2242 <use width="72" height="55" xlink:href="#kc-p363" transform="matrix(-0.8144214,0.5802738,0.5802738,0.8144214,45.077663,4.5342391)" />
2243 <path style="opacity:1;fill:url(#kc-rg451);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2244 d="M45.078751,35.882575C44.703092,37.705571 45.331157,38.338862 45.096739,38.791942C44.839626,39.28889 45.894185,39.695848 46.34024,38.100376C46.786294,36.504904 47.757211,36.357927 47.757211,36.357927" />
2245 <path style="opacity:1;fill:url(#kc-rg455);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2246 d="M44.726925,41.569997C43.94102,43.25724 44.406127,44.018291 44.07355,44.405105C43.708773,44.829373 44.641071,45.468537 45.443008,44.018919C46.244945,42.5693 47.223588,42.650171 47.223588,42.650171" />
2247 <use width="72" height="55" xlink:href="#kc-u367" transform="matrix(0.9637321,-0.2668715,0.2668715,0.9637321,15.485838,22.266688)" />
2248 <use width="72" height="55" xlink:href="#kc-p363" transform="matrix(0.6313892,0.7754661,-0.7754661,0.6313892,56.825775,12.58517)" />
2249 <use width="72" height="55" xlink:href="#kc-u367" transform="translate(22.392661,17.570642)" />
2250 <path style="opacity:1;fill:url(#kc-lg597);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2251 d="M59.066055,46.537615L60.546789,45.462385C60.546789,45.462385 63.93155,44.035715 65,46C67.453211,50.510091 66,55 66,55L60,55C60,55 60.348624,51.990826 60.207339,50.330275C60.087447,48.921153 59.647707,47.271559 59.066055,46.537615z" />
2252 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2253 d="M59.90625 45.90625L59.0625 46.53125C59.644152 47.265194 60.098857 48.934627 60.21875 50.34375C60.360035 52.004301 60 55 60 55L60.78125 55C60.792375 54.894294 61.138946 51.752248 61 49.96875C60.884251 48.483008 60.458126 46.745374 59.90625 45.90625z" />
2254 <path style="opacity:1;fill:url(#kc-lg580);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2255 d="M37.147299,23.668902C34.779064,23.709145 33.27886,22.745418 33.163807,24.40041C33.048754,26.055403 33.085866,27.47352 32.691076,27.219907C32.296285,26.966296 31.574673,27.39507 31.969464,27.648683C32.364255,27.902294 33.822106,28.6715 34.106573,27.794592C34.39104,26.917683 34.060582,25.088038 34.565186,24.910254C35.069791,24.732472 36.710664,24.782684 37.085587,24.633137C37.460512,24.48359 37.189653,23.863422 37.147299,23.668902z" />
2256 <path style="opacity:1;fill:url(#kc-lg584);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2257 d="M37.866482,23.586917C40.21755,23.299451 41.570155,22.137625 41.912847,23.76083C42.255539,25.384036 42.414786,26.793672 42.770735,26.487928C43.126684,26.182186 43.900633,26.507108 43.544684,26.812853C43.188735,27.118596 41.851192,28.081914 41.448252,27.252739C41.045314,26.423565 41.119719,24.565805 40.595385,24.459472C40.071051,24.353139 38.452867,24.629662 38.060872,24.533369C37.668877,24.437077 37.851421,23.785425 37.866482,23.586917z" />
2258 <g transform="translate(0.719142,-1.1740755)" >
2259 <g transform="translate(-0.2754517,0.167124)" >
2260 <path style="fill:url(#kc-lg172);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" id="kc-p418"
2261 d="M37.585322,41.161469A2.2788992,2.344954 0 1 1 33.027524,41.161469A2.2788992,2.344954 0 1 1 37.585322,41.161469z" transform="translate(-0.3141678,1.4321095)" />
2262 <path style="fill:url(#kc-lg648);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2263 d="M37.585322,41.161469A2.2788992,2.344954 0 1 1 33.027524,41.161469A2.2788992,2.344954 0 1 1 37.585322,41.161469z" transform="translate(-0.3141678,7.4219895)" />
2264 </g>
2265 <g transform="translate(-0.11519,-0.23038)" >
2266 <use width="72" height="55" xlink:href="#kc-p418" transform="translate(2.7896067,3.450039)" />
2267 <use width="72" height="55" xlink:href="#kc-p418" transform="translate(-3.11013,3.450039)" />
2268 </g>
2269 </g>
2270 </g>
2271 
2272 <!-- }}} -->
2273 
2274 
2275 <!-- * Queen of Hearts {{{ -->
2276 <linearGradient id="qh-lg4519" >
2277 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2278 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2279 </linearGradient>
2280 <linearGradient id="qh-lg4387" >
2281 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
2282 <stop offset="1" style="stop-color:#f90;stop-opacity:0" />
2283 </linearGradient>
2284 <linearGradient id="qh-lg4377" >
2285 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
2286 <stop offset="1" style="stop-color:#f90;stop-opacity:0" />
2287 </linearGradient>
2288 <linearGradient id="qh-lg4345" >
2289 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
2290 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
2291 </linearGradient>
2292 <linearGradient id="qh-lg4331" >
2293 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
2294 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
2295 </linearGradient>
2296 <linearGradient id="qh-lg4308" >
2297 <stop offset="0" style="stop-color:#000;stop-opacity:0.627451" />
2298 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2299 </linearGradient>
2300 <linearGradient id="qh-lg4279" >
2301 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
2302 <stop offset="1" style="stop-color:#8df;stop-opacity:0" />
2303 </linearGradient>
2304 <linearGradient id="qh-lg4107" >
2305 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
2306 <stop offset="1" style="stop-color:#f00;stop-opacity:0" />
2307 </linearGradient>
2308 <linearGradient id="qh-lg4099" >
2309 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
2310 <stop offset="1" style="stop-color:#f00;stop-opacity:0" />
2311 </linearGradient>
2312 <linearGradient id="qh-lg3965" >
2313 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2314 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2315 </linearGradient>
2316 <linearGradient id="qh-lg3951" >
2317 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2318 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2319 </linearGradient>
2320 <linearGradient id="qh-lg3941" >
2321 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2322 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2323 </linearGradient>
2324 <linearGradient id="qh-lg3895" >
2325 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2326 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2327 </linearGradient>
2328 <linearGradient id="qh-lg3730" >
2329 <stop offset="0" style="stop-color:#000;stop-opacity:0.50196081" />
2330 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2331 </linearGradient>
2332 <linearGradient id="qh-lg3718" >
2333 <stop offset="0" style="stop-color:#000;stop-opacity:0.78431374" />
2334 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2335 </linearGradient>
2336 <linearGradient id="qh-lg3710" >
2337 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2338 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2339 </linearGradient>
2340 <linearGradient id="qh-lg3655" >
2341 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2342 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2343 </linearGradient>
2344 <linearGradient id="qh-lg3631" >
2345 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
2346 <stop offset="1" style="stop-color:#fff;stop-opacity:1" />
2347 </linearGradient>
2348 <linearGradient id="qh-lg3623" >
2349 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2350 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2351 </linearGradient>
2352 <linearGradient id="qh-lg3615" >
2353 <stop offset="0" style="stop-color:#000;stop-opacity:0" />
2354 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2355 </linearGradient>
2356 <linearGradient id="qh-lg3284" >
2357 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2358 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2359 </linearGradient>
2360 <linearGradient id="qh-lg3268" >
2361 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2362 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:0" />
2363 </linearGradient>
2364 <linearGradient id="qh-lg2490" >
2365 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2366 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2367 </linearGradient>
2368 <linearGradient id="qh-lg2476" >
2369 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2370 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2371 </linearGradient>
2372 <linearGradient id="qh-lg2410" >
2373 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
2374 <stop offset="1" style="stop-color:#fe0;stop-opacity:0" />
2375 </linearGradient>
2376 <linearGradient id="qh-lg2390" >
2377 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
2378 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
2379 </linearGradient>
2380 <linearGradient xlink:href="#qh-lg2390" id="qh-lg2396" y1="45.921192" x1="38.306709" y2="47.151226" x2="40.122471" gradientUnits="userSpaceOnUse" />
2381 <linearGradient xlink:href="#qh-lg2410" id="qh-lg2416" y1="24.705362" x1="56.398613" y2="22.254944" x2="53.530396" gradientUnits="userSpaceOnUse" />
2382 <linearGradient xlink:href="#qh-lg3710" id="qh-lg3716" y1="25.133522" x1="59.812511" y2="16.904953" x2="58.436195" gradientUnits="userSpaceOnUse" />
2383 <radialGradient fx="61.513626" fy="21.913927" cx="61.513626" cy="21.913927" gradientTransform="matrix(0.3183732,-0.5135746,0.9873264,0.6120598,15.649562,37.610538)" xlink:href="#qh-lg3718" id="qh-rg3726" r="4.9192155" gradientUnits="userSpaceOnUse" />
2384 <linearGradient gradientTransform="translate(13.842348,4.7627067)" xlink:href="#qh-lg3631" id="qh-lg3775" y1="27.029493" x1="42.570045" y2="27.029493" gradientUnits="userSpaceOnUse" x2="41.228081" />
2385 <linearGradient gradientTransform="translate(13.809168,5.2769927)" xlink:href="#qh-lg3623" id="qh-lg3779" y1="26.699657" x1="47.746082" y2="26.699657" gradientUnits="userSpaceOnUse" x2="34.872349" />
2386 <linearGradient gradientTransform="translate(13.809168,5.2769927)" xlink:href="#qh-lg3615" id="qh-lg3781" y1="26.699657" x1="47.746082" y2="26.699657" gradientUnits="userSpaceOnUse" x2="34.872349" />
2387 <linearGradient xlink:href="#qh-lg3655" id="qh-lg3788" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2388 <linearGradient xlink:href="#qh-lg3655" id="qh-lg3790" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2389 <linearGradient xlink:href="#qh-lg3655" id="qh-lg3792" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2390 <linearGradient xlink:href="#qh-lg3655" id="qh-lg3794" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2391 <linearGradient xlink:href="#qh-lg3895" id="qh-lg3901" y1="36.810795" x1="61.243805" y2="40.460564" x2="54.154648" gradientUnits="userSpaceOnUse" />
2392 <linearGradient xlink:href="#qh-lg3941" id="qh-lg3947" y1="37.64476" x1="60.092064" y2="51.346336" x2="53.122349" gradientUnits="userSpaceOnUse" />
2393 <linearGradient xlink:href="#qh-lg3951" id="qh-lg3957" y1="45.141983" x1="30.911633" y2="42.02309" x2="19.099651" gradientUnits="userSpaceOnUse" />
2394 <radialGradient fx="48.430504" fy="45.394047" cx="48.430504" cy="45.394047" gradientTransform="matrix(0.1098665,-0.2005846,0.3382322,0.1852605,10.139765,52.786318)" xlink:href="#qh-lg2476" id="qh-rg4185" r="5.8258683" gradientUnits="userSpaceOnUse" />
2395 <radialGradient fx="32.537888" fy="38.871136" cx="32.537888" cy="38.871136" gradientTransform="matrix(0.1418416,-9.1607927e-2,0.131729,0.2039635,17.24486,47.075436)" xlink:href="#qh-lg2490" id="qh-rg4187" r="5.8249979" gradientUnits="userSpaceOnUse" />
2396 <radialGradient fx="38.028793" fy="45.984734" cx="38.028793" cy="45.984734" gradientTransform="matrix(0.0916311,-6.7458121e-2,0.1194303,0.1622272,16.291425,49.028735)" xlink:href="#qh-lg3268" id="qh-rg4189" r="5.5679789" gradientUnits="userSpaceOnUse" />
2397 <radialGradient fx="35.506214" fy="45.83128" cx="35.506214" cy="45.83128" gradientTransform="matrix(-5.9173548e-2,0.0594561,-0.133011,-0.1323791,32.809744,59.714785)" xlink:href="#qh-lg3284" id="qh-rg4191" r="5.3648539" gradientUnits="userSpaceOnUse" />
2398 <linearGradient xlink:href="#qh-lg3655" id="qh-lg4193" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2399 <radialGradient fx="51.449337" fy="38.253799" cx="51.449337" cy="38.253799" gradientTransform="matrix(0.183472,0.2469732,-0.9009348,0.6692894,75.69735,3.1514277)" xlink:href="#qh-lg4279" id="qh-rg4285" r="6.8695028" gradientUnits="userSpaceOnUse" />
2400 <linearGradient gradientTransform="translate(-12.106189,-0.1407696)" xlink:href="#qh-lg3965" id="qh-lg4292" y1="40.483089" x1="36.359337" y2="40.858475" gradientUnits="userSpaceOnUse" x2="28.535995" />
2401 <linearGradient xlink:href="#qh-lg4308" id="qh-lg4323" y1="43.695724" x1="40.52142" y2="39.050327" gradientUnits="userSpaceOnUse" x2="36.749252" />
2402 <radialGradient fx="34.468804" fy="14.749063" cx="34.468804" cy="14.749063" gradientTransform="matrix(1,0,0,1.3631099,0,-5.3555303)" xlink:href="#qh-lg4099" id="qh-rg4491" r="7.7958586" gradientUnits="userSpaceOnUse" />
2403 <radialGradient fx="27.879663" fy="15.947064" cx="27.879663" cy="15.947064" gradientTransform="matrix(0.5106675,0.0972196,-0.1424745,0.7483789,15.763452,2.7146083)" xlink:href="#qh-lg4387" id="qh-rg4493" r="4.2850684" gradientUnits="userSpaceOnUse" />
2404 <radialGradient fx="24.077932" fy="26.541544" cx="24.077932" cy="26.541544" gradientTransform="matrix(0.6565543,-0.2827822,0.5555982,1.2899686,-1.8114268,-3.9838007)" xlink:href="#qh-lg3730" id="qh-rg4495" r="7.8177774" gradientUnits="userSpaceOnUse" />
2405 <radialGradient fx="19.37299" fy="11.349782" cx="19.37299" cy="11.349782" gradientTransform="matrix(0.605692,0.1436007,-0.2231595,0.9412632,10.17174,-2.1963401)" xlink:href="#qh-lg4331" id="qh-rg4497" r="1.2716698" gradientUnits="userSpaceOnUse" />
2406 <radialGradient fx="19.443375" fy="11.343052" cx="19.443375" cy="11.343052" gradientTransform="matrix(0.700599,0.1503133,-0.2084588,0.9716115,8.1859245,-2.6514099)" xlink:href="#qh-lg4345" id="qh-rg4499" r="1.2716698" gradientUnits="userSpaceOnUse" />
2407 <radialGradient fx="38.258411" fy="-0.64042574" cx="38.258411" cy="-0.64042574" gradientTransform="matrix(0.5330025,0.0527254,-2.4537658e-2,0.2480517,17.145843,0.6355003)" xlink:href="#qh-lg4377" id="qh-rg4505" r="4.4050465" gradientUnits="userSpaceOnUse" />
2408 <radialGradient fx="44.611485" fy="14.261231" cx="44.611485" cy="14.261231" gradientTransform="matrix(0.9746234,3.85136e-07,-1.5181263e-6,2.5873737,-7.126379,4.9529284)" xlink:href="#qh-lg4519" id="qh-rg4537" r="3.9404452" gradientUnits="userSpaceOnUse" />
2409 <radialGradient fx="45.566387" fy="11.934361" cx="45.566387" cy="11.934361" gradientTransform="matrix(0.651175,-0.3129809,0.9563793,1.9898039,3.8076234,-0.3952667)" xlink:href="#qh-lg4107" id="qh-rg4539" r="0.807107" gradientUnits="userSpaceOnUse" />
2410 <radialGradient fx="45.566387" fy="11.934361" cx="45.566387" cy="11.934361" gradientTransform="matrix(0.651175,-0.3129809,0.9563793,1.9898039,2.4703118,1.2001226)" xlink:href="#qh-lg4107" id="qh-rg4541" r="0.807107" gradientUnits="userSpaceOnUse" />
2411 <g id="img_queen_heart" transform="scale(1.8) translate(-36, -58)" >
2412 <g transform="translate(-1.8995928,-0.2094034)" >
2413 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2414 d="M43.357051,28.066075L51.990922,30.130696L53.680158,55.058573L15.484661,55.058573C15.484661,55.058573 15.672354,52.184607 15.672354,49.556907C15.672354,46.929207 16.704664,41.8615 17.830822,39.703032C18.956979,37.544564 19.144672,37.356871 20.458522,35.198403C21.772372,33.039935 21.584679,32.476857 24.118532,31.3507C26.652386,30.224543 30.687783,28.066075 30.687783,28.066075L43.357051,28.066075z" />
2415 <path style="opacity:1;fill:#f00;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2416 d="M43.357051,28.116905L51.990922,30.181526L53.680158,55.109403L15.484661,55.109403C15.484661,55.109403 15.672354,52.235437 15.672354,49.607737C15.672354,46.980037 16.704664,41.91233 17.830822,39.753862C18.956979,37.595394 19.144672,37.407701 20.458522,35.249233C21.772372,33.090765 21.584679,32.527687 24.118532,31.40153C26.652386,30.275373 30.687783,28.116905 30.687783,28.116905L43.357051,28.116905z" />
2417 <path style="opacity:1;fill:#f00;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2418 d="M52.272461,30.130696C52.131691,30.083773 51.709383,29.943003 50.20784,32.007625C48.706297,34.072246 47.58014,36.981485 47.204754,38.764568C46.829368,40.54765 49.269375,45.709203 49.269375,45.709203L52.554,55.058573L59.498636,55.058573C59.498636,55.058573 60.601412,54.060907 60.812486,53.404611C61.587794,50.99393 60.929795,49.392676 59.592483,45.052278C59.242951,43.91783 53.933362,34.831859 52.741693,31.819932C52.492721,31.190659 52.413231,30.177619 52.272461,30.130696z" />
2419 <path style="opacity:1;fill:url(#qh-lg3901);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2420 d="M52.272461,30.130696C52.131691,30.083773 51.709383,29.943003 50.20784,32.007625C48.706297,34.072246 47.58014,36.981485 47.204754,38.764568C46.829368,40.54765 49.269375,45.709203 49.269375,45.709203L52.554,55.058573L59.498636,55.058573C59.498636,55.058573 60.601412,54.060907 60.812486,53.404611C61.587794,50.99393 60.929795,49.392676 59.592483,45.052278C59.242951,43.91783 53.933362,34.831859 52.741693,31.819932C52.492721,31.190659 52.413231,30.177619 52.272461,30.130696z" />
2421 <g transform="translate(-14.170811,-4.786168)" >
2422 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2423 d="M56.292958,32.29323C56.292958,32.29323 57.772302,32.621693 57.374145,33.749804C56.975989,34.877914 55.096219,37.654155 53.724376,38.9922C52.068203,40.607569 50.522533,41.596808 48.38244,43.089895C46.149099,44.648039 43.903177,46.092661 43.903177,46.092661C43.903177,46.092661 44.019307,43.28855 44.102256,41.712938C44.2389,39.117355 44.007164,37.438696 43.936358,35.607868C43.892793,34.481408 44.168615,33.749804 44.699491,33.218928C45.230366,32.688053 56.226598,31.895073 56.292958,32.29323z" />
2424 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2425 d="M45.495804,27.395886L55.715158,27.395886L55.574388,33.561836C52.296902,34.472675 49.731134,40.027771 45.495804,34.173659L45.495804,27.395886z" />
2426 <path style="fill:url(#qh-lg3779);fill-opacity:1;fill-rule:nonzero;stroke:url(#qh-lg3781);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2427 d="M45.462624,27.561785L55.681978,27.561785L55.681978,33.799573C52.404492,34.637845 49.697954,39.187287 45.462624,33.799573L45.462624,27.561785z" />
2428 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2429 d="M47.902141,35.811699C47.902141,35.811699 47.894274,36.234377 47.849289,36.41432C47.716571,36.945195 46.904963,38.034742 45.998598,39.137707C45.017584,40.331514 44.432821,42.067315 43.998598,43.637707C43.951962,44.688689 43.904848,46.106458 43.904848,46.106457C43.904848,46.106457 44.882189,45.44613 46.092348,44.637707C46.518408,43.452607 47.307286,41.189944 47.904848,40.512707C48.651392,39.666624 49.634774,38.377311 49.833851,37.746895C50.032929,37.11648 50.226219,36.654296 50.226219,36.654297L50.313028,36.219879C48.367157,36.357613 48.213829,35.967622 47.902141,35.811699z" />
2430 <path style="fill:url(#qh-lg3775);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2431 d="M56.312394,26.914781L56.312394,32.289896C56.312394,32.289896 55.317002,34.678836 53.857095,35.475149C52.397187,36.271462 50.207325,36.66962 50.207325,36.66962C50.017562,35.054873 50.107461,33.440127 50.074606,31.82538C50.074606,31.82538 52.065389,32.157176 53.525297,30.697269C54.255251,29.967315 55.245295,28.446711 55.730254,27.724549C55.722519,27.213541 55.491238,25.95251 56.312394,26.914781z" />
2432 <g transform="translate(-23.869313,46.867119)" >
2433 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2434 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2435 <path style="opacity:1;fill:url(#qh-lg3794);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2436 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2437 </g>
2438 <path style="fill:url(#qh-rg4285);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2439 d="M56.292958,32.29323C56.292958,32.29323 57.819225,32.762463 57.421068,33.890574C57.022912,35.018684 55.143142,37.794925 53.771299,39.13297C52.115126,40.748339 50.522533,41.596808 48.38244,43.089895C46.149099,44.648039 43.903177,46.092661 43.903177,46.092661C43.903177,46.092661 44.019307,43.28855 44.102256,41.712938C44.2389,39.117355 44.007164,37.438696 43.936358,35.607868C43.892793,34.481408 44.168615,33.749804 44.699491,33.218928C45.230366,32.688053 56.226598,31.895073 56.292958,32.29323z" />
2440 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2441 d="M45.164004,28.374688C45.514905,26.874055 45.297126,30.8708 45.296723,32.356255C45.296723,32.356255 45.165705,34.612477 46.082826,35.40879C46.999948,36.205103 47.975773,36.404182 47.975773,36.404182L48.01746,31.82538C48.01746,31.82538 47.233058,31.825379 46.315937,30.365472C45.398815,28.905564 45.62852,28.772845 45.164004,28.374688z" />
2442 <g transform="translate(-28.099727,46.485552)" >
2443 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2444 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2445 <path style="opacity:1;fill:url(#qh-lg3792);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2446 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2447 </g>
2448 <g transform="translate(-26.480912,49.263538)" >
2449 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2450 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2451 <path style="opacity:1;fill:url(#qh-lg3790);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2452 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2453 </g>
2454 <g transform="translate(-29.014765,53.111241)" >
2455 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2456 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2457 <path style="opacity:1;fill:url(#qh-lg3788);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2458 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2459 </g>
2460 </g>
2461 <path style="fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2462 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
2463 <path style="fill:#f00;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2464 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
2465 <path style="fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2466 d="M48.622111,47.646903L48.586815,47.771903C48.586815,47.771903 48.849519,49.984776 48.516224,51.740653C48.445056,52.115579 48.370488,52.463984 48.233858,52.771903C47.457351,54.521903 46.822028,54.959403 46.822028,54.959403L46.716141,54.959403L46.680845,55.053153L48.433178,55.053153C48.648262,54.848075 48.969049,54.459597 49.551427,53.147096C49.688057,52.839177 49.715704,52.30308 49.78687,51.928153C50.116309,50.192594 49.957205,48.228614 49.951308,48.178346C49.436,48.036962 48.622111,47.646903 48.622111,47.646903z" />
2467 <g transform="translate(27.966237,0.0469232)" >
2468 <g transform="translate(-27.778543,0)" >
2469 <path style="opacity:1;fill:#f00;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2470 d="M43.116389,27.272852C43.116389,27.272852 45.57881,27.599813 46.547601,29.606005C47.050925,30.648298 47.835416,30.691561 46.333874,35.853114L41.989125,34.915012L43.000708,38.709922C35.895444,42.70503 33.553702,44.305226 27.641994,51.257793L28.790213,45.833797L29.58339,41.318072C29.58339,41.318072 35.339041,37.755412 38.516325,35.10178C39.590799,34.204392 40.679567,32.854665 41.568239,31.571713C42.096513,30.809057 42.37275,29.777259 42.097031,27.981932C41.821314,26.186606 41.868414,26.976869 43.116389,27.272852z" />
2471 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2472 d="M42.25,27.34375C42.519647,27.615484 43.016483,28.066268 43.203366,28.45327C43.706691,29.495563 44.533081,29.213254 43.031539,34.374807L38.593943,33.48423L39.359327,37.922405C33.355024,41.298471 30.698515,42.963466 26.468654,47.594232L25.75,51.0625C31.661708,44.109933 33.988485,42.495108 41.09375,38.5L40.09375,34.71875L44.4375,35.65625C45.939042,30.494697 45.159576,30.448544 44.65625,29.40625C44.095546,28.245132 43.04439,27.642045 42.25,27.34375z" transform="translate(1.8995928,0.2094034)" />
2473 <path style="opacity:1;fill:url(#qh-lg4323);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2474 d="M43.116389,27.272852C43.116389,27.272852 45.57881,27.599813 46.547601,29.606005C47.050925,30.648298 47.835416,30.691561 46.333874,35.853114L41.989125,34.915012L43.000708,38.709922C35.895444,42.70503 33.553702,44.305226 27.641994,51.257793L28.790213,45.833797L29.58339,41.318072C29.58339,41.318072 35.339041,37.755412 38.516325,35.10178C39.590799,34.204392 40.679567,32.854665 41.568239,31.571713C42.096513,30.809057 42.37275,29.777259 42.097031,27.981932C41.821314,26.186606 41.868414,26.976869 43.116389,27.272852z" />
2475 </g>
2476 </g>
2477 <g>
2478 <path style="fill:url(#qh-lg3947);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2479 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
2480 <g>
2481 <g>
2482 <g>
2483 <path style="opacity:1;fill:#f90;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2484 d="M49.259851,28.056443L30.838659,55.058573L34.411608,55.058573L51.544196,29.520767L49.259851,28.056443z" />
2485 <g>
2486 <path style="opacity:1;fill:url(#qh-lg2396);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2487 d="M49.259851,28.056443L30.838659,55.058573L34.411608,55.058573L51.544196,29.520767L49.259851,28.056443z" />
2488 </g>
2489 </g>
2490 <g>
2491 <path style="opacity:1;fill:#ffee80;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2492 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
2493 <path style="opacity:1;fill:url(#qh-lg2416);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2494 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
2495 <path style="opacity:1;fill:url(#qh-rg3726);fill-opacity:1;fill-rule:nonzero;stroke:url(#qh-lg3716);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2496 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
2497 </g>
2498 </g>
2499 <g transform="translate(-9.384643e-2,-4.6923215e-2)" >
2500 <g transform="translate(9.6955777,-7.6075101)" >
2501 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2502 d="M35.078539,55.058573C34.602169,54.599318 32.875498,51.774567 32.474943,51.378577L31.937428,52.208646C31.710347,52.557154 30.886542,52.2987 30.299648,51.931795C29.756656,51.630948 29.519253,51.328414 29.450331,51.178493C29.36948,51.002624 29.488779,50.671888 29.557208,50.575243C29.179207,50.251203 28.706412,50.020781 28.184865,49.985933C27.477357,49.938659 26.457542,49.871701 26.373703,51.138545C25.434704,50.798983 24.618516,51.928225 24.829083,53.127428C24.182014,53.364806 23.971463,53.736539 23.920718,53.96718C23.749216,54.288251 23.896944,54.873032 24.193137,55.401349C23.870612,56.062249 23.585699,56.974142 24.075733,57.588499C25.212836,59.014086 27.22186,59.680341 28.689407,59.97385C30.156954,60.26736 33.408661,60.855385 33.408661,60.855385C33.408661,60.855385 35.082431,58.341624 35.258443,57.529797C35.514395,56.349263 35.078539,55.058573 35.078539,55.058573z" />
2503 <path style="fill:url(#qh-rg4185);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2504 d="M35.078539,55.058573C34.602169,54.599318 32.875498,51.774567 32.474943,51.378577L31.937428,52.208646C31.710347,52.557154 30.886542,52.2987 30.299648,51.931795C29.756656,51.630948 29.519253,51.328414 29.450331,51.178493C29.36948,51.002624 29.488779,50.671888 29.557208,50.575243C29.179207,50.251203 28.706412,50.020781 28.184865,49.985933C27.477357,49.938659 26.457542,49.871701 26.373703,51.138545C25.434704,50.798983 24.618516,51.928225 24.829083,53.127428C24.182014,53.364806 23.971463,53.736539 23.920718,53.96718C23.749216,54.288251 23.896944,54.873032 24.193137,55.401349C23.870612,56.062249 23.585699,56.974142 24.075733,57.588499C25.212836,59.014086 27.22186,59.680341 28.689407,59.97385C30.156954,60.26736 33.408661,60.855385 33.408661,60.855385C33.408661,60.855385 35.082431,58.341624 35.258443,57.529797C35.514395,56.349263 35.078539,55.058573 35.078539,55.058573z" />
2505 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2506 d="M34.592003,54.29501C34.592003,54.29501 35.217003,57.517687 33.467003,60.38876C31.717003,63.259833 31.810753,62.666083 31.810753,62.666083L37.373253,62.666083C37.373253,62.666083 37.935753,62.23251 38.623253,60.48251C38.744222,60.174589 38.832296,59.820227 38.895306,59.445301C39.190397,57.689423 38.935753,55.48251 38.935753,55.48251L34.592003,54.29501z" />
2507 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2508 d="M26.361825,51.139122C26.472311,52.089297 27.011083,52.569131 27.643456,53.083666" />
2509 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2510 d="M24.185261,55.381763C24.318789,55.596738 24.540506,55.817335 25.25697,56.354035" />
2511 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2512 d="M24.837126,53.083666C24.937508,53.508563 25.203419,53.894889 25.919883,54.431589" />
2513 <path style="fill:url(#qh-rg4187);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2514 d="M26.373253,51.13876C25.434254,50.799197 24.631436,51.939557 24.842003,53.13876C24.194934,53.376139 23.986498,53.751869 23.935753,53.98251C23.76425,54.303582 23.88956,54.860443 24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 35.072241,58.356837 35.248253,57.54501C35.332791,57.155096 35.336522,56.752234 35.310753,56.38876C33.919091,57.021588 30.205405,54.587273 28.135491,53.429051C27.111254,52.726454 26.508492,52.129928 26.373253,51.13876z" />
2515 <path style="fill:url(#qh-rg4189);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2516 d="M24.842003,53.13876C24.194934,53.376139 23.986498,53.751869 23.935753,53.98251C23.76425,54.303582 23.88956,54.860443 24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 34.258325,59.600606 34.810753,58.57626C30.743086,58.240422 24.897533,54.231623 24.842003,53.13876z" />
2517 <path style="fill:url(#qh-rg4191);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2518 d="M24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 34.006633,59.942732 34.529503,59.04501C33.16893,59.630329 31.655193,58.561909 29.618542,57.958461C27.473816,57.292704 24.988581,56.538951 24.185753,55.38876z" />
2519 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2520 d="M34.525644,54.22865C34.525644,54.22865 35.150644,57.451327 33.400644,60.3224C31.650644,63.193473 31.744394,62.599723 31.744394,62.599723L37.306894,62.599723C37.306894,62.599723 37.869394,62.16615 38.556894,60.41615C38.677863,60.108229 38.765937,59.753867 38.828947,59.378941C39.124038,57.623063 38.869394,55.41615 38.869394,55.41615L34.525644,54.22865z" />
2521 </g>
2522 <g transform="translate(-30.633616,66.234875)" >
2523 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2524 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2525 <path style="opacity:1;fill:url(#qh-lg4193);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2526 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2527 </g>
2528 </g>
2529 </g>
2530 </g>
2531 <g transform="matrix(-1,0,0,1,72.876286,0)" >
2532 <g transform="translate(-0.5630786,1.1261572)" >
2533 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2534 d="M31.495135,8.6685872C32.004575,9.8582016 33.501097,13.159844 32.53343,16.248077C31.712867,18.866841 30.878338,20.125393 30.428001,20.546401C29.362955,21.542081 27.34136,22.69118 26.558815,21.48373C25.862574,20.409443 24.617423,19.662075 24.527195,18.479272C24.414093,16.996618 24.395933,17.193783 25.947251,14.249036C27.356183,11.574574 27.511554,10.892739 26.921448,8.9257341C26.681841,8.1270476 26.334166,6.845026 27.593755,6.3007391C29.221476,5.5973762 30.985695,7.4789715 31.495135,8.6685872z" />
2535 <path style="fill:url(#qh-rg4491);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2536 d="M42.087887,20.562684C42.087887,20.562684 38.552353,24.451771 37.580081,24.893713C36.607809,25.335655 34.386302,25.577464 32.80711,25.158878C31.374273,24.779085 30.043533,22.919884 29.183188,21.800121C27.91604,20.150891 26.885091,15.259383 26.885091,15.259383C25.877211,12.390802 28.810999,9.616702 28.387693,6.5973251L36.961362,4.1224513L42.264663,8.2767037L42.087887,20.562684z" />
2537 <path style="opacity:1;fill:url(#qh-rg4493);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2538 d="M31.495135,8.6685872C32.004575,9.8582016 33.501097,13.159844 32.53343,16.248077C31.712867,18.866841 30.878338,20.125393 30.428001,20.546401C29.362955,21.542081 27.34136,22.69118 26.558815,21.48373C25.862574,20.409443 24.617423,19.662075 24.527195,18.479272C24.414093,16.996618 24.395933,17.193783 25.947251,14.249036C27.356183,11.574574 27.511554,10.892739 26.921448,8.9257341C26.681841,8.1270476 26.334166,6.845026 27.593755,6.3007391C29.221476,5.5973762 30.985695,7.4789715 31.495135,8.6685872z" />
2539 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2540 d="M43.080773,21.125184C43.080773,21.125184 39.545239,25.014271 38.572967,25.456213C37.600695,25.898155 35.379188,26.139964 33.799996,25.721378C32.367159,25.341585 31.001791,23.508158 30.176074,22.362621C28.221426,19.650891 27.877977,16.071883 27.877977,16.071883C27.432597,13.015802 29.803885,10.179202 29.380579,7.1598251L37.954248,4.6849513L43.257549,8.8392037L43.080773,21.125184z" />
2541 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2542 d="M29.325193,9.723087C29.325193,9.723087 30.385853,9.2811454 31.269737,9.5463105C32.15362,9.811476 33.21428,10.165029 33.21428,10.165029" />
2543 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2544 d="M38.871134,9.6788927C38.871134,9.6788927 37.810474,9.2369513 36.92659,9.5021164C36.042707,9.767282 34.982047,10.120835 34.982047,10.120835" />
2545 <g transform="translate(-0.1081274,-0.287244)" >
2546 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2547 d="M33.5,11C33.5,11 34.575108,12.258045 33.125,14.875C32.610916,15.802749 32.25,15.625 32.25,15.625" />
2548 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2549 d="M33.875,15.625C31.21875,15.34375 30.625,14.40625 29.875,15.15625C29.125,15.90625 29.037639,16.9321 30,17.625C30.78125,18.1875 32.875,18.5625 32.875,18.5625" />
2550 </g>
2551 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2552 d="M30.844564,20.488108C30.844564,20.488108 30.969564,20.813888 33.094564,20.843505C34.911451,20.868827 35.719564,20.576957 35.719564,20.576957" />
2553 <path style="fill:url(#qh-rg4495);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2554 d="M43.080773,21.125184C43.080773,21.125184 39.545239,25.014271 38.572967,25.456213C37.600695,25.898155 35.379188,26.139964 33.799996,25.721378C32.367159,25.341585 31.001791,23.508158 30.176074,22.362621C28.221426,19.650891 27.877977,16.071883 27.877977,16.071883C27.432597,13.015802 29.803885,10.179202 29.380579,7.1598253L37.954248,4.6849515L43.257549,8.8392039L43.080773,21.125184z" />
2555 <g style="fill:#090" transform="translate(-24.685714,2.1898618)" >
2556 <g style="fill:#090" transform="translate(-5.1740183,35.808686)" >
2557 <path style="fill:#8df;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2558 d="M20.40357,12.884922A1.1711456,1.3706698 0 1 1 20.458338,12.849547" transform="translate(46.775403,-37.79916)" />
2559 <path style="fill:#8df;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2560 d="M20.40357,12.995936A1.1711456,1.4956698 0 1 1 20.458338,12.957335" transform="translate(40.989107,-37.622383)" />
2561 <path style="fill:url(#qh-rg4497);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2562 d="M20.40357,12.995936A1.1711456,1.4956698 0 1 1 20.458338,12.957335" transform="translate(41.012569,-37.622383)" />
2563 <path style="fill:url(#qh-rg4499);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2564 d="M20.40357,12.884922A1.1711456,1.3706698 0 1 1 20.458338,12.849547" transform="translate(46.72848,-37.846083)" />
2565 </g>
2566 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2567 d="M63.304505,9.1068896C62.909286,8.9515916 62.19965,8.0752246 61.281751,8.1311986C60.812841,8.1597926 60.22697,8.6975576 60.22697,8.6975576" />
2568 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2569 d="M54.004998,9.2094413C54.906611,8.6535083 54.990232,8.2971643 55.795494,8.2835193C56.18198,8.2769713 56.949814,8.9328283 56.949814,8.9328283" />
2570 </g>
2571 <g style="fill:#f90" transform="translate(0.3177063,0.3820552)" >
2572 <g style="fill:#fe0" >
2573 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2574 d="M41.117586,2.6330449C40.048043,1.9044915 36.89351,1.2929659 33.67688,1.6491299C30.949238,1.9511503 29.46703,2.5112838 28.967329,2.8723216C27.785536,3.7261758 26.744067,4.4982947 26.781669,5.9366615C26.809397,6.9973216 27.050291,7.6154759 28.193281,7.9230206C29.629172,8.3093764 31.38703,7.9616396 34.575009,7.0051273C37.470378,6.1364089 38.169363,6.1149623 39.986305,7.0720691C40.72406,7.4606949 41.915374,8.0482552 42.691572,6.916739C43.694625,5.4545216 42.18713,3.3615983 41.117586,2.6330449z" />
2575 <path style="opacity:1;fill:url(#qh-rg4505);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
2576 d="M40.431701,3.2837781C40.431701,3.2837781 38.96706,1.4170133 35.64132,2.6903825C33.990426,3.3224816 31.368073,4.8127508 30.627138,4.3308096" />
2577 </g>
2578 <g transform="translate(-1.4599078,-0.5308756)" >
2579 <g style="fill:#f90" transform="translate(7.1323287,-28.529315)" >
2580 <path style="opacity:0.50859106;fill:url(#qh-rg4537);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2581 d="M37.475429,34.852111C38.359453,35.797211 38.387068,37.22958 38.528638,40.46277C38.648687,43.204455 40.443916,46.169266 40.16382,46.718444C39.501394,48.017248 38.1911,48.280967 37.117548,49.259989C36.33357,49.974935 34.975455,50.843113 34.496186,49.760842C33.894101,48.401229 33.890966,45.305597 34.158918,41.988019C34.30796,40.142695 34.487074,38.299646 33.262531,36.651063C32.765316,35.981669 32.001932,34.894607 33.000962,33.953995C34.291972,32.738474 36.591405,33.90701 37.475429,34.852111z" />
2582 </g>
2583 <g style="fill:#f90" >
2584 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2585 d="M45.733915,7.2612608C46.617939,8.2063608 46.645554,9.6387297 46.787124,12.87192C46.907173,15.613605 48.702402,18.578416 48.422306,19.127594C47.75988,20.426398 46.449586,20.690117 45.376034,21.669139C44.592056,22.384085 43.233941,23.252263 42.754672,22.169992C42.152587,20.810379 42.149452,17.714747 42.417404,14.397169C42.566446,12.551845 42.74556,10.708796 41.521017,9.0602128C41.023802,8.3908183 40.260418,7.3037571 41.259448,6.3631444C42.550458,5.1476241 44.849891,6.3161598 45.733915,7.2612608z" />
2586 <path style="opacity:1;fill:url(#qh-rg4539);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2587 d="M43.951369,7.4715897C43.951369,7.4715897 45.315401,8.9043771 45.315401,10.672143C45.315401,12.439911 45.174632,16.0442 45.834815,17.184533" />
2588 <path style="opacity:1;fill:url(#qh-rg4541);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2589 d="M42.614058,9.066979C42.614058,9.066979 43.97809,10.499766 43.97809,12.267533C43.97809,14.035301 43.837321,17.63959 44.497504,18.779923" />
2590 </g>
2591 </g>
2592 </g>
2593 </g>
2594 </g>
2595 <path style="opacity:1;fill:#f00;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2596 d="M29.842882,28.058573C29.842882,28.058573 25.814236,30.213666 23.280382,31.339823C20.746529,32.46598 20.937981,33.025106 19.624132,35.183573C18.310282,37.342041 18.125289,37.525104 16.999132,39.683573C15.872974,41.842041 14.842882,46.930872 14.842882,49.558573C14.842882,52.186273 14.655382,55.058571 14.655382,55.058573L22.342882,55.058573C22.34572,55.008711 21.999506,52.920592 21.335912,49.673176C20.734277,46.72897 20.308861,41.090685 21.435019,38.622254C22.561175,36.153822 22.812529,33.645034 24.259097,32.105635C26.12883,30.115918 28.460593,29.287758 30.811632,28.058573L29.842882,28.058573z" />
2597 <path style="opacity:1;fill:url(#qh-lg3957);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2598 d="M29.842882,28.058573C29.842882,28.058573 25.814236,30.213666 23.280382,31.339823C20.746529,32.46598 20.937981,33.025106 19.624132,35.183573C18.310282,37.342041 18.125289,37.525104 16.999132,39.683573C15.872974,41.842041 14.842882,46.930872 14.842882,49.558573C14.842882,52.186273 14.655382,55.058571 14.655382,55.058573L22.342882,55.058573C22.34572,55.008711 21.999506,52.920592 21.335912,49.673176C20.734277,46.72897 20.308861,41.090685 21.435019,38.622254C22.561175,36.153822 22.812529,33.645034 24.259097,32.105635C26.12883,30.115918 28.460593,29.287758 30.811632,28.058573L29.842882,28.058573z" />
2599 <g transform="translate(12.059266,0.0977534)" >
2600 <path style="opacity:1;fill:#f00;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2601 d="M18.769286,27.737612C18.769286,27.737612 14.635013,28.417332 13.842349,29.051463C12.434652,30.177619 11.730803,31.773009 11.730803,31.773009L14.217734,33.931477L11.402341,35.902252C13.790766,42.615506 14.630579,45.859334 13.560809,55.01165L16.986204,55.01165L18.018514,42.846887L17.877745,36.089945L17.783899,32.476857C17.783899,32.476857 17.314667,29.708388 18.534671,28.676077C19.754674,27.643766 18.769286,27.831459 18.769286,27.737612z" />
2602 <path style="opacity:1;fill:url(#qh-lg4292);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2603 d="M18.769286,27.643765C18.769286,27.643765 14.635013,28.323485 13.842349,28.957616C12.434652,30.083772 11.730803,31.679162 11.730803,31.679162L14.217734,33.83763L11.402341,35.808405C13.790766,42.521659 14.630579,45.765487 13.560809,54.917803L16.986204,54.917803L18.018514,42.75304L17.877745,35.996098L17.783899,32.38301C17.783899,32.38301 17.314667,29.614541 18.534671,28.58223C19.754674,27.549919 18.769286,27.737612 18.769286,27.643765z" />
2604 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2605 d="M18.762153,27.631134C18.762154,27.631133 14.648567,28.309503 13.855903,28.943634C12.448207,30.06979 11.730903,31.693634 11.730903,31.693634L14.230903,33.849884L11.387153,35.818634C13.775579,42.531887 14.644423,45.760068 13.574653,54.912384L14.699653,54.912384C15.769423,45.760068 14.978751,42.71958 12.590326,36.006327L15.590519,33.849884L12.855903,31.318248C12.855903,31.318248 13.573206,30.06979 14.980903,28.943634C15.63005,28.424317 18.080581,27.969483 19.105903,27.787384C19.03202,27.666448 18.762153,27.681577 18.762153,27.631134z" />
2606 </g>
2607 </g>
2608 </g>
2609 <!-- }}} -->
2610 
2611 <!-- * Queen of Diamonds {{{ -->
2612 <linearGradient id="qd-lg3584" >
2613 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
2614 <stop offset="1" style="stop-color:#8df;stop-opacity:0" />
2615 </linearGradient>
2616 <linearGradient id="qd-lg3562" >
2617 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
2618 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
2619 </linearGradient>
2620 <linearGradient id="qd-lg3554" >
2621 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
2622 <stop offset="1" style="stop-color:#8df;stop-opacity:0" />
2623 </linearGradient>
2624 <linearGradient id="qd-lg3532" >
2625 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2626 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2627 </linearGradient>
2628 <linearGradient id="qd-lg4345" >
2629 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
2630 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
2631 </linearGradient>
2632 <linearGradient id="qd-lg4331" >
2633 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
2634 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
2635 </linearGradient>
2636 <linearGradient id="qd-lg4308" >
2637 <stop offset="0" style="stop-color:#000;stop-opacity:0.627451" />
2638 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2639 </linearGradient>
2640 <linearGradient id="qd-lg4279" >
2641 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
2642 <stop offset="1" style="stop-color:#8df;stop-opacity:0" />
2643 </linearGradient>
2644 <linearGradient id="qd-lg3965" >
2645 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2646 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2647 </linearGradient>
2648 <linearGradient id="qd-lg3951" >
2649 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2650 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2651 </linearGradient>
2652 <linearGradient id="qd-lg3921" >
2653 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2654 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2655 </linearGradient>
2656 <linearGradient id="qd-lg3895" >
2657 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2658 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2659 </linearGradient>
2660 <linearGradient id="qd-lg3730" >
2661 <stop offset="0" style="stop-color:#000;stop-opacity:0.50196081" />
2662 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2663 </linearGradient>
2664 <linearGradient id="qd-lg3718" >
2665 <stop offset="0" style="stop-color:#000;stop-opacity:0.78431374" />
2666 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2667 </linearGradient>
2668 <linearGradient id="qd-lg3710" >
2669 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2670 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2671 </linearGradient>
2672 <linearGradient id="qd-lg3655" >
2673 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2674 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2675 </linearGradient>
2676 <linearGradient id="qd-lg3631" >
2677 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
2678 <stop offset="1" style="stop-color:#fff;stop-opacity:1" />
2679 </linearGradient>
2680 <linearGradient id="qd-lg3623" >
2681 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2682 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2683 </linearGradient>
2684 <linearGradient id="qd-lg3615" >
2685 <stop offset="0" style="stop-color:#000;stop-opacity:0" />
2686 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2687 </linearGradient>
2688 <linearGradient id="qd-lg3284" >
2689 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2690 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2691 </linearGradient>
2692 <linearGradient id="qd-lg3268" >
2693 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2694 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:0" />
2695 </linearGradient>
2696 <linearGradient id="qd-lg2490" >
2697 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2698 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2699 </linearGradient>
2700 <linearGradient id="qd-lg2476" >
2701 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
2702 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
2703 </linearGradient>
2704 <linearGradient id="qd-lg2410" >
2705 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
2706 <stop offset="1" style="stop-color:#fe0;stop-opacity:0" />
2707 </linearGradient>
2708 <linearGradient id="qd-lg2390" >
2709 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
2710 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
2711 </linearGradient>
2712 <linearGradient xlink:href="#qd-lg2390" id="qd-lg2396" y1="45.921192" x1="38.306709" y2="47.151226" x2="40.122471" gradientUnits="userSpaceOnUse" />
2713 <linearGradient xlink:href="#qd-lg2410" id="qd-lg2416" y1="24.705362" x1="56.398613" y2="22.254944" x2="53.530396" gradientUnits="userSpaceOnUse" />
2714 <linearGradient xlink:href="#qd-lg3710" id="qd-lg3716" y1="25.133522" x1="59.812511" y2="16.904953" x2="58.436195" gradientUnits="userSpaceOnUse" />
2715 <radialGradient fx="61.513626" fy="21.913927" cx="61.513626" cy="21.913927" gradientTransform="matrix(0.3183732,-0.5135746,0.9873264,0.6120598,15.649562,37.610538)" xlink:href="#qd-lg3718" id="qd-rg3726" r="4.9192155" gradientUnits="userSpaceOnUse" />
2716 <linearGradient gradientTransform="translate(13.842348,4.7627067)" xlink:href="#qd-lg3631" id="qd-lg3775" y1="27.029493" x1="42.570045" y2="27.029493" gradientUnits="userSpaceOnUse" x2="41.228081" />
2717 <linearGradient gradientTransform="translate(13.809168,5.2769927)" xlink:href="#qd-lg3623" id="qd-lg3779" y1="26.699657" x1="47.746082" y2="26.699657" gradientUnits="userSpaceOnUse" x2="34.872349" />
2718 <linearGradient gradientTransform="translate(13.809168,5.2769927)" xlink:href="#qd-lg3615" id="qd-lg3781" y1="26.699657" x1="47.746082" y2="26.699657" gradientUnits="userSpaceOnUse" x2="34.872349" />
2719 <linearGradient xlink:href="#qd-lg3655" id="qd-lg3788" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2720 <linearGradient xlink:href="#qd-lg3655" id="qd-lg3790" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2721 <linearGradient xlink:href="#qd-lg3655" id="qd-lg3792" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2722 <linearGradient xlink:href="#qd-lg3655" id="qd-lg3794" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2723 <radialGradient fx="45.239136" fy="17.577971" cx="45.239136" cy="17.577971" gradientTransform="matrix(0.6095398,0.3734843,-0.7168506,1.1699263,29.542709,-17.769747)" xlink:href="#qd-lg3730" id="qd-rg3802" r="7.8177774" gradientUnits="userSpaceOnUse" />
2724 <linearGradient xlink:href="#qd-lg3895" id="qd-lg3901" y1="36.810795" x1="61.243805" y2="40.460564" x2="54.154648" gradientUnits="userSpaceOnUse" />
2725 <radialGradient fx="66.831192" fy="45.768784" cx="66.831192" cy="45.768784" gradientTransform="matrix(0.6648235,-9.2879663e-2,0.0979894,0.7014093,7.5797426,15.717763)" xlink:href="#qd-lg3921" id="qd-rg3929" r="19.197748" gradientUnits="userSpaceOnUse" />
2726 <linearGradient xlink:href="#qd-lg3951" id="qd-lg3957" y1="45.141983" x1="30.911633" y2="42.02309" x2="19.099651" gradientUnits="userSpaceOnUse" />
2727 <radialGradient fx="48.430504" fy="45.394047" cx="48.430504" cy="45.394047" gradientTransform="matrix(0.1098665,-0.2005846,0.3382322,0.1852605,10.139765,52.786318)" xlink:href="#qd-lg2476" id="qd-rg4185" r="5.8258683" gradientUnits="userSpaceOnUse" />
2728 <radialGradient fx="32.537888" fy="38.871136" cx="32.537888" cy="38.871136" gradientTransform="matrix(0.1418416,-9.1607927e-2,0.131729,0.2039635,17.24486,47.075436)" xlink:href="#qd-lg2490" id="qd-rg4187" r="5.8249979" gradientUnits="userSpaceOnUse" />
2729 <radialGradient fx="38.028793" fy="45.984734" cx="38.028793" cy="45.984734" gradientTransform="matrix(0.0916311,-6.7458121e-2,0.1194303,0.1622272,16.291425,49.028735)" xlink:href="#qd-lg3268" id="qd-rg4189" r="5.5679789" gradientUnits="userSpaceOnUse" />
2730 <radialGradient fx="35.506214" fy="45.83128" cx="35.506214" cy="45.83128" gradientTransform="matrix(-5.9173548e-2,0.0594561,-0.133011,-0.1323791,32.809744,59.714785)" xlink:href="#qd-lg3284" id="qd-rg4191" r="5.3648539" gradientUnits="userSpaceOnUse" />
2731 <linearGradient xlink:href="#qd-lg3655" id="qd-lg4193" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
2732 <radialGradient fx="51.449337" fy="38.253799" cx="51.449337" cy="38.253799" gradientTransform="matrix(0.183472,0.2469732,-0.9009348,0.6692894,75.69735,3.1514277)" xlink:href="#qd-lg4279" id="qd-rg4285" r="6.8695028" gradientUnits="userSpaceOnUse" />
2733 <linearGradient gradientTransform="translate(-12.106189,-0.1407696)" xlink:href="#qd-lg3965" id="qd-lg4292" y1="40.483089" x1="36.359337" y2="40.858475" gradientUnits="userSpaceOnUse" x2="28.535995" />
2734 <linearGradient xlink:href="#qd-lg4308" id="qd-lg4323" y1="43.695724" x1="40.52142" y2="39.050327" gradientUnits="userSpaceOnUse" x2="36.749252" />
2735 <radialGradient fx="19.37299" fy="11.349782" cx="19.37299" cy="11.349782" gradientTransform="matrix(0.605692,0.1436007,-0.2231595,0.9412632,10.17174,-2.1963401)" xlink:href="#qd-lg4331" id="qd-rg4337" r="1.2716698" gradientUnits="userSpaceOnUse" />
2736 <radialGradient fx="19.443375" fy="11.343052" cx="19.443375" cy="11.343052" gradientTransform="matrix(0.700599,0.1503133,-0.2084588,0.9716115,8.1859245,-2.6514099)" xlink:href="#qd-lg4345" id="qd-rg4351" r="1.2716698" gradientUnits="userSpaceOnUse" />
2737 <radialGradient fx="37.642452" fy="50.736328" cx="37.642452" cy="50.736328" gradientTransform="matrix(-0.1136898,0.3583827,-1.2597881,-0.3996468,119.42608,53.690351)" xlink:href="#qd-lg3532" id="qd-rg3542" r="9.8745427" gradientUnits="userSpaceOnUse" />
2738 <radialGradient fx="-3.9029794" fy="17.290564" cx="-3.9029794" cy="17.290564" gradientTransform="matrix(-0.5192406,-0.4681679,0.9127895,-1.0123655,16.208334,26.691134)" xlink:href="#qd-lg3730" id="qd-rg3552" r="7.7958586" gradientUnits="userSpaceOnUse" />
2739 <radialGradient fx="36.093254" fy="-1.1072143" cx="36.093254" cy="-1.1072143" gradientTransform="matrix(0.8342915,-0.1355796,0.0399828,0.2460348,6.0586293,7.4938576)" xlink:href="#qd-lg3554" id="qd-rg3560" r="4.4050465" gradientUnits="userSpaceOnUse" />
2740 <radialGradient fx="45.714222" fy="12.504" cx="45.714222" cy="12.504" gradientTransform="matrix(1.0000013,-0.3885077,1.9325846,4.974386,-24.997609,-35.942694)" xlink:href="#qd-lg3562" id="qd-rg3568" r="0.85403" gradientUnits="userSpaceOnUse" />
2741 <radialGradient fx="45.023331" fy="13.050349" cx="45.023331" cy="13.050349" gradientTransform="matrix(1.0000013,-0.3885077,1.9325846,4.974386,-26.523876,-36.739007)" xlink:href="#qd-lg3562" id="qd-rg3572" r="0.85403" gradientUnits="userSpaceOnUse" />
2742 <radialGradient fx="30.525166" fy="13.472676" cx="30.525166" cy="13.472676" gradientTransform="matrix(1,0,0,1.873303,0,-12.291636)" xlink:href="#qd-lg3584" id="qd-rg3590" r="4.2850684" gradientUnits="userSpaceOnUse" />
2743 
2744 <g id="img_queen_diamond" transform="scale(1.8) translate(-36, -58)" >
2745 <g>
2746 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2747 d="M43.357051,28.066075L51.990922,30.130696L53.680158,55.058573L15.484661,55.058573C15.484661,55.058573 15.672354,52.184607 15.672354,49.556907C15.672354,46.929207 16.704664,41.8615 17.830822,39.703032C18.956979,37.544564 19.144672,37.356871 20.458522,35.198403C21.772372,33.039935 21.584679,32.476857 24.118532,31.3507C26.652386,30.224543 30.687783,28.066075 30.687783,28.066075L43.357051,28.066075z" />
2748 <path style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2749 d="M31.495135,8.6685872C32.004575,9.8582016 33.501097,13.159844 32.53343,16.248077C31.712867,18.866841 30.878338,20.125393 30.428001,20.546401C29.362955,21.542081 27.34136,22.69118 26.558815,21.48373C25.862574,20.409443 24.617423,19.662075 24.527195,18.479272C24.414093,16.996618 24.395933,17.193783 25.947251,14.249036C27.356183,11.574574 27.511554,10.892739 26.921448,8.9257341C26.681841,8.1270476 26.334166,6.845026 27.593755,6.3007391C29.221476,5.5973762 30.985695,7.4789715 31.495135,8.6685872z" />
2750 <path style="opacity:0.49484536000000001;fill:url(#qd-rg3590);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2751 d="M31.495135,8.6685872C32.004575,9.8582016 33.501097,13.159844 32.53343,16.248077C31.712867,18.866841 30.878338,20.125393 30.428001,20.546401C29.362955,21.542081 27.34136,22.69118 26.558815,21.48373C25.862574,20.409443 24.617423,19.662075 24.527195,18.479272C24.414093,16.996618 24.395933,17.193783 25.947251,14.249036C27.356183,11.574574 27.511554,10.892739 26.921448,8.9257341C26.681841,8.1270476 26.334166,6.845026 27.593755,6.3007391C29.221476,5.5973762 30.985695,7.4789715 31.495135,8.6685872z" />
2752 <path style="opacity:1;fill:url(#qd-rg3929);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2753 d="M43.357051,28.116905L51.990922,30.181526L53.680158,55.109403L15.484661,55.109403C15.484661,55.109403 15.672354,52.235437 15.672354,49.607737C15.672354,46.980037 16.704664,41.91233 17.830822,39.753862C18.956979,37.595394 19.144672,37.407701 20.458522,35.249233C21.772372,33.090765 21.584679,32.527687 24.118532,31.40153C26.652386,30.275373 30.687783,28.116905 30.687783,28.116905L43.357051,28.116905z" />
2754 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2755 d="M52.272461,30.130696C52.131691,30.083773 51.709383,29.943003 50.20784,32.007625C48.706297,34.072246 47.58014,36.981485 47.204754,38.764568C46.829368,40.54765 49.269375,45.709203 49.269375,45.709203L52.554,55.058573L59.498636,55.058573C59.498636,55.058573 60.601412,54.060907 60.812486,53.404611C61.587794,50.99393 60.929795,49.392676 59.592483,45.052278C59.242951,43.91783 53.933362,34.831859 52.741693,31.819932C52.492721,31.190659 52.413231,30.177619 52.272461,30.130696z" />
2756 <path style="opacity:1;fill:url(#qd-lg3901);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2757 d="M52.272461,30.130696C52.131691,30.083773 51.709383,29.943003 50.20784,32.007625C48.706297,34.072246 47.58014,36.981485 47.204754,38.764568C46.829368,40.54765 49.269375,45.709203 49.269375,45.709203L52.554,55.058573L59.498636,55.058573C59.498636,55.058573 60.601412,54.060907 60.812486,53.404611C61.587794,50.99393 60.929795,49.392676 59.592483,45.052278C59.242951,43.91783 53.933362,34.831859 52.741693,31.819932C52.492721,31.190659 52.413231,30.177619 52.272461,30.130696z" />
2758 <g transform="translate(-14.170811,-4.786168)" >
2759 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2760 d="M56.292958,32.29323C56.292958,32.29323 57.772302,32.621693 57.374145,33.749804C56.975989,34.877914 55.096219,37.654155 53.724376,38.9922C52.068203,40.607569 50.522533,41.596808 48.38244,43.089895C46.149099,44.648039 43.903177,46.092661 43.903177,46.092661C43.903177,46.092661 44.019307,43.28855 44.102256,41.712938C44.2389,39.117355 44.007164,37.438696 43.936358,35.607868C43.892793,34.481408 44.168615,33.749804 44.699491,33.218928C45.230366,32.688053 56.226598,31.895073 56.292958,32.29323z" />
2761 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2762 d="M45.495804,27.395886L55.715158,27.395886L55.574388,33.561836C52.296902,34.472675 49.731134,40.027771 45.495804,34.173659L45.495804,27.395886z" />
2763 <path style="fill:url(#qd-lg3779);fill-opacity:1;fill-rule:nonzero;stroke:url(#qd-lg3781);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
2764 d="M45.462624,27.561785L55.681978,27.561785L55.681978,33.799573C52.404492,34.637845 49.697954,39.187287 45.462624,33.799573L45.462624,27.561785z" />
2765 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2766 d="M47.902141,35.811699C47.902141,35.811699 47.894274,36.234377 47.849289,36.41432C47.716571,36.945195 46.904963,38.034742 45.998598,39.137707C45.017584,40.331514 44.432821,42.067315 43.998598,43.637707C43.951962,44.688689 43.904848,46.106458 43.904848,46.106457C43.904848,46.106457 44.882189,45.44613 46.092348,44.637707C46.518408,43.452607 47.307286,41.189944 47.904848,40.512707C48.651392,39.666624 49.634774,38.377311 49.833851,37.746895C50.032929,37.11648 50.226219,36.654296 50.226219,36.654297L50.313028,36.219879C48.367157,36.357613 48.213829,35.967622 47.902141,35.811699z" />
2767 <path style="fill:url(#qd-lg3775);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2768 d="M56.312394,26.914781L56.312394,32.289896C56.312394,32.289896 55.317002,34.678836 53.857095,35.475149C52.397187,36.271462 50.207325,36.66962 50.207325,36.66962C50.017562,35.054873 50.107461,33.440127 50.074606,31.82538C50.074606,31.82538 52.065389,32.157176 53.525297,30.697269C54.255251,29.967315 55.245295,28.446711 55.730254,27.724549C55.722519,27.213541 55.491238,25.95251 56.312394,26.914781z" />
2769 <g transform="translate(-23.869313,46.867119)" >
2770 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2771 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2772 <path style="opacity:1;fill:url(#qd-lg3794);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2773 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2774 </g>
2775 <path style="fill:url(#qd-rg4285);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2776 d="M56.292958,32.29323C56.292958,32.29323 57.819225,32.762463 57.421068,33.890574C57.022912,35.018684 55.143142,37.794925 53.771299,39.13297C52.115126,40.748339 50.522533,41.596808 48.38244,43.089895C46.149099,44.648039 43.903177,46.092661 43.903177,46.092661C43.903177,46.092661 44.019307,43.28855 44.102256,41.712938C44.2389,39.117355 44.007164,37.438696 43.936358,35.607868C43.892793,34.481408 44.168615,33.749804 44.699491,33.218928C45.230366,32.688053 56.226598,31.895073 56.292958,32.29323z" />
2777 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2778 d="M45.164004,28.374688C45.514905,26.874055 45.297126,30.8708 45.296723,32.356255C45.296723,32.356255 45.165705,34.612477 46.082826,35.40879C46.999948,36.205103 47.975773,36.404182 47.975773,36.404182L48.01746,31.82538C48.01746,31.82538 47.233058,31.825379 46.315937,30.365472C45.398815,28.905564 45.62852,28.772845 45.164004,28.374688z" />
2779 <g transform="translate(-28.099727,46.485552)" >
2780 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2781 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2782 <path style="opacity:1;fill:url(#qd-lg3792);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2783 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2784 </g>
2785 <g transform="translate(-26.480912,49.263538)" >
2786 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2787 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2788 <path style="opacity:1;fill:url(#qd-lg3790);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2789 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2790 </g>
2791 <g transform="translate(-29.014765,53.111241)" >
2792 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2793 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2794 <path style="opacity:1;fill:url(#qd-lg3788);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2795 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
2796 </g>
2797 </g>
2798 <path style="fill:url(#qd-rg3552);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2799 d="M42.087887,20.562684C42.087887,20.562684 38.552353,24.451771 37.580081,24.893713C36.607809,25.335655 34.386302,25.577464 32.80711,25.158878C31.374273,24.779085 30.043533,22.919884 29.183188,21.800121C27.91604,20.150891 26.885091,15.259383 26.885091,15.259383C25.877211,12.390802 28.810999,9.616702 28.387693,6.5973251L36.961362,4.1224513L42.264663,8.2767037L42.087887,20.562684z" />
2800 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2801 d="M42.900387,21.125184C42.900387,21.125184 39.364853,25.014271 38.392581,25.456213C37.420309,25.898155 35.198802,26.139964 33.61961,25.721378C32.186773,25.341585 30.821405,23.508158 29.995688,22.362621C28.04104,19.650891 27.697591,16.071883 27.697591,16.071883C27.252211,13.015802 29.623499,10.179202 29.200193,7.1598251L37.773862,4.6849513L43.077163,8.8392037L42.900387,21.125184z" />
2802 <g transform="translate(-0.1081274,-0.287244)" >
2803 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2804 d="M29.43332,10.010331C29.43332,10.010331 30.49398,9.5683894 31.377864,9.8335545C32.261747,10.09872 33.322407,10.452273 33.322407,10.452273" />
2805 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2806 d="M38.979261,9.9661367C38.979261,9.9661367 37.918601,9.5241953 37.034717,9.7893604C36.150834,10.054526 35.090174,10.408079 35.090174,10.408079" />
2807 <g>
2808 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2809 d="M33.5,11C33.5,11 34.575108,12.258045 33.125,14.875C32.610916,15.802749 32.25,15.625 32.25,15.625" />
2810 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2811 d="M33.875,15.625C31.21875,15.34375 30.625,14.40625 29.875,15.15625C29.125,15.90625 29.037639,16.9321 30,17.625C30.78125,18.1875 32.875,18.5625 32.875,18.5625" />
2812 </g>
2813 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2814 d="M31.375,21.625C31.375,21.625 31.5,20.25 33.625,20.125C35.441887,20.018124 36.25,21.25 36.25,21.25" />
2815 </g>
2816 <path style="fill:url(#qd-rg3802);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2817 d="M42.900387,21.125184C42.900387,21.125184 39.364853,25.014271 38.392581,25.456213C37.420309,25.898155 35.198802,26.139964 33.61961,25.721378C32.186773,25.341585 30.821405,23.508158 29.995688,22.362621C28.04104,19.650891 27.697591,16.071883 27.697591,16.071883C27.252211,13.015802 29.623499,10.179202 29.200193,7.1598251L37.773862,4.6849513L43.077163,8.8392037L42.900387,21.125184z" />
2818 <path style="fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2819 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
2820 <path style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2821 d="M48.622111,47.646903L48.586815,47.771903C48.586815,47.771903 48.849519,49.984776 48.516224,51.740653C48.445056,52.115579 48.370488,52.463984 48.233858,52.771903C47.457351,54.521903 46.822028,54.959403 46.822028,54.959403L46.716141,54.959403L46.680845,55.053153L48.433178,55.053153C48.648262,54.848075 48.969049,54.459597 49.551427,53.147096C49.688057,52.839177 49.715704,52.30308 49.78687,51.928153C50.116309,50.192594 49.957205,48.228614 49.951308,48.178346C49.436,48.036962 48.622111,47.646903 48.622111,47.646903z" />
2822 <g transform="translate(27.966237,0.0469232)" >
2823 <g transform="translate(-27.778543,0)" >
2824 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2825 d="M43.116389,27.272852C43.116389,27.272852 45.57881,27.599813 46.547601,29.606005C47.050925,30.648298 47.835416,30.691561 46.333874,35.853114L41.989125,34.915012L43.000708,38.709922C35.895444,42.70503 33.553702,44.305226 27.641994,51.257793L28.790213,45.833797L29.58339,41.318072C29.58339,41.318072 35.339041,37.755412 38.516325,35.10178C39.590799,34.204392 40.679567,32.854665 41.568239,31.571713C42.096513,30.809057 42.37275,29.777259 42.097031,27.981932C41.821314,26.186606 41.868414,26.976869 43.116389,27.272852z" />
2826 <path style="opacity:1;fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2827 d="M42.25,27.34375C42.519647,27.615484 43.016483,28.066268 43.203366,28.45327C43.706691,29.495563 44.533081,29.213254 43.031539,34.374807L38.593943,33.48423L39.359327,37.922405C33.355024,41.298471 30.698515,42.963466 26.468654,47.594232L25.75,51.0625C31.661708,44.109933 33.988485,42.495108 41.09375,38.5L40.09375,34.71875L44.4375,35.65625C45.939042,30.494697 45.159576,30.448544 44.65625,29.40625C44.095546,28.245132 43.04439,27.642045 42.25,27.34375z" transform="translate(1.8995928,0.2094034)" />
2828 <path style="opacity:1;fill:url(#qd-lg4323);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2829 d="M43.116389,27.272852C43.116389,27.272852 45.57881,27.599813 46.547601,29.606005C47.050925,30.648298 47.835416,30.691561 46.333874,35.853114L41.989125,34.915012L43.000708,38.709922C35.895444,42.70503 33.553702,44.305226 27.641994,51.257793L28.790213,45.833797L29.58339,41.318072C29.58339,41.318072 35.339041,37.755412 38.516325,35.10178C39.590799,34.204392 40.679567,32.854665 41.568239,31.571713C42.096513,30.809057 42.37275,29.777259 42.097031,27.981932C41.821314,26.186606 41.868414,26.976869 43.116389,27.272852z" />
2830 </g>
2831 </g>
2832 <g style="fill:#090" transform="translate(-24.685714,2.1898618)" >
2833 <g style="fill:#090" transform="translate(-5.1740183,35.808686)" >
2834 <path style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2835 d="M20.40357,12.884922A1.1711456,1.3706698 0 1 1 20.458338,12.849547" transform="translate(46.775403,-37.79916)" />
2836 <path style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2837 d="M20.40357,12.995936A1.1711456,1.4956698 0 1 1 20.458338,12.957335" transform="translate(40.989107,-37.622383)" />
2838 <path style="fill:url(#qd-rg4337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2839 d="M20.40357,12.995936A1.1711456,1.4956698 0 1 1 20.458338,12.957335" transform="translate(40.942184,-37.645844)" />
2840 <path style="fill:url(#qd-rg4351);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2841 d="M20.40357,12.884922A1.1711456,1.3706698 0 1 1 20.458338,12.849547" transform="translate(46.775403,-37.822622)" />
2842 </g>
2843 <path style="stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible;fill:none"
2844 d="M63.304505,9.1068896C62.909286,8.9515916 62.19965,8.0752246 61.281751,8.1311986C60.812841,8.1597926 60.22697,8.6975576 60.22697,8.6975576" />
2845 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2846 d="M54.004998,9.2094413C54.906611,8.6535083 54.990232,8.2971643 55.795494,8.2835193C56.18198,8.2769713 56.949814,8.9328283 56.949814,8.9328283" />
2847 </g>
2848 <g>
2849 <g>
2850 <g>
2851 <g>
2852 <path style="opacity:1;fill:#f90;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2853 d="M49.259851,28.056443L30.838659,55.058573L34.411608,55.058573L51.544196,29.520767L49.259851,28.056443z" />
2854 <g>
2855 <path style="opacity:1;fill:url(#qd-lg2396);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2856 d="M49.259851,28.056443L30.838659,55.058573L34.411608,55.058573L51.544196,29.520767L49.259851,28.056443z" />
2857 </g>
2858 </g>
2859 <g>
2860 <path style="opacity:1;fill:#ffee80;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2861 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696
2862 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529
2863 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358
2864 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817
2865 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395
2866 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781
2867 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074
2868 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z"
2869 />
2870 <path style="opacity:1;fill:url(#qd-lg2416);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2871 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696
2872 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529
2873 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358
2874 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817
2875 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395
2876 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781
2877 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074
2878 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z"
2879 />
2880 <path style="opacity:1;fill:url(#qd-rg3726);fill-opacity:1;fill-rule:nonzero;stroke:url(#qd-lg3716);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2881 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696
2882 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529
2883 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358
2884 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817
2885 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395
2886 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781
2887 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074
2888 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z"
2889 />
2890 </g>
2891 </g>
2892 <g transform="translate(-9.384643e-2,-4.6923215e-2)" >
2893 <g transform="translate(9.6955777,-7.6075101)" >
2894 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2895 d="M35.078539,55.058573C34.602169,54.599318 32.875498,51.774567
2896 32.474943,51.378577L31.937428,52.208646C31.710347,52.557154 30.886542,52.2987
2897 30.299648,51.931795C29.756656,51.630948 29.519253,51.328414
2898 29.450331,51.178493C29.36948,51.002624 29.488779,50.671888
2899 29.557208,50.575243C29.179207,50.251203 28.706412,50.020781
2900 28.184865,49.985933C27.477357,49.938659 26.457542,49.871701
2901 26.373703,51.138545C25.434704,50.798983 24.618516,51.928225
2902 24.829083,53.127428C24.182014,53.364806 23.971463,53.736539
2903 23.920718,53.96718C23.749216,54.288251 23.896944,54.873032
2904 24.193137,55.401349C23.870612,56.062249 23.585699,56.974142
2905 24.075733,57.588499C25.212836,59.014086 27.22186,59.680341
2906 28.689407,59.97385C30.156954,60.26736 33.408661,60.855385
2907 33.408661,60.855385C33.408661,60.855385 35.082431,58.341624
2908 35.258443,57.529797C35.514395,56.349263 35.078539,55.058573
2909 35.078539,55.058573z" />
2910 <path style="fill:url(#qd-rg4185);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2911 d="M35.078539,55.058573C34.602169,54.599318 32.875498,51.774567
2912 32.474943,51.378577L31.937428,52.208646C31.710347,52.557154 30.886542,52.2987
2913 30.299648,51.931795C29.756656,51.630948 29.519253,51.328414
2914 29.450331,51.178493C29.36948,51.002624 29.488779,50.671888
2915 29.557208,50.575243C29.179207,50.251203 28.706412,50.020781
2916 28.184865,49.985933C27.477357,49.938659 26.457542,49.871701
2917 26.373703,51.138545C25.434704,50.798983 24.618516,51.928225
2918 24.829083,53.127428C24.182014,53.364806 23.971463,53.736539
2919 23.920718,53.96718C23.749216,54.288251 23.896944,54.873032
2920 24.193137,55.401349C23.870612,56.062249 23.585699,56.974142
2921 24.075733,57.588499C25.212836,59.014086 27.22186,59.680341
2922 28.689407,59.97385C30.156954,60.26736 33.408661,60.855385
2923 33.408661,60.855385C33.408661,60.855385 35.082431,58.341624
2924 35.258443,57.529797C35.514395,56.349263 35.078539,55.058573
2925 35.078539,55.058573z" />
2926 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2927 d="M34.592003,54.29501C34.592003,54.29501 35.217003,57.517687
2928 33.467003,60.38876C31.717003,63.259833 31.810753,62.666083
2929 31.810753,62.666083L37.373253,62.666083C37.373253,62.666083 37.935753,62.23251
2930 38.623253,60.48251C38.744222,60.174589 38.832296,59.820227
2931 38.895306,59.445301C39.190397,57.689423 38.935753,55.48251
2932 38.935753,55.48251L34.592003,54.29501z" />
2933 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2934 d="M26.361825,51.139122C26.472311,52.089297 27.011083,52.569131 27.643456,53.083666" />
2935 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2936 d="M24.185261,55.381763C24.318789,55.596738 24.540506,55.817335 25.25697,56.354035" />
2937 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2938 d="M24.837126,53.083666C24.937508,53.508563 25.203419,53.894889 25.919883,54.431589" />
2939 <path style="fill:url(#qd-rg4187);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2940 d="M26.373253,51.13876C25.434254,50.799197 24.631436,51.939557
2941 24.842003,53.13876C24.194934,53.376139 23.986498,53.751869
2942 23.935753,53.98251C23.76425,54.303582 23.88956,54.860443
2943 24.185753,55.38876C23.863227,56.04966 23.570719,56.961903
2944 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001
2945 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751
2946 33.404503,60.85751C33.404503,60.85751 35.072241,58.356837
2947 35.248253,57.54501C35.332791,57.155096 35.336522,56.752234
2948 35.310753,56.38876C33.919091,57.021588 30.205405,54.587273
2949 28.135491,53.429051C27.111254,52.726454 26.508492,52.129928
2950 26.373253,51.13876z" />
2951 <path style="fill:url(#qd-rg4189);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2952 d="M24.842003,53.13876C24.194934,53.376139 23.986498,53.751869
2953 23.935753,53.98251C23.76425,54.303582 23.88956,54.860443
2954 24.185753,55.38876C23.863227,56.04966 23.570719,56.961903
2955 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001
2956 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751
2957 33.404503,60.85751C33.404503,60.85751 34.258325,59.600606
2958 34.810753,58.57626C30.743086,58.240422 24.897533,54.231623 24.842003,53.13876z"
2959 />
2960 <path style="fill:url(#qd-rg4191);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2961 d="M24.185753,55.38876C23.863227,56.04966 23.570719,56.961903
2962 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001
2963 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751
2964 33.404503,60.85751C33.404503,60.85751 34.006633,59.942732
2965 34.529503,59.04501C33.16893,59.630329 31.655193,58.561909
2966 29.618542,57.958461C27.473816,57.292704 24.988581,56.538951
2967 24.185753,55.38876z" />
2968 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2969 d="M34.525644,54.22865C34.525644,54.22865 35.150644,57.451327
2970 33.400644,60.3224C31.650644,63.193473 31.744394,62.599723
2971 31.744394,62.599723L37.306894,62.599723C37.306894,62.599723 37.869394,62.16615
2972 38.556894,60.41615C38.677863,60.108229 38.765937,59.753867
2973 38.828947,59.378941C39.124038,57.623063 38.869394,55.41615
2974 38.869394,55.41615L34.525644,54.22865z" />
2975 <path style="fill:url(#qd-rg3542);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2976 d="M42.21875 46.375C42.218749 46.374999 42.84375 49.597677 41.09375
2977 52.46875C39.948529 54.347613 39.640275 54.701354 39.53125 54.75L44.8125
2978 54.75L44.78125 54.90625L56.3125 54.90625L58.0625 54.90625C59.711503 53.041621
2979 58.704879 52.100738 58.4375 51.8125C58.182036 51.537109 57.291827 51.015993
2980 54.5 50C52.551369 49.290861 50.525119 48.759088 48.8125 48.21875C48.122696
2981 48.001113 46.5 47.46875 46.5 47.46875L46.46875 47.53125L42.21875
2982 46.375zM39.53125 54.75L39.4375 54.75C39.4375 54.75 39.473675 54.775689 39.53125
2983 54.75z" 
2984 transform="translate(-7.7021385,7.8638367)" />
2985 </g>
2986 <g transform="translate(-30.633616,66.234875)" >
2987 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
2988 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" 
2989 transform="translate(37.512582,-42.485979)" />
2990 <path style="opacity:1;fill:url(#qd-lg4193);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
2991 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" 
2992 transform="translate(37.512582,-42.485979)" />
2993 </g>
2994 </g>
2995 </g>
2996 </g>
2997 <g style="fill:#f90" transform="translate(-5.7679456e-2,-0.1810234)" >
2998 <g style="fill:#fff" >
2999 <path style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3000 d="M45.733915,7.2612608C46.617939,8.2063608 46.645554,9.6387297
3001 46.787124,12.87192C46.907173,15.613605 48.304245,19.441089
3002 48.024149,19.990267C47.361723,21.289071 45.387835,22.017306
3003 44.314283,22.996328C43.530305,23.711274 43.233941,23.252263
3004 42.754672,22.169992C42.152587,20.810379 42.149452,17.714747
3005 42.417404,14.397169C42.566446,12.551845 42.74556,10.708796
3006 41.521017,9.0602128C41.023802,8.3908183 40.260418,7.3037571
3007 41.259448,6.3631444C42.550458,5.1476241 44.849891,6.3161598
3008 45.733915,7.2612608z" />
3009 <path style="opacity:1;fill:url(#qd-rg3568);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3010 d="M43.065926,6.6934499C43.065926,6.6934499 45.007631,7.7824587
3011 45.44812,9.4944655C46.244433,12.589422 45.47568,16.803903 46.232971,19.125749"
3012 />
3013 <path style="opacity:1;fill:url(#qd-rg3572);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3014 d="M42.800488,8.1533577C42.800488,8.1533577 44.32001,9.4520449 44.32001,11.219811C44.32001,12.987579 43.980162,20.241638 44.640345,21.381971" />
3015 </g>
3016 <g style="fill:#f90" >
3017 <path style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3018 d="M41.117586,2.6330449C40.048043,1.9044915 36.89351,1.2929659
3019 33.67688,1.6491299C30.949238,1.9511503 29.46703,2.5112838
3020 28.967329,2.8723216C27.785536,3.7261758 26.744067,4.4982947
3021 26.781669,5.9366615C26.809397,6.9973216 27.050291,7.6154759
3022 28.193281,7.9230206C29.629172,8.3093764 31.38703,7.9616396
3023 34.575009,7.0051273C37.470378,6.1364089 38.169363,6.1149623
3024 39.986305,7.0720691C40.72406,7.4606949 41.915374,8.0482552
3025 42.691572,6.916739C43.694625,5.4545216 42.18713,3.3615983 41.117586,2.6330449z"
3026 />
3027 <path style="opacity:1;fill:url(#qd-rg3560);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3028 d="M39.237231,2.7197228C39.237231,2.7197228 37.301547,2.0832184
3029 35.64132,2.6903825C33.981094,3.2975467 31.368073,4.8127508 30.627138,4.3308096"
3030 />
3031 </g>
3032 </g>
3033 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3034 d="M29.842882,28.058573C29.842882,28.058573 25.814236,30.213666
3035 23.280382,31.339823C20.746529,32.46598 20.937981,33.025106
3036 19.624132,35.183573C18.310282,37.342041 18.125289,37.525104
3037 16.999132,39.683573C15.872974,41.842041 14.842882,46.930872
3038 14.842882,49.558573C14.842882,52.186273 14.655382,55.058571
3039 14.655382,55.058573L22.342882,55.058573C22.34572,55.008711 21.999506,52.920592
3040 21.335912,49.673176C20.734277,46.72897 20.308861,41.090685
3041 21.435019,38.622254C22.561175,36.153822 22.812529,33.645034
3042 24.259097,32.105635C26.12883,30.115918 28.460593,29.287758
3043 30.811632,28.058573L29.842882,28.058573z" />
3044 <path style="opacity:1;fill:url(#qd-lg3957);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3045 d="M29.842882,28.058573C29.842882,28.058573 25.814236,30.213666
3046 23.280382,31.339823C20.746529,32.46598 20.937981,33.025106
3047 19.624132,35.183573C18.310282,37.342041 18.125289,37.525104
3048 16.999132,39.683573C15.872974,41.842041 14.842882,46.930872
3049 14.842882,49.558573C14.842882,52.186273 14.655382,55.058571
3050 14.655382,55.058573L22.342882,55.058573C22.34572,55.008711 21.999506,52.920592
3051 21.335912,49.673176C20.734277,46.72897 20.308861,41.090685
3052 21.435019,38.622254C22.561175,36.153822 22.812529,33.645034
3053 24.259097,32.105635C26.12883,30.115918 28.460593,29.287758
3054 30.811632,28.058573L29.842882,28.058573z" />
3055 <g transform="translate(12.059266,0.0977534)" >
3056 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3057 d="M18.769286,27.737612C18.769286,27.737612 14.635013,28.417332
3058 13.842349,29.051463C12.434652,30.177619 11.730803,31.773009
3059 11.730803,31.773009L14.217734,33.931477L11.402341,35.902252C13.790766,42.615506
3060 14.630579,45.859334
3061 13.560809,55.01165L16.986204,55.01165L18.018514,42.846887L17.877745,36.089945L17.783899,32.476857C17.783899,32.476857
3062 17.314667,29.708388 18.534671,28.676077C19.754674,27.643766 18.769286,27.831459
3063 18.769286,27.737612z" />
3064 <path style="opacity:1;fill:url(#qd-lg4292);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3065 d="M18.769286,27.643765C18.769286,27.643765 14.635013,28.323485
3066 13.842349,28.957616C12.434652,30.083772 11.730803,31.679162
3067 11.730803,31.679162L14.217734,33.83763L11.402341,35.808405C13.790766,42.521659
3068 14.630579,45.765487
3069 13.560809,54.917803L16.986204,54.917803L18.018514,42.75304L17.877745,35.996098L17.783899,32.38301C17.783899,32.38301
3070 17.314667,29.614541 18.534671,28.58223C19.754674,27.549919 18.769286,27.737612
3071 18.769286,27.643765z" />
3072 <path style="opacity:1;fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3073 d="M18.762153,27.631134C18.762154,27.631133 14.648567,28.309503
3074 13.855903,28.943634C12.448207,30.06979 11.730903,31.693634
3075 11.730903,31.693634L14.230903,33.849884L11.387153,35.818634C13.775579,42.531887
3076 14.644423,45.760068 13.574653,54.912384L14.699653,54.912384C15.769423,45.760068
3077 14.978751,42.71958
3078 12.590326,36.006327L15.590519,33.849884L12.855903,31.318248C12.855903,31.318248
3079 13.573206,30.06979 14.980903,28.943634C15.63005,28.424317 18.080581,27.969483
3080 19.105903,27.787384C19.03202,27.666448 18.762153,27.681577
3081 18.762153,27.631134z" />
3082 </g>
3083 </g>
3084 </g>
3085 <!-- }}} -->
3086 
3087 <!-- * Queen of Spades {{{ -->
3088 <linearGradient id="qs-lg4345" >
3089 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
3090 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
3091 </linearGradient>
3092 <linearGradient id="qs-lg4331" >
3093 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
3094 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
3095 </linearGradient>
3096 <linearGradient id="qs-lg4308" >
3097 <stop offset="0" style="stop-color:#000;stop-opacity:0.627451" />
3098 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3099 </linearGradient>
3100 <linearGradient id="qs-lg4279" >
3101 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
3102 <stop offset="1" style="stop-color:#8df;stop-opacity:0" />
3103 </linearGradient>
3104 <linearGradient id="qs-lg4123" >
3105 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
3106 <stop offset="1" style="stop-color:#f00;stop-opacity:0" />
3107 </linearGradient>
3108 <linearGradient id="qs-lg4107" >
3109 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
3110 <stop offset="1" style="stop-color:#f00;stop-opacity:0" />
3111 </linearGradient>
3112 <linearGradient id="qs-lg4099" >
3113 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
3114 <stop offset="1" style="stop-color:#f00;stop-opacity:0" />
3115 </linearGradient>
3116 <linearGradient id="qs-lg3965" >
3117 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3118 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3119 </linearGradient>
3120 <linearGradient id="qs-lg3951" >
3121 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3122 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3123 </linearGradient>
3124 <linearGradient id="qs-lg3941" >
3125 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3126 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3127 </linearGradient>
3128 <linearGradient id="qs-lg3921" >
3129 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3130 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3131 </linearGradient>
3132 <linearGradient id="qs-lg3895" >
3133 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3134 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3135 </linearGradient>
3136 <linearGradient id="qs-lg3730" >
3137 <stop offset="0" style="stop-color:#000;stop-opacity:0.50196081" />
3138 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3139 </linearGradient>
3140 <linearGradient id="qs-lg3718" >
3141 <stop offset="0" style="stop-color:#000;stop-opacity:0.78431374" />
3142 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3143 </linearGradient>
3144 <linearGradient id="qs-lg3710" >
3145 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3146 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3147 </linearGradient>
3148 <linearGradient id="qs-lg3655" >
3149 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3150 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3151 </linearGradient>
3152 <linearGradient id="qs-lg3631" >
3153 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
3154 <stop offset="1" style="stop-color:#fff;stop-opacity:1" />
3155 </linearGradient>
3156 <linearGradient id="qs-lg3623" >
3157 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3158 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3159 </linearGradient>
3160 <linearGradient id="qs-lg3615" >
3161 <stop offset="0" style="stop-color:#000;stop-opacity:0" />
3162 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3163 </linearGradient>
3164 <linearGradient id="qs-lg3284" >
3165 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3166 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3167 </linearGradient>
3168 <linearGradient id="qs-lg3268" >
3169 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3170 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:0" />
3171 </linearGradient>
3172 <linearGradient id="qs-lg2490" >
3173 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3174 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3175 </linearGradient>
3176 <linearGradient id="qs-lg2476" >
3177 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3178 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3179 </linearGradient>
3180 <linearGradient id="qs-lg2410" >
3181 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
3182 <stop offset="1" style="stop-color:#fe0;stop-opacity:0" />
3183 </linearGradient>
3184 <linearGradient id="qs-lg2390" >
3185 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3186 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3187 </linearGradient>
3188 <linearGradient xlink:href="#qs-lg2390" id="qs-lg2396" y1="45.921192" x1="38.306709" y2="47.151226" x2="40.122471" gradientUnits="userSpaceOnUse" />
3189 <linearGradient xlink:href="#qs-lg2410" id="qs-lg2416" y1="24.705362" x1="56.398613" y2="22.254944" x2="53.530396" gradientUnits="userSpaceOnUse" />
3190 <linearGradient xlink:href="#qs-lg3710" id="qs-lg3716" y1="25.133522" x1="59.812511" y2="16.904953" x2="58.436195" gradientUnits="userSpaceOnUse" />
3191 <radialGradient fx="61.513626" fy="21.913927" cx="61.513626" cy="21.913927" gradientTransform="matrix(0.3183732,-0.5135746,0.9873264,0.6120598,15.649562,37.610538)" xlink:href="#qs-lg3718" id="qs-rg3726" r="4.9192155" gradientUnits="userSpaceOnUse" />
3192 <linearGradient gradientTransform="translate(13.842348,4.7627067)" xlink:href="#qs-lg3631" id="qs-lg3775" y1="27.029493" x1="42.570045" y2="27.029493" gradientUnits="userSpaceOnUse" x2="41.228081" />
3193 <linearGradient gradientTransform="translate(13.809168,5.2769927)" xlink:href="#qs-lg3623" id="qs-lg3779" y1="26.699657" x1="47.746082" y2="26.699657" gradientUnits="userSpaceOnUse" x2="34.872349" />
3194 <linearGradient gradientTransform="translate(13.809168,5.2769927)" xlink:href="#qs-lg3615" id="qs-lg3781" y1="26.699657" x1="47.746082" y2="26.699657" gradientUnits="userSpaceOnUse" x2="34.872349" />
3195 <linearGradient xlink:href="#qs-lg3655" id="qs-lg3788" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3196 <linearGradient xlink:href="#qs-lg3655" id="qs-lg3790" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3197 <linearGradient xlink:href="#qs-lg3655" id="qs-lg3792" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3198 <linearGradient xlink:href="#qs-lg3655" id="qs-lg3794" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3199 <radialGradient fx="45.239136" fy="17.577971" cx="45.239136" cy="17.577971" gradientTransform="matrix(0.6095398,0.3734843,-0.7168506,1.1699263,29.542709,-17.769747)" xlink:href="#qs-lg3730" id="qs-rg3802" r="7.8177774" gradientUnits="userSpaceOnUse" />
3200 <linearGradient xlink:href="#qs-lg3895" id="qs-lg3901" y1="36.810795" x1="61.243805" y2="40.460564" x2="54.154648" gradientUnits="userSpaceOnUse" />
3201 <radialGradient fx="66.831192" fy="45.768784" cx="66.831192" cy="45.768784" gradientTransform="matrix(0.6648235,-9.2879663e-2,0.0979894,0.7014093,7.5797426,15.717763)" xlink:href="#qs-lg3921" id="qs-rg3929" r="19.197748" gradientUnits="userSpaceOnUse" />
3202 <linearGradient xlink:href="#qs-lg3941" id="qs-lg3947" y1="37.64476" x1="60.092064" y2="51.346336" x2="53.122349" gradientUnits="userSpaceOnUse" />
3203 <linearGradient xlink:href="#qs-lg3951" id="qs-lg3957" y1="45.141983" x1="30.911633" y2="42.02309" x2="19.099651" gradientUnits="userSpaceOnUse" />
3204 <radialGradient fx="34.468804" fy="14.749063" cx="34.468804" cy="14.749063" gradientTransform="matrix(1,0,0,1.3631099,0,-5.3555303)" xlink:href="#qs-lg4099" id="qs-rg4105" r="7.7958586" gradientUnits="userSpaceOnUse" />
3205 <radialGradient fx="45.62899" fy="12.333308" cx="45.62899" cy="12.333308" gradientTransform="matrix(0.651175,-0.3129809,0.9563793,1.9898039,3.8076234,0.2851199)" xlink:href="#qs-lg4107" id="qs-rg4113" r="0.807107" gradientUnits="userSpaceOnUse" />
3206 <radialGradient fx="36.433731" fy="-2.0482645" cx="36.433731" cy="-2.0482645" gradientTransform="matrix(0.4673921,0.0639129,-3.0070632e-2,0.2199051,19.343301,0.4497725)" xlink:href="#qs-lg4123" id="qs-rg4129" r="4.4050465" gradientUnits="userSpaceOnUse" />
3207 <radialGradient fx="48.430504" fy="45.394047" cx="48.430504" cy="45.394047" gradientTransform="matrix(0.1098665,-0.2005846,0.3382322,0.1852605,10.139765,52.786318)" xlink:href="#qs-lg2476" id="qs-rg4185" r="5.8258683" gradientUnits="userSpaceOnUse" />
3208 <radialGradient fx="32.537888" fy="38.871136" cx="32.537888" cy="38.871136" gradientTransform="matrix(0.1418416,-9.1607927e-2,0.131729,0.2039635,17.24486,47.075436)" xlink:href="#qs-lg2490" id="qs-rg4187" r="5.8249979" gradientUnits="userSpaceOnUse" />
3209 <radialGradient fx="38.028793" fy="45.984734" cx="38.028793" cy="45.984734" gradientTransform="matrix(0.0916311,-6.7458121e-2,0.1194303,0.1622272,16.291425,49.028735)" xlink:href="#qs-lg3268" id="qs-rg4189" r="5.5679789" gradientUnits="userSpaceOnUse" />
3210 <radialGradient fx="35.506214" fy="45.83128" cx="35.506214" cy="45.83128" gradientTransform="matrix(-5.9173548e-2,0.0594561,-0.133011,-0.1323791,32.809744,59.714785)" xlink:href="#qs-lg3284" id="qs-rg4191" r="5.3648539" gradientUnits="userSpaceOnUse" />
3211 <linearGradient xlink:href="#qs-lg3655" id="qs-lg4193" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3212 <radialGradient fx="51.449337" fy="38.253799" cx="51.449337" cy="38.253799" gradientTransform="matrix(0.183472,0.2469732,-0.9009348,0.6692894,75.69735,3.1514277)" xlink:href="#qs-lg4279" id="qs-rg4285" r="6.8695028" gradientUnits="userSpaceOnUse" />
3213 <linearGradient gradientTransform="translate(-12.106189,-0.1407696)" xlink:href="#qs-lg3965" id="qs-lg4292" y1="40.483089" x1="36.359337" y2="40.858475" gradientUnits="userSpaceOnUse" x2="28.535995" />
3214 <linearGradient xlink:href="#qs-lg4308" id="qs-lg4323" y1="43.695724" x1="40.52142" y2="39.050327" gradientUnits="userSpaceOnUse" x2="36.749252" />
3215 <radialGradient fx="19.37299" fy="11.349782" cx="19.37299" cy="11.349782" gradientTransform="matrix(0.605692,0.1436007,-0.2231595,0.9412632,10.17174,-2.1963401)" xlink:href="#qs-lg4331" id="qs-rg4337" r="1.2716698" gradientUnits="userSpaceOnUse" />
3216 <radialGradient fx="19.443375" fy="11.343052" cx="19.443375" cy="11.343052" gradientTransform="matrix(0.700599,0.1503133,-0.2084588,0.9716115,8.1859245,-2.6514099)" xlink:href="#qs-lg4345" id="qs-rg4351" r="1.2716698" gradientUnits="userSpaceOnUse" />
3217 
3218 <g id="img_queen_spade" transform="scale(1.8) translate(-36, -58)" >
3219 <g transform="translate(-1.8995928,-0.2094034)" >
3220 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3221 d="M43.357051,28.066075L51.990922,30.130696L53.680158,55.058573L15.484661,55.058573C15.484661,55.058573 15.672354,52.184607 15.672354,49.556907C15.672354,46.929207 16.704664,41.8615 17.830822,39.703032C18.956979,37.544564 19.144672,37.356871 20.458522,35.198403C21.772372,33.039935 21.584679,32.476857 24.118532,31.3507C26.652386,30.224543 30.687783,28.066075 30.687783,28.066075L43.357051,28.066075z" />
3222 <path style="opacity:1;fill:#f90;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3223 d="M31.495135,8.6685872C32.004575,9.8582016 33.501097,13.159844 32.53343,16.248077C31.712867,18.866841 30.878338,20.125393 30.428001,20.546401C29.362955,21.542081 27.34136,22.69118 26.558815,21.48373C25.862574,20.409443 24.617423,19.662075 24.527195,18.479272C24.414093,16.996618 24.395933,17.193783 25.947251,14.249036C27.356183,11.574574 27.511554,10.892739 26.921448,8.9257341C26.681841,8.1270476 26.334166,6.845026 27.593755,6.3007391C29.221476,5.5973762 30.985695,7.4789715 31.495135,8.6685872z" />
3224 <path style="opacity:1;fill:url(#qs-rg3929);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3225 d="M43.357051,28.116905L51.990922,30.181526L53.680158,55.109403L15.484661,55.109403C15.484661,55.109403 15.672354,52.235437 15.672354,49.607737C15.672354,46.980037 16.704664,41.91233 17.830822,39.753862C18.956979,37.595394 19.144672,37.407701 20.458522,35.249233C21.772372,33.090765 21.584679,32.527687 24.118532,31.40153C26.652386,30.275373 30.687783,28.116905 30.687783,28.116905L43.357051,28.116905z" />
3226 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3227 d="M52.272461,30.130696C52.131691,30.083773 51.709383,29.943003 50.20784,32.007625C48.706297,34.072246 47.58014,36.981485 47.204754,38.764568C46.829368,40.54765 49.269375,45.709203 49.269375,45.709203L52.554,55.058573L59.498636,55.058573C59.498636,55.058573 60.601412,54.060907 60.812486,53.404611C61.587794,50.99393 60.929795,49.392676 59.592483,45.052278C59.242951,43.91783 53.933362,34.831859 52.741693,31.819932C52.492721,31.190659 52.413231,30.177619 52.272461,30.130696z" />
3228 <path style="opacity:1;fill:url(#qs-lg3901);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3229 d="M52.272461,30.130696C52.131691,30.083773 51.709383,29.943003 50.20784,32.007625C48.706297,34.072246 47.58014,36.981485 47.204754,38.764568C46.829368,40.54765 49.269375,45.709203 49.269375,45.709203L52.554,55.058573L59.498636,55.058573C59.498636,55.058573 60.601412,54.060907 60.812486,53.404611C61.587794,50.99393 60.929795,49.392676 59.592483,45.052278C59.242951,43.91783 53.933362,34.831859 52.741693,31.819932C52.492721,31.190659 52.413231,30.177619 52.272461,30.130696z" />
3230 <g transform="translate(-14.170811,-4.786168)" >
3231 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3232 d="M56.292958,32.29323C56.292958,32.29323 57.772302,32.621693 57.374145,33.749804C56.975989,34.877914 55.096219,37.654155 53.724376,38.9922C52.068203,40.607569 50.522533,41.596808 48.38244,43.089895C46.149099,44.648039 43.903177,46.092661 43.903177,46.092661C43.903177,46.092661 44.019307,43.28855 44.102256,41.712938C44.2389,39.117355 44.007164,37.438696 43.936358,35.607868C43.892793,34.481408 44.168615,33.749804 44.699491,33.218928C45.230366,32.688053 56.226598,31.895073 56.292958,32.29323z" />
3233 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
3234 d="M45.495804,27.395886L55.715158,27.395886L55.574388,33.561836C52.296902,34.472675 49.731134,40.027771 45.495804,34.173659L45.495804,27.395886z" />
3235 <path style="fill:url(#qs-lg3779);fill-opacity:1;fill-rule:nonzero;stroke:url(#qs-lg3781);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
3236 d="M45.462624,27.561785L55.681978,27.561785L55.681978,33.799573C52.404492,34.637845 49.697954,39.187287 45.462624,33.799573L45.462624,27.561785z" />
3237 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3238 d="M47.902141,35.811699C47.902141,35.811699 47.894274,36.234377 47.849289,36.41432C47.716571,36.945195 46.904963,38.034742 45.998598,39.137707C45.017584,40.331514 44.432821,42.067315 43.998598,43.637707C43.951962,44.688689 43.904848,46.106458 43.904848,46.106457C43.904848,46.106457 44.882189,45.44613 46.092348,44.637707C46.518408,43.452607 47.307286,41.189944 47.904848,40.512707C48.651392,39.666624 49.634774,38.377311 49.833851,37.746895C50.032929,37.11648 50.226219,36.654296 50.226219,36.654297L50.313028,36.219879C48.367157,36.357613 48.213829,35.967622 47.902141,35.811699z" />
3239 <path style="fill:url(#qs-lg3775);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3240 d="M56.312394,26.914781L56.312394,32.289896C56.312394,32.289896 55.317002,34.678836 53.857095,35.475149C52.397187,36.271462 50.207325,36.66962 50.207325,36.66962C50.017562,35.054873 50.107461,33.440127 50.074606,31.82538C50.074606,31.82538 52.065389,32.157176 53.525297,30.697269C54.255251,29.967315 55.245295,28.446711 55.730254,27.724549C55.722519,27.213541 55.491238,25.95251 56.312394,26.914781z" />
3241 <g transform="translate(-23.869313,46.867119)" >
3242 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3243 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3244 <path style="opacity:1;fill:url(#qs-lg3794);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3245 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3246 </g>
3247 <path style="fill:url(#qs-rg4285);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3248 d="M56.292958,32.29323C56.292958,32.29323 57.819225,32.762463 57.421068,33.890574C57.022912,35.018684 55.143142,37.794925 53.771299,39.13297C52.115126,40.748339 50.522533,41.596808 48.38244,43.089895C46.149099,44.648039 43.903177,46.092661 43.903177,46.092661C43.903177,46.092661 44.019307,43.28855 44.102256,41.712938C44.2389,39.117355 44.007164,37.438696 43.936358,35.607868C43.892793,34.481408 44.168615,33.749804 44.699491,33.218928C45.230366,32.688053 56.226598,31.895073 56.292958,32.29323z" />
3249 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3250 d="M45.164004,28.374688C45.514905,26.874055 45.297126,30.8708 45.296723,32.356255C45.296723,32.356255 45.165705,34.612477 46.082826,35.40879C46.999948,36.205103 47.975773,36.404182 47.975773,36.404182L48.01746,31.82538C48.01746,31.82538 47.233058,31.825379 46.315937,30.365472C45.398815,28.905564 45.62852,28.772845 45.164004,28.374688z" />
3251 <g transform="translate(-28.099727,46.485552)" >
3252 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3253 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3254 <path style="opacity:1;fill:url(#qs-lg3792);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3255 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3256 </g>
3257 <g transform="translate(-26.480912,49.263538)" >
3258 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3259 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3260 <path style="opacity:1;fill:url(#qs-lg3790);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3261 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3262 </g>
3263 <g transform="translate(-29.014765,53.111241)" >
3264 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3265 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3266 <path style="opacity:1;fill:url(#qs-lg3788);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3267 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3268 </g>
3269 </g>
3270 <path style="fill:url(#qs-rg4105);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3271 d="M42.087887,20.562684C42.087887,20.562684 38.552353,24.451771 37.580081,24.893713C36.607809,25.335655 34.386302,25.577464 32.80711,25.158878C31.374273,24.779085 30.043533,22.919884 29.183188,21.800121C27.91604,20.150891 26.885091,15.259383 26.885091,15.259383C25.877211,12.390802 28.810999,9.616702 28.387693,6.5973251L36.961362,4.1224513L42.264663,8.2767037L42.087887,20.562684z" />
3272 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3273 d="M42.900387,21.125184C42.900387,21.125184 39.364853,25.014271 38.392581,25.456213C37.420309,25.898155 35.198802,26.139964 33.61961,25.721378C32.186773,25.341585 30.821405,23.508158 29.995688,22.362621C28.04104,19.650891 27.697591,16.071883 27.697591,16.071883C27.252211,13.015802 29.623499,10.179202 29.200193,7.1598251L37.773862,4.6849513L43.077163,8.8392037L42.900387,21.125184z" />
3274 <g transform="translate(-0.1081274,-0.287244)" >
3275 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3276 d="M29.43332,10.010331C29.43332,10.010331 30.49398,9.5683894 31.377864,9.8335545C32.261747,10.09872 33.322407,10.452273 33.322407,10.452273" />
3277 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3278 d="M38.979261,9.9661367C38.979261,9.9661367 37.918601,9.5241953 37.034717,9.7893604C36.150834,10.054526 35.090174,10.408079 35.090174,10.408079" />
3279 <g>
3280 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3281 d="M33.5,11C33.5,11 34.575108,12.258045 33.125,14.875C32.610916,15.802749 32.25,15.625 32.25,15.625" />
3282 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3283 d="M33.875,15.625C31.21875,15.34375 30.625,14.40625 29.875,15.15625C29.125,15.90625 29.037639,16.9321 30,17.625C30.78125,18.1875 32.875,18.5625 32.875,18.5625" />
3284 </g>
3285 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3286 d="M31.375,21.625C31.375,21.625 31.5,20.25 33.625,20.125C35.441887,20.018124 36.25,21.25 36.25,21.25" />
3287 </g>
3288 <path style="fill:url(#qs-rg3802);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3289 d="M42.900387,21.125184C42.900387,21.125184 39.364853,25.014271 38.392581,25.456213C37.420309,25.898155 35.198802,26.139964 33.61961,25.721378C32.186773,25.341585 30.821405,23.508158 29.995688,22.362621C28.04104,19.650891 27.697591,16.071883 27.697591,16.071883C27.252211,13.015802 29.623499,10.179202 29.200193,7.1598251L37.773862,4.6849513L43.077163,8.8392037L42.900387,21.125184z" />
3290 <path style="fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3291 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
3292 <path style="fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3293 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
3294 <path style="fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3295 d="M48.622111,47.646903L48.586815,47.771903C48.586815,47.771903 48.849519,49.984776 48.516224,51.740653C48.445056,52.115579 48.370488,52.463984 48.233858,52.771903C47.457351,54.521903 46.822028,54.959403 46.822028,54.959403L46.716141,54.959403L46.680845,55.053153L48.433178,55.053153C48.648262,54.848075 48.969049,54.459597 49.551427,53.147096C49.688057,52.839177 49.715704,52.30308 49.78687,51.928153C50.116309,50.192594 49.957205,48.228614 49.951308,48.178346C49.436,48.036962 48.622111,47.646903 48.622111,47.646903z" />
3296 <g transform="translate(27.966237,0.0469232)" >
3297 <g transform="translate(-27.778543,0)" >
3298 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3299 d="M43.116389,27.272852C43.116389,27.272852 45.57881,27.599813 46.547601,29.606005C47.050925,30.648298 47.835416,30.691561 46.333874,35.853114L41.989125,34.915012L43.000708,38.709922C35.895444,42.70503 33.553702,44.305226 27.641994,51.257793L28.790213,45.833797L29.58339,41.318072C29.58339,41.318072 35.339041,37.755412 38.516325,35.10178C39.590799,34.204392 40.679567,32.854665 41.568239,31.571713C42.096513,30.809057 42.37275,29.777259 42.097031,27.981932C41.821314,26.186606 41.868414,26.976869 43.116389,27.272852z" />
3300 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3301 d="M42.25,27.34375C42.519647,27.615484 43.016483,28.066268 43.203366,28.45327C43.706691,29.495563 44.533081,29.213254 43.031539,34.374807L38.593943,33.48423L39.359327,37.922405C33.355024,41.298471 30.698515,42.963466 26.468654,47.594232L25.75,51.0625C31.661708,44.109933 33.988485,42.495108 41.09375,38.5L40.09375,34.71875L44.4375,35.65625C45.939042,30.494697 45.159576,30.448544 44.65625,29.40625C44.095546,28.245132 43.04439,27.642045 42.25,27.34375z" transform="translate(1.8995928,0.2094034)" />
3302 <path style="opacity:1;fill:url(#qs-lg4323);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3303 d="M43.116389,27.272852C43.116389,27.272852 45.57881,27.599813 46.547601,29.606005C47.050925,30.648298 47.835416,30.691561 46.333874,35.853114L41.989125,34.915012L43.000708,38.709922C35.895444,42.70503 33.553702,44.305226 27.641994,51.257793L28.790213,45.833797L29.58339,41.318072C29.58339,41.318072 35.339041,37.755412 38.516325,35.10178C39.590799,34.204392 40.679567,32.854665 41.568239,31.571713C42.096513,30.809057 42.37275,29.777259 42.097031,27.981932C41.821314,26.186606 41.868414,26.976869 43.116389,27.272852z" />
3304 </g>
3305 </g>
3306 <g style="fill:#090" transform="translate(-24.685714,2.1898618)" >
3307 <g style="fill:#090" transform="translate(-5.1740183,35.808686)" >
3308 <path style="fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3309 d="M20.40357,12.884922A1.1711456,1.3706698 0 1 1 20.458338,12.849547" transform="translate(46.775403,-37.79916)" />
3310 <path style="fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3311 d="M20.40357,12.995936A1.1711456,1.4956698 0 1 1 20.458338,12.957335" transform="translate(40.989107,-37.622383)" />
3312 <path style="fill:url(#qs-rg4337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3313 d="M20.40357,12.995936A1.1711456,1.4956698 0 1 1 20.458338,12.957335" transform="translate(40.989107,-37.622383)" />
3314 <path style="fill:url(#qs-rg4351);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3315 d="M20.40357,12.884922A1.1711456,1.3706698 0 1 1 20.458338,12.849547" transform="translate(46.775403,-37.79916)" />
3316 </g>
3317 <path style="stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible;fill:none"
3318 d="M63.304505,9.1068896C62.909286,8.9515916 62.19965,8.0752246 61.281751,8.1311986C60.812841,8.1597926 60.22697,8.6975576 60.22697,8.6975576" />
3319 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3320 d="M54.004998,9.2094413C54.906611,8.6535083 54.990232,8.2971643 55.795494,8.2835193C56.18198,8.2769713 56.949814,8.9328283 56.949814,8.9328283" />
3321 </g>
3322 <g>
3323 <path style="fill:url(#qs-lg3947);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3324 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
3325 <g>
3326 <g>
3327 <g>
3328 <path style="opacity:1;fill:#f90;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3329 d="M49.259851,28.056443L30.838659,55.058573L34.411608,55.058573L51.544196,29.520767L49.259851,28.056443z" />
3330 <g>
3331 <path style="opacity:1;fill:url(#qs-lg2396);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3332 d="M49.259851,28.056443L30.838659,55.058573L34.411608,55.058573L51.544196,29.520767L49.259851,28.056443z" />
3333 </g>
3334 </g>
3335 <g>
3336 <path style="opacity:1;fill:#ffee80;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3337 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
3338 <path style="opacity:1;fill:url(#qs-lg2416);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3339 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
3340 <path style="opacity:1;fill:url(#qs-rg3726);fill-opacity:1;fill-rule:nonzero;stroke:url(#qs-lg3716);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3341 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
3342 </g>
3343 </g>
3344 <g transform="translate(-9.384643e-2,-4.6923215e-2)" >
3345 <g transform="translate(9.6955777,-7.6075101)" >
3346 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3347 d="M35.078539,55.058573C34.602169,54.599318 32.875498,51.774567 32.474943,51.378577L31.937428,52.208646C31.710347,52.557154 30.886542,52.2987 30.299648,51.931795C29.756656,51.630948 29.519253,51.328414 29.450331,51.178493C29.36948,51.002624 29.488779,50.671888 29.557208,50.575243C29.179207,50.251203 28.706412,50.020781 28.184865,49.985933C27.477357,49.938659 26.457542,49.871701 26.373703,51.138545C25.434704,50.798983 24.618516,51.928225 24.829083,53.127428C24.182014,53.364806 23.971463,53.736539 23.920718,53.96718C23.749216,54.288251 23.896944,54.873032 24.193137,55.401349C23.870612,56.062249 23.585699,56.974142 24.075733,57.588499C25.212836,59.014086 27.22186,59.680341 28.689407,59.97385C30.156954,60.26736 33.408661,60.855385 33.408661,60.855385C33.408661,60.855385 35.082431,58.341624 35.258443,57.529797C35.514395,56.349263 35.078539,55.058573 35.078539,55.058573z" />
3348 <path style="fill:url(#qs-rg4185);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3349 d="M35.078539,55.058573C34.602169,54.599318 32.875498,51.774567 32.474943,51.378577L31.937428,52.208646C31.710347,52.557154 30.886542,52.2987 30.299648,51.931795C29.756656,51.630948 29.519253,51.328414 29.450331,51.178493C29.36948,51.002624 29.488779,50.671888 29.557208,50.575243C29.179207,50.251203 28.706412,50.020781 28.184865,49.985933C27.477357,49.938659 26.457542,49.871701 26.373703,51.138545C25.434704,50.798983 24.618516,51.928225 24.829083,53.127428C24.182014,53.364806 23.971463,53.736539 23.920718,53.96718C23.749216,54.288251 23.896944,54.873032 24.193137,55.401349C23.870612,56.062249 23.585699,56.974142 24.075733,57.588499C25.212836,59.014086 27.22186,59.680341 28.689407,59.97385C30.156954,60.26736 33.408661,60.855385 33.408661,60.855385C33.408661,60.855385 35.082431,58.341624 35.258443,57.529797C35.514395,56.349263 35.078539,55.058573 35.078539,55.058573z" />
3350 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3351 d="M34.592003,54.29501C34.592003,54.29501 35.217003,57.517687 33.467003,60.38876C31.717003,63.259833 31.810753,62.666083 31.810753,62.666083L37.373253,62.666083C37.373253,62.666083 37.935753,62.23251 38.623253,60.48251C38.744222,60.174589 38.832296,59.820227 38.895306,59.445301C39.190397,57.689423 38.935753,55.48251 38.935753,55.48251L34.592003,54.29501z" />
3352 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3353 d="M26.361825,51.139122C26.472311,52.089297 27.011083,52.569131 27.643456,53.083666" />
3354 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3355 d="M24.185261,55.381763C24.318789,55.596738 24.540506,55.817335 25.25697,56.354035" />
3356 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3357 d="M24.837126,53.083666C24.937508,53.508563 25.203419,53.894889 25.919883,54.431589" />
3358 <path style="fill:url(#qs-rg4187);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3359 d="M26.373253,51.13876C25.434254,50.799197 24.631436,51.939557 24.842003,53.13876C24.194934,53.376139 23.986498,53.751869 23.935753,53.98251C23.76425,54.303582 23.88956,54.860443 24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 35.072241,58.356837 35.248253,57.54501C35.332791,57.155096 35.336522,56.752234 35.310753,56.38876C33.919091,57.021588 30.205405,54.587273 28.135491,53.429051C27.111254,52.726454 26.508492,52.129928 26.373253,51.13876z" />
3360 <path style="fill:url(#qs-rg4189);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3361 d="M24.842003,53.13876C24.194934,53.376139 23.986498,53.751869 23.935753,53.98251C23.76425,54.303582 23.88956,54.860443 24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 34.258325,59.600606 34.810753,58.57626C30.743086,58.240422 24.897533,54.231623 24.842003,53.13876z" />
3362 <path style="fill:url(#qs-rg4191);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3363 d="M24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 34.006633,59.942732 34.529503,59.04501C33.16893,59.630329 31.655193,58.561909 29.618542,57.958461C27.473816,57.292704 24.988581,56.538951 24.185753,55.38876z" />
3364 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3365 d="M34.525644,54.22865C34.525644,54.22865 35.150644,57.451327 33.400644,60.3224C31.650644,63.193473 31.744394,62.599723 31.744394,62.599723L37.306894,62.599723C37.306894,62.599723 37.869394,62.16615 38.556894,60.41615C38.677863,60.108229 38.765937,59.753867 38.828947,59.378941C39.124038,57.623063 38.869394,55.41615 38.869394,55.41615L34.525644,54.22865z" />
3366 </g>
3367 <g transform="translate(-30.633616,66.234875)" >
3368 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3369 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3370 <path style="opacity:1;fill:url(#qs-lg4193);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3371 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3372 </g>
3373 </g>
3374 </g>
3375 </g>
3376 <g style="fill:#f90" transform="translate(-5.7679456e-2,-0.1810234)" >
3377 <g style="fill:#f90" >
3378 <path style="opacity:1;fill:#f90;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3379 d="M45.733915,7.2612608C46.617939,8.2063608 46.645554,9.6387297 46.787124,12.87192C46.907173,15.613605 48.702402,18.578416 48.422306,19.127594C47.75988,20.426398 46.449586,20.690117 45.376034,21.669139C44.592056,22.384085 43.233941,23.252263 42.754672,22.169992C42.152587,20.810379 42.149452,17.714747 42.417404,14.397169C42.566446,12.551845 42.74556,10.708796 41.521017,9.0602128C41.023802,8.3908183 40.260418,7.3037571 41.259448,6.3631444C42.550458,5.1476241 44.849891,6.3161598 45.733915,7.2612608z" />
3380 <path style="opacity:1;fill:url(#qs-rg4113);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3381 d="M44.326755,8.949671C44.326755,8.949671 45.315401,9.5847637 45.315401,11.35253C45.315401,13.120298 45.174632,16.724587 45.834815,17.86492" />
3382 </g>
3383 <g style="fill:#f90" >
3384 <path style="opacity:1;fill:#f90;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3385 d="M41.117586,2.6330449C40.048043,1.9044915 36.89351,1.2929659 33.67688,1.6491299C30.949238,1.9511503 29.46703,2.5112838 28.967329,2.8723216C27.785536,3.7261758 26.744067,4.4982947 26.781669,5.9366615C26.809397,6.9973216 27.050291,7.6154759 28.193281,7.9230206C29.629172,8.3093764 31.38703,7.9616396 34.575009,7.0051273C37.470378,6.1364089 38.169363,6.1149623 39.986305,7.0720691C40.72406,7.4606949 41.915374,8.0482552 42.691572,6.916739C43.694625,5.4545216 42.18713,3.3615983 41.117586,2.6330449z" />
3386 <path style="opacity:1;fill:url(#qs-rg4129);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3387 d="M39.237231,2.7197228C39.237231,2.7197228 37.301547,2.0832184 35.64132,2.6903825C33.981094,3.2975467 31.368073,4.8127508 30.627138,4.3308096" />
3388 </g>
3389 </g>
3390 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3391 d="M29.842882,28.058573C29.842882,28.058573 25.814236,30.213666 23.280382,31.339823C20.746529,32.46598 20.937981,33.025106 19.624132,35.183573C18.310282,37.342041 18.125289,37.525104 16.999132,39.683573C15.872974,41.842041 14.842882,46.930872 14.842882,49.558573C14.842882,52.186273 14.655382,55.058571 14.655382,55.058573L22.342882,55.058573C22.34572,55.008711 21.999506,52.920592 21.335912,49.673176C20.734277,46.72897 20.308861,41.090685 21.435019,38.622254C22.561175,36.153822 22.812529,33.645034 24.259097,32.105635C26.12883,30.115918 28.460593,29.287758 30.811632,28.058573L29.842882,28.058573z" />
3392 <path style="opacity:1;fill:url(#qs-lg3957);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3393 d="M29.842882,28.058573C29.842882,28.058573 25.814236,30.213666 23.280382,31.339823C20.746529,32.46598 20.937981,33.025106 19.624132,35.183573C18.310282,37.342041 18.125289,37.525104 16.999132,39.683573C15.872974,41.842041 14.842882,46.930872 14.842882,49.558573C14.842882,52.186273 14.655382,55.058571 14.655382,55.058573L22.342882,55.058573C22.34572,55.008711 21.999506,52.920592 21.335912,49.673176C20.734277,46.72897 20.308861,41.090685 21.435019,38.622254C22.561175,36.153822 22.812529,33.645034 24.259097,32.105635C26.12883,30.115918 28.460593,29.287758 30.811632,28.058573L29.842882,28.058573z" />
3394 <g transform="translate(12.059266,0.0977534)" >
3395 <path style="opacity:1;fill:#090;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3396 d="M18.769286,27.737612C18.769286,27.737612 14.635013,28.417332 13.842349,29.051463C12.434652,30.177619 11.730803,31.773009 11.730803,31.773009L14.217734,33.931477L11.402341,35.902252C13.790766,42.615506 14.630579,45.859334 13.560809,55.01165L16.986204,55.01165L18.018514,42.846887L17.877745,36.089945L17.783899,32.476857C17.783899,32.476857 17.314667,29.708388 18.534671,28.676077C19.754674,27.643766 18.769286,27.831459 18.769286,27.737612z" />
3397 <path style="opacity:1;fill:url(#qs-lg4292);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3398 d="M18.769286,27.643765C18.769286,27.643765 14.635013,28.323485 13.842349,28.957616C12.434652,30.083772 11.730803,31.679162 11.730803,31.679162L14.217734,33.83763L11.402341,35.808405C13.790766,42.521659 14.630579,45.765487 13.560809,54.917803L16.986204,54.917803L18.018514,42.75304L17.877745,35.996098L17.783899,32.38301C17.783899,32.38301 17.314667,29.614541 18.534671,28.58223C19.754674,27.549919 18.769286,27.737612 18.769286,27.643765z" />
3399 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3400 d="M18.762153,27.631134C18.762154,27.631133 14.648567,28.309503 13.855903,28.943634C12.448207,30.06979 11.730903,31.693634 11.730903,31.693634L14.230903,33.849884L11.387153,35.818634C13.775579,42.531887 14.644423,45.760068 13.574653,54.912384L14.699653,54.912384C15.769423,45.760068 14.978751,42.71958 12.590326,36.006327L15.590519,33.849884L12.855903,31.318248C12.855903,31.318248 13.573206,30.06979 14.980903,28.943634C15.63005,28.424317 18.080581,27.969483 19.105903,27.787384C19.03202,27.666448 18.762153,27.681577 18.762153,27.631134z" />
3401 </g>
3402 </g>
3403 </g>
3404 <!-- }}} -->
3405 
3406 <!-- * Queen of Clubs {{{ -->
3407 <linearGradient id="qc-lg4581" >
3408 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3409 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3410 </linearGradient>
3411 <linearGradient id="qc-lg4519" >
3412 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3413 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3414 </linearGradient>
3415 <linearGradient id="qc-lg4387" >
3416 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3417 <stop offset="1" style="stop-color:#f90;stop-opacity:0" />
3418 </linearGradient>
3419 <linearGradient id="qc-lg4377" >
3420 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3421 <stop offset="1" style="stop-color:#f90;stop-opacity:0" />
3422 </linearGradient>
3423 <linearGradient id="qc-lg4345" >
3424 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
3425 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
3426 </linearGradient>
3427 <linearGradient id="qc-lg4331" >
3428 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
3429 <stop offset="1" style="stop-color:#fff;stop-opacity:0" />
3430 </linearGradient>
3431 <linearGradient id="qc-lg4308" >
3432 <stop offset="0" style="stop-color:#000;stop-opacity:0.627451" />
3433 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3434 </linearGradient>
3435 <linearGradient id="qc-lg4279" >
3436 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
3437 <stop offset="1" style="stop-color:#8df;stop-opacity:0" />
3438 </linearGradient>
3439 <linearGradient id="qc-lg4107" >
3440 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3441 <stop offset="1" style="stop-color:#f00;stop-opacity:0" />
3442 </linearGradient>
3443 <linearGradient id="qc-lg4099" >
3444 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
3445 <stop offset="1" style="stop-color:#f00;stop-opacity:0" />
3446 </linearGradient>
3447 <linearGradient id="qc-lg3965" >
3448 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3449 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3450 </linearGradient>
3451 <linearGradient id="qc-lg3951" >
3452 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3453 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3454 </linearGradient>
3455 <linearGradient id="qc-lg3941" >
3456 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3457 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3458 </linearGradient>
3459 <linearGradient id="qc-lg3895" >
3460 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3461 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3462 </linearGradient>
3463 <linearGradient id="qc-lg3730" >
3464 <stop offset="0" style="stop-color:#000;stop-opacity:0.50196081" />
3465 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3466 </linearGradient>
3467 <linearGradient id="qc-lg3718" >
3468 <stop offset="0" style="stop-color:#000;stop-opacity:0.78431374" />
3469 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3470 </linearGradient>
3471 <linearGradient id="qc-lg3710" >
3472 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3473 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3474 </linearGradient>
3475 <linearGradient id="qc-lg3655" >
3476 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3477 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3478 </linearGradient>
3479 <linearGradient id="qc-lg3631" >
3480 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
3481 <stop offset="1" style="stop-color:#fff;stop-opacity:1" />
3482 </linearGradient>
3483 <linearGradient id="qc-lg3623" >
3484 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3485 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3486 </linearGradient>
3487 <linearGradient id="qc-lg3615" >
3488 <stop offset="0" style="stop-color:#000;stop-opacity:0" />
3489 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3490 </linearGradient>
3491 <linearGradient id="qc-lg3284" >
3492 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3493 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3494 </linearGradient>
3495 <linearGradient id="qc-lg3268" >
3496 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3497 <stop offset="1" style="stop-color:#ffd0d0;stop-opacity:0" />
3498 </linearGradient>
3499 <linearGradient id="qc-lg2490" >
3500 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3501 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3502 </linearGradient>
3503 <linearGradient id="qc-lg2476" >
3504 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3505 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3506 </linearGradient>
3507 <linearGradient id="qc-lg2410" >
3508 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
3509 <stop offset="1" style="stop-color:#fe0;stop-opacity:0" />
3510 </linearGradient>
3511 <linearGradient id="qc-lg2390" >
3512 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3513 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3514 </linearGradient>
3515 <linearGradient xlink:href="#qc-lg2390" id="qc-lg2396" y1="45.921192" x1="38.306709" y2="47.151226" x2="40.122471" gradientUnits="userSpaceOnUse" />
3516 <linearGradient xlink:href="#qc-lg2410" id="qc-lg2416" y1="24.705362" x1="56.398613" y2="22.254944" x2="53.530396" gradientUnits="userSpaceOnUse" />
3517 <linearGradient xlink:href="#qc-lg3710" id="qc-lg3716" y1="25.133522" x1="59.812511" y2="16.904953" x2="58.436195" gradientUnits="userSpaceOnUse" />
3518 <radialGradient fx="61.513626" fy="21.913927" cx="61.513626" cy="21.913927" gradientTransform="matrix(0.3183732,-0.5135746,0.9873264,0.6120598,15.649562,37.610538)" xlink:href="#qc-lg3718" id="qc-rg3726" r="4.9192155" gradientUnits="userSpaceOnUse" />
3519 <linearGradient gradientTransform="translate(13.842348,4.7627067)" xlink:href="#qc-lg3631" id="qc-lg3775" y1="27.029493" x1="42.570045" y2="27.029493" gradientUnits="userSpaceOnUse" x2="41.228081" />
3520 <linearGradient gradientTransform="translate(13.809168,5.2769927)" xlink:href="#qc-lg3623" id="qc-lg3779" y1="26.699657" x1="47.746082" y2="26.699657" gradientUnits="userSpaceOnUse" x2="34.872349" />
3521 <linearGradient gradientTransform="translate(13.809168,5.2769927)" xlink:href="#qc-lg3615" id="qc-lg3781" y1="26.699657" x1="47.746082" y2="26.699657" gradientUnits="userSpaceOnUse" x2="34.872349" />
3522 <linearGradient xlink:href="#qc-lg3655" id="qc-lg3788" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3523 <linearGradient xlink:href="#qc-lg3655" id="qc-lg3790" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3524 <linearGradient xlink:href="#qc-lg3655" id="qc-lg3792" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3525 <linearGradient xlink:href="#qc-lg3655" id="qc-lg3794" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3526 <linearGradient xlink:href="#qc-lg3895" id="qc-lg3901" y1="36.810795" x1="61.243805" y2="40.460564" x2="54.154648" gradientUnits="userSpaceOnUse" />
3527 <linearGradient xlink:href="#qc-lg3941" id="qc-lg3947" y1="37.64476" x1="60.092064" y2="51.346336" x2="53.122349" gradientUnits="userSpaceOnUse" />
3528 <linearGradient xlink:href="#qc-lg3951" id="qc-lg3957" y1="45.141983" x1="30.911633" y2="42.02309" x2="19.099651" gradientUnits="userSpaceOnUse" />
3529 <radialGradient fx="48.430504" fy="45.394047" cx="48.430504" cy="45.394047" gradientTransform="matrix(0.1098665,-0.2005846,0.3382322,0.1852605,10.139765,52.786318)" xlink:href="#qc-lg2476" id="qc-rg4185" r="5.8258683" gradientUnits="userSpaceOnUse" />
3530 <radialGradient fx="32.537888" fy="38.871136" cx="32.537888" cy="38.871136" gradientTransform="matrix(0.1418416,-9.1607927e-2,0.131729,0.2039635,17.24486,47.075436)" xlink:href="#qc-lg2490" id="qc-rg4187" r="5.8249979" gradientUnits="userSpaceOnUse" />
3531 <radialGradient fx="38.028793" fy="45.984734" cx="38.028793" cy="45.984734" gradientTransform="matrix(0.0916311,-6.7458121e-2,0.1194303,0.1622272,16.291425,49.028735)" xlink:href="#qc-lg3268" id="qc-rg4189" r="5.5679789" gradientUnits="userSpaceOnUse" />
3532 <radialGradient fx="35.506214" fy="45.83128" cx="35.506214" cy="45.83128" gradientTransform="matrix(-5.9173548e-2,0.0594561,-0.133011,-0.1323791,32.809744,59.714785)" xlink:href="#qc-lg3284" id="qc-rg4191" r="5.3648539" gradientUnits="userSpaceOnUse" />
3533 <linearGradient xlink:href="#qc-lg3655" id="qc-lg4193" y1="30.679262" x1="38.371834" y2="30.463593" gradientUnits="userSpaceOnUse" x2="37.709663" />
3534 <radialGradient fx="51.449337" fy="38.253799" cx="51.449337" cy="38.253799" gradientTransform="matrix(0.183472,0.2469732,-0.9009348,0.6692894,75.69735,3.1514277)" xlink:href="#qc-lg4279" id="qc-rg4285" r="6.8695028" gradientUnits="userSpaceOnUse" />
3535 <linearGradient gradientTransform="translate(-12.106189,-0.1407696)" xlink:href="#qc-lg3965" id="qc-lg4292" y1="40.483089" x1="36.359337" y2="40.858475" gradientUnits="userSpaceOnUse" x2="28.535995" />
3536 <linearGradient xlink:href="#qc-lg4308" id="qc-lg4323" y1="43.695724" x1="40.52142" y2="39.050327" gradientUnits="userSpaceOnUse" x2="36.749252" />
3537 <radialGradient fx="34.468804" fy="14.749063" cx="34.468804" cy="14.749063" gradientTransform="matrix(1,0,0,1.3631099,0,-5.3555303)" xlink:href="#qc-lg4099" id="qc-rg4491" r="7.7958586" gradientUnits="userSpaceOnUse" />
3538 <radialGradient fx="27.879663" fy="15.947064" cx="27.879663" cy="15.947064" gradientTransform="matrix(0.5106675,0.0972196,-0.1424745,0.7483789,15.763452,2.7146083)" xlink:href="#qc-lg4387" id="qc-rg4493" r="4.2850684" gradientUnits="userSpaceOnUse" />
3539 <radialGradient fx="24.077932" fy="26.541544" cx="24.077932" cy="26.541544" gradientTransform="matrix(0.6565543,-0.2827822,0.5555982,1.2899686,-1.9918131,-3.9838009)" xlink:href="#qc-lg3730" id="qc-rg4495" r="7.8177774" gradientUnits="userSpaceOnUse" />
3540 <radialGradient fx="19.37299" fy="11.349782" cx="19.37299" cy="11.349782" gradientTransform="matrix(0.605692,0.1436007,-0.2231595,0.9412632,10.17174,-2.1963401)" xlink:href="#qc-lg4331" id="qc-rg4497" r="1.2716698" gradientUnits="userSpaceOnUse" />
3541 <radialGradient fx="19.443375" fy="11.343052" cx="19.443375" cy="11.343052" gradientTransform="matrix(0.700599,0.1503133,-0.2084588,0.9716115,8.1859245,-2.6514099)" xlink:href="#qc-lg4345" id="qc-rg4499" r="1.2716698" gradientUnits="userSpaceOnUse" />
3542 <radialGradient fx="45.566387" fy="11.934361" cx="45.566387" cy="11.934361" gradientTransform="matrix(0.651175,-0.3129809,0.9563793,1.9898039,3.8076234,-0.3952667)" xlink:href="#qc-lg4107" id="qc-rg4501" r="0.807107" gradientUnits="userSpaceOnUse" />
3543 <radialGradient fx="45.566387" fy="11.934361" cx="45.566387" cy="11.934361" gradientTransform="matrix(0.651175,-0.3129809,0.9563793,1.9898039,2.4703118,1.2001226)" xlink:href="#qc-lg4107" id="qc-rg4503" r="0.807107" gradientUnits="userSpaceOnUse" />
3544 <radialGradient fx="38.258411" fy="-0.64042574" cx="38.258411" cy="-0.64042574" gradientTransform="matrix(0.5330025,0.0527254,-2.4537658e-2,0.2480517,17.145843,0.6355003)" xlink:href="#qc-lg4377" id="qc-rg4505" r="4.4050465" gradientUnits="userSpaceOnUse" />
3545 <radialGradient fx="44.611485" fy="14.261231" cx="44.611485" cy="14.261231" gradientTransform="matrix(0.9746234,3.85136e-07,-1.5181263e-6,2.5873737,-7.126379,4.9529284)" xlink:href="#qc-lg4519" id="qc-rg4527" r="3.9404452" gradientUnits="userSpaceOnUse" />
3546 <linearGradient gradientTransform="translate(-4.0028387,46.157964)" xlink:href="#qc-lg4581" id="qc-lg4593" y1="-18.448561" x1="63.058647" y2="-18.448561" gradientUnits="userSpaceOnUse" x2="47.961681" />
3547 
3548 <g id="img_queen_club" transform="scale(1.8) translate(-36, -58)" >
3549 <g transform="translate(-1.8995928,-0.2094034)" >
3550 <g transform="translate(-3.1907786,13.903751)" >
3551 <path style="opacity:1;fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3552 d="M46.674234,14.213154L55.308105,16.277775L56.997341,41.205652L18.801844,41.205652C18.801844,41.205652 18.989537,38.331686 18.989537,35.703986C18.989537,33.076286 20.021847,28.008579 21.148005,25.850111C22.274162,23.691643 22.461855,23.50395 23.775705,21.345482C25.089555,19.187014 24.901862,18.623936 27.435715,17.497779C29.969569,16.371622 34.004966,14.213154 34.004966,14.213154L46.674234,14.213154z" />
3553 <path style="opacity:1;fill:url(#qc-lg4593);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3554 d="M46.674234,14.213154L55.308105,16.277775L56.997341,41.205652L18.801844,41.205652C18.801844,41.205652 18.989537,38.331686 18.989537,35.703986C18.989537,33.076286 20.021847,28.008579 21.148005,25.850111C22.274162,23.691643 22.461855,23.50395 23.775705,21.345482C25.089555,19.187014 24.901862,18.623936 27.435715,17.497779C29.969569,16.371622 34.004966,14.213154 34.004966,14.213154L46.674234,14.213154z" />
3555 </g>
3556 <path style="opacity:1;fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3557 d="M52.272461,30.130696C52.131691,30.083773 51.709383,29.943003 50.20784,32.007625C48.706297,34.072246 47.58014,36.981485 47.204754,38.764568C46.829368,40.54765 49.269375,45.709203 49.269375,45.709203L52.554,55.058573L59.498636,55.058573C59.498636,55.058573 60.601412,54.060907 60.812486,53.404611C61.587794,50.99393 60.929795,49.392676 59.592483,45.052278C59.242951,43.91783 53.933362,34.831859 52.741693,31.819932C52.492721,31.190659 52.413231,30.177619 52.272461,30.130696z" />
3558 <path style="opacity:1;fill:url(#qc-lg3901);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3559 d="M52.272461,30.130696C52.131691,30.083773 51.709383,29.943003 50.20784,32.007625C48.706297,34.072246 47.58014,36.981485 47.204754,38.764568C46.829368,40.54765 49.269375,45.709203 49.269375,45.709203L52.554,55.058573L59.498636,55.058573C59.498636,55.058573 60.601412,54.060907 60.812486,53.404611C61.587794,50.99393 60.929795,49.392676 59.592483,45.052278C59.242951,43.91783 53.933362,34.831859 52.741693,31.819932C52.492721,31.190659 52.413231,30.177619 52.272461,30.130696z" />
3560 <g transform="translate(-14.170811,-4.786168)" >
3561 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3562 d="M56.292958,32.29323C56.292958,32.29323 57.772302,32.621693 57.374145,33.749804C56.975989,34.877914 55.096219,37.654155 53.724376,38.9922C52.068203,40.607569 50.522533,41.596808 48.38244,43.089895C46.149099,44.648039 43.903177,46.092661 43.903177,46.092661C43.903177,46.092661 44.019307,43.28855 44.102256,41.712938C44.2389,39.117355 44.007164,37.438696 43.936358,35.607868C43.892793,34.481408 44.168615,33.749804 44.699491,33.218928C45.230366,32.688053 56.226598,31.895073 56.292958,32.29323z" />
3563 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
3564 d="M45.495804,27.395886L55.715158,27.395886L55.574388,33.561836C52.296902,34.472675 49.731134,40.027771 45.495804,34.173659L45.495804,27.395886z" />
3565 <path style="fill:url(#qc-lg3779);fill-opacity:1;fill-rule:nonzero;stroke:url(#qc-lg3781);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
3566 d="M45.462624,27.561785L55.681978,27.561785L55.681978,33.799573C52.404492,34.637845 49.697954,39.187287 45.462624,33.799573L45.462624,27.561785z" />
3567 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3568 d="M47.902141,35.811699C47.902141,35.811699 47.894274,36.234377 47.849289,36.41432C47.716571,36.945195 46.904963,38.034742 45.998598,39.137707C45.017584,40.331514 44.432821,42.067315 43.998598,43.637707C43.951962,44.688689 43.904848,46.106458 43.904848,46.106457C43.904848,46.106457 44.882189,45.44613 46.092348,44.637707C46.518408,43.452607 47.307286,41.189944 47.904848,40.512707C48.651392,39.666624 49.634774,38.377311 49.833851,37.746895C50.032929,37.11648 50.226219,36.654296 50.226219,36.654297L50.313028,36.219879C48.367157,36.357613 48.213829,35.967622 47.902141,35.811699z" />
3569 <path style="fill:url(#qc-lg3775);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3570 d="M56.312394,26.914781L56.312394,32.289896C56.312394,32.289896 55.317002,34.678836 53.857095,35.475149C52.397187,36.271462 50.207325,36.66962 50.207325,36.66962C50.017562,35.054873 50.107461,33.440127 50.074606,31.82538C50.074606,31.82538 52.065389,32.157176 53.525297,30.697269C54.255251,29.967315 55.245295,28.446711 55.730254,27.724549C55.722519,27.213541 55.491238,25.95251 56.312394,26.914781z" />
3571 <g transform="translate(-23.869313,46.867119)" >
3572 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3573 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3574 <path style="opacity:1;fill:url(#qc-lg3794);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3575 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3576 </g>
3577 <path style="fill:url(#qc-rg4285);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3578 d="M56.292958,32.29323C56.292958,32.29323 57.819225,32.762463 57.421068,33.890574C57.022912,35.018684 55.143142,37.794925 53.771299,39.13297C52.115126,40.748339 50.522533,41.596808 48.38244,43.089895C46.149099,44.648039 43.903177,46.092661 43.903177,46.092661C43.903177,46.092661 44.019307,43.28855 44.102256,41.712938C44.2389,39.117355 44.007164,37.438696 43.936358,35.607868C43.892793,34.481408 44.168615,33.749804 44.699491,33.218928C45.230366,32.688053 56.226598,31.895073 56.292958,32.29323z" />
3579 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3580 d="M45.164004,28.374688C45.514905,26.874055 45.297126,30.8708 45.296723,32.356255C45.296723,32.356255 45.165705,34.612477 46.082826,35.40879C46.999948,36.205103 47.975773,36.404182 47.975773,36.404182L48.01746,31.82538C48.01746,31.82538 47.233058,31.825379 46.315937,30.365472C45.398815,28.905564 45.62852,28.772845 45.164004,28.374688z" />
3581 <g transform="translate(-28.099727,46.485552)" >
3582 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3583 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3584 <path style="opacity:1;fill:url(#qc-lg3792);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3585 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3586 </g>
3587 <g transform="translate(-26.480912,49.263538)" >
3588 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3589 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3590 <path style="opacity:1;fill:url(#qc-lg3790);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3591 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3592 </g>
3593 <g transform="translate(-29.014765,53.111241)" >
3594 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3595 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3596 <path style="opacity:1;fill:url(#qc-lg3788);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3597 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3598 </g>
3599 </g>
3600 <path style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3601 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
3602 <path style="fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3603 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
3604 <path style="fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3605 d="M48.622111,47.646903L48.586815,47.771903C48.586815,47.771903 48.849519,49.984776 48.516224,51.740653C48.445056,52.115579 48.370488,52.463984 48.233858,52.771903C47.457351,54.521903 46.822028,54.959403 46.822028,54.959403L46.716141,54.959403L46.680845,55.053153L48.433178,55.053153C48.648262,54.848075 48.969049,54.459597 49.551427,53.147096C49.688057,52.839177 49.715704,52.30308 49.78687,51.928153C50.116309,50.192594 49.957205,48.228614 49.951308,48.178346C49.436,48.036962 48.622111,47.646903 48.622111,47.646903z" />
3606 <g transform="translate(27.966237,0.0469232)" >
3607 <g transform="translate(-27.778543,0)" >
3608 <path style="opacity:1;fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3609 d="M43.116389,27.272852C43.116389,27.272852 45.57881,27.599813 46.547601,29.606005C47.050925,30.648298 47.835416,30.691561 46.333874,35.853114L41.989125,34.915012L43.000708,38.709922C35.895444,42.70503 33.553702,44.305226 27.641994,51.257793L28.790213,45.833797L29.58339,41.318072C29.58339,41.318072 35.339041,37.755412 38.516325,35.10178C39.590799,34.204392 40.679567,32.854665 41.568239,31.571713C42.096513,30.809057 42.37275,29.777259 42.097031,27.981932C41.821314,26.186606 41.868414,26.976869 43.116389,27.272852z" />
3610 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3611 d="M42.25,27.34375C42.519647,27.615484 43.016483,28.066268 43.203366,28.45327C43.706691,29.495563 44.533081,29.213254 43.031539,34.374807L38.593943,33.48423L39.359327,37.922405C33.355024,41.298471 30.698515,42.963466 26.468654,47.594232L25.75,51.0625C31.661708,44.109933 33.988485,42.495108 41.09375,38.5L40.09375,34.71875L44.4375,35.65625C45.939042,30.494697 45.159576,30.448544 44.65625,29.40625C44.095546,28.245132 43.04439,27.642045 42.25,27.34375z" transform="translate(1.8995928,0.2094034)" />
3612 <path style="opacity:1;fill:url(#qc-lg4323);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3613 d="M43.116389,27.272852C43.116389,27.272852 45.57881,27.599813 46.547601,29.606005C47.050925,30.648298 47.835416,30.691561 46.333874,35.853114L41.989125,34.915012L43.000708,38.709922C35.895444,42.70503 33.553702,44.305226 27.641994,51.257793L28.790213,45.833797L29.58339,41.318072C29.58339,41.318072 35.339041,37.755412 38.516325,35.10178C39.590799,34.204392 40.679567,32.854665 41.568239,31.571713C42.096513,30.809057 42.37275,29.777259 42.097031,27.981932C41.821314,26.186606 41.868414,26.976869 43.116389,27.272852z" />
3614 </g>
3615 </g>
3616 <g>
3617 <path style="fill:url(#qc-lg3947);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3618 d="M60.340864,51.975071C60.085402,51.69968 59.206789,51.165893 56.414962,50.1499C54.466331,49.44076 52.413189,48.907156 50.70057,48.366818C50.010765,48.149181 48.403523,47.634102 48.403523,47.634102L46.678178,55.058573L58.224722,55.058573L59.950067,55.058573C61.599072,53.193942 60.608243,52.263309 60.340864,51.975071z" />
3619 <g>
3620 <g>
3621 <g>
3622 <path style="opacity:1;fill:#f90;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3623 d="M49.259851,28.056443L30.838659,55.058573L34.411608,55.058573L51.544196,29.520767L49.259851,28.056443z" />
3624 <g>
3625 <path style="opacity:1;fill:url(#qc-lg2396);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3626 d="M49.259851,28.056443L30.838659,55.058573L34.411608,55.058573L51.544196,29.520767L49.259851,28.056443z" />
3627 </g>
3628 </g>
3629 <g>
3630 <path style="opacity:1;fill:#ffee80;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3631 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
3632 <path style="opacity:1;fill:url(#qc-lg2416);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3633 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
3634 <path style="opacity:1;fill:url(#qc-rg3726);fill-opacity:1;fill-rule:nonzero;stroke:url(#qc-lg3716);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3635 d="M52.187081,18.391004C52.187081,18.391004 52.283515,21.354696 51.426277,23.721013C50.573284,26.075612 49.228639,28.000529 49.228639,28.000529C49.228639,28.000529 49.61116,28.700358 50.079743,29.051796C50.548327,29.403234 51.515289,29.619817 51.515289,29.619817C51.515289,29.619817 53.581367,26.728395 54.674038,25.836246C56.330224,24.483993 58.164195,23.727781 58.86707,23.49349C58.407707,21.578104 57.752155,20.558074 56.46355,19.620907C55.174946,18.68374 53.367461,18.391004 52.187081,18.391004z" />
3636 </g>
3637 </g>
3638 <g transform="translate(-9.384643e-2,-4.6923215e-2)" >
3639 <g transform="translate(9.6955777,-7.6075101)" >
3640 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3641 d="M35.078539,55.058573C34.602169,54.599318 32.875498,51.774567 32.474943,51.378577L31.937428,52.208646C31.710347,52.557154 30.886542,52.2987 30.299648,51.931795C29.756656,51.630948 29.519253,51.328414 29.450331,51.178493C29.36948,51.002624 29.488779,50.671888 29.557208,50.575243C29.179207,50.251203 28.706412,50.020781 28.184865,49.985933C27.477357,49.938659 26.457542,49.871701 26.373703,51.138545C25.434704,50.798983 24.618516,51.928225 24.829083,53.127428C24.182014,53.364806 23.971463,53.736539 23.920718,53.96718C23.749216,54.288251 23.896944,54.873032 24.193137,55.401349C23.870612,56.062249 23.585699,56.974142 24.075733,57.588499C25.212836,59.014086 27.22186,59.680341 28.689407,59.97385C30.156954,60.26736 33.408661,60.855385 33.408661,60.855385C33.408661,60.855385 35.082431,58.341624 35.258443,57.529797C35.514395,56.349263 35.078539,55.058573 35.078539,55.058573z" />
3642 <path style="fill:url(#qc-rg4185);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3643 d="M35.078539,55.058573C34.602169,54.599318 32.875498,51.774567 32.474943,51.378577L31.937428,52.208646C31.710347,52.557154 30.886542,52.2987 30.299648,51.931795C29.756656,51.630948 29.519253,51.328414 29.450331,51.178493C29.36948,51.002624 29.488779,50.671888 29.557208,50.575243C29.179207,50.251203 28.706412,50.020781 28.184865,49.985933C27.477357,49.938659 26.457542,49.871701 26.373703,51.138545C25.434704,50.798983 24.618516,51.928225 24.829083,53.127428C24.182014,53.364806 23.971463,53.736539 23.920718,53.96718C23.749216,54.288251 23.896944,54.873032 24.193137,55.401349C23.870612,56.062249 23.585699,56.974142 24.075733,57.588499C25.212836,59.014086 27.22186,59.680341 28.689407,59.97385C30.156954,60.26736 33.408661,60.855385 33.408661,60.855385C33.408661,60.855385 35.082431,58.341624 35.258443,57.529797C35.514395,56.349263 35.078539,55.058573 35.078539,55.058573z" />
3644 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3645 d="M34.592003,54.29501C34.592003,54.29501 35.217003,57.517687 33.467003,60.38876C31.717003,63.259833 31.810753,62.666083 31.810753,62.666083L37.373253,62.666083C37.373253,62.666083 37.935753,62.23251 38.623253,60.48251C38.744222,60.174589 38.832296,59.820227 38.895306,59.445301C39.190397,57.689423 38.935753,55.48251 38.935753,55.48251L34.592003,54.29501z" />
3646 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3647 d="M26.361825,51.139122C26.472311,52.089297 27.011083,52.569131 27.643456,53.083666" />
3648 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3649 d="M24.185261,55.381763C24.318789,55.596738 24.540506,55.817335 25.25697,56.354035" />
3650 <path style="fill:none;stroke:#000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3651 d="M24.837126,53.083666C24.937508,53.508563 25.203419,53.894889 25.919883,54.431589" />
3652 <path style="fill:url(#qc-rg4187);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3653 d="M26.373253,51.13876C25.434254,50.799197 24.631436,51.939557 24.842003,53.13876C24.194934,53.376139 23.986498,53.751869 23.935753,53.98251C23.76425,54.303582 23.88956,54.860443 24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 35.072241,58.356837 35.248253,57.54501C35.332791,57.155096 35.336522,56.752234 35.310753,56.38876C33.919091,57.021588 30.205405,54.587273 28.135491,53.429051C27.111254,52.726454 26.508492,52.129928 26.373253,51.13876z" />
3654 <path style="fill:url(#qc-rg4189);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3655 d="M24.842003,53.13876C24.194934,53.376139 23.986498,53.751869 23.935753,53.98251C23.76425,54.303582 23.88956,54.860443 24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 34.258325,59.600606 34.810753,58.57626C30.743086,58.240422 24.897533,54.231623 24.842003,53.13876z" />
3656 <path style="fill:url(#qc-rg4191);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3657 d="M24.185753,55.38876C23.863227,56.04966 23.570719,56.961903 24.060753,57.57626C25.197856,59.001848 27.218206,59.689001 28.685753,59.98251C30.1533,60.276019 33.404503,60.85751 33.404503,60.85751C33.404503,60.85751 34.006633,59.942732 34.529503,59.04501C33.16893,59.630329 31.655193,58.561909 29.618542,57.958461C27.473816,57.292704 24.988581,56.538951 24.185753,55.38876z" />
3658 <path style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3659 d="M34.525644,54.22865C34.525644,54.22865 35.150644,57.451327 33.400644,60.3224C31.650644,63.193473 31.744394,62.599723 31.744394,62.599723L37.306894,62.599723C37.306894,62.599723 37.869394,62.16615 38.556894,60.41615C38.677863,60.108229 38.765937,59.753867 38.828947,59.378941C39.124038,57.623063 38.869394,55.41615 38.869394,55.41615L34.525644,54.22865z" />
3660 </g>
3661 <g transform="translate(-30.633616,66.234875)" >
3662 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3663 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3664 <path style="opacity:1;fill:url(#qc-lg4193);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3665 d="M37.851883,31.239141A0.56405532,0.63041472 0 1 1 37.878261,31.222871" transform="translate(37.512582,-42.485979)" />
3666 </g>
3667 </g>
3668 </g>
3669 </g>
3670 <g transform="matrix(-1,0,0,1,72.876286,0)" >
3671 <g transform="translate(-0.5630786,1.1261572)" >
3672 <path style="opacity:1;fill:#ffee80;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3673 d="M31.495135,8.6685872C32.004575,9.8582016 33.501097,13.159844 32.53343,16.248077C31.712867,18.866841 30.878338,20.125393 30.428001,20.546401C29.362955,21.542081 27.34136,22.69118 26.558815,21.48373C25.862574,20.409443 24.617423,19.662075 24.527195,18.479272C24.414093,16.996618 24.395933,17.193783 25.947251,14.249036C27.356183,11.574574 27.511554,10.892739 26.921448,8.9257341C26.681841,8.1270476 26.334166,6.845026 27.593755,6.3007391C29.221476,5.5973762 30.985695,7.4789715 31.495135,8.6685872z" />
3674 <path style="fill:url(#qc-rg4491);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3675 d="M42.087887,20.562684C42.087887,20.562684 38.552353,24.451771 37.580081,24.893713C36.607809,25.335655 34.386302,25.577464 32.80711,25.158878C31.374273,24.779085 30.043533,22.919884 29.183188,21.800121C27.91604,20.150891 26.885091,15.259383 26.885091,15.259383C25.877211,12.390802 28.810999,9.616702 28.387693,6.5973251L36.961362,4.1224513L42.264663,8.2767037L42.087887,20.562684z" />
3676 <path style="opacity:1;fill:url(#qc-rg4493);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3677 d="M31.495135,8.6685872C32.004575,9.8582016 33.501097,13.159844 32.53343,16.248077C31.712867,18.866841 30.878338,20.125393 30.428001,20.546401C29.362955,21.542081 27.34136,22.69118 26.558815,21.48373C25.862574,20.409443 24.617423,19.662075 24.527195,18.479272C24.414093,16.996618 24.395933,17.193783 25.947251,14.249036C27.356183,11.574574 27.511554,10.892739 26.921448,8.9257341C26.681841,8.1270476 26.334166,6.845026 27.593755,6.3007391C29.221476,5.5973762 30.985695,7.4789715 31.495135,8.6685872z" />
3678 <path style="fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3679 d="M42.900387,21.125184C42.900387,21.125184 39.364853,25.014271 38.392581,25.456213C37.420309,25.898155 35.198802,26.139964 33.61961,25.721378C32.186773,25.341585 30.821405,23.508158 29.995688,22.362621C28.04104,19.650891 27.697591,16.071883 27.697591,16.071883C27.252211,13.015802 29.623499,10.179202 29.200193,7.1598251L37.773862,4.6849513L43.077163,8.8392037L42.900387,21.125184z" />
3680 <g transform="translate(-0.1081274,-0.287244)" >
3681 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3682 d="M29.43332,10.010331C29.43332,10.010331 30.49398,9.5683894 31.377864,9.8335545C32.261747,10.09872 33.322407,10.452273 33.322407,10.452273" />
3683 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3684 d="M38.979261,9.9661367C38.979261,9.9661367 37.918601,9.5241953 37.034717,9.7893604C36.150834,10.054526 35.090174,10.408079 35.090174,10.408079" />
3685 <g>
3686 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3687 d="M33.5,11C33.5,11 34.575108,12.258045 33.125,14.875C32.610916,15.802749 32.25,15.625 32.25,15.625" />
3688 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3689 d="M33.875,15.625C31.21875,15.34375 30.625,14.40625 29.875,15.15625C29.125,15.90625 29.037639,16.9321 30,17.625C30.78125,18.1875 32.875,18.5625 32.875,18.5625" />
3690 </g>
3691 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3692 d="M31.375,21.625C31.375,21.625 31.5,20.25 33.625,20.125C35.441887,20.018124 36.25,21.25 36.25,21.25" />
3693 </g>
3694 <path style="fill:url(#qc-rg4495);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3695 d="M42.900387,21.125184C42.900387,21.125184 39.364853,25.014271 38.392581,25.456213C37.420309,25.898155 35.198802,26.139964 33.61961,25.721378C32.186773,25.341585 30.821405,23.508158 29.995688,22.362621C28.04104,19.650891 27.697591,16.071883 27.697591,16.071883C27.252211,13.015802 29.623499,10.179202 29.200193,7.1598251L37.773862,4.6849513L43.077163,8.8392037L42.900387,21.125184z" />
3696 <g style="fill:#090" transform="translate(-24.685714,2.1898618)" >
3697 <g style="fill:#090" transform="translate(-5.1740183,35.808686)" >
3698 <path style="fill:#8df;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3699 d="M20.40357,12.884922A1.1711456,1.3706698 0 1 1 20.458338,12.849547" transform="translate(46.775403,-37.79916)" />
3700 <path style="fill:#8df;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3701 d="M20.40357,12.995936A1.1711456,1.4956698 0 1 1 20.458338,12.957335" transform="translate(40.989107,-37.622383)" />
3702 <path style="fill:url(#qc-rg4497);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3703 d="M20.40357,12.995936A1.1711456,1.4956698 0 1 1 20.458338,12.957335" transform="translate(41.012569,-37.622383)" />
3704 <path style="fill:url(#qc-rg4499);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3705 d="M20.40357,12.884922A1.1711456,1.3706698 0 1 1 20.458338,12.849547" transform="translate(46.72848,-37.846083)" />
3706 </g>
3707 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3708 d="M63.304505,9.1068896C62.909286,8.9515916 62.19965,8.0752246 61.281751,8.1311986C60.812841,8.1597926 60.22697,8.6975576 60.22697,8.6975576" />
3709 <path style="fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3710 d="M54.004998,9.2094413C54.906611,8.6535083 54.990232,8.2971643 55.795494,8.2835193C56.18198,8.2769713 56.949814,8.9328283 56.949814,8.9328283" />
3711 </g>
3712 <g style="fill:#f90" transform="translate(0.3177063,0.3820552)" >
3713 <g style="fill:#fe0" >
3714 <path style="opacity:1;fill:#ffee80;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3715 d="M41.117586,2.6330449C40.048043,1.9044915 36.89351,1.2929659 33.67688,1.6491299C30.949238,1.9511503 29.46703,2.5112838 28.967329,2.8723216C27.785536,3.7261758 26.744067,4.4982947 26.781669,5.9366615C26.809397,6.9973216 27.050291,7.6154759 28.193281,7.9230206C29.629172,8.3093764 31.38703,7.9616396 34.575009,7.0051273C37.470378,6.1364089 38.169363,6.1149623 39.986305,7.0720691C40.72406,7.4606949 41.915374,8.0482552 42.691572,6.916739C43.694625,5.4545216 42.18713,3.3615983 41.117586,2.6330449z" />
3716 <path style="opacity:1;fill:url(#qc-rg4505);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3717 d="M40.431701,3.2837781C40.431701,3.2837781 38.96706,1.4170133 35.64132,2.6903825C33.990426,3.3224816 31.368073,4.8127508 30.627138,4.3308096" />
3718 </g>
3719 <g>
3720 <g style="fill:#f90" transform="translate(7.1323287,-28.529315)" >
3721 <path style="opacity:0.50859106;fill:url(#qc-rg4527);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;display:inline;overflow:visible"
3722 d="M37.475429,34.852111C38.359453,35.797211 38.387068,37.22958 38.528638,40.46277C38.648687,43.204455 40.443916,46.169266 40.16382,46.718444C39.501394,48.017248 38.1911,48.280967 37.117548,49.259989C36.33357,49.974935 34.975455,50.843113 34.496186,49.760842C33.894101,48.401229 33.890966,45.305597 34.158918,41.988019C34.30796,40.142695 34.487074,38.299646 33.262531,36.651063C32.765316,35.981669 32.001932,34.894607 33.000962,33.953995C34.291972,32.738474 36.591405,33.90701 37.475429,34.852111z" />
3723 </g>
3724 <g style="fill:#f90" >
3725 <path style="opacity:1;fill:#ffee80;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3726 d="M45.733915,7.2612608C46.617939,8.2063608 46.645554,9.6387297 46.787124,12.87192C46.907173,15.613605 48.702402,18.578416 48.422306,19.127594C47.75988,20.426398 46.449586,20.690117 45.376034,21.669139C44.592056,22.384085 43.233941,23.252263 42.754672,22.169992C42.152587,20.810379 42.149452,17.714747 42.417404,14.397169C42.566446,12.551845 42.74556,10.708796 41.521017,9.0602128C41.023802,8.3908183 40.260418,7.3037571 41.259448,6.3631444C42.550458,5.1476241 44.849891,6.3161598 45.733915,7.2612608z" />
3727 <path style="opacity:1;fill:url(#qc-rg4501);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3728 d="M43.951369,7.4715897C43.951369,7.4715897 45.315401,8.9043771 45.315401,10.672143C45.315401,12.439911 45.174632,16.0442 45.834815,17.184533" />
3729 <path style="opacity:1;fill:url(#qc-rg4503);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3730 d="M42.614058,9.066979C42.614058,9.066979 43.97809,10.499766 43.97809,12.267533C43.97809,14.035301 43.837321,17.63959 44.497504,18.779923" />
3731 </g>
3732 </g>
3733 </g>
3734 </g>
3735 </g>
3736 <path style="opacity:1;fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3737 d="M29.842882,28.058573C29.842882,28.058573 25.814236,30.213666 23.280382,31.339823C20.746529,32.46598 20.937981,33.025106 19.624132,35.183573C18.310282,37.342041 18.125289,37.525104 16.999132,39.683573C15.872974,41.842041 14.842882,46.930872 14.842882,49.558573C14.842882,52.186273 14.655382,55.058571 14.655382,55.058573L22.342882,55.058573C22.34572,55.008711 21.999506,52.920592 21.335912,49.673176C20.734277,46.72897 20.308861,41.090685 21.435019,38.622254C22.561175,36.153822 22.812529,33.645034 24.259097,32.105635C26.12883,30.115918 28.460593,29.287758 30.811632,28.058573L29.842882,28.058573z" />
3738 <path style="opacity:1;fill:url(#qc-lg3957);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3739 d="M29.842882,28.058573C29.842882,28.058573 25.814236,30.213666 23.280382,31.339823C20.746529,32.46598 20.937981,33.025106 19.624132,35.183573C18.310282,37.342041 18.125289,37.525104 16.999132,39.683573C15.872974,41.842041 14.842882,46.930872 14.842882,49.558573C14.842882,52.186273 14.655382,55.058571 14.655382,55.058573L22.342882,55.058573C22.34572,55.008711 21.999506,52.920592 21.335912,49.673176C20.734277,46.72897 20.308861,41.090685 21.435019,38.622254C22.561175,36.153822 22.812529,33.645034 24.259097,32.105635C26.12883,30.115918 28.460593,29.287758 30.811632,28.058573L29.842882,28.058573z" />
3740 <g transform="translate(12.059266,0.0977534)" >
3741 <path style="opacity:1;fill:#09f;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3742 d="M18.769286,27.737612C18.769286,27.737612 14.635013,28.417332 13.842349,29.051463C12.434652,30.177619 11.730803,31.773009 11.730803,31.773009L14.217734,33.931477L11.402341,35.902252C13.790766,42.615506 14.630579,45.859334 13.560809,55.01165L16.986204,55.01165L18.018514,42.846887L17.877745,36.089945L17.783899,32.476857C17.783899,32.476857 17.314667,29.708388 18.534671,28.676077C19.754674,27.643766 18.769286,27.831459 18.769286,27.737612z" />
3743 <path style="opacity:1;fill:url(#qc-lg4292);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3744 d="M18.769286,27.643765C18.769286,27.643765 14.635013,28.323485 13.842349,28.957616C12.434652,30.083772 11.730803,31.679162 11.730803,31.679162L14.217734,33.83763L11.402341,35.808405C13.790766,42.521659 14.630579,45.765487 13.560809,54.917803L16.986204,54.917803L18.018514,42.75304L17.877745,35.996098L17.783899,32.38301C17.783899,32.38301 17.314667,29.614541 18.534671,28.58223C19.754674,27.549919 18.769286,27.737612 18.769286,27.643765z" />
3745 <path style="opacity:1;fill:#fe0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3746 d="M18.762153,27.631134C18.762154,27.631133 14.648567,28.309503 13.855903,28.943634C12.448207,30.06979 11.730903,31.693634 11.730903,31.693634L14.230903,33.849884L11.387153,35.818634C13.775579,42.531887 14.644423,45.760068 13.574653,54.912384L14.699653,54.912384C15.769423,45.760068 14.978751,42.71958 12.590326,36.006327L15.590519,33.849884L12.855903,31.318248C12.855903,31.318248 13.573206,30.06979 14.980903,28.943634C15.63005,28.424317 18.080581,27.969483 19.105903,27.787384C19.03202,27.666448 18.762153,27.681577 18.762153,27.631134z" />
3747 </g>
3748 </g>
3749 </g>
3750 <!-- }}} -->
3751 
3752 
3753 <!-- * Jack of Heart {{{ -->
3754 <linearGradient xlink:href="#jh-lg3563" id="jh-lg3571" y1="35.613823" x1="33.66037" y2="41" x2="37" gradientUnits="userSpaceOnUse" />
3755 <linearGradient id="jh-lg3563" >
3756 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
3757 <stop offset="1" style="stop-color:#8df;stop-opacity:1" />
3758 </linearGradient>
3759 <linearGradient gradientTransform="matrix(-1.2074468,0,0,1.0376568,81.379271,-1.3391627)" xlink:href="#jh-lg3563" id="jh-lg3575" y1="35.997532" x1="31.022362" y2="32.890991" gradientUnits="userSpaceOnUse" x2="24.735945" />
3760 <linearGradient id="jh-lg3585" >
3761 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
3762 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3763 </linearGradient>
3764 <linearGradient id="jh-lg3597" >
3765 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
3766 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3767 </linearGradient>
3768 <linearGradient id="jh-lg3419" >
3769 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
3770 <stop offset="0.44514585" style="stop-color:#090;stop-opacity:1" />
3771 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3772 </linearGradient>
3773 <linearGradient id="jh-lg3411" >
3774 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
3775 <stop offset="0.44514585" style="stop-color:#09f;stop-opacity:1" />
3776 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3777 </linearGradient>
3778 <linearGradient id="jh-lg3393" >
3779 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
3780 <stop offset="0.44514585" style="stop-color:#fe0;stop-opacity:1" />
3781 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3782 </linearGradient>
3783 <linearGradient id="jh-lg3381" >
3784 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
3785 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3786 </linearGradient>
3787 <linearGradient id="jh-lg3363" >
3788 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
3789 <stop offset="1" style="stop-color:#09f;stop-opacity:1" />
3790 </linearGradient>
3791 <linearGradient id="jh-lg3349" >
3792 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
3793 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3794 </linearGradient>
3795 <linearGradient id="jh-lg3341" >
3796 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
3797 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3798 </linearGradient>
3799 <linearGradient id="jh-lg3319" >
3800 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3801 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3802 </linearGradient>
3803 <linearGradient id="jh-lg3309" >
3804 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3805 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3806 </linearGradient>
3807 <linearGradient id="jh-lg3301" >
3808 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3809 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3810 </linearGradient>
3811 <linearGradient id="jh-lg3282" >
3812 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
3813 <stop offset="0.53663749" style="stop-color:#f00;stop-opacity:1" />
3814 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3815 </linearGradient>
3816 <linearGradient id="jh-lg3272" >
3817 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
3818 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3819 </linearGradient>
3820 <linearGradient id="jh-lg3254" >
3821 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
3822 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3823 </linearGradient>
3824 <linearGradient id="jh-lg3222" >
3825 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
3826 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
3827 </linearGradient>
3828 <linearGradient id="jh-lg3178" >
3829 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
3830 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3831 </linearGradient>
3832 <linearGradient id="jh-lg3168" >
3833 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
3834 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3835 </linearGradient>
3836 <linearGradient id="jh-lg3156" >
3837 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
3838 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3839 </linearGradient>
3840 <linearGradient gradientTransform="translate(0,-0.3357979)" xlink:href="#jh-lg3156" id="jh-lg3162" y1="40.321541" x1="50.41983" y2="40.321545" x2="53.154663" gradientUnits="userSpaceOnUse" />
3841 <linearGradient xlink:href="#jh-lg3168" id="jh-lg3174" y1="18.944801" x1="48.592388" y2="18.944801" x2="55.571598" gradientUnits="userSpaceOnUse" />
3842 <radialGradient fx="52.910923" fy="16.890703" cx="52.910923" cy="16.890703" gradientTransform="matrix(1.477552,0.1264109,-0.1451075,1.6960871,-22.171939,-18.388602)" xlink:href="#jh-lg3178" id="jh-rg3184" r="4.196999" gradientUnits="userSpaceOnUse" />
3843 <radialGradient fx="51.662891" fy="36.241524" cx="51.662891" cy="36.241524" gradientTransform="matrix(0.4488102,0.0970197,-4.9216724e-2,0.227675,30.259747,23.148313)" xlink:href="#jh-lg3222" id="jh-rg3230" r="6.0614729" gradientUnits="userSpaceOnUse" />
3844 <linearGradient xlink:href="#jh-lg3222" id="jh-lg3248" y1="39.249527" x1="63.244202" y2="40.709438" x2="56.919224" gradientUnits="userSpaceOnUse" />
3845 <linearGradient gradientTransform="translate(14.001843,3.2516129)" xlink:href="#jh-lg3254" id="jh-lg3260" y1="35.22039" x1="36.684235" y2="31.451614" x2="41.123863" gradientUnits="userSpaceOnUse" />
3846 <linearGradient gradientTransform="translate(13.338248,5.3751152)" xlink:href="#jh-lg3254" id="jh-lg3264" y1="35.22039" x1="36.684235" y2="31.451614" gradientUnits="userSpaceOnUse" x2="41.123863" />
3847 <linearGradient gradientTransform="translate(13.802764,7.432258)" xlink:href="#jh-lg3254" id="jh-lg3270" y1="35.22039" x1="36.684235" y2="31.451614" gradientUnits="userSpaceOnUse" x2="41.123863" />
3848 <linearGradient xlink:href="#jh-lg3272" id="jh-lg3278" y1="50.684738" x1="58.416325" y2="49.556629" x2="64.758987" gradientUnits="userSpaceOnUse" />
3849 <radialGradient fx="35.740501" fy="6.3682952" cx="35.740501" cy="6.3682952" gradientTransform="matrix(1.6201134,0.0134035,-1.2950474e-2,1.5653559,-22.517967,-4.4873282)" xlink:href="#jh-lg3282" id="jh-rg3288" r="4.0815669" gradientUnits="userSpaceOnUse" />
3850 <linearGradient xlink:href="#jh-lg3309" id="jh-lg3333" y1="19.504522" x1="10.474889" y2="19.504522" gradientUnits="userSpaceOnUse" x2="15.06815" />
3851 <linearGradient xlink:href="#jh-lg3319" id="jh-lg3335" y1="23.04064" x1="11.552938" y2="22.642483" gradientUnits="userSpaceOnUse" x2="26.046544" />
3852 <linearGradient xlink:href="#jh-lg3301" id="jh-lg3337" y1="19.703602" x1="24.543093" y2="19.703602" gradientUnits="userSpaceOnUse" x2="29.136353" />
3853 <linearGradient xlink:href="#jh-lg3341" id="jh-lg3347" y1="31.286448" x1="36.121426" y2="25.645895" x2="48.608757" gradientUnits="userSpaceOnUse" />
3854 <linearGradient xlink:href="#jh-lg3349" id="jh-lg3355" y1="19.755604" x1="22.286062" y2="22.078184" x2="33.478802" gradientUnits="userSpaceOnUse" />
3855 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jh-lg3393" id="jh-rg3399" r="9.8880182" gradientUnits="userSpaceOnUse" />
3856 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jh-lg3411" id="jh-rg3405" r="9.8880186" gradientUnits="userSpaceOnUse" />
3857 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jh-lg3419" id="jh-rg3409" r="9.8880186" gradientUnits="userSpaceOnUse" />
3858 <radialGradient fx="38.272812" fy="19.357191" cx="38.272812" cy="19.357191" gradientTransform="matrix(1,0,0,1.5007847,0,-9.8638419)" xlink:href="#jh-lg3363" id="jh-rg3443" r="0.99383211" gradientUnits="userSpaceOnUse" />
3859 <radialGradient fx="32.300461" fy="19.251408" cx="32.300461" cy="19.251408" gradientTransform="matrix(1,0,0,1.5830635,0,-11.426433)" xlink:href="#jh-lg3363" id="jh-rg3445" r="0.99585251" gradientUnits="userSpaceOnUse" />
3860 <linearGradient xlink:href="#jh-lg3381" id="jh-lg3447" y1="23.292442" x1="33.105263" y2="24.813742" gradientUnits="userSpaceOnUse" x2="32.683033" />
3861 <linearGradient xlink:href="#jh-lg3597" id="jh-lg3923" y1="46" x1="62" y2="45" gradientUnits="userSpaceOnUse" x2="66" />
3862 <linearGradient xlink:href="#jh-lg3282" id="jh-lg3925" y1="48" x1="40" y2="44" gradientUnits="userSpaceOnUse" x2="60.099998" />
3863 <linearGradient xlink:href="#jh-lg3597" id="jh-lg3927" y1="45" x1="34" y2="45" gradientUnits="userSpaceOnUse" x2="43" />
3864 <linearGradient gradientTransform="translate(0.299397,-0.887052)" xlink:href="#jh-lg3178" id="jh-lg3929" y1="42" x1="27" y2="47" gradientUnits="userSpaceOnUse" x2="33" />
3865 <linearGradient gradientTransform="translate(-8.748e-2,-0.436875)" xlink:href="#jh-lg3178" id="jh-lg3931" y1="50" x1="27" y2="55" gradientUnits="userSpaceOnUse" x2="34" />
3866 <linearGradient xlink:href="#jh-lg3178" id="jh-lg3933" y1="44" x1="42" y2="39" gradientUnits="userSpaceOnUse" x2="49" />
3867 <linearGradient xlink:href="#jh-lg3178" id="jh-lg3935" y1="51" x1="43" y2="44" gradientUnits="userSpaceOnUse" x2="51" />
3868 <linearGradient xlink:href="#jh-lg3585" id="jh-lg3937" y1="45.40136" x1="24" y2="44.179779" gradientUnits="userSpaceOnUse" x2="29.1" />
3869 <linearGradient xlink:href="#jh-lg3585" id="jh-lg3939" y1="46.73917" x1="22.450691" y2="44.601845" gradientUnits="userSpaceOnUse" x2="29.06175" />
3870 <linearGradient xlink:href="#jh-lg3282" id="jh-lg3941" y1="45" x1="13" y2="49" gradientUnits="userSpaceOnUse" x2="26" />
3871 
3872 <g id="img_jack_heart" transform="scale(1.8) translate(-36, -58)" >
3873 <g transform="translate(-5.1611684e-2,-0.1)" >
3874 <path style="opacity:1;fill:url(#jh-lg3923);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3875 d="M51,33C51,33 56.799078,35.158894 60,39C64.380352,43.683632 66,48.824929 66,55L61,55L58,43L51,33z" />
3876 <path style="opacity:1;fill:url(#jh-lg3925);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3877 d="M37,33L25,34C25,34 23.62143,33.654284 20,38C15,44 14,55 14,55L60,55C60,55 58,42 57,40C55,36 51,33 51,33L37,33z" />
3878 <g>
3879 <path style="opacity:1;fill:url(#jh-lg3927);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3880 d="M38,36C37.181871,42.405328 36.766407,49 38,55L35,55C33.807664,48.75958 34.080926,41.436471 35,36L38,36z" />
3881 <g>
3882 <path style="fill:url(#jh-lg3929);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
3883 d="M26,37C27.846421,39.023467 29.956044,40.857123 32.433432,42.064637C32.716121,42.249993 33.401574,42.321984 32.938979,42.711922C32.410577,43.425983 31.884896,44.143466 31.320736,44.829817C30.931039,44.838084 30.489679,44.446592 30.091498,44.276362C27.852324,43.024649 25.873584,41.350848 24.119488,39.488209C24.567711,38.789205 25.098613,38.145288 25.595154,37.479509C25.72756,37.31808 25.846988,37.142935 26,37z" />
3884 <path style="fill:url(#jh-lg3931);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3885 d="M26.081643,44.677444C27.752719,46.847972 29.701922,48.851323 32.069872,50.261415C32.336102,50.46972 33.013154,50.598676 32.519625,50.94864C31.933463,51.616101 31.349727,52.287202 30.730245,52.924066C30.341218,52.899775 29.934077,52.472809 29.551495,52.269936C27.424617,50.835684 25.592497,49.002557 24,47C24.505005,46.34085 25.087803,45.743495 25.638185,45.121486C25.783604,44.971672 25.917234,44.807108 26.081643,44.677444z" />
3886 <path style="fill:url(#jh-lg3933);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
3887 d="M46.52157,38.946777C44.37892,40.653452 42.006326,42.131154 39.369403,42.932516C39.061002,43.07093 38.372778,43.033831 38.768029,43.491895C39.177105,44.280405 39.582953,45.071866 40.031712,45.838657C40.41522,45.908328 40.912838,45.591405 41.332896,45.486155C43.741567,44.60355 45.959688,43.263043 47.985786,41.700607C47.653508,40.93962 47.230893,40.219979 46.845658,39.484174C46.740391,39.30387 46.650104,39.112071 46.52157,38.946777z" />
3888 <path style="fill:url(#jh-lg3935);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3889 d="M46.504821,45.280781C44.587155,47.236859 42.413249,48.993829 39.894226,50.111894C39.605084,50.287012 38.917493,50.334422 39.365834,50.740669C39.868339,51.473184 40.368001,52.209025 40.907233,52.915129C41.296384,52.937339 41.751474,52.561897 42.155493,52.406028C44.438037,51.235266 46.475421,49.633366 48.295064,47.834706C47.872149,47.120107 47.364635,46.457599 46.892243,45.774473C46.7657,45.608407 46.652618,45.429101 46.504821,45.280781z" />
3890 </g>
3891 </g>
3892 <g>
3893 <path style="opacity:1;fill:url(#jh-lg3937);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3894 d="M25,33.35956C23.18511,34.715424 22,36 22,36C22,42 24,48 26,55L29,55C26.957403,47.944463 25,42 25,33.35956z" />
3895 <path style="opacity:1;fill:url(#jh-lg3939);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3896 d="M27,43C25.333333,43.508027 23.666667,43.824626 22,45C22,45 22,47 23,49C25,49 27.137327,47.929032 28,47C27.584394,45.995755 27.238824,44.711372 27,43z" />
3897 </g>
3898 <path style="opacity:1;fill:url(#jh-lg3941);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3899 d="M22,36C22,36 19.408319,38.183362 17,43C15,47 14,55 14,55L23,55C23,55 21,52 21,45C21,40 22,36 22,36z" />
3900 </g>
3901 <path style="opacity:1;fill:url(#jh-lg3347);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3902 d="M32.184331,26.332719C32.184331,26.332719 31.720921,29.515764 31.32166,30.314285C30.923502,31.110599 30.458986,32.17235 30.458986,32.17235C30.458986,32.17235 33.167934,35.848404 35.767742,35.954839C38.030833,36.047489 39.883105,36.617584 43.929954,33.43318C45.192371,32.439803 45.389862,31.575115 45.389862,31.575115C45.389862,31.575115 43.465437,30.778802 42.735484,29.053456C42.007364,27.332445 42.071889,26.598157 42.071889,26.598157L32.184331,26.332719z" />
3903 <path style="opacity:1;fill:url(#jh-lg3270);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3904 d="M52.134639,41.552323C52.134639,41.552323 48.487396,38.895302 48.231957,40.346409C47.976517,41.797517 49.588366,43.44987 49.588366,43.44987C49.588366,43.44987 51.89709,43.953385 52.550299,43.931812C53.203507,43.910239 52.194356,41.523385 52.134639,41.552323z" />
3905 <path style="opacity:1;fill:url(#jh-lg3264);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3906 d="M51.670123,39.495181C51.670123,39.495181 48.02288,36.83816 47.767441,38.289267C47.512001,39.740375 49.12385,41.392728 49.12385,41.392728C49.12385,41.392728 51.432574,41.896243 52.085783,41.87467C52.738991,41.853097 51.72984,39.466243 51.670123,39.495181z" />
3907 <path style="opacity:1;fill:url(#jh-lg3260);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3908 d="M52.333718,37.371679C52.333718,37.371679 48.686475,34.714658 48.431036,36.165765C48.175596,37.616873 49.787445,39.269226 49.787445,39.269226C49.787445,39.269226 52.096169,39.772741 52.749378,39.751168C53.402586,39.729595 52.393435,37.342741 52.333718,37.371679z" />
3909 <g>
3910 <g>
3911 <g>
3912 <g transform="translate(17.187097,1.7253456)" >
3913 <path style="opacity:1;fill:url(#jh-lg3333);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3914 d="M14.859168,13.193548C14.792809,15.648847 13.797417,18.90046 14.129214,20.493087C14.461012,22.085714 15.257325,23.611981 14.859168,25.071889C14.461012,26.531797 14.394652,28.124423 13.46562,27.726267C12.536588,27.32811 13.133823,27.460829 11.872993,24.93917C10.612164,22.417511 10.081288,18.90046 11.143039,16.644239C12.20479,14.388018 11.275758,12.330875 11.740274,11.799999C13.10422,10.685299 14.495945,11.272124 14.859168,13.193548z" />
3915 <path style="fill:url(#jh-lg3355);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3916 d="M27.472809,19.862673C27.472809,25.595333 24.523263,30.247927 19.907831,30.247927C15.2924,30.247927 10.617316,22.785163 12.87373,18.601843C13.540718,17.365268 13.191921,16.096882 13.097966,14.874022C12.971971,13.217562 12.953787,12.182744 13.47138,11.591266C15.068677,9.7659563 17.734461,9.1609099 20.040551,9.2783399C25.319576,9.5437779 27.472809,14.130012 27.472809,19.862673z" />
3917 <path style="opacity:1;fill:url(#jh-lg3335);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3918 d="M25.548387,19.564056C24.552995,21.820277 25.455805,21.663093 22.735067,22.592126C20.01433,23.521158 16.355769,22.656727 16.355769,22.656727C16.355769,22.656727 16.27022,22.876752 15.329032,22.749309C13.973369,22.565743 12.587283,22.301112 12.487732,21.708505C12.37596,21.043152 12.089575,20.491329 12.089575,20.491329C12.089575,20.491329 11.298536,21.289401 11.497615,22.68295C11.696693,24.076498 12.107159,25.225556 13.736406,25.337328C15.65758,25.467316 16.324424,24.939171 16.324424,24.939171C16.324424,24.939171 18.092656,25.416292 19.708756,25.602765C21.434101,25.801844 23.424885,25.403687 24.088479,24.806452C24.752074,24.209217 25.946544,23.280185 25.946544,22.483871C25.946544,21.687558 25.614746,19.696775 25.548387,19.564056z" />
3919 <path style="opacity:1;fill:url(#jh-lg3337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3920 d="M27.074654,11.468203C27.074654,11.468203 24.685714,10.937327 24.752074,13.392627C24.818433,15.847926 25.813825,19.099539 25.482028,20.692166C25.15023,22.284793 24.353917,23.81106 24.752074,25.270968C25.15023,26.730876 25.21659,28.323502 26.145622,27.925346C27.074654,27.527189 26.477419,27.659908 27.738249,25.138249C28.999078,22.61659 29.529954,19.099539 28.468203,16.843318C27.406452,14.587097 28.335484,12.529954 27.870968,11.999078C27.406452,11.468203 27.008295,11.335484 27.074654,11.468203z" />
3921 </g>
3922 <g>
3923 <g transform="translate(-0.3981567,0)" >
3924 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3925 d="M34.172446,18.715901C34.172446,18.715901 34.535741,19.578726 34.26327,20.237199C33.990799,20.895671 33.468562,21.599556 33.468562,21.599556" />
3926 <path style="opacity:1;fill:url(#jh-lg3447);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3927 d="M34.308683,23.847444C34.308683,23.847444 32.492208,24.188033 32.060795,23.506855C31.629382,22.825676 31.765617,21.872026 32.401383,21.644967C33.03715,21.417908 33.491269,21.486025 34.26327,21.395201" />
3928 </g>
3929 <g transform="translate(-0.2654377,0)" >
3930 <path style="opacity:1;fill:url(#jh-rg3443);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.19595918;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3931 d="M39.550229,19.696774A0.89585251,1.3935484 0 1 1 37.758524,19.696774A0.89585251,1.3935484 0 1 1 39.550229,19.696774z" transform="matrix(1,0,0,1.0416667,-1.8580645,-0.8455837)" />
3932 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3933 d="M38.19951,19.06443C38.19951,19.06443 37.451655,18.1701 36.993415,18.045507C36.570349,17.930478 35.662414,18.736866 35.662414,18.736866" />
3934 </g>
3935 <g transform="translate(-0.1990783,0)" >
3936 <path style="opacity:1;fill:url(#jh-rg3445);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3937 d="M33.577878,19.597235A0.89585251,1.4764978 0 1 1 31.786173,19.597235A0.89585251,1.4764978 0 1 1 33.577878,19.597235z" transform="translate(-3.3179724e-2,0)" />
3938 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3939 d="M33.64424,18.568664C33.64424,18.568664 33.183176,17.904577 32.6648,17.9326C32.155654,17.960124 31.837533,18.170578 31.169643,18.842007" />
3940 </g>
3941 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3942 d="M38.468059,17.698272C37.438072,16.714442 36.02184,16.193306 34.778889,17.644379" />
3943 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3944 d="M33.414333,17.659911C32.538107,16.591993 31.402556,16.875372 30.662159,17.819273" />
3945 </g>
3946 </g>
3947 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3948 d="M36.829493,28.058064C36.829493,28.058064 35.170507,27.593548 33.843318,27.32811C32.706905,27.100828 32.250691,27.792627 32.250691,27.792627" />
3949 </g>
3950 <g>
3951 <path style="opacity:1;fill:url(#jh-rg3405);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.18424280000000001;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3952 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(0.7137776,0.6483795,-0.6308715,1.077813,29.716815,-25.012313)" />
3953 <path style="opacity:1;fill:url(#jh-rg3409);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.18424280000000001;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3954 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(-0.7137776,0.6483795,0.6308715,1.077813,45.335723,-25.941345)" />
3955 <path style="opacity:1;fill:url(#jh-rg3288);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3956 d="M39.948387,6.6239634A3.9815669,4.3797235 0 1 1 31.985253,6.6239634A3.9815669,4.3797235 0 1 1 39.948387,6.6239634z" />
3957 <path style="opacity:1;fill:url(#jh-rg3399);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.18165903;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3958 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(1,0,0,1.2121212,0,-3.5446724)" />
3959 </g>
3960 </g>
3961 <g>
3962 <rect width="2.8885317" x="50.16613" y="25.071489" rx="0.036742982" ry="1.0272301" height="29.82851" style="opacity:1;fill:url(#jh-lg3162);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
3963 <g>
3964 <path style="opacity:1;fill:url(#jh-lg3174);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3965 d="M56.473741,30.830654C56.473741,30.830654 54.47374,26.884244 53,26C51.526259,25.115755 50.751463,25.248537 50,26C49,27 47.867095,28.590568 47.867095,28.590568C48.161843,24.405145 50,24.260199 50,23C50.000001,20.229368 50,14 50,11C50,8 51.412647,7.0589496 51.412647,7.0589496C51.412647,7.0589496 52.965867,8.1106351 52.936763,11.200429C52.909875,14.000585 52.964781,16.705867 53.054662,21.811361C53.08693,23.70319 56.178993,25.11254 56.473741,30.830654z" />
3966 <path style="opacity:1;fill:url(#jh-rg3184);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3967 d="M54.764201,9.9035368C54.764201,9.9035368 60.069666,12.190105 60.069667,17.213291C60.069668,22.282959 54.94105,23.992497 54.94105,23.992497C54.94105,23.992497 56.061093,22.16506 55.235799,20.51447C54.410504,18.863881 52.759914,18.745981 52.759914,18.745981C52.759914,18.745981 51.875669,17.861738 51.875669,16.977493C51.875669,16.093249 52.759914,15.209004 52.759914,15.209004C52.759914,15.209004 54.233654,15.032154 54.94105,13.853162C55.648445,12.674169 54.882101,10.021436 54.764201,9.9035368z" />
3968 </g>
3969 </g>
3970 <g>
3971 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3972 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
3973 <path style="opacity:1;fill:url(#jh-rg3230);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3974 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
3975 <path style="opacity:1;fill:url(#jh-lg3248);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3976 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
3977 </g>
3978 <path style="opacity:1;fill:url(#jh-lg3278);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
3979 d="M60.700749,45.043092C60.700749,45.043092 60.032279,46.044135 58.715983,46.697064C56.970624,47.562824 55.374961,46.89554 55.176484,46.763223C54.978008,46.630905 55,55 55,55L63,55C63,55 62.950149,51.427422 61.957767,47.689447C61.508539,45.997352 60.733828,45.010013 60.700749,45.043092z" />
3980 <g transform="translate(-5.1611684e-2,-9.9572891e-2)" >
3981 <path style="opacity:1;fill:url(#jh-lg3575);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3982 d="M45.337268,31.575182C45.337268,31.575182 47.646435,31.838122 49.409196,32.526704C51.171956,33.215288 50.499539,33.521401 50.499539,33.521401C50.499539,33.521401 50.635661,36.182169 45,39C39,42 36,41 36,41L36,36C36,36 39.346293,35.916158 41.356583,34.816245C44.089126,33.321158 45.337268,31.850615 45.337268,31.575182z" />
3983 <path style="opacity:1;fill:url(#jh-lg3571);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
3984 d="M30.591705,32.039631C30.591705,32.039631 27.937327,31.973272 26.477419,32.636866C25.017512,33.300461 24.420276,33.499539 24.420276,33.499539C24.420276,33.499539 24.760795,34.551843 29,38C32.467282,40.820277 35,41 35,41L36,36C36,36 34.120551,35.548147 33.146544,34.843318C31.486418,33.641986 30.591705,32.305069 30.591705,32.039631z" />
3985 </g>
3986 </g>
3987 <!-- }}} -->
3988 
3989 <!-- * Jack of Diamonds {{{ -->
3990 <linearGradient xlink:href="#jd-lg3563" id="jd-lg3571" y1="35.613823" x1="33.66037" y2="41" x2="37" gradientUnits="userSpaceOnUse" />
3991 <linearGradient id="jd-lg3563" >
3992 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
3993 <stop offset="1" style="stop-color:#8df;stop-opacity:1" />
3994 </linearGradient>
3995 <linearGradient gradientTransform="matrix(-1.2074468,0,0,1.0376568,81.379271,-1.3391627)" xlink:href="#jd-lg3563" id="jd-lg3575" y1="35.997532" x1="31.022362" y2="32.890991" gradientUnits="userSpaceOnUse" x2="24.735945" />
3996 <linearGradient id="jd-lg3585" >
3997 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
3998 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
3999 </linearGradient>
4000 <linearGradient id="jd-lg3597" >
4001 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
4002 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4003 </linearGradient>
4004 <linearGradient id="jd-lg3419" >
4005 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
4006 <stop offset="0.44514585" style="stop-color:#090;stop-opacity:1" />
4007 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4008 </linearGradient>
4009 <linearGradient id="jd-lg3411" >
4010 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
4011 <stop offset="0.44514585" style="stop-color:#09f;stop-opacity:1" />
4012 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4013 </linearGradient>
4014 <linearGradient id="jd-lg3393" >
4015 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
4016 <stop offset="0.44514585" style="stop-color:#f00;stop-opacity:1" />
4017 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4018 </linearGradient>
4019 <linearGradient id="jd-lg3381" >
4020 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4021 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4022 </linearGradient>
4023 <linearGradient id="jd-lg3363" >
4024 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
4025 <stop offset="1" style="stop-color:#09f;stop-opacity:1" />
4026 </linearGradient>
4027 <linearGradient id="jd-lg3349" >
4028 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4029 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4030 </linearGradient>
4031 <linearGradient id="jd-lg3341" >
4032 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4033 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4034 </linearGradient>
4035 <linearGradient id="jd-lg3319" >
4036 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4037 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4038 </linearGradient>
4039 <linearGradient id="jd-lg3309" >
4040 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4041 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4042 </linearGradient>
4043 <linearGradient id="jd-lg3301" >
4044 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4045 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4046 </linearGradient>
4047 <linearGradient id="jd-lg3282" >
4048 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
4049 <stop offset="0.53663749" style="stop-color:#fe0;stop-opacity:1" />
4050 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4051 </linearGradient>
4052 <linearGradient id="jd-lg3272" >
4053 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
4054 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4055 </linearGradient>
4056 <linearGradient id="jd-lg3254" >
4057 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4058 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4059 </linearGradient>
4060 <linearGradient id="jd-lg3222" >
4061 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
4062 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
4063 </linearGradient>
4064 <linearGradient id="jd-lg3178" >
4065 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
4066 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4067 </linearGradient>
4068 <linearGradient id="jd-lg3168" >
4069 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
4070 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4071 </linearGradient>
4072 <linearGradient id="jd-lg3156" >
4073 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4074 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4075 </linearGradient>
4076 <linearGradient gradientTransform="translate(0,-0.3357979)" xlink:href="#jd-lg3156" id="jd-lg3162" y1="40.321541" x1="50.41983" y2="40.321545" x2="53.154663" gradientUnits="userSpaceOnUse" />
4077 <linearGradient xlink:href="#jd-lg3168" id="jd-lg3174" y1="18.944801" x1="48.592388" y2="18.944801" x2="55.571598" gradientUnits="userSpaceOnUse" />
4078 <radialGradient fx="52.910923" fy="16.890703" cx="52.910923" cy="16.890703" gradientTransform="matrix(1.477552,0.1264109,-0.1451075,1.6960871,-22.171939,-18.388602)" xlink:href="#jd-lg3178" id="jd-rg3184" r="4.196999" gradientUnits="userSpaceOnUse" />
4079 <radialGradient fx="51.662891" fy="36.241524" cx="51.662891" cy="36.241524" gradientTransform="matrix(0.4488102,0.0970197,-4.9216724e-2,0.227675,30.259747,23.148313)" xlink:href="#jd-lg3222" id="jd-rg3230" r="6.0614729" gradientUnits="userSpaceOnUse" />
4080 <linearGradient xlink:href="#jd-lg3222" id="jd-lg3248" y1="39.249527" x1="63.244202" y2="40.709438" x2="56.919224" gradientUnits="userSpaceOnUse" />
4081 <linearGradient gradientTransform="translate(14.001843,3.2516129)" xlink:href="#jd-lg3254" id="jd-lg3260" y1="35.22039" x1="36.684235" y2="31.451614" x2="41.123863" gradientUnits="userSpaceOnUse" />
4082 <linearGradient gradientTransform="translate(13.338248,5.3751152)" xlink:href="#jd-lg3254" id="jd-lg3264" y1="35.22039" x1="36.684235" y2="31.451614" gradientUnits="userSpaceOnUse" x2="41.123863" />
4083 <linearGradient gradientTransform="translate(13.802764,7.432258)" xlink:href="#jd-lg3254" id="jd-lg3270" y1="35.22039" x1="36.684235" y2="31.451614" gradientUnits="userSpaceOnUse" x2="41.123863" />
4084 <linearGradient xlink:href="#jd-lg3272" id="jd-lg3278" y1="50.684738" x1="58.416325" y2="49.556629" x2="64.758987" gradientUnits="userSpaceOnUse" />
4085 <radialGradient fx="35.740501" fy="6.3682952" cx="35.740501" cy="6.3682952" gradientTransform="matrix(1.6201134,0.0134035,-1.2950474e-2,1.5653559,-22.517967,-4.4873282)" xlink:href="#jd-lg3282" id="jd-rg3288" r="4.0815669" gradientUnits="userSpaceOnUse" />
4086 <linearGradient xlink:href="#jd-lg3309" id="jd-lg3333" y1="19.513489" x1="15.068151" y2="19.513489" gradientUnits="userSpaceOnUse" x2="8.3658457" />
4087 <linearGradient xlink:href="#jd-lg3319" id="jd-lg3335" y1="21.912529" x1="26.046543" y2="26.62405" gradientUnits="userSpaceOnUse" x2="8.7111044" />
4088 <linearGradient xlink:href="#jd-lg3301" id="jd-lg3337" y1="19.106367" x1="29.136353" y2="18.973648" gradientUnits="userSpaceOnUse" x2="24.543093" />
4089 <linearGradient xlink:href="#jd-lg3341" id="jd-lg3347" y1="31.286448" x1="36.121426" y2="25.645895" x2="48.608757" gradientUnits="userSpaceOnUse" />
4090 <linearGradient xlink:href="#jd-lg3349" id="jd-lg3355" y1="24.798922" x1="18.370855" y2="29.245005" x2="10.982948" gradientUnits="userSpaceOnUse" />
4091 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jd-lg3393" id="jd-rg3399" r="9.8880182" gradientUnits="userSpaceOnUse" />
4092 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jd-lg3411" id="jd-rg3405" r="9.8880186" gradientUnits="userSpaceOnUse" />
4093 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jd-lg3419" id="jd-rg3409" r="9.8880186" gradientUnits="userSpaceOnUse" />
4094 <radialGradient fx="38.272812" fy="19.357191" cx="38.272812" cy="19.357191" gradientTransform="matrix(1,0,0,1.5007847,0,-9.8638419)" xlink:href="#jd-lg3363" id="jd-rg3443" r="0.99383211" gradientUnits="userSpaceOnUse" />
4095 <radialGradient fx="32.300461" fy="19.251408" cx="32.300461" cy="19.251408" gradientTransform="matrix(1,0,0,1.5830635,0,-11.426433)" xlink:href="#jd-lg3363" id="jd-rg3445" r="0.99585251" gradientUnits="userSpaceOnUse" />
4096 <linearGradient xlink:href="#jd-lg3381" id="jd-lg3447" y1="23.292442" x1="33.105263" y2="24.813742" gradientUnits="userSpaceOnUse" x2="32.683033" />
4097 <linearGradient xlink:href="#jd-lg3597" id="jd-lg3923" y1="46" x1="62" y2="45" gradientUnits="userSpaceOnUse" x2="66" />
4098 <linearGradient xlink:href="#jd-lg3282" id="jd-lg3925" y1="48" x1="40" y2="44" gradientUnits="userSpaceOnUse" x2="60.099998" />
4099 <linearGradient xlink:href="#jd-lg3597" id="jd-lg3927" y1="45" x1="34" y2="45" gradientUnits="userSpaceOnUse" x2="43" />
4100 <linearGradient gradientTransform="translate(0.299397,-0.887052)" xlink:href="#jd-lg3178" id="jd-lg3929" y1="42" x1="27" y2="47" gradientUnits="userSpaceOnUse" x2="33" />
4101 <linearGradient gradientTransform="translate(-8.748e-2,-0.436875)" xlink:href="#jd-lg3178" id="jd-lg3931" y1="50" x1="27" y2="55" gradientUnits="userSpaceOnUse" x2="34" />
4102 <linearGradient xlink:href="#jd-lg3178" id="jd-lg3933" y1="44" x1="42" y2="39" gradientUnits="userSpaceOnUse" x2="49" />
4103 <linearGradient xlink:href="#jd-lg3178" id="jd-lg3935" y1="51" x1="43" y2="44" gradientUnits="userSpaceOnUse" x2="51" />
4104 <linearGradient xlink:href="#jd-lg3585" id="jd-lg3937" y1="45.40136" x1="24" y2="44.179779" gradientUnits="userSpaceOnUse" x2="29.1" />
4105 <linearGradient xlink:href="#jd-lg3585" id="jd-lg3939" y1="46.73917" x1="22.450691" y2="44.601845" gradientUnits="userSpaceOnUse" x2="29.06175" />
4106 <linearGradient xlink:href="#jd-lg3282" id="jd-lg3941" y1="45" x1="13" y2="49" gradientUnits="userSpaceOnUse" x2="26" />
4107 
4108 <g id="img_jack_diamond" transform="scale(1.8) translate(-36, -58)" >
4109 <g transform="translate(-5.1611684e-2,-0.1)" >
4110 <path style="opacity:1;fill:url(#jd-lg3923);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4111 d="M51,33C51,33 56.799078,35.158894 60,39C64.380352,43.683632 66,48.824929 66,55L61,55L58,43L51,33z" />
4112 <path style="opacity:1;fill:url(#jd-lg3925);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4113 d="M37,33L25,34C25,34 23.62143,33.654284 20,38C15,44 14,55 14,55L60,55C60,55 58,42 57,40C55,36 51,33 51,33L37,33z" />
4114 <g>
4115 <path style="opacity:1;fill:url(#jd-lg3927);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4116 d="M38,36C37.181871,42.405328 36.766407,49 38,55L35,55C33.807664,48.75958 34.080926,41.436471 35,36L38,36z" />
4117 <g>
4118 <path style="fill:url(#jd-lg3929);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
4119 d="M26,37C27.846421,39.023467 29.956044,40.857123 32.433432,42.064637C32.716121,42.249993 33.401574,42.321984 32.938979,42.711922C32.410577,43.425983 31.884896,44.143466 31.320736,44.829817C30.931039,44.838084 30.489679,44.446592 30.091498,44.276362C27.852324,43.024649 25.873584,41.350848 24.119488,39.488209C24.567711,38.789205 25.098613,38.145288 25.595154,37.479509C25.72756,37.31808 25.846988,37.142935 26,37z" />
4120 <path style="fill:url(#jd-lg3931);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4121 d="M26.081643,44.677444C27.752719,46.847972 29.701922,48.851323 32.069872,50.261415C32.336102,50.46972 33.013154,50.598676 32.519625,50.94864C31.933463,51.616101 31.349727,52.287202 30.730245,52.924066C30.341218,52.899775 29.934077,52.472809 29.551495,52.269936C27.424617,50.835684 25.592497,49.002557 24,47C24.505005,46.34085 25.087803,45.743495 25.638185,45.121486C25.783604,44.971672 25.917234,44.807108 26.081643,44.677444z" />
4122 <path style="fill:url(#jd-lg3933);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
4123 d="M46.52157,38.946777C44.37892,40.653452 42.006326,42.131154 39.369403,42.932516C39.061002,43.07093 38.372778,43.033831 38.768029,43.491895C39.177105,44.280405 39.582953,45.071866 40.031712,45.838657C40.41522,45.908328 40.912838,45.591405 41.332896,45.486155C43.741567,44.60355 45.959688,43.263043 47.985786,41.700607C47.653508,40.93962 47.230893,40.219979 46.845658,39.484174C46.740391,39.30387 46.650104,39.112071 46.52157,38.946777z" />
4124 <path style="fill:url(#jd-lg3935);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4125 d="M46.504821,45.280781C44.587155,47.236859 42.413249,48.993829 39.894226,50.111894C39.605084,50.287012 38.917493,50.334422 39.365834,50.740669C39.868339,51.473184 40.368001,52.209025 40.907233,52.915129C41.296384,52.937339 41.751474,52.561897 42.155493,52.406028C44.438037,51.235266 46.475421,49.633366 48.295064,47.834706C47.872149,47.120107 47.364635,46.457599 46.892243,45.774473C46.7657,45.608407 46.652618,45.429101 46.504821,45.280781z" />
4126 </g>
4127 </g>
4128 <g>
4129 <path style="opacity:1;fill:url(#jd-lg3937);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4130 d="M25,33.35956C23.18511,34.715424 22,36 22,36C22,42 24,48 26,55L29,55C26.957403,47.944463 25,42 25,33.35956z" />
4131 <path style="opacity:1;fill:url(#jd-lg3939);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4132 d="M27,43C25.333333,43.508027 23.666667,43.824626 22,45C22,45 22,47 23,49C25,49 27.137327,47.929032 28,47C27.584394,45.995755 27.238824,44.711372 27,43z" />
4133 </g>
4134 <path style="opacity:1;fill:url(#jd-lg3941);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4135 d="M22,36C22,36 19.408319,38.183362 17,43C15,47 14,55 14,55L23,55C23,55 21,52 21,45C21,40 22,36 22,36z" />
4136 </g>
4137 <path style="opacity:1;fill:url(#jd-lg3347);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4138 d="M32.184331,26.332719C32.184331,26.332719 31.720921,29.515764 31.32166,30.314285C30.923502,31.110599 30.458986,32.17235 30.458986,32.17235C30.458986,32.17235 33.167934,35.848404 35.767742,35.954839C38.030833,36.047489 39.883105,36.617584 43.929954,33.43318C45.192371,32.439803 45.389862,31.575115 45.389862,31.575115C45.389862,31.575115 43.465437,30.778802 42.735484,29.053456C42.007364,27.332445 42.071889,26.598157 42.071889,26.598157L32.184331,26.332719z" />
4139 <path style="opacity:1;fill:url(#jd-lg3270);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4140 d="M52.134639,41.552323C52.134639,41.552323 48.487396,38.895302 48.231957,40.346409C47.976517,41.797517 49.588366,43.44987 49.588366,43.44987C49.588366,43.44987 51.89709,43.953385 52.550299,43.931812C53.203507,43.910239 52.194356,41.523385 52.134639,41.552323z" />
4141 <path style="opacity:1;fill:url(#jd-lg3264);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4142 d="M51.670123,39.495181C51.670123,39.495181 48.02288,36.83816 47.767441,38.289267C47.512001,39.740375 49.12385,41.392728 49.12385,41.392728C49.12385,41.392728 51.432574,41.896243 52.085783,41.87467C52.738991,41.853097 51.72984,39.466243 51.670123,39.495181z" />
4143 <path style="opacity:1;fill:url(#jd-lg3260);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4144 d="M52.333718,37.371679C52.333718,37.371679 48.686475,34.714658 48.431036,36.165765C48.175596,37.616873 49.787445,39.269226 49.787445,39.269226C49.787445,39.269226 52.096169,39.772741 52.749378,39.751168C53.402586,39.729595 52.393435,37.342741 52.333718,37.371679z" />
4145 <g transform="matrix(-1,0,0,1,75.04186,-0.5308756)" >
4146 <g>
4147 <g>
4148 <g transform="translate(17.187097,1.7253456)" >
4149 <path style="opacity:1;fill:url(#jd-lg3333);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4150 d="M14.859168,13.193548C14.792809,15.648847 13.797417,18.90046 14.129214,20.493087C14.461012,22.085714 18.044422,23.811059 17.646265,25.270967C17.248109,26.730875 14.394652,28.124423 13.46562,27.726267C12.536588,27.32811 13.133823,27.460829 11.872993,24.93917C10.612164,22.417511 10.081288,18.90046 11.143039,16.644239C12.20479,14.388018 11.275758,12.330875 11.740274,11.799999C13.10422,10.685299 14.495945,11.272124 14.859168,13.193548z" />
4151 <path style="fill:url(#jd-lg3355);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4152 d="M27.472809,19.862673C27.472809,25.595333 24.523263,30.247927 19.907831,30.247927C15.2924,30.247927 10.617316,22.785163 12.87373,18.601843C13.540718,17.365268 13.191921,16.096882 13.097966,14.874022C12.971971,13.217562 12.953787,12.182744 13.47138,11.591266C15.068677,9.7659563 17.734461,9.1609099 20.040551,9.2783399C25.319576,9.5437779 27.472809,14.130012 27.472809,19.862673z" />
4153 <path style="opacity:1;fill:url(#jd-lg3335);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4154 d="M25.548387,19.564056C24.552995,21.820277 25.455805,21.663093 22.735067,22.592126C20.01433,23.521158 16.355769,22.656727 16.355769,22.656727C16.355769,22.656727 16.27022,22.876752 15.329032,22.749309C13.973369,22.565743 12.587283,22.301112 12.487732,21.708505C12.37596,21.043152 12.089575,20.491329 12.089575,20.491329C12.089575,20.491329 11.298536,21.289401 11.497615,22.68295C11.696693,24.076498 12.107159,25.225556 13.736406,25.337328C15.65758,25.467316 16.324424,24.939171 16.324424,24.939171C16.324424,24.939171 18.092656,25.416292 19.708756,25.602765C21.434101,25.801844 23.424885,25.403687 24.088479,24.806452C24.752074,24.209217 25.946544,23.280185 25.946544,22.483871C25.946544,21.687558 25.614746,19.696775 25.548387,19.564056z" />
4155 <path style="opacity:1;fill:url(#jd-lg3337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4156 d="M27.074654,11.468203C27.074654,11.468203 24.685714,10.937327 24.752074,13.392627C24.818433,15.847926 25.813825,19.099539 25.482028,20.692166C25.15023,22.284793 24.353917,23.81106 24.752074,25.270968C25.15023,26.730876 24.692785,27.979001 25.681106,28.190784C26.610138,28.389862 27.870967,29.318894 29.131797,26.797235C30.392626,24.275576 29.529954,19.099539 28.468203,16.843318C27.406452,14.587097 28.335484,12.529954 27.870968,11.999078C27.406452,11.468203 27.008295,11.335484 27.074654,11.468203z" />
4157 </g>
4158 <g>
4159 <g transform="translate(-0.3981567,0)" >
4160 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4161 d="M34.172446,18.715901C34.172446,18.715901 34.535741,19.578726 34.26327,20.237199C33.990799,20.895671 33.468562,21.599556 33.468562,21.599556" />
4162 <path style="opacity:1;fill:url(#jd-lg3447);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4163 d="M34.308683,23.847444C34.308683,23.847444 32.492208,24.188033 32.060795,23.506855C31.629382,22.825676 31.765617,21.872026 32.401383,21.644967C33.03715,21.417908 33.491269,21.486025 34.26327,21.395201" />
4164 </g>
4165 <g transform="translate(-0.2654377,0)" >
4166 <path style="opacity:1;fill:url(#jd-rg3443);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.19595918;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4167 d="M39.550229,19.696774A0.89585251,1.3935484 0 1 1 37.758524,19.696774A0.89585251,1.3935484 0 1 1 39.550229,19.696774z" transform="matrix(1,0,0,1.0416667,-1.8580645,-0.8455837)" />
4168 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4169 d="M38.19951,19.06443C38.19951,19.06443 37.451655,18.1701 36.993415,18.045507C36.570349,17.930478 35.662414,18.736866 35.662414,18.736866" />
4170 </g>
4171 <g transform="translate(-0.1990783,0)" >
4172 <path style="opacity:1;fill:url(#jd-rg3445);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4173 d="M33.577878,19.597235A0.89585251,1.4764978 0 1 1 31.786173,19.597235A0.89585251,1.4764978 0 1 1 33.577878,19.597235z" transform="translate(-3.3179724e-2,0)" />
4174 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4175 d="M33.64424,18.568664C33.64424,18.568664 33.183176,17.904577 32.6648,17.9326C32.155654,17.960124 31.837533,18.170578 31.169643,18.842007" />
4176 </g>
4177 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4178 d="M38.468059,17.698272C37.438072,16.714442 36.02184,16.193306 34.778889,17.644379" />
4179 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4180 d="M33.414333,17.659911C32.538107,16.591993 31.402556,16.875372 30.662159,17.819273" />
4181 </g>
4182 </g>
4183 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4184 d="M36.829493,28.058064C36.829493,28.058064 35.170507,27.593548 33.843318,27.32811C32.706905,27.100828 32.250691,27.792627 32.250691,27.792627" />
4185 </g>
4186 <g>
4187 <path style="opacity:1;fill:url(#jd-rg3405);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1842428;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4188 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(0.7137776,0.6483795,-0.6308715,1.077813,29.716815,-25.012313)" />
4189 <path style="opacity:1;fill:url(#jd-rg3409);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1842428;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4190 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(-0.7137776,0.6483795,0.6308715,1.077813,45.335723,-25.941345)" />
4191 <path style="opacity:1;fill:url(#jd-rg3399);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.18165903;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4192 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(1,0,0,1.2121212,0,-3.5446724)" />
4193 <path style="opacity:1;fill:url(#jd-rg3288);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4194 d="M39.948387,6.6239634A3.9815669,4.3797235 0 1 1 31.985253,6.6239634A3.9815669,4.3797235 0 1 1 39.948387,6.6239634z" />
4195 </g>
4196 </g>
4197 <g>
4198 <rect width="2.8885317" x="50.16613" y="25.071489" rx="0.036742982" ry="1.0272301" height="29.82851" style="opacity:1;fill:url(#jd-lg3162);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
4199 <g>
4200 <path style="opacity:1;fill:url(#jd-lg3174);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4201 d="M56.473741,30.830654C56.473741,30.830654 54.47374,26.884244 53,26C51.526259,25.115755 50.751463,25.248537 50,26C49,27 47.867095,28.590568 47.867095,28.590568C48.161843,24.405145 50,24.260199 50,23C50.000001,20.229368 50,14 50,11C50,8 51.412647,7.0589496 51.412647,7.0589496C51.412647,7.0589496 52.965867,8.1106351 52.936763,11.200429C52.909875,14.000585 52.964781,16.705867 53.054662,21.811361C53.08693,23.70319 56.178993,25.11254 56.473741,30.830654z" />
4202 <path style="opacity:1;fill:url(#jd-rg3184);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4203 d="M54.764201,9.9035368C54.764201,9.9035368 60.069666,12.190105 60.069667,17.213291C60.069668,22.282959 54.94105,23.992497 54.94105,23.992497C54.94105,23.992497 56.061093,22.16506 55.235799,20.51447C54.410504,18.863881 52.759914,18.745981 52.759914,18.745981C52.759914,18.745981 51.875669,17.861738 51.875669,16.977493C51.875669,16.093249 52.759914,15.209004 52.759914,15.209004C52.759914,15.209004 54.233654,15.032154 54.94105,13.853162C55.648445,12.674169 54.882101,10.021436 54.764201,9.9035368z" />
4204 </g>
4205 </g>
4206 <g>
4207 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4208 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4209 <path style="opacity:1;fill:url(#jd-rg3230);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4210 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4211 <path style="opacity:1;fill:url(#jd-lg3248);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4212 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4213 </g>
4214 <path style="opacity:1;fill:url(#jd-lg3278);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4215 d="M60.700749,45.043092C60.700749,45.043092 60.032279,46.044135 58.715983,46.697064C56.970624,47.562824 55.374961,46.89554 55.176484,46.763223C54.978008,46.630905 55,55 55,55L63,55C63,55 62.950149,51.427422 61.957767,47.689447C61.508539,45.997352 60.733828,45.010013 60.700749,45.043092z" />
4216 <g transform="translate(-5.1611684e-2,-9.9572891e-2)" >
4217 <path style="opacity:1;fill:url(#jd-lg3575);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4218 d="M45.337268,31.575182C45.337268,31.575182 47.646435,31.838122 49.409196,32.526704C51.171956,33.215288 50.499539,33.521401 50.499539,33.521401C50.499539,33.521401 50.635661,36.182169 45,39C39,42 36,41 36,41L36,36C36,36 39.346293,35.916158 41.356583,34.816245C44.089126,33.321158 45.337268,31.850615 45.337268,31.575182z" />
4219 <path style="opacity:1;fill:url(#jd-lg3571);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4220 d="M30.591705,32.039631C30.591705,32.039631 27.937327,31.973272 26.477419,32.636866C25.017512,33.300461 24.420276,33.499539 24.420276,33.499539C24.420276,33.499539 24.760795,34.551843 29,38C32.467282,40.820277 35,41 35,41L36,36C36,36 34.120551,35.548147 33.146544,34.843318C31.486418,33.641986 30.591705,32.305069 30.591705,32.039631z" />
4221 </g>
4222 </g>
4223 <!-- }}} -->
4224 
4225 <!-- * Jack of Spades {{{ -->
4226 <linearGradient id="js-lg3597" >
4227 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
4228 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4229 </linearGradient>
4230 <linearGradient id="js-lg3585" >
4231 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
4232 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4233 </linearGradient>
4234 <linearGradient id="js-lg3563" >
4235 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
4236 <stop offset="1" style="stop-color:#8df;stop-opacity:1" />
4237 </linearGradient>
4238 <linearGradient id="js-lg3419" >
4239 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
4240 <stop offset="0.44514585" style="stop-color:#f00;stop-opacity:1" />
4241 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4242 </linearGradient>
4243 <linearGradient id="js-lg3411" >
4244 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
4245 <stop offset="0.44514585" style="stop-color:#09f;stop-opacity:1" />
4246 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4247 </linearGradient>
4248 <linearGradient id="js-lg3393" >
4249 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
4250 <stop offset="0.44514585" style="stop-color:#fe0;stop-opacity:1" />
4251 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4252 </linearGradient>
4253 <linearGradient id="js-lg3381" >
4254 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4255 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4256 </linearGradient>
4257 <linearGradient id="js-lg3363" >
4258 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
4259 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4260 </linearGradient>
4261 <linearGradient id="js-lg3349" >
4262 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4263 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4264 </linearGradient>
4265 <linearGradient id="js-lg3341" >
4266 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4267 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4268 </linearGradient>
4269 <linearGradient id="js-lg3319" >
4270 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
4271 <stop offset="1" style="stop-color:#f90;stop-opacity:1" />
4272 </linearGradient>
4273 <linearGradient id="js-lg3309" >
4274 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
4275 <stop offset="1" style="stop-color:#f90;stop-opacity:1" />
4276 </linearGradient>
4277 <linearGradient id="js-lg3301" >
4278 <stop offset="0" style="stop-color:#000;stop-opacity:1" />
4279 <stop offset="1" style="stop-color:#f90;stop-opacity:1" />
4280 </linearGradient>
4281 <linearGradient id="js-lg3282" >
4282 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
4283 <stop offset="0.53663749" style="stop-color:#090;stop-opacity:1" />
4284 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4285 </linearGradient>
4286 <linearGradient id="js-lg3272" >
4287 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
4288 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4289 </linearGradient>
4290 <linearGradient id="js-lg3254" >
4291 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4292 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4293 </linearGradient>
4294 <linearGradient id="js-lg3222" >
4295 <stop offset="0" style="stop-color:#000;stop-opacity:0.38487973" />
4296 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
4297 </linearGradient>
4298 <linearGradient id="js-lg3178" >
4299 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
4300 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4301 </linearGradient>
4302 <linearGradient id="js-lg3168" >
4303 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
4304 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4305 </linearGradient>
4306 <linearGradient id="js-lg3156" >
4307 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4308 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4309 </linearGradient>
4310 <linearGradient gradientTransform="translate(0,-0.3357979)" xlink:href="#js-lg3156" id="js-lg3162" y1="40.321541" x1="50.41983" y2="40.321545" x2="53.154663" gradientUnits="userSpaceOnUse" />
4311 <linearGradient xlink:href="#js-lg3168" id="js-lg3174" y1="18.944801" x1="48.592388" y2="18.944801" x2="55.571598" gradientUnits="userSpaceOnUse" />
4312 <radialGradient fx="52.910923" fy="16.890703" cx="52.910923" cy="16.890703" gradientTransform="matrix(1.477552,0.1264109,-0.1451075,1.6960871,-22.171939,-18.388602)" xlink:href="#js-lg3178" id="js-rg3184" r="4.196999" gradientUnits="userSpaceOnUse" />
4313 <radialGradient fx="51.662891" fy="36.241524" cx="51.662891" cy="36.241524" gradientTransform="matrix(0.4488102,0.0970197,-4.9216724e-2,0.227675,30.259747,23.148313)" xlink:href="#js-lg3222" id="js-rg3230" r="6.0614729" gradientUnits="userSpaceOnUse" />
4314 <linearGradient xlink:href="#js-lg3222" id="js-lg3248" y1="39.249527" x1="63.244202" y2="40.709438" x2="56.919224" gradientUnits="userSpaceOnUse" />
4315 <linearGradient gradientTransform="translate(14.001843,3.2516129)" xlink:href="#js-lg3254" id="js-lg3260" y1="35.22039" x1="36.684235" y2="31.451614" x2="41.123863" gradientUnits="userSpaceOnUse" />
4316 <linearGradient gradientTransform="translate(13.338248,5.3751152)" xlink:href="#js-lg3254" id="js-lg3264" y1="35.22039" x1="36.684235" y2="31.451614" gradientUnits="userSpaceOnUse" x2="41.123863" />
4317 <linearGradient gradientTransform="translate(13.802764,7.432258)" xlink:href="#js-lg3254" id="js-lg3270" y1="35.22039" x1="36.684235" y2="31.451614" gradientUnits="userSpaceOnUse" x2="41.123863" />
4318 <linearGradient xlink:href="#js-lg3272" id="js-lg3278" y1="50.684738" x1="58.416325" y2="49.556629" x2="64.758987" gradientUnits="userSpaceOnUse" />
4319 <radialGradient fx="35.740501" fy="6.3682952" cx="35.740501" cy="6.3682952" gradientTransform="matrix(1.6201134,0.0134035,-1.2950474e-2,1.5653559,-22.517967,-4.4873282)" xlink:href="#js-lg3282" id="js-rg3288" r="4.0815669" gradientUnits="userSpaceOnUse" />
4320 <linearGradient xlink:href="#js-lg3309" id="js-lg3333" y1="19.513489" x1="9.0149813" y2="19.504522" gradientUnits="userSpaceOnUse" x2="15.06815" />
4321 <linearGradient xlink:href="#js-lg3301" id="js-lg3337" y1="19.703602" x1="24.543093" y2="19.703602" gradientUnits="userSpaceOnUse" x2="28.605478" />
4322 <linearGradient xlink:href="#js-lg3341" id="js-lg3347" y1="31.286448" x1="36.121426" y2="25.645895" x2="48.608757" gradientUnits="userSpaceOnUse" />
4323 <linearGradient xlink:href="#js-lg3349" id="js-lg3355" y1="24.002609" x1="16.64551" y2="25.528875" x2="8.5940084" gradientUnits="userSpaceOnUse" />
4324 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#js-lg3393" id="js-rg3399" r="9.8880182" gradientUnits="userSpaceOnUse" />
4325 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#js-lg3411" id="js-rg3405" r="9.8880186" gradientUnits="userSpaceOnUse" />
4326 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#js-lg3419" id="js-rg3409" r="9.8880186" gradientUnits="userSpaceOnUse" />
4327 <radialGradient fx="38.272812" fy="19.357191" cx="38.272812" cy="19.357191" gradientTransform="matrix(1,0,0,1.5007847,0,-9.8638419)" xlink:href="#js-lg3363" id="js-rg3443" r="0.99383211" gradientUnits="userSpaceOnUse" />
4328 <radialGradient fx="32.300461" fy="19.251408" cx="32.300461" cy="19.251408" gradientTransform="matrix(1,0,0,1.5830635,0,-11.426433)" xlink:href="#js-lg3363" id="js-rg3445" r="0.99585251" gradientUnits="userSpaceOnUse" />
4329 <linearGradient gradientTransform="matrix(1.4050145,0.238102,-0.2334596,1.1235679,-8.6542191,-10.639371)" xlink:href="#js-lg3381" id="js-lg3447" y1="23.292442" x1="33.105263" y2="24.813742" gradientUnits="userSpaceOnUse" x2="32.683033" />
4330 <linearGradient xlink:href="#js-lg3563" id="js-lg3571" y1="35.613823" x1="33.66037" y2="41" x2="37" gradientUnits="userSpaceOnUse" />
4331 <linearGradient gradientTransform="matrix(-1.2074468,0,0,1.0376568,81.379271,-1.3391627)" xlink:href="#js-lg3563" id="js-lg3575" y1="35.997532" x1="31.022362" y2="32.890991" gradientUnits="userSpaceOnUse" x2="24.735945" />
4332 <radialGradient fx="30.348637" fy="8.0370989" cx="30.348637" cy="8.0370989" gradientTransform="matrix(0.7437836,-2.5019179e-2,0.012507,0.2530657,7.8188298,10.289808)" xlink:href="#js-lg3222" id="js-rg3581" r="9.8788481" gradientUnits="userSpaceOnUse" />
4333 <linearGradient xlink:href="#js-lg3585" id="js-lg3591" y1="45.40136" x1="24" y2="44.179779" x2="29.1" gradientUnits="userSpaceOnUse" />
4334 <linearGradient xlink:href="#js-lg3597" id="js-lg3603" y1="46" x1="62" y2="45" x2="66" gradientUnits="userSpaceOnUse" />
4335 <linearGradient xlink:href="#js-lg3585" id="js-lg3613" y1="46.73917" x1="22.450691" y2="44.601845" x2="29.06175" gradientUnits="userSpaceOnUse" />
4336 <linearGradient xlink:href="#js-lg3282" id="js-lg3637" y1="48" x1="40" y2="44" x2="60.099998" gradientUnits="userSpaceOnUse" />
4337 <linearGradient xlink:href="#js-lg3597" id="js-lg3647" y1="45" x1="34" y2="45" x2="43" gradientUnits="userSpaceOnUse" />
4338 <linearGradient xlink:href="#js-lg3178" id="js-lg3665" y1="51" x1="43" y2="44" x2="51" gradientUnits="userSpaceOnUse" />
4339 <linearGradient xlink:href="#js-lg3178" id="js-lg3673" y1="44" x1="42" y2="39" x2="49" gradientUnits="userSpaceOnUse" />
4340 <linearGradient gradientTransform="translate(0.299397,-0.887052)" xlink:href="#js-lg3178" id="js-lg3681" y1="42" x1="27" y2="47" x2="33" gradientUnits="userSpaceOnUse" />
4341 <linearGradient gradientTransform="translate(-8.748e-2,-0.436875)" xlink:href="#js-lg3178" id="js-lg3689" y1="50" x1="27" y2="55" x2="34" gradientUnits="userSpaceOnUse" />
4342 <linearGradient xlink:href="#js-lg3282" id="js-lg3699" y1="45" x1="13" y2="49" x2="26" gradientUnits="userSpaceOnUse" />
4343 <linearGradient xlink:href="#js-lg3319" id="js-lg3716" y1="23.04064" x1="7.6377306" y2="21.968527" gradientUnits="userSpaceOnUse" x2="24.292976" />
4344 
4345 <g id="img_jack_spade" transform="scale(1.8) translate(-36, -58)" >
4346 <g>
4347 <path style="opacity:1;fill:url(#js-lg3603);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4348 d="M51,33C51,33 56.799078,35.158894 60,39C64.380352,43.683632 66,48.824929 66,55L61,55L58,43L51,33z" />
4349 <path style="opacity:1;fill:url(#js-lg3637);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4350 d="M37,33L25,34C25,34 23.62143,33.654284 20,38C15,44 14,55 14,55L60,55C60,55 58,42 57,40C55,36 51,33 51,33L37,33z" />
4351 <g>
4352 <path style="opacity:1;fill:url(#js-lg3647);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4353 d="M38,36C37.181871,42.405328 36.766407,49 38,55L35,55C33.807664,48.75958 34.080926,41.436471 35,36L38,36z" />
4354 <g>
4355 <path style="fill:url(#js-lg3681);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
4356 d="M26,37C27.846421,39.023467 29.956044,40.857123 32.433432,42.064637C32.716121,42.249993 33.401574,42.321984 32.938979,42.711922C32.410577,43.425983 31.884896,44.143466 31.320736,44.829817C30.931039,44.838084 30.489679,44.446592 30.091498,44.276362C27.852324,43.024649 25.873584,41.350848 24.119488,39.488209C24.567711,38.789205 25.098613,38.145288 25.595154,37.479509C25.72756,37.31808 25.846988,37.142935 26,37z" />
4357 <path style="fill:url(#js-lg3689);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4358 d="M26.081643,44.677444C27.752719,46.847972 29.701922,48.851323 32.069872,50.261415C32.336102,50.46972 33.013154,50.598676 32.519625,50.94864C31.933463,51.616101 31.349727,52.287202 30.730245,52.924066C30.341218,52.899775 29.934077,52.472809 29.551495,52.269936C27.424617,50.835684 25.592497,49.002557 24,47C24.505005,46.34085 25.087803,45.743495 25.638185,45.121486C25.783604,44.971672 25.917234,44.807108 26.081643,44.677444z" />
4359 <path style="fill:url(#js-lg3673);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4360 d="M46.52157,38.946777C44.37892,40.653452 42.006326,42.131154 39.369403,42.932516C39.061002,43.07093 38.372778,43.033831 38.768029,43.491895C39.177105,44.280405 39.582953,45.071866 40.031712,45.838657C40.41522,45.908328 40.912838,45.591405 41.332896,45.486155C43.741567,44.60355 45.959688,43.263043 47.985786,41.700607C47.653508,40.93962 47.230893,40.219979 46.845658,39.484174C46.740391,39.30387 46.650104,39.112071 46.52157,38.946777z" />
4361 <path style="fill:url(#js-lg3665);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4362 d="M46.504821,45.280781C44.587155,47.236859 42.413249,48.993829 39.894226,50.111894C39.605084,50.287012 38.917493,50.334422 39.365834,50.740669C39.868339,51.473184 40.368001,52.209025 40.907233,52.915129C41.296384,52.937339 41.751474,52.561897 42.155493,52.406028C44.438037,51.235266 46.475421,49.633366 48.295064,47.834706C47.872149,47.120107 47.364635,46.457599 46.892243,45.774473C46.7657,45.608407 46.652618,45.429101 46.504821,45.280781z" />
4363 </g>
4364 </g>
4365 <g>
4366 <path style="opacity:1;fill:url(#js-lg3591);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4367 d="M25,33.35956C23.18511,34.715424 22,36 22,36C22,42 24,48 26,55L29,55C26.957403,47.944463 25,42 25,33.35956z" />
4368 <path style="opacity:1;fill:url(#js-lg3613);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4369 d="M27,43C25.333333,43.508027 23.666667,43.824626 22,45C22,45 22,47 23,49C25,49 27.137327,47.929032 28,47C27.584394,45.995755 27.238824,44.711372 27,43z" />
4370 </g>
4371 <path style="opacity:1;fill:url(#js-lg3699);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4372 d="M22,36C22,36 19.408319,38.183362 17,43C15,47 14,55 14,55L23,55C23,55 21,52 21,45C21,40 22,36 22,36z" />
4373 </g>
4374 <path style="opacity:1;fill:url(#js-lg3347);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4375 d="M32.184331,26.332719C32.184331,26.332719 31.720921,29.515764 31.32166,30.314285C30.923502,31.110599 30.458986,32.17235 30.458986,32.17235C30.458986,32.17235 33.167934,35.848404 35.767742,35.954839C38.030833,36.047489 39.883105,36.617584 43.929954,33.43318C45.192371,32.439803 45.389862,31.575115 45.389862,31.575115C45.389862,31.575115 43.465437,30.778802 42.735484,29.053456C42.007364,27.332445 42.071889,26.598157 42.071889,26.598157L32.184331,26.332719z" />
4376 <path style="opacity:1;fill:url(#js-lg3270);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4377 d="M52.134639,41.552323C52.134639,41.552323 48.487396,38.895302 48.231957,40.346409C47.976517,41.797517 49.588366,43.44987 49.588366,43.44987C49.588366,43.44987 51.89709,43.953385 52.550299,43.931812C53.203507,43.910239 52.194356,41.523385 52.134639,41.552323z" />
4378 <path style="opacity:1;fill:url(#js-lg3264);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4379 d="M51.670123,39.495181C51.670123,39.495181 48.02288,36.83816 47.767441,38.289267C47.512001,39.740375 49.12385,41.392728 49.12385,41.392728C49.12385,41.392728 51.432574,41.896243 52.085783,41.87467C52.738991,41.853097 51.72984,39.466243 51.670123,39.495181z" />
4380 <path style="opacity:1;fill:url(#js-lg3260);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4381 d="M52.333718,37.371679C52.333718,37.371679 48.686475,34.714658 48.431036,36.165765C48.175596,37.616873 49.787445,39.269226 49.787445,39.269226C49.787445,39.269226 52.096169,39.772741 52.749378,39.751168C53.402586,39.729595 52.393435,37.342741 52.333718,37.371679z" />
4382 <g>
4383 <path style="opacity:1;fill:url(#js-lg3575);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4384 d="M45.337268,31.575182C45.337268,31.575182 47.646435,31.838122 49.409196,32.526704C51.171956,33.215288 50.499539,33.521401 50.499539,33.521401C50.499539,33.521401 50.635661,36.182169 45,39C39,42 36,41 36,41L36,36C36,36 39.346293,35.916158 41.356583,34.816245C44.089126,33.321158 45.337268,31.850615 45.337268,31.575182z" />
4385 <path style="opacity:1;fill:url(#js-lg3571);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4386 d="M30.591705,32.039631C30.591705,32.039631 27.937327,31.973272 26.477419,32.636866C25.017512,33.300461 24.420276,33.499539 24.420276,33.499539C24.420276,33.499539 24.760795,34.551843 29,38C32.467282,40.820277 35,41 35,41L36,36C36,36 34.120551,35.548147 33.146544,34.843318C31.486418,33.641986 30.591705,32.305069 30.591705,32.039631z" />
4387 </g>
4388 <g>
4389 <g transform="matrix(-1,0,0,1,73.985436,0)" >
4390 <g>
4391 <g transform="translate(17.187097,1.7253456)" >
4392 <path style="opacity:1;fill:url(#js-lg3333);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4393 d="M14.859168,13.193548C14.792809,15.648847 13.797417,18.90046 14.129214,20.493087C14.461012,22.085714 15.257325,23.611981 14.859168,25.071889C14.461012,26.531797 14.394652,28.124423 13.46562,27.726267C12.536588,27.32811 13.133823,27.460829 11.872993,24.93917C10.612164,22.417511 10.081288,18.90046 11.143039,16.644239C12.20479,14.388018 11.275758,12.330875 11.740274,11.799999C13.10422,10.685299 14.495945,11.272124 14.859168,13.193548z" />
4394 <path style="fill:url(#js-lg3355);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4395 d="M27.472809,19.862673C27.472809,25.595333 24.517978,30.027126 19.907831,30.247927C14.935153,30.486091 10.461159,22.889268 12.87373,18.601843C13.562735,17.377399 13.191921,16.096882 13.097966,14.874022C12.971971,13.217562 12.953787,12.182744 13.47138,11.591266C15.068677,9.7659563 17.734461,9.1609099 20.040551,9.2783399C25.319576,9.5437779 27.472809,14.130012 27.472809,19.862673z" />
4396 <path style="opacity:1;fill:url(#js-lg3716);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4397 d="M16.387736,23.071704C16.32876,23.468176 18.156866,24.407057 19.24974,24.933616C20.08061,25.333938 20.567535,26.702519 20.354726,27.340943C20.094477,28.121684 18.930439,27.943466 17.25025,27.235867C16.073024,27.928193 14.637829,27.705821 14.246654,26.751319C14.051066,26.274068 13.993,25.021598 14.57662,24.598358C15.01602,24.279706 15.559819,23.672271 15.698875,23.101639C14.987714,22.281147 13.815808,23.097145 13.253026,23.1276C12.578509,23.1641 12.421379,21.955039 12.371603,21.658735C12.259831,20.993382 12.288653,20.42497 12.288653,20.42497C12.288653,20.42497 11.470019,21.275523 11.497615,22.68295C11.563974,26.067281 12.332924,26.371488 13.122692,27.800895C15.468071,31.444638 22.352855,30.810959 25.594299,27.948219C25.902878,28.005107 26.762407,21.327177 26.738806,22.479413C26.720833,23.356919 25.902022,16.964166 25.619702,18.501848C24.879886,22.531321 23.661324,25.040087 20.339572,23.731901C17.163854,22.481227 16.59594,22.858466 16.387736,23.071704z" />
4398 <path style="opacity:1;fill:url(#js-lg3337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4399 d="M27.074654,11.468203C27.074654,11.468203 24.685714,10.937327 24.752074,13.392627C24.818433,15.847926 25.813825,19.099539 25.482028,20.692166C25.15023,22.284793 24.353917,23.81106 24.752074,25.270968C25.15023,26.730876 25.21659,28.323502 26.145622,27.925346C27.074654,27.527189 26.477419,27.659908 27.738249,25.138249C28.999078,22.61659 29.529954,19.099539 28.468203,16.843318C27.406452,14.587097 28.335484,12.529954 27.870968,11.999078C27.406452,11.468203 27.008295,11.335484 27.074654,11.468203z" />
4400 </g>
4401 <g>
4402 <g transform="translate(-0.3981567,0)" >
4403 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4404 d="M34.172446,18.715901C34.172446,18.715901 34.535741,19.578726 34.26327,20.237199C33.990799,20.895671 33.468562,21.599556 33.468562,21.599556" />
4405 <path style="opacity:1;fill:url(#js-lg3447);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4406 d="M33.982564,24.323817C33.982564,24.323817 31.350877,24.273985 30.903763,23.405915C30.45665,22.537845 30.8707,21.498791 31.816969,21.395052C32.763241,21.291313 33.385382,21.475974 34.491259,21.557742" />
4407 </g>
4408 <g transform="translate(-0.2654377,0)" >
4409 <path style="opacity:1;fill:url(#js-rg3443);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.19595918;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4410 d="M39.550229,19.696774A0.89585251,1.3935484 0 1 1 37.758524,19.696774A0.89585251,1.3935484 0 1 1 39.550229,19.696774z" transform="matrix(1,0,0,1.0416667,-1.8580645,-0.8455837)" />
4411 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4412 d="M38.19951,19.06443C38.19951,19.06443 37.451655,18.1701 36.993415,18.045507C36.570349,17.930478 35.662414,18.736866 35.662414,18.736866" />
4413 </g>
4414 <g transform="translate(-0.3317972,0.0663594)" >
4415 <path style="opacity:1;fill:url(#js-rg3445);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4416 d="M33.577878,19.597235A0.89585251,1.4764978 0 1 1 31.786173,19.597235A0.89585251,1.4764978 0 1 1 33.577878,19.597235z" transform="translate(-3.3179724e-2,0)" />
4417 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4418 d="M33.64424,18.568664C33.64424,18.568664 33.183176,17.904577 32.6648,17.9326C32.155654,17.960124 31.837533,18.170578 31.169643,18.842007" />
4419 </g>
4420 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4421 d="M38.468059,17.698272C37.438072,16.714442 36.02184,16.193306 34.778889,17.644379" />
4422 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4423 d="M33.414333,17.659911C32.538107,16.591993 31.402556,16.875372 30.662159,17.819273" />
4424 </g>
4425 </g>
4426 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4427 d="M36.519577,27.610965C36.519577,27.610965 34.860591,27.146449 33.533402,26.881011C32.396989,26.653729 31.940775,27.345528 31.940775,27.345528" />
4428 </g>
4429 <g transform="matrix(-1,0,0,1,73.714672,0.0663594)" >
4430 <path style="opacity:1;fill:url(#js-rg3405);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1842428;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4431 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(0.7137776,0.6483795,-0.6308715,1.077813,29.716815,-25.012313)" />
4432 <path style="opacity:1;fill:url(#js-rg3409);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.1842428;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4433 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(-0.7137776,0.6483795,0.6308715,1.077813,45.335723,-25.941345)" />
4434 <path style="opacity:1;fill:url(#js-rg3399);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.18165903;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4435 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(1,0,0,1.2121212,0,-3.5446724)" />
4436 <path style="opacity:1;fill:url(#js-rg3581);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.18165903;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4437 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(1,0,0,1.2121212,0,-3.5446724)" />
4438 <path style="opacity:1;fill:url(#js-rg3288);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4439 d="M39.948387,6.6239634A3.9815669,4.3797235 0 1 1 31.985253,6.6239634A3.9815669,4.3797235 0 1 1 39.948387,6.6239634z" />
4440 </g>
4441 </g>
4442 <g>
4443 <rect width="2.8885317" x="50.16613" y="25.071489" rx="0.036742982" ry="1.0272301" height="29.82851" style="opacity:1;fill:url(#js-lg3162);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible" />
4444 <g>
4445 <path style="opacity:1;fill:url(#js-lg3174);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4446 d="M56.473741,30.830654C56.473741,30.830654 54.47374,26.884244 53,26C51.526259,25.115755 50.751463,25.248537 50,26C49,27 47.867095,28.590568 47.867095,28.590568C48.161843,24.405145 50,24.260199 50,23C50.000001,20.229368 50,14 50,11C50,8 51.412647,7.0589496 51.412647,7.0589496C51.412647,7.0589496 52.965867,8.1106351 52.936763,11.200429C52.909875,14.000585 52.964781,16.705867 53.054662,21.811361C53.08693,23.70319 56.178993,25.11254 56.473741,30.830654z" />
4447 <path style="opacity:1;fill:url(#js-rg3184);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4448 d="M54.764201,9.9035368C54.764201,9.9035368 60.069666,12.190105 60.069667,17.213291C60.069668,22.282959 54.94105,23.992497 54.94105,23.992497C54.94105,23.992497 56.061093,22.16506 55.235799,20.51447C54.410504,18.863881 52.759914,18.745981 52.759914,18.745981C52.759914,18.745981 51.875669,17.861738 51.875669,16.977493C51.875669,16.093249 52.759914,15.209004 52.759914,15.209004C52.759914,15.209004 54.233654,15.032154 54.94105,13.853162C55.648445,12.674169 54.882101,10.021436 54.764201,9.9035368z" />
4449 </g>
4450 </g>
4451 <g>
4452 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4453 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4454 <path style="opacity:1;fill:url(#js-rg3230);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4455 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4456 <path style="opacity:1;fill:url(#js-lg3248);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4457 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4458 </g>
4459 <path style="opacity:1;fill:url(#js-lg3278);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4460 d="M60.700749,45.043092C60.700749,45.043092 60.032279,46.044135 58.715983,46.697064C56.970624,47.562824 55.374961,46.89554 55.176484,46.763223C54.978008,46.630905 55,55 55,55L63,55C63,55 62.950149,51.427422 61.957767,47.689447C61.508539,45.997352 60.733828,45.010013 60.700749,45.043092z" />
4461 </g>
4462 <!-- }}} -->
4463 
4464 <!-- * Jack of Clubs {{{ -->
4465 <linearGradient id="jc-lg3597" >
4466 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
4467 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4468 </linearGradient>
4469 <linearGradient id="jc-lg3585" >
4470 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
4471 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4472 </linearGradient>
4473 <linearGradient id="jc-lg3563" >
4474 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
4475 <stop offset="1" style="stop-color:#8df;stop-opacity:1" />
4476 </linearGradient>
4477 <linearGradient id="jc-lg3419" >
4478 <stop offset="0" style="stop-color:#f00;stop-opacity:1" />
4479 <stop offset="0.44514585" style="stop-color:#f00;stop-opacity:1" />
4480 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4481 </linearGradient>
4482 <linearGradient id="jc-lg3411" >
4483 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
4484 <stop offset="0.44514585" style="stop-color:#090;stop-opacity:1" />
4485 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4486 </linearGradient>
4487 <linearGradient id="jc-lg3393" >
4488 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
4489 <stop offset="0.44514585" style="stop-color:#fe0;stop-opacity:1" />
4490 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4491 </linearGradient>
4492 <linearGradient id="jc-lg3381" >
4493 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4494 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4495 </linearGradient>
4496 <linearGradient id="jc-lg3363" >
4497 <stop offset="0" style="stop-color:#fff;stop-opacity:1" />
4498 <stop offset="1" style="stop-color:#09f;stop-opacity:1" />
4499 </linearGradient>
4500 <linearGradient id="jc-lg3349" >
4501 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4502 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4503 </linearGradient>
4504 <linearGradient id="jc-lg3341" >
4505 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4506 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4507 </linearGradient>
4508 <linearGradient id="jc-lg3319" >
4509 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4510 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4511 </linearGradient>
4512 <linearGradient id="jc-lg3309" >
4513 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4514 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4515 </linearGradient>
4516 <linearGradient id="jc-lg3301" >
4517 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4518 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4519 </linearGradient>
4520 <linearGradient id="jc-lg3282" >
4521 <stop offset="0" style="stop-color:#09f;stop-opacity:1" />
4522 <stop offset="0.53663749" style="stop-color:#09f;stop-opacity:1" />
4523 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4524 </linearGradient>
4525 <linearGradient id="jc-lg3272" >
4526 <stop offset="0" style="stop-color:#fe0;stop-opacity:1" />
4527 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4528 </linearGradient>
4529 <linearGradient id="jc-lg3254" >
4530 <stop offset="0" style="stop-color:#ffd0d0;stop-opacity:1" />
4531 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4532 </linearGradient>
4533 <linearGradient id="jc-lg3222" >
4534 <stop offset="0" style="stop-color:#000;stop-opacity:0.38487973" />
4535 <stop offset="1" style="stop-color:#000;stop-opacity:0" />
4536 </linearGradient>
4537 <linearGradient id="jc-lg3178" >
4538 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
4539 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4540 </linearGradient>
4541 <linearGradient id="jc-lg3168" >
4542 <stop offset="0" style="stop-color:#8df;stop-opacity:1" />
4543 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4544 </linearGradient>
4545 <linearGradient id="jc-lg3156" >
4546 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4547 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4548 </linearGradient>
4549 <linearGradient gradientTransform="translate(0,-0.3357979)" xlink:href="#jc-lg3156" id="jc-lg3162" y1="40.321541" x1="50.41983" y2="40.321545" x2="53.154663" gradientUnits="userSpaceOnUse" />
4550 <linearGradient xlink:href="#jc-lg3168" id="jc-lg3174" y1="18.944801" x1="48.592388" y2="18.944801" x2="55.571598" gradientUnits="userSpaceOnUse" />
4551 <radialGradient fx="52.910923" fy="16.890703" cx="52.910923" cy="16.890703" gradientTransform="matrix(1.477552,0.1264109,-0.1451075,1.6960871,-22.171939,-18.388602)" xlink:href="#jc-lg3178" id="jc-rg3184" r="4.196999" gradientUnits="userSpaceOnUse" />
4552 <radialGradient fx="51.662891" fy="36.241524" cx="51.662891" cy="36.241524" gradientTransform="matrix(0.4488102,0.0970197,-4.9216724e-2,0.227675,30.259747,23.148313)" xlink:href="#jc-lg3222" id="jc-rg3230" r="6.0614729" gradientUnits="userSpaceOnUse" />
4553 <linearGradient xlink:href="#jc-lg3222" id="jc-lg3248" y1="39.249527" x1="63.244202" y2="40.709438" x2="56.919224" gradientUnits="userSpaceOnUse" />
4554 <linearGradient gradientTransform="translate(14.001843,3.2516129)" xlink:href="#jc-lg3254" id="jc-lg3260" y1="35.22039" x1="36.684235" y2="31.451614" x2="41.123863" gradientUnits="userSpaceOnUse" />
4555 <linearGradient gradientTransform="translate(13.338248,5.3751152)" xlink:href="#jc-lg3254" id="jc-lg3264" y1="35.22039" x1="36.684235" y2="31.451614" gradientUnits="userSpaceOnUse" x2="41.123863" />
4556 <linearGradient gradientTransform="translate(13.802764,7.432258)" xlink:href="#jc-lg3254" id="jc-lg3270" y1="35.22039" x1="36.684235" y2="31.451614" gradientUnits="userSpaceOnUse" x2="41.123863" />
4557 <linearGradient xlink:href="#jc-lg3272" id="jc-lg3278" y1="50.684738" x1="58.416325" y2="49.556629" x2="64.758987" gradientUnits="userSpaceOnUse" />
4558 <radialGradient fx="35.740501" fy="6.3682952" cx="35.740501" cy="6.3682952" gradientTransform="matrix(1.6201134,0.0134035,-1.2950474e-2,1.5653559,-22.517967,-4.4873282)" xlink:href="#jc-lg3282" id="jc-rg3288" r="4.0815669" gradientUnits="userSpaceOnUse" />
4559 <linearGradient xlink:href="#jc-lg3309" id="jc-lg3333" y1="19.504522" x1="10.474889" y2="19.504522" gradientUnits="userSpaceOnUse" x2="15.06815" />
4560 <linearGradient xlink:href="#jc-lg3301" id="jc-lg3337" y1="19.703602" x1="24.543093" y2="19.703602" gradientUnits="userSpaceOnUse" x2="29.136353" />
4561 <linearGradient xlink:href="#jc-lg3341" id="jc-lg3347" y1="31.286448" x1="36.121426" y2="25.645895" x2="48.608757" gradientUnits="userSpaceOnUse" />
4562 <linearGradient xlink:href="#jc-lg3349" id="jc-lg3355" y1="19.755604" x1="22.286062" y2="22.078184" x2="33.478802" gradientUnits="userSpaceOnUse" />
4563 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jc-lg3393" id="jc-rg3399" r="9.8880182" gradientUnits="userSpaceOnUse" />
4564 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jc-lg3411" id="jc-rg3405" r="9.8880186" gradientUnits="userSpaceOnUse" />
4565 <radialGradient fx="30.628456" fy="12.06356" cx="30.628456" cy="12.06356" gradientTransform="matrix(1.5037046,0.00226005,-9.2791599e-4,0.6173823,-15.486435,5.3115217)" xlink:href="#jc-lg3419" id="jc-rg3409" r="9.8880186" gradientUnits="userSpaceOnUse" />
4566 <radialGradient fx="38.272812" fy="19.357191" cx="38.272812" cy="19.357191" gradientTransform="matrix(1,0,0,1.5007847,0,-9.8638419)" xlink:href="#jc-lg3363" id="jc-rg3443" r="0.99383211" gradientUnits="userSpaceOnUse" />
4567 <radialGradient fx="32.300461" fy="19.251408" cx="32.300461" cy="19.251408" gradientTransform="matrix(1,0,0,1.5830635,0,-11.426433)" xlink:href="#jc-lg3363" id="jc-rg3445" r="0.99585251" gradientUnits="userSpaceOnUse" />
4568 <linearGradient gradientTransform="matrix(1.4050145,0.238102,-0.2334596,1.1235679,-8.6542191,-10.639371)" xlink:href="#jc-lg3381" id="jc-lg3447" y1="23.292442" x1="33.105263" y2="24.813742" gradientUnits="userSpaceOnUse" x2="32.683033" />
4569 <linearGradient xlink:href="#jc-lg3563" id="jc-lg3571" y1="35.613823" x1="33.66037" y2="41" x2="37" gradientUnits="userSpaceOnUse" />
4570 <linearGradient gradientTransform="matrix(-1.2074468,0,0,1.0376568,81.379271,-1.3391627)" xlink:href="#jc-lg3563" id="jc-lg3575" y1="35.997532" x1="31.022362" y2="32.890991" gradientUnits="userSpaceOnUse" x2="24.735945" />
4571 <radialGradient fx="30.348637" fy="8.0370989" cx="30.348637" cy="8.0370989" gradientTransform="matrix(0.7437836,-2.5019179e-2,0.012507,0.2530657,7.8188298,10.289808)" xlink:href="#jc-lg3222" id="jc-rg3581" r="9.8788481" gradientUnits="userSpaceOnUse" />
4572 <linearGradient xlink:href="#jc-lg3585" id="jc-lg3591" y1="45.40136" x1="24" y2="44.179779" x2="29.1" gradientUnits="userSpaceOnUse" />
4573 <linearGradient xlink:href="#jc-lg3597" id="jc-lg3603" y1="46" x1="62" y2="45" x2="66" gradientUnits="userSpaceOnUse" />
4574 <linearGradient xlink:href="#jc-lg3585" id="jc-lg3613" y1="46.73917" x1="22.450691" y2="44.601845" x2="29.06175" gradientUnits="userSpaceOnUse" />
4575 <linearGradient xlink:href="#jc-lg3282" id="jc-lg3637" y1="48" x1="40" y2="44" x2="60.099998" gradientUnits="userSpaceOnUse" />
4576 <linearGradient xlink:href="#jc-lg3597" id="jc-lg3647" y1="45" x1="34" y2="45" x2="43" gradientUnits="userSpaceOnUse" />
4577 <linearGradient xlink:href="#jc-lg3178" id="jc-lg3665" y1="51" x1="43" y2="44" x2="51" gradientUnits="userSpaceOnUse" />
4578 <linearGradient xlink:href="#jc-lg3178" id="jc-lg3673" y1="44" x1="42" y2="39" x2="49" gradientUnits="userSpaceOnUse" />
4579 <linearGradient gradientTransform="translate(0.299397,-0.887052)" xlink:href="#jc-lg3178" id="jc-lg3681" y1="42" x1="27" y2="47" x2="33" gradientUnits="userSpaceOnUse" />
4580 <linearGradient gradientTransform="translate(-8.748e-2,-0.436875)" xlink:href="#jc-lg3178" id="jc-lg3689" y1="50" x1="27" y2="55" x2="34" gradientUnits="userSpaceOnUse" />
4581 <linearGradient xlink:href="#jc-lg3282" id="jc-lg3699" y1="45" x1="13" y2="49" x2="26" gradientUnits="userSpaceOnUse" />
4582 <linearGradient xlink:href="#jc-lg3319" id="jc-lg3716" y1="23.04064" x1="11.552938" y2="22.101246" gradientUnits="userSpaceOnUse" x2="27.345512" />
4583 
4584 <g id="img_jack_club" transform="scale(1.8) translate(-36, -58)" >
4585 <path style="opacity:1;fill:url(#jc-lg3603);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4586 d="M51,33C51,33 56.799078,35.158894 60,39C64.380352,43.683632 66,48.824929 66,55L61,55L58,43L51,33z" />
4587 <path style="opacity:1;fill:url(#jc-lg3637);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4588 d="M37,33L25,34C25,34 23.62143,33.654284 20,38C15,44 14,55 14,55L60,55C60,55 58,42 57,40C55,36 51,33 51,33L37,33z" />
4589 <path style="fill:url(#jc-lg3681);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4590 d="M26,37C27.846421,39.023467 29.956044,40.857123 32.433432,42.064637C32.716121,42.249993 33.401574,42.321984 32.938979,42.711922C32.410577,43.425983 31.884896,44.143466 31.320736,44.829817C30.931039,44.838084 30.489679,44.446592 30.091498,44.276362C27.852324,43.024649 25.873584,41.350848 24.119488,39.488209C24.567711,38.789205 25.098613,38.145288 25.595154,37.479509C25.72756,37.31808 25.846988,37.142935 26,37z" />
4591 <path style="opacity:1;fill:url(#jc-lg3647);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4592 d="M38,36C37.181871,42.405328 36.766407,49 38,55L35,55C33.807664,48.75958 34.080926,41.436471 35,36L38,36z" />
4593 <path style="opacity:1;fill:url(#jc-lg3347);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4594 d="M32.184331,26.332719C32.184331,26.332719 31.720921,29.515764 31.32166,30.314285C30.923502,31.110599 30.458986,32.17235 30.458986,32.17235C30.458986,32.17235 33.167934,35.848404 35.767742,35.954839C38.030833,36.047489 39.883105,36.617584 43.929954,33.43318C45.192371,32.439803 45.389862,31.575115 45.389862,31.575115C45.389862,31.575115 43.465437,30.778802 42.735484,29.053456C42.007364,27.332445 42.071889,26.598157 42.071889,26.598157L32.184331,26.332719z" />
4595 <path style="opacity:1;fill:url(#jc-lg3270);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4596 d="M52.134639,41.552323C52.134639,41.552323 48.487396,38.895302 48.231957,40.346409C47.976517,41.797517 49.588366,43.44987 49.588366,43.44987C49.588366,43.44987 51.89709,43.953385 52.550299,43.931812C53.203507,43.910239 52.194356,41.523385 52.134639,41.552323z" />
4597 <path style="opacity:1;fill:url(#jc-lg3264);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4598 d="M51.670123,39.495181C51.670123,39.495181 48.02288,36.83816 47.767441,38.289267C47.512001,39.740375 49.12385,41.392728 49.12385,41.392728C49.12385,41.392728 51.432574,41.896243 52.085783,41.87467C52.738991,41.853097 51.72984,39.466243 51.670123,39.495181z" />
4599 <path style="opacity:1;fill:url(#jc-lg3260);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4600 d="M52.333718,37.371679C52.333718,37.371679 48.686475,34.714658 48.431036,36.165765C48.175596,37.616873 49.787445,39.269226 49.787445,39.269226C49.787445,39.269226 52.096169,39.772741 52.749378,39.751168C53.402586,39.729595 52.393435,37.342741 52.333718,37.371679z" />
4601 <g>
4602 <g>
4603 <g>
4604 <g transform="translate(17.187097,1.7253456)" >
4605 <path style="opacity:1;fill:url(#jc-lg3333);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4606 d="M14.859168,13.193548C14.792809,15.648847 13.797417,18.90046 14.129214,20.493087C14.461012,22.085714 15.257325,23.611981 14.859168,25.071889C14.461012,26.531797 14.394652,28.124423 13.46562,27.726267C12.536588,27.32811 13.133823,27.460829 11.872993,24.93917C10.612164,22.417511 10.081288,18.90046 11.143039,16.644239C12.20479,14.388018 11.275758,12.330875 11.740274,11.799999C13.10422,10.685299 14.495945,11.272124 14.859168,13.193548z" />
4607 <path style="fill:url(#jc-lg3355);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4608 d="M27.472809,19.862673C27.472809,25.595333 24.517978,30.027126 19.907831,30.247927C14.935153,30.486091 10.461159,22.889268 12.87373,18.601843C13.562735,17.377399 13.191921,16.096882 13.097966,14.874022C12.971971,13.217562 12.953787,12.182744 13.47138,11.591266C15.068677,9.7659563 17.734461,9.1609099 20.040551,9.2783399C25.319576,9.5437779 27.472809,14.130012 27.472809,19.862673z" />
4609 <path style="opacity:1;fill:url(#jc-lg3716);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4610 d="M16.387736,23.071704C16.32876,23.468176 18.156866,24.407057 19.24974,24.933616C20.08061,25.333938 20.567535,26.702519 20.354726,27.340943C20.094477,28.121684 18.930439,27.943466 17.25025,27.235867C16.073024,27.928193 14.637829,27.705821 14.246654,26.751319C14.051066,26.274068 13.993,25.021598 14.57662,24.598358C15.01602,24.279706 15.559819,23.672271 15.698875,23.101639C14.987714,22.281147 13.815808,23.097145 13.253026,23.1276C12.578509,23.1641 12.421379,21.955039 12.371603,21.658735C12.259831,20.993382 12.288653,20.42497 12.288653,20.42497C12.288653,20.42497 11.470019,21.275523 11.497615,22.68295C11.563974,26.067281 12.332924,26.371488 13.122692,27.800895C15.468071,31.444638 22.352855,30.810959 25.594299,27.948219C25.902878,28.005107 26.762407,21.327177 26.738806,22.479413C26.720833,23.356919 25.902022,16.964166 25.619702,18.501848C24.879886,22.531321 23.661324,25.040087 20.339572,23.731901C17.163854,22.481227 16.59594,22.858466 16.387736,23.071704z" />
4611 <path style="opacity:1;fill:url(#jc-lg3337);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4612 d="M27.074654,11.468203C27.074654,11.468203 24.685714,10.937327 24.752074,13.392627C24.818433,15.847926 25.813825,19.099539 25.482028,20.692166C25.15023,22.284793 24.353917,23.81106 24.752074,25.270968C25.15023,26.730876 25.21659,28.323502 26.145622,27.925346C27.074654,27.527189 26.477419,27.659908 27.738249,25.138249C28.999078,22.61659 29.529954,19.099539 28.468203,16.843318C27.406452,14.587097 28.335484,12.529954 27.870968,11.999078C27.406452,11.468203 27.008295,11.335484 27.074654,11.468203z" />
4613 </g>
4614 <g>
4615 <g transform="translate(-0.3981567,0)" >
4616 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;overflow:visible"
4617 d="M34.172446,18.715901C34.172446,18.715901 34.535741,19.578726 34.26327,20.237199C33.990799,20.895671 33.468562,21.599556 33.468562,21.599556" />
4618 <path style="opacity:1;fill:url(#jc-lg3447);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4619 d="M33.982564,24.323817C33.982564,24.323817 31.350877,24.273985 30.903763,23.405915C30.45665,22.537845 30.8707,21.498791 31.816969,21.395052C32.763241,21.291313 33.385382,21.475974 34.491259,21.557742" />
4620 </g>
4621 <g transform="translate(-0.2654377,0)" >
4622 <path style="opacity:1;fill:url(#jc-rg3443);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.19595918;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4623 d="M39.550229,19.696774A0.89585251,1.3935484 0 1 1 37.758524,19.696774A0.89585251,1.3935484 0 1 1 39.550229,19.696774z" transform="matrix(1,0,0,1.0416667,-1.8580645,-0.8455837)" />
4624 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;overflow:visible"
4625 d="M38.19951,19.06443C38.19951,19.06443 37.451655,18.1701 36.993415,18.045507C36.570349,17.930478 35.662414,18.736866 35.662414,18.736866" />
4626 </g>
4627 <g transform="translate(-0.3317972,0.0663594)" >
4628 <path style="opacity:1;fill:url(#jc-rg3445);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4629 d="M33.577878,19.597235A0.89585251,1.4764978 0 1 1 31.786173,19.597235A0.89585251,1.4764978 0 1 1 33.577878,19.597235z" transform="translate(-3.3179724e-2,0)" />
4630 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;overflow:visible"
4631 d="M33.64424,18.568664C33.64424,18.568664 33.183176,17.904577 32.6648,17.9326C32.155654,17.960124 31.837533,18.170578 31.169643,18.842007" />
4632 </g>
4633 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;overflow:visible"
4634 d="M38.468059,17.698272C37.438072,16.714442 36.02184,16.193306 34.778889,17.644379" />
4635 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;overflow:visible"
4636 d="M33.414333,17.659911C32.538107,16.591993 31.402556,16.875372 30.662159,17.819273" />
4637 </g>
4638 </g>
4639 <path style="opacity:1;fill:none;stroke:#000;stroke-width:0.2;overflow:visible"
4640 d="M36.519577,27.610965C36.519577,27.610965 34.860591,27.146449 33.533402,26.881011C32.396989,26.653729 31.940775,27.345528 31.940775,27.345528" />
4641 </g>
4642 <g>
4643 <path style="opacity:1;fill:url(#jc-rg3405);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.18424280000000001;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4644 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(0.7137776,0.6483795,-0.6308715,1.077813,29.716815,-25.012313)" />
4645 <path style="opacity:1;fill:url(#jc-rg3409);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.18424280000000001;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4646 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(-0.7137776,0.6483795,0.6308715,1.077813,45.335723,-25.941345)" />
4647 <path style="opacity:1;fill:url(#jc-rg3399);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.18165903;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4648 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(1,0,0,1.2121212,0,-3.5446724)" />
4649 <path style="opacity:1;fill:url(#jc-rg3581);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.18165903000000000;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4650 d="M42.403687,13.425806A9.7880182,3.2847927 0 1 1 22.827651,13.425806A9.7880182,3.2847927 0 1 1 42.403687,13.425806z" transform="matrix(1,0,0,1.2121212,0,-3.5446724)" />
4651 <path style="opacity:1;fill:url(#jc-rg3288);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4652 d="M39.948387,6.6239634A3.9815669,4.3797235 0 1 1 31.985253,6.6239634A3.9815669,4.3797235 0 1 1 39.948387,6.6239634z" />
4653 </g>
4654 </g>
4655 <path style="opacity:1;fill:url(#jc-lg3575);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4656 d="M45.337268,31.575182C45.337268,31.575182 47.646435,31.838122 49.409196,32.526704C51.171956,33.215288 50.499539,33.521401 50.499539,33.521401C50.499539,33.521401 50.635661,36.182169 45,39C39,42 36,41 36,41L36,36C36,36 39.346293,35.916158 41.356583,34.816245C44.089126,33.321158 45.337268,31.850615 45.337268,31.575182z" />
4657 <g>
4658 <rect width="2.8885317" x="50.16613" y="25.071489" rx="0.036742982" ry="1.0272301" height="29.82851" style="opacity:1;fill:url(#jc-lg3162);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible" />
4659 <g>
4660 <path style="opacity:1;fill:url(#jc-lg3174);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4661 d="M56.473741,30.830654C56.473741,30.830654 54.47374,26.884244 53,26C51.526259,25.115755 50.751463,25.248537 50,26C49,27 47.867095,28.590568 47.867095,28.590568C48.161843,24.405145 50,24.260199 50,23C50.000001,20.229368 50,14 50,11C50,8 51.412647,7.0589496 51.412647,7.0589496C51.412647,7.0589496 52.965867,8.1106351 52.936763,11.200429C52.909875,14.000585 52.964781,16.705867 53.054662,21.811361C53.08693,23.70319 56.178993,25.11254 56.473741,30.830654z" />
4662 <path style="opacity:1;fill:url(#jc-rg3184);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4663 d="M54.764201,9.9035368C54.764201,9.9035368 60.069666,12.190105 60.069667,17.213291C60.069668,22.282959 54.94105,23.992497 54.94105,23.992497C54.94105,23.992497 56.061093,22.16506 55.235799,20.51447C54.410504,18.863881 52.759914,18.745981 52.759914,18.745981C52.759914,18.745981 51.875669,17.861738 51.875669,16.977493C51.875669,16.093249 52.759914,15.209004 52.759914,15.209004C52.759914,15.209004 54.233654,15.032154 54.94105,13.853162C55.648445,12.674169 54.882101,10.021436 54.764201,9.9035368z" />
4664 </g>
4665 </g>
4666 <g>
4667 <path style="opacity:1;fill:#ffd0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4668 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4669 <path style="opacity:1;fill:url(#jc-rg3230);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4670 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4671 <path style="opacity:1;fill:url(#jc-lg3248);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4672 d="M56.102708,37.732539C54.881768,36.718332 53.755816,36.090527 53.116533,35.868386L53.092481,37.004792C51.736224,37.302507 50.049173,36.475521 50.049173,36.475521C50.049173,36.475521 49.089869,36.971712 49.156028,37.567142C49.222187,38.162571 49.486823,38.168811 49.354505,38.791081C49.258184,39.244065 48.718622,39.410534 48.626758,39.915782C48.49444,40.643529 49.321425,40.775846 49.288346,41.668991C49.264955,42.300539 49.121253,42.247443 49.189109,42.926009C49.222188,43.256803 49.817618,43.934932 51.496398,44.067249C53.175179,44.199567 55.176484,44.050709 55.176484,44.050709L55.507278,46.92862C55.507278,46.92862 57.260488,47.887923 58.682904,47.094017C60.105319,46.300111 60.535351,45.605443 60.535351,45.605443C60.535351,45.605443 58.173744,39.45051 56.102708,37.732539z" />
4673 </g>
4674 <path style="opacity:1;fill:url(#jc-lg3278);fill-opacity:1.0;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4675 d="M60.700749,45.043092C60.700749,45.043092 60.032279,46.044135 58.715983,46.697064C56.970624,47.562824 55.374961,46.89554 55.176484,46.763223C54.978008,46.630905 55,55 55,55L63,55C63,55 62.950149,51.427422 61.957767,47.689447C61.508539,45.997352 60.733828,45.010013 60.700749,45.043092z" />
4676 <path style="fill:url(#jc-lg3689);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4677 d="M26.081643,44.677444C27.752719,46.847972 29.701922,48.851323 32.069872,50.261415C32.336102,50.46972 33.013154,50.598676 32.519625,50.94864C31.933463,51.616101 31.349727,52.287202 30.730245,52.924066C30.341218,52.899775 29.934077,52.472809 29.551495,52.269936C27.424617,50.835684 25.592497,49.002557 24,47C24.505005,46.34085 25.087803,45.743495 25.638185,45.121486C25.783604,44.971672 25.917234,44.807108 26.081643,44.677444z" />
4678 <path style="opacity:1;fill:url(#jc-lg3591);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4679 d="M25,33.35956C23.18511,34.715424 22,36 22,36C22,42 24,48 26,55L29,55C26.957403,47.944463 25,42 25,33.35956z" />
4680 <path style="opacity:1;fill:url(#jc-lg3571);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4681 d="M30.591705,32.039631C30.591705,32.039631 27.937327,31.973272 26.477419,32.636866C25.017512,33.300461 24.420276,33.499539 24.420276,33.499539C24.420276,33.499539 24.760795,34.551843 29,38C32.467282,40.820277 35,41 35,41L36,36C36,36 34.120551,35.548147 33.146544,34.843318C31.486418,33.641986 30.591705,32.305069 30.591705,32.039631z" />
4682 <path style="opacity:1;fill:url(#jc-lg3613);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4683 d="M27,43C25.333333,43.508027 23.666667,43.824626 22,45C22,45 22,47 23,49C25,49 27.137327,47.929032 28,47C27.584394,45.995755 27.238824,44.711372 27,43z" />
4684 <path style="fill:url(#jc-lg3673);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4685 d="M46.52157,38.946777C44.37892,40.653452 42.006326,42.131154 39.369403,42.932516C39.061002,43.07093 38.372778,43.033831 38.768029,43.491895C39.177105,44.280405 39.582953,45.071866 40.031712,45.838657C40.41522,45.908328 40.912838,45.591405 41.332896,45.486155C43.741567,44.60355 45.959688,43.263043 47.985786,41.700607C47.653508,40.93962 47.230893,40.219979 46.845658,39.484174C46.740391,39.30387 46.650104,39.112071 46.52157,38.946777z" />
4686 <path style="fill:url(#jc-lg3665);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4687 d="M46.504821,45.280781C44.587155,47.236859 42.413249,48.993829 39.894226,50.111894C39.605084,50.287012 38.917493,50.334422 39.365834,50.740669C39.868339,51.473184 40.368001,52.209025 40.907233,52.915129C41.296384,52.937339 41.751474,52.561897 42.155493,52.406028C44.438037,51.235266 46.475421,49.633366 48.295064,47.834706C47.872149,47.120107 47.364635,46.457599 46.892243,45.774473C46.7657,45.608407 46.652618,45.429101 46.504821,45.280781z" />
4688 <path style="opacity:1;fill:url(#jc-lg3699);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4689 d="M22,36C22,36 19.408319,38.183362 17,43C15,47 14,55 14,55L23,55C23,55 21,52 21,45C21,40 22,36 22,36z" />
4690 
4691 </g>
4692 <!-- }}} -->
4693 
4694 <!-- Misc -->
4695 
4696 <!-- Top beam for acorn and leaf suits {{{ -->
4697 <linearGradient id="tbeam-lg3172" >
4698 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
4699 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4700 </linearGradient>
4701 <linearGradient gradientTransform="matrix(0.5629364,0.5883404,-0.8265002,0.4007237,19.145335,-0.8007293)" xlink:href="#tbeam-lg3172" id="tbeam-lg3537" y1="11.736878" x1="10.916868" y2="9.0271444" gradientUnits="userSpaceOnUse" x2="13.351473" />
4702 
4703 <g id="top-beam"
4704 transform="scale(1.9,1.9) translate(-16,0)">
4705 <g transform="translate(0.407211,0.0678689)" >
4706 <path style="fill:url(#tbeam-lg3537);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible" d="M15.26165,3.1139828C15.444965,8.7587586 14.728488,10.867797 14.528622,14.482168C14.929318,14.950527 16.12924,14.980178 16.651989,14.5254C16.310529,10.299449 16.74419,8.2828181 15.26165,3.1139828z" />
4707 </g>
4708 </g>
4709 
4710 <!-- }}} -->
4711 
4712 <!-- Dead beams for acorn and leaf suits {{{ -->
4713 <linearGradient id="dbeam-lg3203" >
4714 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4715 <stop offset="0.17627057" style="stop-color:#fff;stop-opacity:1" />
4716 <stop offset="0.61587054" style="stop-color:#9e5f00;stop-opacity:1" />
4717 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4718 </linearGradient>
4719 <linearGradient xlink:href="#dbeam-lg3203" id="dbeam-lg3314" y1="17.153761" x1="15.132156" y2="17.153761" gradientUnits="userSpaceOnUse" x2="17.155787" />
4720 <linearGradient gradientTransform="translate(0,-0.5278931)" xlink:href="#dbeam-lg3203" id="dbeam-lg2678" y1="10.953929" x1="2.2589753" y2="10.953929" gradientUnits="userSpaceOnUse" x2="16.358103" />
4721 <linearGradient gradientTransform="matrix(-1,0,0,1,31.910386,-0.5278931)" xlink:href="#dbeam-lg3203" id="dbeam-lg2680" y1="10.953929" x1="2.2589753" y2="10.919994" gradientUnits="userSpaceOnUse" x2="19.174646" />
4722 
4723 <g id="dead-beams"
4724 transform="scale(1.9,1.9) translate(-16,-1)">
4725 <g>
4726 <g transform="translate(0.407211,0.0678689)" >
4727 <g transform="translate(-0.4072111,-5.3342698)" >
4728 <g>
4729 <path style="fill:url(#dbeam-lg3314);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible" d="M14.944214,14.080389C15.648072,13.652892 16.351929,13.603532 17.055787,14.080389L17.055787,19.839222C16.590838,20.417608 15.299685,20.291429 14.944214,19.839222L14.944214,14.080389z" />
4730 <g transform="translate(0.0448071,0)" >
4731 <path style="fill:url(#dbeam-lg2678);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible" d="M5.0464309,9.8569509C7.9701631,9.2114972 13.144365,9.9746469 14.745801,14.912747C15.126307,15.148332 16.794814,15.213446 17.073938,15.075915C16.056149,9.9764786 7.8418337,6.9956681 5.0464309,9.8569509z" />
4732 <path style="fill:url(#dbeam-lg2680);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible" d="M26.863955,9.8569509C23.940223,9.2114972 18.681185,10.118867 17.079749,15.056968C16.699243,15.292553 15.23324,15.239749 14.962599,15.008899C15.980388,9.9094627 24.068552,6.9956681 26.863955,9.8569509z" />
4733 </g>
4734 </g>
4735 </g>
4736 </g>
4737 </g>
4738 </g>
4739 
4740 <!-- }}} -->
4741 
4742 <!-- Beams for leaves/acorns {{{ -->
4743 <linearGradient id="beam-lg3203" >
4744 <stop offset="0" style="stop-color:#f90;stop-opacity:1" />
4745 <stop offset="0.17627057" style="stop-color:#fff;stop-opacity:1" />
4746 <stop offset="0.65132535" style="stop-color:#9e5f00;stop-opacity:1" />
4747 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4748 </linearGradient>
4749 <linearGradient id="beam-lg3172" >
4750 <stop offset="0" style="stop-color:#090;stop-opacity:1" />
4751 <stop offset="1" style="stop-color:#000;stop-opacity:1" />
4752 </linearGradient>
4753 <linearGradient gradientTransform="translate(-0.4072111,-5.3342698)" xlink:href="#beam-lg3203" id="beam-lg2432" y1="17.153761" x1="15.132156" y2="17.153761" gradientUnits="userSpaceOnUse" x2="17.155787" />
4754 <linearGradient gradientTransform="matrix(-1,0,0,0.8608354,31.479179,-4.4567438)" xlink:href="#beam-lg3172" id="beam-lg2442" y1="9.7760839" x1="11.185167" y2="11.838778" gradientUnits="userSpaceOnUse" x2="9.0016088" />
4755 <linearGradient gradientTransform="matrix(1,0,0,0.8608354,-0.4072111,-4.4567438)" xlink:href="#beam-lg3172" id="beam-lg2444" y1="10.946802" x1="12.528895" y2="14.291712" gradientUnits="userSpaceOnUse" x2="9.8010635" />
4756 <g id="beams"
4757 transform="scale(1.9,1.9) translate(-16,-1)">
4758 <g transform="translate(0.407211,0.0678689)" >
4759 <g>
4760 <g>
4761 <path style="fill:url(#beam-lg2432);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
4762 d="M14.537003,8.7461192C15.240861,8.3186222 15.944718,8.2692622 16.648576,8.7461192L16.648576,14.504952C16.183627,15.083338 14.892474,14.957159 14.537003,14.504952L14.537003,8.7461192z" />
4763 <path style="fill:url(#beam-lg2444);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4764 d="M1.9517641,0.97140018C6.891088,2.1295875 12.929115,4.5015906 14.33859,8.8351056C14.719096,9.1578812 15.523778,9.27862 15.802902,9.1602285C15.552957,4.6264827 7.3146468,0.95485855 1.9517641,0.97140018z" />
4765 <path style="fill:url(#beam-lg2442);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4766 d="M29.120204,0.97140018C24.18088,2.1295875 18.142853,4.5015906 16.733378,8.8351056C16.352872,9.1578812 15.54819,9.27862 15.269066,9.1602285C15.519011,4.6264827 23.757321,0.95485855 29.120204,0.97140018z" />
4767 </g>
4768 <g>
4769 <path style="fill:url(#beam-lg2432);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline;overflow:visible"
4770 d="M14.537003,8.7461192C15.240861,8.3186222 15.944718,8.2692622 16.648576,8.7461192L16.648576,14.504952C16.183627,15.083338 14.892474,14.957159 14.537003,14.504952L14.537003,8.7461192z" />
4771 <path style="fill:url(#beam-lg2444);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4772 d="M1.9517641,0.97140018C6.891088,2.1295875 12.929115,4.5015906 14.33859,8.8351056C14.719096,9.1578812 15.523778,9.27862 15.802902,9.1602285C15.552957,4.6264827 7.3146468,0.95485855 1.9517641,0.97140018z" />
4773 <path style="fill:url(#beam-lg2442);fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;overflow:visible"
4774 d="M29.120204,0.97140018C24.18088,2.1295875 18.142853,4.5015906 16.733378,8.8351056C16.352872,9.1578812 15.54819,9.27862 15.269066,9.1602285C15.519011,4.6264827 23.757321,0.95485855 29.120204,0.97140018z" />
4775 </g>
4776 </g>
4777 </g>
4778 </g>
4779 <!-- }}} -->
4780 
4781 <!-- Shield graphics for aces {{{ -->
4782 
4783 <g id="shield" transform="scale(1.9) translate(-39,-58)" >
4784 <path style="opacity:1;fill:#8df;fill-opacity:1;fill-rule:nonzero;stroke:#000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;overflow:visible"
4785 d="M21.528822,22.65625C21.540145,28.791313 21.527641,34.929613
4786 21.560072,41.0625C22.260315,44.653472 25.17601,47.223206
4787 27.872572,49.4375C30.314877,51.35353 33.032506,52.928358
4788 35.997572,53.875C40.659981,52.328005 44.844257,49.415898
4789 48.060072,45.71875C49.51241,44.006369 50.6953,41.813451
4790 50.435072,39.5C50.471633,33.880898 50.451914,28.275412
4791 50.466322,22.65625C40.820489,22.65625 31.174655,22.65625
4792 21.528822,22.65625zM22.810072,24.03125C31.606048,24.03125 40.389098,24.03125
4793 49.185072,24.03125C49.171933,29.155577 49.187162,34.28198
4794 49.153822,39.40625C49.391122,41.515973 48.32195,43.500914
4795 46.997572,45.0625C44.06509,48.434069 40.249193,51.089238
4796 35.997572,52.5C33.293746,51.636721 30.818445,50.1848
4797 28.591322,48.4375C26.132344,46.418201 23.479868,44.087244
4798 22.841322,40.8125C22.811748,35.219688 22.820397,29.626046 22.810072,24.03125z"
4799 />
4800 </g>
4801 <!-- }}} -->
4802 <!-- Indices (small numbers) -->
4803 
4804 <!-- Ace {{{ -->
4805 <g id="i1" transform="scale(1.5) translate(-8,-8) scale(.5)">
4806 <path style="fill:#000;fill-opacity:1;stroke:none;"
4807 d="M4.8769531,13.941405C4.8769479,14.183594 4.9238229,14.355469
4808 5.0175781,14.45703C5.1113227,14.558594 5.306635,14.632813
4809 5.6035156,14.679687C5.9081969,14.726563 6.3964776,14.75
4810 7.0683594,14.749999C7.7324138,14.75 8.3378819,14.699219
4811 8.8847656,14.597655C9.4316308,14.496094 9.9628803,14.3125
4812 10.478516,14.046874C11.001942,13.781251 11.439441,13.433595
4813 11.791016,13.003905C12.142566,12.574221 12.423815,12.015628
4814 12.634766,11.328124C12.853502,10.632817 12.962877,9.8320362
4815 12.962891,8.9257803C12.962877,8.1757879 12.892565,7.4492261
4816 12.751953,6.7460928C12.611315,6.035165 12.37694,5.3437595
4817 12.048828,4.671874C11.728504,4.0000108 11.32616,3.4140739
4818 10.841797,2.9140615C10.357411,2.4140749 9.7402243,2.0117315
4819 8.9902344,1.7070303C8.2402258,1.4023572 7.4042891,1.2500136
4820 6.4824219,1.249999C5.9355406,1.2500136 5.529291,1.3007948
4821 5.2636719,1.4023428C5.005854,1.5039196 4.8769479,1.7226693
4822 4.8769531,2.0585928L4.8769531,13.941405M0.048828125,15.195312C0.048827727,14.976562
4823 0.24414003,14.867187
4824 0.63476562,14.867187L1.3378906,14.867187C1.6347636,14.867187
4825 1.8457009,14.792969 1.9707031,14.64453C2.0957007,14.488282 2.1582006,14.238282
4826 2.1582031,13.89453L2.1582031,2.1054678C2.1582006,1.7226693 2.1035132,1.4648571
4827 1.9941406,1.3320303C1.8847634,1.1992324 1.6660136,1.1328262
4828 1.3378906,1.1328115L0.66992188,1.1328115C0.25585877,1.1328262
4829 0.048827727,1.0273575
4830 0.048828125,0.8164053L0.048828125,0.21874905L3.4707031,0.26562405C3.5253868,0.26563954
4831 3.6074179,0.26563954 3.7167969,0.26562405C3.8261677,0.25782705
4832 3.9081989,0.2539208 3.9628906,0.2539053C5.275385,0.23048332
4833 6.4081964,0.21876459 7.3613281,0.21874905C8.5331942,0.21876459
4834 9.6503806,0.43751437 10.712891,0.87499905C11.783191,1.304701
4835 12.697253,1.8828254 13.455078,2.609374C14.220689,3.335949 14.826157,4.2031356
4836 15.271484,5.2109365C15.724593,6.2109461 15.951156,7.25782
4837 15.951172,8.3515615C15.951156,9.1718806 15.861312,9.9296924
4838 15.681641,10.624999C15.501937,11.312503 15.255844,11.906253
4839 14.943359,12.406249C14.638657,12.906252 14.27147,13.35547
4840 13.841797,13.753905C13.412096,14.144532 12.958971,14.464844
4841 12.482422,14.714843C12.005847,14.964844 11.490223,15.171875
4842 10.935547,15.335937C10.388661,15.499999 9.8574117,15.617187
4843 9.3417969,15.687499C8.8339752,15.749999 8.3144445,15.781249
4844 7.7832031,15.781249C7.0878832,15.781249 6.0136655,15.76953
4845 4.5605469,15.746093C4.2792922,15.73828 3.9160114,15.734374
4846 3.4707031,15.734374C3.1425746,15.734374 2.5761689,15.742187
4847 1.7714844,15.757812C0.96679556,15.765624 0.39257738,15.773437
4848 0.048828125,15.781249L0.048828125,15.195312" />
4849 </g>
4850 <!-- }}} -->
4851 <!-- King {{{ -->
4852 <g id="ik" transform="scale(1.5) translate(-8,-8) scale(.5)">
4853 <path style="fill:#000;" 
4854 d="M10.589844,2.2402344C10.941395,1.8886857 11.117176,1.607436
4855 11.117188,1.3964844C11.117176,1.3339988 11.085926,1.2754051
4856 11.023438,1.2207031C10.960926,1.1582177 10.886707,1.1269678
4857 10.800781,1.1269531L10.296875,1.1269531C10.132802,1.1269678 9.9921771,1.099624
4858 9.875,1.0449219C9.7578024,0.99024914 9.6992087,0.91603046
4859 9.6992188,0.82226562L9.6992188,0.41210938L9.9101562,0.21289062L11.117188,0.23632812C11.91405,0.25196862
4860 12.503893,0.25978112
4861 12.886719,0.25976562L15.253906,0.21289062L15.6875,0.36523438L15.6875,0.82226562C15.687484,0.99415538
4862 15.480453,1.0957178 15.066406,1.1269531L14.550781,1.1855469C14.019517,1.2714989
4863 13.320299,1.7129047 12.453125,2.5097656L8.65625,6.1308594C8.3124913,6.4668062
4864 8.0742103,6.7207122 7.9414062,6.8925781C7.816398,7.0566493 7.7538981,7.2168054
4865 7.7539062,7.3730469C7.7538981,7.5371176 7.8359293,7.7089924
4866 8,7.8886719L7.9882812,7.8886719L13.625,13.830078C14.249985,14.470704
4867 14.648422,14.806642 14.820312,14.837891L14.832031,14.837891C14.886703,14.837892
4868 14.968735,14.841798 15.078125,14.849609C15.195297,14.857423 15.285141,14.861329
4869 15.347656,14.861328C15.50389,14.861329 15.648421,14.892579
4870 15.78125,14.955078C15.914046,15.009766 15.980452,15.083985
4871 15.980469,15.177734L15.980469,15.599609L15.652344,15.775391L14.515625,15.751953C13.757798,15.736328
4872 13.187486,15.728516
4873 12.804688,15.728516L9.2773438,15.775391L9.0898438,15.576172L9.0898438,15.177734C9.0898343,14.966798
4874 9.2851466,14.861329 9.6757812,14.861328L10.296875,14.861328C10.648426,14.861329
4875 10.824208,14.771485 10.824219,14.591797C10.824208,14.380861 10.734364,14.181642
4876 10.554688,13.994141L10.566406,13.994141L6.265625,9.5058594C5.9218687,9.0761786
4877 5.4492129,8.8378975 4.8476562,8.7910156L4.8476562,13.935547C4.847651,14.263673
4878 4.9140572,14.501954 5.046875,14.650391C5.1874944,14.791017 5.4179629,14.861329
4879 5.7382812,14.861328L6.359375,14.861328C6.5312431,14.861329 6.6718679,14.892579
4880 6.78125,14.955078C6.8984302,15.009766 6.9570239,15.083985
4881 6.9570312,15.177734L6.9570312,15.576172L6.7460938,15.787109L5.421875,15.751953C4.5390576,15.736328
4882 3.9062457,15.728516
4883 3.5234375,15.728516L0.21875,15.775391L0.01953125,15.576172L0.01953125,15.177734C0.01953084,14.966798
4884 0.21874939,14.861329
4885 0.6171875,14.861328L1.2382812,14.861328C1.5585918,14.861329 1.7851541,14.783204
4886 1.9179688,14.626953C2.0585913,14.470704 2.1289037,14.240236
4887 2.1289062,13.935547L2.1289062,2.0527344C2.1289037,1.7246234 2.0585913,1.4902486
4888 1.9179688,1.3496094C1.7851541,1.2011864 1.5585918,1.1269678
4889 1.2382812,1.1269531L0.6171875,1.1269531C0.21874939,1.1269678
4890 0.01953084,1.0254054
4891 0.01953125,0.82226562L0.01953125,0.41210938L0.21875,0.21289062L1.5429688,0.23632812C2.4257784,0.25196862
4892 3.0585903,0.25978112
4893 3.4414062,0.25976562L6.7460938,0.21289062L6.9453125,0.41210938L6.9453125,0.82226562C6.9453052,1.0254054
4894 6.7499929,1.1269678 6.359375,1.1269531L5.7382812,1.1269531C5.4101504,1.1269678
4895 5.1796819,1.2050927 5.046875,1.3613281C4.9140572,1.5097799 4.847651,1.7402484
4896 4.8476562,2.0527344L4.8476562,7.6777344C5.1289007,7.5605551 5.5664003,7.2089929
4897 6.1601562,6.6230469L10.589844,2.2402344" />
4898 </g>
4899 <!-- }}} -->
4900 <!-- Ober {{{ -->
4901 <g id="io" transform="scale(1.5) translate(-8,-8) scale(.5)">
4902 <path style="fill:#000;" 
4903 d="M7.6425781,1.0039062C7.0956954,1.003921 6.5644459,1.1367334
4904 6.0488281,1.4023438C5.5410094,1.6679828 5.0683536,2.0664199
4905 4.6308594,2.5976562C4.1933545,3.1289189 3.8417924,3.8515744
4906 3.5761719,4.765625C3.3105429,5.6718851 3.1777305,6.7109465
4907 3.1777344,7.8828125C3.1777305,8.9765693 3.3144491,9.9765683
4908 3.5878906,10.882812C3.8691361,11.789066 4.2480419,12.539066
4909 4.7246094,13.132812C5.201166,13.726565 5.7558529,14.187502
4910 6.3886719,14.515625C7.0292892,14.835938 7.708976,14.996094
4911 8.4277344,14.996094C9.7011615,14.996094 10.751942,14.390626
4912 11.580078,13.179688C12.40819,11.968754 12.822252,10.343755
4913 12.822266,8.3046875C12.822252,7.1328211 12.681627,6.0781347
4914 12.400391,5.140625C12.12694,4.1953241 11.748034,3.4257936
4915 11.263672,2.8320312C10.787098,2.2382948 10.240223,1.7851702
4916 9.6230469,1.4726562C9.0058497,1.1601708 8.3456941,1.003921
4917 7.6425781,1.0039062M15.810547,7.8359375C15.81053,9.4296938 15.490218,10.847661
4918 14.849609,12.089844C14.208969,13.332034 13.291002,14.300783
4919 12.095703,14.996094C10.908192,15.691406 9.5331929,16.039062
4920 7.9707031,16.039062C6.900383,16.039062 5.8886653,15.855469
4921 4.9355469,15.488281C3.9902297,15.121094 3.1660118,14.609376
4922 2.4628906,13.953125C1.7597632,13.289065 1.2050762,12.468753
4923 0.79882812,11.492188C0.39257705,10.51563 0.18945226,9.449225
4924 0.18945312,8.2929688C0.18945226,7.1289149 0.38476456,6.035166
4925 0.77539062,5.0117188C1.1660138,3.9804805 1.7011695,3.0976689
4926 2.3808594,2.3632812C3.0605431,1.6211079 3.8808548,1.035171
4927 4.8417969,0.60546875C5.8105404,0.17579682 6.8456956,-0.039046715
4928 7.9472656,-0.0390625C8.9863185,-0.039046715 9.978505,0.15235934
4929 10.923828,0.53515625C11.876941,0.91017109 12.712877,1.4336081
4930 13.431641,2.1054688C14.158188,2.7773567 14.736313,3.6132934
4931 15.166016,4.6132812C15.595687,5.6054789 15.81053,6.6796966 15.810547,7.8359375"
4932 />
4933 </g>
4934 <!-- }}} -->
4935 <!-- Under {{{ -->
4936 <g id="iu" transform="scale(1.5) translate(-8,-8) scale(.5)">
4937 <path style="fill:#000;" 
4938 d="M7.765625,16.121094C7.3515549,16.121093 6.9413991,16.085937
4939 6.5351562,16.015625C6.1288999,15.945312 5.6953066,15.832031
4940 5.234375,15.675781C4.7734325,15.519531 4.3476517,15.292969
4941 3.9570312,14.996094C3.5742149,14.691407 3.2226528,14.332033
4942 2.9023438,13.917969C2.5898409,13.496096 2.3398412,12.964847
4943 2.1523438,12.324219C1.9726541,11.683598 1.8828104,10.968755
4944 1.8828125,10.179688L1.8828125,2.0351562C1.8828104,1.7070453 1.8164042,1.4726705
4945 1.6835938,1.3320312C1.5507795,1.1914208 1.320311,1.1211084
4946 0.9921875,1.1210938L0.37109375,1.1210938C-0.027343949,1.1211084
4947 -0.2265625,1.019546
4948 -0.2265625,0.81640625L-0.2265625,0.40625L-0.015625,0.20703125L1.3085938,0.23046875C2.1914038,0.24610925
4949 2.8242157,0.25392174
4950 3.2070312,0.25390625L6.5117188,0.20703125L6.7109375,0.40625L6.7109375,0.81640625C6.7109306,1.019546
4951 6.511712,1.1211084 6.1132812,1.1210938L5.4921875,1.1210938C5.1718696,1.1211084
4952 4.9414011,1.1992333 4.8007812,1.3554688C4.6679639,1.5039205 4.6015577,1.7304828
4953 4.6015625,2.0351562L4.6015625,9.3945312C4.6015577,9.9023496 4.6093702,10.304693
4954 4.625,10.601562C4.6406201,10.898442 4.6796826,11.261723
4955 4.7421875,11.691406C4.812495,12.121097 4.9296823,12.503909
4956 5.09375,12.839844C5.257807,13.175784 5.4765568,13.476565
4957 5.75,13.742188C6.5156183,14.523439 7.3593674,14.914063
4958 8.28125,14.914062C8.781241,14.914063 9.2304593,14.851563
4959 9.6289062,14.726562C10.035146,14.601564 10.371083,14.441408
4960 10.636719,14.246094C10.910145,14.04297 11.14452,13.789064
4961 11.339844,13.484375C11.542957,13.171878 11.699207,12.859378
4962 11.808594,12.546875C11.925769,12.234379 12.015613,11.875004
4963 12.078125,11.46875C12.140613,11.054692 12.179675,10.679693
4964 12.195312,10.34375C12.218738,10.000006 12.230456,9.6171936
4965 12.230469,9.1953125L12.230469,2.0351562C12.230456,1.7070453 12.160144,1.4726705
4966 12.019531,1.3320312C11.886707,1.1914208 11.660144,1.1211084
4967 11.339844,1.1210938L10.71875,1.1210938C10.546864,1.1211084 10.402333,1.0937647
4968 10.285156,1.0390625C10.167958,0.98438976 10.109365,0.91017109
4969 10.109375,0.81640625L10.109375,0.40625L10.320312,0.20703125L11.46875,0.23046875C12.22655,0.24610925
4970 12.796862,0.25392174
4971 13.179688,0.25390625L16.015625,0.20703125L16.226562,0.40625L16.226562,0.81640625C16.226546,1.019546
4972 16.031234,1.1211084 15.640625,1.1210938L15.019531,1.1210938C14.691391,1.1211084
4973 14.460923,1.1992333 14.328125,1.3554688C14.195298,1.5039205 14.128892,1.7304828
4974 14.128906,2.0351562L14.128906,8.7734375C14.128892,9.6875061 14.074204,10.496099
4975 13.964844,11.199219C13.863267,11.894535 13.667955,12.562503
4976 13.378906,13.203125C13.097643,13.843752 12.722643,14.371095
4977 12.253906,14.785156C11.785144,15.191407 11.171864,15.515625
4978 10.414062,15.757812C9.6640526,16 8.781241,16.121093 7.765625,16.121094" />
4979 </g>
4980 <!-- }}} -->
4981 <!-- Ten {{{ -->
4982 <g id="i10" transform="scale(1.5) translate(-8,-8) scale(.5)">
4983 <path style="fill:#000;" 
4984 d="M2.1312871,3.5878906C1.8109702,3.587902 1.0609709,3.8769642
4985 -0.11871285,4.4550781L-0.52886905,3.4707031C0.48675276,3.0097776
4986 1.2797207,2.6152467 1.8500372,2.2871094C2.4203445,1.9589974 3.0414377,1.556654
4987 3.7133184,1.0800781L4.7680059,1.0800781L4.7680059,13.056641C4.7679984,13.447267
4988 4.7992485,13.708986 4.8617559,13.841797C4.9242483,13.97461 5.060967,14.041017
4989 5.2719122,14.041016L6.502381,14.041016C6.9008088,14.041017 7.1000274,14.146485
4990 7.1000372,14.357422L7.1000372,14.978516L3.4555059,14.931641C3.0883126,14.931641
4991 2.4711257,14.939453 1.6039434,14.955078C0.74456501,14.970703
4992 0.13128437,14.978516
4993 -0.23590035,14.978516L-0.23590035,14.333984C-0.19684035,14.138673
4994 -0.00152795,14.041017
4995 0.35003717,14.041016L1.7680059,14.041016C1.9945638,14.041017
4996 2.1312823,13.970704 2.1781621,13.830078C2.2328447,13.689454 2.2601884,13.431642
4997 2.2601934,13.056641L2.2601934,4.8417969C2.2601884,4.0058703 2.2172197,3.587902
4998 2.1312871,3.5878906M11.876525,2.1113281C11.72027,2.111341 11.567926,2.1464972
4999 11.419494,2.2167969C11.278864,2.2793096 11.122614,2.3925907
5000 10.950744,2.5566406C10.786677,2.7129029 10.634334,2.9472776
5001 10.493713,3.2597656C10.360896,3.572277 10.235896,3.9550891
5002 10.118713,4.4082031C10.009334,4.8535257 9.9233974,5.4238377
5003 9.8609004,6.1191406C9.7983974,6.8144613 9.7671474,7.5996167
5004 9.7671504,8.4746094C9.7671474,8.9121154 9.7827724,9.3574275
5005 9.8140254,9.8105469C9.8452724,10.255864 9.9038665,10.751957
5006 9.9898074,11.298828C10.083553,11.837894 10.20074,12.314456
5007 10.341369,12.728516C10.48199,13.134767 10.677302,13.478517
5008 10.927307,13.759766C11.185114,14.041017 11.478083,14.181641
5009 11.806213,14.181641C11.90777,14.181641 12.017145,14.158204
5010 12.134338,14.111328C12.251519,14.056642 12.392144,13.966798
5011 12.556213,13.841797C12.728081,13.716798 12.892144,13.509767
5012 13.0484,13.220703C13.204644,12.931643 13.337456,12.580081
5013 13.446838,12.166016C13.767143,11.064457 13.927299,9.5371148
5014 13.927307,7.5839844C13.927299,6.2011806 13.794487,5.0683693
5015 13.528869,4.1855469C13.27105,3.302746 12.966362,2.7129029
5016 12.614807,2.4160156L12.638244,2.4160156C12.364801,2.2129034 12.110895,2.111341
5017 11.876525,2.1113281M11.782775,15.201172C10.884333,15.201172 10.07574,14.876953
5018 9.3569945,14.228516C8.6460547,13.572267 8.0991803,12.716799
5019 7.7163695,11.662109C7.3413685,10.607426 7.1538687,9.4589899
5020 7.1538695,8.2167969C7.1538687,7.1308672 7.2866812,6.1308682
5021 7.5523071,5.2167969C7.8179305,4.302745 8.1694927,3.5488395
5022 8.6069945,2.9550781C9.0444915,2.3535282 9.5444914,1.8886849
5023 10.106994,1.5605469C10.677302,1.2246231 11.267145,1.0566545
5024 11.876525,1.0566406C12.415582,1.0566545 12.962456,1.2129044
5025 13.51715,1.5253906C14.079643,1.8300913 14.552298,2.2129034
5026 14.935119,2.6738281C15.997609,4.0722765 16.528859,5.8496185
5027 16.528869,8.0058594C16.528859,9.0293028 16.42339,9.9628956
5028 16.212463,10.806641C16.001516,11.642581 15.731985,12.326175
5029 15.403869,12.857422C15.075735,13.388673 14.69683,13.837892
5030 14.26715,14.205078C13.845268,14.564454 13.423393,14.81836
5031 13.001525,14.966797C12.587457,15.123047 12.181207,15.201172
5032 11.782775,15.201172" />
5033 </g>
5034 <!-- }}} -->
5035 <!-- Nine {{{ -->
5036 <g id="i9" transform="scale(1.5) translate(-8,-8) scale(.5)">
5037 <path style="fill:#000;" 
5038 d="M10.273438,7.2910156L10.15625,7.3730469C10.171867,7.0605548 10.17968,6.82618
5039 10.179688,6.6699219C10.17968,5.9277434 10.121086,5.2675878
5040 10.003906,4.6894531C9.894524,4.111339 9.7499929,3.6543082
5041 9.5703125,3.3183594C9.3984308,2.9746214 9.195306,2.6972779
5042 8.9609375,2.4863281C8.7265564,2.2675908 8.4999942,2.1191535
5043 8.28125,2.0410156C8.0624946,1.9629036 7.8398386,1.9238412
5044 7.6132812,1.9238281C7.1132768,1.9238412 6.6835897,2.1933721
5045 6.3242188,2.7324219C5.9648404,3.2636836 5.7851531,4.080089
5046 5.7851562,5.1816406C5.7851531,5.4941501 5.8203093,5.8144623
5047 5.890625,6.1425781C5.9687467,6.4707116 6.0898403,6.8066488
5048 6.2539062,7.1503906C6.4257775,7.4941481 6.6796835,7.7753978
5049 7.015625,7.9941406C7.3515578,8.2128974 7.7499949,8.3222723
5050 8.2109375,8.3222656C8.9374937,8.3222723 9.624993,7.9785226
5051 10.273438,7.2910156M4.0039062,14.451172L4.3203125,14.333984C5.148435,14.154298
5052 5.8124968,13.955079 6.3125,13.736328C6.8203083,13.51758 7.2734329,13.248049
5053 7.671875,12.927734C8.8437438,12.013675 9.609368,10.619145
5054 9.96875,8.7441406C9.2031185,9.1347714 8.4609317,9.3300838
5055 7.7421875,9.3300781C7.0156206,9.3300838 6.37109,9.2246151
5056 5.8085938,9.0136719C5.2539037,8.8027405 4.8281228,8.5527408
5057 4.53125,8.2636719C4.2343734,7.9668039 3.9921862,7.6230542
5058 3.8046875,7.2324219C3.624999,6.841805 3.5078116,6.5019616
5059 3.453125,6.2128906C3.4062493,5.9160247 3.3828118,5.6308687
5060 3.3828125,5.3574219C3.3828118,4.9902443 3.4218742,4.6230572
5061 3.5,4.2558594C3.5781241,3.8886829 3.7187489,3.5058708
5062 3.921875,3.1074219C4.132811,2.7011841 4.3984358,2.349622
5063 4.71875,2.0527344C5.0390601,1.7480601 5.4687472,1.4980603
5064 6.0078125,1.3027344C6.5468711,1.0996232 7.1601517,0.99806083
5065 7.8476562,0.99804688C8.1992132,0.99806083 8.5390566,1.033217
5066 8.8671875,1.1035156C9.2031185,1.1660294 9.5546806,1.2714981
5067 9.921875,1.4199219C10.296867,1.5683728 10.640617,1.7871225
5068 10.953125,2.0761719C11.265616,2.365247 11.546866,2.7129029
5069 11.796875,3.1191406C12.054678,3.5254021 12.253897,4.0410265
5070 12.394531,4.6660156C12.542959,5.2832128 12.617178,5.9785246
5071 12.617188,6.7519531C12.617178,8.1035225 12.31249,9.3769587
5072 11.703125,10.572266C11.101554,11.767581 10.191399,12.802737
5073 8.9726562,13.677734L8.984375,13.677734C8.4453067,14.06836 7.7851511,14.369141
5074 7.0039062,14.580078C6.2226527,14.791016 5.2265599,14.951172
5075 4.015625,15.060547L4.0039062,14.451172" />
5076 </g>
5077 <!-- }}} -->
5078 <!-- Eight {{{ -->
5079 <g id="i8" transform="scale(1.5) translate(-8,-8) scale(.5)">
5080 <path style="fill:#000;" 
5081 d="M7.8417969,1.7832031C7.310542,1.7832163 6.8730424,1.9863411
5082 6.5292969,2.3925781C6.1933556,2.7988403 6.025387,3.2636836
5083 6.0253906,3.7871094C6.025387,4.1464952 6.1699181,4.5332135
5084 6.4589844,4.9472656C6.755855,5.3535252 7.1894484,5.7480561
5085 7.7597656,6.1308594L8.2285156,6.4355469C8.6113219,6.1230557 8.9472591,5.7480561
5086 9.2363281,5.3105469C9.533196,4.8652445 9.6816334,4.3964949
5087 9.6816406,3.9042969C9.6816334,3.365246 9.5136648,2.8769652
5088 9.1777344,2.4394531C8.849603,2.0019661 8.4042909,1.7832163
5089 7.8417969,1.7832031M7.8886719,14.205078C8.1386662,14.205079 8.3886659,14.166016
5090 8.6386719,14.087891C8.8886654,14.001954 9.1425714,13.865235
5091 9.4003906,13.677734C9.6581959,13.490236 9.8652269,13.212892
5092 10.021484,12.845703C10.185539,12.470706 10.26757,12.0293
5093 10.267578,11.521484C10.26757,10.466801 9.6542896,9.5527398
5094 8.4277344,8.7792969C8.326166,8.7246156 8.2324161,8.6738344
5095 8.1464844,8.6269531C8.0683537,8.5800845 7.9785101,8.5253971
5096 7.8769531,8.4628906C7.7753853,8.4003972 7.6777291,8.3418035
5097 7.5839844,8.2871094C7.0996047,8.6386782 6.7011676,9.033209
5098 6.3886719,9.4707031C6.0761682,9.9003957 5.8691372,10.271489
5099 5.7675781,10.583984C5.6738249,10.888676 5.6269499,11.169926
5100 5.6269531,11.427734C5.6269499,12.302737 5.8730434,12.98633
5101 6.3652344,13.478516C6.8574174,13.962892 7.3652294,14.205079
5102 7.8886719,14.205078M11.861328,3.9277344C11.861319,5.0293068 11.044913,6.1191495
5103 9.4121094,7.1972656L10.654297,8.0410156C11.927725,8.9160217 12.564443,9.9238332
5104 12.564453,11.064453C12.564443,11.525394 12.462881,11.986331
5105 12.259766,12.447266C12.064443,12.908205 11.779288,13.341798
5106 11.404297,13.748047C11.037101,14.146485 10.541008,14.470704
5107 9.9160156,14.720703C9.2988213,14.970703 8.6074157,15.095703
5108 7.8417969,15.095703C6.5058553,15.095703 5.4355439,14.775391
5109 4.6308594,14.134766C3.833983,13.494142 3.4355459,12.591799
5110 3.4355469,11.427734C3.4355459,11.029301 3.5605457,10.599614
5111 3.8105469,10.138672C4.0683577,9.6699272 4.4160136,9.2168026
5112 4.8535156,8.7792969C5.2285128,8.4355534 5.7324186,8.0371163
5113 6.3652344,7.5839844L6.0957031,7.4199219C4.5097635,6.4668054 3.7167956,5.3964939
5114 3.7167969,4.2089844C3.7167956,3.2949335 4.1152327,2.5293093
5115 4.9121094,1.9121094C5.7089811,1.287123 6.7285113,0.97462336
5116 7.9707031,0.97460938C9.1660089,0.97462336 10.11132,1.2519668
5117 10.806641,1.8066406C11.509757,2.3613407 11.861319,3.0683713
5118 11.861328,3.9277344" />
5119 </g>
5120 <!-- }}} -->
5121 <!-- Seven {{{ -->
5122 <g id="i7" transform="scale(1.5) translate(-8,-8) scale(.5)">
5123 <path style="fill:#000;" 
5124 d="M5.7734375,3.0605469C5.4765595,3.0605588 5.2695284,3.1504024
5125 5.1523438,3.3300781C5.0429662,3.5097771 4.9101538,3.9472766
5126 4.7539062,4.6425781L3.3828125,4.4667969L4.15625,0.85742188L5.4101562,1.0449219C5.3710908,1.302748
5127 5.4726532,1.4316541
5128 5.7148438,1.4316406L12.535156,1.4316406L12.617188,1.6542969C10.585929,6.6074302
5129 8.8945248,11.087894
5130 7.5429688,15.095703L5.3398438,15.201172L5.1992188,14.908203C6.9257768,11.033207
5131 8.5859314,7.0839922 10.179688,3.0605469L5.7734375,3.0605469" />
5132 </g>
5133 <!-- }}} -->
5134 <!-- Six {{{ -->
5135 <g id="i6" transform="scale(1.5) translate(-8,-8) scale(.5)">
5136 <path style="fill:#000;" 
5137 d="M5.7265625,8.7089844L5.84375,8.6386719C5.8281215,8.9355529
5138 5.820309,9.1699277 5.8203125,9.3417969C5.820309,10.083989 5.8749965,10.744145
5139 5.984375,11.322266C6.1015587,11.900394 6.2460898,12.357424
5140 6.4179688,12.693359C6.597652,13.029299 6.804683,13.306642
5141 7.0390625,13.525391C7.2734326,13.744142 7.4999948,13.892579
5142 7.71875,13.970703C7.9374944,14.048829 8.1601504,14.087891
5143 8.3867188,14.087891C8.8867122,14.087891 9.3163993,13.822267
5144 9.6757812,13.291016C10.035149,12.751955 10.214836,11.931644
5145 10.214844,10.830078C10.214836,10.517583 10.175773,10.19727
5146 10.097656,9.8691406C10.027336,9.541021 9.9062424,9.2050839
5147 9.734375,8.8613281C9.5703053,8.5175846 9.3203055,8.2363348
5148 8.984375,8.0175781C8.6484312,7.7988353 8.2499941,7.6894604
5149 7.7890625,7.6894531C7.0624953,7.6894604 6.374996,8.0293038
5150 5.7265625,8.7089844M11.996094,1.5605469L11.679688,1.6777344C10.859366,1.8496225
5151 10.195305,2.0449348 9.6875,2.2636719C9.1874931,2.4824343 8.7343686,2.7519653
5152 8.328125,3.0722656C7.1562452,4.0019641 6.3906209,5.3964939
5153 6.03125,7.2558594C6.8124955,6.873055 7.5546823,6.6816489
5154 8.2578125,6.6816406C8.789056,6.6816489 9.2734306,6.7363363
5155 9.7109375,6.8457031C10.14843,6.9550861 10.511711,7.095711
5156 10.800781,7.2675781C11.097647,7.4394606 11.359366,7.6464917
5157 11.585938,7.8886719C11.812491,8.1308662 11.988272,8.3730535
5158 12.113281,8.6152344C12.246084,8.8496155 12.351552,9.1035215
5159 12.429688,9.3769531C12.507802,9.6425834 12.558584,9.873052
5160 12.582031,10.068359C12.605458,10.263677 12.617177,10.455083
5161 12.617188,10.642578C12.617177,11.00977 12.578115,11.376957
5162 12.5,11.744141C12.421865,12.111331 12.277334,12.498049
5163 12.066406,12.904297C11.863272,13.302736 11.601553,13.654298
5164 11.28125,13.958984C10.960929,14.263673 10.531242,14.517579
5165 9.9921875,14.720703C9.4531179,14.916016 8.8398372,15.013672
5166 8.1523438,15.013672C7.8007758,15.013672 7.4570261,14.982422
5167 7.1210938,14.919922C6.7929643,14.849609 6.4414021,14.740235
5168 6.0664062,14.591797C5.6992154,14.44336 5.359372,14.22461
5169 5.046875,13.935547C4.7343726,13.638673 4.4492166,13.291017
5170 4.1914062,12.892578C3.9414046,12.486331 3.7421861,11.970706
5171 3.59375,11.345703C3.4531239,10.720707 3.3828114,10.025396
5172 3.3828125,9.2597656C3.3828114,7.9082102 3.6835924,6.6347739
5173 4.2851562,5.4394531C4.8945287,4.2441513 5.8085903,3.2089961
5174 7.0273438,2.3339844L7.015625,2.3339844C7.5546823,1.9433724 8.2148379,1.6425914
5175 8.9960938,1.4316406C9.7851488,1.2129044 10.781242,1.0527483
5176 11.984375,0.95117188L11.996094,1.5605469" />
5177 </g>
5178 <!-- }}} -->
5179 <!-- Five {{{ -->
5180 <g id="i5" transform="scale(1.5) translate(-8,-8) scale(.5)">
5181 <path style="fill:#000;" 
5182 d="M9.8046875,10.771484C9.8046802,9.6621147 9.5663992,8.8066468
5183 9.0898438,8.2050781C8.6132752,7.603523 8.0585882,7.302742
5184 7.4257812,7.3027344C6.4804648,7.302742 5.3789034,7.5605543
5185 4.1210938,8.0761719L4.9414062,1.1269531C5.9570278,1.2207169 6.8906206,1.2675918
5186 7.7421875,1.2675781C8.8281187,1.2675918 10.105461,1.1894669
5187 11.574219,1.0332031L11.972656,1.2324219L11.609375,2.8613281C10.437492,2.9629026
5188 9.5273367,3.0136838 8.8789062,3.0136719C8.1601506,3.0136838 7.3906201,2.9668089
5189 6.5703125,2.8730469C6.5234335,3.318371 6.4531211,3.9121204
5190 6.359375,4.6542969C6.2656213,5.3886814 6.2031213,5.8886809
5191 6.171875,6.1542969C6.8359332,6.0293058 7.4453076,5.9668059
5192 8,5.9667969C9.2578058,5.9668059 10.292961,6.3964929
5193 11.105469,7.2558594C11.917959,8.1152412 12.324209,9.1543027
5194 12.324219,10.373047C12.324209,11.740238 11.863272,12.884768
5195 10.941406,13.806641C10.019524,14.720703 8.8398374,15.177734
5196 7.4023438,15.177734C6.8867144,15.177734 6.3437462,15.099609
5197 5.7734375,14.943359C5.2031223,14.78711 4.7109353,14.56836
5198 4.296875,14.287109C3.8828111,13.998048 3.6757801,13.693361
5199 3.6757812,13.373047C3.6757801,13.123049 3.7929675,12.916018
5200 4.0273438,12.751953C4.2695295,12.587893 4.5585917,12.505862
5201 4.8945312,12.505859C5.1289036,12.505862 5.3359347,12.548831
5202 5.515625,12.634766C5.6953093,12.712893 5.8281217,12.79883
5203 5.9140625,12.892578C6.007809,12.978518 6.1249964,13.107424
5204 6.265625,13.279297C6.4140586,13.466798 6.531246,13.607423
5205 6.6171875,13.701172C6.7031208,13.794923 6.8203082,13.892579
5206 6.96875,13.994141C7.1249954,14.087891 7.2812452,14.134766
5207 7.4375,14.134766C8.1015569,14.134766 8.6601501,13.818361
5208 9.1132812,13.185547C9.5742117,12.552737 9.8046802,11.74805 9.8046875,10.771484"
5209 />
5210 </g>
5211 <!-- }}} -->
5212 <!-- Four {{{ -->
5213 <g id="i4" transform="scale(1.5) translate(-8,-8) scale(.5)">
5214 <path style="fill:#000;" 
5215 d="M10.935547,5.1464844L10.935547,9.9980469L12.564453,9.9980469L12.822266,11.322266L10.935547,11.322266L10.935547,13.173828C10.935538,13.501955
5216 10.958976,13.732423 11.005859,13.865234C11.052726,13.998048 11.158194,14.064454
5217 11.322266,14.064453L11.943359,14.064453C12.333974,14.064454 12.529287,14.16211
5218 12.529297,14.357422L12.529297,14.990234L11.369141,14.955078C10.603507,14.939453
5219 10.01757,14.931641
5220 9.6113281,14.931641L6.9042969,14.990234L6.9042969,14.345703C6.9042923,14.158204
5221 7.0956984,14.064454 7.4785156,14.064453L8.1230469,14.064453C8.2949159,14.064454
5222 8.4042908,14.001954 8.4511719,13.876953C8.4980407,13.751954 8.5214782,13.521486
5223 8.5214844,13.185547L8.5214844,11.322266L4.3027344,11.322266C3.9667952,11.322269
5224 3.7753892,11.259769
5225 3.7285156,11.134766L3.5410156,10.537109L3.6113281,10.572266C3.5800769,10.54102
5226 3.5253894,10.482426 3.4472656,10.396484C3.3691396,10.310552 3.3144521,10.244145
5227 3.2832031,10.197266L3.3066406,10.208984C3.2207022,10.123052 3.1777335,10.076177
5228 3.1777344,10.068359L3.3300781,9.9160156C4.0566389,9.1347714 4.7753882,8.1464912
5229 5.4863281,6.9511719C6.2050742,5.7480561 6.7636674,4.7050884
5230 7.1621094,3.8222656C7.5605416,2.9394651 7.91601,2.0761848
5231 8.2285156,1.2324219C8.2753847,1.1074357 8.4589782,1.0449358
5232 8.7792969,1.0449219C8.8964778,1.0449358 9.0800714,1.064467
5233 9.3300781,1.1035156C9.3613211,1.1035295 9.5956959,1.1308732
5234 10.033203,1.1855469C9.6191333,2.7089966 9.0488214,4.2402451
5235 8.3222656,5.7792969C7.5956979,7.3105545 6.7441362,8.7168031
5236 5.7675781,9.9980469L8.5214844,9.9980469L8.5214844,7.2324219L9.9980469,5.1464844L10.935547,5.1464844"
5237 />
5238 </g>
5239 <!-- }}} -->
5240 <!-- Three {{{ -->
5241 <g id="i3" transform="scale(1.5) translate(-8,-8) scale(.5)">
5242 <path style="fill:#000;" 
5243 d="M7.9355469,1.9589844C7.787104,1.9589974 7.6152292,1.9863411
5244 7.4199219,2.0410156C7.2324171,2.0879035 7.0253861,2.1699347
5245 6.7988281,2.2871094C6.5722615,2.3964969 6.3808554,2.5683718
5246 6.2246094,2.8027344C6.0761682,3.0371213 6.0019496,3.3105585
5247 6.0019531,3.6230469C6.0019496,3.9433704 5.9081997,4.2363388
5248 5.7207031,4.5019531C5.5410125,4.7675883 5.2363253,4.9004007
5249 4.8066406,4.9003906C4.580076,4.9004007 4.3847637,4.8613382
5250 4.2207031,4.7832031C4.0644515,4.7050884 3.9550766,4.6113385
5251 3.8925781,4.5019531C3.8300767,4.3847762 3.787108,4.2910263
5252 3.7636719,4.2207031C3.7480456,4.1425889 3.7402331,4.0839952
5253 3.7402344,4.0449219C3.7402331,3.8652455 3.7832018,3.6582144
5254 3.8691406,3.4238281C3.9628891,3.1894649 4.1230452,2.9277464
5255 4.3496094,2.6386719C4.5761698,2.349622 4.8574195,2.0879035
5256 5.1933594,1.8535156C5.5292938,1.6113415 5.9785121,1.4121229
5257 6.5410156,1.2558594C7.103511,1.0918107 7.7246041,1.0097796
5258 8.4042969,1.0097656C9.0136653,1.0097796 9.548821,1.0918107
5259 10.009766,1.2558594C10.478508,1.4199354 10.833976,1.6347789
5260 11.076172,1.9003906C11.318351,2.1660284 11.494132,2.4355594
5261 11.603516,2.7089844C11.720694,2.9824338 11.779288,3.2558711
5262 11.779297,3.5292969C11.779288,4.5214948 11.068351,5.5058688
5263 9.6464844,6.4824219C10.052727,6.6230552 10.412101,6.7871175
5264 10.724609,6.9746094C11.037101,7.1543047 11.337882,7.3886794
5265 11.626953,7.6777344C11.923819,7.9668039 12.150381,8.3300848
5266 12.306641,8.7675781C12.462881,9.2050839 12.541006,9.7011771
5267 12.541016,10.255859C12.541006,12.208987 11.580069,13.673829
5268 9.6582031,14.650391C8.9003842,15.009766 8.0449163,15.189453
5269 7.0917969,15.189453C6.5683553,15.189453 6.0292933,15.123047
5270 5.4746094,14.990234C4.9277319,14.857422 4.4550761,14.666016
5271 4.0566406,14.416016C3.6582019,14.158204 3.4589834,13.876954
5272 3.4589844,13.572266C3.4589834,13.353517 3.580077,13.154299
5273 3.8222656,12.974609C4.0644515,12.787112 4.3535137,12.693362
5274 4.6894531,12.693359C5.2128879,12.693362 5.6152312,12.89258
5275 5.8964844,13.291016C6.310543,13.916017 6.8066363,14.228516
5276 7.3847656,14.228516C7.5410105,14.228516 7.7167916,14.197266
5277 7.9121094,14.134766C8.1152287,14.064454 8.3378847,13.94336
5278 8.5800781,13.771484C8.8300717,13.591798 9.056634,13.373048
5279 9.2597656,13.115234C9.4628836,12.857424 9.6347584,12.505862
5280 9.7753906,12.060547C9.9160082,11.615238 9.9863206,11.119144
5281 9.9863281,10.572266C9.9863206,10.10352 9.9199144,9.6894584
5282 9.7871094,9.3300781C9.6621022,8.9707091 9.5058523,8.6894594
5283 9.3183594,8.4863281C9.1308527,8.2832098 8.9121029,8.1191475
5284 8.6621094,7.9941406C8.4121034,7.8613352 8.1816349,7.7753978
5285 7.9707031,7.7363281C7.7597603,7.6894604 7.5527293,7.6660229
5286 7.3496094,7.6660156C7.2011671,7.6660229 6.83398,7.7246166
5287 6.2480469,7.8417969L6.0957031,6.9863281C6.9628861,6.8378987 7.7363228,6.4238367
5288 8.4160156,5.7441406C9.103509,5.064463 9.4472586,4.4355574
5289 9.4472656,3.8574219C9.4472586,3.2636836 9.294915,2.7988403
5290 8.9902344,2.4628906C8.6933531,2.126966 8.341791,1.9589974 7.9355469,1.9589844"
5291 />
5292 </g>
5293 <!-- }}} -->
5294 <!-- Two {{{ -->
5295 <g id="i2" transform="scale(1.5) translate(-8,-8) scale(.5)">
5296 <path style="fill:#000;" 
5297 d="M3.7109375,4.3496094C3.7109362,3.9902453 3.8007798,3.6230582
5298 3.9804688,3.2480469C4.167967,2.8652465 4.4296855,2.5097781
5299 4.765625,2.1816406C5.1093723,1.8457162 5.5546843,1.572279
5300 6.1015625,1.3613281C6.6562457,1.1504044 7.2617139,1.0449358
5301 7.9179688,1.0449219C8.3476503,1.0449358 8.7578061,1.0761858
5302 9.1484375,1.1386719C9.5390553,1.2011856 9.9257737,1.3144668
5303 10.308594,1.4785156C10.69921,1.6425914 11.035148,1.8535287
5304 11.316406,2.1113281C11.597647,2.3613407 11.824209,2.6972779
5305 11.996094,3.1191406C12.175771,3.541027 12.265615,4.0254016
5306 12.265625,4.5722656C12.265615,4.9863381 12.214834,5.3691502
5307 12.113281,5.7207031C12.011709,6.064462 11.832022,6.4121179
5308 11.574219,6.7636719C11.32421,7.1152422 11.097648,7.4003982
5309 10.894531,7.6191406C10.691398,7.8378977 10.374992,8.1582099
5310 9.9453125,8.5800781L9.9570312,8.5800781L7.7070312,10.759766C6.7148394,11.751956
5311 6.1874962,12.619143 6.125,13.361328L10.050781,13.361328C10.222648,13.36133
5312 10.386711,13.201174 10.542969,12.880859C10.69921,12.552737 10.828117,12.126956
5313 10.929688,11.603516L12.3125,11.791016L11.808594,14.955078L3.6875,14.955078C3.6874987,14.439454
5314 3.7343737,13.994142 3.828125,13.619141C3.9218735,13.23633 4.1601545,12.755862
5315 4.5429688,12.177734C4.9257787,11.5918 5.4843719,10.919926
5316 6.21875,10.162109L7.8828125,8.4511719C8.5156189,7.8027415 8.9648372,7.1933671
5317 9.2304688,6.6230469C9.5038991,6.0449308 9.6406177,5.3925877
5318 9.640625,4.6660156C9.6406177,4.1816514 9.5742116,3.7558706
5319 9.4414062,3.3886719C9.3163993,3.0214963 9.152337,2.7441528
5320 8.9492188,2.5566406C8.7460874,2.3691532 8.5429626,2.2324346
5321 8.3398438,2.1464844C8.1445255,2.0527473 7.9531194,2.0058723
5322 7.765625,2.0058594C7.1796827,2.0058723 6.7539019,2.1425909
5323 6.4882812,2.4160156C6.2226524,2.6816529 6.08984,2.9824338
5324 6.0898438,3.3183594C6.08984,3.4902458 6.1171838,3.6582144
5325 6.171875,3.8222656C6.2499961,4.1035265 6.2890586,4.28712
5326 6.2890625,4.3730469C6.2890586,4.6933696 6.1601525,4.9355569
5327 5.9023438,5.0996094C5.644528,5.2558691 5.3515595,5.333994
5328 5.0234375,5.3339844C4.6484352,5.333994 4.3359356,5.2402441
5329 4.0859375,5.0527344C3.8359361,4.857432 3.7109362,4.6230572 3.7109375,4.3496094"
5330 />
5331 </g>
5332 <!-- }}} -->
5333 <!-- Cards -->
5334 EOF
5335 
5336 # include external court images
5337 # Not needed anymore, the court images are all vector now
5338 #generate_court_images();
5339 
5340 # Generate all groups
5341 generate_groups("heart", "heart");
5342 generate_groups("diamond", "bell");
5343 generate_groups("spade", "leaf");
5344 generate_groups("club", "acorn");
5345 
5346 # generate all cards: for each suit and each card name generate a card
5347 my $leftborder = $off;
5348 my $rightborder = $off + $figwidth;
5349 my $centery = $height / 2 - 0.2;
5350 for ($j = 0; $j < @suits; $j++) {
5351     print "<!-- $suits[$j] suit -->\n";
5352     for ($i = 0; $i < @cardnames; $i++) {
5353         my $cardid = "$cardnames[$i]_$suits[$j]";
5354         print <<EOF;
5355 <g id="$cardid">
5356 <use xlink:href="#card-$suits[$j]" />
5357 <use x="$off" y="$off" xlink:href="#g-$cardid" />
5358 <use x="$off" y="$off" xlink:href="#g-$cardid" transform="rotate(180,$centerx,$centery)" />
5359 <use xlink:href="#card-shadow" />
5360 </g>
5361 EOF
5362     }
5363 }
5364 
5365 print <<EOF;
5366 <!-- Card groups, for easy displaying -->
5367 EOF
5368 
5369 # generate all suits (not strictly needed, but nice to see the cards when
5370 # loading the deck in an editor)
5371 for ($j = 0; $j < @suits; $j++) {
5372     print "<g id=\"$suits[$j]-suit\">\n";
5373     for ($i = 0; $i < @cardnames; $i++) {
5374         my $cardid = "$cardnames[$i]_$suits[$j]";
5375         my $x = $width * $i;
5376         print <<EOF;
5377 <use x="$x" xlink:href="#$cardid" />
5378 EOF
5379     }
5380     print "</g>\n";
5381 }
5382 
5383 
5384 my $boff = 4;
5385 my $b2off = 6;
5386 my $bwidth = $width - 2 * $boff;
5387 my $bheight = $height - 2 * $boff;
5388 my $bradius = $cradius - $boff;
5389 my $b2width = $width - 2 * $b2off;
5390 my $b2height = $height - 2 * $b2off;
5391 my $b2radius = $cradius - $b2off;
5392 my $cx = $width / 2;
5393 my $cy = $height / 2;
5394 
5395 print <<EOF;
5396 <!-- Misc stuff: Card backs, jolly jokers... -->
5397 <g id="back">
5398 <use xlink:href="#card-outline"/>
5399 <rect width="$b2width" height="$b2height" x="$b2off" y="$b2off" rx="$b2radius" style="fill:#080;"/>
5400 <rect width="$bwidth" x="$boff" y="$boff" rx="$bradius" height="$bheight" style="fill:none;stroke:#04b;stroke-width:1;"/>
5401 <use x="$cx" y="$cy" style="fill:white;" xlink:href="#big-logo"/>
5402 <use xlink:href="#back-shadow"/>
5403 </g>
5404 <g id="misc-cards">
5405 <use x="0" xlink:href="#back"/>
5406 </g>
5407 </defs>
5408 EOF
5409 
5410 # generate suits for display
5411 for ($j = 0; $j < @suits; $j++) {
5412     my $y = (0 + $height) * $j;
5413     print <<EOF;
5414 <use y="$y" xlink:href="#$suits[$j]-suit"/>
5415 EOF
5416 }
5417 
5418 my $y = $height * (@suits);
5419 print <<EOF;
5420 <use y="$y" xlink:href="#misc-cards"/>
5421 </svg>
5422 <!--
5423  vi: ts=4 sw=4 noautoindent
5424 -->
5425 EOF
5426 # vim: foldmethod=marker