Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Major <jmikem@bellsouth.net>2009-06-07 12:06:38 (GMT)
committer Mike Major <jmikem@bellsouth.net>2009-06-07 12:06:38 (GMT)
commitce3a918598a007a9e035f07d5ac163f81a344126 (patch)
treee15b7e58dacc3adf37fc8e53c38f0575dfcc3239
parent1f2a32a03a7f2d2f79476050978b4ebaf83ffc51 (diff)
add images for correct and incorrect answers
-rw-r--r--activity/activity.info2
-rwxr-xr-xhoparound.py46
-rw-r--r--hoppy-right.svg255
-rw-r--r--hoppy-wrong.svg205
4 files changed, 490 insertions, 18 deletions
diff --git a/activity/activity.info b/activity/activity.info
index 0222a72..843f4a5 100644
--- a/activity/activity.info
+++ b/activity/activity.info
@@ -3,6 +3,6 @@ name = Hop-A-Round
bundle_id = org.laptop.HopaRound
class = hoparound.HopaRoundActivity
icon = hoparound-icon
-activity_version = 5
+activity_version = 6
host_version = 1
show_launcher = yes
diff --git a/hoparound.py b/hoparound.py
index 7d557be..376a063 100755
--- a/hoparound.py
+++ b/hoparound.py
@@ -1,11 +1,12 @@
import gtk, math
-import random
+import random, locale
from sugar.activity import activity
class HopaRoundActivity(activity.Activity):
def __init__(self, handle):
activity.Activity.__init__(self, handle)
print "INFO: activity running"
+ locale.setlocale(locale.LC_ALL,"")
# make the toolbox
toolbox = activity.ActivityToolbox(self)
self.set_toolbox(toolbox)
@@ -20,9 +21,13 @@ class HopaRoundActivity(activity.Activity):
self.incorrect = 0
self.dec_answer = 0
random.seed()
+ self.correct_answer = gtk.gdk.pixbuf_new_from_file("hoppy-right.svg")
+ self.incorrect_answer = gtk.gdk.pixbuf_new_from_file("hoppy-wrong.svg")
+ self.image_answer = gtk.Image()
#create view ports
print "INFO: create view ports"
- self.main_view = gtk.VBox()
+ self.main_view = gtk.HBox()
+ self.panels = gtk.VBox()
self.panes = gtk.HBox(True)
self.left_view = gtk.VBox()
self.mid_view = gtk.VBox()
@@ -51,12 +56,13 @@ class HopaRoundActivity(activity.Activity):
self.output.set_justify(gtk.JUSTIFY_LEFT)
#show the widgets
print "INFO: show widgets"
- self.main_view.pack_start(self.instructions, False, False, 10)
- self.main_view.pack_start(self.play_btn, False, False, 10)
- self.main_view.pack_start(self.panes, False, False, 10)
+ self.main_view.pack_start(self.panels, False, False, 10)
+ self.main_view.pack_start(self.right_view, False, False, 10)
+ self.panels.pack_start(self.instructions, False, False, 10)
+ self.panels.pack_start(self.play_btn, False, False, 10)
+ self.panels.pack_start(self.panes, False, False, 10)
self.panes.pack_start(self.left_view, False, False, 10)
self.panes.pack_start(self.mid_view, False, False, 10)
- self.panes.pack_start(self.right_view, False, False, 10)
self.left_view.pack_start(self.type_answer_instructions, False, False, 10)
self.left_view.pack_start(self.answer, False, False, 10)
self.left_view.pack_start(self.check_answer_btn, False, False, 10)
@@ -66,6 +72,7 @@ class HopaRoundActivity(activity.Activity):
self.mid_view.pack_start(self.mult_3, False, False, 10)
self.mid_view.pack_start(self.mult_4, False, False, 10)
self.right_view.pack_start(self.output, False, False, 10)
+ self.right_view.pack_start(self.image_answer, False, False, 10)
self.set_canvas(self.main_view)
self.show_all()
self.play_btn.grab_focus()
@@ -74,20 +81,22 @@ class HopaRoundActivity(activity.Activity):
print "INFO: play clicked"
self.dec_answer = random.choice(self.decades)
self.gen_random(self)
+ self.guesses = 0
self.answer.set_text("?")
- message = "Correct:\t\t" + str(self.correct)
- message += "\nIncorrect:\t" + str(self.incorrect)
- self.output.set_markup(message)
message = "\nRound the number <b>"
- message += str(self.rounded[0])
+ message += locale.format("%d", self.rounded[0], True)
message += "</b> to the nearest <b>"
- message += str(self.dec_answer)
+ message += locale.format("%d", self.dec_answer, True)
message += "</b>:\n"
self.instructions.set_markup(message)
- self.mult_1.set_label(str(self.rounded[1]))
- self.mult_2.set_label(str(self.rounded[2]))
- self.mult_3.set_label(str(self.rounded[3]))
- self.mult_4.set_label(str(self.rounded[4]))
+ self.mult_1.set_label(locale.format("%d", self.rounded[1], True))
+ self.mult_2.set_label(locale.format("%d", self.rounded[2], True))
+ self.mult_3.set_label(locale.format("%d", self.rounded[3], True))
+ self.mult_4.set_label(locale.format("%d", self.rounded[4], True))
+ message = "Correct:\t\t" + str(self.correct)
+ message += "\nIncorrect:\t" + str(self.incorrect)
+ self.image_answer.clear()
+ self.output.set_markup(message)
#self.show_random_numbers(self)
self.answer.grab_focus()
@@ -106,8 +115,9 @@ class HopaRoundActivity(activity.Activity):
self.correct += 1
message = "Correct:\t\t" + str(self.correct)
message += "\nIncorrect:\t" + str(self.incorrect)
- message += "\n\n<b>That's correct!</b>"
+ message += "\n\n<b>That's correct!\n\n\n\n</b>"
self.output.set_markup(message)
+ self.image_answer.set_from_pixbuf(self.correct_answer)
self.instructions.set_markup("\n\nLet's play...")
self.answer.set_text("?")
self.play_btn.grab_focus()
@@ -115,10 +125,12 @@ class HopaRoundActivity(activity.Activity):
self.incorrect += 1
message = "Correct:\t\t" + str(self.correct)
message += "\nIncorrect:\t" + str(self.incorrect)
- message += "<span foreground=\"red\">\n\n<b>Sorry, the correct answer was\n" + str(self.rounded[self.dec_answer])
+ message += "<span foreground=\"red\">\n\n<b>Sorry, the correct answer was\n"
+ message += locale.format('%d', self.rounded[self.dec_answer], True)
message += "\n\nYou answered\n" + str(response)
message += "</b></span>"
self.output.set_markup(message)
+ self.image_answer.set_from_pixbuf(self.incorrect_answer)
self.answer.set_text("?")
self.play_btn.grab_focus()
except:
diff --git a/hoppy-right.svg b/hoppy-right.svg
new file mode 100644
index 0000000..18cbdef
--- /dev/null
+++ b/hoppy-right.svg
@@ -0,0 +1,255 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="200"
+ height="500"
+ id="svg2387"
+ style="display:inline"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ sodipodi:docname="Hoppy-right.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <metadata
+ id="metadata42">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ inkscape:window-height="778"
+ inkscape:window-width="1280"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ guidetolerance="10.0"
+ gridtolerance="10.0"
+ objecttolerance="10.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base"
+ showgrid="false"
+ inkscape:zoom="0.988"
+ inkscape:cx="-15.921106"
+ inkscape:cy="247.3797"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:current-layer="layer3" />
+ <defs
+ id="defs2389">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective44" />
+ <inkscape:perspective
+ id="perspective2529"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ </defs>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="L1"
+ style="display:inline">
+ <g
+ id="g3430"
+ transform="translate(-19.230769,-1.0121457)">
+ <path
+ sodipodi:nodetypes="csssssssssssssssss"
+ d="M 81.287667,182.62639 C 75.065214,189.80824 73.014384,200.64966 71.563855,207.708 C 69.887017,215.86759 68.408918,227.75588 67.414523,235.86308 C 66.737511,241.3827 65.871019,249.72622 65.324101,257.2115 C 64.978416,261.94266 65.166791,275.48463 66.493443,283.64418 C 67.144165,287.64645 69.487735,298.08347 71.494179,306.8709 C 73.563817,315.9351 75.949899,327.76728 78.006958,334.24609 C 79.42677,338.71786 84.02665,347.72833 87.585248,355.29934 C 91.050489,362.67173 95.9124,371.44649 100.53892,379.65854 C 103.68257,385.23849 105.68929,391.11968 113.14051,391.36294 C 121.14457,391.62424 127.32807,384.22596 131.98506,377.48196 C 134.42921,373.94247 136.51211,364.80122 140.75111,356.75058 C 143.34377,351.82661 147.43454,340.01801 149.93557,332.19855 C 152.43691,324.37811 153.69636,317.85758 155.12744,311.5461 C 156.5754,305.16008 159.0133,294.30593 159.90237,286.65577 C 160.73123,279.52377 162.25932,265.20018 161.76698,251.20134 C 161.34338,239.15718 160.06541,223.57224 157.20972,212.50032 C 155.94302,207.58913 150.47609,189.13421 145.61865,182.96897"
+ id="path3186"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="csssssssssssssssssss"
+ d="M 99.34646,203.59698 C 95.37348,200.29208 91.86721,195.98752 88.9411,191.92807 C 85.97121,187.80791 82.21248,181.63293 80.74087,178.76814 C 78.20308,173.8278 76.49145,169.40133 74.78657,164.47293 C 73.23983,160.00168 71.18772,153.49347 70.3242,148.86298 C 69.22521,142.96979 67.85577,134.80741 68.3037,128.69965 C 68.76127,122.46026 68.60951,114.10314 70.55253,109.75035 C 73.40862,103.35205 73.08949,100.12944 78.35692,95.783126 C 82.17583,92.632011 89.79138,91.864477 94.94298,91.337052 C 102.84277,90.528268 107.69283,90.315549 114.78296,89.898483 C 119.96891,89.593427 128.7796,90.149276 134.92823,90.616043 C 139.5141,90.964174 149.52967,92.188778 153.3624,95.547949 C 156.24188,98.071649 161.3632,103.33138 163.07722,108.29078 C 164.74473,113.11562 165.41624,120.99576 164.74086,126.57843 C 163.89253,133.59067 161.97664,142.0709 160.25325,146.98251 C 158.52516,151.90753 157.22587,158.24973 153.24762,166.60894 C 149.79792,173.85754 146.12885,180.85327 143.39162,185.69599 C 140.18901,191.36205 137.91691,195.31465 132.19132,203.45792 C 129.0377,207.94318 122.79659,213.45901 116.93821,213.25719 C 108.0479,212.95092 105.90742,209.05466 99.34646,203.59698 z"
+ id="path3169"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.29999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ transform="matrix(-0.8420826,0,0,0.4478511,379.26806,46.086659)"
+ id="g2610">
+ <path
+ sodipodi:nodetypes="csssss"
+ d="M 380.69652,-18.065907 C 378.99907,-20.121857 370.47642,-29.490832 368.19869,-29.475633 C 362.71936,-29.439072 357.33841,-27.089285 353.88061,-23.8437 C 349.73869,-19.955974 341.57164,-10.876338 336.87536,0.88491814 C 331.57745,14.152901 329.99483,49.223752 328.51082,68.055689 C 327.05298,86.555451 327.61763,121.96204 327.61763,121.96204"
+ id="path2606"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.69933081;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ transform="matrix(0.8270184,-0.2171011,0.2171011,0.8270184,-17.320341,40.054151)"
+ id="g2609">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.45602679;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path3526"
+ d="M 109.87892,136.63004 C 107.5472,152.94618 98.437427,164.77217 89.529844,163.04645 C 80.622252,161.32074 75.288775,146.69657 77.616109,130.37958 C 79.943447,114.06257 89.05061,102.22941 97.959341,103.94711 C 106.86806,105.66481 112.20602,120.28316 109.88306,136.60101" />
+ <path
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:10.37311172;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
+ id="path2395"
+ d="M 93.326102,144.93326 C 92.842398,148.01726 91.118456,150.27624 89.475226,149.9793 C 87.832,149.68235 86.891515,146.94188 87.374415,143.85773 C 87.85731,140.77359 89.580788,138.51326 91.224255,138.80869 C 92.86772,139.10412 93.80905,141.84348 93.326958,144.92777" />
+ </g>
+ <g
+ transform="matrix(0.8658456,0.2031087,-0.1796044,0.9791562,45.864663,-36.819)"
+ id="g2613">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.23318601;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
+ id="path3528"
+ d="M 154.51288,144.624 C 152.39314,158.65241 143.927,167.93049 135.60154,165.34901 C 127.27608,162.76754 122.24283,149.30371 124.35847,135.27402 C 126.47412,121.24434 134.9378,111.95966 143.26431,114.53424 C 151.59079,117.1088 156.6282,130.56809 154.51664,144.59903" />
+ <path
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:10.09263515;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
+ id="path2397"
+ d="M 143.03391,152.21216 C 142.55112,155.21405 140.74251,157.21751 138.99393,156.68742 C 137.24532,156.15733 136.21866,153.29434 136.70059,150.29219 C 137.18252,147.29004 138.99063,145.28517 140.73947,145.8138 C 142.48829,146.3424 143.51585,149.20441 143.03478,152.20683" />
+ </g>
+ <g
+ transform="matrix(0.9646958,0,0,0.4467286,-190.53757,43.683262)"
+ id="g3172"
+ style="display:inline">
+ <path
+ sodipodi:nodetypes="cssssss"
+ d="M 379.41174,-5.4109244 C 378.7413,-14.185926 374.44346,-25.860416 371.74926,-27.753606 C 370.08637,-28.922102 365.35594,-24.395883 362.4225,-22.681421 C 357.852,-20.010166 353.24429,-14.270574 350.59286,-9.1174658 C 347.34647,-2.808044 341.4122,14.532291 339.08925,23.237909 C 336.97257,31.170517 332.10399,54.86309 330.5637,73.458064 C 329.07438,91.437749 329.9048,124.28343 329.9048,124.28343"
+ id="path3174"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.33151865;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <path
+ d="M 67.936328,397.53486 C 74.132868,406.5604 75.982048,412.83286 77.856598,420.17025 C 80.318618,429.80722 80.435918,434.05398 81.570468,440.90912 C 82.365528,445.71303 83.195708,455.87039 82.636778,459.12204 C 81.718098,464.46693 78.997498,463.76518 77.282698,463.15844 C 75.559718,462.5488 73.508138,461.62608 70.658828,455.68574 C 68.308788,450.7863 65.132528,445.05552 62.852658,439.8597 C 61.141688,435.9605 57.601878,426.93536 55.339778,421.24612 C 53.285478,416.07936 52.960128,412.00707 50.134928,401.07282 C 48.721908,395.60405 50.316398,391.67043 50.682838,389.61212 C 51.166648,386.89447 53.342078,386.12419 55.388048,386.61548 C 58.557778,387.37666 63.415038,390.94938 67.936328,397.53486 z"
+ id="path3191"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 164.25029,395.0246 C 160.11463,403.57092 159.37263,408.6472 158.75509,414.4839 C 157.94402,422.1499 158.42624,425.18815 158.38449,430.42456 C 158.3552,434.09409 159.03168,441.55409 159.9638,443.65252 C 161.49599,447.10183 163.76021,445.65089 165.16473,444.62031 C 166.57593,443.58479 168.22923,442.2129 169.88471,437.0197 C 171.25012,432.7365 173.21812,427.57631 174.48191,423.10862 C 175.43034,419.75579 177.26075,412.14298 178.44124,407.33329 C 179.51328,402.96531 179.23555,399.97709 180.18338,391.26804 C 180.65741,386.91217 178.73291,384.69624 178.1319,383.37236 C 177.33836,381.62438 175.34479,381.84499 173.63701,382.91041 C 170.99128,384.56108 167.26786,388.78874 164.25029,395.0246 z"
+ id="path3201"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999905;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 146.26192,331.50244 C 146.85205,337.85759 148.3983,351.96619 150.31878,357.3032 C 153.60449,366.45275 157.4278,372.47331 160.99119,376.08178 C 164.05314,379.18244 170.93917,386.08356 173.44923,387.66182 C 177.57517,390.25616 179.21594,386.60487 179.88371,384.53687 C 180.55463,382.45905 181.22274,379.85641 179.05445,373.19979 C 177.26606,367.70956 176.5617,361.65859 174.53258,356.04324 C 173.00982,351.82916 169.50318,341.99965 167.13501,336.07947 C 164.98427,330.70299 163.11936,325.63098 157.61709,315.73702 C 154.86511,310.78856 152.40241,308.36757 150.26964,308.88658 C 148.01994,309.43404 147.25755,311.32926 146.81529,314.33354 C 146.22679,318.33146 145.73488,325.82643 146.26192,331.50244 z"
+ id="path3203"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999905;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 76.354512,463.68765 C 76.996181,465.55867 73.76802,469.03543 71.749104,471.17144 C 69.973462,473.05006 67.680711,474.97342 65.646938,476.35252 C 62.227517,478.67124 60.049536,480.97286 56.551262,481.87901"
+ id="path3193"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 82.583751,459.65793 C 83.685961,461.52894 84.35632,464.75429 83.274564,467.48712 C 82.483528,469.4855 80.66269,473.25436 78.669157,476.00712 C 76.005451,479.68527 73.186889,485.46314 68.997802,487.52063"
+ id="path3195"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 107.58528,375.17586 C 110.10846,376.25424 111.969,376.46675 114.7335,376.56419 C 116.6046,376.63014 117.96453,376.83873 119.84624,376.59288 C 121.16824,376.42015 122.49164,376.33212 123.69802,375.8574 C 124.11661,375.69268 123.78803,375.59777 123.86669,375.37091"
+ id="path3209"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M 106.94054,358.10884 C 109.96243,359.20869 112.20964,359.43673 115.55572,359.55713 C 117.8205,359.63863 119.4613,359.85859 121.74902,359.62821 C 123.35627,359.46636 124.96247,359.38925 126.43943,358.9243 C 126.95192,358.76297 126.55692,358.66529 126.65956,358.43896"
+ id="path3211"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 98.95877,337.16377 C 104.54175,339.4726 108.617,339.76378 114.65661,339.6676 C 118.74446,339.60251 120.28397,339.59618 124.44061,339.25701 C 127.57591,339.00118 129.55201,338.83304 132.19548,337.99659 C 133.15598,337.69267 133.85186,337.09688 135.26781,336.41481"
+ id="path3213"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 88.863429,312.16257 C 97.209767,317.5392 103.21526,318.39723 112.08262,318.50805 C 118.08445,318.5831 120.34588,318.65135 126.43167,318.12719 C 131.0221,317.73182 133.91491,317.46746 137.74658,315.76869 C 139.13882,315.15145 140.12411,313.87806 142.16191,312.45335"
+ id="path3215"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 82.163314,287.37613 C 92.488219,293.33452 99.841774,294.18748 110.67059,294.12816 C 118.00002,294.08805 120.76267,294.11853 128.1796,293.39314 C 133.77407,292.84597 137.29924,292.48382 141.93462,290.46576 C 143.61888,289.73248 144.78983,288.25927 147.242,286.59139"
+ id="path3217"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 82.654492,262.91023 C 92.979401,268.86863 100.33295,269.72159 111.16178,269.66226 C 118.49119,269.62216 121.25386,269.65263 128.67077,268.92724 C 134.26526,268.38008 137.79041,268.01793 142.42579,265.99985 C 144.11006,265.26658 145.28101,263.79338 147.73317,262.12549"
+ id="path3219"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 87.839518,243.35652 C 96.722311,248.28608 103.06501,248.96361 112.41155,248.86214 C 118.73772,248.79351 121.12198,248.80574 127.52694,248.16403 C 132.3581,247.68 135.40237,247.36048 139.41279,245.65189 C 140.86999,245.03107 141.88767,243.7944 144.0121,242.38891"
+ id="path3221"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 93.406876,224.14209 C 99.914521,227.21926 104.7993,227.60639 112.08956,227.47643 C 117.02392,227.38851 118.88046,227.37963 123.92421,226.92619 C 127.72863,226.58418 130.12712,226.35941 133.39467,225.24331 C 134.58192,224.83777 135.47836,224.0431 137.25117,223.13321"
+ id="path3223"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 86.03229,332.32331 C 85.90539,347.13177 82.56491,354.79952 79.69799,362.6708 C 75.94013,372.98819 68.92277,380.35642 64.6247,385.65867 C 61.459,389.564 56.94803,395.57145 54.23027,397.16829 C 49.76295,399.7931 48.06209,397.85253 47.20264,395.48727 C 46.33912,393.11076 45.44997,390.14591 47.5074,382.83032 C 49.20434,376.79654 51.48002,369.86555 53.43908,363.70813 C 54.90924,359.08724 58.32199,349.07354 60.64312,342.5976 C 62.75112,336.71644 65.69049,331.1021 71.29516,320.38596 C 74.09837,315.02629 77.00517,312.09708 78.73502,311.10064 C 81.01901,309.78499 83.19762,311.11614 84.38744,313.7785 C 86.23073,317.90316 86.08769,325.85824 86.03229,332.32331 z"
+ id="path3189"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999881;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 109.88452,167.2019 L 111.93114,173.36549"
+ id="path3176"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 125.37883,166.92003 L 122.65165,173.26398"
+ id="path3178"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 44.786424,253.54154 C 51.141764,247.0561 52.632494,245.0117 58.497934,238.18997 C 63.742284,231.75829 66.454804,229.10563 71.063304,222.62431 C 73.518714,219.17103 76.836184,214.93793 77.690054,211.10219 C 79.093584,204.79723 78.114024,202.58962 76.906004,201.56502 C 75.692244,200.53553 74.175794,199.50949 70.384704,202.81404 C 67.257864,205.53961 63.662284,209.11854 60.468744,212.212 C 58.072114,214.53352 52.875894,219.87572 49.514124,223.48722 C 46.461084,226.76702 43.535824,231.17065 37.952414,239.56805 C 35.159854,243.76802 33.036244,247.99345 32.503034,250.43357 C 31.799004,253.65538 33.040654,256.51607 34.397824,257.97472 C 36.500444,260.23451 41.681184,256.71036 44.786424,253.54154 z"
+ id="path3515"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 58.601713,275.75309 C 55.013314,270.3207 54.040833,269.12264 50.397173,264.3937 C 47.11581,260.13498 45.576245,257.84845 42.368899,254.38139 C 40.660018,252.53413 38.498382,249.9235 37.007433,249.98067 C 34.556678,250.07464 34.018283,251.76345 33.932145,253.39533 C 33.845592,255.03502 33.826,257.01452 35.774572,260.40483 C 37.381719,263.2011 39.381169,266.29848 41.128027,269.07215 C 42.438974,271.15371 45.386399,275.58482 47.346109,278.41037 C 49.125842,280.97641 51.260264,283.10024 55.331582,287.15607 C 57.367845,289.18459 59.126481,289.81014 60.072798,289.76253 C 61.322249,289.69968 62.166851,288.18566 62.368288,286.27063 C 62.680356,283.30373 60.355036,278.4074 58.601713,275.75309 z"
+ id="path3180"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 89.075887,279.6638 C 83.01723,280.04595 81.543917,280.37519 75.887033,280.5887 C 70.792598,280.78098 68.219454,280.67777 63.681142,281.33225 C 61.263136,281.68096 58.030718,281.93832 56.979588,283.36186 C 55.251799,285.7018 55.93032,287.3347 56.902587,288.50924 C 57.879495,289.68939 59.338816,290.18541 62.692327,291.49877 C 64.25648,292.11136 69.521502,293.36737 72.554845,293.60472 C 74.831251,293.78287 79.799104,294.32486 83.012925,294.09085 C 85.24771,293.92813 90.223965,292.67876 92.54204,291.73161 C 95.154597,290.66415 97.867473,289.11435 97.538028,288.03863 C 97.041281,286.41661 84.922671,288.31377 82.090559,286.98472 C 85.706015,284.50432 97.084572,284.6643 97.227575,282.29744 C 97.397453,279.48578 92.153343,279.46968 89.075887,279.6638 z"
+ id="path2418"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 157.32751,221.3921 C 164.79802,227.06207 166.70777,228.28641 173.96362,233.14711 C 180.49806,237.52451 183.6847,239.90683 189.78043,243.39315 C 193.02822,245.25067 197.25125,247.91237 199.38597,247.63206 C 202.89492,247.17128 202.96714,245.1699 202.40844,243.29859 C 201.84705,241.41839 201.04642,239.16077 196.80533,235.58021 C 193.30739,232.627 189.11533,229.38743 185.42454,226.48014 C 182.65476,224.29832 176.53163,219.67633 172.51095,216.74068 C 168.85955,214.07468 164.87978,211.96349 157.2866,207.93124 C 153.48887,205.91451 150.68069,205.45578 149.33052,205.6466 C 147.54782,205.89854 146.95905,207.74501 147.46941,209.95546 C 148.26011,213.38005 153.67738,218.62173 157.32751,221.3921 z"
+ id="path3184"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999881;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 190.18173,283.75674 C 193.15583,276.91283 193.7447,275.19542 196.14123,268.64045 C 198.29947,262.7372 199.54049,259.82305 201.09913,254.40143 C 201.92958,251.51279 203.19702,247.7216 202.59986,246.03734 C 201.61829,243.26882 200.08148,243.49628 198.75716,244.21481 C 197.42654,244.93677 195.85155,245.90587 193.88773,249.84287 C 192.26804,253.09005 190.55506,256.93876 189.00496,260.33511 C 187.84164,262.88397 185.42328,268.48987 183.91089,272.15676 C 182.53741,275.48687 181.64542,279.00297 179.94027,285.71209 C 179.08745,289.06765 179.243,291.40144 179.63097,292.46479 C 180.14325,293.86875 181.65498,294.08064 183.24622,293.35273 C 185.71147,292.22501 188.72855,287.10074 190.18173,283.75674 z"
+ id="path3182"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 156.62574,285.60314 C 161.87611,285.89125 163.15397,286.15638 168.05547,286.30709 C 172.46963,286.44282 174.69823,286.34599 178.63281,286.86578 C 180.72916,287.14272 183.53059,287.34058 184.4479,288.51095 C 185.95574,290.43478 185.37569,291.7858 184.539,292.75977 C 183.69832,293.73839 182.43647,294.15445 179.53758,295.25377 C 178.18548,295.76652 173.6304,296.82712 171.00379,297.03674 C 169.03261,297.19408 164.73157,297.66392 161.94638,297.48527 C 160.00964,297.36104 155.69285,296.35215 153.68024,295.58075 C 151.41196,294.71135 149.05448,293.44425 149.33478,292.55475 C 149.75743,291.21355 160.26461,292.72492 162.71173,291.615 C 159.56797,289.58376 149.71161,289.7672 149.57652,287.81401 C 149.41602,285.49376 153.95886,285.45679 156.62574,285.60314 z"
+ id="path2420"
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 165.39146,444.04574 C 164.74979,445.91676 167.97796,449.39352 169.99687,451.52953 C 171.77251,453.40815 174.06526,455.33151 176.09904,456.71061 C 179.51846,459.02933 181.69644,461.33095 185.19471,462.2371"
+ id="path3397"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 159.16222,440.01602 C 158.06001,441.88703 157.38966,445.11238 158.47141,447.84521 C 159.26245,449.84359 161.08329,453.61245 163.07682,456.36521 C 165.74052,460.04336 168.55909,465.82123 172.74817,467.87872"
+ id="path3399"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ sodipodi:nodetypes="css"
+ d="M 80.201387,173.03157 C 80.201387,173.03157 106.94148,196.57423 115.70284,196.81755 C 123.75589,197.038 148.67006,173.96672 148.67006,173.96672"
+ id="path3410"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ id="path3416"
+ d="M 114.88553,210.88997 C 112.69958,210.61578 110.3457,209.78299 108.81732,208.74309 C 107.97421,208.16944 106.12357,206.6696 104.92807,205.59108 C 104.37139,205.08887 102.80573,203.70599 101.44882,202.51801 C 100.09192,201.33004 98.363588,199.72945 97.608096,198.96114 C 94.170654,195.46542 90.064804,190.00348 86.157141,183.72815 C 84.822528,181.58489 82.929123,178.27607 82.997928,178.20727 C 83.026775,178.17842 83.987534,178.92612 85.132951,179.86883 C 97.342633,189.91775 106.9194,196.33176 112.50391,198.20045 C 115.59292,199.2341 117.45606,199.05061 121.09684,197.35418 C 125.91246,195.11033 132.48261,190.47084 141.61142,182.86786 C 142.30345,182.29149 142.89221,181.84247 142.91976,181.87002 C 142.97231,181.92257 142.6975,182.43418 140.94571,185.545 C 138.09083,190.6147 135.69972,194.44833 132.30484,199.39875 C 129.7154,203.17467 128.94771,204.14082 127.17786,205.85118 C 124.29336,208.63869 121.55254,210.2991 118.91143,210.85903 C 117.99432,211.05346 116.29308,211.06654 114.88553,210.88998 L 114.88553,210.88997 z"
+ style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M 94.604804,187.16282 L 94.666464,196.81999"
+ id="path3418"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 116.53597,198.43762 L 116.59763,210.87819"
+ id="path3422"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 104.72625,194.18457 L 104.78791,205.73951"
+ id="path3424"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 126.85277,194.24783 L 126.91443,205.80277"
+ id="path3426"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ <path
+ d="M 134.98435,187.41585 L 135.04601,197.07302"
+ id="path3428"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+ </g>
+ </g>
+</svg>
diff --git a/hoppy-wrong.svg b/hoppy-wrong.svg
new file mode 100644
index 0000000..946146a
--- /dev/null
+++ b/hoppy-wrong.svg
@@ -0,0 +1,205 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="200"
+ height="500"
+ id="svg2387"
+ style="display:inline"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ sodipodi:docname="Hoppy-wrong.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <metadata
+ id="metadata42">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ inkscape:window-height="714"
+ inkscape:window-width="973"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ guidetolerance="10.0"
+ gridtolerance="10.0"
+ objecttolerance="10.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base"
+ showgrid="false"
+ inkscape:zoom="0.988"
+ inkscape:cx="263.10641"
+ inkscape:cy="228.62943"
+ inkscape:window-x="0"
+ inkscape:window-y="86"
+ inkscape:current-layer="svg2387" />
+ <defs
+ id="defs2389">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective44" />
+ </defs>
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3186"
+ d="M 83.751211,180.35546 C 77.022685,186.7782 76.110519,198.37873 74.65999,205.43707 C 72.983152,213.59666 71.505053,223.71369 70.510658,231.82089 C 69.833646,237.34051 68.9646,245.68384 68.420236,253.16931 C 68.071997,257.90028 68.262926,271.44244 69.589578,279.60199 C 70.2403,283.60426 72.58387,294.04128 74.590314,302.82871 C 76.659952,311.89291 79.046034,323.72509 81.103093,330.2039 C 82.522905,334.67567 87.122785,343.68614 90.681383,351.25715 C 94.146624,358.62954 99.008535,367.4043 103.63506,375.61635 C 106.77871,381.1963 108.78543,387.07749 116.23664,387.32075 C 124.2407,387.58205 130.4242,380.18377 135.08119,373.43977 C 137.52534,369.90028 139.60824,360.75903 143.84724,352.70839 C 146.43991,347.78442 149.51853,336.48189 152.01956,328.66243 C 154.52089,320.84199 155.78035,313.81539 157.21142,307.50391 C 158.65939,301.11789 160.08515,291.78196 160.97422,284.1318 C 161.80308,276.9998 163.01795,260.99991 160.86311,247.15915 C 159.93345,241.18786 158.65547,232.15758 157.82407,226.14639 C 157.12919,221.1223 156.22911,215.58291 152.88988,211.44196" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3184"
+ d="M 178.17735,166.64548 C 175.75796,177.22288 174.9826,179.73393 172.18231,189.45346 C 169.66043,198.20659 168.60314,202.68742 165.83443,210.34105 C 164.35927,214.41889 162.61288,219.93242 160.59717,221.32606 C 157.28385,223.61685 155.82761,221.9568 155.00005,219.92533 C 154.16858,217.88418 153.27812,215.33645 154.3996,209.02156 C 155.32455,203.81315 156.64186,197.82806 157.76325,192.5114 C 158.60479,188.52146 160.60549,179.87351 161.98842,174.28007 C 163.24437,169.20035 165.16695,164.34486 168.83217,155.0772 C 170.66533,150.44198 172.74035,147.89946 174.02467,147.02961 C 175.72042,145.88108 177.5092,147.01301 178.61432,149.29816 C 180.32642,152.83846 179.35947,161.47727 178.17735,166.64548 z" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.29999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3169"
+ d="M 135.38408,212.09652 C 130.10619,210.99353 127.05774,209.58295 122.25339,207.23272 C 117.37717,204.84734 110.66395,200.9182 107.78335,198.9561 C 102.81574,195.57245 98.847917,192.25319 94.602747,188.45481 C 90.751359,185.00877 85.316618,179.89089 81.962472,175.94447 C 77.693685,170.92189 72.295215,164.33358 70.140349,157.9359 C 68.360935,152.65293 65.170757,145.49171 64.384859,140.37288 C 63.229643,132.84857 63.194007,125.15811 65.268351,118.34496 C 66.772264,113.40538 70.516286,108.74341 74.645405,105.60851 C 80.977274,100.80125 84.647848,96.905995 90.504975,92.884093 C 94.789062,89.942347 99.343875,87.714743 104.31902,86.500441 C 108.82148,85.401506 113.88993,86.005219 118.53671,88.617083 C 121.69523,90.392432 125.36934,94.233353 129.0512,98.626188 C 131.69403,101.77934 137.83673,109.47436 140.55848,113.4753 C 144.0606,118.62338 146.60202,125.73167 147.76487,128.86749 C 149.67369,134.01492 150.60834,138.09099 152.66697,143.15378 C 155.49992,150.12083 156.84527,155.49583 159.3076,161.42421 C 161.84472,167.53262 163.41902,174.05652 165.08176,180.49893 C 166.48998,185.95515 166.13594,190.8357 167.03481,196.55687 C 167.93368,202.27804 166.38908,208.53946 161.264,211.38577 C 156.45745,214.05517 153.12783,214.11801 147.40875,213.92532 C 143.32445,213.7877 139.32006,212.91906 135.38408,212.09652 z" />
+ <g
+ id="g2610"
+ transform="matrix(0.3201117,0,0,0.5605646,-33.64721,43.036648)">
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:8.26236534;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path2606"
+ d="M 379.41174,-5.4109244 C 380.23108,-24.297477 378.15125,-21.818471 375.5882,-25.410924 C 374.12138,-27.466874 367.27602,-28.36083 365.30777,-28.345631 C 360.57291,-28.30907 354.3065,-25.718416 351.11745,-23.5612 C 342.86439,-17.97847 339.96157,-12.571342 335.90338,-0.81008579 C 331.32529,12.457897 327.55379,52.048758 328.67532,66.360685 C 330.12125,84.812253 336.61767,127.04706 336.61767,127.04706" />
+ </g>
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.09999943;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path3526"
+ d="M 103.68078,136.49847 C 110.02303,151.71127 108.24428,166.53281 99.707472,169.60624 C 91.170655,172.67968 79.10733,162.84157 72.760877,147.63028 C 66.414424,132.41898 68.187249,117.59261 76.720945,114.5117 C 85.254636,111.4308 97.31884,121.26162 103.66949,136.4714" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.09999919;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
+ id="path3528"
+ d="M 146.12275,120.53686 C 151.47695,133.67543 148.94799,145.97838 140.47366,148.01872 C 131.99932,150.05906 120.7875,141.06443 115.42913,127.92686 C 110.07076,114.78929 112.59421,102.48192 121.06592,100.43512 C 129.53761,98.388329 140.75068,107.37692 146.11321,120.51348" />
+ <path
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:10.37311172;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
+ id="path2395"
+ d="M 93.704464,152.10015 C 94.866318,154.99758 94.540464,157.82049 92.976583,158.40586 C 91.412702,158.99122 89.20279,157.11746 88.040167,154.22031 C 86.877544,151.32317 87.202312,148.49934 88.765622,147.91255 C 90.328931,147.32576 92.539004,149.19814 93.702395,152.095" />
+ <path
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:10.09263515;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
+ id="path2397"
+ d="M 140.14053,132.92879 C 141.26117,135.7552 140.73186,138.40185 138.95818,138.84077 C 137.1845,139.2797 134.83786,137.34474 133.71636,134.51855 C 132.59485,131.69235 133.12301,129.04475 134.89614,128.60444 C 136.66926,128.16412 139.01616,130.09778 140.13854,132.92376" />
+ <g
+ style="display:inline"
+ id="g3172"
+ transform="matrix(0.4787467,0,0,0.4467286,-52.150628,45.183585)">
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.56821108;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3174"
+ d="M 379.41174,-5.4109244 C 378.7413,-14.185926 377.65466,-19.42363 375.09161,-23.016083 C 373.62479,-25.072033 368.7658,-28.36083 365.30777,-28.345631 C 360.57284,-28.32133 356.12955,-28.431098 351.11745,-23.5612 C 347.13448,-19.691227 341.45135,-5.1207254 339.87614,3.9795963 C 337.46861,17.888351 333.02203,51.747775 332.39978,66.094592 C 331.61103,84.280066 332.39662,125.98269 332.39662,125.98269" />
+ </g>
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3180"
+ d="M 60.510344,125.97517 C 59.395128,135.9642 58.857304,138.35034 57.048469,147.57167 C 55.419484,155.87613 54.903041,160.11008 52.712993,167.41282 C 51.546132,171.30373 50.305567,176.54625 47.853286,177.98713 C 43.822347,180.35558 41.503167,178.92286 39.961857,177.0994 C 38.413196,175.26724 36.680419,172.96954 36.907501,167.02966 C 37.094792,162.13055 37.65563,156.48219 38.087523,151.46823 C 38.411623,147.70544 39.354207,139.5369 40.084604,134.24697 C 40.747932,129.44288 42.363,124.79778 45.439612,115.932 C 46.978377,111.49778 49.275392,108.9869 50.841593,108.08562 C 52.909513,106.89562 55.57203,107.81404 57.542512,109.8524 C 60.595294,113.01035 61.055247,121.09444 60.510344,125.97517 z" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3182"
+ d="M 153.58198,93.733514 C 159.3576,103.64736 160.58362,106.17446 165.47426,115.78267 C 169.87862,124.43558 172.30192,128.66327 175.74624,136.71598 C 177.58137,141.00648 180.24169,146.5932 179.77787,149.36492 C 179.01546,153.92094 176.78389,153.9506 174.74196,153.16253 C 172.69032,152.37071 170.23585,151.2551 166.55462,145.61526 C 163.51842,140.96362 160.21306,135.39862 157.24164,130.4973 C 155.01166,126.81903 150.30598,118.69406 147.3265,113.36209 C 144.62068,108.51981 142.5555,103.26767 138.61046,93.24677 C 136.63734,88.234808 136.32701,84.562006 136.63539,82.809374 C 137.04259,80.495307 139.13863,79.787809 141.56129,80.523809 C 145.31462,81.664065 150.75997,88.889522 153.58198,93.733514 z" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3191"
+ d="M 77.994963,414.0855 C 76.698074,421.5524 74.407488,425.16649 71.564834,429.20916 C 67.831268,434.51883 65.638884,436.23836 62.634338,439.61995 C 60.528824,441.98968 55.595839,446.45476 53.550399,447.3555 C 50.188203,448.83612 49.02322,446.82039 48.376386,445.4862 C 47.72648,444.14565 47.057283,442.47323 48.605752,438.34662 C 49.882898,434.9431 51.135087,430.68805 52.609516,427.21475 C 53.715999,424.60819 56.51478,418.84451 58.261711,415.19155 C 59.848237,411.8741 61.830205,410.08877 66.048403,404.04399 C 68.158152,401.02069 71.151826,400.51973 72.453746,399.95766 C 74.172723,399.21553 75.812384,400.31181 76.707873,401.81359 C 78.09517,404.14024 78.941239,408.63729 77.994963,414.0855 z" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999905;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3201"
+ d="M 156.00709,411.53924 C 154.80724,418.33053 152.95036,421.57934 150.65808,425.20696 C 147.64737,429.9715 145.91777,431.49184 143.51935,434.51183 C 141.83861,436.62815 137.93058,440.59353 136.33619,441.36929 C 133.7154,442.64446 132.8766,440.77625 132.41676,439.54255 C 131.95474,438.30297 131.48701,436.75978 132.78842,433.0257 C 133.86178,429.94592 134.93933,426.08767 136.16601,422.9487 C 137.08657,420.59302 139.39234,415.39223 140.83307,412.0954 C 142.14151,409.10137 143.71143,407.51607 147.1142,402.09115 C 148.81611,399.37787 151.12724,398.98915 152.14177,398.50565 C 153.48129,397.86727 154.70955,398.90649 155.35562,400.299 C 156.35651,402.45638 156.88258,406.58398 156.00709,411.53924 z" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999905;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3203"
+ d="M 137.66702,360.4818 C 136.53034,364.66603 134.19443,374.01995 134.37133,377.92485 C 134.66931,384.61742 136.18453,389.47712 138.10264,392.73883 C 139.75082,395.54154 143.47564,401.79901 145.07014,403.48672 C 147.69111,406.26095 149.9163,404.40023 150.96891,403.2746 C 152.02652,402.14361 153.21446,400.6797 153.1741,395.87158 C 153.1408,391.90596 154.10993,387.88289 153.91705,383.77202 C 153.77232,380.68698 153.47069,373.50342 153.08559,369.10656 C 152.73582,365.1135 152.5361,361.39157 150.66607,353.6196 C 149.73076,349.73245 148.38671,347.52435 146.56206,347.26758 C 144.63734,346.99673 143.55323,347.98703 142.44319,349.76714 C 140.96603,352.136 138.68222,356.74472 137.66702,360.4818 z" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3197"
+ d="M 133.98071,442.17288 C 133.44486,444.53626 134.93114,449.66725 136.61713,452.36537 C 138.09996,454.73836 140.01462,457.16787 141.71301,458.9099 C 144.56854,461.83881 146.96303,463.24935 150.22982,464.27883" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3199"
+ d="M 141.36686,435.7253 C 140.831,438.08868 142.31729,443.21967 144.00327,445.91779 C 145.4861,448.29078 147.40076,450.72029 149.09915,452.46231 C 151.95468,455.39123 153.19782,455.99582 156.34948,458.86746" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3193"
+ d="M 53.873623,447.00854 C 53.231954,448.87956 56.460115,452.35632 58.479031,454.49233 C 60.254673,456.37095 62.547424,458.29431 64.581197,459.67341 C 68.000618,461.99213 70.178599,464.29375 73.676873,465.1999" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3195"
+ d="M 47.644384,442.97882 C 46.542174,444.84983 45.871815,448.07518 46.953571,450.80801 C 47.744607,452.80639 49.565445,456.57525 51.558978,459.32801 C 54.222684,463.00616 57.041246,468.78403 61.230333,470.84152" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3209"
+ d="M 110.68142,371.13367 C 113.20459,372.21205 115.06514,372.42456 117.82964,372.522 C 119.70074,372.58795 121.06067,372.79654 122.94238,372.55069 C 124.26438,372.37796 125.58778,372.28993 126.79415,371.81521 C 127.21275,371.65049 126.88417,371.55558 126.96282,371.32872" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3211"
+ d="M 112.06097,357.60916 C 115.08286,358.70901 117.33007,358.93705 120.67615,359.05745 C 122.94092,359.13895 124.58173,359.35891 126.86945,359.12853 C 128.4767,358.96668 130.08289,358.88957 131.55986,358.42462 C 132.07235,358.26329 131.67734,358.16561 131.77999,357.93928" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3213"
+ d="M 105.59741,335.14587 C 111.1804,337.4547 115.25565,337.74588 121.29525,337.6497 C 125.38311,337.58461 126.92261,337.57828 131.07926,337.23911 C 134.21456,336.98328 136.19066,336.81514 138.83412,335.97869 C 139.79463,335.67477 140.49051,335.07898 141.90645,334.39691" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3215"
+ d="M 96.008147,309.13253 C 104.35449,314.50916 110.35998,315.36719 119.22734,315.47801 C 125.22916,315.55306 127.49059,315.62131 133.57639,315.09715 C 138.16682,314.70178 141.05963,314.43742 144.89129,312.73865 C 146.28354,312.12141 147.26882,310.84802 149.30662,309.42331" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3217"
+ d="M 89.814105,282.32179 C 100.13901,288.28018 107.49257,289.13314 118.32139,289.07382 C 125.65082,289.03371 128.41347,289.06419 135.83039,288.3388 C 141.42487,287.79163 144.95003,287.42948 149.58541,285.41142 C 151.26968,284.67814 152.44063,283.20493 154.89279,281.53705" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3219"
+ d="M 88.787064,259.88019 C 99.111973,265.83859 106.46552,266.69155 117.29435,266.63222 C 124.62377,266.59212 127.38644,266.62259 134.80335,265.8972 C 140.39783,265.35004 143.92298,264.98789 148.55836,262.96981 C 150.24264,262.23654 151.41359,260.76334 153.86574,259.09545" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3221"
+ d="M 93.466017,240.32648 C 102.34881,245.25604 108.6915,245.93357 118.03805,245.8321 C 124.36421,245.76347 126.74848,245.7757 133.15343,245.13399 C 137.9846,244.64996 141.02886,244.33044 145.03929,242.62185 C 146.49648,242.00103 147.51417,240.76436 149.6386,239.35887" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3223"
+ d="M 101.56374,222.12419 C 108.07139,225.20136 112.95617,225.58849 120.24643,225.45853 C 125.18079,225.37061 127.03732,225.36173 132.08107,224.90829 C 135.88549,224.56628 138.28399,224.34151 141.55153,223.22541 C 142.73879,222.81987 143.63522,222.0252 145.40803,221.11531" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.79999948;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3225"
+ d="M 100.15796,194.86249 C 93.285911,199.44576 87.539831,212.22296 83.640073,221.68186 C 79.328107,232.14056 76.121701,246.16188 75.214123,253.76521 C 73.997121,263.96076 76.495029,277.88493 76.944276,283.53934 C 77.754111,293.73235 82.307425,304.27026 85.252457,314.46276 C 87.969676,323.86685 90.518312,334.79239 92.243141,340.69668 C 94.870171,349.68932 102.87957,373.27553 108.4477,383.22365" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999881;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3189"
+ d="M 101.1083,360.23077 C 101.00076,370.60266 98.169849,375.97317 95.740262,381.48624 C 92.555648,388.71257 86.608743,393.8733 82.96632,397.58701 C 80.283532,400.32231 76.460679,404.52995 74.157503,405.64838 C 70.371657,407.4868 68.93024,406.12762 68.201908,404.47099 C 67.470108,402.80647 66.716591,400.72988 68.460177,395.60602 C 69.898249,391.37995 71.82679,386.52546 73.487005,382.21279 C 74.7329,378.9763 77.625054,371.96268 79.592116,367.42691 C 81.378545,363.30773 83.869529,359.37543 88.619246,351.86982 C 90.994835,348.11589 93.458223,346.06426 94.92419,345.36635 C 96.859778,344.44487 98.706041,345.37721 99.71436,347.24193 C 101.27647,350.13086 101.15525,355.70262 101.1083,360.23077 z" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3515"
+ d="M 58.735043,179.37652 C 65.372682,185.76866 66.657024,187.65747 72.347249,194.1794 C 77.261766,200.25808 80.154907,202.90041 84.041318,208.85957 C 86.112007,212.03462 89.135075,216.00237 88.482064,219.06796 C 87.408683,224.10701 84.714243,225.50934 82.276212,225.97476 C 79.826561,226.44241 76.901619,226.833 72.648138,223.43991 C 69.139936,220.64134 65.337606,217.09213 61.915976,214.00326 C 59.348172,211.68518 53.941758,206.42938 50.524909,202.91347 C 47.421868,199.72047 45.105862,195.7223 40.68128,188.09681 C 38.468325,184.28292 37.323016,180.61472 37.754168,178.66698 C 38.323435,176.09529 41.771306,174.2713 44.670625,173.51947 C 49.162418,172.3547 55.491838,176.25327 58.735043,179.37652 z" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3176"
+ d="M 133.17345,179.08057 L 136.04779,183.67701" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path3178"
+ d="M 142.65285,172.68087 L 146.26721,178.56471" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:#000000;stroke-width:2.79999971;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3230"
+ d="M 164.23423,210.8498 C 159.64505,216.99026 152.1261,219.41188 147.4387,216.25911 C 142.7513,213.10633 142.66982,205.57264 147.2567,199.43062 C 151.84358,193.28861 159.36248,190.8633 164.05213,194.01305 C 168.74179,197.1628 168.82696,204.69531 164.24239,210.83887" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path2418"
+ d="M 82.050564,112.91023 C 75.991907,112.52808 74.518594,112.19884 68.86171,111.98533 C 63.767275,111.79305 61.194131,111.89626 56.655819,111.24178 C 54.237813,110.89307 51.005395,110.63571 49.954265,109.21217 C 48.226476,106.87223 48.904997,105.23933 49.877264,104.06479 C 50.854172,102.88464 52.313493,102.38862 55.667004,101.07526 C 57.231157,100.46267 62.496179,99.206669 65.529522,98.969312 C 67.805928,98.791164 72.773781,98.249179 75.987602,98.483181 C 78.222387,98.6459 83.198642,99.895273 85.516717,100.84242 C 88.129274,101.90988 90.84215,103.45968 90.512705,104.5354 C 90.015958,106.15742 77.897348,104.26026 75.065236,105.58931 C 78.680692,108.06971 90.059249,107.90973 90.202252,110.27659 C 90.37213,113.08825 85.12802,113.10435 82.050564,112.91023 z" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999928;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path2420"
+ d="M 113.1358,94.941371 C 119.0114,93.4147 120.39528,92.811445 125.90848,91.526708 C 130.87352,90.3697 133.41938,89.98199 137.75058,88.476903 C 140.05824,87.674984 143.18283,86.807976 143.94425,85.210614 C 145.19582,82.584945 144.21933,81.110767 143.04155,80.142416 C 141.85816,79.169445 140.33116,78.959817 136.78916,78.30775 C 135.1371,78.003608 129.72932,77.771148 126.70616,78.114623 C 124.43739,78.37237 119.45707,78.784433 116.34631,79.624976 C 114.18318,80.209468 109.53508,82.381836 107.43926,83.752281 C 105.0772,85.296823 102.70832,87.333968 103.23621,88.327477 C 104.03218,89.825512 115.56934,85.659717 118.60242,86.426283 C 115.52428,89.548609 104.32271,91.554113 104.63215,93.905013 C 104.99974,96.697707 110.15133,95.71684 113.1358,94.941371 z" />
+</svg>