glyph 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. data/.gitignore +7 -0
  2. data/AUTHORS.textile +8 -7
  3. data/CHANGELOG.textile +89 -8
  4. data/LICENSE.textile +1 -2
  5. data/README.textile +89 -61
  6. data/Rakefile +12 -10
  7. data/VERSION +1 -1
  8. data/benchmark.rb +1 -1
  9. data/book/config.yml +18 -4
  10. data/book/document.glyph +269 -45
  11. data/book/images/glyph/commands_tasks.png +0 -0
  12. data/book/images/{document_generation.png → glyph/document_generation.png} +0 -0
  13. data/book/images/glyph/glyph.eps +123 -0
  14. data/book/images/glyph/glyph.png +0 -0
  15. data/book/images/glyph/glyph.svg +29 -0
  16. data/book/lib/commands/commands.rb +11 -0
  17. data/book/lib/layouts/bookindex.glyph +127 -0
  18. data/book/lib/layouts/bookpage.glyph +129 -0
  19. data/book/lib/layouts/project.glyph +26 -0
  20. data/book/lib/macros/reference.rb +27 -7
  21. data/book/lib/tasks/tasks.rake +52 -0
  22. data/book/snippets.yml +1 -1
  23. data/book/text/{acknowledgement.glyph → acknowledgements.glyph} +4 -2
  24. data/book/text/changelog.glyph +29 -3
  25. data/book/text/compiling/compiling.glyph +44 -20
  26. data/book/text/compiling/lite_mode.glyph +0 -4
  27. data/book/text/compiling/programmatic_usage.glyph +1 -5
  28. data/book/text/config/document.glyph +35 -0
  29. data/book/text/config/filters.glyph +28 -0
  30. data/book/text/config/options.glyph +25 -0
  31. data/book/text/config/output.glyph +83 -0
  32. data/book/text/extending/bookmarks_headers.glyph +0 -5
  33. data/book/text/extending/command.glyph +56 -0
  34. data/book/text/extending/commands_tasks.glyph +39 -0
  35. data/book/text/extending/further_reading.glyph +0 -3
  36. data/book/text/extending/internals.glyph +3 -5
  37. data/book/text/extending/interpreting.glyph +0 -4
  38. data/book/text/extending/layouts.glyph +68 -0
  39. data/book/text/extending/macro_def.glyph +0 -5
  40. data/book/text/extending/output_format.glyph +78 -0
  41. data/book/text/extending/params_attrs.glyph +0 -3
  42. data/book/text/extending/placeholders.glyph +0 -4
  43. data/book/text/extending/task.glyph +46 -0
  44. data/book/text/extending/validators.glyph +5 -6
  45. data/book/text/getting_started/configuration.glyph +1 -5
  46. data/book/text/getting_started/create_project.glyph +1 -5
  47. data/book/text/getting_started/structure.glyph +0 -4
  48. data/book/text/introduction.glyph +100 -75
  49. data/book/text/license.glyph +1 -2
  50. data/book/text/macros/macros_block.glyph +8 -4
  51. data/book/text/macros/macros_core.glyph +0 -3
  52. data/book/text/macros/macros_filters.glyph +2 -7
  53. data/book/text/macros/macros_inline.glyph +0 -4
  54. data/book/text/macros/macros_structure.glyph +0 -4
  55. data/book/text/ref_commands.glyph +29 -7
  56. data/book/text/stats/bookmarks.glyph +49 -0
  57. data/book/text/stats/links.glyph +90 -0
  58. data/book/text/stats/macros.glyph +73 -0
  59. data/book/text/stats/snippets.glyph +50 -0
  60. data/book/text/stats/stats.glyph +79 -0
  61. data/book/text/text_editing/attribute_intro.glyph +22 -0
  62. data/book/text/text_editing/code.glyph +0 -5
  63. data/book/text/text_editing/conditionals.glyph +0 -4
  64. data/book/text/text_editing/esc_quot.glyph +64 -0
  65. data/book/text/text_editing/evaluation.glyph +0 -3
  66. data/book/text/text_editing/glyph_files.glyph +0 -3
  67. data/book/text/text_editing/images.glyph +0 -5
  68. data/book/text/text_editing/inclusions.glyph +0 -4
  69. data/book/text/text_editing/links.glyph +2 -7
  70. data/book/text/text_editing/macro_intro.glyph +1 -98
  71. data/book/text/text_editing/raw_html.glyph +0 -87
  72. data/book/text/text_editing/section_aliases.glyph +28 -0
  73. data/book/text/text_editing/sections.glyph +1 -32
  74. data/book/text/text_editing/stylesheets.glyph +3 -5
  75. data/book/text/text_editing/topics.glyph +33 -0
  76. data/book/text/text_editing/xml_fallback.glyph +73 -0
  77. data/book/text/troubleshooting/errors_command.glyph +0 -3
  78. data/book/text/troubleshooting/errors_generic.glyph +21 -6
  79. data/book/text/troubleshooting/errors_macro.glyph +11 -8
  80. data/book/text/troubleshooting/errors_parser.glyph +0 -3
  81. data/config.yml +60 -25
  82. data/glyph.gemspec +90 -36
  83. data/layouts/web/index.glyph +16 -0
  84. data/layouts/web/topic.glyph +15 -0
  85. data/layouts/web5/index.glyph +16 -0
  86. data/layouts/web5/topic.glyph +17 -0
  87. data/lib/glyph.rb +36 -49
  88. data/lib/glyph/analyzer.rb +253 -0
  89. data/lib/glyph/bookmark.rb +92 -0
  90. data/lib/glyph/commands.rb +9 -221
  91. data/lib/glyph/commands/add.rb +8 -0
  92. data/lib/glyph/commands/compile.rb +93 -0
  93. data/lib/glyph/commands/config.rb +38 -0
  94. data/lib/glyph/commands/init.rb +6 -0
  95. data/lib/glyph/commands/outline.rb +45 -0
  96. data/lib/glyph/commands/stats.rb +48 -0
  97. data/lib/glyph/commands/todo.rb +29 -0
  98. data/lib/glyph/config.rb +2 -0
  99. data/lib/glyph/document.rb +61 -30
  100. data/lib/glyph/interpreter.rb +2 -2
  101. data/lib/glyph/macro.rb +14 -5
  102. data/lib/glyph/macro_helpers.rb +280 -0
  103. data/lib/glyph/macro_validators.rb +37 -2
  104. data/lib/glyph/reporter.rb +182 -0
  105. data/lib/glyph/syntax_node.rb +37 -10
  106. data/lib/glyph/system_extensions.rb +8 -45
  107. data/lib/glyph/utils.rb +148 -0
  108. data/macros/core.rb +10 -15
  109. data/macros/filters.rb +4 -5
  110. data/macros/html/block.rb +46 -30
  111. data/macros/html/inline.rb +9 -35
  112. data/macros/html/structure.rb +59 -72
  113. data/macros/html5/block.rb +69 -0
  114. data/macros/html5/inline.rb +24 -0
  115. data/macros/html5/structure.rb +139 -0
  116. data/macros/xml.rb +1 -1
  117. data/spec/files/custom_command.rb +6 -0
  118. data/spec/files/custom_tasks.rake +6 -0
  119. data/spec/files/document_for_stats.glyph +12 -0
  120. data/spec/files/references.glyph +4 -0
  121. data/spec/files/web1.glyph +11 -0
  122. data/spec/files/web2.glyph +10 -0
  123. data/spec/files/web_doc.glyph +23 -0
  124. data/spec/lib/analyzer_spec.rb +137 -0
  125. data/spec/lib/bookmark_spec.rb +64 -0
  126. data/spec/lib/commands_spec.rb +30 -5
  127. data/spec/lib/document_spec.rb +49 -9
  128. data/spec/lib/glyph_spec.rb +21 -1
  129. data/spec/lib/macro_spec.rb +6 -6
  130. data/spec/lib/macro_validators_spec.rb +24 -0
  131. data/spec/lib/reporter_spec.rb +132 -0
  132. data/spec/macros/core_spec.rb +2 -3
  133. data/spec/macros/filters_spec.rb +2 -2
  134. data/spec/macros/html5_spec.rb +101 -0
  135. data/spec/macros/macros_spec.rb +16 -6
  136. data/spec/macros/web5_spec.rb +32 -0
  137. data/spec/macros/web_spec.rb +59 -0
  138. data/spec/macros/xml_spec.rb +1 -1
  139. data/spec/spec_helper.rb +24 -4
  140. data/spec/tasks/generate_spec.rb +54 -0
  141. data/spec/tasks/load_spec.rb +29 -3
  142. data/spec/tasks/project_spec.rb +21 -3
  143. data/styles/default.css +40 -4
  144. data/styles/pagination.css +59 -41
  145. data/tasks/generate.rake +110 -31
  146. data/tasks/load.rake +39 -7
  147. data/tasks/project.rake +9 -7
  148. metadata +115 -34
  149. data/book/images/glyph.png +0 -0
  150. data/book/images/glyph.svg +0 -351
  151. data/book/output/html/glyph.html +0 -4482
  152. data/book/output/html/images/document_generation.png +0 -0
  153. data/book/output/html/images/glyph.png +0 -0
  154. data/book/output/html/images/glyph.svg +0 -351
  155. data/book/output/pdf/glyph.pdf +4 -10254
  156. data/book/script/authors +0 -1
  157. data/book/script/changelog +0 -1
  158. data/book/script/license +0 -1
  159. data/book/script/readme +0 -1
  160. data/book/text/ref_config.glyph +0 -100
  161. data/book/text/ref_macros.glyph +0 -6
  162. data/book/text/troubleshooting/errors_intro.glyph +0 -3
data/book/document.glyph CHANGED
@@ -6,94 +6,318 @@ book[
6
6
  ?[eq[$[filters.highlighter]|ultraviolet]|style[ultraviolet/lazy.css]]
7
7
  ]
8
8
  @pre-title[
9
- ?[eq[$[document.output]|pdf]|image[@width[20%]@height[20%]glyph.svg]]
10
- ?[eq[$[document.output]|html]|image[@width[20%]@height[20%]glyph.png]]
9
+ ?[
10
+ and[
11
+ eq[$[document.output]|pdf]|
12
+ eq[$[output.pdf.generator]|prince]
13
+ ]|image[@width[20%]@height[20%]glyph/glyph.svg]]
14
+ ?[
15
+ or[
16
+ eq[$[document.output]|html]|
17
+ and[
18
+ eq[$[document.output]|pdf]|
19
+ eq[$[output.pdf.generator]|wkhtmltopdf]]
20
+ ]|image[glyph/glyph.png]]
11
21
  ]
12
22
  @frontmatter[
13
23
  toc[3]
14
24
  introduction[
15
25
  @title[Introduction]
16
- textile[include[introduction]]
26
+ @src[introduction]
17
27
  section[
18
28
  @title[License]
19
- textile[include[license]]
29
+ @src[license]
20
30
  ]
21
31
  ]
22
32
  acknowledgement[
23
- @title[Acknowledgement]
24
- textile[include[acknowledgement]]
33
+ @title[Acknowledgements]
34
+ @src[acknowledgements]
25
35
  ]
26
36
  ]
27
37
  @bodymatter[
28
38
  chapter[
29
39
  @title[Getting Started]
30
- include[getting_started/create_project]
31
- include[getting_started/structure]
32
- include[getting_started/configuration]
40
+ section[
41
+ @title[Creating your first Glyph Project]
42
+ @src[getting_started/create_project]
43
+ ]
44
+ section[
45
+ @title[Document Structure]
46
+ @id[struct]
47
+ @src[getting_started/structure]
48
+ ]
49
+ section[
50
+ @title[Project Configuration]
51
+ @id[cfg]
52
+ @src[getting_started/configuration]
53
+ ]
33
54
  ]
34
55
  chapter[
35
56
  @title[Authoring Documents]
36
- include[text_editing/glyph_files]
37
- include[text_editing/macro_intro]
38
- include[text_editing/sections]
39
- include[text_editing/links]
40
- include[text_editing/images]
41
- include[text_editing/code]
42
- include[text_editing/raw_html]
43
- include[text_editing/stylesheets]
44
- include[text_editing/inclusions]
45
- include[text_editing/evaluation]
46
- include[text_editing/conditionals]
57
+ section[
58
+ @title[.glyph files]
59
+ @src[text_editing/glyph_files]
60
+ ]
61
+ section[
62
+ @title[Introducing &[macros]]
63
+ @id[macro_intro]
64
+ @src[text_editing/macro_intro]
65
+ ]
66
+ section[
67
+ @title[Macro attributes]
68
+ @id[attribute_intro]
69
+ @src[text_editing/attribute_intro]
70
+ ]
71
+ section[
72
+ @title[Escaping and Quoting]
73
+ @id[esc_quot]
74
+ @src[text_editing/esc_quot]
75
+ ]
76
+ section[
77
+ @title[Sections and Headers]
78
+ @id[sec_head]
79
+ @src[text_editing/sections]
80
+ section[
81
+ @title[Section Aliases]
82
+ @src[text_editing/section_aliases]
83
+ ]
84
+ section[
85
+ @title[Topics]
86
+ @id[topics]
87
+ @src[text_editing/topics]
88
+ ]
89
+ ]
90
+ section[
91
+ @title[Links and Bookmarks]
92
+ @id[links]
93
+ @src[text_editing/links]
94
+ ]
95
+ section[
96
+ @title[Images and Figures]
97
+ @id[img_fig]
98
+ @src[text_editing/images]
99
+ ]
100
+ section[
101
+ @title[Source Code]
102
+ @id[source_code]
103
+ @src[text_editing/code]
104
+ ]
105
+ section[
106
+ @title[Other HTML Elements]
107
+ @id[other_elements]
108
+ section[
109
+ @title[&[markups]]
110
+ @src[text_editing/raw_html]
111
+ ]
112
+ section[
113
+ @title[XML Fallback]
114
+ @src[text_editing/xml_fallback]
115
+ ]
116
+ ]
117
+ section[
118
+ @title[Adding Stylesheets]
119
+ @id[stylesheets]
120
+ @src[text_editing/stylesheets]
121
+ ]
122
+ section[
123
+ @title[Including Files and Snippets]
124
+ @id[incl]
125
+ @src[text_editing/inclusions]
126
+ ]
127
+ section[
128
+ @title[Evaluating Ruby code and Configuration Settings]
129
+ @src[text_editing/evaluation]
130
+ ]
131
+ section[
132
+ @title[Conditional Macros]
133
+ @id[cond_macros]
134
+ @src[text_editing/conditionals]
135
+ ]
47
136
  ]
48
137
  chapter[
49
138
  @title[Generating Output Files]
50
- include[compiling/compiling]
51
- include[compiling/lite_mode]
52
- include[compiling/programmatic_usage]
139
+ section[
140
+ @title[Compiling a project]
141
+ @id[compile]
142
+ @src[compiling/compiling]
143
+ ]
144
+ section[
145
+ @title[Compiling single Glyph files]
146
+ @id[lite_mode]
147
+ @src[compiling/lite_mode]
148
+ ]
149
+ section[
150
+ @title[Using Glyph programmatically]
151
+ @src[compiling/programmatic_usage]
152
+ ]
153
+ ]
154
+ chapter[
155
+ @title[Document Statistics]
156
+ @id[stats]
157
+ section[
158
+ @title[Using the stats command]
159
+ @src[stats/stats]
160
+ ]
161
+ section[
162
+ @title[Macro Statistics]
163
+ @src[stats/macros]
164
+ @id[stats_macros]
165
+ ]
166
+ section[
167
+ @title[Snippet Statistics]
168
+ @src[stats/snippets]
169
+ @id[stats_snippets]
170
+ ]
171
+ section[
172
+ @title[Bookmark Statistics]
173
+ @src[stats/bookmarks]
174
+ @id[stats_bookmarks]
175
+ ]
176
+ section[
177
+ @title[Link Statistics]
178
+ @src[stats/links]
179
+ @id[stats_links]
180
+ ]
53
181
  ]
54
182
  chapter[
55
183
  @title[Extending Glyph]
56
184
  @id[extending]
57
- include[extending/internals]
58
- include[extending/macro_def]
59
- include[extending/params_attrs]
60
- include[extending/bookmarks_headers]
61
- include[extending/placeholders]
62
- include[extending/validators]
63
- include[extending/interpreting]
64
- include[extending/further_reading]
185
+ section[
186
+ @title[A quick look at Glyph's internals]
187
+ @src[extending/internals]
188
+ ]
189
+ section[
190
+ @title[Defining Custom Macros]
191
+ @id[macro_def]
192
+ @src[extending/macro_def]
193
+ section[
194
+ @title[Parameters and Attributes]
195
+ @src[extending/params_attrs]
196
+ ]
197
+ section[
198
+ @title[Bookmarks and Headers]
199
+ @src[extending/bookmarks_headers]
200
+ ]
201
+ section[
202
+ @title[Using Placeholders]
203
+ @src[extending/placeholders]
204
+ ]
205
+ section[
206
+ @title[Using Validators]
207
+ @src[extending/validators]
208
+ ]
209
+ section[
210
+ @title[Interpreting Glyph Code]
211
+ @id[interpreting]
212
+ @src[extending/interpreting]
213
+ ]
214
+ section[
215
+ @title[Layouts]
216
+ @id[layouts]
217
+ @src[extending/layouts]
218
+ ]
219
+ section[
220
+ @title[Further Reading]
221
+ @src[extending/further_reading]
222
+ ]
223
+ ]
224
+ section[
225
+ @title[Defining Custom Commands and Tasks]
226
+ @src[extending/commands_tasks]
227
+ section[
228
+ @title[Defining Custom Tasks]
229
+ @src[extending/task]
230
+ @id[custom_task]
231
+ section[
232
+ @title[Custom Output Formats]
233
+ @src[extending/output_format]
234
+ ]
235
+ ]
236
+ section[
237
+ @title[Defining Custom Commands]
238
+ @src[extending/command]
239
+ @id[custom_command]
240
+ ]
241
+ ]
65
242
  ]
66
243
  chapter[
67
244
  @title[Troubleshooting]
68
- include[troubleshooting/errors_intro]
69
- include[troubleshooting/errors_generic]
70
- include[troubleshooting/errors_parser]
71
- include[troubleshooting/errors_command]
72
- include[troubleshooting/errors_macro]
245
+ section[
246
+ @title[Generic Errors]
247
+ @src[troubleshooting/errors_generic]
248
+ ]
249
+ section[
250
+ @title[Parsing Errors]
251
+ @src[troubleshooting/errors_parser]
252
+ ]
253
+ section[
254
+ @title[Command Errors]
255
+ @src[troubleshooting/errors_command]
256
+ ]
257
+ section[
258
+ @title[Macro Errors]
259
+ @src[troubleshooting/errors_macro]
260
+ ]
73
261
  ]
74
262
  ]
75
263
  @backmatter[
76
264
  appendix[
77
265
  @title[Command Reference]
78
266
  @id[cmd_ref]
79
- include[ref_commands]
267
+ @src[ref_commands]
80
268
  ]
81
269
  appendix[
82
270
  @title[Macro Reference]
83
271
  @id[macro_ref]
84
- include[macros/macros_core]
85
- include[macros/macros_block]
86
- include[macros/macros_inline]
87
- include[macros/macros_filters]
88
- include[macros/macros_structure]
272
+ section[
273
+ @title[Core Macros]
274
+ @src[macros/macros_core]
275
+ ]
276
+ section[
277
+ @title[Block Macros]
278
+ @src[macros/macros_block]
279
+ ]
280
+ section[
281
+ @title[Inline Macros]
282
+ @src[macros/macros_inline]
283
+ ]
284
+ section[
285
+ @title[Filter Macros]
286
+ @id[f_macros]
287
+ @src[macros/macros_filters]
288
+ ]
289
+ section[
290
+ @title[Structure Macros]
291
+ @src[macros/macros_structure]
292
+ ]
89
293
  ]
90
294
  appendix[
91
295
  @title[Configuration Reference]
92
296
  @id[cfg_ref]
93
- include[ref_config]
297
+ section[
298
+ @title[document.*]
299
+ @id[cfg_document]
300
+ @src[config/document]
301
+ ]
302
+ section[
303
+ @title[filters.*]
304
+ @id[cfg_filters]
305
+ @src[config/filters]
306
+ ]
307
+ section[
308
+ @title[options.*]
309
+ @id[cfg_options]
310
+ @src[config/options]
311
+ ]
312
+ section[
313
+ @title[output.*]
314
+ @id[cfg_output]
315
+ @src[config/output]
316
+ ]
94
317
  ]
95
- appendix[@title[Changelog]
96
- include[changelog]
318
+ appendix[
319
+ @title[Changelog]
320
+ @src[changelog]
97
321
  ]
98
322
  ]
99
323
  ]
@@ -0,0 +1,123 @@
1
+ %!PS-Adobe-3.0 EPSF-3.0
2
+ %%CreationDate: Fri Aug 20 11:57:26 2010
3
+ %%LanguageLevel: 3
4
+ %%BoundingBox: 0 0 314 356
5
+ %%EndComments
6
+ newpath
7
+ 0.00 356.00 moveto
8
+ 123.01 356.00 lineto
9
+ 118.52 355.98 118.62 349.97 120.00 346.98 curveto
10
+ 123.43 341.74 129.02 338.52 134.06 335.04 curveto
11
+ 142.35 329.07 150.25 322.60 158.15 316.13 curveto
12
+ 162.33 312.60 168.02 310.47 173.49 311.70 curveto
13
+ 176.68 312.56 178.25 315.98 178.67 319.01 curveto
14
+ 179.43 325.01 177.57 330.95 175.57 336.54 curveto
15
+ 173.01 343.63 165.76 347.43 159.18 350.09 curveto
16
+ 149.67 352.87 139.87 354.51 130.09 356.00 curveto
17
+ 314.00 356.00 lineto
18
+ 314.00 0.00 lineto
19
+ 0.00 0.00 lineto
20
+ 0.00 356.00 lineto
21
+ closepath
22
+ 1.000 1.000 1.000 setrgbcolor
23
+ fill
24
+ newpath
25
+ 123.01 356.00 moveto
26
+ 130.09 356.00 lineto
27
+ 139.87 354.51 149.67 352.87 159.18 350.09 curveto
28
+ 165.76 347.43 173.01 343.63 175.57 336.54 curveto
29
+ 177.57 330.95 179.43 325.01 178.67 319.01 curveto
30
+ 178.25 315.98 176.68 312.56 173.49 311.70 curveto
31
+ 168.02 310.47 162.33 312.60 158.15 316.13 curveto
32
+ 150.25 322.60 142.35 329.07 134.06 335.04 curveto
33
+ 129.02 338.52 123.43 341.74 120.00 346.98 curveto
34
+ 118.62 349.97 118.52 355.98 123.01 356.00 curveto
35
+ closepath
36
+ 0.000 0.000 0.000 setrgbcolor
37
+ fill
38
+ newpath
39
+ 186.01 295.88 moveto
40
+ 208.72 298.99 231.38 302.44 254.09 305.51 curveto
41
+ 259.18 306.10 264.32 304.38 268.43 301.41 curveto
42
+ 276.14 295.88 283.83 290.29 291.13 284.21 curveto
43
+ 293.95 281.76 297.00 279.37 298.74 275.98 curveto
44
+ 295.36 271.26 289.34 269.82 284.22 267.75 curveto
45
+ 270.01 263.29 257.09 255.56 245.06 246.92 curveto
46
+ 242.37 245.18 239.54 242.97 236.17 243.15 curveto
47
+ 233.79 243.57 233.43 246.55 234.33 248.40 curveto
48
+ 237.75 256.63 241.37 264.78 245.06 272.90 curveto
49
+ 246.33 276.04 247.84 279.40 247.26 282.85 curveto
50
+ 245.80 285.38 243.50 287.79 240.77 288.83 curveto
51
+ 230.74 289.51 220.72 288.03 210.75 287.04 curveto
52
+ 170.26 282.13 129.46 277.97 89.97 267.31 curveto
53
+ 82.35 265.62 74.93 261.94 66.95 262.86 curveto
54
+ 63.31 263.17 59.95 264.65 56.61 266.04 curveto
55
+ 53.57 258.57 50.45 251.13 47.47 243.64 curveto
56
+ 43.26 233.09 38.75 222.42 31.56 213.51 curveto
57
+ 29.38 210.97 25.62 207.84 22.21 210.12 curveto
58
+ 18.16 213.48 17.08 219.05 15.74 223.88 curveto
59
+ 14.18 230.95 12.22 239.48 17.41 245.56 curveto
60
+ 24.69 253.73 31.83 262.05 38.15 270.99 curveto
61
+ 41.18 275.04 42.83 279.99 43.05 285.03 curveto
62
+ 43.37 288.72 42.34 292.96 44.83 296.12 curveto
63
+ 46.36 297.87 48.82 296.55 50.27 295.39 curveto
64
+ 55.41 291.38 58.98 285.34 60.35 279.00 curveto
65
+ 102.38 283.59 143.97 291.40 186.01 295.88 curveto
66
+ closepath
67
+ 0.000 0.000 0.000 setrgbcolor
68
+ fill
69
+ newpath
70
+ 171.35 247.88 moveto
71
+ 177.72 250.47 185.25 252.08 191.63 248.58 curveto
72
+ 198.97 244.46 206.20 240.03 212.79 234.76 curveto
73
+ 215.76 232.24 219.18 229.25 219.19 225.01 curveto
74
+ 219.29 221.43 215.86 219.21 212.81 218.31 curveto
75
+ 202.61 215.22 193.91 208.80 185.69 202.24 curveto
76
+ 175.20 194.59 164.82 186.78 154.74 178.60 curveto
77
+ 161.24 171.38 166.08 162.69 168.41 153.23 curveto
78
+ 182.72 155.01 197.08 156.48 211.44 157.81 curveto
79
+ 230.07 160.45 248.64 163.50 267.13 167.01 curveto
80
+ 272.02 168.28 277.46 169.72 282.27 167.36 curveto
81
+ 292.13 162.80 301.54 156.98 309.31 149.32 curveto
82
+ 312.18 146.75 312.67 140.98 308.85 139.09 curveto
83
+ 304.88 137.32 300.43 138.35 296.28 138.69 curveto
84
+ 277.94 140.56 259.51 141.63 241.09 142.21 curveto
85
+ 217.91 140.81 194.69 139.71 171.59 137.24 curveto
86
+ 172.68 129.83 173.23 122.36 173.57 114.88 curveto
87
+ 176.00 87.76 176.91 59.90 169.79 33.37 curveto
88
+ 167.91 25.86 165.71 18.24 161.41 11.71 curveto
89
+ 158.83 7.84 154.89 4.30 150.04 4.01 curveto
90
+ 146.06 3.83 142.67 6.33 139.97 8.97 curveto
91
+ 126.97 21.54 112.47 32.43 97.55 42.61 curveto
92
+ 93.42 45.47 88.94 47.96 85.55 51.74 curveto
93
+ 87.21 53.39 89.63 53.98 91.90 53.48 curveto
94
+ 104.66 51.13 117.35 48.44 130.07 45.93 curveto
95
+ 135.08 45.46 141.93 44.99 144.82 50.07 curveto
96
+ 149.04 57.73 149.63 66.69 150.94 75.17 curveto
97
+ 154.16 95.20 152.67 115.59 150.43 135.63 curveto
98
+ 126.34 133.69 102.29 130.67 78.62 125.72 curveto
99
+ 64.75 122.55 50.62 120.67 36.74 117.53 curveto
100
+ 32.74 116.28 28.37 114.02 24.20 116.07 curveto
101
+ 16.24 119.54 7.59 123.02 2.13 130.11 curveto
102
+ -0.48 133.02 0.13 139.29 4.93 139.09 curveto
103
+ 24.33 139.43 43.77 139.99 63.06 142.25 curveto
104
+ 83.15 144.88 103.33 146.74 123.48 148.84 curveto
105
+ 131.41 149.52 139.31 150.68 147.28 151.02 curveto
106
+ 144.96 160.27 142.15 169.42 138.22 178.12 curveto
107
+ 137.13 180.69 135.77 183.23 135.43 186.04 curveto
108
+ 135.31 188.33 137.84 190.29 140.02 189.45 curveto
109
+ 143.94 188.11 147.38 185.66 150.45 182.92 curveto
110
+ 159.12 195.79 167.92 208.58 176.96 221.19 curveto
111
+ 178.66 223.40 179.18 226.97 176.99 229.04 curveto
112
+ 173.79 232.14 168.73 232.58 164.67 231.10 curveto
113
+ 147.52 224.93 130.41 218.67 113.17 212.75 curveto
114
+ 108.93 210.84 104.62 208.77 99.88 208.63 curveto
115
+ 91.62 208.01 83.78 212.39 78.49 218.48 curveto
116
+ 76.77 220.49 75.35 223.17 76.03 225.88 curveto
117
+ 76.88 228.25 79.75 228.59 81.92 228.60 curveto
118
+ 94.12 228.46 106.66 227.77 118.47 231.46 curveto
119
+ 136.22 236.50 153.93 241.76 171.35 247.88 curveto
120
+ closepath
121
+ 0.000 0.000 0.000 setrgbcolor
122
+ fill
123
+ %%EOF