ember 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- Mon, 04 May 2009 01:21:22 -0700
1
+ Sat, 03 Oct 2009 14:13:32 -0700
Binary file
@@ -19,7 +19,7 @@
19
19
  </h1>
20
20
  <ul class="files">
21
21
  <li>LICENSE</li>
22
- <li>Last modified: Wed Feb 18 23:50:35 -0800 2009</li>
22
+ <li>Last modified: 2009-09-06 00:39:47 -0700</li>
23
23
  </ul>
24
24
  </div>
25
25
 
@@ -19,7 +19,7 @@
19
19
  </h1>
20
20
  <ul class="files">
21
21
  <li>lib/ember/template.rb</li>
22
- <li>Last modified: Sun May 03 19:57:28 -0700 2009</li>
22
+ <li>Last modified: 2009-10-03 13:51:10 -0700</li>
23
23
  </ul>
24
24
  </div>
25
25
 
@@ -19,7 +19,7 @@
19
19
  </h1>
20
20
  <ul class="files">
21
21
  <li>lib/ember.rb</li>
22
- <li>Last modified: Sat May 02 23:26:48 -0700 2009</li>
22
+ <li>Last modified: 2009-10-03 14:09:47 -0700</li>
23
23
  </ul>
24
24
  </div>
25
25
 
@@ -28,6 +28,14 @@ Searchdoc.Navigation = new function() {
28
28
  case 38: //Event.KEY_UP:
29
29
  case 39: //Event.KEY_RIGHT:
30
30
  case 40: //Event.KEY_DOWN:
31
+ case 73: // i - qwerty
32
+ case 74: // j
33
+ case 75: // k
34
+ case 76: // l
35
+ case 67: // c - dvorak
36
+ case 72: // h
37
+ case 84: // t
38
+ case 78: // n
31
39
  this.clearMoveTimeout();
32
40
  break;
33
41
  }
@@ -37,28 +45,37 @@ Searchdoc.Navigation = new function() {
37
45
  if (!this.navigationActive) return;
38
46
  switch(e.keyCode) {
39
47
  case 37: //Event.KEY_LEFT:
40
- if (this.moveLeft())
41
- e.preventDefault();
48
+ case 74: // j (qwerty)
49
+ case 72: // h (dvorak)
50
+ if (this.moveLeft()) e.preventDefault();
42
51
  break;
43
52
  case 38: //Event.KEY_UP:
44
- if (this.moveUp())
45
- e.preventDefault();
46
- this.startMoveTimeout(false);
53
+ case 73: // i (qwerty)
54
+ case 67: // c (dvorak)
55
+ if (e.keyCode == 38 || e.ctrlKey) {
56
+ if (this.moveUp()) e.preventDefault();
57
+ this.startMoveTimeout(false);
58
+ }
47
59
  break;
48
60
  case 39: //Event.KEY_RIGHT:
49
- if (this.moveRight())
50
- e.preventDefault();
61
+ case 76: // l (qwerty)
62
+ case 78: // n (dvorak)
63
+ if (this.moveRight()) e.preventDefault();
51
64
  break;
52
65
  case 40: //Event.KEY_DOWN:
53
- if (this.moveDown())
54
- e.preventDefault();
55
- this.startMoveTimeout(true);
66
+ case 75: // k (qwerty)
67
+ case 84: // t (dvorak)
68
+ if (e.keyCode == 40 || e.ctrlKey) {
69
+ if (this.moveDown()) e.preventDefault();
70
+ this.startMoveTimeout(true);
71
+ }
56
72
  break;
57
73
  case 9: //Event.KEY_TAB:
58
74
  case 13: //Event.KEY_RETURN:
59
75
  if (this.$current) this.select(this.$current);
60
76
  break;
61
77
  }
78
+ if (e.ctrlKey && e.shiftKey) this.select(this.$current);
62
79
  }
63
80
 
64
81
  this.clearMoveTimeout = function() {
@@ -342,8 +359,9 @@ Searchdoc.Panel.prototype = $.extend({}, Searchdoc.Navigation, new function() {
342
359
  this.setNavigationActive(false);
343
360
  }
344
361
 
345
- this.search = function(value) {
362
+ this.search = function(value, selectFirstMatch) {
346
363
  value = jQuery.trim(value).toLowerCase();
364
+ this.selectFirstMatch = selectFirstMatch;
347
365
  if (value) {
348
366
  this.$element.removeClass('panel_tree').addClass('panel_results');
349
367
  this.tree.setNavigationActive(false);
@@ -373,6 +391,7 @@ Searchdoc.Panel.prototype = $.extend({}, Searchdoc.Navigation, new function() {
373
391
  this.firstRun = false;
374
392
  this.$current = $(target.firstChild);
375
393
  this.$current.addClass('current');
394
+ if (this.selectFirstMatch) this.select();
376
395
  scrollIntoView(this.$current[0], this.$view[0])
377
396
  }
378
397
  if (jQuery.browser.msie) this.$element[0].className += '';
@@ -462,10 +481,14 @@ Searchdoc.Tree.prototype = $.extend({}, Searchdoc.Navigation, new function() {
462
481
  }
463
482
 
464
483
  this.select = function($li) {
484
+ this.highlight($li);
465
485
  var path = $li[0].searchdoc_tree_data.path;
486
+ if (path) this.panel.open(path);
487
+ }
488
+
489
+ this.highlight = function($li) {
466
490
  if (this.$current) this.$current.removeClass('current');
467
491
  this.$current = $li.addClass('current');
468
- if (path) this.panel.open(path);
469
492
  }
470
493
 
471
494
  this.toggle = function($li) {
@@ -479,7 +502,7 @@ Searchdoc.Tree.prototype = $.extend({}, Searchdoc.Navigation, new function() {
479
502
 
480
503
  this.moveRight = function() {
481
504
  if (!this.$current) {
482
- this.select(this.$list.find('li:first'));
505
+ this.highlight(this.$list.find('li:first'));
483
506
  return;
484
507
  }
485
508
  if (this.$current.hasClass('closed')) {
@@ -489,7 +512,7 @@ Searchdoc.Tree.prototype = $.extend({}, Searchdoc.Navigation, new function() {
489
512
 
490
513
  this.moveLeft = function() {
491
514
  if (!this.$current) {
492
- this.select(this.$list.find('li:first'));
515
+ this.highlight(this.$list.find('li:first'));
493
516
  return;
494
517
  }
495
518
  if (!this.$current.hasClass('closed')) {
@@ -507,7 +530,7 @@ Searchdoc.Tree.prototype = $.extend({}, Searchdoc.Navigation, new function() {
507
530
 
508
531
  this.move = function(isDown) {
509
532
  if (!this.$current) {
510
- this.select(this.$list.find('li:first'));
533
+ this.highlight(this.$list.find('li:first'));
511
534
  return true;
512
535
  }
513
536
  var next = this.$current[0];
@@ -28,13 +28,21 @@
28
28
  });
29
29
 
30
30
  $('#search')[0].value == '' && $('#search-label').show();
31
-
32
- setInterval(function() { $('#search')[0].value != '' && $('#search-label').hide() }, 100)
33
31
  }
34
32
  $(function() {
35
- placeholder();
36
- new Searchdoc.Panel($('#panel'), search_data, tree, top.frames[1]);
37
- $('#search').focus();
33
+ placeholder();
34
+ var panel = new Searchdoc.Panel($('#panel'), search_data, tree, top.frames[1]);
35
+ $('#search').focus();
36
+
37
+ var s = window.parent.location.search.match(/\?q=([^&]+)/);
38
+ if (s) {
39
+ s = decodeURIComponent(s[1]).replace(/\+/g, ' ');
40
+ if (s.length > 0)
41
+ {
42
+ $('#search').val(s);
43
+ panel.search(s, true);
44
+ }
45
+ }
38
46
  })
39
47
  //]]>
40
48
  </script>
@@ -1 +1 @@
1
- var search_data = {"index":{"info":[["Ember","lib\/ember\/template.rb","classes\/Ember.html","","",1],["Template","Ember","classes\/Ember\/Template.html"," < Object","",1],["Program","Ember::Template","classes\/Ember\/Template\/Program.html"," < Object","",1],["code","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000018","(value)","Schedules the given Ruby code to be evaluated when this program is run. ",2],["compile","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000021","()","Transforms this program into executable Ruby source code. ",2],["emit_end","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000020","()","Inserts an <% end %> directive before the oldest non-whitespace statement possible. Preceding lines that",2],["empty?","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000014","()","Returns true if there are no source lines in this program. ",2],["expr","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000019","(value)","Schedules the given Ruby code to be evaluated and inserted into the evaluation buffer when this program",2],["load_file","Ember::Template","classes\/Ember\/Template.html#M000003","(path, options = {})","Builds a template whose body is read from the given source. If the source is a relative path, it will",2],["new","Ember::Template","classes\/Ember\/Template.html#M000000","(input, options = {})","Builds a processor that evaluates eRuby directives in the given input according to the given options.",2],["new","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000013","(result_variable, continue_result)","Transforms this program into Ruby code which uses the given variable name as the evaluation buffer. If",2],["new_line","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000015","()","Begins a new line in the program's source code. ",2],["new_line?","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000016","()","Returns true if a new (blank) line is ready in the program's source code. ",2],["program","Ember::Template","classes\/Ember\/Template.html#M000001","()","Ruby source code assembled from the eRuby template provided as input to the constructor of this class.",2],["read_file","Ember::Template","classes\/Ember\/Template.html#M000004","(path, options = {})","Returns the contents of the given file, which can be relative to the current template in which this command",2],["render","Ember::Template","classes\/Ember\/Template.html#M000002","(context = TOPLEVEL_BINDING)","Returns the result of executing the Ruby program for this template (provided by the #to_s() method) inside",2],["text","Ember::Template::Program","classes\/Ember\/Template\/Program.html#M000017","(value)","Schedules the given text to be inserted verbatim into the evaluation buffer when this program is run.",2],["LICENSE","files\/LICENSE.html","files\/LICENSE.html","","(the ISC license) Copyright 2009 Suraj N. Kurapati <sunaku@gmail.com> Permission to use, copy, modify,",3],["ember.rb","files\/lib\/ember_rb.html","files\/lib\/ember_rb.html",""," ",3],["template.rb","files\/lib\/ember\/template_rb.html","files\/lib\/ember\/template_rb.html",""," ",3]],"searchIndex":["ember","template","program","code()","compile()","emit_end()","empty?()","expr()","load_file()","new()","new()","new_line()","new_line?()","program()","read_file()","render()","text()","license","ember.rb","template.rb"],"longSearchIndex":["template.rb","ember","template","program","program","program","program","program","template","template","program","program","program","template","template","template","program","files\/license.html","files\/lib\/ember_rb.html","files\/lib\/ember\/template_rb.html"]}}
1
+ var search_data = {"index":{"searchIndex":["ember","template","load_file()","new()","program()","read_file()","render()","license","ember.rb","template.rb"],"longSearchIndex":["lib/ember/template.rb","ember","ember::template","ember::template","ember::template","ember::template","ember::template","files/license.html","files/lib/ember_rb.html","files/lib/ember/template_rb.html"],"info":[["Ember","lib/ember/template.rb","classes/Ember.html"," < ","",1],["Template","Ember","classes/Ember/Template.html"," < Object","",1],["load_file","Ember::Template","classes/Ember/Template.html#M000003","(path, options = {})","Builds a template whose body is read from the given source. If the source is a relative path, it will",2],["new","Ember::Template","classes/Ember/Template.html#M000000","(input, options = {})","Builds a processor that evaluates eRuby directives in the given input according to the given options.",2],["program","Ember::Template","classes/Ember/Template.html#M000001","()","Ruby source code assembled from the eRuby template provided as input to the constructor of this class.",2],["read_file","Ember::Template","classes/Ember/Template.html#M000004","(path, options = {})","Returns the contents of the given file, which can be relative to the current template in which this command",2],["render","Ember::Template","classes/Ember/Template.html#M000002","(context = TOPLEVEL_BINDING, parent_context_id = nil)","Returns the result of executing the Ruby program for this template (provided by the #program() method)",2],["LICENSE","files/LICENSE.html","files/LICENSE.html","","(the ISC license) Copyright 2009 Suraj N. Kurapati <sunaku@gmail.com> Permission to use, copy, modify,",3],["ember.rb","files/lib/ember_rb.html","files/lib/ember_rb.html",""," ",3],["template.rb","files/lib/ember/template_rb.html","files/lib/ember/template_rb.html",""," ",3]]}}
@@ -1 +1 @@
1
- var tree = [["Ember","classes\/Ember.html","",[["Template","classes\/Ember\/Template.html"," < Object",[["Program","classes\/Ember\/Template\/Program.html"," < Object",[]]]]]]]
1
+ var tree = [["","","files",[["LICENSE","files/LICENSE.html","",[]],["","","lib",[["","","ember",[["template.rb","files/lib/ember/template_rb.html","",[]]]],["ember.rb","files/lib/ember_rb.html","",[]]]]]],["Ember","classes/Ember.html","",[["Template","classes/Ember/Template.html"," < Object",[]]]]]
Binary file
@@ -0,0 +1,784 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://creativecommons.org/ns#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:xlink="http://www.w3.org/1999/xlink"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="548"
13
+ height="548"
14
+ id="svg3671"
15
+ sodipodi:version="0.32"
16
+ inkscape:version="0.46"
17
+ version="1.0"
18
+ sodipodi:docname="ember.svg"
19
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
20
+ inkscape:export-filename="/home/sun/src/ember/doc/ember.png"
21
+ inkscape:export-xdpi="41.060001"
22
+ inkscape:export-ydpi="41.060001">
23
+ <defs
24
+ id="defs3673">
25
+ <radialGradient
26
+ inkscape:collect="always"
27
+ xlink:href="#linearGradient3164"
28
+ id="radialGradient6289"
29
+ gradientUnits="userSpaceOnUse"
30
+ gradientTransform="matrix(1.6572533,-5.3785292e-3,7.4679245e-3,2.3010459,-247.28661,-488.99506)"
31
+ cx="371.50314"
32
+ cy="417.10852"
33
+ fx="371.50314"
34
+ fy="417.10852"
35
+ r="132.07404" />
36
+ <radialGradient
37
+ inkscape:collect="always"
38
+ xlink:href="#linearGradient3164"
39
+ id="radialGradient6287"
40
+ gradientUnits="userSpaceOnUse"
41
+ gradientTransform="matrix(1,0,0,1.8101266,0,-315.8264)"
42
+ cx="430.32449"
43
+ cy="400.11002"
44
+ fx="430.32449"
45
+ fy="400.11002"
46
+ r="122.28646" />
47
+ <radialGradient
48
+ inkscape:collect="always"
49
+ xlink:href="#linearGradient3164"
50
+ id="radialGradient6285"
51
+ gradientUnits="userSpaceOnUse"
52
+ gradientTransform="matrix(0.9843433,-0.1762622,0.4545473,2.5384376,-209.78594,-661.31225)"
53
+ cx="296.93582"
54
+ cy="472.26077"
55
+ fx="296.93582"
56
+ fy="472.26077"
57
+ r="98.75753" />
58
+ <radialGradient
59
+ inkscape:collect="always"
60
+ xlink:href="#linearGradient3164"
61
+ id="radialGradient6283"
62
+ gradientUnits="userSpaceOnUse"
63
+ gradientTransform="matrix(1.6572533,-5.3785292e-3,7.4679245e-3,2.3010459,-247.28661,-488.99506)"
64
+ cx="371.50314"
65
+ cy="417.10852"
66
+ fx="371.50314"
67
+ fy="417.10852"
68
+ r="132.07404" />
69
+ <radialGradient
70
+ inkscape:collect="always"
71
+ xlink:href="#linearGradient3164"
72
+ id="radialGradient6281"
73
+ gradientUnits="userSpaceOnUse"
74
+ gradientTransform="matrix(1,0,0,1.8101266,0,-315.8264)"
75
+ cx="430.32449"
76
+ cy="400.11002"
77
+ fx="430.32449"
78
+ fy="400.11002"
79
+ r="122.28646" />
80
+ <radialGradient
81
+ inkscape:collect="always"
82
+ xlink:href="#linearGradient3164"
83
+ id="radialGradient6279"
84
+ gradientUnits="userSpaceOnUse"
85
+ gradientTransform="matrix(0.9843433,-0.1762622,0.4545473,2.5384376,-209.78594,-661.31225)"
86
+ cx="296.93582"
87
+ cy="472.26077"
88
+ fx="296.93582"
89
+ fy="472.26077"
90
+ r="98.75753" />
91
+ <radialGradient
92
+ inkscape:collect="always"
93
+ xlink:href="#linearGradient3164"
94
+ id="radialGradient6277"
95
+ gradientUnits="userSpaceOnUse"
96
+ gradientTransform="matrix(1.6572533,-5.3785292e-3,7.4679245e-3,2.3010459,-247.28661,-488.99506)"
97
+ cx="371.50314"
98
+ cy="417.10852"
99
+ fx="371.50314"
100
+ fy="417.10852"
101
+ r="132.07404" />
102
+ <radialGradient
103
+ inkscape:collect="always"
104
+ xlink:href="#linearGradient3164"
105
+ id="radialGradient6275"
106
+ gradientUnits="userSpaceOnUse"
107
+ gradientTransform="matrix(1,0,0,1.8101266,0,-315.8264)"
108
+ cx="430.32449"
109
+ cy="400.11002"
110
+ fx="430.32449"
111
+ fy="400.11002"
112
+ r="122.28646" />
113
+ <radialGradient
114
+ inkscape:collect="always"
115
+ xlink:href="#linearGradient3164"
116
+ id="radialGradient6273"
117
+ gradientUnits="userSpaceOnUse"
118
+ gradientTransform="matrix(0.9843433,-0.1762622,0.4545473,2.5384376,-209.78594,-661.31225)"
119
+ cx="296.93582"
120
+ cy="472.26077"
121
+ fx="296.93582"
122
+ fy="472.26077"
123
+ r="98.75753" />
124
+ <radialGradient
125
+ inkscape:collect="always"
126
+ xlink:href="#linearGradient3164"
127
+ id="radialGradient6271"
128
+ gradientUnits="userSpaceOnUse"
129
+ gradientTransform="matrix(1.6572533,-5.3785292e-3,7.4679245e-3,2.3010459,-247.28661,-488.99506)"
130
+ cx="371.50314"
131
+ cy="417.10852"
132
+ fx="371.50314"
133
+ fy="417.10852"
134
+ r="132.07404" />
135
+ <radialGradient
136
+ inkscape:collect="always"
137
+ xlink:href="#linearGradient3164"
138
+ id="radialGradient6269"
139
+ gradientUnits="userSpaceOnUse"
140
+ gradientTransform="matrix(1,0,0,1.8101266,0,-315.8264)"
141
+ cx="430.32449"
142
+ cy="400.11002"
143
+ fx="430.32449"
144
+ fy="400.11002"
145
+ r="122.28646" />
146
+ <radialGradient
147
+ inkscape:collect="always"
148
+ xlink:href="#linearGradient3164"
149
+ id="radialGradient6267"
150
+ gradientUnits="userSpaceOnUse"
151
+ gradientTransform="matrix(0.9843433,-0.1762622,0.4545473,2.5384376,-209.78594,-661.31225)"
152
+ cx="296.93582"
153
+ cy="472.26077"
154
+ fx="296.93582"
155
+ fy="472.26077"
156
+ r="98.75753" />
157
+ <radialGradient
158
+ inkscape:collect="always"
159
+ xlink:href="#linearGradient3164"
160
+ id="radialGradient6265"
161
+ gradientUnits="userSpaceOnUse"
162
+ gradientTransform="matrix(1.6572533,-5.3785292e-3,7.4679245e-3,2.3010459,-247.28661,-488.99506)"
163
+ cx="371.50314"
164
+ cy="417.10852"
165
+ fx="371.50314"
166
+ fy="417.10852"
167
+ r="132.07404" />
168
+ <radialGradient
169
+ inkscape:collect="always"
170
+ xlink:href="#linearGradient3164"
171
+ id="radialGradient6263"
172
+ gradientUnits="userSpaceOnUse"
173
+ gradientTransform="matrix(1,0,0,1.8101266,0,-315.8264)"
174
+ cx="430.32449"
175
+ cy="400.11002"
176
+ fx="430.32449"
177
+ fy="400.11002"
178
+ r="122.28646" />
179
+ <radialGradient
180
+ inkscape:collect="always"
181
+ xlink:href="#linearGradient3164"
182
+ id="radialGradient6261"
183
+ gradientUnits="userSpaceOnUse"
184
+ gradientTransform="matrix(0.9843433,-0.1762622,0.4545473,2.5384376,-209.78594,-661.31225)"
185
+ cx="296.93582"
186
+ cy="472.26077"
187
+ fx="296.93582"
188
+ fy="472.26077"
189
+ r="98.75753" />
190
+ <radialGradient
191
+ inkscape:collect="always"
192
+ xlink:href="#linearGradient3164"
193
+ id="radialGradient6259"
194
+ gradientUnits="userSpaceOnUse"
195
+ gradientTransform="matrix(1.6572533,-5.3785292e-3,7.4679245e-3,2.3010459,-247.28661,-488.99506)"
196
+ cx="371.50314"
197
+ cy="417.10852"
198
+ fx="371.50314"
199
+ fy="417.10852"
200
+ r="132.07404" />
201
+ <radialGradient
202
+ inkscape:collect="always"
203
+ xlink:href="#linearGradient3164"
204
+ id="radialGradient6257"
205
+ gradientUnits="userSpaceOnUse"
206
+ gradientTransform="matrix(1,0,0,1.8101266,0,-315.8264)"
207
+ cx="430.32449"
208
+ cy="400.11002"
209
+ fx="430.32449"
210
+ fy="400.11002"
211
+ r="122.28646" />
212
+ <radialGradient
213
+ inkscape:collect="always"
214
+ xlink:href="#linearGradient3164"
215
+ id="radialGradient6255"
216
+ gradientUnits="userSpaceOnUse"
217
+ gradientTransform="matrix(0.9843433,-0.1762622,0.4545473,2.5384376,-209.78594,-661.31225)"
218
+ cx="296.93582"
219
+ cy="472.26077"
220
+ fx="296.93582"
221
+ fy="472.26077"
222
+ r="98.75753" />
223
+ <radialGradient
224
+ inkscape:collect="always"
225
+ xlink:href="#linearGradient3164"
226
+ id="radialGradient6253"
227
+ gradientUnits="userSpaceOnUse"
228
+ gradientTransform="matrix(1.6572533,-5.3785292e-3,7.4679245e-3,2.3010459,-247.28661,-488.99506)"
229
+ cx="371.50314"
230
+ cy="417.10852"
231
+ fx="371.50314"
232
+ fy="417.10852"
233
+ r="132.07404" />
234
+ <radialGradient
235
+ inkscape:collect="always"
236
+ xlink:href="#linearGradient3164"
237
+ id="radialGradient6251"
238
+ gradientUnits="userSpaceOnUse"
239
+ gradientTransform="matrix(1,0,0,1.8101266,0,-315.8264)"
240
+ cx="430.32449"
241
+ cy="400.11002"
242
+ fx="430.32449"
243
+ fy="400.11002"
244
+ r="122.28646" />
245
+ <radialGradient
246
+ inkscape:collect="always"
247
+ xlink:href="#linearGradient3164"
248
+ id="radialGradient6249"
249
+ gradientUnits="userSpaceOnUse"
250
+ gradientTransform="matrix(0.9843433,-0.1762622,0.4545473,2.5384376,-209.78594,-661.31225)"
251
+ cx="296.93582"
252
+ cy="472.26077"
253
+ fx="296.93582"
254
+ fy="472.26077"
255
+ r="98.75753" />
256
+ <radialGradient
257
+ inkscape:collect="always"
258
+ xlink:href="#linearGradient3164"
259
+ id="radialGradient6247"
260
+ gradientUnits="userSpaceOnUse"
261
+ gradientTransform="matrix(1.6572533,-5.3785292e-3,7.4679245e-3,2.3010459,-247.28661,-488.99506)"
262
+ cx="371.50314"
263
+ cy="417.10852"
264
+ fx="371.50314"
265
+ fy="417.10852"
266
+ r="132.07404" />
267
+ <radialGradient
268
+ inkscape:collect="always"
269
+ xlink:href="#linearGradient3164"
270
+ id="radialGradient6245"
271
+ gradientUnits="userSpaceOnUse"
272
+ gradientTransform="matrix(1,0,0,1.8101266,0,-315.8264)"
273
+ cx="430.32449"
274
+ cy="400.11002"
275
+ fx="430.32449"
276
+ fy="400.11002"
277
+ r="122.28646" />
278
+ <linearGradient
279
+ id="linearGradient3164">
280
+ <stop
281
+ style="stop-color:#fff37c;stop-opacity:1;"
282
+ offset="0"
283
+ id="stop3166" />
284
+ <stop
285
+ style="stop-color:#ff0000;stop-opacity:1;"
286
+ offset="1"
287
+ id="stop3168" />
288
+ </linearGradient>
289
+ <radialGradient
290
+ inkscape:collect="always"
291
+ xlink:href="#linearGradient3164"
292
+ id="radialGradient6243"
293
+ gradientUnits="userSpaceOnUse"
294
+ gradientTransform="matrix(0.9843433,-0.1762622,0.4545473,2.5384376,-209.78594,-661.31225)"
295
+ cx="296.93582"
296
+ cy="472.26077"
297
+ fx="296.93582"
298
+ fy="472.26077"
299
+ r="98.75753" />
300
+ <filter
301
+ inkscape:collect="always"
302
+ id="filter3845">
303
+ <feGaussianBlur
304
+ inkscape:collect="always"
305
+ stdDeviation="6.2015809"
306
+ id="feGaussianBlur3847" />
307
+ </filter>
308
+ <inkscape:perspective
309
+ sodipodi:type="inkscape:persp3d"
310
+ inkscape:vp_x="0 : 526.18109 : 1"
311
+ inkscape:vp_y="0 : 1000 : 0"
312
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
313
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
314
+ id="perspective3679" />
315
+ </defs>
316
+ <sodipodi:namedview
317
+ id="base"
318
+ pagecolor="#ffffff"
319
+ bordercolor="#666666"
320
+ borderopacity="1.0"
321
+ gridtolerance="10000"
322
+ guidetolerance="10"
323
+ objecttolerance="10"
324
+ inkscape:pageopacity="0.0"
325
+ inkscape:pageshadow="2"
326
+ inkscape:zoom="0.5"
327
+ inkscape:cx="383.81577"
328
+ inkscape:cy="115.7029"
329
+ inkscape:document-units="px"
330
+ inkscape:current-layer="layer1"
331
+ showgrid="false"
332
+ inkscape:window-width="958"
333
+ inkscape:window-height="1073"
334
+ inkscape:window-x="960"
335
+ inkscape:window-y="84"
336
+ showguides="false"
337
+ inkscape:guide-bbox="true"
338
+ inkscape:snap-global="true">
339
+ <sodipodi:guide
340
+ orientation="1,0"
341
+ position="274.92673,201.407"
342
+ id="guide2499" />
343
+ <sodipodi:guide
344
+ orientation="0,1"
345
+ position="457.18153,134.0654"
346
+ id="guide2501" />
347
+ <sodipodi:guide
348
+ orientation="0,1"
349
+ position="163.1026,321.2627"
350
+ id="guide2505" />
351
+ <sodipodi:guide
352
+ orientation="0,1"
353
+ position="276,2"
354
+ id="guide2507" />
355
+ </sodipodi:namedview>
356
+ <metadata
357
+ id="metadata3676">
358
+ <rdf:RDF>
359
+ <cc:Work
360
+ rdf:about="">
361
+ <dc:format>image/svg+xml</dc:format>
362
+ <dc:type
363
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
364
+ </cc:Work>
365
+ </rdf:RDF>
366
+ </metadata>
367
+ <g
368
+ inkscape:label="Layer 1"
369
+ inkscape:groupmode="layer"
370
+ id="layer1"
371
+ transform="translate(-418.85717,-522.75203)">
372
+ <g
373
+ id="g6238"
374
+ transform="matrix(0.7978721,0,0,0.7978721,220.05098,610.20583)"
375
+ style="fill:#c87137;fill-opacity:1"
376
+ inkscape:export-filename="/home/sun/src/ember/doc/ember.png"
377
+ inkscape:export-xdpi="46.001469"
378
+ inkscape:export-ydpi="46.001469">
379
+ <rect
380
+ rx="61.501064"
381
+ ry="38.183765"
382
+ transform="matrix(0,1,-1,0,0,0)"
383
+ y="-781.83722"
384
+ x="216.50577"
385
+ height="376"
386
+ width="123.00213"
387
+ id="rect4548"
388
+ style="fill:#c87137;fill-opacity:1;stroke:none" />
389
+ <path
390
+ sodipodi:type="arc"
391
+ style="fill:#c87137;fill-opacity:1;stroke:none"
392
+ id="path4633"
393
+ sodipodi:cx="108.5"
394
+ sodipodi:cy="117.87335"
395
+ sodipodi:rx="115.11426"
396
+ sodipodi:ry="135.01158"
397
+ d="M 223.61426,117.87335 A 115.11426,135.01158 0 1 1 -6.6142578,117.87335 A 115.11426,135.01158 0 1 1 223.61426,117.87335 z"
398
+ transform="matrix(1.3874539,0,0,1.1125686,443.29847,198.10622)" />
399
+ <path
400
+ sodipodi:type="arc"
401
+ style="fill:#c87137;fill-opacity:1;stroke:none"
402
+ id="path4508"
403
+ sodipodi:cx="108.5"
404
+ sodipodi:cy="117.87335"
405
+ sodipodi:rx="135.5"
406
+ sodipodi:ry="135.5"
407
+ d="M 244,117.87335 A 135.5,135.5 0 1 1 -27,117.87335 A 135.5,135.5 0 1 1 244,117.87335 z"
408
+ transform="matrix(1.3874539,0,0,1.3874539,443.29848,14.494927)" />
409
+ </g>
410
+ <g
411
+ id="g4430"
412
+ transform="matrix(1.0119258,0,0,1.0119258,90.819405,571.91769)"
413
+ inkscape:export-filename="/home/sun/src/ember/doc/ember.png"
414
+ inkscape:export-xdpi="46.001469"
415
+ inkscape:export-ydpi="46.001469">
416
+ <g
417
+ transform="matrix(0.3947936,0,0,0.3947936,318.7227,-34.954413)"
418
+ id="g3711"
419
+ style="fill:#000000;fill-opacity:1;filter:url(#filter3845)">
420
+ <g
421
+ transform="matrix(0.5186874,0,0,0.5186874,503.33495,213.84714)"
422
+ id="g3713"
423
+ style="fill:#000000;fill-opacity:1">
424
+ <g
425
+ id="g3715"
426
+ style="fill:#000000;fill-opacity:1">
427
+ <path
428
+ sodipodi:nodetypes="cscccc"
429
+ id="path3717"
430
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
431
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
432
+ <path
433
+ id="path3719"
434
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
435
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
436
+ <path
437
+ sodipodi:nodetypes="csccscccsccsc"
438
+ id="path3721"
439
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
440
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
441
+ </g>
442
+ <g
443
+ id="g3723"
444
+ transform="matrix(1,0,0,-1,0,1227.0481)"
445
+ style="fill:#000000;fill-opacity:1">
446
+ <path
447
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
448
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
449
+ id="path3725"
450
+ sodipodi:nodetypes="cscccc" />
451
+ <path
452
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
453
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
454
+ id="path3727" />
455
+ <path
456
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
457
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
458
+ id="path3729"
459
+ sodipodi:nodetypes="csccscccsccsc" />
460
+ </g>
461
+ </g>
462
+ <g
463
+ transform="matrix(0,0.5186874,-0.5186874,0,1021.2812,341.98993)"
464
+ id="g3731"
465
+ style="fill:#000000;fill-opacity:1">
466
+ <g
467
+ id="g3733"
468
+ style="fill:#000000;fill-opacity:1">
469
+ <path
470
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
471
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
472
+ id="path3735"
473
+ sodipodi:nodetypes="cscccc" />
474
+ <path
475
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
476
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
477
+ id="path3737" />
478
+ <path
479
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
480
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
481
+ id="path3739"
482
+ sodipodi:nodetypes="csccscccsccsc" />
483
+ </g>
484
+ <g
485
+ transform="matrix(1,0,0,-1,0,1227.0481)"
486
+ id="g3741"
487
+ style="fill:#000000;fill-opacity:1">
488
+ <path
489
+ sodipodi:nodetypes="cscccc"
490
+ id="path3743"
491
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
492
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
493
+ <path
494
+ id="path3745"
495
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
496
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
497
+ <path
498
+ sodipodi:nodetypes="csccscccsccsc"
499
+ id="path3747"
500
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
501
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
502
+ </g>
503
+ </g>
504
+ <g
505
+ id="g3749"
506
+ transform="matrix(-0.3667674,0.3667674,-0.3667674,-0.3667674,1069.2973,625.50691)"
507
+ style="fill:#000000;fill-opacity:1">
508
+ <g
509
+ id="g3751"
510
+ style="fill:#000000;fill-opacity:1">
511
+ <path
512
+ sodipodi:nodetypes="cscccc"
513
+ id="path3753"
514
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
515
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
516
+ <path
517
+ id="path3755"
518
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
519
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
520
+ <path
521
+ sodipodi:nodetypes="csccscccsccsc"
522
+ id="path3757"
523
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
524
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
525
+ </g>
526
+ <g
527
+ id="g3759"
528
+ transform="matrix(1,0,0,-1,0,1227.0481)"
529
+ style="fill:#000000;fill-opacity:1">
530
+ <path
531
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
532
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
533
+ id="path3761"
534
+ sodipodi:nodetypes="cscccc" />
535
+ <path
536
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
537
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
538
+ id="path3763" />
539
+ <path
540
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
541
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
542
+ id="path3765"
543
+ sodipodi:nodetypes="csccscccsccsc" />
544
+ </g>
545
+ </g>
546
+ <g
547
+ transform="matrix(0.3667674,0.3667674,0.3667674,-0.3667674,356.9647,625.50691)"
548
+ id="g3767"
549
+ style="fill:#000000;fill-opacity:1">
550
+ <g
551
+ id="g3769"
552
+ style="fill:#000000;fill-opacity:1">
553
+ <path
554
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
555
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
556
+ id="path3771"
557
+ sodipodi:nodetypes="cscccc" />
558
+ <path
559
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
560
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
561
+ id="path3773" />
562
+ <path
563
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
564
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
565
+ id="path3775"
566
+ sodipodi:nodetypes="csccscccsccsc" />
567
+ </g>
568
+ <g
569
+ transform="matrix(1,0,0,-1,0,1227.0481)"
570
+ id="g3777"
571
+ style="fill:#000000;fill-opacity:1">
572
+ <path
573
+ sodipodi:nodetypes="cscccc"
574
+ id="path3779"
575
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
576
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
577
+ <path
578
+ id="path3781"
579
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
580
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
581
+ <path
582
+ sodipodi:nodetypes="csccscccsccsc"
583
+ id="path3783"
584
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
585
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
586
+ </g>
587
+ </g>
588
+ </g>
589
+ <g
590
+ id="g2759"
591
+ transform="matrix(0.3947936,0,0,0.3947936,318.7227,-34.954413)">
592
+ <g
593
+ id="g3227"
594
+ transform="matrix(0.5186874,0,0,0.5186874,503.33495,213.84714)">
595
+ <g
596
+ id="g3202">
597
+ <path
598
+ style="fill:url(#radialGradient6243);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
599
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
600
+ id="path2388"
601
+ sodipodi:nodetypes="cscccc" />
602
+ <path
603
+ style="fill:url(#radialGradient6245);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
604
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
605
+ id="path2392" />
606
+ <path
607
+ style="fill:url(#radialGradient6247);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
608
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
609
+ id="path2390"
610
+ sodipodi:nodetypes="csccscccsccsc" />
611
+ </g>
612
+ <g
613
+ transform="matrix(1,0,0,-1,0,1227.0481)"
614
+ id="g3213">
615
+ <path
616
+ sodipodi:nodetypes="cscccc"
617
+ id="path3215"
618
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
619
+ style="fill:url(#radialGradient6249);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
620
+ <path
621
+ id="path3217"
622
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
623
+ style="fill:url(#radialGradient6251);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
624
+ <path
625
+ sodipodi:nodetypes="csccscccsccsc"
626
+ id="path3219"
627
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
628
+ style="fill:url(#radialGradient6253);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
629
+ </g>
630
+ </g>
631
+ <g
632
+ id="g3237"
633
+ transform="matrix(0,0.5186874,-0.5186874,0,1021.2812,341.98993)">
634
+ <g
635
+ id="g3239">
636
+ <path
637
+ sodipodi:nodetypes="cscccc"
638
+ id="path3241"
639
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
640
+ style="fill:url(#radialGradient6255);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
641
+ <path
642
+ id="path3243"
643
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
644
+ style="fill:url(#radialGradient6257);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
645
+ <path
646
+ sodipodi:nodetypes="csccscccsccsc"
647
+ id="path3245"
648
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
649
+ style="fill:url(#radialGradient6259);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
650
+ </g>
651
+ <g
652
+ id="g3247"
653
+ transform="matrix(1,0,0,-1,0,1227.0481)">
654
+ <path
655
+ style="fill:url(#radialGradient6261);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
656
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
657
+ id="path3249"
658
+ sodipodi:nodetypes="cscccc" />
659
+ <path
660
+ style="fill:url(#radialGradient6263);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
661
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
662
+ id="path3251" />
663
+ <path
664
+ style="fill:url(#radialGradient6265);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
665
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
666
+ id="path3253"
667
+ sodipodi:nodetypes="csccscccsccsc" />
668
+ </g>
669
+ </g>
670
+ <g
671
+ transform="matrix(-0.3667674,0.3667674,-0.3667674,-0.3667674,1069.2973,625.50691)"
672
+ id="g2697">
673
+ <g
674
+ id="g2699">
675
+ <path
676
+ style="fill:url(#radialGradient6267);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
677
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
678
+ id="path2701"
679
+ sodipodi:nodetypes="cscccc" />
680
+ <path
681
+ style="fill:url(#radialGradient6269);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
682
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
683
+ id="path2703" />
684
+ <path
685
+ style="fill:url(#radialGradient6271);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
686
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
687
+ id="path2705"
688
+ sodipodi:nodetypes="csccscccsccsc" />
689
+ </g>
690
+ <g
691
+ transform="matrix(1,0,0,-1,0,1227.0481)"
692
+ id="g2707">
693
+ <path
694
+ sodipodi:nodetypes="cscccc"
695
+ id="path2709"
696
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
697
+ style="fill:url(#radialGradient6273);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
698
+ <path
699
+ id="path2711"
700
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
701
+ style="fill:url(#radialGradient6275);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
702
+ <path
703
+ sodipodi:nodetypes="csccscccsccsc"
704
+ id="path2713"
705
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
706
+ style="fill:url(#radialGradient6277);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
707
+ </g>
708
+ </g>
709
+ <g
710
+ id="g2727"
711
+ transform="matrix(0.3667674,0.3667674,0.3667674,-0.3667674,356.9647,625.50691)">
712
+ <g
713
+ id="g2729">
714
+ <path
715
+ sodipodi:nodetypes="cscccc"
716
+ id="path2731"
717
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
718
+ style="fill:url(#radialGradient6279);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
719
+ <path
720
+ id="path2733"
721
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
722
+ style="fill:url(#radialGradient6281);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
723
+ <path
724
+ sodipodi:nodetypes="csccscccsccsc"
725
+ id="path2735"
726
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
727
+ style="fill:url(#radialGradient6283);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
728
+ </g>
729
+ <g
730
+ id="g2737"
731
+ transform="matrix(1,0,0,-1,0,1227.0481)">
732
+ <path
733
+ style="fill:url(#radialGradient6285);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
734
+ d="M 348.21402,614.60496 C 262.48999,566.02274 238.63808,513.34904 232.40795,476.43162 C 226.17782,439.51419 218.61294,398.14893 181.24797,370.57473 C 210.90151,377.83728 233.43906,393.69978 241.44754,420.38679 C 232.99151,359.89544 177.23714,276.42691 177.23714,276.42691 C 263.54666,253.80332 439.43022,553.36604 348.21402,614.60496 z"
735
+ id="path2739"
736
+ sodipodi:nodetypes="cscccc" />
737
+ <path
738
+ style="fill:url(#radialGradient6287);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
739
+ d="M 348.28422,611.20217 C 478.31033,564.76427 478.31033,510.58673 509.26893,457.95711 C 540.22753,405.32749 592.85714,369.72511 592.85714,369.72511 C 530.93995,352.69788 523.2003,422.35472 486.04998,442.47781 C 492.2417,377.46476 557.25476,354.24581 563.44648,298.52033 C 529.39202,346.50616 498.43342,369.72511 476.7624,369.72511 C 504.62514,317.09549 509.26893,309.35584 476.7624,261.37002 C 444.25587,213.38419 517.00858,168.49422 517.00858,168.49422 C 431.87244,205.64454 391.62626,264.46588 391.62626,264.46588 L 388.5304,474.98434 L 348.28422,611.20217 z"
740
+ id="path2741" />
741
+ <path
742
+ style="fill:url(#radialGradient6289);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
743
+ d="M 345.18836,617.39389 C 297.20254,546.18912 320.42148,451.76539 269.3398,388.30027 C 218.25811,324.83514 208.97053,332.57479 208.97053,332.57479 C 280.17531,334.12272 315.77769,416.163 325.06527,417.71093 C 297.20254,335.67065 275.53152,276.84931 289.46289,216.48005 C 303.39426,156.11078 260.05222,106.57703 260.05222,106.57703 C 297.20254,129.79598 371.50317,185.52145 356.02387,244.34279 C 386.98247,176.23387 469.02275,202.54868 472.11861,168.49422 C 462.83103,214.93212 405.55763,238.15107 417.94107,298.52033 C 430.32451,358.8896 453.54345,399.13577 447.35173,423.90265 C 465.92689,340.31444 447.35173,307.80791 447.35173,307.80791 C 486.67704,352.97306 464.11895,429.03219 458.48154,482.47166 C 448.09175,580.96093 422.72337,611.98754 345.18836,617.39389 z"
744
+ id="path2743"
745
+ sodipodi:nodetypes="csccscccsccsc" />
746
+ </g>
747
+ </g>
748
+ </g>
749
+ </g>
750
+ <flowRoot
751
+ transform="translate(119.01999,495.09186)"
752
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
753
+ id="flowRoot2628"
754
+ xml:space="preserve"><flowRegion
755
+ id="flowRegion2630"><rect
756
+ y="-25.626648"
757
+ x="-27"
758
+ height="247"
759
+ width="265"
760
+ id="rect2632" /></flowRegion><flowPara
761
+ id="flowPara2634" /></flowRoot> <g
762
+ id="g3520"
763
+ transform="matrix(0.5389187,0,0,0.5389187,398.83685,595.23779)"
764
+ inkscape:export-filename="/home/sun/src/ember/doc/ember.png"
765
+ inkscape:export-xdpi="46.001469"
766
+ inkscape:export-ydpi="46.001469"
767
+ style="fill:#ffe680;fill-opacity:1">
768
+ <text
769
+ xml:space="preserve"
770
+ style="font-size:74.22270203px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffe680;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
771
+ x="438.12857"
772
+ y="615.14703"
773
+ id="text3526"
774
+ sodipodi:linespacing="100%"
775
+ inkscape:export-xdpi="45.740002"
776
+ inkscape:export-ydpi="45.740002"><tspan
777
+ sodipodi:role="line"
778
+ id="tspan3528"
779
+ x="438.12857"
780
+ y="615.14703"
781
+ style="font-size:74.22270203px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffe680;fill-opacity:1;font-family:URW Gothic L;-inkscape-font-specification:URW Gothic L">ember</tspan></text>
782
+ </g>
783
+ </g>
784
+ </svg>