<html><body bgcolor="#FFFFFF"><div>Hi<span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.289062); -webkit-composition-fill-color: rgba(175, 192, 227, 0.222656); -webkit-composition-frame-color: rgba(77, 128, 180, 0.222656); ">&nbsp;Akash,<span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); ">&nbsp;&nbsp;&nbsp;</span></span></div><div><br>On 24 Jun 2010, at 21:25, Akash Gangil &lt;<a href="mailto:akashg1611@gmail.com">akashg1611@gmail.com</a>&gt; wrote:<br><br></div><div></div><blockquote type="cite"><div>Hi Gary,<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>
Make your changes, commit, push, and then request a merge?<br>
<br></blockquote><div><br></div><div>I have filed the merge request.Please look into it. Also I made it backward compatible to previous sugar versions as you suggested. It would fall back to older toolbar design in case of previous sugar versions.</div></div></div></blockquote><div><br></div><div>Fantastic, thanks! I'll test your changes on several Sugar releases, and hardware platforms tonight.</div><div><br></div><div>Kind Regards,</div><div>--Gary</div><br><blockquote type="cite"><div><div class="gmail_quote">
<div><span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); ">&nbsp;</span><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Having a quick scan through the below patch I don't see any fallback to the old toolbar setup if someone is running an older version of Sugar. I don't want to loose compatibility 99% of our current user base if at all possible (check the git reps of Moon, Calculator, TurtleArt, and I'm sure many other activities for dual toolbar support).<br>

<br>
Thanks again for taking the time to submit a patch.<br>
<br>
Kind Regards,<br>
<font color="#888888">--Gary<br>
</font><div><div></div><div class="h5"><br>
&gt; Signed-off-by: akashg1611 &lt;<a href="mailto:akashg1611@gmail.com"><a href="mailto:akashg1611@gmail.com">akashg1611@gmail.com</a></a>&gt;<br>
&gt; ---<br>
&gt; activity.py &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| &nbsp; 77 ++++++++++++++++++++++++++-------------------<br>
&gt; icons/toolbar-create.svg | &nbsp; 44 ++++++++++++++++++++++++++<br>
&gt; 2 files changed, 88 insertions(+), 33 deletions(-)<br>
&gt; create mode 100644 icons/toolbar-create.svg<br>
&gt;<br>
&gt; diff --git a/activity.py b/activity.py<br>
&gt; index 273a001..ca18aad 100644<br>
&gt; --- a/activity.py<br>
&gt; +++ b/activity.py<br>
&gt; @@ -21,6 +21,10 @@ import olpcgames<br>
&gt; import pygame<br>
&gt; from sugar.graphics.radiotoolbutton import RadioToolButton<br>
&gt; from sugar.graphics.toolbutton import ToolButton<br>
&gt; +from sugar.graphics.toolbarbox import ToolbarBox<br>
&gt; +from sugar.graphics.toolbarbox import ToolbarButton<br>
&gt; +from sugar.activity.widgets import ActivityToolbarButton<br>
&gt; +from sugar.activity.widgets import StopButton<br>
&gt; from sugar.activity import activity<br>
&gt; from gettext import gettext as _<br>
&gt; import gtk<br>
&gt; @@ -34,6 +38,44 @@ class PhysicsActivity(olpcgames.PyGameActivity):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; super(PhysicsActivity, self).__init__(handle)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self.metadata['mime_type'] = 'application/x-physics-activity'<br>
&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;toolbar_box = ToolbarBox()<br>
&gt; +<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;activity_button = ActivityToolbarButton(self)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;toolbar_box.toolbar.insert(activity_button, 0)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;activity_button.page.keep.props.accelerator = '&lt;Ctrl&gt;&lt;Shift&gt;S'<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;activity_button.show()<br>
&gt; +<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;create_toolbar = self._create_create_toolbar()<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;create_toolbar_button = ToolbarButton(<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;page=create_toolbar,<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;icon_name='toolbar-create')<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;create_toolbar.show()<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;toolbar_box.toolbar.insert(create_toolbar_button, -1)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;create_toolbar_button.show()<br>
&gt; +<br>
&gt; + &nbsp; &nbsp; stop_play = ToolButton('media-playback-stop')<br>
&gt; + &nbsp; &nbsp; stop_play_state = True<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;stop_play.set_tooltip(_("Stop"))<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;stop_play.set_accelerator(_('&lt;ctrl&gt;space'))<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;stop_play.connect('clicked', self.stop_play_cb)<br>
&gt; + &nbsp; &nbsp; toolbar_box.toolbar.insert(stop_play, -1)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;stop_play.show()<br>
&gt; +<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;separator = gtk.SeparatorToolItem()<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;separator.props.draw = False<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;separator.set_expand(True)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;toolbar_box.toolbar.insert(separator, -1)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;separator.show()<br>
&gt; +<br>
&gt; + &nbsp; &nbsp; stop_button = StopButton(self)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;stop_button.props.accelerator = '&lt;Ctrl&gt;&lt;Shift&gt;Q'<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;toolbar_box.toolbar.insert(stop_button, -1)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;stop_button.show()<br>
&gt; +<br>
&gt; + &nbsp; &nbsp; self.set_toolbar_box(toolbar_box)<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;toolbar_box.show()<br>
&gt; +<br>
&gt; +<br>
&gt; &nbsp; &nbsp; def write_file(self, file_path):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; """Over-ride olpcgames write_file so that title keeps working.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; """<br>
&gt; @@ -46,31 +88,8 @@ class PhysicsActivity(olpcgames.PyGameActivity):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; event.block()<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; event.retire() # &lt;- without this, title editing stops updating<br>
&gt;<br>
&gt; - &nbsp; &nbsp;# setup the toolbar<br>
&gt; - &nbsp; &nbsp;def build_toolbar(self):<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;# make a toolbox<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;toolbox = activity.ActivityToolbox(self)<br>
&gt; -<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;# modify the Activity tab<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;activity_toolbar = toolbox.get_activity_toolbar()<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;activity_toolbar.share.props.visible = False<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;self.blocklist = []<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;# make a 'create' toolbar<br>
&gt; + &nbsp; &nbsp;def _create_create_toolbar(self):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; create_toolbar = gtk.Toolbar()<br>
&gt; -<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;# stop/play button<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;self.stop_play_state = True<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;self.stop_play = ToolButton('media-playback-stop')<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;self.stop_play.set_tooltip(_("Stop"))<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;self.stop_play.set_accelerator(_('&lt;ctrl&gt;space'))<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;self.stop_play.connect('clicked', self.stop_play_cb)<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;create_toolbar.insert(self.stop_play, 0)<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;self.stop_play.show()<br>
&gt; -<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;separator = gtk.SeparatorToolItem()<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;create_toolbar.insert(separator, 1)<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;separator.show()<br>
&gt; -<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; # make + add the component buttons<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self.radioList = {}<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; firstButton = None<br>
&gt; @@ -87,15 +106,7 @@ class PhysicsActivity(olpcgames.PyGameActivity):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; create_toolbar.insert(button,-1)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; button.show()<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.radioList[button] = <a href="http://c.name" target="_blank"><a href="http://c.name">c.name</a></a><br>
&gt; -<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;# add the toolbars to the toolbox<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;toolbox.add_toolbar(_("Create"),create_toolbar)<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;create_toolbar.show()<br>
&gt; -<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;toolbox.show()<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;self.set_toolbox(toolbox)<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;toolbox.set_current_toolbar(1)<br>
&gt; - &nbsp; &nbsp; &nbsp; &nbsp;return activity_toolbar<br>
&gt; + &nbsp; &nbsp; return create_toolbar<br>
&gt;<br>
&gt; &nbsp; &nbsp; def stop_play_cb(self, button):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; pygame.event.post(olpcgames.eventwrap.Event(pygame.USEREVENT, action="stop_start_toggle"))<br>
&gt; diff --git a/icons/toolbar-create.svg b/icons/toolbar-create.svg<br>
&gt; new file mode 100644<br>
&gt; index 0000000..ea7c0ce<br>
&gt; --- /dev/null<br>
&gt; +++ b/icons/toolbar-create.svg<br>
&gt; @@ -0,0 +1,44 @@<br>
&gt; +&lt;?xml version="1.0" ?&gt;&lt;!-- Created with Inkscape (<a href="http://www.inkscape.org/" target="_blank"><a href="http://www.inkscape.org/">http://www.inkscape.org/</a></a>) --&gt;&lt;!DOCTYPE svg &nbsp;PUBLIC '-//W3C//DTD SVG 1.1//EN' &nbsp;'<a href="http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" target="_blank"><a href="http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd</a></a>' [<br>

&gt; + &nbsp; &nbsp; &lt;!ENTITY stroke_color "none"&gt;<br>
&gt; + &nbsp; &nbsp; &lt;!ENTITY fill_color "#ffffff"&gt;<br>
&gt; +]&gt;&lt;svg height="48pt" id="svg1" inkscape:version="0.47 r22583" sodipodi:docname="toolbar-create.svg" sodipodi:version="0.32" style="" version="1.0" width="48pt" x="0" xmlns="<a href="http://www.w3.org/2000/svg" target="_blank"><a href="http://www.w3.org/2000/svg">http://www.w3.org/2000/svg</a></a>" xmlns:cc="<a href="http://creativecommons.org/ns#" target="_blank"><a href="http://creativecommons.org/ns#">http://creativecommons.org/ns#</a></a>" xmlns:dc="<a href="http://purl.org/dc/elements/1.1/" target="_blank"><a href="http://purl.org/dc/elements/1.1/">http://purl.org/dc/elements/1.1/</a></a>" xmlns:inkscape="<a href="http://www.inkscape.org/namespaces/inkscape" target="_blank"><a href="http://www.inkscape.org/namespaces/inkscape">http://www.inkscape.org/namespaces/inkscape</a></a>" xmlns:rdf="<a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#" target="_blank"><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#">http://www.w3.org/1999/02/22-rdf-syntax-ns#</a></a>" xmlns:sodipodi="<a href="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" target="_blank"><a href="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd">http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd</a></a>" xmlns:svg="<a href="http://www.w3.org/2000/svg" target="_blank"><a href="http://www.w3.org/2000/svg">http://www.w3.org/2000/svg</a></a>" xmlns:xlink="<a href="http://www.w3.org/1999/xlink" target="_blank"><a href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</a></a>" y="0"&gt;<br>

&gt; + &nbsp;&lt;metadata id="metadata2985" style=""&gt;<br>
&gt; + &nbsp; &nbsp;&lt;rdf:RDF style=""&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp;&lt;cc:Work rdf:about="" style=""&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;&lt;dc:format style=""&gt;image/svg+xml&lt;/dc:format&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;&lt;dc:type rdf:resource="<a href="http://purl.org/dc/dcmitype/StillImage" target="_blank"><a href="http://purl.org/dc/dcmitype/StillImage">http://purl.org/dc/dcmitype/StillImage</a></a>" style=""/&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp; &nbsp;&lt;dc:title style=""/&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp;&lt;/cc:Work&gt;<br>
&gt; + &nbsp; &nbsp;&lt;/rdf:RDF&gt;<br>
&gt; + &nbsp;&lt;/metadata&gt;<br>
&gt; + &nbsp;&lt;sodipodi:namedview bordercolor="#666666" borderopacity="1.0" horizgrid="false" id="base" inkscape:current-layer="svg1" inkscape:cx="-10.626905" inkscape:cy="21.859944" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="825" inkscape:window-maximized="1" inkscape:window-width="1440" inkscape:window-x="0" inkscape:window-y="24" inkscape:zoom="4.9119411" pagecolor="#ffffff" showgrid="false" snaptogrid="false" snaptoguides="false" style="" vertgrid="false"/&gt;<br>

&gt; + &nbsp;&lt;defs id="defs3" style=""&gt;<br>
&gt; + &nbsp; &nbsp;&lt;inkscape:perspective id="perspective2987" inkscape:persp3d-origin="30 : 20 : 1" inkscape:vp_x="0 : 30 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="60 : 30 : 1" sodipodi:type="inkscape:persp3d" style=""/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient570" style=""&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp;&lt;stop id="stop571" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp;&lt;stop id="stop572" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/&gt;<br>
&gt; + &nbsp; &nbsp;&lt;/linearGradient&gt;<br>
&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient563" style=""&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp;&lt;stop id="stop564" offset="0.00000000" style="stop-color:#666666;stop-opacity:1;"/&gt;<br>
&gt; + &nbsp; &nbsp; &nbsp;&lt;stop id="stop565" offset="1.00000000" style="stop-color:#666666;stop-opacity:1;"/&gt;<br>
&gt; + &nbsp; &nbsp;&lt;/linearGradient&gt;<br>
&gt; + &nbsp; &nbsp;&lt;linearGradient gradientTransform="matrix(1.04498,0,0,0.9569561,-74.308708,-2.6466114)" gradientUnits="userSpaceOnUse" id="linearGradient566" style="" x1="23.402853" x2="35.835532" xlink:href="#linearGradient563" y1="23.747154" y2="36.390283"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient569" style="" x1="0.009905" x2="0.985224" xlink:href="#linearGradient570" y1="0.007809" y2="1.015625"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient gradientTransform="scale(0.999995,1.000005)" id="linearGradient573" style="" x1="0.015742" x2="0.976382" xlink:href="#linearGradient570" y1="0.015626" y2="0.999995"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient575" style="" x1="0.006623" x2="0.973510" xlink:href="#linearGradient570" y1="0.007813" y2="0.984375"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient gradientTransform="scale(1.2487241,0.80081741)" gradientUnits="userSpaceOnUse" id="linearGradient578" style="" x1="4.5679298" x2="11.042724" xlink:href="#linearGradient570" y1="46.001992" y2="52.375657"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient583" style="" x1="0.012999" x2="1.012987" xlink:href="#linearGradient570" y1="0.015680" y2="1.000001"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient637" style="" x1="0.07954545" x2="0.95454544" xlink:href="#linearGradient563" y1="0.06250000" y2="0.97656250"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient640" style="" x1="0.03225806" x2="0.99596775" xlink:href="#linearGradient563" y1="0.05468750" y2="1.00000000"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient645" style="" x1="0.010877" x2="0.989090" xlink:href="#linearGradient570" y1="0.038449" y2="0.987177"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient646" style="" x1="0.056578" x2="0.867923" xlink:href="#linearGradient570" y1="0.023450" y2="0.976563"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient647" style="" x1="0.000007" x2="0.951807" xlink:href="#linearGradient570" y1="0.000000" y2="0.984375"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient675" style="" x1="0.056605" x2="0.943396" xlink:href="#linearGradient570" y1="0.015625" y2="0.984375"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient676" style="" x1="0.011765" x2="1.011765" xlink:href="#linearGradient570" y1="-0.000000" y2="1.015625"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient684" style="" x1="0.09210526" x2="0.93421054" xlink:href="#linearGradient563" y1="0.12500000" y2="0.92187500"/&gt;<br>

&gt; + &nbsp; &nbsp;&lt;linearGradient id="linearGradient685" style="" x1="0.06603774" x2="0.94339621" xlink:href="#linearGradient563" y1="0.07812500" y2="0.95312500"/&gt;<br>

&gt; + &nbsp;&lt;/defs&gt;<br>
&gt; + &nbsp;&lt;path d="m 1.6714541,46.028933 c 2.5395548,1.861985 4.9782017,-5.378683 9.5887409,1.564511 5.202194,7.839595 -2.2748278,8.004289 -1.5908585,11.218364 0.5434475,2.15168 7.8018915,0.78452 9.4836775,-1.356607 1.708234,-2.174518 -1.328528,-8.961765 0.686245,-11.589945 6.679753,-8.71269 16.362463,-17.130631 25.397539,-22.432085 2.941573,-1.725842 8.191049,3.04221 10.532509,1.349931 2.272038,-1.642373 4.894662,-10.122847 3.307654,-11.353779 C 56.639324,11.47279 52.997644,20.80289 48.606866,13.989506 44.186925,7.129412<br>

&gt; + &nbsp; &nbsp; &nbsp; 52.142642,4.5631634 51.662085,1.862198 51.217131,-0.33348689 43.318205,0.8930759 41.301114,3.1327101 39.311696,5.3415778 39.98847,13.033259 37.810293,15.81846 31.052456,24.45924 23.378731,32.160168 14.492957,37.410639 11.915703,38.933488 7.3485542,34.119614 5.2533614,35.52793 3.0747599,36.992339 0.03942982,44.719057 1.6714541,46.028933 z" id="path636" sodipodi:nodetypes="cccsssscscssssc" style="font-size:12px;opacity:1.0;fill:&amp;fill_color;;fill-rule:evenodd;stroke-width:12.5"/&gt;<br>

&gt; + &nbsp;&lt;path d="m 36.034635,17.45063 -4.701433,-2.805627 -4.976523,2.282375 1.215487,-5.338314 -3.708498,-4.0276614 5.452645,-0.4936332 2.684545,-4.7716069 2.154433,5.0332324 5.367638,1.0786459 -4.121133,3.6043422 0.632839,5.438247 z" id="path3942" inkscape:flatsided="false" inkscape:randomized="0" inkscape:rounded="0" sodipodi:arg1="0.9964915" sodipodi:arg2="1.62481" sodipodi:cx="31.555754" sodipodi:cy="10.528723" sodipodi:r1="8.2445841" sodipodi:r2="4.122292" sodipodi:sides="5" sodipodi:type="star" style="opacity:1.0;fill:&amp;fill_color;;fill-opacity:1.0" transform="matrix(1.7410551,0,0,1.8060416,-29.492251,-3.6830718)"/&gt;<br>

&gt; +&lt;/svg&gt;<br>
&gt; --<br>
&gt; 1.7.0.4<br>
&gt;<br>
<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Best Regards<br>Akash Gangil<br><br>
</div></blockquote></body></html>