dynflow 0.7.6 → 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. data/README.md +11 -3
  2. data/doc/pages/.gitignore +7 -0
  3. data/doc/pages/Gemfile +8 -0
  4. data/doc/pages/Rakefile +26 -0
  5. data/doc/pages/_config.yml +38 -0
  6. data/doc/pages/plugins/alert_block.rb +27 -0
  7. data/doc/pages/plugins/div_tag.rb +24 -0
  8. data/doc/pages/plugins/graphviz.rb +121 -0
  9. data/doc/pages/plugins/plantuml.rb +85 -0
  10. data/doc/pages/plugins/play.rb +13 -0
  11. data/doc/pages/plugins/tags.rb +138 -0
  12. data/doc/pages/plugins/toc.rb +20 -0
  13. data/doc/pages/source/.nojekyll +0 -0
  14. data/doc/pages/source/404.md +6 -0
  15. data/doc/pages/source/_includes/disqus.html +25 -0
  16. data/doc/pages/source/_includes/google_analytics.html +12 -0
  17. data/doc/pages/source/_includes/google_plus_one.html +2 -0
  18. data/doc/pages/source/_includes/menu.html +19 -0
  19. data/doc/pages/source/_includes/menu_brand.html +2 -0
  20. data/doc/pages/source/_includes/menu_right.html +1 -0
  21. data/doc/pages/source/_includes/post_item.html +10 -0
  22. data/doc/pages/source/_includes/scroll_to.html +24 -0
  23. data/doc/pages/source/_includes/twitter_sharing.html +9 -0
  24. data/doc/pages/source/_layouts/default.html +70 -0
  25. data/doc/pages/source/_layouts/page.html +47 -0
  26. data/doc/pages/source/_layouts/post.html +19 -0
  27. data/doc/pages/source/_layouts/presentation.html +39 -0
  28. data/doc/pages/source/_layouts/tag_page.html +12 -0
  29. data/doc/pages/source/_sass/_bootstrap-compass.scss +9 -0
  30. data/doc/pages/source/_sass/_bootstrap-mincer.scss +19 -0
  31. data/doc/pages/source/_sass/_bootstrap-sprockets.scss +9 -0
  32. data/doc/pages/source/_sass/_bootstrap-variables.sass +865 -0
  33. data/doc/pages/source/_sass/_bootstrap.scss +50 -0
  34. data/doc/pages/source/_sass/_specific.scss +16 -0
  35. data/doc/pages/source/_sass/_style.scss +172 -0
  36. data/doc/pages/source/_sass/bootstrap/_alerts.scss +73 -0
  37. data/doc/pages/source/_sass/bootstrap/_badges.scss +67 -0
  38. data/doc/pages/source/_sass/bootstrap/_breadcrumbs.scss +26 -0
  39. data/doc/pages/source/_sass/bootstrap/_button-groups.scss +243 -0
  40. data/doc/pages/source/_sass/bootstrap/_buttons.scss +160 -0
  41. data/doc/pages/source/_sass/bootstrap/_carousel.scss +269 -0
  42. data/doc/pages/source/_sass/bootstrap/_close.scss +36 -0
  43. data/doc/pages/source/_sass/bootstrap/_code.scss +69 -0
  44. data/doc/pages/source/_sass/bootstrap/_component-animations.scss +38 -0
  45. data/doc/pages/source/_sass/bootstrap/_dropdowns.scss +214 -0
  46. data/doc/pages/source/_sass/bootstrap/_forms.scss +570 -0
  47. data/doc/pages/source/_sass/bootstrap/_glyphicons.scss +301 -0
  48. data/doc/pages/source/_sass/bootstrap/_grid.scss +84 -0
  49. data/doc/pages/source/_sass/bootstrap/_input-groups.scss +166 -0
  50. data/doc/pages/source/_sass/bootstrap/_jumbotron.scss +50 -0
  51. data/doc/pages/source/_sass/bootstrap/_labels.scss +66 -0
  52. data/doc/pages/source/_sass/bootstrap/_list-group.scss +124 -0
  53. data/doc/pages/source/_sass/bootstrap/_media.scss +61 -0
  54. data/doc/pages/source/_sass/bootstrap/_mixins.scss +39 -0
  55. data/doc/pages/source/_sass/bootstrap/_modals.scss +148 -0
  56. data/doc/pages/source/_sass/bootstrap/_navbar.scss +663 -0
  57. data/doc/pages/source/_sass/bootstrap/_navs.scss +244 -0
  58. data/doc/pages/source/_sass/bootstrap/_normalize.scss +427 -0
  59. data/doc/pages/source/_sass/bootstrap/_pager.scss +54 -0
  60. data/doc/pages/source/_sass/bootstrap/_pagination.scss +88 -0
  61. data/doc/pages/source/_sass/bootstrap/_panels.scss +265 -0
  62. data/doc/pages/source/_sass/bootstrap/_popovers.scss +135 -0
  63. data/doc/pages/source/_sass/bootstrap/_print.scss +107 -0
  64. data/doc/pages/source/_sass/bootstrap/_progress-bars.scss +87 -0
  65. data/doc/pages/source/_sass/bootstrap/_responsive-embed.scss +35 -0
  66. data/doc/pages/source/_sass/bootstrap/_responsive-utilities.scss +177 -0
  67. data/doc/pages/source/_sass/bootstrap/_scaffolding.scss +150 -0
  68. data/doc/pages/source/_sass/bootstrap/_tables.scss +234 -0
  69. data/doc/pages/source/_sass/bootstrap/_theme.scss +273 -0
  70. data/doc/pages/source/_sass/bootstrap/_thumbnails.scss +38 -0
  71. data/doc/pages/source/_sass/bootstrap/_tooltip.scss +103 -0
  72. data/doc/pages/source/_sass/bootstrap/_type.scss +298 -0
  73. data/doc/pages/source/_sass/bootstrap/_utilities.scss +56 -0
  74. data/doc/pages/source/_sass/bootstrap/_variables.scss +862 -0
  75. data/doc/pages/source/_sass/bootstrap/_wells.scss +29 -0
  76. data/doc/pages/source/_sass/bootstrap/mixins/_alerts.scss +14 -0
  77. data/doc/pages/source/_sass/bootstrap/mixins/_background-variant.scss +11 -0
  78. data/doc/pages/source/_sass/bootstrap/mixins/_border-radius.scss +18 -0
  79. data/doc/pages/source/_sass/bootstrap/mixins/_buttons.scss +52 -0
  80. data/doc/pages/source/_sass/bootstrap/mixins/_center-block.scss +7 -0
  81. data/doc/pages/source/_sass/bootstrap/mixins/_clearfix.scss +22 -0
  82. data/doc/pages/source/_sass/bootstrap/mixins/_forms.scss +88 -0
  83. data/doc/pages/source/_sass/bootstrap/mixins/_gradients.scss +58 -0
  84. data/doc/pages/source/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
  85. data/doc/pages/source/_sass/bootstrap/mixins/_grid.scss +122 -0
  86. data/doc/pages/source/_sass/bootstrap/mixins/_hide-text.scss +21 -0
  87. data/doc/pages/source/_sass/bootstrap/mixins/_image.scss +33 -0
  88. data/doc/pages/source/_sass/bootstrap/mixins/_labels.scss +12 -0
  89. data/doc/pages/source/_sass/bootstrap/mixins/_list-group.scss +31 -0
  90. data/doc/pages/source/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  91. data/doc/pages/source/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  92. data/doc/pages/source/_sass/bootstrap/mixins/_opacity.scss +8 -0
  93. data/doc/pages/source/_sass/bootstrap/mixins/_pagination.scss +23 -0
  94. data/doc/pages/source/_sass/bootstrap/mixins/_panels.scss +24 -0
  95. data/doc/pages/source/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
  96. data/doc/pages/source/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
  97. data/doc/pages/source/_sass/bootstrap/mixins/_resize.scss +6 -0
  98. data/doc/pages/source/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
  99. data/doc/pages/source/_sass/bootstrap/mixins/_size.scss +10 -0
  100. data/doc/pages/source/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
  101. data/doc/pages/source/_sass/bootstrap/mixins/_table-row.scss +28 -0
  102. data/doc/pages/source/_sass/bootstrap/mixins/_text-emphasis.scss +11 -0
  103. data/doc/pages/source/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
  104. data/doc/pages/source/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  105. data/doc/pages/source/atom.xml +32 -0
  106. data/doc/pages/source/bootstrap/config.json +429 -0
  107. data/doc/pages/source/bootstrap/css/bootstrap-theme.css +479 -0
  108. data/doc/pages/source/bootstrap/css/bootstrap-theme.min.css +10 -0
  109. data/doc/pages/source/bootstrap/css/bootstrap.css +6564 -0
  110. data/doc/pages/source/bootstrap/css/bootstrap.min.css +10 -0
  111. data/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  112. data/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
  113. data/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  114. data/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  115. data/doc/pages/source/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
  116. data/doc/pages/source/bootstrap/js/bootstrap.js +2309 -0
  117. data/doc/pages/source/bootstrap/js/bootstrap.min.js +12 -0
  118. data/doc/pages/source/css/app.scss +10 -0
  119. data/doc/pages/source/css/syntax.css +60 -0
  120. data/doc/pages/source/documentation/index.md +977 -0
  121. data/doc/pages/source/faq/index.md +16 -0
  122. data/doc/pages/source/images/dynflow-logos.svg +423 -0
  123. data/doc/pages/source/images/logo-long.png +0 -0
  124. data/doc/pages/source/images/logo-long.svg +116 -0
  125. data/doc/pages/source/images/logo-square.png +0 -0
  126. data/doc/pages/source/images/logo-square.svg +75 -0
  127. data/doc/pages/source/images/noise.png +0 -0
  128. data/doc/pages/source/images/screenshot.png +0 -0
  129. data/doc/pages/source/index.md +64 -0
  130. data/doc/pages/source/media/index.md +20 -0
  131. data/doc/pages/source/projects/index.md +32 -0
  132. data/dynflow.gemspec +2 -3
  133. data/examples/sub_plans.rb +37 -0
  134. data/lib/dynflow/action.rb +28 -8
  135. data/lib/dynflow/action/polling.rb +6 -5
  136. data/lib/dynflow/action/with_sub_plans.rb +162 -0
  137. data/lib/dynflow/execution_plan.rb +25 -7
  138. data/lib/dynflow/execution_plan/steps/abstract.rb +5 -2
  139. data/lib/dynflow/execution_plan/steps/plan_step.rb +6 -2
  140. data/lib/dynflow/execution_plan/steps/run_step.rb +4 -0
  141. data/lib/dynflow/persistence.rb +5 -0
  142. data/lib/dynflow/persistence_adapters/sequel.rb +12 -2
  143. data/lib/dynflow/persistence_adapters/sequel_migrations/003_parent_action.rb +9 -0
  144. data/lib/dynflow/version.rb +1 -1
  145. data/lib/dynflow/web_console.rb +21 -7
  146. data/lib/dynflow/world.rb +26 -2
  147. data/test/action_test.rb +107 -0
  148. data/test/persistance_adapters_test.rb +2 -2
  149. data/test/test_helper.rb +1 -1
  150. data/web/views/flow_step.erb +3 -0
  151. metadata +137 -4
@@ -0,0 +1,16 @@
1
+ ---
2
+ layout: page
3
+ title: FAQ
4
+ ---
5
+
6
+ If you don't find your answer here try questions on
7
+ [Github issues](https://github.com/dynflow/dynflow/issues?q=is%3Aissue+label%3Aquestion) or give as a
8
+ [new question](https://github.com/Dynflow/dynflow/issues/new?labels=question).
9
+
10
+ - **A question**
11
+
12
+ Answer.
13
+
14
+ - **A question**
15
+
16
+ Answer.
@@ -0,0 +1,423 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="1052.3622"
13
+ height="744.09448"
14
+ id="svg2"
15
+ version="1.1"
16
+ inkscape:version="0.91 r13322 custom"
17
+ viewBox="0 0 1052.3622 744.09449"
18
+ sodipodi:docname="dynflow-logos.svg"
19
+ inkscape:export-filename="/home/duffy/Repositories/osas-branding/logos/DynFlow/dynflow-logos.png"
20
+ inkscape:export-xdpi="89.969025"
21
+ inkscape:export-ydpi="89.969025">
22
+ <defs
23
+ id="defs4">
24
+ <filter
25
+ inkscape:collect="always"
26
+ style="color-interpolation-filters:sRGB"
27
+ id="filter4206"
28
+ x="-0.050097881"
29
+ width="1.1001958"
30
+ y="-0.046070758"
31
+ height="1.0921415">
32
+ <feGaussianBlur
33
+ inkscape:collect="always"
34
+ stdDeviation="2.9678387"
35
+ id="feGaussianBlur4208" />
36
+ </filter>
37
+ <clipPath
38
+ clipPathUnits="userSpaceOnUse"
39
+ id="clipPath4222">
40
+ <path
41
+ inkscape:connector-curvature="0"
42
+ id="path4224"
43
+ d="m 319.57617,646.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69171 4.30936,14.20695 17.86665,24.7003 32.70011,25.33096 14.60164,1.75839 29.12383,-5.00022 38.44365,-16.12402 3.5756,-5.27029 0.7527,2.37796 0.58551,4.6843 -0.5973,2.93211 -1.1946,5.86422 -1.7919,8.79633 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.51187 15.88176,-16.26077 21.18126,-26.11295 8.50104,-16.12249 10.02499,-35.21786 5.68124,-52.78153 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.78636 -15.18157,44.18741 -8.24774,6.2709 -22.66815,7.39509 -29.35913,-1.71954 -5.48009,-9.03716 -3.57758,-20.38356 -1.62332,-30.20626 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
44
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#289fd5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
45
+ </clipPath>
46
+ <filter
47
+ inkscape:collect="always"
48
+ style="color-interpolation-filters:sRGB"
49
+ id="filter4250"
50
+ x="-0.02504894"
51
+ width="1.0500979"
52
+ y="-0.023035379"
53
+ height="1.0460708">
54
+ <feGaussianBlur
55
+ inkscape:collect="always"
56
+ stdDeviation="1.4839193"
57
+ id="feGaussianBlur4252" />
58
+ </filter>
59
+ <filter
60
+ inkscape:collect="always"
61
+ style="color-interpolation-filters:sRGB"
62
+ id="filter4268"
63
+ x="-0.049382109"
64
+ width="1.0987642"
65
+ y="-0.04669315"
66
+ height="1.0933863">
67
+ <feGaussianBlur
68
+ inkscape:collect="always"
69
+ stdDeviation="2.951875"
70
+ id="feGaussianBlur4270" />
71
+ </filter>
72
+ <clipPath
73
+ clipPathUnits="userSpaceOnUse"
74
+ id="clipPath4280">
75
+ <path
76
+ inkscape:connector-curvature="0"
77
+ id="path4282"
78
+ d="m 335.77734,798.49623 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.44271 8.33333,-42.88542 12.5,-64.32813 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64914 -26.05465,75.03126 z"
79
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#f78a29;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
80
+ </clipPath>
81
+ <filter
82
+ inkscape:collect="always"
83
+ style="color-interpolation-filters:sRGB"
84
+ id="filter4290"
85
+ x="-0.024691054"
86
+ width="1.0493821"
87
+ y="-0.023346575"
88
+ height="1.0466932">
89
+ <feGaussianBlur
90
+ inkscape:collect="always"
91
+ stdDeviation="1.4759375"
92
+ id="feGaussianBlur4292" />
93
+ </filter>
94
+ </defs>
95
+ <sodipodi:namedview
96
+ id="base"
97
+ pagecolor="#ffffff"
98
+ bordercolor="#666666"
99
+ borderopacity="1.0"
100
+ inkscape:pageopacity="0.0"
101
+ inkscape:pageshadow="2"
102
+ inkscape:zoom="0.70710678"
103
+ inkscape:cx="-257.0386"
104
+ inkscape:cy="423.54632"
105
+ inkscape:document-units="px"
106
+ inkscape:current-layer="layer1"
107
+ showgrid="false"
108
+ inkscape:window-width="2560"
109
+ inkscape:window-height="1397"
110
+ inkscape:window-x="2560"
111
+ inkscape:window-y="0"
112
+ inkscape:window-maximized="1" />
113
+ <metadata
114
+ id="metadata7">
115
+ <rdf:RDF>
116
+ <cc:Work
117
+ rdf:about="">
118
+ <dc:format>image/svg+xml</dc:format>
119
+ <dc:type
120
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
121
+ <dc:title />
122
+ </cc:Work>
123
+ </rdf:RDF>
124
+ </metadata>
125
+ <g
126
+ inkscape:label="Layer 1"
127
+ inkscape:groupmode="layer"
128
+ id="layer1"
129
+ transform="translate(0,-308.26771)">
130
+ <g
131
+ id="g4294"
132
+ transform="matrix(0.71938893,0,0,0.71938893,336.68184,175.73235)">
133
+ <path
134
+ inkscape:connector-curvature="0"
135
+ id="path4278"
136
+ d="m 275.77734,598.49623 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.44271 8.33333,-42.88542 12.5,-64.32813 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64914 -26.05465,75.03126 z"
137
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:none;fill-opacity:1;stroke:#f78a29;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4290)" />
138
+ <g
139
+ transform="translate(-60,-200)"
140
+ clip-path="url(#clipPath4280)"
141
+ id="g4274">
142
+ <path
143
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#f78a29;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
144
+ d="m 335.77734,798.49623 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.44271 8.33333,-42.88542 12.5,-64.32813 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64914 -26.05465,75.03126 z"
145
+ id="path4145"
146
+ inkscape:connector-curvature="0" />
147
+ <path
148
+ inkscape:connector-curvature="0"
149
+ id="path4254"
150
+ d="m 335.77734,798.49623 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.44271 8.33333,-42.88542 12.5,-64.32813 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64914 -26.05465,75.03126 z"
151
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:none;fill-opacity:1;stroke:#4a2503;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4268)" />
152
+ </g>
153
+ <path
154
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:none;fill-opacity:1;stroke:#289fd5;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4250)"
155
+ d="m 319.57617,446.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69171 4.30936,14.20695 17.86665,24.7003 32.70011,25.33096 14.60164,1.75839 29.12383,-5.00022 38.44365,-16.12402 3.5756,-5.27029 0.7527,2.37796 0.58551,4.6843 -0.5973,2.93211 -1.1946,5.86422 -1.7919,8.79633 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.51187 15.88176,-16.26077 21.18126,-26.11295 8.50104,-16.12249 10.02499,-35.21786 5.68124,-52.78153 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.78636 -15.18157,44.18741 -8.24774,6.2709 -22.66815,7.39509 -29.35913,-1.71954 -5.48009,-9.03716 -3.57758,-20.38356 -1.62332,-30.20626 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
156
+ id="path4210"
157
+ inkscape:connector-curvature="0" />
158
+ <g
159
+ transform="translate(0,-200)"
160
+ clip-path="url(#clipPath4222)"
161
+ id="g4218">
162
+ <path
163
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#289fd5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
164
+ d="m 319.57617,646.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69171 4.30936,14.20695 17.86665,24.7003 32.70011,25.33096 14.60164,1.75839 29.12383,-5.00022 38.44365,-16.12402 3.5756,-5.27029 0.7527,2.37796 0.58551,4.6843 -0.5973,2.93211 -1.1946,5.86422 -1.7919,8.79633 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.51187 15.88176,-16.26077 21.18126,-26.11295 8.50104,-16.12249 10.02499,-35.21786 5.68124,-52.78153 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.78636 -15.18157,44.18741 -8.24774,6.2709 -22.66815,7.39509 -29.35913,-1.71954 -5.48009,-9.03716 -3.57758,-20.38356 -1.62332,-30.20626 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
165
+ id="path4143"
166
+ inkscape:connector-curvature="0" />
167
+ <path
168
+ inkscape:connector-curvature="0"
169
+ id="path4184"
170
+ d="m 319.57617,646.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69171 4.30936,14.20695 17.86665,24.7003 32.70011,25.33096 14.60164,1.75839 29.12383,-5.00022 38.44365,-16.12402 3.5756,-5.27029 0.7527,2.37796 0.58551,4.6843 -0.5973,2.93211 -1.1946,5.86422 -1.7919,8.79633 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.51187 15.88176,-16.26077 21.18126,-26.11295 8.50104,-16.12249 10.02499,-35.21786 5.68124,-52.78153 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.78636 -15.18157,44.18741 -8.24774,6.2709 -22.66815,7.39509 -29.35913,-1.71954 -5.48009,-9.03716 -3.57758,-20.38356 -1.62332,-30.20626 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
171
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:none;fill-opacity:1;stroke:#09222e;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4206)" />
172
+ </g>
173
+ <g
174
+ transform="translate(0,-200)"
175
+ id="text4101"
176
+ style="font-style:normal;font-weight:normal;font-size:120.45562744px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1">
177
+ <path
178
+ inkscape:connector-curvature="0"
179
+ id="path4150"
180
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
181
+ d="m 449.94836,755.46307 q 8.08594,0 13.125,-7.4414 5.09766,-7.44141 5.09766,-19.45313 0,-5.44922 -2.87109,-8.49609 -2.8125,-3.04688 -7.91016,-3.04688 -7.96875,0 -13.125,7.38282 -5.15625,7.32421 -5.15625,18.80859 0,5.97656 2.75391,9.14062 2.8125,3.10547 8.08593,3.10547 z m 22.08985,-42.48047 6.79687,-35.15625 21.15235,0 -17.75391,91.17188 -21.15234,0 1.93359,-9.49219 q -4.80469,5.74219 -10.07812,8.4961 -5.27344,2.69531 -11.54297,2.69531 -11.07422,0 -17.51953,-7.03125 -6.44532,-7.03125 -6.44532,-19.16016 0,-7.55859 2.22657,-14.70703 2.28515,-7.14844 6.5039,-13.00781 5.33203,-7.38281 12.01172,-11.19141 6.73828,-3.80859 14.41406,-3.80859 6.73828,0 11.42578,2.7539 4.7461,2.69532 8.02735,8.4375 z" />
182
+ <path
183
+ inkscape:connector-curvature="0"
184
+ id="path4152"
185
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
186
+ d="m 498.81752,703.37323 19.80469,0 9.02344,45.46875 23.26171,-45.46875 22.44141,0 -41.54297,71.83594 q -6.97265,12.1289 -12.89062,15.8789 -5.91797,3.8086 -15.29297,3.8086 l -12.71485,0 2.16797,-13.76953 6.6211,0 q 5.15625,0 7.96875,-1.75782 2.87109,-1.69922 5.09765,-6.03515 l 1.9336,-3.51563 -15.87891,-66.44531 z" />
187
+ <path
188
+ inkscape:connector-curvature="0"
189
+ id="path4154"
190
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
191
+ d="m 638.3898,729.03729 -7.79297,39.96094 -21.03515,0 6.62109,-34.21875 q 0.70312,-3.33984 1.05469,-5.625 0.41015,-2.34375 0.41015,-3.69141 0,-3.75 -2.10937,-5.80078 -2.05078,-2.05078 -5.85938,-2.05078 -6.5039,0 -11.1914,5.09766 -4.62891,5.03906 -6.44532,14.0039 l -6.32812,32.28516 -21.03516,0 12.77344,-65.625 21.09375,0 -1.93359,9.60937 q 5.80078,-5.68359 11.66015,-8.4375 5.85938,-2.7539 12.2461,-2.7539 9.08203,0 14.0039,4.74609 4.92188,4.7461 4.92188,13.35938 0,1.875 -0.29297,4.16015 -0.23438,2.28516 -0.76172,4.98047 z" />
192
+ <path
193
+ inkscape:connector-curvature="0"
194
+ id="path4156"
195
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
196
+ d="m 656.9035,681.51776 60.82032,0 -3.33985,17.05078 -38.26172,0 -3.16406,16.28906 36.03516,0 -3.39844,17.05079 -35.97656,0 -7.20703,37.08984 -22.5586,0 17.05078,-87.48047 z" />
197
+ <path
198
+ inkscape:connector-curvature="0"
199
+ id="path4158"
200
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
201
+ d="m 726.54999,677.82635 21.09375,0 -17.75391,91.17188 -21.03515,0 17.69531,-91.17188 z" />
202
+ <path
203
+ inkscape:connector-curvature="0"
204
+ id="path4160"
205
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
206
+ d="m 782.21213,716.7912 q -8.14453,0 -13.41797,7.38281 -5.27344,7.38281 -5.27344,18.80859 0,6.21094 2.8125,9.49219 2.8711,3.22266 8.32031,3.22266 8.14454,0 13.41797,-7.38281 5.27344,-7.44141 5.27344,-18.92579 0,-6.15234 -2.87109,-9.375 -2.8125,-3.22265 -8.26172,-3.22265 z m 1.69922,-15 q 14.64843,0 23.02734,7.4414 8.37891,7.44141 8.37891,20.27344 0,7.44141 -2.63672,14.47266 -2.63672,6.97265 -7.67578,12.77344 -5.97657,6.91406 -14.1211,10.42968 -8.14453,3.51563 -18.16406,3.51563 -14.47266,0 -22.85156,-7.44141 -8.32031,-7.4414 -8.32031,-20.27344 0,-7.38281 2.69531,-14.41406 2.69531,-7.08984 7.73437,-12.94922 5.85938,-6.79687 13.94532,-10.3125 8.14453,-3.51562 17.98828,-3.51562 z" />
207
+ <path
208
+ inkscape:connector-curvature="0"
209
+ id="path4162"
210
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
211
+ d="m 818.94067,703.37323 19.33594,0 2.28516,45.11719 19.80469,-45.11719 16.64062,0 2.40234,45 19.6875,-45 20.625,0 -30,65.625 -22.26562,0 -2.16797,-45.11719 -20.03906,45.11719 -21.73828,0 -4.57032,-65.625 z" />
212
+ </g>
213
+ </g>
214
+ <g
215
+ id="g4312"
216
+ transform="matrix(0.71938893,0,0,0.71938893,335.40082,175.73235)">
217
+ <g
218
+ transform="translate(0,100)"
219
+ style="font-style:normal;font-weight:normal;font-size:120.45562744px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
220
+ id="g4164">
221
+ <path
222
+ inkscape:connector-curvature="0"
223
+ d="m 449.94836,755.46307 q 8.08594,0 13.125,-7.4414 5.09766,-7.44141 5.09766,-19.45313 0,-5.44922 -2.87109,-8.49609 -2.8125,-3.04688 -7.91016,-3.04688 -7.96875,0 -13.125,7.38282 -5.15625,7.32421 -5.15625,18.80859 0,5.97656 2.75391,9.14062 2.8125,3.10547 8.08593,3.10547 z m 22.08985,-42.48047 6.79687,-35.15625 21.15235,0 -17.75391,91.17188 -21.15234,0 1.93359,-9.49219 q -4.80469,5.74219 -10.07812,8.4961 -5.27344,2.69531 -11.54297,2.69531 -11.07422,0 -17.51953,-7.03125 -6.44532,-7.03125 -6.44532,-19.16016 0,-7.55859 2.22657,-14.70703 2.28515,-7.14844 6.5039,-13.00781 5.33203,-7.38281 12.01172,-11.19141 6.73828,-3.80859 14.41406,-3.80859 6.73828,0 11.42578,2.7539 4.7461,2.69532 8.02735,8.4375 z"
224
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
225
+ id="path4166" />
226
+ <path
227
+ inkscape:connector-curvature="0"
228
+ d="m 498.81752,703.37323 19.80469,0 9.02344,45.46875 23.26171,-45.46875 22.44141,0 -41.54297,71.83594 q -6.97265,12.1289 -12.89062,15.8789 -5.91797,3.8086 -15.29297,3.8086 l -12.71485,0 2.16797,-13.76953 6.6211,0 q 5.15625,0 7.96875,-1.75782 2.87109,-1.69922 5.09765,-6.03515 l 1.9336,-3.51563 -15.87891,-66.44531 z"
229
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
230
+ id="path4168" />
231
+ <path
232
+ inkscape:connector-curvature="0"
233
+ d="m 638.3898,729.03729 -7.79297,39.96094 -21.03515,0 6.62109,-34.21875 q 0.70312,-3.33984 1.05469,-5.625 0.41015,-2.34375 0.41015,-3.69141 0,-3.75 -2.10937,-5.80078 -2.05078,-2.05078 -5.85938,-2.05078 -6.5039,0 -11.1914,5.09766 -4.62891,5.03906 -6.44532,14.0039 l -6.32812,32.28516 -21.03516,0 12.77344,-65.625 21.09375,0 -1.93359,9.60937 q 5.80078,-5.68359 11.66015,-8.4375 5.85938,-2.7539 12.2461,-2.7539 9.08203,0 14.0039,4.74609 4.92188,4.7461 4.92188,13.35938 0,1.875 -0.29297,4.16015 -0.23438,2.28516 -0.76172,4.98047 z"
234
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
235
+ id="path4170" />
236
+ <path
237
+ inkscape:connector-curvature="0"
238
+ d="m 656.9035,681.51776 60.82032,0 -3.33985,17.05078 -38.26172,0 -3.16406,16.28906 36.03516,0 -3.39844,17.05079 -35.97656,0 -7.20703,37.08984 -22.5586,0 17.05078,-87.48047 z"
239
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
240
+ id="path4172" />
241
+ <path
242
+ inkscape:connector-curvature="0"
243
+ d="m 726.54999,677.82635 21.09375,0 -17.75391,91.17188 -21.03515,0 17.69531,-91.17188 z"
244
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
245
+ id="path4174" />
246
+ <path
247
+ inkscape:connector-curvature="0"
248
+ d="m 782.21213,716.7912 q -8.14453,0 -13.41797,7.38281 -5.27344,7.38281 -5.27344,18.80859 0,6.21094 2.8125,9.49219 2.8711,3.22266 8.32031,3.22266 8.14454,0 13.41797,-7.38281 5.27344,-7.44141 5.27344,-18.92579 0,-6.15234 -2.87109,-9.375 -2.8125,-3.22265 -8.26172,-3.22265 z m 1.69922,-15 q 14.64843,0 23.02734,7.4414 8.37891,7.44141 8.37891,20.27344 0,7.44141 -2.63672,14.47266 -2.63672,6.97265 -7.67578,12.77344 -5.97657,6.91406 -14.1211,10.42968 -8.14453,3.51563 -18.16406,3.51563 -14.47266,0 -22.85156,-7.44141 -8.32031,-7.4414 -8.32031,-20.27344 0,-7.38281 2.69531,-14.41406 2.69531,-7.08984 7.73437,-12.94922 5.85938,-6.79687 13.94532,-10.3125 8.14453,-3.51562 17.98828,-3.51562 z"
249
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
250
+ id="path4176" />
251
+ <path
252
+ inkscape:connector-curvature="0"
253
+ d="m 818.94067,703.37323 19.33594,0 2.28516,45.11719 19.80469,-45.11719 16.64062,0 2.40234,45 19.6875,-45 20.625,0 -30,65.625 -22.26562,0 -2.16797,-45.11719 -20.03906,45.11719 -21.73828,0 -4.57032,-65.625 z"
254
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
255
+ id="path4178" />
256
+ </g>
257
+ <path
258
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#f78a29;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
259
+ d="m 275.77734,898.4962 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.4427 8.33333,-42.88539 12.5,-64.3281 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64913 -26.05465,75.03123 z"
260
+ id="path4180"
261
+ inkscape:connector-curvature="0" />
262
+ <path
263
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#289fd5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
264
+ d="m 319.57617,746.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69167 4.30936,14.207 17.86665,24.7003 32.70011,25.331 14.60164,1.7584 29.12383,-5.0002 38.44365,-16.124 3.5756,-5.2703 0.7527,2.3779 0.58551,4.6843 -0.5973,2.9321 -1.1946,5.8642 -1.7919,8.7963 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.5119 15.88176,-16.2608 21.18126,-26.1129 8.50104,-16.12253 10.02499,-35.2179 5.68124,-52.78157 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.7864 -15.18157,44.1874 -8.24774,6.2709 -22.66815,7.3951 -29.35913,-1.7195 -5.48009,-9.0372 -3.57758,-20.38359 -1.62332,-30.20629 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
265
+ id="path4182"
266
+ inkscape:connector-curvature="0" />
267
+ </g>
268
+ <g
269
+ id="g4499"
270
+ transform="matrix(0.62835206,0,0,0.62835206,367.01385,180.13943)">
271
+ <g
272
+ transform="translate(453.96256,-43.840621)"
273
+ id="g4440">
274
+ <g
275
+ id="g4430"
276
+ transform="translate(18.126518,-12)">
277
+ <path
278
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:none;fill-opacity:1;stroke:#f78a29;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4290)"
279
+ d="m -744.82096,598.49623 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.44271 8.33333,-42.88542 12.5,-64.32813 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64914 -26.05465,75.03126 z"
280
+ id="path4382"
281
+ inkscape:connector-curvature="0" />
282
+ <g
283
+ id="g4384"
284
+ clip-path="url(#clipPath4280)"
285
+ transform="translate(-1080.5983,-200)">
286
+ <path
287
+ inkscape:connector-curvature="0"
288
+ id="path4386"
289
+ d="m 335.77734,798.49623 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.44271 8.33333,-42.88542 12.5,-64.32813 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64914 -26.05465,75.03126 z"
290
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#f78a29;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
291
+ <path
292
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:none;fill-opacity:1;stroke:#4a2503;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4268)"
293
+ d="m 335.77734,798.49623 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.44271 8.33333,-42.88542 12.5,-64.32813 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64914 -26.05465,75.03126 z"
294
+ id="path4388"
295
+ inkscape:connector-curvature="0" />
296
+ </g>
297
+ <path
298
+ inkscape:connector-curvature="0"
299
+ id="path4390"
300
+ d="m -701.02213,446.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69171 4.30936,14.20695 17.86665,24.7003 32.70011,25.33096 14.60164,1.75839 29.12383,-5.00022 38.44365,-16.12402 3.5756,-5.27029 0.7527,2.37796 0.58551,4.6843 -0.5973,2.93211 -1.1946,5.86422 -1.7919,8.79633 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.51187 15.88176,-16.26077 21.18126,-26.11295 8.50104,-16.12249 10.02499,-35.21786 5.68124,-52.78153 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.78636 -15.18157,44.18741 -8.24774,6.2709 -22.66815,7.39509 -29.35913,-1.71954 -5.48009,-9.03716 -3.57758,-20.38356 -1.62332,-30.20626 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
301
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:none;fill-opacity:1;stroke:#289fd5;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4250)" />
302
+ <g
303
+ id="g4392"
304
+ clip-path="url(#clipPath4222)"
305
+ transform="translate(-1020.5983,-200)">
306
+ <path
307
+ inkscape:connector-curvature="0"
308
+ id="path4394"
309
+ d="m 319.57617,646.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69171 4.30936,14.20695 17.86665,24.7003 32.70011,25.33096 14.60164,1.75839 29.12383,-5.00022 38.44365,-16.12402 3.5756,-5.27029 0.7527,2.37796 0.58551,4.6843 -0.5973,2.93211 -1.1946,5.86422 -1.7919,8.79633 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.51187 15.88176,-16.26077 21.18126,-26.11295 8.50104,-16.12249 10.02499,-35.21786 5.68124,-52.78153 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.78636 -15.18157,44.18741 -8.24774,6.2709 -22.66815,7.39509 -29.35913,-1.71954 -5.48009,-9.03716 -3.57758,-20.38356 -1.62332,-30.20626 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
310
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#289fd5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
311
+ <path
312
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:none;fill-opacity:1;stroke:#09222e;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4206)"
313
+ d="m 319.57617,646.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69171 4.30936,14.20695 17.86665,24.7003 32.70011,25.33096 14.60164,1.75839 29.12383,-5.00022 38.44365,-16.12402 3.5756,-5.27029 0.7527,2.37796 0.58551,4.6843 -0.5973,2.93211 -1.1946,5.86422 -1.7919,8.79633 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.51187 15.88176,-16.26077 21.18126,-26.11295 8.50104,-16.12249 10.02499,-35.21786 5.68124,-52.78153 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.78636 -15.18157,44.18741 -8.24774,6.2709 -22.66815,7.39509 -29.35913,-1.71954 -5.48009,-9.03716 -3.57758,-20.38356 -1.62332,-30.20626 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
314
+ id="path4396"
315
+ inkscape:connector-curvature="0" />
316
+ </g>
317
+ </g>
318
+ <g
319
+ transform="translate(-1372.7375,-61.407069)"
320
+ id="g4398"
321
+ style="font-style:normal;font-weight:normal;font-size:120.45562744px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1">
322
+ <path
323
+ inkscape:connector-curvature="0"
324
+ id="path4400"
325
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
326
+ d="m 449.94836,755.46307 q 8.08594,0 13.125,-7.4414 5.09766,-7.44141 5.09766,-19.45313 0,-5.44922 -2.87109,-8.49609 -2.8125,-3.04688 -7.91016,-3.04688 -7.96875,0 -13.125,7.38282 -5.15625,7.32421 -5.15625,18.80859 0,5.97656 2.75391,9.14062 2.8125,3.10547 8.08593,3.10547 z m 22.08985,-42.48047 6.79687,-35.15625 21.15235,0 -17.75391,91.17188 -21.15234,0 1.93359,-9.49219 q -4.80469,5.74219 -10.07812,8.4961 -5.27344,2.69531 -11.54297,2.69531 -11.07422,0 -17.51953,-7.03125 -6.44532,-7.03125 -6.44532,-19.16016 0,-7.55859 2.22657,-14.70703 2.28515,-7.14844 6.5039,-13.00781 5.33203,-7.38281 12.01172,-11.19141 6.73828,-3.80859 14.41406,-3.80859 6.73828,0 11.42578,2.7539 4.7461,2.69532 8.02735,8.4375 z" />
327
+ <path
328
+ inkscape:connector-curvature="0"
329
+ id="path4402"
330
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
331
+ d="m 498.81752,703.37323 19.80469,0 9.02344,45.46875 23.26171,-45.46875 22.44141,0 -41.54297,71.83594 q -6.97265,12.1289 -12.89062,15.8789 -5.91797,3.8086 -15.29297,3.8086 l -12.71485,0 2.16797,-13.76953 6.6211,0 q 5.15625,0 7.96875,-1.75782 2.87109,-1.69922 5.09765,-6.03515 l 1.9336,-3.51563 -15.87891,-66.44531 z" />
332
+ <path
333
+ inkscape:connector-curvature="0"
334
+ id="path4404"
335
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
336
+ d="m 638.3898,729.03729 -7.79297,39.96094 -21.03515,0 6.62109,-34.21875 q 0.70312,-3.33984 1.05469,-5.625 0.41015,-2.34375 0.41015,-3.69141 0,-3.75 -2.10937,-5.80078 -2.05078,-2.05078 -5.85938,-2.05078 -6.5039,0 -11.1914,5.09766 -4.62891,5.03906 -6.44532,14.0039 l -6.32812,32.28516 -21.03516,0 12.77344,-65.625 21.09375,0 -1.93359,9.60937 q 5.80078,-5.68359 11.66015,-8.4375 5.85938,-2.7539 12.2461,-2.7539 9.08203,0 14.0039,4.74609 4.92188,4.7461 4.92188,13.35938 0,1.875 -0.29297,4.16015 -0.23438,2.28516 -0.76172,4.98047 z" />
337
+ <path
338
+ inkscape:connector-curvature="0"
339
+ id="path4406"
340
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
341
+ d="m 656.9035,681.51776 60.82032,0 -3.33985,17.05078 -38.26172,0 -3.16406,16.28906 36.03516,0 -3.39844,17.05079 -35.97656,0 -7.20703,37.08984 -22.5586,0 17.05078,-87.48047 z" />
342
+ <path
343
+ inkscape:connector-curvature="0"
344
+ id="path4408"
345
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
346
+ d="m 726.54999,677.82635 21.09375,0 -17.75391,91.17188 -21.03515,0 17.69531,-91.17188 z" />
347
+ <path
348
+ inkscape:connector-curvature="0"
349
+ id="path4410"
350
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
351
+ d="m 782.21213,716.7912 q -8.14453,0 -13.41797,7.38281 -5.27344,7.38281 -5.27344,18.80859 0,6.21094 2.8125,9.49219 2.8711,3.22266 8.32031,3.22266 8.14454,0 13.41797,-7.38281 5.27344,-7.44141 5.27344,-18.92579 0,-6.15234 -2.87109,-9.375 -2.8125,-3.22265 -8.26172,-3.22265 z m 1.69922,-15 q 14.64843,0 23.02734,7.4414 8.37891,7.44141 8.37891,20.27344 0,7.44141 -2.63672,14.47266 -2.63672,6.97265 -7.67578,12.77344 -5.97657,6.91406 -14.1211,10.42968 -8.14453,3.51563 -18.16406,3.51563 -14.47266,0 -22.85156,-7.44141 -8.32031,-7.4414 -8.32031,-20.27344 0,-7.38281 2.69531,-14.41406 2.69531,-7.08984 7.73437,-12.94922 5.85938,-6.79687 13.94532,-10.3125 8.14453,-3.51562 17.98828,-3.51562 z" />
352
+ <path
353
+ inkscape:connector-curvature="0"
354
+ id="path4412"
355
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
356
+ d="m 818.94067,703.37323 19.33594,0 2.28516,45.11719 19.80469,-45.11719 16.64062,0 2.40234,45 19.6875,-45 20.625,0 -30,65.625 -22.26562,0 -2.16797,-45.11719 -20.03906,45.11719 -21.73828,0 -4.57032,-65.625 z" />
357
+ </g>
358
+ </g>
359
+ </g>
360
+ <g
361
+ id="g4519"
362
+ transform="matrix(0.65087618,0,0,0.65087618,372.64937,287.33021)">
363
+ <g
364
+ id="g4459"
365
+ transform="translate(453.96256,296.15938)">
366
+ <g
367
+ transform="translate(18.126518,-12)"
368
+ id="g4461">
369
+ <path
370
+ inkscape:connector-curvature="0"
371
+ id="path4495"
372
+ d="m -744.82096,598.49623 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.44271 8.33333,-42.88542 12.5,-64.32813 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64914 -26.05465,75.03126 z"
373
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#f78a29;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
374
+ <path
375
+ inkscape:connector-curvature="0"
376
+ id="path4497"
377
+ d="m -701.02213,446.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69171 4.30936,14.20695 17.86665,24.7003 32.70011,25.33096 14.60164,1.75839 29.12383,-5.00022 38.44365,-16.12402 3.5756,-5.27029 0.7527,2.37796 0.58551,4.6843 -0.5973,2.93211 -1.1946,5.86422 -1.7919,8.79633 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.51187 15.88176,-16.26077 21.18126,-26.11295 8.50104,-16.12249 10.02499,-35.21786 5.68124,-52.78153 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.78636 -15.18157,44.18741 -8.24774,6.2709 -22.66815,7.39509 -29.35913,-1.71954 -5.48009,-9.03716 -3.57758,-20.38356 -1.62332,-30.20626 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
378
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-15.00960922;word-spacing:0px;fill:#289fd5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
379
+ </g>
380
+ <g
381
+ style="font-style:normal;font-weight:normal;font-size:120.45562744px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
382
+ id="g4479"
383
+ transform="translate(-1372.7375,-61.407069)">
384
+ <path
385
+ d="m 449.94836,755.46307 q 8.08594,0 13.125,-7.4414 5.09766,-7.44141 5.09766,-19.45313 0,-5.44922 -2.87109,-8.49609 -2.8125,-3.04688 -7.91016,-3.04688 -7.96875,0 -13.125,7.38282 -5.15625,7.32421 -5.15625,18.80859 0,5.97656 2.75391,9.14062 2.8125,3.10547 8.08593,3.10547 z m 22.08985,-42.48047 6.79687,-35.15625 21.15235,0 -17.75391,91.17188 -21.15234,0 1.93359,-9.49219 q -4.80469,5.74219 -10.07812,8.4961 -5.27344,2.69531 -11.54297,2.69531 -11.07422,0 -17.51953,-7.03125 -6.44532,-7.03125 -6.44532,-19.16016 0,-7.55859 2.22657,-14.70703 2.28515,-7.14844 6.5039,-13.00781 5.33203,-7.38281 12.01172,-11.19141 6.73828,-3.80859 14.41406,-3.80859 6.73828,0 11.42578,2.7539 4.7461,2.69532 8.02735,8.4375 z"
386
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
387
+ id="path4481"
388
+ inkscape:connector-curvature="0" />
389
+ <path
390
+ d="m 498.81752,703.37323 19.80469,0 9.02344,45.46875 23.26171,-45.46875 22.44141,0 -41.54297,71.83594 q -6.97265,12.1289 -12.89062,15.8789 -5.91797,3.8086 -15.29297,3.8086 l -12.71485,0 2.16797,-13.76953 6.6211,0 q 5.15625,0 7.96875,-1.75782 2.87109,-1.69922 5.09765,-6.03515 l 1.9336,-3.51563 -15.87891,-66.44531 z"
391
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
392
+ id="path4483"
393
+ inkscape:connector-curvature="0" />
394
+ <path
395
+ d="m 638.3898,729.03729 -7.79297,39.96094 -21.03515,0 6.62109,-34.21875 q 0.70312,-3.33984 1.05469,-5.625 0.41015,-2.34375 0.41015,-3.69141 0,-3.75 -2.10937,-5.80078 -2.05078,-2.05078 -5.85938,-2.05078 -6.5039,0 -11.1914,5.09766 -4.62891,5.03906 -6.44532,14.0039 l -6.32812,32.28516 -21.03516,0 12.77344,-65.625 21.09375,0 -1.93359,9.60937 q 5.80078,-5.68359 11.66015,-8.4375 5.85938,-2.7539 12.2461,-2.7539 9.08203,0 14.0039,4.74609 4.92188,4.7461 4.92188,13.35938 0,1.875 -0.29297,4.16015 -0.23438,2.28516 -0.76172,4.98047 z"
396
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
397
+ id="path4485"
398
+ inkscape:connector-curvature="0" />
399
+ <path
400
+ d="m 656.9035,681.51776 60.82032,0 -3.33985,17.05078 -38.26172,0 -3.16406,16.28906 36.03516,0 -3.39844,17.05079 -35.97656,0 -7.20703,37.08984 -22.5586,0 17.05078,-87.48047 z"
401
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
402
+ id="path4487"
403
+ inkscape:connector-curvature="0" />
404
+ <path
405
+ d="m 726.54999,677.82635 21.09375,0 -17.75391,91.17188 -21.03515,0 17.69531,-91.17188 z"
406
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
407
+ id="path4489"
408
+ inkscape:connector-curvature="0" />
409
+ <path
410
+ d="m 782.21213,716.7912 q -8.14453,0 -13.41797,7.38281 -5.27344,7.38281 -5.27344,18.80859 0,6.21094 2.8125,9.49219 2.8711,3.22266 8.32031,3.22266 8.14454,0 13.41797,-7.38281 5.27344,-7.44141 5.27344,-18.92579 0,-6.15234 -2.87109,-9.375 -2.8125,-3.22265 -8.26172,-3.22265 z m 1.69922,-15 q 14.64843,0 23.02734,7.4414 8.37891,7.44141 8.37891,20.27344 0,7.44141 -2.63672,14.47266 -2.63672,6.97265 -7.67578,12.77344 -5.97657,6.91406 -14.1211,10.42968 -8.14453,3.51563 -18.16406,3.51563 -14.47266,0 -22.85156,-7.44141 -8.32031,-7.4414 -8.32031,-20.27344 0,-7.38281 2.69531,-14.41406 2.69531,-7.08984 7.73437,-12.94922 5.85938,-6.79687 13.94532,-10.3125 8.14453,-3.51562 17.98828,-3.51562 z"
411
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
412
+ id="path4491"
413
+ inkscape:connector-curvature="0" />
414
+ <path
415
+ d="m 818.94067,703.37323 19.33594,0 2.28516,45.11719 19.80469,-45.11719 16.64062,0 2.40234,45 19.6875,-45 20.625,0 -30,65.625 -22.26562,0 -2.16797,-45.11719 -20.03906,45.11719 -21.73828,0 -4.57032,-65.625 z"
416
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:Sans Bold Italic;letter-spacing:-10.20115376;fill:#000000"
417
+ id="path4493"
418
+ inkscape:connector-curvature="0" />
419
+ </g>
420
+ </g>
421
+ </g>
422
+ </g>
423
+ </svg>
@@ -0,0 +1,116 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="500"
13
+ height="104.163"
14
+ viewBox="0 0 500.00001 0"
15
+ id="svg3563"
16
+ version="1.1"
17
+ inkscape:version="0.91 r13725"
18
+ sodipodi:docname="logo-long.svg"
19
+ inkscape:export-filename="/Users/pitr/Workspace/redhat/dynflow/pages/source/images/logo-long.png"
20
+ inkscape:export-xdpi="100.08"
21
+ inkscape:export-ydpi="100.08">
22
+ <defs
23
+ id="defs3565" />
24
+ <sodipodi:namedview
25
+ id="base"
26
+ pagecolor="#ffffff"
27
+ bordercolor="#666666"
28
+ borderopacity="1.0"
29
+ inkscape:pageopacity="0.0"
30
+ inkscape:pageshadow="2"
31
+ inkscape:zoom="1.4"
32
+ inkscape:cx="144.75849"
33
+ inkscape:cy="112.74196"
34
+ inkscape:document-units="px"
35
+ inkscape:current-layer="layer1"
36
+ showgrid="false"
37
+ units="px"
38
+ borderlayer="false"
39
+ inkscape:window-width="1661"
40
+ inkscape:window-height="807"
41
+ inkscape:window-x="280"
42
+ inkscape:window-y="39"
43
+ inkscape:window-maximized="0" />
44
+ <metadata
45
+ id="metadata3568">
46
+ <rdf:RDF>
47
+ <cc:Work
48
+ rdf:about="">
49
+ <dc:format>image/svg+xml</dc:format>
50
+ <dc:type
51
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
52
+ <dc:title />
53
+ </cc:Work>
54
+ </rdf:RDF>
55
+ </metadata>
56
+ <g
57
+ inkscape:label="Vrstva 1"
58
+ inkscape:groupmode="layer"
59
+ id="layer1"
60
+ transform="translate(0,-1048.1992)">
61
+ <g
62
+ id="g4312"
63
+ transform="matrix(0.67356201,0,0,0.67356201,-119.48871,545.20221)">
64
+ <g
65
+ transform="translate(0,100)"
66
+ style="font-style:normal;font-weight:normal;font-size:120.45562744px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
67
+ id="g4164">
68
+ <path
69
+ inkscape:connector-curvature="0"
70
+ d="m 449.94836,755.46307 q 8.08594,0 13.125,-7.4414 5.09766,-7.44141 5.09766,-19.45313 0,-5.44922 -2.87109,-8.49609 -2.8125,-3.04688 -7.91016,-3.04688 -7.96875,0 -13.125,7.38282 -5.15625,7.32421 -5.15625,18.80859 0,5.97656 2.75391,9.14062 2.8125,3.10547 8.08593,3.10547 z m 22.08985,-42.48047 6.79687,-35.15625 21.15235,0 -17.75391,91.17188 -21.15234,0 1.93359,-9.49219 q -4.80469,5.74219 -10.07812,8.4961 -5.27344,2.69531 -11.54297,2.69531 -11.07422,0 -17.51953,-7.03125 -6.44532,-7.03125 -6.44532,-19.16016 0,-7.55859 2.22657,-14.70703 2.28515,-7.14844 6.5039,-13.00781 5.33203,-7.38281 12.01172,-11.19141 6.73828,-3.80859 14.41406,-3.80859 6.73828,0 11.42578,2.7539 4.7461,2.69532 8.02735,8.4375 z"
71
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-10.20115376;fill:#000000"
72
+ id="path4166" />
73
+ <path
74
+ inkscape:connector-curvature="0"
75
+ d="m 498.81752,703.37323 19.80469,0 9.02344,45.46875 23.26171,-45.46875 22.44141,0 -41.54297,71.83594 q -6.97265,12.1289 -12.89062,15.8789 -5.91797,3.8086 -15.29297,3.8086 l -12.71485,0 2.16797,-13.76953 6.6211,0 q 5.15625,0 7.96875,-1.75782 2.87109,-1.69922 5.09765,-6.03515 l 1.9336,-3.51563 -15.87891,-66.44531 z"
76
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-10.20115376;fill:#000000"
77
+ id="path4168" />
78
+ <path
79
+ inkscape:connector-curvature="0"
80
+ d="m 638.3898,729.03729 -7.79297,39.96094 -21.03515,0 6.62109,-34.21875 q 0.70312,-3.33984 1.05469,-5.625 0.41015,-2.34375 0.41015,-3.69141 0,-3.75 -2.10937,-5.80078 -2.05078,-2.05078 -5.85938,-2.05078 -6.5039,0 -11.1914,5.09766 -4.62891,5.03906 -6.44532,14.0039 l -6.32812,32.28516 -21.03516,0 12.77344,-65.625 21.09375,0 -1.93359,9.60937 q 5.80078,-5.68359 11.66015,-8.4375 5.85938,-2.7539 12.2461,-2.7539 9.08203,0 14.0039,4.74609 4.92188,4.7461 4.92188,13.35938 0,1.875 -0.29297,4.16015 -0.23438,2.28516 -0.76172,4.98047 z"
81
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-10.20115376;fill:#000000"
82
+ id="path4170" />
83
+ <path
84
+ inkscape:connector-curvature="0"
85
+ d="m 656.9035,681.51776 60.82032,0 -3.33985,17.05078 -38.26172,0 -3.16406,16.28906 36.03516,0 -3.39844,17.05079 -35.97656,0 -7.20703,37.08984 -22.5586,0 17.05078,-87.48047 z"
86
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-10.20115376;fill:#000000"
87
+ id="path4172" />
88
+ <path
89
+ inkscape:connector-curvature="0"
90
+ d="m 726.54999,677.82635 21.09375,0 -17.75391,91.17188 -21.03515,0 17.69531,-91.17188 z"
91
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-10.20115376;fill:#000000"
92
+ id="path4174" />
93
+ <path
94
+ inkscape:connector-curvature="0"
95
+ d="m 782.21213,716.7912 q -8.14453,0 -13.41797,7.38281 -5.27344,7.38281 -5.27344,18.80859 0,6.21094 2.8125,9.49219 2.8711,3.22266 8.32031,3.22266 8.14454,0 13.41797,-7.38281 5.27344,-7.44141 5.27344,-18.92579 0,-6.15234 -2.87109,-9.375 -2.8125,-3.22265 -8.26172,-3.22265 z m 1.69922,-15 q 14.64843,0 23.02734,7.4414 8.37891,7.44141 8.37891,20.27344 0,7.44141 -2.63672,14.47266 -2.63672,6.97265 -7.67578,12.77344 -5.97657,6.91406 -14.1211,10.42968 -8.14453,3.51563 -18.16406,3.51563 -14.47266,0 -22.85156,-7.44141 -8.32031,-7.4414 -8.32031,-20.27344 0,-7.38281 2.69531,-14.41406 2.69531,-7.08984 7.73437,-12.94922 5.85938,-6.79687 13.94532,-10.3125 8.14453,-3.51562 17.98828,-3.51562 z"
96
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-10.20115376;fill:#000000"
97
+ id="path4176" />
98
+ <path
99
+ inkscape:connector-curvature="0"
100
+ d="m 818.94067,703.37323 19.33594,0 2.28516,45.11719 19.80469,-45.11719 16.64062,0 2.40234,45 19.6875,-45 20.625,0 -30,65.625 -22.26562,0 -2.16797,-45.11719 -20.03906,45.11719 -21.73828,0 -4.57032,-65.625 z"
101
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-10.20115376;fill:#000000"
102
+ id="path4178" />
103
+ </g>
104
+ <path
105
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-15.00960922;word-spacing:0px;fill:#f78a29;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
106
+ d="m 275.77734,898.4962 c 15.8431,0 31.6862,0 47.5293,0 4.16667,-21.4427 8.33333,-42.88539 12.5,-64.3281 20.79883,0 41.59765,0 62.39648,0 1.96485,-9.85742 3.92969,-19.71485 5.89454,-29.57227 -20.83268,0 -41.66537,0 -62.49805,0 1.82878,-9.41732 3.65755,-18.83463 5.48633,-28.25195 22.12044,0 44.24089,0 66.36133,0 1.93099,-9.85742 3.86197,-19.71484 5.79296,-29.57226 -32.24674,0.0124 -64.49349,0.0247 -96.74023,0.0371 -20.04702,19.43431 -26.6288,49.86091 -20.66801,76.65625 6.19824,27.51723 -5.2026,56.64913 -26.05465,75.03123 z"
107
+ id="path4180"
108
+ inkscape:connector-curvature="0" />
109
+ <path
110
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:199.62593079px;line-height:521.00000381%;font-family:Sans;-inkscape-font-specification:'Sans Bold Italic';letter-spacing:-15.00960922;word-spacing:0px;fill:#289fd5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
111
+ d="m 319.57617,746.81068 c -13.33138,0.005 -26.66276,0.0104 -39.99414,0.0156 -3.76953,19.49479 -7.53906,38.98959 -11.30859,58.48438 -5.85649,-11.39984 -18.13338,-18.85713 -30.97347,-18.59931 -19.48356,-0.97181 -36.91679,11.54836 -47.05114,27.40558 -11.60291,17.88636 -16.28084,41.0427 -10.13932,61.69167 4.30936,14.207 17.86665,24.7003 32.70011,25.331 14.60164,1.7584 29.12383,-5.0002 38.44365,-16.124 3.5756,-5.2703 0.7527,2.3779 0.58551,4.6843 -0.5973,2.9321 -1.1946,5.8642 -1.7919,8.7963 7.38932,0 14.77864,0 22.16796,0 9.25636,-6.5119 15.88176,-16.2608 21.18126,-26.1129 8.50104,-16.12253 10.02499,-35.2179 5.68124,-52.78157 -4.51032,-25.67633 2.21776,-53.74623 20.49883,-72.79105 z m -75.66992,65.22461 c 8.73733,-0.68916 16.93141,6.1541 17.63686,14.92051 1.23978,15.74935 -2.28238,33.7864 -15.18157,44.1874 -8.24774,6.2709 -22.66815,7.3951 -29.35913,-1.7195 -5.48009,-9.0372 -3.57758,-20.38359 -1.62332,-30.20629 3.25079,-13.33365 13.32354,-27.56301 28.52716,-27.18212 z"
112
+ id="path4182"
113
+ inkscape:connector-curvature="0" />
114
+ </g>
115
+ </g>
116
+ </svg>