chefdk-julia 0.4.3 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- OTY5MTAxOGM1MDY0MjA5ZTEwYmExNTNhOGU3ZDdmYzIxOTkyN2Y0OA==
5
- data.tar.gz: !binary |-
6
- YTJjZWNjODNiODJhZDQ3MDczYTczOWVkZDg0NDE5ODNlOWRmY2ZhYw==
2
+ SHA1:
3
+ metadata.gz: 243bda0d3b41548c15f2e220dbc15713db6a0bed
4
+ data.tar.gz: 33698fbee94488b9be7469294249c32cc8f24b17
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- NmE4YmYwODRjOTViYTFiMmYzNzU5ZjNhMTE0ZjFiNTcxZTA1Mjg3MTQwYmY5
10
- ODMwNWNmMmU5Zjc5Nzc3ZDcxOGFiZmVjYzI0MWNiODMzMjZmMTgxNGI5ODc4
11
- ODNiNWVmYmJhNWRkYTYzMGYwYTY5ZTRiNTdjYjg4YmE4ZWRiY2M=
12
- data.tar.gz: !binary |-
13
- Mzg0NmI0NGM3ZTcxMjFlMTk3N2NkNjgzMmI5NjdhZjRlYjFlZDJkZWU2NDIw
14
- MDJkNzQ5MTk3OGM4MTRkYmZmYjBjZDQyODcxNDYwOWVhMGFiN2U4ZmIwNjQy
15
- MmYxMjA0Y2ZkNGIzY2U2ZGU5ZDRhMWQwOTVlMDRjY2QwMmNjYTA=
6
+ metadata.gz: 5317090dc8b5561b26b9836207c9a6f53252061ff234d0a4f5e3159add58d8eab2f1d1c5ea721d2ef74fe57bcdd13a03e381c4c467c9a2b17b4d967234da9810
7
+ data.tar.gz: f1612a71aed796c022d57e15e6269164df9beaf30eee331043c7d4a5d80a12ec9bad90232fed5c1ac92a00d7186c9fccc708af5e232917a91b59889d24df359e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog for chefdk-julia
2
2
 
3
+ ## 0.4.4
4
+ * Fix foodcritic.options[:fail_tags] in generated cookbook Rakefile
5
+ * Add "How is it better than the basic ChefDK generator?" section to README
6
+
3
7
  ## 0.4.3
4
8
  * Update README and gem post-install message with correct require statement
5
9
 
data/README.md CHANGED
@@ -1,28 +1,39 @@
1
1
  # chefdk-julia
2
- An opinionated cookbook creator.
2
+ [![Gem Version](https://badge.fury.io/rb/chefdk-julia.svg)](https://badge.fury.io/rb/chefdk-julia)
3
+ [![Build Status](https://travis-ci.org/Nordstrom/chefdk-julia.svg?branch=master)](https://travis-ci.org/Nordstrom/chefdk-julia)
3
4
 
4
- _with spunk and a grin, by Nordstrom_
5
+ <img src='https://cdn.rawgit.com/Nordstrom/chefdk-julia/master/julia-icon.svg' style='float:left'/>
5
6
 
6
- [![Build Status](https://travis-ci.org/Nordstrom/chefdk-julia.svg?branch=master)](https://travis-ci.org/Nordstrom/chefdk-julia)
7
+ An opinionated cookbook creator.
8
+
9
+ Julia makes it easy to generate full-featured starting cookbooks, recipes, templates, etc.
10
+ with testing already setup (e.g. ChefSpec).
7
11
 
8
12
  ## About
9
13
  Julia is a special type of Chef cookbook that is designed to generate code (cookbooks, recipes, templates, etc.).
10
14
 
11
- It is based upon the default code_generator provided by ChefDK.
12
- (`chef generate generator`).
15
+ ## How is it better than the basic ChefDK generator?
16
+
17
+ Generated Cookbooks will contain:
18
+
19
+ 1. Rakefile with RuboCop, Foodcritic, and ChefSpec tasks.
20
+ 2. RSpec spec_helper.rb file setup to disallow global monkey-patching and allow focusing single tests.
21
+ 3. .rspec file which auto-requires spec_helper.rb in specs
22
+ 4. .rubocop.yml file with line length set to 100.
23
+
13
24
 
14
25
  ## Prerequisites
15
26
  [ChefDK](https://downloads.chef.io/chef-dk/) must already be installed.
16
27
 
17
28
  ## Installation
18
- `chefdk-julia` is distributed as a Ruby Gem.
19
29
 
20
- Install it with `chef gem install` on the command line.
30
+ ### Install the Gem:
21
31
 
22
32
  ```bash
23
33
  > chef gem install chefdk-julia
24
34
  ```
25
35
 
36
+ ### Configure Your `knife.rb`:
26
37
  Add these lines to your `~/.chef/config.rb` or `~/.chef/knife.rb` configuration file:
27
38
 
28
39
  ```ruby
@@ -51,7 +62,6 @@ Orion Ifland, Doug Ireton
51
62
 
52
63
  Copyright (c) 2015 Nordstrom, Inc.
53
64
 
54
- ```text
55
65
  Licensed under the Apache License, Version 2.0 (the "License");
56
66
  you may not use this file except in compliance with the License.
57
67
  You may obtain a copy of the License at
@@ -63,4 +73,3 @@ distributed under the License is distributed on an "AS IS" BASIS,
63
73
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
64
74
  See the License for the specific language governing permissions and
65
75
  limitations under the License.
66
- ```
data/Rakefile CHANGED
@@ -22,7 +22,7 @@ RuboCop::RakeTask.new do |rubocop|
22
22
  end
23
23
 
24
24
  FoodCritic::Rake::LintTask.new do |foodcritic|
25
- foodcritic.options[:fail_tags] = 'any'
25
+ foodcritic.options[:fail_tags] = %w(any)
26
26
  end
27
27
 
28
28
  RSpec::Core::RakeTask.new
@@ -7,7 +7,7 @@ RuboCop::RakeTask.new do |rubocop|
7
7
  end
8
8
 
9
9
  FoodCritic::Rake::LintTask.new do |foodcritic|
10
- foodcritic.options[:fail_tags] = 'any'
10
+ foodcritic.options[:fail_tags] = %w(any)
11
11
  end
12
12
 
13
13
  RSpec::Core::RakeTask.new
data/julia-icon.svg ADDED
@@ -0,0 +1,243 @@
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:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="128"
14
+ height="128"
15
+ viewBox="0 0 128 128"
16
+ id="svg2"
17
+ version="1.1"
18
+ inkscape:version="0.91 r13725"
19
+ sodipodi:docname="julia-icon.svg"
20
+ inkscape:export-filename="julia-icon.png"
21
+ inkscape:export-xdpi="90"
22
+ inkscape:export-ydpi="90">
23
+ <defs
24
+ id="defs4">
25
+ <linearGradient
26
+ inkscape:collect="always"
27
+ id="linearGradient4335">
28
+ <stop
29
+ style="stop-color:#907a55;stop-opacity:1"
30
+ offset="0"
31
+ id="stop4337" />
32
+ <stop
33
+ style="stop-color:#eae2d7;stop-opacity:1"
34
+ offset="1"
35
+ id="stop4339" />
36
+ </linearGradient>
37
+ <radialGradient
38
+ inkscape:collect="always"
39
+ xlink:href="#linearGradient4335"
40
+ id="radialGradient4341"
41
+ cx="195.5361"
42
+ cy="802.75073"
43
+ fx="195.5361"
44
+ fy="802.75073"
45
+ r="52.083279"
46
+ gradientUnits="userSpaceOnUse"
47
+ gradientTransform="matrix(0.96000101,8.9273465e-7,6.6825785e-6,1,7.8158787,-2.1348015e-4)" />
48
+ </defs>
49
+ <sodipodi:namedview
50
+ id="base"
51
+ pagecolor="#000000"
52
+ bordercolor="#666666"
53
+ borderopacity="1.0"
54
+ inkscape:pageopacity="0"
55
+ inkscape:pageshadow="2"
56
+ inkscape:zoom="5.21875"
57
+ inkscape:cx="27.322498"
58
+ inkscape:cy="67.930797"
59
+ inkscape:document-units="px"
60
+ inkscape:current-layer="layer1"
61
+ showgrid="true"
62
+ borderlayer="true"
63
+ inkscape:window-width="1600"
64
+ inkscape:window-height="837"
65
+ inkscape:window-x="1912"
66
+ inkscape:window-y="292"
67
+ inkscape:window-maximized="1"
68
+ fit-margin-top="0"
69
+ fit-margin-left="0"
70
+ fit-margin-right="0"
71
+ fit-margin-bottom="0"
72
+ units="px">
73
+ <inkscape:grid
74
+ type="xygrid"
75
+ id="grid4267"
76
+ empspacing="8"
77
+ snapvisiblegridlinesonly="false" />
78
+ </sodipodi:namedview>
79
+ <metadata
80
+ id="metadata7">
81
+ <rdf:RDF>
82
+ <cc:Work
83
+ rdf:about="">
84
+ <dc:format>image/svg+xml</dc:format>
85
+ <dc:type
86
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
87
+ <dc:title></dc:title>
88
+ </cc:Work>
89
+ </rdf:RDF>
90
+ </metadata>
91
+ <g
92
+ inkscape:label="Layer 1"
93
+ inkscape:groupmode="layer"
94
+ id="layer1"
95
+ transform="translate(-133.5361,-736.75074)">
96
+ <path
97
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7c5d45;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.8334446;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
98
+ d="m 197.53516,743.79191 c -31.4099,0 -56.95809,25.5482 -56.95809,56.95809 0,31.40989 25.54819,56.95809 56.95809,56.95809 31.40989,0 56.95809,-25.5482 56.95809,-56.95809 0,-31.40989 -25.5482,-56.95809 -56.95809,-56.95809 z m 0,7.96801 c 27.10394,0 48.99206,21.88612 48.99206,48.99008 0,27.10396 -21.88812,48.99207 -48.99206,48.99207 -27.10396,0 -48.99008,-21.88811 -48.99008,-48.99207 0,-27.10396 21.88612,-48.99008 48.99008,-48.99008 z"
99
+ id="path4708-5"
100
+ inkscape:connector-curvature="0" />
101
+ <circle
102
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4341);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.8334446;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
103
+ id="path4708-4"
104
+ cx="197.5361"
105
+ cy="800.75073"
106
+ r="52.083279" />
107
+ <path
108
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#413625;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.8334446;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
109
+ d="m 197.53516,744.75 c -30.88156,0 -56,25.11845 -56,56 0,30.88155 25.11844,56 56,56 30.88155,0 56,-25.11845 56,-56 0,-30.88155 -25.11845,-56 -56,-56 z m 0,7.83398 c 26.64804,0 48.16796,21.51797 48.16796,48.16602 0,26.64805 -21.51992,48.16797 -48.16796,48.16797 -26.64805,0 -48.16602,-21.51992 -48.16602,-48.16797 0,-26.64805 21.51797,-48.16602 48.16602,-48.16602 z"
110
+ id="path4708"
111
+ inkscape:connector-curvature="0" />
112
+ <path
113
+ style="fill:#eee6d9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
114
+ d="m 192.09299,743.06811 c 0,0 -14.33219,1.45599 -13.8982,6.43713 0.68259,7.83435 -8.53396,7.30866 -8.61677,11.28742 -0.0832,3.99914 -2.04192,9.95808 -3.04192,10.95808 -1,1 1,7 1,7 l 1,-6 8,-13 11,-12 z"
115
+ id="path4312"
116
+ inkscape:connector-curvature="0"
117
+ sodipodi:nodetypes="csssccccc" />
118
+ <g
119
+ id="g4296"
120
+ transform="matrix(0.95566356,0,0,0.95566356,8.7249321,35.375201)">
121
+ <path
122
+ style="fill:#eee6d9;fill-opacity:1"
123
+ d="m 202.41345,738.96786 c -0.38116,0.15699 0.37941,0.47753 0.21378,0.095 -0.0555,-0.0559 -0.13076,-0.1073 -0.21378,-0.095 z m 3.90342,0.01 -1.10253,0.002 c -0.28184,0.0978 -0.0828,0.60648 0.192,0.47902 l 1.31434,-0.01 c 0.17798,-0.24986 -0.17494,-0.49503 -0.40381,-0.4711 z m 2.72567,1.40143 0.30087,0.3365 c 0.52051,0.54766 1.11345,1.10942 1.88243,1.25693 0.84647,0.0915 1.70185,0.077 2.54752,-0.0158 0.25082,-0.14362 0.14101,-0.59701 -0.14648,-0.61362 -1.47002,-0.55335 -3.04014,-0.73647 -4.58434,-0.96397 z m 1.66469,2.22685 c -0.003,-0.005 -0.0195,-4.7e-4 -0.0614,0.0218 -0.0435,0.0896 0.0713,-0.006 0.0614,-0.0218 z m 5.27912,0.21971 c -3.26802,2.66102 -2.65277,3.41051 0.0192,5.00287 l 4.88582,1.47386 c 0.30291,0.22415 0.30624,0.65175 0.22763,0.98575 -0.0192,0.57971 0.39264,1.03741 0.69082,1.49249 0.23294,0.37553 0.43445,0.76874 0.62352,1.16786 0.22214,0.18257 0.53747,-0.17436 0.38005,-0.38995 -0.39797,-0.48896 -0.69085,-1.13079 -0.58195,-1.77356 0.0917,-0.27679 0.44152,-0.31307 0.68488,-0.24743 0.29348,0.0899 0.58258,-0.13039 0.68092,-0.39984 0.12689,-0.29267 0.39059,-0.47585 0.60768,-0.69478 0.17983,-0.18346 0.31068,-0.43167 0.28504,-0.69478 0.0105,-0.23289 0.28533,-0.48882 0.50475,-0.31274 0.33517,0.21777 0.52125,0.58557 0.78979,0.87094 0.69532,0.84394 1.21457,1.86845 1.30444,2.97111 0.0547,0.49628 -1.0851,2.37543 -1.22127,2.85577 0.93,2.74468 2.56058,1.34841 2.79689,2.99541 0.0155,0.34882 0.34014,0.6498 0.6928,0.61164 0.37822,0.0104 0.71785,-0.20176 1.08868,-0.23159 0.29688,0.0376 0.39915,0.40886 0.28306,0.65122 -0.14098,0.55421 -0.28609,1.14446 -0.13856,1.71221 0.10997,0.32246 0.29867,0.62398 0.31077,0.97387 0.0451,0.377 -0.0402,0.75362 -0.16033,1.10848 -0.65644,3.58773 -0.53368,1.59956 -0.90064,2.26841 -0.12221,0.25661 0.12912,0.48084 0.27514,0.66311 -1.75191,6.8621 4.15928,1.61126 6.32422,2.28227 -0.19825,0.80951 -0.51375,1.61034 -0.49089,2.45647 0.0967,0.53162 0.67553,0.87873 1.19359,0.79573 0.25858,-0.0234 0.56187,-0.023 0.75416,0.18012 0.032,0.31603 -0.34026,0.42819 -0.58987,0.45923 -0.55789,0.14647 -0.91161,0.74355 -0.87689,1.30246 -0.0473,0.44434 -0.48708,0.76583 -0.43745,1.2312 0.13633,0.54109 0.58444,0.91468 0.96992,1.28464 0.27754,0.0775 0.19224,0.54373 -0.0791,0.56216 -0.38933,0.0879 -3.23804,1.3526 -3.44489,1.71389 -0.12183,0.3288 0.10506,0.64935 0.26327,0.92242 -0.28255,3.26703 1.64018,3.08552 4.08226,1.7105 0.18105,0.18469 0.52384,0.0979 0.5483,-0.17419 0.0839,-0.31072 -0.0155,-0.64214 0.093,-0.95012 0.0996,-0.40302 0.33113,-0.767 0.63341,-1.04909 0.41974,-0.1313 0.86697,-0.0945 1.29652,-0.0416 0.24678,-0.0925 0.40661,-0.35712 0.39192,-0.61758 0.28199,-0.47759 0.81015,-0.77373 1.02138,-1.2985 0.40968,-0.66848 1.16514,-0.99309 1.68252,-1.55978 0.23545,-0.13892 0.4504,-0.5074 0.19002,-0.72645 -0.4966,-0.60259 -1.09072,-1.11688 -1.56374,-1.73991 -0.17366,-0.38694 0.11933,-0.81083 -0.0475,-1.20151 -0.10148,-0.41349 -0.26074,-0.82204 -0.23753,-1.25496 -0.018,-0.22899 -0.32642,-0.42969 -0.51267,-0.24544 -0.23059,0.27789 -0.27822,0.65223 -0.44339,0.96595 -0.13535,0.22756 -0.22294,0.49478 -0.0139,0.69676 0.12528,0.21237 -0.0246,0.46641 -0.26524,0.47902 -0.26669,0.055 -0.54865,0.12105 -0.81553,0.11877 -0.24481,-0.1042 -0.34919,-0.4054 -0.29295,-0.65321 0.007,-1.13679 0.0171,-2.27524 -0.0515,-3.41055 -0.325,-0.62242 -1.12298,-0.80181 -1.42915,-1.43904 -0.0477,-0.387 0.2457,-0.69643 0.4909,-0.95606 0.22394,-0.3502 -0.16603,-0.86665 -0.56413,-0.75218 -0.30318,0.0218 -0.65932,0.0519 -0.89668,-0.17815 -0.13901,-0.27691 0.23318,-0.6135 0.49485,-0.44735 0.28455,0.11198 0.60084,-0.27664 0.41371,-0.52652 -0.65641,-1.23501 -1.49903,-2.36451 -2.40698,-3.4244 -0.58675,-0.62429 -1.36031,-1.05867 -2.18925,-1.26683 -0.28773,-0.094 -0.56801,-0.22204 -0.87094,-0.25931 -0.22694,-0.0925 -0.17951,-0.45402 0.0534,-0.50277 0.23918,0.008 0.5084,-0.004 0.70269,-0.17023 0.17197,-0.17149 0.13914,-0.45637 0.0752,-0.67103 -0.12537,-0.38145 -0.4572,-0.65751 -0.82731,-0.78982 -0.33005,-0.13754 -0.67709,-0.36719 -0.74229,-0.74624 -0.0754,-0.35688 -0.11112,-0.7321 -0.3167,-1.04514 -0.36619,-0.6853 -0.91808,-1.24361 -1.36185,-1.87649 -0.76768,-1.00893 -1.57541,-2.00155 -2.54553,-2.82463 -0.66939,-0.73695 -0.98537,-1.75622 -1.79534,-2.37135 -0.74673,-0.54251 -1.60257,-0.90123 -2.4525,-1.24704 -0.28899,-0.24121 -0.4714,-0.63002 -0.85313,-0.74426 -0.3552,-0.0201 -0.63493,-0.34443 -0.67895,-0.68488 -0.20271,-0.4347 -0.7041,-0.56338 -1.11045,-0.73239 -1.4348,-0.60524 -2.8787,-1.19572 -4.37452,-1.635 -0.0784,-0.003 -0.15832,-0.006 -0.22562,-0.008 z m -3.45607,0.91647 c -0.4437,0.13384 -0.89477,0.44274 -0.99565,0.92241 0.0472,0.28188 0.48553,0.36054 0.6354,0.12075 0.30227,-0.23405 0.60916,-0.48726 0.77791,-0.83928 -0.0678,-0.16038 -0.25715,-0.2162 -0.41766,-0.20388 z m -29.0025,5.65125 -0.0495,0.006 -0.0139,0.002 c -1.29806,0.46099 -2.43287,1.3559 -3.1928,2.50397 0.20683,0.21361 0.56294,0.12616 0.75811,-0.0594 0.81547,-0.63255 1.65311,-1.24615 2.37927,-1.98338 0.18532,-0.0291 0.39056,-0.43467 0.11876,-0.46912 z m 30.91462,15.05549 c -0.0169,-0.003 -0.0333,-0.002 -0.0515,0.004 -0.7807,0.64799 -1.50422,1.43769 -2.49803,1.75377 -1.69843,0.53314 -3.42923,0.96607 -5.09504,1.59937 -1.6779,1.01237 -3.26433,2.2062 -5.09701,2.93549 -2.54679,1.11325 -5.35491,1.70142 -8.1374,1.48061 -0.99209,-0.095 -1.9896,-0.41474 -2.98893,-0.20586 -0.81906,0.20091 -1.42546,0.83375 -1.96953,1.43904 -0.53608,0.60305 -1.21455,1.04824 -1.87253,1.50436 -0.59116,0.42239 -1.19958,0.82379 -1.77752,1.26287 -0.46881,0.46613 -0.54339,1.15959 -0.63342,1.78148 -0.46292,3.34034 -0.91025,6.68295 -1.29058,10.03369 -0.0479,0.60318 -0.078,1.22268 0.0495,1.81711 0.25232,0.69452 0.83169,1.18503 1.31236,1.72012 0.19392,0.17187 0.38946,0.46846 0.23159,0.72447 -0.22235,0.28381 -0.66083,0.20768 -0.91449,0.008 -0.1829,-0.14113 -0.39575,-0.3754 -0.65123,-0.2692 -0.26138,0.17321 -0.0976,0.53339 0.0376,0.73832 0.54456,0.95209 1.18572,1.84617 1.732,2.79693 0.35591,0.61904 0.61575,1.28656 0.81948,1.96952 0.24406,0.77429 0.52109,1.53699 0.84323,2.28228 0.31755,0.79335 0.72255,1.57639 0.78781,2.4426 0.0639,0.61639 0.0318,1.23977 -0.0515,1.85274 -0.17579,0.27624 -0.29567,0.68081 -0.0515,0.95408 0.31433,0.38647 0.4642,0.95945 0.22763,1.42123 -0.1755,0.59303 0.11,1.17765 0.22763,1.75179 0.33734,1.53974 0.85457,3.0643 1.73992,4.38046 0.75528,1.20327 -2.78186,2.16469 -2.09348,3.40915 0.26194,0.42936 3.52743,1.10675 3.96455,1.36962 0.62468,0.23664 2.74561,-0.0721 3.36648,0.18166 l -1.78346,5.84132 c 0.14967,0.2642 1.67689,1.05481 1.95963,1.11442 2.68934,0.3924 5.41165,0.77758 8.05031,0.3464 2.43034,-0.52642 4.82305,-1.21686 7.26645,-1.68449 1.43501,-0.31225 2.86556,-0.76885 4.10137,-1.58156 0.70975,-0.39723 1.6021,-0.26539 2.28227,-0.73436 0.97398,-0.55898 1.85433,-1.27502 2.63659,-2.0784 0.41192,-0.43516 0.77739,-0.90996 1.13817,-1.38757 0.23112,-0.23978 0.68608,-0.0322 0.6829,0.29295 0.0628,0.41088 0.0691,0.83177 0.17617,1.23516 0.2085,0.1829 0.5808,0.009 0.60174,-0.2593 0.67996,-2.13521 0.8091,-4.41958 1.66074,-6.50438 0.35034,-0.72001 0.78001,-1.41238 0.97981,-2.19518 0.42441,-1.26133 0.94544,-2.49068 1.27475,-3.78268 0.29651,-1.03225 0.60844,-2.05922 0.93627,-3.08196 0.0287,-0.32868 0.46667,-0.50077 0.72051,-0.29691 0.24135,0.13592 0.59007,0.18622 0.79572,-0.0396 0.25265,-0.20607 0.24451,-0.55766 0.26525,-0.85313 0.062,-0.65726 -0.008,-1.31696 -0.0693,-1.9715 -0.22732,-0.45422 0.63597,-2.9844 0.47328,-3.48717 -0.78308,-1.89783 -2.50031,-1.48969 -2.68034,-3.51603 -0.24265,-2.71485 -0.37337,-5.46255 -1.08274,-8.10771 -0.80237,-3.15086 -1.63874,-6.30653 -2.05663,-9.53689 -0.32927,-1.49909 -0.60219,-3.05437 -1.40935,-4.3864 -0.78935,-1.29836 -1.68086,-2.54665 -2.76129,-3.62037 -0.51893,-0.42213 -1.34479,-0.45407 -1.85274,0.004 -0.57559,0.46271 -0.92974,1.12841 -1.43904,1.65479 -0.1485,0.15933 -0.35483,0.47697 -0.60174,0.31275 -0.20201,-0.1532 -0.17725,-0.45875 -0.0752,-0.6631 0.10913,-0.22931 -0.0393,-0.635 -0.34442,-0.51663 -0.24728,0.0717 -0.34961,0.51674 -0.65321,0.38203 -0.27807,-0.20015 0.0423,-0.4871 0.20388,-0.63936 0.14377,-0.14574 0.32026,-0.26621 0.52257,-0.31077 0.27943,-0.13431 0.31552,-0.48784 0.29295,-0.76207 0.0124,-0.74882 -0.0579,-1.50297 -0.25535,-2.22685 -0.0267,-0.0422 -0.072,-0.0886 -0.12272,-0.099 z m 22.27444,16.40743 c -0.50936,0.19911 -0.54578,1.03064 -0.0554,1.27475 0.34068,0.0835 0.6837,-0.0761 0.94616,-0.28504 0.20344,-0.27862 0.002,-0.65597 -0.25535,-0.81948 -0.13724,-0.0973 -0.30009,-0.15595 -0.46714,-0.17023 -0.0556,-0.005 -0.11246,-0.005 -0.16824,0 z m 0.9521,2.04079 -0.0455,0.0198 c -0.24211,0.13945 -0.1195,0.58355 0.16231,0.57403 0.48089,0.1004 0.96732,0.17429 1.45487,0.23357 0.25401,-0.11906 0.13466,-0.57731 -0.14647,-0.55621 -0.46637,-0.12813 -0.93726,-0.26973 -1.42519,-0.27118 z m -65.50106,2.42083 c -0.34153,0.2458 -0.41874,0.70706 -0.38005,1.10056 -0.10186,0.28025 0.40886,0.45801 0.49882,0.17023 0.11704,-0.39052 0.22059,-0.81219 0.10095,-1.21537 -0.0715,-0.0249 -0.14103,-0.0673 -0.21972,-0.0554 z m 60.505,9.86346 c -0.32435,0.15008 -0.14137,0.73245 0.20982,0.673 0.30568,-0.007 0.4464,-0.48648 0.17815,-0.64529 -0.12696,-0.0271 -0.25851,-0.0352 -0.38797,-0.0277 z m -80.59614,14.19444 c -0.92347,0.76552 -1.74825,1.64279 -2.66232,2.41885 -0.57148,0.53382 -0.98513,1.23412 -1.16786,1.99526 -0.0337,0.10406 -0.0591,0.21014 -0.091,0.31473 1.25034,6.45384 3.28316,13.06035 5.75938,13.78892 0.73961,0.21265 1.36682,-0.36943 2.10289,-0.14872 0.70371,0.18223 1.40174,0.39061 2.10017,0.59184 0.37229,0.25426 0.41399,0.74597 0.42557,1.15797 0.0413,0.65506 0.0636,1.36708 0.47506,1.9141 0.39809,0.36409 1.00839,0.33033 1.47269,0.12272 l 1.28465,-0.5483 c 0.2774,0.0851 0.34198,0.42897 0.30285,0.68092 -0.0191,0.62751 0.0674,1.28649 0.41964,1.82107 -0.0265,0.29971 0.49739,0.3888 0.56017,0.0891 0.2417,-0.37252 0.72333,-0.41482 1.12036,-0.49287 0.59546,-0.12963 1.23246,-0.35591 1.58947,-0.88282 0.4643,-0.84758 0.33756,-1.89872 0.87095,-2.71775 0.69093,-0.93328 1.90209,-1.26119 2.63659,-2.14965 0.92426,-1.024 1.61853,-2.27055 1.92994,-3.61839 0.0835,-0.45443 0.0161,-0.95433 -0.26327,-1.33215 -0.24014,-0.22352 -0.60366,-0.11172 -0.86105,0.0198 -2.0623,0.93073 -4.16568,1.84994 -6.41332,2.21894 -0.38606,0.0629 -0.77582,0.11766 -1.16588,0.13856 -0.24701,-0.0223 -0.37272,-0.37074 -0.18013,-0.53643 0.263,-0.18175 0.59914,-0.16379 0.90064,-0.22565 1.1816,-0.14119 2.34337,-0.4689 3.4046,-1.01149 1.32639,-0.64288 2.61445,-1.42579 3.6263,-2.51188 0.63193,-0.73732 0.72344,-1.81485 0.42756,-2.71379 -0.19961,-0.60877 -0.53881,-1.15782 -0.77989,-1.74981 -0.40644,-0.88792 -0.80239,-1.78788 -1.33611,-2.60888 -0.68742,-0.76739 -1.53444,-1.36857 -2.405,-1.91014 -0.6737,-0.25635 -1.40584,-0.0365 -2.03683,0.23753 -6.90396,2.63368 -8.86039,1.79878 -1.45091,-1.01346 1.26948,-0.27411 2.54813,-0.50559 3.82424,-0.74625 0.56046,-10e-4 0.9972,0.40905 1.39153,0.75614 0.25359,0.22202 0.4964,0.47469 0.81948,0.59383 0.27906,-0.094 0.32745,-0.46536 0.20784,-0.70072 -0.2422,-1.67237 -0.0888,-2.05254 -0.65123,-3.12154 -4.70663,-1.57416 -11.89852,-0.72185 -16.18772,1.88044 z m 14.5448,6.90422 c 0.19074,0.25781 -0.16886,0.47531 -0.37015,0.57403 -1.42157,0.81463 -2.82924,1.65766 -4.29535,2.39115 -0.26401,-0.11644 -0.17953,-0.5743 0.10095,-0.60571 1.40115,-0.75815 2.79104,-1.54153 4.22211,-2.24268 0.1247,-0.006 0.21164,-0.14095 0.34244,-0.11679 z m 59.03429,0.37807 c 0.0139,1.57844 0.38751,3.12426 0.51465,4.69321 0.1243,1.21865 0.24039,2.4385 0.3563,3.65797 -0.12073,0.52483 -0.35899,1.06804 -0.20191,1.61125 0.442,1.05011 1.15129,1.95459 1.83097,2.85829 0.0202,0.29258 0.54948,0.24944 0.51861,-0.0455 -0.42545,-1.90866 -0.9302,-3.8289 -0.89668,-5.7997 0.0275,-0.24008 -0.13311,-0.6433 0.11876,-0.77 0.20873,-0.0422 0.43592,0.12277 0.62946,-0.002 0.1873,-0.21053 0.14192,-0.52816 0.0831,-0.78188 -0.24221,-0.82311 -0.40609,-1.69465 -0.87689,-2.42677 -0.26698,-0.3725 -0.56203,-0.72407 -0.8076,-1.11243 -0.38564,-0.58039 -0.73794,-1.18269 -1.10056,-1.77752 -0.0484,-0.0411 -0.0939,-0.11706 -0.16825,-0.10491 z m 1.85472,4.95648 c 0.008,0.003 0.0203,0.0122 0.0376,0.0336 -0.0427,0.0129 -0.0607,-0.0417 -0.0376,-0.0336 z m -39.33706,0.69279 c -0.0206,-0.004 -0.0416,-0.002 -0.0653,0.01 -0.22683,0.64366 0.004,1.31879 0.15242,1.95171 0.61112,2.41822 1.73302,4.74419 3.45607,6.56773 1.56289,1.60107 3.22417,3.15677 5.19994,4.23794 1.29729,0.72078 2.71654,1.19051 4.15481,1.53801 0.82589,0.21548 1.65961,0.40319 2.49011,0.59976 0.28537,-0.0675 0.14537,-0.58589 -0.13658,-0.49485 -0.8496,-0.27642 -1.43683,-0.99015 -2.08631,-1.56176 -2.3008,-2.10721 -4.66367,-4.18675 -7.37137,-5.7621 l -1.12233,-0.65717 c -0.28067,-0.12352 -0.53377,0.33748 -0.2791,0.50871 0.76585,0.81944 1.74281,1.42634 2.41687,2.33374 0.14236,0.33411 -0.35144,0.6808 -0.61757,0.43349 -0.53877,-0.38038 -1.02158,-0.84108 -1.60136,-1.16195 -0.33237,-0.39887 -0.58442,-0.87145 -0.99961,-1.19557 -0.88887,-0.98056 -1.36409,-2.23386 -1.96161,-3.39471 -0.5785,-1.23986 -1.03921,-2.53122 -1.47665,-3.82622 -0.0416,-0.0435 -0.0906,-0.11417 -0.15241,-0.12669 z m -2.2031,0.16034 c -0.20014,0.39444 -0.0671,0.85639 0.0752,1.24703 0.13542,0.33993 0.31917,0.66002 0.52455,0.962 0.22503,0.23178 0.54206,-0.12282 0.42557,-0.37213 -0.0715,-0.31914 -0.22769,-0.61018 -0.34837,-0.91251 -0.14828,-0.34088 -0.3454,-0.66954 -0.6255,-0.91846 l -0.0257,-0.006 z m 45.89489,0.0376 -0.0475,0.002 c 0.12726,0.5459 0.56168,0.93176 0.86698,1.37966 l 0.73437,0.9521 c 0.13294,0.28781 -0.22867,0.46178 -0.27712,0.71655 -0.0447,0.33205 0.21155,0.59587 0.3563,0.86897 0.42497,0.70264 1.07238,1.34752 1.90619,1.50634 1.35471,0.27388 2.75275,-0.0182 4.10729,0.26326 0.18058,0.0313 0.35758,0.0816 0.53643,0.12075 0.32942,-0.51674 0.64948,-1.0394 0.96002,-1.5677 -1.80653,-0.69596 -3.57922,-1.47411 -5.3583,-2.23675 -0.095,-0.20774 -0.49446,-0.16269 -0.49881,0.0792 0.12227,0.39635 0.57656,0.61315 0.64133,1.03722 0.003,0.26433 -0.31879,0.36198 -0.53642,0.33056 -0.34641,0.0179 -0.77985,-0.0574 -0.94221,-0.40578 -0.17916,-0.41378 -0.186,-0.88387 -0.40776,-1.28267 -0.40453,-0.83139 -1.16274,-1.47873 -2.04079,-1.76366 z m -54.88147,0.73634 c -0.0134,5.7e-4 -0.0269,0.004 -0.0416,0.0119 -0.81916,0.25715 -1.63999,0.52935 -2.39708,0.94023 -0.2405,0.26277 -0.003,0.75942 0.35234,0.73634 0.75948,-0.43565 1.46129,-0.96286 2.17143,-1.47269 0.0647,-0.0699 0.008,-0.21962 -0.0851,-0.21576 z m -4.6259,1.86462 c -0.0134,8.5e-4 -0.0276,0.005 -0.0416,0.0119 -0.16802,0.12774 -0.52991,0.17139 -0.50277,0.44142 0.19752,0.22965 0.55528,-0.0575 0.68686,-0.24941 0.0248,-0.0876 -0.0488,-0.20989 -0.14251,-0.20388 z m 15.64931,1.58947 c -0.008,0.002 -0.0205,0.0114 -0.0396,0.0317 0.0388,0.0169 0.0624,-0.0378 0.0396,-0.0317 z m 0.28899,1.3183 -0.0178,0.002 c -0.0369,0.25773 0.0728,0.54447 0.30483,0.67696 0.18202,-0.24915 -0.0495,-0.56953 -0.28702,-0.67894 z m 7.36543,4.08948 c 0.0166,-8.5e-4 0.0337,1e-4 0.0515,0.004 0.36024,0.0978 0.35193,0.70284 -0.006,0.7977 -0.30692,0.0614 -0.52186,-0.37961 -0.31473,-0.59976 0.0657,-0.0881 0.15275,-0.19636 0.2692,-0.2019 z m 1.32424,0.76604 0.0218,0.006 c 0.29501,0.0386 0.58051,0.16126 0.80166,0.36224 -0.1237,0.24855 -0.45769,0.32627 -0.70071,0.21773 -0.28624,-0.002 -0.38812,-0.46987 -0.12273,-0.58591 z m -5.05941,0.99169 c -0.0136,-10e-6 -0.0279,8.8e-4 -0.0416,0.006 -0.25096,0.14249 -0.18223,0.55476 -0.47902,0.64529 -0.26708,0.002 -0.63131,0.21739 -0.49683,0.52653 0.4163,1.88759 0.87908,3.78758 1.72803,5.53446 0.0968,0.21076 0.22417,0.40878 0.29098,0.62946 0.0949,0.17282 0.36543,0.30067 0.52059,0.12867 0.12943,-0.19194 0.2594,-0.56065 0.55819,-0.4335 0.34061,0.1063 0.61573,0.373 0.97784,0.42162 0.7191,0.18922 1.46886,0.009 2.15361,-0.22764 1.86288,-0.49736 3.74549,-1.07212 5.69282,-1.05107 1.09276,0.037 2.18266,0.11277 3.27396,0.17815 0.0809,0.31552 -0.25701,0.51188 -0.50277,0.61362 -0.88014,0.42285 -1.84738,0.67734 -2.65243,1.24704 -2.41689,1.31286 -5.05763,2.14743 -7.48815,3.43232 -0.30166,0.1113 -0.64154,0.3074 -0.68884,0.65716 -0.12685,0.5462 0.13303,1.07621 0.27712,1.59146 0.41077,1.32173 0.84861,2.6347 1.28266,3.94894 0.31063,0.018 0.62141,0.0332 0.93231,0.0455 3.46526,-0.0195 6.91947,-0.39286 10.30883,-1.11442 2.2579,-3.67437 4.52108,-7.34642 6.74191,-11.04319 l 0.53643,-1.00357 c -0.15733,-0.24227 -0.49457,-0.23675 -0.74228,-0.16429 -0.31566,0.0439 -0.64983,-0.10234 -0.82938,-0.36619 -0.38676,-0.29984 -0.91035,-0.19366 -1.34205,-0.0654 -1.80124,0.48472 -3.60413,0.96584 -5.39987,1.47072 -1.03064,0.22831 -2.08692,-0.0443 -3.0582,-0.38995 -1.67437,-0.63411 -3.32152,-1.34288 -5.02774,-1.89035 -0.88592,-0.30497 -1.78833,-0.56492 -2.67419,-0.86897 -1.38145,-0.58213 -2.48402,-1.62843 -3.73122,-2.43271 -0.0394,-0.009 -0.0798,-0.0257 -0.12074,-0.0257 z m -26.18181,0.6928 c -0.0242,0.008 -0.0328,0.0359 -0.0139,0.10094 0.0347,0.23637 0.20912,0.41586 0.37015,0.57799 -0.0549,0.2588 0.42495,0.28653 0.43746,0.0436 -0.11101,-0.32155 -0.43084,-0.50243 -0.68488,-0.70269 -0.0456,-0.0155 -0.0847,-0.0281 -0.10887,-0.0198 z m 49.40637,0.35036 c -0.003,-0.002 -0.0133,0.003 -0.0396,0.0218 -0.0235,0.0542 0.047,-0.0152 0.0396,-0.0218 z m -1.06492,0.53444 c -0.003,-0.002 -0.0134,0.001 -0.0396,0.0198 -0.0234,0.0542 0.047,-0.0133 0.0396,-0.0198 z m -1.30048,0.3167 c -0.008,0.002 -0.0205,0.0114 -0.0396,0.0316 0.0388,0.0169 0.0625,-0.0378 0.0396,-0.0316 z m -1.19756,0.40975 c -0.018,-10e-4 -0.0368,-0.002 -0.0574,0.002 -0.29077,0.005 -0.29523,0.52845 0,0.53049 0.30949,0.0521 0.32798,-0.51052 0.0574,-0.53246 z m -1.30048,0.3939 c -0.023,-0.005 -0.0485,-0.005 -0.0772,0.002 -1.80041,0.0832 -3.60323,0.18147 -5.38601,0.45922 -0.27282,0.0994 -0.15379,0.58985 0.13658,0.54632 1.3091,0.0197 2.61473,-0.0979 3.91926,-0.19003 0.47507,-0.15074 0.94391,-0.33161 1.44102,-0.39588 0.14601,-0.0778 0.12729,-0.38531 -0.0336,-0.42162 z"
124
+ id="path4697"
125
+ inkscape:connector-curvature="0"
126
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccc" />
127
+ <path
128
+ style="fill:#7c5d45;fill-opacity:1"
129
+ d="m 193.60352,739.02148 c -0.85969,0.8059 -1.72887,1.60144 -2.60743,2.38672 l -3.75,2.20313 c -4.81445,0.0331 -10.30135,4.33482 -7.50228,7.30932 -0.65137,0.76141 -2.1799,-0.10281 -2.62159,0.82177 -0.32917,0.55334 0.44862,2.61248 0.75083,3.10914 -0.58634,0.83257 -1.74329,0.91995 -2.50873,1.54344 -0.91151,0.72584 -2.90701,-3.64522 -3.17742,0.30308 -2.7542,0.0737 -0.71442,4.1442 -1.19276,5.25309 -0.4296,0.15243 0.26268,0.7232 0.33984,0.27735 0.69142,-0.45297 1.927,0.24757 1.58594,1.11132 -0.83722,0.42878 -0.55422,1.92816 -1.64453,2.01758 -0.56207,-0.11175 -0.16437,-0.70003 -0.0352,-1.0039 0.1571,-0.60054 -1.84919,-1.95056 -2.31957,-1.41987 -0.80303,0.64822 0.32287,2.48589 -0.10066,3.36596 -0.51126,1.10762 -1.07125,2.24528 -1.11192,3.48892 -0.0956,1.5587 -0.18276,3.12407 -0.51094,4.65511 -0.53589,2.89369 -1.28991,5.73975 -1.9862,8.59738 -0.20154,0.84605 -0.19472,1.87667 0.48828,2.51171 0.59834,-1.21874 1.11912,-2.53743 2.15039,-3.46679 0.66049,-0.72629 1.86198,-1.05999 2.02539,-2.15235 -0.26866,-0.74256 -1.39114,-1.32969 -0.88477,-2.2207 0.16048,-0.92192 0.60879,-2.02369 1.63282,-2.22656 0.22773,-0.62374 -0.73553,-0.57926 -1.01542,-0.94964 -0.68484,-0.43697 -0.94534,-1.35892 -0.55235,-2.07642 l 0.2416,-0.86652 c 0.7414,-0.11453 1.33732,0.46302 1.7539,1 1.70613,-0.60218 3.52626,-0.71526 5.29653,-1.02488 l 21.75425,-3.31106 c -3.26684,1.2569 -6.59624,2.39995 -9.67739,4.08212 -1.55686,0.87718 -3.079,1.85382 -4.35972,3.11124 -1.04746,1.02829 -2.23714,1.89537 -3.46727,2.69082 -3.36677,2.26615 -6.73958,4.52372 -10.06788,6.84629 -0.96579,0.83905 -0.66297,2.24809 -0.2873,3.3025 0.6737,2.10464 1.72992,4.06232 2.85956,5.95336 1.28751,2.0893 2.70754,4.09438 4.21384,6.03121 1.32832,1.71234 2.74672,3.35568 4.26233,4.90519 0.74643,0.89937 2.04728,1.16214 2.64297,2.21008 0.40862,1.03255 0.1317,2.23097 0.69922,3.21485 l 1.61735,3.26424 c -3.58764,-0.91238 -3.81091,-0.73802 -7.4507,-1.42655 -1.13468,-0.19872 -6.46168,-0.14277 -7.60374,-0.28981 -0.0719,1.28725 3.1025,1.31409 4.17147,1.5947 1.22331,0.21751 2.50611,0.31916 3.61718,0.92383 0.9782,0.48753 1.96964,0.95291 2.90235,1.52539 -1.16542,-0.18644 -1.52206,1.21184 -1.88219,2.03533 -0.47667,1.0312 -0.90689,2.09784 -1.5807,3.02131 -0.77625,0.90611 -1.95347,1.26993 -2.9998,1.75952 l -3.78536,1.63696 c -0.28918,-0.29367 -0.007,-0.8698 -0.43945,-1.06641 -0.54931,1.04212 -0.97691,2.18135 -1.8086,3.04297 -2.36032,1.9351 -4.77821,3.79802 -7.18554,5.67383 -0.73711,-0.84253 -1.82289,-1.23988 -2.86524,-1.55469 -0.82888,-0.3091 -0.98357,-1.28562 -1.45746,-1.92816 -0.54713,-0.71959 -1.54597,-0.8041 -2.34794,-1.07397 -0.66277,-0.14888 -2.01441,-0.88249 -2.70428,-0.86657 1.8863,4.04352 5.21444,5.82599 7.11489,8.50862 0.70073,0.78739 1.41098,1.59883 2.33229,2.13547 1.12079,0.71643 2.14882,1.57567 3.02355,2.57944 0.66666,0.74348 1.43228,1.42987 2.35927,1.82877 2.61861,1.36484 5.05054,3.06319 7.70928,4.35474 1.21254,0.60936 2.46567,1.14086 3.74741,1.58655 2.96627,1.0289 6.05821,1.61643 9.10183,2.36273 1.43214,0.33126 2.84526,0.7382 4.26179,1.12957 1.19522,0.21598 2.4087,0.30121 3.62109,0.3457 l -1.4707,-4.58203 c -0.015,-1.2612 1.18742,-2.00924 2.2308,-2.40905 2.92508,-1.37189 5.85666,-2.72986 8.78678,-4.09095 -0.91609,-0.54899 -2.02619,-0.42102 -3.04102,-0.3457 -2.20353,0.18105 -4.387,0.53403 -6.57422,0.84766 -1.06409,-10e-4 -2.13007,-0.0256 -3.1914,0.0684 -0.63992,-0.82546 -0.72117,-1.92291 -1.16009,-2.85166 -0.29156,-1.04209 -0.82741,-2.04042 -0.96296,-3.11123 0.059,-0.80702 1.03256,-1.29661 1.67703,-0.75478 1.11153,0.47425 2.09844,1.20511 3.24987,1.59885 2.33619,1.00188 4.72217,1.88734 7.13359,2.68992 1.24668,0.41794 2.59966,0.70688 3.90389,0.38877 1.49661,-0.32541 2.99581,-0.63849 4.49656,-0.94425 1.01562,-0.15244 2.05289,0.0107 3.02148,0.32813 0.12485,0.82971 -0.59745,1.50172 -0.91509,2.21395 -1.90905,3.2204 -3.81572,6.44224 -5.72749,9.66105 2.27185,-0.57341 4.53746,-1.17044 6.79688,-1.79102 3.39507,-1.50347 6.72866,-3.16811 9.8544,-5.17932 2.83298,-1.81838 5.50861,-3.89108 7.91659,-6.24639 1.25996,-1.20555 2.44271,-2.49039 3.5779,-3.8131 1.4331,-1.6823 2.76815,-3.44407 4.12572,-5.18697 l -4.14453,-0.16992 c -1.18731,-0.37407 -2.21192,-1.2303 -2.78516,-2.33594 0.29206,-0.96528 -0.45238,-1.79616 -0.99045,-2.50813 -0.14474,-0.0853 -0.40097,-0.62147 0.01,-0.40789 0.88453,0.2566 1.2116,1.21395 1.70957,1.88779 0.44981,0.53713 0.93251,1.19494 1.68106,1.28799 -0.20523,-1.15906 -1.24308,-1.85782 -2.06874,-2.5799 -1.55114,-1.32518 -3.14762,-2.59575 -4.73009,-3.88299 -1.21555,-1.12839 -1.92544,-2.65379 -2.73828,-4.07031 -0.54766,-0.99726 -1.11636,-1.98575 -1.56055,-3.03515 0.0476,-0.98661 1.33623,-0.60371 1.87282,-1.14792 0.84554,-0.59445 1.7068,-1.23646 2.32819,-2.07037 0.67722,-1.01425 0.83498,-2.2546 1.17427,-3.40178 0.27782,-1.02223 0.66053,-2.02572 1.27271,-2.89778 1.83652,-2.97 3.72605,-5.90966 5.4628,-8.93944 1.34983,-2.54234 2.48595,-5.18873 3.66095,-7.81425 1.08276,-2.48276 2.20975,-4.94988 3.16506,-7.485 0.35474,-1.16375 0.84251,-2.37582 0.5925,-3.61261 -0.24356,-1.17102 -0.81248,-2.23719 -1.26971,-3.3332 l -1.64826,-3.71758 c -0.54169,-1.01993 -1.54054,-1.79562 -2.68164,-2.00976 -0.64005,-0.0613 -0.61385,0.98239 -0.10157,1.15039 0.82896,0.86606 1.24694,2.10362 1.10743,3.29492 -0.071,0.66072 0.0733,1.86209 1.00781,1.67383 0.64155,-0.2718 0.27358,-1.15034 0.66992,-1.62695 0.0815,-0.18579 0.24297,-0.31289 0.36524,-0.46875 0.58702,1.07709 0.56424,2.42141 1.375,3.38671 l 0.88671,1.11329 -3.11718,3.82421 c -1.02015,0.24182 -2.2386,0.84659 -2.29816,2.03625 0.0272,0.15419 -0.15162,0.62017 -0.33414,0.28121 -0.78665,-0.6784 -1.20045,-1.65881 -1.76419,-2.50886 -0.4215,-0.56793 -0.0884,-1.5123 0.61524,-1.65235 -0.19018,-0.93408 -0.70664,-1.85277 -0.48853,-2.82761 0.22374,-0.75609 0.71313,-1.46183 1.41235,-1.84817 -0.8863,-0.29002 -1.69835,-1.09296 -1.66406,-2.07812 0.0685,-0.75793 0.27765,-1.52518 0.12305,-2.28516 -0.69586,-0.26476 -1.41526,-0.45772 -2.13086,-0.66015 -0.78505,0.7065 -2.03218,0.56871 -2.83594,-0.0333 -0.5261,-0.37647 -0.96751,-0.85353 -1.43945,-1.29287 0.83875,-0.18027 1.56566,0.40246 2.24023,0.80274 0.28447,0.14889 2.27402,-0.40149 2.30102,-1.02203 -0.1411,-0.70254 -2.16298,-0.24778 -2.88305,-0.18888 -0.81514,-0.77138 -0.67121,-1.97378 -0.71871,-2.99156 -0.0637,-1.01518 0.10793,-2.09758 -0.24613,-3.06313 -0.51882,-0.59667 -1.75524,-0.15823 -1.9668,-1.09375 -0.34216,-1.01641 -1.3303,-1.59897 -1.82812,-2.51953 -0.34165,-0.94952 0.20999,-1.90273 0.19364,-2.86067 -0.11109,-1.09455 -0.67644,-2.08977 -1.26253,-3.00047 -0.26034,-0.39997 -0.58644,-0.75193 -0.91549,-1.09589 -0.44846,0.96792 -1.2156,1.81325 -2.20703,2.23633 -0.43033,0.6964 -0.0989,1.52771 0.1543,2.22266 -0.76283,-0.79486 -1.11515,-1.86221 -1.54102,-2.85352 -0.94839,-1.04873 -2.36834,-1.41721 -3.50355,-2.20562 -1.00104,-0.63236 -1.99111,-1.3022 -3.10192,-1.72993 -0.6956,-0.42091 -0.32811,-1.76619 0.56818,-1.44831 1.05768,0.0608 1.7308,1.00781 2.31981,1.77626 0.58607,0.72098 1.36016,1.33187 2.28935,1.51815 0.0968,0.022 0.69052,0.20907 0.38468,-0.1201 -0.42598,-1.07712 -1.19741,-1.983 -2.13673,-2.6509 -0.75401,-0.59143 -1.52314,-1.16462 -2.24169,-1.79971 0.72791,-0.81139 1.75522,0.0857 2.57689,0.24915 l 2.02467,0.71374 -4.99219,-3.92578 c -1.85324,-0.43984 -3.73458,-0.7735 -5.63652,-0.90332 -3.10083,-0.22752 -6.21111,-0.26524 -9.31843,-0.32579 -1.09871,0.0338 -2.21638,-0.0489 -3.3018,0.12928 l -2.11044,0.57835 c -0.38556,-0.34439 -0.73468,-1.02327 -1.35546,-0.83985 z m 16.19726,1.3418 3.39649,0.90234 c 0.29067,0.15937 0.55788,0.38021 0.71093,0.67969 -1.14791,0.1124 -2.25685,-0.27931 -3.3457,-0.58203 -0.4228,-0.27498 -0.86355,-0.53014 -1.22852,-0.88281 0.0833,-0.17494 0.31192,-0.17149 0.4668,-0.11719 z m 2.81055,3.49414 c 0.41941,0.54669 -0.63632,1.25328 -0.98438,0.66211 0.008,-0.48295 0.56528,-0.72833 0.98438,-0.66211 z m 9.33203,1.10352 c -0.0931,1.12406 1.25706,1.34261 1.95833,1.88349 0.91545,0.61778 1.81668,1.28185 2.52278,2.14068 1.29782,1.48731 2.57167,2.9952 3.83139,4.51489 0.88159,1.28654 1.76915,2.56971 2.73242,3.79688 0.2295,0.42854 0.0355,1.08972 -0.47851,1.1914 0.17758,0.67502 1.05486,0.47263 1.54101,0.77344 0.10245,0.0793 0.44779,0.20612 0.375,-0.0723 0.2438,-1.11692 0.12904,-2.26722 0.0879,-3.39843 -0.16276,-1.09541 -0.80488,-2.07668 -1.65234,-2.77149 l -7.65821,-6.93945 c -0.88907,-0.67499 -1.96341,-1.15288 -3.09179,-1.18164 z m -36.98438,1.82031 c 0.13114,0.29319 -0.40819,-0.0628 -0.0684,-0.0234 z m -1.40625,2.73242 c -0.98545,0.90455 -2.04205,1.72564 -3.08593,2.56055 0.5657,-1.09481 1.62173,-1.81133 2.67656,-2.38409 0.17746,-0.0981 0.34835,-0.21029 0.53437,-0.29169 z m 45.99415,12.625 c 0.34172,1.14536 -0.93492,2.04201 -0.67128,3.21171 0.0354,0.89635 0.81204,1.58337 1.35682,2.1086 -0.6065,0.75303 -1.63,1.03532 -2.22199,1.80991 -0.81421,0.85031 -1.66952,1.66871 -2.53578,2.46843 -0.44935,0.42854 -0.94023,0.8095 -1.4141,1.20995 -0.59786,-0.66187 -0.82317,-1.5742 -1.43524,-2.23739 -1.19954,-1.70828 -2.63516,-3.2314 -3.98754,-4.81678 l -0.72957,-0.83451 c 3.0835,-0.73897 6.18127,-1.42385 9.23438,-2.2832 0.78311,-0.26572 1.55087,-0.70255 2.4043,-0.63672 z m 6.49878,1.9909 c -0.53032,0.27663 1.75208,1.17383 1.81567,0.58137 -0.0285,-0.25446 -1.5681,-0.65879 -1.81567,-0.58137 z m -21.08472,1.47785 -2.62696,5.18946 c 0.85497,0.41503 1.4695,-0.59973 2.20842,-0.85441 1.113,-0.69852 2.21583,-1.41283 3.31307,-2.13583 1.01766,0.0277 1.88542,0.66908 2.56024,1.37924 1.06597,0.99274 1.51479,2.44129 1.83052,3.82104 1.09433,4.7249 2.06708,9.47675 3.07018,14.2216 l 1.1875,7.60351 c 0.0659,0.54648 0.8185,0.84683 1.23828,0.48633 1.10517,0.32131 0.89357,1.70023 0.82226,2.58594 -0.0872,1.33518 -0.16325,2.67164 -0.31054,4.00195 -0.38863,1.07007 -1.95695,1.18605 -2.09837,2.4245 -0.63588,2.01938 -1.34518,4.01416 -2.02624,6.01857 -0.51708,1.43543 -0.94408,2.91401 -1.69353,4.25222 -0.47545,0.9353 -1.03346,1.83349 -1.79171,2.56779 -1.00851,1.07654 -2.13105,2.04852 -3.33794,2.89641 -0.92445,0.64569 -1.96275,1.11396 -3.05041,1.40704 -1.35783,0.41636 -2.71929,0.82777 -4.02977,1.37957 -1.34842,0.5342 -2.73647,1.03671 -4.19751,1.12389 -1.93149,0.20795 -3.8782,0.35052 -5.82045,0.24231 -1.50473,-0.11878 -4.35478,-0.87201 -5.67822,-1.59195 -0.43415,-3.1912 -3.96168,-3.01398 9.14435,-2.55576 4.07855,-0.0498 11.08122,-2.03628 10.41401,-3.43022 -0.66721,-1.39394 -9.51467,-2.3636 -12.30735,-2.07008 -2.79268,0.29352 -5.40651,1.1957 -6.82502,1.19582 -2.57449,-0.0449 -1.46698,0.42375 -3.95395,-0.1742 -0.15781,-1.14618 -1.70512,-3.40477 -2.25571,-4.6137 -0.81923,-1.89078 -1.18979,-3.93692 -1.39506,-5.97705 -0.14811,-1.14652 -0.22602,-2.30667 -0.47243,-3.43735 -0.41938,-1.7707 -1.21494,-3.41835 -1.90714,-5.09258 l -1.85818,-4.20201 c 0.38227,-0.47533 1.04597,0.54232 1.3457,-0.0898 -0.18488,-1.05869 -1.08965,-1.82166 -1.25586,-2.88672 0.0215,-2.47178 0.41708,-4.91835 0.68554,-7.37056 l 0.44728,-3.72905 c 0.303,-1.27661 1.16834,-2.35186 2.21094,-3.11719 l 3.02929,-2.37109 c 1.12897,-0.65154 2.47398,-0.6322 3.73633,-0.6211 2.10456,-0.008 4.25683,-0.0726 6.25989,-0.78822 3.22562,-1.07873 6.14764,-2.87133 9.32286,-4.07406 1.69265,-0.68579 3.44229,-1.25298 5.25188,-1.52967 l 0.83334,-0.15297 z m -44.89258,0.0742 c 0.92094,0.11807 0.28785,1.79893 -0.48242,1.2832 -0.34266,-0.40212 -0.21055,-1.42074 0.48242,-1.2832 z m 63.27148,2.78516 c -0.62314,0.68587 -1.5874,0.82124 -2.45507,0.95508 0.35762,-1.01104 1.61785,-0.67512 2.41015,-1.01172 z m -62.76953,0.57617 c 0.26948,0.53078 -0.31097,1.20318 -0.875,1.05469 -0.11045,-0.50375 0.30846,-1.16466 0.875,-1.05469 z m 64.51172,8.43555 c 0.26629,0.11432 0.18238,0.57049 -0.0898,0.61914 -0.016,1.10539 0.32058,2.17178 0.51562,3.25 -0.97059,0.22522 -1.68548,-0.78798 -1.78197,-1.64739 -0.13175,-0.89113 0.23337,-2.27771 1.35619,-2.22175 z m -20.25,1.42382 c -1.7773,0.38183 -3.56969,0.8533 -5.14062,1.79883 -0.73653,0.5519 -1.3805,1.2199 -1.91993,1.96485 1.02757,0.44635 2.0802,-0.156 3.00664,-0.57182 1.2732,-0.56813 2.52859,-1.19806 3.86281,-1.61016 1.24087,-0.31262 2.48859,-0.59559 3.73993,-0.86295 -1.03224,-0.54356 -2.21876,-0.61807 -3.35742,-0.73047 l -0.19093,0.0117 z m -46.99609,0.55274 c 0.51002,0.25225 -0.58794,0.7549 -0.39844,0.20312 0.0441,-0.15473 0.23808,-0.31406 0.39844,-0.20312 z m 50.79101,0.21484 c 0.67793,0.56748 1.36415,1.12475 2.0586,1.67188 -0.10559,-1.09497 -1.45066,-1.14493 -2.11914,-1.76172 z m 18.4375,1.18946 0.71485,0.72851 c -0.34812,0.49257 -1.22237,0.39171 -1.44532,-0.16992 0.18267,-0.23094 0.34902,-0.70107 0.73047,-0.55859 z m -66.37695,0.59374 c -0.49904,0.35269 0.59354,0.98603 0.64258,0.37305 -0.10898,-0.23223 -0.37121,-0.45493 -0.64258,-0.37305 z m 22.73438,0.5879 c -2.12229,0.28955 -4.10644,1.15448 -6.01333,2.09175 -0.81455,0.43714 -1.86435,1.37787 -1.37294,2.39906 0.38462,0.60995 1.16555,0.16698 1.40239,-0.33803 0.78732,-0.91361 1.53654,-1.94769 2.6784,-2.44136 1.0873,-0.53863 2.33383,-0.4596 3.5,-0.2991 0.80878,0.076 1.61307,0.19033 2.41876,0.29275 -1.13186,0.19875 -2.26884,0.37722 -3.38282,0.66407 -1.10044,0.47614 -2.1289,1.09805 -3.125,1.76172 -0.73195,0.54908 -1.27164,1.42147 -1.24023,2.35742 2.17942,-0.26329 4.29829,-0.97688 6.50781,-0.98828 1.12869,-0.0451 2.25796,-7.7e-4 3.38672,0.0176 1.04912,-0.27165 0.90945,-1.76579 0.0936,-2.23421 -0.28911,-0.35204 -0.62771,-0.65894 -0.94514,-0.98454 l 2.72851,0.52344 c -0.25276,-1.20427 -1.19835,-2.28042 -2.4246,-2.53353 -1.19452,-0.28098 -2.43022,-0.27001 -3.64961,-0.31803 z m 19.15429,0.73046 c -1.47276,0.55283 -2.76554,1.49934 -3.88086,2.59571 -0.22524,0.28771 -0.42978,0.58951 -0.61523,0.90429 1.24201,-0.13458 2.35293,-0.74823 3.51562,-1.15625 1.06355,-0.10804 2.07462,0.31457 3.08789,0.5625 1.32925,0.10498 2.66599,0.0984 3.99414,-0.0195 -0.24793,-1.1905 -1.14354,-2.25308 -2.33007,-2.58398 -1.03548,-0.2694 -2.10056,-0.40664 -3.16797,-0.46094 z m 25.29297,0.10352 1.69141,0.66992 c -0.67341,-0.0784 -1.34263,-0.18352 -2.00782,-0.31445 -0.0624,-0.18404 0.12381,-0.4107 0.31641,-0.35547 z m -71.58203,4.22461 -0.11719,2.21094 0.13672,-2.29883 z m 0.6543,4.09961 c 1.18921,2.24198 2.68386,4.30031 4.0625,6.42602 l 0.42968,0.65015 c -0.91671,-2.21327 -2.26728,-4.20417 -3.5625,-6.20703 -0.37424,-0.50348 -0.74089,-1.01414 -1.16406,-1.47852 z m 43.54492,7.2676 L 206,799.26758 c -1.51832,0.0956 -3.03999,0.0884 -4.56055,0.0996 -0.49228,0.0496 -0.97881,0.18125 -1.41211,0.42383 1.01399,0.89403 2.34294,1.29342 3.64417,1.54731 1.19212,0.30263 2.51743,0.26707 3.60974,-0.34419 l 3.66602,-1.73828 c 0.29552,-0.29959 -0.0237,-0.96279 -0.46094,-0.78905 z m -37.82031,2.12304 c 0.1974,-0.007 -0.15127,-0.12959 0,0 z m 0.82031,1.06836 c -0.0237,0.084 0.0587,-0.0716 0,0 z m 41.82617,2.33985 c -1.90879,0.46542 -3.63423,1.46893 -5.53906,1.94922 -2.17335,0.58397 -4.42051,0.97043 -6.67717,0.89039 -0.99285,-0.077 -2.0152,-0.0721 -2.95318,0.30728 -0.95661,0.41687 -1.92162,0.80971 -2.93347,1.07854 -0.0282,0.0589 -0.52695,0.0558 -0.0845,0.17667 1.30759,0.85949 2.90661,1.033 4.42228,1.21966 1.93433,0.2569 3.91178,0.39027 5.84265,0.0317 1.02006,-0.14322 2.01891,-0.40475 3.00251,-0.70622 2.43997,-1.16554 4.28343,-3.28271 6.76562,-4.375 0.14414,-0.32644 -0.47857,-0.35396 -0.66194,-0.48627 -0.37754,-0.13248 -0.79048,-0.12237 -1.18376,-0.086 z m -57.25977,0.66797 c -0.93519,0.0866 -1.59457,0.84931 -2.11148,1.5611 -0.56609,0.87776 -1.58954,1.24399 -2.47445,1.70452 -0.96212,0.55889 -1.76555,1.34715 -2.64908,2.01743 -0.85731,0.72799 -1.85886,1.3681 -2.40366,2.38491 -0.25947,0.54853 -0.32947,1.19086 -0.15429,1.7754 0.60303,-1.14766 1.21356,-2.36012 2.28361,-3.14749 1.21605,-1.02797 2.55968,-1.95403 4.09646,-2.42459 2.25666,-0.81486 4.63915,-1.17543 6.99297,-1.58808 1.61961,-0.17038 3.25928,-0.25655 4.88086,-0.0625 1.12991,0.27518 1.89133,1.37351 1.98041,2.50001 0.10497,0.62495 0.16582,1.25595 0.24225,1.88475 -0.90653,-0.60005 -1.98792,-1.13366 -3.10448,-0.94378 -1.69951,0.28151 -3.36337,0.73705 -5.02099,1.19763 -1.84406,0.56596 -3.60281,1.42821 -5.14016,2.59772 -0.46426,0.43485 -0.9823,0.89369 -1.13086,1.54101 2.44662,-0.85249 4.85028,-1.82024 7.24275,-2.81307 1.00535,-0.37285 1.96212,-0.89919 3.01483,-1.13024 0.84338,-0.17573 1.76844,-0.0251 2.4475,0.5273 1.04911,0.80149 1.74152,1.94922 2.49417,3.01113 l 0.5156,0.77988 c 0.0325,-0.993 -0.30144,-2.03247 0.0941,-2.98752 0.41946,-0.98897 0.25532,-2.11772 -0.0879,-3.10369 -0.31736,-1.14216 -0.95875,-2.27147 -2.03357,-2.84824 -1.84442,-1.08439 -3.98425,-1.444 -6.05273,-1.85547 -1.23841,-0.22668 -2.47511,-0.47391 -3.73047,-0.58789 l -0.19104,0.01 z m 9.59375,6.80859 2.56055,0.83984 c -0.26486,0.87129 -1.55408,0.63894 -1.9043,-0.0449 -0.27108,-0.27442 -0.67875,-0.41169 -0.86328,-0.76758 l 0.0664,-0.0273 z m -6.77148,0.89844 c -0.54849,0.67 -1.3808,0.98432 -2.14453,1.33593 -0.35779,-0.2271 -0.0463,-0.86792 0.35156,-0.75195 l 1.68164,-0.67383 z m 64.58789,0.28515 c 0.0612,0.13262 0.18884,-0.0373 0,0 z m -58.93359,3.61524 -4.33203,2.46289 c -0.30964,-0.0909 0.0401,0.47135 0.0957,0.15234 l 4.32226,-2.27148 c 0.13673,-0.0758 0.11503,-0.41126 -0.0859,-0.34375 z m 61.19922,3.55078 0.87109,2.72851 c -0.83004,0.39657 -0.88013,1.46996 -0.71656,2.26025 0.28805,1.54549 0.50596,3.10308 0.72437,4.65968 -1.02092,-0.60867 -1.65191,-1.70107 -1.94922,-2.82618 -0.41937,-2.78077 -0.55699,-5.59296 -0.81416,-8.39108 -0.045,-0.48082 -0.0764,-0.9642 -0.0413,-1.44681 z m -46.90625,-1.96484 c 0.36921,0.2353 -0.40242,0.68051 -0.4043,0.23437 0.11045,-0.0823 0.22976,-0.31241 0.4043,-0.23437 z m -10.07032,1.15039 c -0.68111,1.06272 -1.36541,2.21338 -2.50405,2.84421 -1.20698,0.72669 -2.44202,1.45061 -3.81431,1.81594 l -2.16992,0.68555 c 0.96732,0.80702 2.10373,-0.2312 3.12062,-0.39037 1.20414,-0.3462 2.35642,-0.84631 3.54344,-1.2444 1.02553,-0.37426 1.8042,-1.27369 2.03999,-2.33756 0.17318,-0.66943 0.17586,-1.36778 0.18072,-2.05502 z m 56.63672,2.55273 c 0.0223,0.2367 0.16366,-0.0862 0,0 z m -39.14844,0.89844 c 0.9758,2.07633 2.0076,4.12564 3.0608,6.16377 0.82692,1.25119 1.88517,2.36273 3.13842,3.19365 0.17932,0.36193 0.59337,-0.29506 0.2168,-0.34766 -0.55458,-0.84455 -1.31978,-1.51686 -1.97461,-2.27929 0.28941,-0.59358 0.95961,-0.0119 1.24024,0.29687 3.25932,2.39083 6.44175,4.88401 9.59374,7.41406 -1.10991,0.15039 -2.14368,-0.37487 -3.16992,-0.70703 -2.36919,-0.76081 -4.57496,-2.01057 -6.4511,-3.64458 -1.74764,-1.43229 -3.31073,-3.15079 -4.2776,-5.21177 -0.68315,-1.41484 -1.12528,-2.9394 -1.35919,-4.4913 -0.0536,-0.0403 -0.15287,-0.51483 -0.0176,-0.38672 z m -2.125,0.0918 0.9043,1.88086 c -0.19852,0.38618 -0.88021,0.0707 -0.73633,-0.33007 -0.12595,-0.50891 -0.17244,-1.03201 -0.23828,-1.55079 z m -9.19726,0.91211 c -0.69329,0.50132 -1.40047,0.98222 -2.12109,1.44336 -0.48013,-0.16203 -0.2527,-1.01858 0.24414,-0.92382 L 177,823.29883 Z m -4.67188,1.67578 c 0.37865,0.32829 -0.65925,0.38918 -0.24218,0.0371 l 0.11718,-0.0449 z m 16.17579,2.94922 c 0.30636,0.18875 -0.34723,0.2337 -0.12305,-0.004 z m 7.0996,4.0918 c -0.46472,0.22675 0.44574,0.8372 0.46094,0.3125 -0.002,-0.21773 -0.25631,-0.41644 -0.46094,-0.3125 z m 1.53516,0.76563 c -0.36491,0.33587 0.53744,0.76407 0.56445,0.26953 -0.0612,-0.23828 -0.34768,-0.33684 -0.56445,-0.26953 z m -3.6875,0.16015 c 0.15994,0.22922 -0.37917,0.01 -0.10547,-0.0312 z m 2.39258,1.87305 c 0.52774,0.2194 -0.47816,0.6388 -0.2793,0.11133 0.0519,-0.0956 0.17468,-0.15046 0.2793,-0.11133 z m 15.85547,1.20117 c 0.36603,0.24905 -0.52641,0.39752 -0.24219,0.0527 0.0581,-0.0562 0.16502,-0.10903 0.24219,-0.0527 z m -1.35742,0.60938 c -0.926,0.72293 -2.15987,0.36932 -3.23277,0.56252 -0.74585,0.0676 -1.49605,0.0569 -2.2438,0.0312 0.83409,-0.87317 2.14669,-0.41934 3.20565,-0.63317 0.7436,-0.0641 1.48871,-0.10595 2.23381,-0.14808 z m -8.85352,0.5332 2.63086,0.98437 c -0.88801,0.45301 -1.74427,-0.30553 -2.42536,-0.8002 0.008,-0.0201 -0.52868,-0.33332 -0.2055,-0.18417 z"
130
+ id="path4693"
131
+ inkscape:connector-curvature="0"
132
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccczzccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
133
+ <path
134
+ style="fill:#413625;fill-opacity:1"
135
+ d="m 204.13867,740.31836 c -0.82803,0.46964 -0.24181,1.49338 -0.0348,2.15533 0.0951,0.56848 0.4663,1.1978 0.39422,1.72943 -0.36945,0.21921 -0.48229,-0.25252 -0.65416,-0.42161 -0.78362,-0.66234 -1.95791,-0.59569 -2.69369,-1.33787 -0.99538,-0.72023 -2.22202,-1.01437 -3.42559,-1.14286 -1.16125,-0.1606 -2.3239,-0.36662 -3.49389,-0.42645 -1.05284,0.0187 -2.08455,0.61727 -2.59791,1.54169 -0.52173,0.48783 -0.14305,1.81965 0.6875,1.37304 0.18634,-0.0717 0.63545,0.17414 0.32813,0.35156 -0.85849,0.70552 -2.0083,0.78458 -3.04883,1.0254 -0.66686,0.0126 -0.78964,-0.81306 -0.48047,-1.26563 0.006,-0.5245 -0.64796,-0.16217 -0.93101,-0.13168 -0.83983,0.26804 -1.62639,0.91638 -2.10219,1.59457 0.18115,0.25249 0.60196,0.0286 0.87406,0.14963 l 1.16695,0.11014 c 0.18053,1.12653 -0.22869,2.26519 -0.86523,3.18359 -0.4756,0.79119 -0.90144,1.61326 -1.24024,2.47266 -1.1234,-0.27881 -2.47529,0.34826 -2.72833,1.53744 -0.32678,1.16356 0.0451,2.36819 0.35867,3.49184 0.32796,0.95351 0.75277,1.92703 1.4899,2.63561 0.027,0.10599 0.72028,0.45833 0.26619,0.23221 -1.0065,-0.47371 -1.56381,-1.50146 -2.09881,-2.42155 -0.80596,-1.41142 -1.52997,-2.86703 -2.27394,-4.31149 -0.7363,0.80831 -0.86528,1.94662 -0.9375,2.99023 -0.10809,1.65318 0.22154,3.2892 0.52929,4.9043 -1.21952,-0.66602 -2.17319,-1.84643 -2.44922,-3.2207 l -0.31054,-1.32031 c -0.82656,0.88966 -1.64955,1.78385 -2.39453,2.74414 -0.82174,0.61108 -0.51938,2.23763 0.5625,2.33593 0.49262,1.07626 -0.68212,1.88414 -1.18307,2.70086 -0.88599,1.10611 -1.7502,2.2291 -2.60209,3.36164 -0.44148,0.88555 -0.2274,1.89192 -0.10391,2.8243 0.19399,0.97272 0.0109,2.28016 -1.01718,2.70305 -0.55147,-0.18986 -0.94972,-0.91996 -1.5293,-0.89258 -0.43229,0.65049 -0.63504,1.42081 -0.87891,2.15625 0.73265,0.47692 1.47291,0.94172 2.22071,1.39453 -0.49685,0.32581 -1.03804,0.57319 -1.56836,0.83789 l -0.6211,2.39649 c 0.44307,0.65829 0.86539,1.32964 1.26758,2.01367 -0.8958,0.67387 -1.80823,1.32842 -2.64844,2.07226 -0.71087,0.90423 -1.2109,2.05707 -1.05273,3.22657 l 0.45508,3.47265 c 0.53912,1.87792 1.64638,3.50992 2.58594,5.20117 l 4.83593,8.37891 c 0.60416,0.92889 1.32915,1.87706 2.40235,2.28125 2.6103,1.06789 5.25631,2.04445 7.89648,3.03516 0.11241,-1.05831 -0.82531,-1.86029 -1.71875,-2.22461 -0.98696,-0.45878 -1.55418,-1.6887 -1.16627,-2.72381 0.29751,-0.98837 1.06888,-1.78599 1.22291,-2.82698 0.22176,-1.27271 -0.12986,-2.54382 -0.25861,-3.80667 -0.29105,-2.069 -0.57901,-4.15511 -0.46203,-6.24976 0.0728,-3.09355 0.28733,-6.18133 0.49193,-9.26824 0.0955,-1.24881 0.24946,-2.49299 0.45723,-3.72806 0.26074,-1.12625 1.12873,-1.9982 2.08789,-2.58398 1.36814,-0.90116 2.74639,-1.78658 4.13476,-2.65625 1.2541,-0.70978 2.73334,-0.69525 4.12891,-0.78976 1.71028,-0.1 3.42125,-0.20697 5.12109,-0.42704 2.35368,-0.52643 4.4118,-1.83887 6.47565,-3.0263 l 9.35053,-5.47175 c 0.9123,0.68589 1.49258,1.72413 1.82031,2.80078 l 0.30078,1.55664 c 1.0403,-0.22984 2.07799,0.25166 2.89453,0.86329 1.60929,1.16426 2.95535,2.68165 3.93555,4.4082 0.70263,1.44172 0.74125,3.07362 0.97818,4.63104 0.33013,2.75941 0.85058,5.49048 1.41012,8.21121 l 0.93396,4.68119 c 0.16247,1.30387 0.23823,2.61604 0.33594,3.92578 0.15546,0.79374 0.89979,1.34429 1.66797,1.47265 0.74286,-0.0204 1.53116,0.19469 2.24219,-0.084 -0.0552,-1.13852 -1.14235,-1.87081 -1.32689,-2.98718 -0.35265,-0.96624 -0.20121,-2.0021 0.0281,-2.97571 0.22532,1.21859 1.15442,2.1563 2.15625,2.81055 1.38249,0.94495 2.76204,1.89418 4.13867,2.84765 0.79876,-0.76829 1.07788,-1.87648 1.42969,-2.88867 0.1664,-0.56146 0.34974,-1.12089 0.42969,-1.70313 -1.35234,-0.0794 -2.69814,-0.30728 -3.98367,-0.74036 -1.20242,-0.38801 -2.40265,-0.78301 -3.60423,-1.1737 l 1.4043,-1.17578 c 1.01468,0.63289 2.10453,1.2742 3.33203,1.32227 1.09416,-0.0746 1.99801,-1.06299 2.0477,-2.14548 -0.0163,-0.0119 0.085,-0.51695 -0.0488,-0.0357 -0.37157,0.86378 -1.48316,1.18532 -2.32702,0.87255 -0.6161,-0.23765 -1.11779,-0.68211 -1.6836,-1.01172 1.0925,-0.85607 2.20268,-1.69299 3.22071,-2.63867 0.4336,-0.70484 -0.56705,-1.15485 -1.14441,-1.10099 -0.88422,-0.18592 -1.97101,0.06 -2.64661,-0.68807 -0.0864,-1.20503 0.50067,-2.30814 0.6875,-3.47461 0.34781,-1.30568 0.86318,-2.56125 1.4961,-3.75391 0.4231,-0.93579 0.53115,-1.99109 0.40039,-3.0039 -0.0142,-0.80367 0.0587,-1.60488 0.10742,-2.40625 -1.00016,0.44152 -1.99282,0.9052 -3.03125,1.25195 -0.84543,0.15392 -1.8293,6.5e-4 -2.43908,-0.64768 -0.66361,-0.42734 -0.24668,-1.51582 0.53283,-1.40505 0.18861,-0.75315 -0.70811,-1.12287 -0.97041,-1.73069 -0.63554,-0.72557 -0.10457,-1.62428 0.15384,-2.37472 l 0.47868,-1.41022 c -0.45092,-0.62874 -1.21857,-0.0469 -1.66992,0.26758 -1.02744,0.1205 -1.37772,-1.10529 -1.24755,-1.91061 -0.10884,-1.00991 -0.52831,-2.03642 -1.35011,-2.67142 -0.81343,-0.45951 -2.09702,-0.97338 -1.77149,-2.14453 -0.14883,-1.12543 -1.4522,-1.48329 -2.05881,-2.32579 -0.83977,-0.83125 -1.78306,-1.54313 -2.72516,-2.25191 -0.87265,-0.59211 -1.61313,-1.38948 -2.46527,-1.97821 -0.67891,-0.16836 -1.50799,-0.20399 -1.84879,-0.93008 -0.69306,-0.84972 -1.42085,-1.82128 -2.57763,-2.01607 -0.37551,-0.10993 -0.76857,-0.14288 -1.15832,-0.12685 -0.03,0.37205 -0.0739,0.74246 -0.13086,1.11133 -1.24831,-1.82516 -2.23452,-3.81356 -3.4707,-5.64648 -0.66842,-0.92955 -1.80134,-1.5361 -2.95703,-1.4629 z m 1.57227,0.60352 c -0.001,0.22259 -0.11279,-0.21103 0,0 z m 0.70898,2.10351 c 0.0453,0.3709 0.0266,0.74866 -0.0547,1.11328 -0.48475,-0.23861 -0.49057,-1.04011 -0.01,-1.28711 z m -10.57422,0.44141 2.64258,0.86718 c -0.60756,0.65388 -1.60779,0.7442 -2.4252,0.5025 -0.56374,-0.15405 -1.05147,-0.48995 -1.53574,-0.80523 0.1422,-0.57548 0.841,-0.61079 1.31836,-0.56445 z m 6.66016,1.05273 c -0.0232,0.22762 -0.14386,-0.12325 0,0 z m -9.7832,2.1582 1.27343,0.16993 c -0.44521,0.37627 -1.10997,0.45395 -1.63476,0.20507 -0.032,-0.19465 0.15477,-0.43017 0.36133,-0.375 z m -7.97461,0.0234 c -0.0912,0.36571 0.29238,-0.15354 0,0 z m 28.49023,1.86524 c 0.50623,1.06646 0.15714,2.43149 -0.80733,3.11694 -0.28313,0.25079 -0.53666,0.53301 -0.76493,0.83423 0.66262,0.10412 1.3012,0.31256 1.94336,0.5 -0.65937,0.81743 -0.71315,2.14437 -1.78907,2.58984 -0.91241,0.44048 -1.91207,0.67757 -2.80664,1.15625 -0.34187,0.18429 -1.07395,0.19328 -0.98633,-0.37109 0.39322,-0.92805 1.44686,-1.53512 1.46485,-2.6211 -0.19966,-0.97046 -1.1314,-2.18909 -0.23242,-3.0625 0.84946,-0.68259 2.24114,-0.51885 2.80755,-1.58604 0.29387,-0.41302 0.49274,-0.89298 0.8526,-1.25771 z m -21.19922,-0.51368 c 0.54844,0.17053 0.89442,0.81399 0.73047,1.36524 -0.70059,-0.0919 -1.40782,-0.3 -1.9707,-0.74219 0.0796,-0.56693 0.76811,-0.70473 1.24023,-0.62305 z m 18.64063,4.88672 c -0.17492,0.1691 -0.33856,0.34852 -0.49219,0.53711 0.36616,0.17774 0.87097,-0.27432 0.64844,-0.64844 l -0.15579,0.111 z m -17.78321,0.96094 c 1.00096,0.23923 1.95839,0.76065 2.60352,1.57617 0.75642,1.25742 0.86628,2.83804 0.41211,4.22071 -0.43001,1.49126 -1.33175,2.85434 -2.58789,3.77539 -0.66196,0.35673 -1.39941,0.65193 -2.16602,0.58789 1.02066,-0.46405 1.35699,-1.62516 1.63067,-2.61753 0.56017,-1.95424 0.82526,-4.01811 0.54902,-6.04263 -0.12675,-0.64715 -0.44795,-1.33439 -1.08789,-1.60937 z m 9.31055,4.44141 2.64453,5.52539 0.22461,-2.38086 c -0.14114,1.07923 0.2158,2.33385 -0.53895,3.24935 -0.75546,0.72804 -1.89624,0.53496 -2.85167,0.57096 -0.26595,0.0517 -1.00603,0.0818 -0.8086,-0.35937 0.52314,-0.62357 1.74105,0.005 2.01195,-0.98103 0.63644,-1.03024 0.22343,-2.28529 -0.0135,-3.37509 -0.21027,-0.81962 -0.48937,-1.61891 -0.74457,-2.42513 l 0.0761,0.17551 z m 10.18945,3.07812 c 0.56215,0.37386 -0.6204,1.13415 -0.66796,0.42969 0.0887,-0.27067 0.37733,-0.49149 0.66796,-0.42969 z m -31.22656,1.63477 c -0.72667,0.95095 -0.60106,2.32536 0.0491,3.28152 0.86539,1.40163 2.24386,2.46938 3.80048,2.99777 0.42851,0.12938 0.86724,0.22375 1.3125,0.27149 -0.96787,0.65589 -2.24511,0.64354 -3.30859,0.24023 -1.25811,-0.44057 -2.40795,-1.24844 -3.14453,-2.37109 -0.5152,-0.95173 -0.5278,-2.19383 0.0957,-3.09961 0.35555,-0.55493 0.85134,-0.99369 1.31641,-1.45312 z m 15.08594,1.21484 c 0.23837,0.12078 0.3447,0.37842 0.48437,0.58789 -0.24909,-0.14727 -0.45788,-0.35779 -0.61523,-0.59961 l 0.0684,-0.0156 z m 38.7832,11.44141 c -0.53687,0.22408 0.5212,0.87248 0.43164,0.28125 -0.064,-0.16628 -0.23763,-0.33387 -0.43164,-0.28125 z m -67.37695,3.67773 c -0.13206,0.21929 -0.27188,0.7278 0.125,0.7461 0.24601,-0.16332 0.33983,-0.85892 -0.125,-0.7461 z m 72.04101,1.26563 c -0.373,0.40693 -0.37926,1.08997 -0.0176,1.50586 0.40774,-0.42247 0.47932,-1.12093 0.16601,-1.61719 z m -68.79687,0.79297 c 0.1913,0.23927 0.3164,0.53199 0.34375,0.83789 -0.48555,0.15219 -0.90517,-0.59001 -0.50977,-0.91993 z m 2.01953,1.93164 c 0.13864,1.12894 0.37196,2.25074 0.54688,3.37695 l -0.0391,1.48437 c -0.54608,0.29306 -1.03103,0.68071 -1.52539,1.05079 -0.93612,-0.67652 -0.4773,-1.98675 -0.74005,-2.9491 -0.029,-1.05691 0.43263,-2.14555 1.29279,-2.78137 0.14413,0.0109 0.34588,-0.35334 0.46484,-0.18164 z m 40.54688,0.45117 c -0.32762,-0.12738 -0.93369,0.30721 -0.51172,0.60156 0.85165,0.65244 1.98159,0.28292 2.95703,0.50781 0.50937,0.0412 1.32375,0.32151 1.66406,-0.1289 0.007,-0.84194 -1.11457,-0.67966 -1.67771,-0.82718 -0.80129,-0.14555 -1.61844,-0.19804 -2.43166,-0.15329 z m -17.52735,1.30664 c -1.29102,0.0751 -2.53346,0.46874 -3.7817,0.77675 -0.8853,0.23874 -1.88762,0.57922 -2.41752,1.35411 0.92131,0.39487 1.88892,-0.14773 2.78608,-0.37322 1.02505,-0.19984 2.0797,-0.26394 3.12348,-0.33086 0.67136,-0.14565 1.66466,0.27294 2.06701,-0.4717 0.24811,-0.7699 -0.80716,-1.03418 -1.37891,-0.96875 z m 42.68555,0.1875 c -0.51622,0.17734 0.31318,0.96973 0.44336,0.42773 0.006,-0.22672 -0.20275,-0.47898 -0.44336,-0.42773 z m -7.9375,6.33594 c -0.20273,0.3807 -2.1e-4,0.9441 0.4375,1.04296 0.38037,-0.35671 0.15915,-1.08254 -0.33984,-1.19726 z m 2.03906,1.42187 c -1.19411,-0.16713 -1.75052,1.58059 -0.83898,2.27264 0.55644,0.76437 1.35675,1.3968 2.30187,1.57697 -0.8811,-0.79838 -1.39765,-1.92301 -1.63867,-3.07226 -10e-4,-0.30196 0.12452,-0.60841 0.36524,-0.79688 z m -23.3164,5.86328 -0.91797,0.43555 c 0.34849,0.38358 1.11177,0.11719 1.11718,-0.41016 l -0.0957,-0.0371 z m -8.18946,1.08203 c 0.61677,0.71462 1.72742,0.57714 2.57066,0.85961 0.24494,9.3e-4 0.72456,0.33663 0.72622,-0.11742 -0.14295,-0.60734 -0.92101,-0.39145 -1.36528,-0.581 -0.64144,-0.13528 -1.2873,-0.25756 -1.94332,-0.29009 z m 15.11524,4.30664 c -1.22279,0.11101 -2.30445,0.75997 -3.35938,1.3379 -1.06834,0.61477 -2.18188,1.18154 -3.39524,1.44365 -1.93295,0.47817 -3.93868,0.4208 -5.91249,0.54875 -1.11998,0.0103 -2.23956,0.0935 -3.28479,0.53244 -0.55988,0.19848 -1.09684,0.45159 -1.61646,0.73883 0.36651,0.70228 1.23514,0.10961 1.83546,0.24022 l 6.3286,-0.38866 c 1.44465,-0.21867 2.88078,-0.51647 4.26562,-0.98828 1.77214,-0.94276 3.3915,-2.13823 5.10938,-3.17188 0.0539,-0.0776 0.61188,-0.27077 0.26953,-0.29492 l -0.19128,0.002 z m -48.78321,7.35547 2.22071,1.43164 c 0.56221,-0.16311 0.25291,-1.1601 -0.30078,-1.00976 l -1.91211,-0.57813 z m 56.85938,0.17969 1.05273,2.57227 c -0.0707,-0.94317 0.26003,-1.93265 -0.13867,-2.83594 z m -64.02149,0.41211 -1.86132,1.15234 c 0.45377,0.67876 1.17854,-0.0862 1.59402,-0.40105 0.27551,-0.17089 0.55344,-0.34997 0.75559,-0.60871 -0.0973,-0.16488 -0.32022,-0.19548 -0.48829,-0.14258 z m 10.48864,1.04357 c 5.75776,0.11582 14.12891,2.20861 17.04217,4.35098 1.34175,0.20769 2.27634,0.26938 3.55975,0.73466 6.28114,0.35718 11.64774,0.14392 16.15154,-0.23924 1.28352,-0.20425 2.58708,-0.37912 3.80902,-0.84177 1.66695,-1.28815 -1.88845,-1.27536 -2.75517,-1.17647 -2.30591,0.29911 -6.14161,-0.10716 -8.46477,0.0515 -3.33347,-0.24199 -6.10244,1.39536 -9.09249,0.51893 -3.97928,-1.02448 -3.73811,-1.7214 -7.71341,-2.76029 -2.61057,-0.67254 -9.56731,-0.86949 -12.1991,-1.45148 z m 52.05043,2.81385 c -0.41736,1.65448 -0.7041,3.39398 -1.62879,4.86105 -0.83536,1.35315 -2.04893,2.40763 -3.18957,3.49442 -0.68962,0.54188 -1.58574,0.27222 -2.26953,-0.10937 -0.73859,-0.24409 -1.44241,0.15851 -2.125,0.33984 -0.23481,-0.0161 -0.51088,-0.14963 -0.52735,-0.41602 -2.36792,0.40255 -4.64905,1.17388 -6.96289,1.79883 -0.86036,0.4568 -1.24641,1.57754 -2.29346,1.73219 -1.05136,0.39499 -2.25735,0.34131 -3.26966,-0.14601 -0.96081,-0.37876 -1.95153,-0.98934 -3.02477,-0.76587 -0.54508,0.0854 -1.00129,0.71334 -0.58324,1.20373 0.57407,1.15812 1.20116,2.29905 2.02948,3.29757 0.81784,1.06959 1.77205,2.0252 2.75689,2.94011 0.89733,0.62951 1.72498,1.61709 2.9082,1.60547 0.99533,-0.0199 1.95685,-0.33215 2.88624,-0.66175 1.9759,-0.74422 3.6482,-2.06643 5.34861,-3.28284 1.31727,-0.96493 2.6442,-1.92321 4.06788,-2.72729 0.33208,-0.1474 0.69141,-0.23059 1.05469,-0.24023 -0.1389,1.07636 -0.59312,2.07318 -0.96094,3.08398 -0.071,0.57471 0.71197,1.27778 -0.057,1.67987 -1.00083,0.91397 -2.07391,1.7432 -3.1266,2.59553 -0.23389,0.35656 0.33566,0.78131 0.63477,0.50976 0.46587,0.0349 0.98877,0.0149 1.36914,0.33203 l -1.47657,3.66797 c 0.98702,-0.61488 1.96181,-1.25197 2.99024,-1.79687 0.52857,0.73189 -0.51001,1.3027 -0.76567,1.92777 l -6.03511,8.88668 4.24023,-1.38672 6.88281,-12.55859 c 0.75478,-0.70191 1.85923,-0.25346 2.61166,0.21177 0.96034,0.5224 1.98245,0.97404 3.07584,1.11244 0.96776,0.14727 1.99537,-0.64718 1.94934,-1.65603 -0.0668,-1.07497 -0.62349,-2.05256 -1.00866,-3.04246 -0.82376,-1.92474 -1.8296,-3.77283 -3.03913,-5.48305 -0.57604,-0.88542 -1.23925,-1.80559 -1.29998,-2.89853 -0.13157,-1.99318 0.023,-3.9905 0.008,-5.98559 4.7e-4,-1.24816 -0.0281,-2.49825 -0.15278,-3.74098 -0.0864,-0.28056 -0.0737,-0.74776 -0.46093,-0.78125 z m -42.27539,1.77149 c -0.4604,0.14897 0.42226,0.60241 0.25195,0.14453 -0.0253,-0.10095 -0.14204,-0.22037 -0.25195,-0.14453 z m 46.96093,0.52734 c -0.42394,0.2864 0.4524,0.86426 0.52539,0.3457 -0.0927,-0.18727 -0.2902,-0.41655 -0.52539,-0.3457 z m -48.15039,4.47656 c -0.36795,0.60476 -0.75789,1.19561 -1.14062,1.79102 0.29552,0.72867 -0.18022,1.48235 -0.73091,1.93562 -0.7895,0.63267 -1.64618,1.19479 -2.33669,1.94402 -0.75171,0.81021 -1.21133,1.83442 -1.87579,2.71087 -0.64612,0.97014 -1.83786,1.53518 -2.15231,2.7298 -0.14857,0.48159 -0.0877,0.99071 -0.19336,1.47852 -0.97891,0.0335 -1.71915,-0.69339 -2.44417,-1.2432 -0.75261,-0.45051 -1.35318,-1.30388 -2.29201,-1.33482 -0.457,0.15376 -0.19677,0.86488 0.10456,1.10849 0.76914,0.85954 1.43752,1.80348 2.17189,2.69292 0.58262,0.7897 1.37185,1.49855 1.61012,2.48559 -1.25681,-0.46482 -2.64108,-0.64372 -3.76249,-1.42452 -0.78459,-0.49818 -1.55558,-1.0177 -2.34103,-1.51493 0.11484,1.07522 0.71253,2.01131 1,3.03906 0.33625,1.1365 1.29784,1.93966 2.29102,2.50781 2.31719,1.61439 4.73398,3.07727 7.16406,4.51367 l -2.34766,-2.375 -0.16015,-1.08203 c 1.54949,0.42963 2.80493,1.48008 4.09765,2.38477 l 3.75977,2.73437 c 1.31385,0.73284 2.65786,1.49039 4.1582,1.75391 2.89883,0.65182 5.82109,1.19039 8.73828,1.75195 l -4.45898,-6.12304 c -1.43175,-1.57367 -2.84847,-3.16393 -4.39309,-4.62936 -1.22837,-1.17007 -2.40312,-2.39679 -3.48206,-3.70671 l -1.33188,-1.56237 c 0.5809,-0.73455 1.63864,-1.08955 1.89257,-2.06641 -0.29501,-0.63857 -1.17249,-1.35568 -0.5996,-2.08594 0.57768,-0.33857 1.13478,0.23262 1.48632,0.63477 0.40249,-0.96958 -0.41818,-1.90608 -0.24934,-2.88424 0.1516,-0.89915 0.94457,-1.57797 0.99153,-2.50638 -0.0543,-0.99466 -0.86238,-1.6954 -1.49219,-2.37891 -0.49181,-0.59554 -0.7347,-1.37698 -1.32617,-1.89258 z m -3.35547,-0.58008 c -0.47532,0.17418 0.50756,0.59894 0.27344,0.13672 -0.0482,-0.0935 -0.16088,-0.19325 -0.27344,-0.13672 z m -3.59961,1.32813 c -0.49799,-0.0788 -0.97674,0.45262 -0.84179,0.93945 l 1.77344,-0.94336 z m 58.47266,3.75977 -0.43555,2.94921 c 0.79679,-0.85783 1.04036,-2.06712 1.0586,-3.20312 -0.0351,-0.48198 -0.15164,-0.95159 -0.25586,-1.42188 z m -60.29297,0.0762 c -0.80542,0.30644 -1.41235,0.97225 -2.08008,1.49804 1.0558,0.29247 2.16302,0.1658 3.23243,0.0312 0.69603,-0.70572 -0.42709,-1.64522 -1.15235,-1.52929 z m 15.78907,0.25 c -0.003,0.33936 0.0659,0.67765 0.19726,0.99023 0.33973,-0.30845 0.29481,-0.96504 -0.14062,-1.16601 z m 0.0137,2.56445 -0.18164,1.00391 c 0.53803,-0.0445 0.72971,-0.87999 0.27343,-1.16407 z m 6.66992,2.8418 c -0.0155,0.42625 0.33186,-0.23818 0,0 z m 26.41992,1.83398 c 0.64986,0.30923 -0.43085,1.34882 -0.63867,0.60547 -0.0313,-0.32623 0.27347,-0.7658 0.63867,-0.60547 z m -23.97656,0.0137 c -0.35275,0.37444 0.7094,0.4036 0.29101,0.0469 -0.0784,-0.0621 -0.19775,-0.099 -0.29101,-0.0469 z m -32.88867,2.10352 -0.91211,0.18945 1.91015,1.7793 -0.8125,-1.9707 z m 38.69726,0.3457 2.62891,1.20117 c -0.81986,-0.63542 -1.82826,-0.94124 -2.78906,-1.29296 z m -15.31445,0.375 5.76953,4.9336 c 0.73185,0.65873 1.34049,1.51673 2.28906,1.88085 0.83561,0.43391 1.42482,-0.7262 1.04492,-1.39843 -0.49245,-0.87957 -1.55118,-1.16317 -2.33076,-1.72175 -0.85696,-0.58339 -1.43255,-1.50992 -2.37521,-1.98803 -1.03493,-0.58412 -2.1853,-0.92507 -3.27551,-1.39107 l -1.20797,-0.47923 z m 18.67578,0.79688 0.0391,-0.0274 z m -24.77344,5.60156 4.70899,3.58203 0.76562,0.89844 c -0.71023,0.48293 -1.18592,-0.54655 -1.73337,-0.84648 l -3.91897,-3.23946 c -0.11391,-0.1297 -0.0434,-0.47315 0.17773,-0.39453 z"
136
+ id="path4691"
137
+ inkscape:connector-curvature="0"
138
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
139
+ <path
140
+ style="fill:#eee6d9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.56424713px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
141
+ d="m 156.72985,806.64823 c 0,0 0.5836,-1.37318 1.13287,-1.40751 0.54927,-0.0343 3.49959,0.74591 3.49959,0.74591 z"
142
+ id="path4248"
143
+ inkscape:connector-curvature="0"
144
+ sodipodi:nodetypes="cccc" />
145
+ <path
146
+ sodipodi:nodetypes="cscccccc"
147
+ inkscape:connector-curvature="0"
148
+ id="path4190"
149
+ d="m 171.32031,812.02148 10.35135,0.71891 c 4.37945,0.30415 5.28109,1.86041 9.54493,2.90356 5.92182,0.34058 -1.40833,-1.85615 -2.05891,-1.99349 -2.22557,-0.47782 -2.27509,-0.71634 -4.43703,-1.43089 -1.31471,-0.43621 -6.03982,-0.56952 -7.41985,-0.66145 -1.92326,-0.17534 -3.43306,0.40715 -5.36283,0.4416 z"
150
+ style="fill:#eee6d9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
151
+ <path
152
+ sodipodi:nodetypes="cccc"
153
+ inkscape:connector-curvature="0"
154
+ id="path4192"
155
+ d="m 201.82839,789.12718 c 1.74974,3.46287 -0.85579,4.33707 -1.16517,7.57368 0.35454,-0.71828 0.16407,-0.31838 1.55357,-2.33037 1.47235,-6.81424 0.82857,-7.207 -0.3884,-5.24331 z"
156
+ style="fill:#7c5d45;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
157
+ <path
158
+ sodipodi:nodetypes="ccc"
159
+ inkscape:connector-curvature="0"
160
+ id="path4192-6"
161
+ d="m 210.85037,795.88123 c -0.52839,-0.60203 -0.24088,-0.26504 -2.1038,-1.84885 -3.9728,-9.06196 1.57811,1.82824 2.1038,1.84885 z"
162
+ style="fill:#7c5d45;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
163
+ <path
164
+ sodipodi:nodetypes="csscsssc"
165
+ inkscape:connector-curvature="0"
166
+ id="path4209"
167
+ d="m 171.09834,813.85905 c 0,0 8.56471,1.71643 9.99907,2.20945 2.12605,0.73076 8.30957,3.31294 7.90432,4.09395 -0.56569,1.09018 6.72465,1.67131 6.72465,1.67131 0,0 3.30195,-1.25438 0.42491,-1.74995 -2.2607,-0.3894 -4.56364,-0.68801 -6.64,-1.73004 -1.50536,-0.75548 -11.14376,-4.05215 -15.82004,-4.88329 -4.50033,-0.79987 -2.59291,0.38857 -2.59291,0.38857 z"
168
+ style="fill:#eee6d9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
169
+ <path
170
+ sodipodi:open="true"
171
+ d="m 190.71424,824.35011 a 2.3627625,2.2643137 0 0 1 -2.7104,1.86862 2.3627625,2.2643137 0 0 1 -1.95401,-2.5946 2.3627625,2.2643137 0 0 1 2.70442,-1.87655 2.3627625,2.2643137 0 0 1 1.96228,2.58886"
172
+ sodipodi:end="0.1564178"
173
+ sodipodi:start="0.16253133"
174
+ sodipodi:ry="2.2643137"
175
+ sodipodi:rx="2.3627625"
176
+ sodipodi:cy="823.9837"
177
+ sodipodi:cx="188.38261"
178
+ sodipodi:type="arc"
179
+ id="path4236"
180
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eee6d9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.0170002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
181
+ <path
182
+ sodipodi:open="true"
183
+ d="m 193.46059,829.01887 a 2.3627625,2.2643137 0 0 1 -2.71039,1.86863 2.3627625,2.2643137 0 0 1 -1.95401,-2.59461 2.3627625,2.2643137 0 0 1 2.70442,-1.87655 2.3627625,2.2643137 0 0 1 1.96227,2.58886"
184
+ sodipodi:end="0.1564178"
185
+ sodipodi:start="0.16253133"
186
+ sodipodi:ry="2.2643137"
187
+ sodipodi:rx="2.3627625"
188
+ sodipodi:cy="828.65247"
189
+ sodipodi:cx="191.12897"
190
+ sodipodi:type="arc"
191
+ id="path4238"
192
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eee6d9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.0170002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
193
+ <path
194
+ sodipodi:open="true"
195
+ d="m 197.09952,832.86378 a 2.3627625,2.2643137 0 0 1 -2.71039,1.86862 2.3627625,2.2643137 0 0 1 -1.95401,-2.5946 2.3627625,2.2643137 0 0 1 2.70442,-1.87655 2.3627625,2.2643137 0 0 1 1.96228,2.58886"
196
+ sodipodi:end="0.1564178"
197
+ sodipodi:start="0.16253133"
198
+ sodipodi:ry="2.2643137"
199
+ sodipodi:rx="2.3627625"
200
+ sodipodi:cy="832.49738"
201
+ sodipodi:cx="194.7679"
202
+ sodipodi:type="arc"
203
+ id="path4240"
204
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eee6d9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.0170002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
205
+ <path
206
+ sodipodi:open="true"
207
+ d="m 201.97431,836.09083 a 2.3627625,2.2643137 0 0 1 -2.7104,1.86863 2.3627625,2.2643137 0 0 1 -1.95401,-2.59461 2.3627625,2.2643137 0 0 1 2.70442,-1.87655 2.3627625,2.2643137 0 0 1 1.96228,2.58886"
208
+ sodipodi:end="0.1564178"
209
+ sodipodi:start="0.16253133"
210
+ sodipodi:ry="2.2643137"
211
+ sodipodi:rx="2.3627625"
212
+ sodipodi:cy="835.72443"
213
+ sodipodi:cx="199.64268"
214
+ sodipodi:type="arc"
215
+ id="path4242"
216
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eee6d9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.0170002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
217
+ <path
218
+ sodipodi:open="true"
219
+ d="m 207.19239,837.60127 a 2.3627625,2.2643137 0 0 1 -2.7104,1.86862 2.3627625,2.2643137 0 0 1 -1.95401,-2.5946 2.3627625,2.2643137 0 0 1 2.70442,-1.87656 2.3627625,2.2643137 0 0 1 1.96228,2.58887"
220
+ sodipodi:end="0.1564178"
221
+ sodipodi:start="0.16253133"
222
+ sodipodi:ry="2.2643137"
223
+ sodipodi:rx="2.3627625"
224
+ sodipodi:cy="837.23486"
225
+ sodipodi:cx="204.86076"
226
+ sodipodi:type="arc"
227
+ id="path4244"
228
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eee6d9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.0170002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
229
+ <path
230
+ sodipodi:open="true"
231
+ d="m 212.89109,836.64002 a 2.3627625,2.2643137 0 0 1 -2.7104,1.86863 2.3627625,2.2643137 0 0 1 -1.95401,-2.5946 2.3627625,2.2643137 0 0 1 2.70442,-1.87656 2.3627625,2.2643137 0 0 1 1.96228,2.58887"
232
+ sodipodi:end="0.1564178"
233
+ sodipodi:start="0.16253133"
234
+ sodipodi:ry="2.2643137"
235
+ sodipodi:rx="2.3627625"
236
+ sodipodi:cy="836.27362"
237
+ sodipodi:cx="210.55946"
238
+ sodipodi:type="arc"
239
+ id="path4246"
240
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eee6d9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.0170002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
241
+ </g>
242
+ </g>
243
+ </svg>
@@ -15,6 +15,6 @@
15
15
  module ChefDK
16
16
  # namespace for VERSION constant
17
17
  module Julia
18
- VERSION = '0.4.3'
18
+ VERSION = '0.4.4'.freeze
19
19
  end
20
20
  end
data/metadata.rb CHANGED
@@ -24,7 +24,15 @@ require_relative 'lib/chefdk/julia/version'
24
24
  # See https://github.com/chef/chef-dk/issues/633
25
25
  name File.basename(File.dirname(__FILE__))
26
26
 
27
+ maintainer 'Nordstrom, Inc.'
28
+ maintainer_email 'techcheftm@nordstrom.com'
29
+
30
+ license 'Apache v2.0'
31
+
27
32
  description 'An Opinionated Cookbook Creator'
28
33
  long_description 'An Opinionated Cookbook Creator, with spunk and a grin, by Nordstrom'
29
34
 
30
35
  version ChefDK::Julia::VERSION
36
+
37
+ source_url 'https://github.com/Nordstrom/chefdk-julia'
38
+ issues_url 'https://github.com/Nordstrom/chefdk-julia/issues'
data/recipes/repo.rb CHANGED
@@ -42,11 +42,11 @@ end
42
42
 
43
43
  directories_to_create = %w( cookbooks data_bags )
44
44
 
45
- if context.use_roles
46
- directories_to_create += %w( roles environments )
47
- else
48
- directories_to_create += %w( policies )
49
- end
45
+ directories_to_create += if context.use_roles
46
+ %w( roles environments )
47
+ else
48
+ %w( policies )
49
+ end
50
50
 
51
51
  directories_to_create.each do |tlo|
52
52
  remote_directory "#{repo_dir}/#{tlo}" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chefdk-julia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Orion Ifland
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-12-31 00:00:00.000000000 Z
12
+ date: 2016-05-02 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: An Opinionated Cookbook creator, with spunk and a grin, by Nordstrom
15
15
  email:
@@ -19,10 +19,10 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
- - .gitignore
23
- - .rspec
24
- - .rubocop.yml
25
- - .travis.yml
22
+ - ".gitignore"
23
+ - ".rspec"
24
+ - ".rubocop.yml"
25
+ - ".travis.yml"
26
26
  - Berksfile
27
27
  - CHANGELOG.md
28
28
  - LICENSE
@@ -51,6 +51,7 @@ files:
51
51
  - files/default/repo/roles/README.md
52
52
  - files/default/repo/roles/example.json
53
53
  - files/default/serverspec_spec_helper.rb
54
+ - julia-icon.svg
54
55
  - lib/chefdk/julia.rb
55
56
  - lib/chefdk/julia/version.rb
56
57
  - metadata.rb
@@ -87,26 +88,31 @@ homepage: https://github.com/Nordstrom/chefdk-julia
87
88
  licenses:
88
89
  - Apache-2.0
89
90
  metadata: {}
90
- post_install_message: ! " Paste lines below into your ~/.chef/config.rb or knife.rb\n\n
91
- \ if defined?(ChefDK::CLI)\n require 'chefdk/julia'\n chefdk.generator_cookbook
92
- ChefDK::Julia.path\n end\n"
91
+ post_install_message: |2
92
+ Paste lines below into your ~/.chef/config.rb or knife.rb
93
+
94
+ if defined?(ChefDK::CLI)
95
+ require 'chefdk/julia'
96
+ chefdk.generator_cookbook ChefDK::Julia.path
97
+ end
93
98
  rdoc_options: []
94
99
  require_paths:
95
100
  - lib
96
101
  required_ruby_version: !ruby/object:Gem::Requirement
97
102
  requirements:
98
- - - ! '>='
103
+ - - ">="
99
104
  - !ruby/object:Gem::Version
100
105
  version: '0'
101
106
  required_rubygems_version: !ruby/object:Gem::Requirement
102
107
  requirements:
103
- - - ! '>='
108
+ - - ">="
104
109
  - !ruby/object:Gem::Version
105
110
  version: '0'
106
111
  requirements: []
107
112
  rubyforge_project:
108
- rubygems_version: 2.4.5
113
+ rubygems_version: 2.6.3
109
114
  signing_key:
110
115
  specification_version: 4
111
116
  summary: Custom generator for ChefDK
112
117
  test_files: []
118
+ has_rdoc: