canvas_lti_third_party_cookies 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bfadd9bf819df5cfb7740b3b1c88f7436337b0bafbc243d9df216af7e948cd9e
4
- data.tar.gz: 6a539c02d809cbffbc9693a69567942af8ba24d839299d0baca93e3ebe1ef676
3
+ metadata.gz: 153e4d2eaa313e523dcfbab4139c2ea938a0969261d7c69ec15bb3028c2ab506
4
+ data.tar.gz: 1b0808375ebfeb54e896183db7a769b40f32475d503a184af43300629da6f732
5
5
  SHA512:
6
- metadata.gz: a346aec85ae07519abe21496dbec0126bab0ab6ffc96de0d0b7c23be9eea02080cde3b7949295b598e9827c597442d83f866c758f0790a5bfad4da4faa4821cb
7
- data.tar.gz: 9fb2fbc396790aca7e388e430adcd36ff2b2acf5d3f94309413e732b1ad354fdac8ee76197f1b3e74948ac59731cc10cbd3c931968361d0d6d3176c0e4af8a73
6
+ metadata.gz: 186d3c0358b1f72fceee476b794ee3f87332e111a4cdfc5295fd6a4d529f8ceac8770cf9aaf3f57c9b0207aba66b9d98ac1b4e22ab9f83b7e6ead6a8fa539da7
7
+ data.tar.gz: 5cc9890e6df93bcf9cd824617758070ee69ff53428de2bf1c69f0e8f44b89fe50f4309322ca211a961d3adfea90e393eab6d6fd03bad1517e879a5fb9e82df4b
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # canvas_lti_third_party_cookies
2
2
 
3
- Safari blocks all 3rd-party cookies by default, which breaks LTI tools that rely on setting cookies when launched in an iframe. Other browsers will soon follow suit. Instead, it exposes a new API for getting user-permitted access to set cookies from an iframe, which unfortunately doesn't completely work for LTI use cases.
3
+ Safari blocks all 3rd-party cookies by default, which breaks LTI tools that rely on setting cookies when launched in an iframe. Other browsers will soon follow suit. Instead, Safari exposes a new API for getting user-permitted access to set cookies from an iframe, which unfortunately doesn't completely work for LTI use cases.
4
4
  See this article for a detailed explanation of the Storage Access API and previous attempts to launch LTI tools in Safari: https://community.canvaslms.com/t5/Developers-Group/Safari-13-1-and-LTI-Integration/ba-p/273051
5
5
 
6
- The current workaround that this gem implements is to relaunch the tool in a new tab, new window, or popup window, where it can set first-party cookies to it's heart's content. The relaunch occurs during the login request, so the tool is entirely in control, and no other parts of the LTI launch flow are modified.
6
+ The current workaround that this gem implements is to relaunch the tool in a new tab, new window, or popup window, where it can set first-party cookies to its heart's content. The relaunch occurs during the login request, so the tool is entirely in control, and no other parts of the LTI launch flow are modified.
7
7
 
8
8
  ## Installation
9
9
  Add this line to your application's Gemfile:
@@ -18,10 +18,18 @@ And then execute:
18
18
  $ bundle install
19
19
  ```
20
20
 
21
+ Since this gem includes some static assets (JS, CSS, images), you will need to make sure
22
+ that your application runs the `rake assets:precompile` task at some point during its
23
+ build process. Most Rails applications will be running that already, either directly or
24
+ as part of the `rake webpacker:compile` task.
25
+
26
+ Neglecting to precompile assets will result in runtime errors when users try to launch
27
+ your LTI tool.
28
+
21
29
  ## Usage
22
30
 
23
- Choose the Rails controller action that's used to launch your tool and set cookies. Set the before_action callback
24
- below to run on that action, and pass the data needed.
31
+ Choose the Rails controller action that's used to handle tool authentication requests.
32
+ Set the before_action callback below to run on that action, and pass the data needed.
25
33
 
26
34
  * `redirect_url` (required): the authorization redirect URL to continue the login flow
27
35
  * `redirect_data` (required): all form data required for the authorization redirect, which
@@ -42,13 +50,15 @@ include CanvasLtiThirdPartyCookies::RelaunchOnLogin
42
50
  ...
43
51
  def login
44
52
  state, nonce = create_and_cache_state # handled elsewhere
45
- redirect_url = 'http://canvas.instructure.com/api/lti/authorize_redirect'
53
+ redirect_url = 'http://canvas.instructure.com/api/lti/authorize_redirect'
54
+ # this data is part of the OIDC Launch Flow as defined here:
55
+ # https://www.imsglobal.org/spec/security/v1p0/#step-2-authentication-request
46
56
  redirect_data = {
47
57
  scope: 'openid',
48
58
  response_type: 'id_token',
49
59
  response_mode: 'form_post',
50
60
  prompt: 'none',
51
- redirect_uri: redirect_uri, # the launch url of the tool
61
+ redirect_uri: tool_launch_url, # defined elsewhere
52
62
  client_id: params.require(:client_id),
53
63
  login_hint: params.require(:login_hint),
54
64
  lti_message_hint: params.require(:lti_message_hint),
@@ -60,12 +70,70 @@ def login
60
70
  end
61
71
  ```
62
72
 
73
+ ## Local Development
74
+
75
+ To make changes and test them locally, it's possible to install this gem in a local
76
+ LTI tool installation.
77
+
78
+ 1. In your tool's Gemfile, add `, path: './cookies'` to the line for this gem.
79
+ 2. In your tool's docker-compose.override.yml, add a new volume to link this gem's
80
+ folder to the `./cookies` path. It should look like this:
81
+ ```
82
+ volumes:
83
+ - ./path/to/lti_third_party_cookies:/usr/src/app/cookies
84
+ ```
85
+ 3. `bundle install` again.
86
+
87
+ The same process is possible with non-docker-compose apps, just directly point to the
88
+ gem's folder from your tool's Gemfile.
89
+
63
90
  ## Testing
64
91
 
65
- ```bash
66
- $ rails test
92
+ ### Ruby Tests
93
+
94
+ The ruby tests use `minitest`, which comes bundled with rails. To run them locally:
95
+ ```
96
+ rails test
97
+ ```
98
+
99
+ There is a Docker setup for running tests that's used for CI. To run them in Docker locally:
100
+ ```
101
+ docker build -f test/Dockerfile.ruby -t ruby-test .
102
+ docker run --rm ruby-test rails test
67
103
  ```
68
104
 
105
+ ### Javascript Tests
106
+
107
+ The JS tests are self-contained in the `test/javascripts` folder. To run them locally:
108
+ ```
109
+ cd test/javascripts
110
+ yarn install
111
+ yarn test
112
+ ```
113
+
114
+ There is a Docker setup for running tests that's used for CI. To run them in Docker locally:
115
+ ```
116
+ docker build -f test/Dockerfile.node -t node-test .
117
+ docker run --rm node-test yarn test
118
+ ```
119
+
120
+ ## i18n
121
+
122
+ All user-facing strings in this gem are localized and translated into the languages that
123
+ Canvas supports. Any time that any strings are changed, you should make sure this is run:
124
+ ```
125
+ rake app:i18nliner:dump
126
+ ```
127
+ Then, add `config/locales/generated/en.yml` to your commit.
128
+
129
+ After making changes to `en.yml`, you will need to push these changes to the
130
+ `instructure-translations` S3 bucket so that the translators can update other locales.
131
+ TODO: the script or Jenkins job to actually push to S3.
132
+
133
+ Once translators have finished updating other locales, they will notify you, and you can
134
+ pull down the new locale files into `config/locales`, and commit and push them.
135
+ TODO: the script or Jenkins job to pull from S3.
136
+
69
137
  ## Publishing New Versions
70
138
 
71
139
  1. Bump the version in `lib/canvas_lti_third_party_cookies/version.rb`.
@@ -0,0 +1,581 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://creativecommons.org/ns#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:xlink="http://www.w3.org/1999/xlink"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ id="svg2"
13
+ sodipodi:version="0.32"
14
+ inkscape:version="0.45+devel"
15
+ width="128"
16
+ height="128"
17
+ sodipodi:docname="cookies.svgz"
18
+ inkscape:output_extension="org.inkscape.output.svgz.inkscape"
19
+ version="1.0"
20
+ inkscape:export-filename="/home/pinheiro/pics/oxygen/scalable/actions/cookies.png"
21
+ inkscape:export-xdpi="180"
22
+ inkscape:export-ydpi="180">
23
+ <sodipodi:namedview
24
+ inkscape:window-height="654"
25
+ inkscape:window-width="1160"
26
+ inkscape:pageshadow="2"
27
+ inkscape:pageopacity="0.0"
28
+ guidetolerance="10.0"
29
+ gridtolerance="10.0"
30
+ objecttolerance="10.0"
31
+ borderopacity="1.0"
32
+ bordercolor="#666666"
33
+ pagecolor="#ffffff"
34
+ id="base"
35
+ inkscape:zoom="1.668627"
36
+ inkscape:cx="50.189539"
37
+ inkscape:cy="27.3675"
38
+ inkscape:window-x="184"
39
+ inkscape:window-y="233"
40
+ inkscape:current-layer="svg2"
41
+ showguides="true"
42
+ inkscape:guide-bbox="true"
43
+ width="128px" />
44
+ <metadata
45
+ id="metadata7">
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
+ </cc:Work>
53
+ </rdf:RDF>
54
+ </metadata>
55
+ <defs
56
+ id="defs5">
57
+ <linearGradient
58
+ id="linearGradient5199">
59
+ <stop
60
+ style="stop-color:#f7e0bd;stop-opacity:1;"
61
+ offset="0"
62
+ id="stop5201" />
63
+ <stop
64
+ style="stop-color:#f1c98c;stop-opacity:0;"
65
+ offset="1"
66
+ id="stop5203" />
67
+ </linearGradient>
68
+ <linearGradient
69
+ inkscape:collect="always"
70
+ id="linearGradient5124">
71
+ <stop
72
+ style="stop-color:#2d2014;stop-opacity:1;"
73
+ offset="0"
74
+ id="stop5126" />
75
+ <stop
76
+ style="stop-color:#2d2014;stop-opacity:0;"
77
+ offset="1"
78
+ id="stop5128" />
79
+ </linearGradient>
80
+ <linearGradient
81
+ inkscape:collect="always"
82
+ id="linearGradient5116">
83
+ <stop
84
+ style="stop-color:#623e21;stop-opacity:1;"
85
+ offset="0"
86
+ id="stop5118" />
87
+ <stop
88
+ style="stop-color:#623e21;stop-opacity:0;"
89
+ offset="1"
90
+ id="stop5120" />
91
+ </linearGradient>
92
+ <linearGradient
93
+ id="linearGradient5014">
94
+ <stop
95
+ style="stop-color:#ffffff;stop-opacity:0.77090907;"
96
+ offset="0"
97
+ id="stop5016" />
98
+ <stop
99
+ id="stop5042"
100
+ offset="0.5"
101
+ style="stop-color:#ffffff;stop-opacity:0.33454546;" />
102
+ <stop
103
+ style="stop-color:#ffffff;stop-opacity:0.19636364;"
104
+ offset="1"
105
+ id="stop5018" />
106
+ </linearGradient>
107
+ <linearGradient
108
+ id="linearGradient4930">
109
+ <stop
110
+ style="stop-color:#d9a145;stop-opacity:1"
111
+ offset="0"
112
+ id="stop4932" />
113
+ <stop
114
+ style="stop-color:#6b331c;stop-opacity:0;"
115
+ offset="1"
116
+ id="stop4934" />
117
+ </linearGradient>
118
+ <linearGradient
119
+ id="linearGradient4924">
120
+ <stop
121
+ id="stop4926"
122
+ offset="0"
123
+ style="stop-color:#d3ad56;stop-opacity:1;" />
124
+ <stop
125
+ id="stop4928"
126
+ offset="1"
127
+ style="stop-color:#6b331c;stop-opacity:0;" />
128
+ </linearGradient>
129
+ <linearGradient
130
+ id="linearGradient4770">
131
+ <stop
132
+ id="stop4772"
133
+ offset="0"
134
+ style="stop-color:#ffffff;stop-opacity:0.66" />
135
+ <stop
136
+ id="stop4774"
137
+ offset="1"
138
+ style="stop-color:#f8f6d9;stop-opacity:0;" />
139
+ </linearGradient>
140
+ <linearGradient
141
+ id="linearGradient4633">
142
+ <stop
143
+ style="stop-color:#ffffff;stop-opacity:1;"
144
+ offset="0"
145
+ id="stop4635" />
146
+ <stop
147
+ style="stop-color:#f8f6d9;stop-opacity:0;"
148
+ offset="1"
149
+ id="stop4637" />
150
+ </linearGradient>
151
+ <linearGradient
152
+ inkscape:collect="always"
153
+ id="linearGradient4380">
154
+ <stop
155
+ style="stop-color:#dca24c;stop-opacity:1"
156
+ offset="0"
157
+ id="stop4382" />
158
+ <stop
159
+ style="stop-color:#f7d49e;stop-opacity:1"
160
+ offset="1"
161
+ id="stop4384" />
162
+ </linearGradient>
163
+ <linearGradient
164
+ id="linearGradient4342">
165
+ <stop
166
+ style="stop-color:#ca792b;stop-opacity:1;"
167
+ offset="0"
168
+ id="stop4344" />
169
+ <stop
170
+ style="stop-color:#622915;stop-opacity:1;"
171
+ offset="1"
172
+ id="stop4346" />
173
+ </linearGradient>
174
+ <filter
175
+ inkscape:collect="always"
176
+ id="filter4444">
177
+ <feGaussianBlur
178
+ inkscape:collect="always"
179
+ stdDeviation="0.38947367"
180
+ id="feGaussianBlur4446" />
181
+ </filter>
182
+ <filter
183
+ inkscape:collect="always"
184
+ id="filter4448">
185
+ <feGaussianBlur
186
+ inkscape:collect="always"
187
+ stdDeviation="0.38947367"
188
+ id="feGaussianBlur4450" />
189
+ </filter>
190
+ <filter
191
+ inkscape:collect="always"
192
+ id="filter4598">
193
+ <feGaussianBlur
194
+ inkscape:collect="always"
195
+ stdDeviation="1.3714321"
196
+ id="feGaussianBlur4600" />
197
+ </filter>
198
+ <filter
199
+ inkscape:collect="always"
200
+ id="filter4602">
201
+ <feGaussianBlur
202
+ inkscape:collect="always"
203
+ stdDeviation="1.3714321"
204
+ id="feGaussianBlur4604" />
205
+ </filter>
206
+ <clipPath
207
+ clipPathUnits="userSpaceOnUse"
208
+ id="clipPath4610">
209
+ <path
210
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
211
+ id="path4612"
212
+ d="M 564.53595,586.1106 L 564.17992,589.07855 L 563.41989,591.64591 L 562.79158,595.67444 L 562.75755,605.17076 L 562.29626,608.43044 L 561.00143,611.80714 L 560.7417,614.11439 L 560.43266,619.11701 L 559.84373,621.62794 L 558.96727,623.61943 L 556.92059,627.13149 L 555.96392,629.21473 L 555.11556,631.65662 L 553.84091,634.3954 L 552.91988,635.84738 L 550.99477,637.87781 L 550.26516,639.14788 L 548.32936,643.58694 L 547.61516,645.06049 L 545.62953,647.37397 L 543.06376,651.16021 L 539.52283,655.18268 L 537.26398,656.85442 L 534.32305,659.07321 L 532.32901,661.46042 L 528.72301,666.42666 L 527.68716,667.423 L 521.32242,671.5367 L 519.71008,672.97441 L 518.23877,674.62511 L 516.1698,676.28344 L 514.92495,677.70553 L 513.76909,678.81301 L 509.80353,680.71464 L 508.13129,681.5056 L 506.01407,681.8228 L 501.84131,683.61238 L 499.23684,685.43139 L 498.02002,686.48987 L 495.05669,687.10617 L 493.40347,687.56744 L 490.80769,688.58909 L 489.02427,689.16139 L 487.43923,690.33909 L 483.50102,691.37267 L 481.08874,691.7089 L 478.42746,692.33012 L 476.2872,692.89256 L 472.52229,693.00148 L 470.85593,693.35702 L 468.13914,694.23588 L 465.96477,694.61946 L 461.43048,694.99331 L 459.26232,695.5941 L 455.75864,695.5415 L 453.5069,695.18904 L 450.09614,695.19431 L 445.82025,694.59685 L 442.77293,693.90674 L 437.61002,692.39563 L 432.57547,692.56797 L 429.35044,692.61344 L 427.62992,692.14005 L 425.31856,691.15543 L 422.53152,690.21123 L 417.06143,688.12437 L 410.8862,686.19421 L 408.31603,684.19025 L 405.18973,682.40536 L 400.22928,680.12647 L 398.2432,679.21409 L 396.27078,677.83889 L 393.72564,676.03014 L 390.29065,673.32214 L 388.08272,671.78372 L 382.36249,667.12196 L 380.63601,665.69561 L 378.86351,664.5957 L 377.42323,663.25278 L 375.87756,661.78395 L 373.89338,660.31078 L 371.83998,657.71235 L 370.92352,656.01099 L 369.63922,652.75974 L 367.2224,649.96519 L 365.21313,646.85381 L 363.87294,643.85147 L 363.27268,642.02461 L 361.65545,640.64615 L 360.21865,638.74566 L 358.77514,636.25414 L 357.07015,633.8526 L 356.12717,631.65377 L 354.18931,625.98943 L 353.67225,623.55058 L 353.29593,621.16492 L 351.67837,618.37126 L 349.1413,612.21529 L 348.20199,609.45261 L 347.8012,607.59555 L 348.07018,605.65963 L 347.34266,602.62613 L 347.42735,597.14162 L 346.97029,589.12507 L 346.47852,584.12918 L 346.78997,582.19414 L 347.33075,579.61498 L 347.06251,577.85679 L 346.71425,575.91849 L 346.68238,574.025 L 347.44259,567.66069 L 347.83576,565.55016 L 350.00452,560.62283 L 352.2431,555.85092 L 353.65106,553.78625 L 354.06017,551.80368 L 354.2222,548.06501 L 354.6955,545.65073 L 356.12936,541.59865 L 357.87935,539.14768 L 359.69758,537.16882 L 361.45091,534.27419 L 362.09682,531.76673 L 364.3662,526.27714 L 365.25375,524.4186 L 366.89583,522.47045 L 368.85594,520.87658 L 371.93256,518.58604 L 375.28204,515.18721 L 377.30489,513.91072 L 378.35443,512.30998 L 381.05778,508.11821 L 382.68712,506.47162 L 384.18628,503.89483 L 386.13799,501.73517 L 388.79812,499.73483 L 391.18091,497.82958 L 393.45396,496.76682 L 396.74785,494.41557 L 399.07598,492.46762 L 402.0968,490.59568 L 405.49367,489.42409 L 408.94914,488.87785 L 411.57095,488.23546 L 413.3814,487.09658 L 415.21628,486.55554 L 417.9543,484.72571 L 422.18266,482.4908 L 424.19759,481.70983 L 425.98631,481.24168 L 428.73892,481.19591 L 431.06882,481.53361 L 433.18586,481.28961 L 436.18339,480.56266 L 441.57996,479.82513 L 445.33631,479.22269 L 448.1565,478.63966 L 450.62487,478.26433 L 452.83181,477.90179 L 456.49879,477.18604 L 458.97312,477.04673 L 466.07657,477.82184 L 471.19012,479.61578 L 473.32818,479.70632 L 477.18729,481.1059 L 480.08193,482.16268 L 482.9899,482.81397 L 487.45724,482.82581 L 489.57097,482.42987 L 495.46377,484.56497 L 497.79425,486.60239 L 502.97043,489.10026 L 505.88365,490.70202 L 508.078,490.93611 L 510.41549,491.8927 L 513.18394,494.19516 L 514.98844,495.46605 L 516.7055,497.11671 L 518.33224,497.9526 L 520.26744,498.62216 L 523.58488,500.56974 L 525.4982,501.73357 L 528.86266,505.16563 L 530.22117,506.62565 L 532.35291,509.79615 L 534.08962,511.45585 L 537.26373,513.46423 L 539.30222,515.33223 L 542.27277,520.06688 L 543.14731,522.01499 L 544.97821,524.19744 L 545.8234,525.36254 L 546.72866,527.61179 L 548.25405,530.15449 L 550.60988,533.85121 L 552.67799,535.99045 L 554.39851,537.95297 L 555.4483,540.79102 L 556.1623,542.6778 L 556.77769,544.88289 L 557.61833,547.63408 L 558.42932,549.35529 L 559.42098,555.0479 L 560.17928,557.64858 L 560.8212,561.3117 L 562.24046,565.281 L 562.91746,567.03654 L 563.46689,570.47921 L 563.66319,574.08105 L 564.07844,578.41826 L 563.59787,581.56118 L 564.06009,584.7532 L 564.53595,586.1106 z"
213
+ style="opacity:1;fill:url(#linearGradient4614);fill-opacity:1;stroke:none;stroke-width:3.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:4.15;stroke-opacity:1" />
214
+ </clipPath>
215
+ <linearGradient
216
+ inkscape:collect="always"
217
+ xlink:href="#linearGradient4380"
218
+ id="linearGradient4614"
219
+ gradientUnits="userSpaceOnUse"
220
+ gradientTransform="translate(306.83909,0)"
221
+ x1="141.34319"
222
+ y1="671.07355"
223
+ x2="148.66815"
224
+ y2="452.41049" />
225
+ <filter
226
+ inkscape:collect="always"
227
+ id="filter4746">
228
+ <feGaussianBlur
229
+ inkscape:collect="always"
230
+ stdDeviation="2.1488228"
231
+ id="feGaussianBlur4748" />
232
+ </filter>
233
+ <filter
234
+ inkscape:collect="always"
235
+ id="filter4750">
236
+ <feGaussianBlur
237
+ inkscape:collect="always"
238
+ stdDeviation="2.1488228"
239
+ id="feGaussianBlur4752" />
240
+ </filter>
241
+ <clipPath
242
+ clipPathUnits="userSpaceOnUse"
243
+ id="clipPath4764">
244
+ <path
245
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
246
+ id="path4766"
247
+ d="M 535.76979,588.50778 L 535.41376,591.47573 L 534.65373,594.04309 L 534.02542,598.07162 L 533.99139,607.56794 L 533.5301,610.82762 L 532.23527,614.20432 L 531.97554,616.51157 L 531.6665,621.51419 L 531.07757,624.02512 L 530.20111,626.01661 L 528.15443,629.52867 L 527.19776,631.61191 L 526.3494,634.0538 L 525.07475,636.79258 L 524.15372,638.24456 L 522.22861,640.27499 L 521.499,641.54506 L 519.5632,645.98412 L 518.849,647.45767 L 516.86337,649.77115 L 514.2976,653.55739 L 510.75667,657.57986 L 508.49782,659.2516 L 505.55689,661.47039 L 503.56285,663.8576 L 499.95685,668.82384 L 498.921,669.82018 L 492.55626,673.93388 L 490.94392,675.37159 L 489.47261,677.02229 L 487.40364,678.68062 L 486.15879,680.10271 L 485.00293,681.21019 L 481.03737,683.11182 L 479.36513,683.90278 L 477.24791,684.21998 L 473.07515,686.00956 L 470.47068,687.82857 L 469.25386,688.88705 L 466.29053,689.50335 L 464.63731,689.96462 L 462.04153,690.98627 L 460.25811,691.55857 L 458.67307,692.73627 L 454.73486,693.76985 L 452.32258,694.10608 L 449.6613,694.7273 L 447.52104,695.28974 L 443.75613,695.39866 L 442.08977,695.7542 L 439.37298,696.63306 L 437.19861,697.01664 L 432.66432,697.39049 L 430.49616,697.99128 L 426.99248,697.93868 L 424.74074,697.58622 L 421.32998,697.59149 L 417.05409,696.99403 L 414.00677,696.30392 L 408.84386,694.79281 L 403.80931,694.96515 L 400.58428,695.01062 L 398.86376,694.53723 L 396.5524,693.55261 L 393.76536,692.60841 L 388.29527,690.52155 L 382.12004,688.59139 L 379.54987,686.58743 L 376.42357,684.80254 L 371.46312,682.52365 L 369.47704,681.61127 L 367.50462,680.23607 L 364.95948,678.42732 L 361.52449,675.71932 L 359.31656,674.1809 L 353.59632,669.51914 L 351.86985,668.09279 L 350.09734,666.99288 L 348.65707,665.64996 L 347.1114,664.18113 L 345.12722,662.70796 L 343.07382,660.10953 L 342.15735,658.40817 L 340.87306,655.15692 L 338.45624,652.36237 L 336.44697,649.25099 L 335.10678,646.24865 L 334.50652,644.42179 L 332.88928,643.04333 L 331.45249,641.14284 L 330.00898,638.65132 L 328.30399,636.24978 L 327.361,634.05095 L 325.42315,628.38661 L 324.90609,625.94776 L 324.52977,623.5621 L 322.91221,620.76844 L 320.37514,614.61247 L 319.43583,611.84979 L 319.03503,609.99273 L 319.30402,608.05681 L 318.5765,605.02331 L 318.66119,599.5388 L 318.20413,591.52225 L 317.71236,586.52636 L 318.02381,584.59132 L 318.56459,582.01216 L 318.29634,580.25397 L 317.94809,578.31567 L 317.91622,576.42218 L 318.67643,570.05787 L 319.0696,567.94734 L 321.23836,563.02001 L 323.47694,558.2481 L 324.8849,556.18343 L 325.29401,554.20086 L 325.45603,550.46219 L 325.92934,548.04791 L 327.3632,543.99583 L 329.11319,541.54486 L 330.93142,539.566 L 332.68475,536.67137 L 333.33066,534.16391 L 335.60004,528.67432 L 336.48759,526.81578 L 338.12967,524.86763 L 340.08978,523.27376 L 343.1664,520.98322 L 346.51587,517.58439 L 348.53873,516.3079 L 349.58827,514.70716 L 352.29162,510.51539 L 353.92096,508.8688 L 355.42012,506.29201 L 357.37183,504.13235 L 360.03196,502.13201 L 362.41475,500.22676 L 364.6878,499.164 L 367.98169,496.81275 L 370.30982,494.8648 L 373.33064,492.99286 L 376.72751,491.82127 L 380.18298,491.27503 L 382.80479,490.63264 L 384.61524,489.49376 L 386.45012,488.95272 L 389.18814,487.12289 L 393.4165,484.88798 L 395.43143,484.10701 L 397.22015,483.63886 L 399.97276,483.59309 L 402.30266,483.93079 L 404.4197,483.68679 L 407.41723,482.95984 L 412.8138,482.22231 L 416.57015,481.61987 L 419.39034,481.03684 L 421.85871,480.66151 L 424.06565,480.29897 L 427.73263,479.58322 L 430.20696,479.44391 L 437.31041,480.21902 L 442.42396,482.01296 L 444.56202,482.1035 L 448.42113,483.50308 L 451.31577,484.55986 L 454.22374,485.21115 L 458.69108,485.22299 L 460.80481,484.82705 L 466.69761,486.96215 L 469.02809,488.99957 L 474.20427,491.49744 L 477.11749,493.0992 L 479.31184,493.33329 L 481.64933,494.28988 L 484.41778,496.59234 L 486.22228,497.86323 L 487.93934,499.51389 L 489.56608,500.34978 L 491.50128,501.01934 L 494.81872,502.96692 L 496.73204,504.13075 L 500.0965,507.56281 L 501.45501,509.02283 L 503.58675,512.19333 L 505.32346,513.85303 L 508.49757,515.86141 L 510.53606,517.72941 L 513.50661,522.46406 L 514.38115,524.41217 L 516.21205,526.59462 L 517.05724,527.75972 L 517.9625,530.00897 L 519.48789,532.55167 L 521.84372,536.24839 L 523.91183,538.38763 L 525.63235,540.35015 L 526.68214,543.1882 L 527.39614,545.07498 L 528.01153,547.28007 L 528.85217,550.03126 L 529.66316,551.75247 L 530.65482,557.44508 L 531.41312,560.04576 L 532.05504,563.70888 L 533.4743,567.67818 L 534.1513,569.43372 L 534.70073,572.87639 L 534.89703,576.47823 L 535.31228,580.81544 L 534.83171,583.95836 L 535.29393,587.15038 L 535.76979,588.50778 z"
248
+ style="opacity:1;fill:url(#linearGradient4768);fill-opacity:1;stroke:none;stroke-width:3.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:4.15;stroke-opacity:1" />
249
+ </clipPath>
250
+ <linearGradient
251
+ inkscape:collect="always"
252
+ xlink:href="#linearGradient4380"
253
+ id="linearGradient4768"
254
+ gradientUnits="userSpaceOnUse"
255
+ gradientTransform="translate(278.07292,2.39718)"
256
+ x1="141.34319"
257
+ y1="671.07355"
258
+ x2="148.66815"
259
+ y2="452.41049" />
260
+ <filter
261
+ inkscape:collect="always"
262
+ id="filter4814">
263
+ <feGaussianBlur
264
+ inkscape:collect="always"
265
+ stdDeviation="4.2972913"
266
+ id="feGaussianBlur4816" />
267
+ </filter>
268
+ <filter
269
+ inkscape:collect="always"
270
+ id="filter4860">
271
+ <feGaussianBlur
272
+ inkscape:collect="always"
273
+ stdDeviation="0.91484375"
274
+ id="feGaussianBlur4862" />
275
+ </filter>
276
+ <linearGradient
277
+ inkscape:collect="always"
278
+ xlink:href="#linearGradient4380"
279
+ id="linearGradient5161"
280
+ gradientUnits="userSpaceOnUse"
281
+ x1="141.34319"
282
+ y1="671.07355"
283
+ x2="148.66815"
284
+ y2="452.41049" />
285
+ <linearGradient
286
+ inkscape:collect="always"
287
+ xlink:href="#linearGradient5124"
288
+ id="linearGradient5163"
289
+ gradientUnits="userSpaceOnUse"
290
+ x1="155.75122"
291
+ y1="626.15442"
292
+ x2="161.07831"
293
+ y2="449.02039" />
294
+ <linearGradient
295
+ inkscape:collect="always"
296
+ xlink:href="#linearGradient4770"
297
+ id="linearGradient5165"
298
+ gradientUnits="userSpaceOnUse"
299
+ gradientTransform="translate(-358.37847,2)"
300
+ x1="765.98804"
301
+ y1="467.65207"
302
+ x2="756.31836"
303
+ y2="734.93768" />
304
+ <linearGradient
305
+ inkscape:collect="always"
306
+ xlink:href="#linearGradient5116"
307
+ id="linearGradient5167"
308
+ gradientUnits="userSpaceOnUse"
309
+ gradientTransform="translate(-1,1)"
310
+ x1="455.88254"
311
+ y1="704.27478"
312
+ x2="455.88254"
313
+ y2="579.6214" />
314
+ <radialGradient
315
+ inkscape:collect="always"
316
+ xlink:href="#linearGradient4342"
317
+ id="radialGradient5169"
318
+ gradientUnits="userSpaceOnUse"
319
+ gradientTransform="matrix(1,0,0,1.0210791,0,-12.432448)"
320
+ cx="150.76479"
321
+ cy="589.79974"
322
+ fx="137.58029"
323
+ fy="521.71661"
324
+ r="96.33165" />
325
+ <radialGradient
326
+ inkscape:collect="always"
327
+ xlink:href="#linearGradient4342"
328
+ id="radialGradient5171"
329
+ gradientUnits="userSpaceOnUse"
330
+ gradientTransform="matrix(1,0,0,1.0210791,0,-12.432448)"
331
+ cx="150.76479"
332
+ cy="589.79974"
333
+ fx="137.58029"
334
+ fy="521.71661"
335
+ r="96.33165" />
336
+ <linearGradient
337
+ inkscape:collect="always"
338
+ xlink:href="#linearGradient5014"
339
+ id="linearGradient5173"
340
+ gradientUnits="userSpaceOnUse"
341
+ x1="325.09213"
342
+ y1="553.5791"
343
+ x2="340.59402"
344
+ y2="553.5791" />
345
+ <linearGradient
346
+ inkscape:collect="always"
347
+ xlink:href="#linearGradient5014"
348
+ id="linearGradient5175"
349
+ gradientUnits="userSpaceOnUse"
350
+ x1="334.01904"
351
+ y1="624.96216"
352
+ x2="341.72147"
353
+ y2="624.96216" />
354
+ <linearGradient
355
+ inkscape:collect="always"
356
+ xlink:href="#linearGradient5014"
357
+ id="linearGradient5177"
358
+ gradientUnits="userSpaceOnUse"
359
+ x1="370.76263"
360
+ y1="515.48956"
361
+ x2="382.30228"
362
+ y2="515.48956" />
363
+ <linearGradient
364
+ inkscape:collect="always"
365
+ xlink:href="#linearGradient5014"
366
+ id="linearGradient5179"
367
+ gradientUnits="userSpaceOnUse"
368
+ x1="363.81903"
369
+ y1="617.62976"
370
+ x2="378.51163"
371
+ y2="617.62976" />
372
+ <linearGradient
373
+ inkscape:collect="always"
374
+ xlink:href="#linearGradient5014"
375
+ id="linearGradient5181"
376
+ gradientUnits="userSpaceOnUse"
377
+ x1="420.42398"
378
+ y1="546.15906"
379
+ x2="432.61298"
380
+ y2="546.15906" />
381
+ <linearGradient
382
+ inkscape:collect="always"
383
+ xlink:href="#linearGradient5014"
384
+ id="linearGradient5183"
385
+ gradientUnits="userSpaceOnUse"
386
+ x1="428.91235"
387
+ y1="526.58765"
388
+ x2="442.65857"
389
+ y2="526.58765" />
390
+ <linearGradient
391
+ inkscape:collect="always"
392
+ xlink:href="#linearGradient5014"
393
+ id="linearGradient5185"
394
+ gradientUnits="userSpaceOnUse"
395
+ x1="413.26404"
396
+ y1="615.08453"
397
+ x2="423.96841"
398
+ y2="615.08453" />
399
+ <linearGradient
400
+ inkscape:collect="always"
401
+ xlink:href="#linearGradient5014"
402
+ id="linearGradient5187"
403
+ gradientUnits="userSpaceOnUse"
404
+ x1="477.00308"
405
+ y1="568.83582"
406
+ x2="482.37894"
407
+ y2="568.83582" />
408
+ <linearGradient
409
+ inkscape:collect="always"
410
+ xlink:href="#linearGradient5014"
411
+ id="linearGradient5189"
412
+ gradientUnits="userSpaceOnUse"
413
+ x1="494.4227"
414
+ y1="525.18286"
415
+ x2="506.04391"
416
+ y2="525.18286" />
417
+ <linearGradient
418
+ inkscape:collect="always"
419
+ xlink:href="#linearGradient5014"
420
+ id="linearGradient5191"
421
+ gradientUnits="userSpaceOnUse"
422
+ x1="479.78738"
423
+ y1="635.82928"
424
+ x2="483.61481"
425
+ y2="635.82928" />
426
+ <linearGradient
427
+ inkscape:collect="always"
428
+ xlink:href="#linearGradient5014"
429
+ id="linearGradient5193"
430
+ gradientUnits="userSpaceOnUse"
431
+ x1="513.08533"
432
+ y1="621.65179"
433
+ x2="524.66235"
434
+ y2="621.65179" />
435
+ <linearGradient
436
+ inkscape:collect="always"
437
+ xlink:href="#linearGradient4930"
438
+ id="linearGradient5195"
439
+ gradientUnits="userSpaceOnUse"
440
+ x1="46.745018"
441
+ y1="548.95428"
442
+ x2="77.908363"
443
+ y2="592.10358" />
444
+ <radialGradient
445
+ inkscape:collect="always"
446
+ xlink:href="#linearGradient5199"
447
+ id="radialGradient5205"
448
+ cx="148.66815"
449
+ cy="586.32043"
450
+ fx="145.52106"
451
+ fy="618.05389"
452
+ r="109.27871"
453
+ gradientTransform="matrix(0.8384765,-8.8878482e-3,9.02676e-3,0.8515813,18.720827,88.342287)"
454
+ gradientUnits="userSpaceOnUse" />
455
+ </defs>
456
+ <g
457
+ id="g5132"
458
+ transform="matrix(0.5095367,0,0,0.5095367,-11.028674,-234.51586)">
459
+ <g
460
+ id="g5079">
461
+ <path
462
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
463
+ id="path4776"
464
+ d="M 257.69687,589.1106 L 257.34084,592.07855 L 256.58081,594.64591 L 255.9525,598.67444 L 255.91847,608.17076 L 255.45718,611.43044 L 254.16235,614.80714 L 253.90262,617.11439 L 253.59358,622.11701 L 253.00465,624.62794 L 252.12819,626.61943 L 250.08151,630.13149 L 249.12484,632.21473 L 248.27648,634.65662 L 247.00183,637.3954 L 246.0808,638.84738 L 244.15569,640.87781 L 243.42608,642.14788 L 241.49028,646.58694 L 240.77608,648.06049 L 238.79045,650.37397 L 236.22468,654.16021 L 232.68375,658.18268 L 230.4249,659.85442 L 227.48397,662.07321 L 225.48993,664.46042 L 221.88393,669.42666 L 220.84808,670.423 L 214.48334,674.5367 L 212.871,675.97441 L 211.39969,677.62511 L 209.33072,679.28344 L 208.08587,680.70553 L 206.93001,681.81301 L 202.96445,683.71464 L 201.29221,684.5056 L 199.17499,684.8228 L 195.00223,686.61238 L 192.39776,688.43139 L 191.18094,689.48987 L 188.21761,690.10617 L 186.56439,690.56744 L 183.96861,691.58909 L 182.18519,692.16139 L 180.60015,693.33909 L 176.66194,694.37267 L 174.24966,694.7089 L 171.58838,695.33012 L 169.44812,695.89256 L 165.68321,696.00148 L 164.01685,696.35702 L 161.30006,697.23588 L 159.12569,697.61946 L 154.5914,697.99331 L 152.42324,698.5941 L 148.91956,698.5415 L 146.66782,698.18904 L 143.25706,698.19431 L 138.98117,697.59685 L 135.93385,696.90674 L 130.77094,695.39563 L 125.73639,695.56797 L 122.51136,695.61344 L 120.79084,695.14005 L 118.47948,694.15543 L 115.69244,693.21123 L 110.22235,691.12437 L 104.04712,689.19421 L 101.47695,687.19025 L 98.350648,685.40536 L 93.390194,683.12647 L 91.404115,682.21409 L 89.431697,680.83889 L 86.88656,679.03014 L 83.451563,676.32214 L 81.243638,674.78372 L 75.523401,670.12196 L 73.79693,668.69561 L 72.024421,667.5957 L 70.584147,666.25278 L 69.03848,664.78395 L 67.054293,663.31078 L 65.000898,660.71235 L 64.084431,659.01099 L 62.800139,655.75974 L 60.38332,652.96519 L 58.374042,649.85381 L 57.033853,646.85147 L 56.433597,645.02461 L 54.816361,643.64615 L 53.379567,641.74566 L 51.93606,639.25414 L 50.231069,636.8526 L 49.288081,634.65377 L 47.350229,628.98943 L 46.833165,626.55058 L 46.456848,624.16492 L 44.839282,621.37126 L 42.302212,615.21529 L 41.362904,612.45261 L 40.962111,610.59555 L 41.231094,608.65963 L 40.503577,605.62613 L 40.588266,600.14162 L 40.131203,592.12507 L 39.63944,587.12918 L 39.950887,585.19414 L 40.491665,582.61498 L 40.223421,580.85679 L 39.875164,578.91849 L 39.843292,577.025 L 40.603504,570.66069 L 40.996677,568.55016 L 43.165434,563.62283 L 45.404018,558.85092 L 46.811978,556.78625 L 47.221085,554.80368 L 47.383111,551.06501 L 47.856413,548.65073 L 49.290278,544.59865 L 51.040266,542.14768 L 52.858496,540.16882 L 54.61183,537.27419 L 55.257735,534.76673 L 57.52712,529.27714 L 58.414663,527.4186 L 60.056745,525.47045 L 62.01686,523.87658 L 65.093473,521.58604 L 68.442951,518.18721 L 70.465806,516.91072 L 71.515349,515.30998 L 74.218697,511.11821 L 75.848033,509.47162 L 77.347197,506.89483 L 79.298902,504.73517 L 81.959032,502.73483 L 84.341825,500.82958 L 86.614873,499.76682 L 89.908765,497.41557 L 92.2369,495.46762 L 95.257712,493.59568 L 98.654587,492.42409 L 102.11006,491.87785 L 104.73187,491.23546 L 106.54232,490.09658 L 108.3772,489.55554 L 111.11522,487.72571 L 115.34358,485.4908 L 117.35851,484.70983 L 119.14723,484.24168 L 121.89984,484.19591 L 124.22974,484.53361 L 126.34678,484.28961 L 129.34431,483.56266 L 134.74088,482.82513 L 138.49723,482.22269 L 141.31742,481.63966 L 143.78579,481.26433 L 145.99273,480.90179 L 149.65971,480.18604 L 152.13404,480.04673 L 159.23749,480.82184 L 164.35104,482.61578 L 166.4891,482.70632 L 170.34821,484.1059 L 173.24285,485.16268 L 176.15082,485.81397 L 180.61816,485.82581 L 182.73189,485.42987 L 188.62469,487.56497 L 190.95517,489.60239 L 196.13135,492.10026 L 199.04457,493.70202 L 201.23892,493.93611 L 203.57641,494.8927 L 206.34486,497.19516 L 208.14936,498.46605 L 209.86642,500.11671 L 211.49316,500.9526 L 213.42836,501.62216 L 216.7458,503.56974 L 218.65912,504.73357 L 222.02358,508.16563 L 223.38209,509.62565 L 225.51383,512.79615 L 227.25054,514.45585 L 230.42465,516.46423 L 232.46314,518.33223 L 235.43369,523.06688 L 236.30823,525.01499 L 238.13913,527.19744 L 238.98432,528.36254 L 239.88958,530.61179 L 241.41497,533.15449 L 243.7708,536.85121 L 245.83891,538.99045 L 247.55943,540.95297 L 248.60922,543.79102 L 249.32322,545.6778 L 249.93861,547.88289 L 250.77925,550.63408 L 251.59024,552.35529 L 252.5819,558.0479 L 253.3402,560.64858 L 253.98212,564.3117 L 255.40138,568.281 L 256.07838,570.03654 L 256.62781,573.47921 L 256.82411,577.08105 L 257.23936,581.41826 L 256.75879,584.56118 L 257.22101,587.7532 L 257.69687,589.1106 z"
465
+ style="opacity:1;fill:#432615;fill-opacity:1;stroke:none;stroke-width:3.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:4.15;stroke-opacity:1;filter:url(#filter4814)"
466
+ transform="matrix(0.9838549,0,0,0.9838549,2.4002632,11.278876)" />
467
+ <path
468
+ style="opacity:1;fill:url(#linearGradient5161);fill-opacity:1;stroke:url(#linearGradient5163);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4.15;stroke-opacity:1"
469
+ d="M 257.69687,586.1106 L 257.34084,589.07855 L 256.58081,591.64591 L 255.9525,595.67444 L 255.91847,605.17076 L 255.45718,608.43044 L 254.16235,611.80714 L 253.90262,614.11439 L 253.59358,619.11701 L 253.00465,621.62794 L 252.12819,623.61943 L 250.08151,627.13149 L 249.12484,629.21473 L 248.27648,631.65662 L 247.00183,634.3954 L 246.0808,635.84738 L 244.15569,637.87781 L 243.42608,639.14788 L 241.49028,643.58694 L 240.77608,645.06049 L 238.79045,647.37397 L 236.22468,651.16021 L 232.68375,655.18268 L 230.4249,656.85442 L 227.48397,659.07321 L 225.48993,661.46042 L 221.88393,666.42666 L 220.84808,667.423 L 214.48334,671.5367 L 212.871,672.97441 L 211.39969,674.62511 L 209.33072,676.28344 L 208.08587,677.70553 L 206.93001,678.81301 L 202.96445,680.71464 L 201.29221,681.5056 L 199.17499,681.8228 L 195.00223,683.61238 L 192.39776,685.43139 L 191.18094,686.48987 L 188.21761,687.10617 L 186.56439,687.56744 L 183.96861,688.58909 L 182.18519,689.16139 L 180.60015,690.33909 L 176.66194,691.37267 L 174.24966,691.7089 L 171.58838,692.33012 L 169.44812,692.89256 L 165.68321,693.00148 L 164.01685,693.35702 L 161.30006,694.23588 L 159.12569,694.61946 L 154.5914,694.99331 L 152.42324,695.5941 L 148.91956,695.5415 L 146.66782,695.18904 L 143.25706,695.19431 L 138.98117,694.59685 L 135.93385,693.90674 L 130.77094,692.39563 L 125.73639,692.56797 L 122.51136,692.61344 L 120.79084,692.14005 L 118.47948,691.15543 L 115.69244,690.21123 L 110.22235,688.12437 L 104.04712,686.19421 L 101.47695,684.19025 L 98.350648,682.40536 L 93.390194,680.12647 L 91.404115,679.21409 L 89.431697,677.83889 L 86.88656,676.03014 L 83.451563,673.32214 L 81.243638,671.78372 L 75.523401,667.12196 L 73.79693,665.69561 L 72.024421,664.5957 L 70.584147,663.25278 L 69.03848,661.78395 L 67.054293,660.31078 L 65.000898,657.71235 L 64.084431,656.01099 L 62.800139,652.75974 L 60.38332,649.96519 L 58.374042,646.85381 L 57.033853,643.85147 L 56.433597,642.02461 L 54.816361,640.64615 L 53.379567,638.74566 L 51.93606,636.25414 L 50.231069,633.8526 L 49.288081,631.65377 L 47.350229,625.98943 L 46.833165,623.55058 L 46.456848,621.16492 L 44.839282,618.37126 L 42.302212,612.21529 L 41.362904,609.45261 L 40.962111,607.59555 L 41.231094,605.65963 L 40.503577,602.62613 L 40.588266,597.14162 L 40.131203,589.12507 L 39.63944,584.12918 L 39.950887,582.19414 L 40.491665,579.61498 L 40.223421,577.85679 L 39.875164,575.91849 L 39.843292,574.025 L 40.603504,567.66069 L 40.996677,565.55016 L 43.165434,560.62283 L 45.404018,555.85092 L 46.811978,553.78625 L 47.221085,551.80368 L 47.383111,548.06501 L 47.856413,545.65073 L 49.290278,541.59865 L 51.040266,539.14768 L 52.858496,537.16882 L 54.61183,534.27419 L 55.257735,531.76673 L 57.52712,526.27714 L 58.414663,524.4186 L 60.056745,522.47045 L 62.01686,520.87658 L 65.093473,518.58604 L 68.442951,515.18721 L 70.465806,513.91072 L 71.515349,512.30998 L 74.218697,508.11821 L 75.848033,506.47162 L 77.347197,503.89483 L 79.298902,501.73517 L 81.959032,499.73483 L 84.341825,497.82958 L 86.614873,496.76682 L 89.908765,494.41557 L 92.2369,492.46762 L 95.257712,490.59568 L 98.654587,489.42409 L 102.11006,488.87785 L 104.73187,488.23546 L 106.54232,487.09658 L 108.3772,486.55554 L 111.11522,484.72571 L 115.34358,482.4908 L 117.35851,481.70983 L 119.14723,481.24168 L 121.89984,481.19591 L 124.22974,481.53361 L 126.34678,481.28961 L 129.34431,480.56266 L 134.74088,479.82513 L 138.49723,479.22269 L 141.31742,478.63966 L 143.78579,478.26433 L 145.99273,477.90179 L 149.65971,477.18604 L 152.13404,477.04673 L 159.23749,477.82184 L 164.35104,479.61578 L 166.4891,479.70632 L 170.34821,481.1059 L 173.24285,482.16268 L 176.15082,482.81397 L 180.61816,482.82581 L 182.73189,482.42987 L 188.62469,484.56497 L 190.95517,486.60239 L 196.13135,489.10026 L 199.04457,490.70202 L 201.23892,490.93611 L 203.57641,491.8927 L 206.34486,494.19516 L 208.14936,495.46605 L 209.86642,497.11671 L 211.49316,497.9526 L 213.42836,498.62216 L 216.7458,500.56974 L 218.65912,501.73357 L 222.02358,505.16563 L 223.38209,506.62565 L 225.51383,509.79615 L 227.25054,511.45585 L 230.42465,513.46423 L 232.46314,515.33223 L 235.43369,520.06688 L 236.30823,522.01499 L 238.13913,524.19744 L 238.98432,525.36254 L 239.88958,527.61179 L 241.41497,530.15449 L 243.7708,533.85121 L 245.83891,535.99045 L 247.55943,537.95297 L 248.60922,540.79102 L 249.32322,542.6778 L 249.93861,544.88289 L 250.77925,547.63408 L 251.59024,549.35529 L 252.5819,555.0479 L 253.3402,557.64858 L 253.98212,561.3117 L 255.40138,565.281 L 256.07838,567.03654 L 256.62781,570.47921 L 256.82411,574.08105 L 257.23936,578.41826 L 256.75879,581.56118 L 257.22101,584.7532 L 257.69687,586.1106 z"
470
+ id="path2319"
471
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
472
+ <path
473
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
474
+ id="path5197"
475
+ d="M 257.69687,586.1106 L 257.34084,589.07855 L 256.58081,591.64591 L 255.9525,595.67444 L 255.91847,605.17076 L 255.45718,608.43044 L 254.16235,611.80714 L 253.90262,614.11439 L 253.59358,619.11701 L 253.00465,621.62794 L 252.12819,623.61943 L 250.08151,627.13149 L 249.12484,629.21473 L 248.27648,631.65662 L 247.00183,634.3954 L 246.0808,635.84738 L 244.15569,637.87781 L 243.42608,639.14788 L 241.49028,643.58694 L 240.77608,645.06049 L 238.79045,647.37397 L 236.22468,651.16021 L 232.68375,655.18268 L 230.4249,656.85442 L 227.48397,659.07321 L 225.48993,661.46042 L 221.88393,666.42666 L 220.84808,667.423 L 214.48334,671.5367 L 212.871,672.97441 L 211.39969,674.62511 L 209.33072,676.28344 L 208.08587,677.70553 L 206.93001,678.81301 L 202.96445,680.71464 L 201.29221,681.5056 L 199.17499,681.8228 L 195.00223,683.61238 L 192.39776,685.43139 L 191.18094,686.48987 L 188.21761,687.10617 L 186.56439,687.56744 L 183.96861,688.58909 L 182.18519,689.16139 L 180.60015,690.33909 L 176.66194,691.37267 L 174.24966,691.7089 L 171.58838,692.33012 L 169.44812,692.89256 L 165.68321,693.00148 L 164.01685,693.35702 L 161.30006,694.23588 L 159.12569,694.61946 L 154.5914,694.99331 L 152.42324,695.5941 L 148.91956,695.5415 L 146.66782,695.18904 L 143.25706,695.19431 L 138.98117,694.59685 L 135.93385,693.90674 L 130.77094,692.39563 L 125.73639,692.56797 L 122.51136,692.61344 L 120.79084,692.14005 L 118.47948,691.15543 L 115.69244,690.21123 L 110.22235,688.12437 L 104.04712,686.19421 L 101.47695,684.19025 L 98.350648,682.40536 L 93.390194,680.12647 L 91.404115,679.21409 L 89.431697,677.83889 L 86.88656,676.03014 L 83.451563,673.32214 L 81.243638,671.78372 L 75.523401,667.12196 L 73.79693,665.69561 L 72.024421,664.5957 L 70.584147,663.25278 L 69.03848,661.78395 L 67.054293,660.31078 L 65.000898,657.71235 L 64.084431,656.01099 L 62.800139,652.75974 L 60.38332,649.96519 L 58.374042,646.85381 L 57.033853,643.85147 L 56.433597,642.02461 L 54.816361,640.64615 L 53.379567,638.74566 L 51.93606,636.25414 L 50.231069,633.8526 L 49.288081,631.65377 L 47.350229,625.98943 L 46.833165,623.55058 L 46.456848,621.16492 L 44.839282,618.37126 L 42.302212,612.21529 L 41.362904,609.45261 L 40.962111,607.59555 L 41.231094,605.65963 L 40.503577,602.62613 L 40.588266,597.14162 L 40.131203,589.12507 L 39.63944,584.12918 L 39.950887,582.19414 L 40.491665,579.61498 L 40.223421,577.85679 L 39.875164,575.91849 L 39.843292,574.025 L 40.603504,567.66069 L 40.996677,565.55016 L 43.165434,560.62283 L 45.404018,555.85092 L 46.811978,553.78625 L 47.221085,551.80368 L 47.383111,548.06501 L 47.856413,545.65073 L 49.290278,541.59865 L 51.040266,539.14768 L 52.858496,537.16882 L 54.61183,534.27419 L 55.257735,531.76673 L 57.52712,526.27714 L 58.414663,524.4186 L 60.056745,522.47045 L 62.01686,520.87658 L 65.093473,518.58604 L 68.442951,515.18721 L 70.465806,513.91072 L 71.515349,512.30998 L 74.218697,508.11821 L 75.848033,506.47162 L 77.347197,503.89483 L 79.298902,501.73517 L 81.959032,499.73483 L 84.341825,497.82958 L 86.614873,496.76682 L 89.908765,494.41557 L 92.2369,492.46762 L 95.257712,490.59568 L 98.654587,489.42409 L 102.11006,488.87785 L 104.73187,488.23546 L 106.54232,487.09658 L 108.3772,486.55554 L 111.11522,484.72571 L 115.34358,482.4908 L 117.35851,481.70983 L 119.14723,481.24168 L 121.89984,481.19591 L 124.22974,481.53361 L 126.34678,481.28961 L 129.34431,480.56266 L 134.74088,479.82513 L 138.49723,479.22269 L 141.31742,478.63966 L 143.78579,478.26433 L 145.99273,477.90179 L 149.65971,477.18604 L 152.13404,477.04673 L 159.23749,477.82184 L 164.35104,479.61578 L 166.4891,479.70632 L 170.34821,481.1059 L 173.24285,482.16268 L 176.15082,482.81397 L 180.61816,482.82581 L 182.73189,482.42987 L 188.62469,484.56497 L 190.95517,486.60239 L 196.13135,489.10026 L 199.04457,490.70202 L 201.23892,490.93611 L 203.57641,491.8927 L 206.34486,494.19516 L 208.14936,495.46605 L 209.86642,497.11671 L 211.49316,497.9526 L 213.42836,498.62216 L 216.7458,500.56974 L 218.65912,501.73357 L 222.02358,505.16563 L 223.38209,506.62565 L 225.51383,509.79615 L 227.25054,511.45585 L 230.42465,513.46423 L 232.46314,515.33223 L 235.43369,520.06688 L 236.30823,522.01499 L 238.13913,524.19744 L 238.98432,525.36254 L 239.88958,527.61179 L 241.41497,530.15449 L 243.7708,533.85121 L 245.83891,535.99045 L 247.55943,537.95297 L 248.60922,540.79102 L 249.32322,542.6778 L 249.93861,544.88289 L 250.77925,547.63408 L 251.59024,549.35529 L 252.5819,555.0479 L 253.3402,557.64858 L 253.98212,561.3117 L 255.40138,565.281 L 256.07838,567.03654 L 256.62781,570.47921 L 256.82411,574.08105 L 257.23936,578.41826 L 256.75879,581.56118 L 257.22101,584.7532 L 257.69687,586.1106 z"
476
+ style="opacity:0.624;fill:url(#radialGradient5205);fill-opacity:1;stroke:url(#linearGradient5163);stroke-width:0.50000000000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4.15000000000000036;stroke-opacity:1" />
477
+ <g
478
+ id="g4758"
479
+ transform="translate(-278.17152,-1.6985884)"
480
+ clip-path="url(#clipPath4764)">
481
+ <path
482
+ id="path4616"
483
+ d="M 430.19948,479.439 L 427.73073,479.59525 L 424.07448,480.314 L 421.85573,480.65775 L 419.38698,481.03275 L 416.57448,481.6265 L 412.82448,482.22025 L 407.41823,482.97025 L 404.41823,483.689 L 402.29323,483.939 L 399.98073,483.59525 L 397.23073,483.65775 L 395.41823,484.1265 L 393.41823,484.90775 L 389.19948,487.1265 L 386.44948,488.97025 L 384.60573,489.5015 L 382.79323,490.65775 L 380.16823,491.28275 L 376.73074,491.84525 L 373.32449,493.0015 L 370.32449,494.8765 L 367.98074,496.814 L 364.69949,499.189 L 362.41824,500.2515 L 360.04324,502.15775 L 357.38699,504.15775 L 355.41824,506.314 L 353.91824,508.8765 L 352.29324,510.53275 L 349.57449,514.72025 L 348.54324,516.314 L 346.51199,517.59525 L 343.16824,521.0015 L 340.07449,523.28275 L 338.13699,524.8765 L 336.48074,526.814 L 335.60574,528.689 L 333.32449,534.189 L 332.69949,536.689 L 330.91824,539.564 L 329.10574,541.564 L 327.35574,544.0015 L 325.91824,548.064 L 325.44949,550.47025 L 325.29324,554.22025 L 324.88699,556.189 L 323.48074,558.2515 L 321.23074,563.03275 L 319.07449,567.97025 L 318.66824,570.064 L 317.91824,576.439 L 317.94949,578.314 L 318.29324,580.2515 L 318.57449,582.03275 L 318.01199,584.59525 L 317.69949,586.53275 L 318.19949,591.53275 L 318.29324,593.22025 L 318.66824,590.064 L 319.07449,587.97025 L 321.23074,583.03275 L 323.48074,578.2515 L 324.88699,576.189 L 325.29324,574.22025 L 325.44949,570.47025 L 325.91824,568.064 L 327.35574,564.0015 L 329.10574,561.564 L 330.91824,559.564 L 332.69949,556.689 L 333.32449,554.189 L 335.60574,548.689 L 336.48074,546.814 L 338.13699,544.8765 L 340.07449,543.28275 L 343.16824,541.0015 L 346.51199,537.59525 L 348.54324,536.314 L 349.57449,534.72025 L 352.29324,530.53275 L 353.91824,528.8765 L 355.41824,526.314 L 357.38699,524.15775 L 360.04324,522.15775 L 362.41824,520.2515 L 364.69949,519.189 L 367.98074,516.814 L 370.32449,514.8765 L 373.32449,513.0015 L 376.73074,511.84525 L 380.16823,511.28275 L 382.79323,510.65775 L 384.60573,509.5015 L 386.44948,508.97025 L 389.19948,507.1265 L 393.41823,504.90775 L 395.41823,504.1265 L 397.23073,503.65775 L 399.98073,503.59525 L 402.29323,503.939 L 404.41823,503.689 L 407.41823,502.97025 L 412.82448,502.22025 L 416.57448,501.6265 L 419.38698,501.03275 L 421.85573,500.65775 L 424.07448,500.314 L 427.73073,499.59525 L 430.19948,499.439 L 437.32448,500.22025 L 442.41823,502.03275 L 444.57448,502.1265 L 448.41823,503.5015 L 451.32448,504.564 L 454.23073,505.22025 L 458.69948,505.22025 L 460.79323,504.84525 L 466.69948,506.97025 L 469.04323,509.0015 L 474.19948,511.5015 L 477.10573,513.09525 L 479.32448,513.34525 L 481.63698,514.314 L 484.41823,516.59525 L 486.23073,517.8765 L 487.94948,519.53275 L 489.57448,520.34525 L 491.51198,521.03275 L 494.82448,522.97025 L 496.73073,524.1265 L 500.10573,527.564 L 501.44948,529.03275 L 503.57448,532.189 L 505.32448,533.8765 L 508.51198,535.8765 L 510.54323,537.7515 L 513.51198,542.47025 L 514.38698,544.40775 L 516.19948,546.59525 L 517.04323,547.78275 L 517.94948,550.03275 L 519.48073,552.564 L 521.85573,556.2515 L 523.91823,558.40775 L 525.63698,560.34525 L 526.66823,563.189 L 527.38698,565.09525 L 528.01198,567.28275 L 528.85573,570.03275 L 529.66823,571.7515 L 530.66823,577.47025 L 531.41823,580.064 L 532.04323,583.72025 L 533.48073,587.689 L 534.13698,589.439 L 534.69948,592.8765 L 534.76198,593.78275 L 535.41823,591.5015 L 535.76198,588.53275 L 535.29323,587.15775 L 534.82448,583.97025 L 535.32448,580.814 L 534.88698,576.5015 L 534.69948,572.8765 L 534.13698,569.439 L 533.48073,567.689 L 532.04323,563.72025 L 531.41823,560.064 L 530.66823,557.47025 L 529.66823,551.7515 L 528.85573,550.03275 L 528.01198,547.28275 L 527.38698,545.09525 L 526.66823,543.189 L 525.63698,540.34525 L 523.91823,538.40775 L 521.85573,536.2515 L 519.48073,532.564 L 517.94948,530.03275 L 517.04323,527.78275 L 516.19948,526.59525 L 514.38698,524.40775 L 513.51198,522.47025 L 510.54323,517.7515 L 508.51198,515.8765 L 505.32448,513.8765 L 503.57448,512.189 L 501.44948,509.03275 L 500.10573,507.564 L 496.73073,504.1265 L 494.82448,502.97025 L 491.51198,501.03275 L 489.57448,500.34525 L 487.94948,499.53275 L 486.23073,497.8765 L 484.41823,496.59525 L 481.63698,494.314 L 479.32448,493.34525 L 477.10573,493.09525 L 474.19948,491.5015 L 469.04323,489.0015 L 466.69948,486.97025 L 460.79323,484.84525 L 458.69948,485.22025 L 454.23073,485.22025 L 451.32448,484.564 L 448.41823,483.5015 L 444.57448,482.1265 L 442.41823,482.03275 L 437.32448,480.22025 L 430.19948,479.439 z"
484
+ style="opacity:1;fill:#e1c58a;fill-opacity:1;stroke:none;stroke-width:3.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:4.15;stroke-opacity:1;filter:url(#filter4750)" />
485
+ <path
486
+ id="path4624"
487
+ d="M 430.21528,479.03125 L 427.74653,479.1875 L 424.05903,479.90625 L 421.87153,480.25 L 419.40278,480.625 L 416.55903,481.21875 L 412.80903,481.8125 L 407.40278,482.5625 L 404.43403,483.28125 L 402.30903,483.53125 L 399.96528,483.1875 L 397.21528,483.25 L 395.43403,483.71875 L 393.40278,484.5 L 389.18403,486.71875 L 386.46528,488.5625 L 384.62153,489.09375 L 382.80903,490.25 L 380.18403,490.875 L 376.71529,491.4375 L 373.34029,492.59375 L 370.30904,494.46875 L 367.99654,496.40625 L 364.68404,498.78125 L 362.40279,499.84375 L 360.02779,501.75 L 357.37154,503.75 L 355.43404,505.90625 L 353.93404,508.46875 L 352.27779,510.125 L 349.59029,514.3125 L 348.52779,515.90625 L 346.52779,517.1875 L 343.15279,520.59375 L 340.09029,522.875 L 338.12154,524.46875 L 336.49654,526.40625 L 335.59029,528.28125 L 333.34029,533.78125 L 332.68404,536.28125 L 330.93404,539.15625 L 329.12154,541.15625 L 327.37154,543.59375 L 325.93404,547.65625 L 325.46529,550.0625 L 325.30904,553.8125 L 324.87154,555.78125 L 323.46529,557.84375 L 321.24654,562.625 L 319.05904,567.5625 L 318.68404,569.65625 L 317.90279,576.03125 L 317.93404,577.90625 L 318.30904,579.84375 L 318.55904,581.625 L 318.02779,584.1875 L 317.71529,586.125 L 318.21529,591.125 L 318.65279,599.15625 L 318.59029,604.625 L 319.30904,607.65625 L 319.02779,609.59375 L 319.43404,611.4375 L 320.37154,614.21875 L 322.90279,620.375 L 324.52779,623.15625 L 324.90279,625.5625 L 325.43404,628 L 327.37154,633.65625 L 328.30904,635.84375 L 329.99654,638.25 L 331.46529,640.75 L 332.90279,642.65625 L 334.49654,644.03125 L 335.12154,645.84375 L 336.43404,648.84375 L 338.46529,651.96875 L 340.87154,654.75 L 342.15279,658 L 343.05904,659.71875 L 345.12154,662.3125 L 347.12154,663.78125 L 348.65279,665.25 L 350.09029,666.59375 L 351.87154,667.6875 L 353.59029,669.125 L 359.30904,673.78125 L 361.52779,675.3125 L 364.96529,678.03125 L 367.49654,679.84375 L 369.46529,681.21875 L 371.46529,682.125 L 376.43404,684.40625 L 379.55903,686.1875 L 382.12153,688.1875 L 388.30903,690.125 L 393.77778,692.21875 L 396.55903,693.15625 L 398.87153,694.125 L 400.59028,694.625 L 403.80903,694.5625 L 408.84028,694.40625 L 413.99653,695.90625 L 417.05903,696.59375 L 421.34028,697.1875 L 424.74653,697.1875 L 426.99653,697.53125 L 430.49653,697.59375 L 432.65278,697 L 437.18403,696.625 L 439.37153,696.25 L 442.09028,695.34375 L 443.74653,695 L 447.52778,694.90625 L 449.65278,694.34375 L 452.30903,693.71875 L 454.74653,693.375 L 458.68403,692.34375 L 460.24653,691.15625 L 462.02778,690.59375 L 464.65278,689.5625 L 466.27778,689.09375 L 469.24653,688.5 L 470.46528,687.4375 L 473.09028,685.625 L 477.24653,683.8125 L 479.37153,683.5 L 481.02778,682.71875 L 484.99653,680.8125 L 486.15278,679.71875 L 487.40278,678.28125 L 489.46528,676.625 L 490.93403,674.96875 L 492.55903,673.53125 L 498.93403,669.4375 L 499.96528,668.4375 L 503.55903,663.46875 L 505.55903,661.0625 L 508.49653,658.84375 L 510.74653,657.1875 L 514.30903,653.15625 L 516.87153,649.375 L 518.84028,647.0625 L 519.55903,645.59375 L 521.49653,641.15625 L 522.21528,639.875 L 524.15278,637.84375 L 525.09028,636.40625 L 526.34028,633.65625 L 527.18403,631.21875 L 528.15278,629.125 L 530.21528,625.625 L 531.09028,623.625 L 531.65278,621.125 L 531.96528,616.125 L 532.24653,613.8125 L 533.52778,610.4375 L 533.99653,607.15625 L 534.02778,597.6875 L 534.65278,593.65625 L 535.40278,591.09375 L 535.77778,588.125 L 535.30903,586.75 L 534.84028,583.5625 L 535.30903,580.40625 L 534.90278,576.09375 L 534.71528,572.46875 L 534.15278,569.03125 L 533.46528,567.28125 L 532.05903,563.3125 L 531.40278,559.65625 L 530.65278,557.0625 L 529.65278,551.34375 L 528.84028,549.625 L 527.99653,546.875 L 527.40278,544.6875 L 526.68403,542.78125 L 525.62153,539.9375 L 523.90278,538 L 521.84028,535.84375 L 519.49653,532.15625 L 517.96528,529.625 L 517.05903,527.375 L 516.21528,526.1875 L 514.37153,524 L 513.49653,522.0625 L 510.52778,517.34375 L 508.49653,515.46875 L 505.30903,513.46875 L 503.59028,511.78125 L 501.46528,508.625 L 500.09028,507.15625 L 496.74653,503.71875 L 494.80903,502.5625 L 491.49653,500.625 L 489.55903,499.9375 L 487.93403,499.125 L 486.21528,497.46875 L 484.40278,496.1875 L 481.65278,493.90625 L 479.30903,492.9375 L 477.12153,492.6875 L 474.21528,491.09375 L 469.02778,488.59375 L 466.68403,486.5625 L 460.80903,484.4375 L 458.68403,484.8125 L 454.21528,484.8125 L 451.30903,484.15625 L 448.43403,483.09375 L 444.55903,481.71875 L 442.43403,481.625 L 437.30903,479.8125 L 430.21528,479.03125 z M 430.05903,490.63125 L 436.90278,491.38125 L 441.80903,493.13125 L 443.87153,493.19375 L 447.59028,494.5375 L 450.37153,495.56875 L 453.18403,496.19375 L 457.46528,495.79375 L 459.49653,495.41875 L 465.15278,497.48125 L 467.40278,499.45 L 472.37153,501.825 L 475.18403,503.3875 L 477.30903,503.60625 L 479.52778,504.5125 L 482.21528,506.73125 L 483.93403,507.95 L 485.59028,509.14375 L 487.15278,509.95625 L 489.02778,510.58125 L 492.21528,512.45625 L 494.05903,513.58125 L 497.27778,516.89375 L 498.59028,518.3 L 500.62153,520.93125 L 502.30903,522.525 L 505.37153,524.4625 L 507.30903,526.275 L 510.18403,530.80625 L 511.02778,532.28125 L 512.77778,534.375 L 513.59028,535.5 L 514.46528,537.65625 L 515.93403,539.725 L 518.18403,543.25625 L 520.18403,545.31875 L 521.84028,547.225 L 522.84028,549.54375 L 523.52778,551.35625 L 524.12153,553.48125 L 524.93403,555.7375 L 525.71528,557.39375 L 526.65278,562.8625 L 527.40278,565.3625 L 527.99653,568.8625 L 529.37153,572.30625 L 530.02778,573.99375 L 530.55903,577.30625 L 530.74653,580.34375 L 531.15278,584.53125 L 530.68403,587.5625 L 531.12153,590.625 L 531.59028,591.9375 L 531.24653,594.78125 L 530.49653,597.25 L 529.90278,601.125 L 529.87153,610.25 L 529.43403,613.375 L 528.18403,616.625 L 527.93403,618.84375 L 527.65278,623.65625 L 527.05903,626.0625 L 526.21528,628 L 524.24653,631.375 L 523.34028,633.375 L 522.52778,635.71875 L 521.30903,638.34375 L 520.40278,639.75 L 518.55903,641.71875 L 517.87153,642.9375 L 515.99653,647.1875 L 515.30903,648.625 L 513.40278,650.84375 L 510.93403,654.46875 L 507.52778,658.34375 L 505.37153,659.9375 L 502.52778,662.09375 L 500.62153,664.375 L 497.15278,669.15625 L 496.15278,670.125 L 490.02778,674.0625 L 488.46528,675.4375 L 487.05903,677.03125 L 485.09028,678.625 L 483.87153,680 L 482.77778,681.0625 L 478.96528,682.90625 L 477.34028,683.65625 L 475.30903,683.96875 L 471.30903,685.6875 L 468.77778,687.4375 L 467.62153,688.4375 L 464.77778,689.03125 L 463.18403,689.5 L 460.68403,690.46875 L 458.96528,691.03125 L 457.43403,692.15625 L 453.65278,693.15625 L 451.34028,693.46875 L 448.77778,694.0625 L 446.71528,694.59375 L 443.09028,694.71875 L 441.49653,695.0625 L 438.90278,695.90625 L 436.80903,696.28125 L 432.43403,696.625 L 430.34028,697.21875 L 426.99653,697.15625 L 424.80903,696.8125 L 421.52778,696.8125 L 417.43403,696.25 L 414.49653,695.59375 L 409.52778,694.125 L 404.68403,694.28125 L 401.59028,694.34375 L 399.93403,693.875 L 397.71528,692.9375 L 395.02778,692.03125 L 389.77778,690.03125 L 383.84028,688.15625 L 381.37153,686.25 L 378.34029,684.53125 L 373.59029,682.34375 L 371.68404,681.4375 L 369.77779,680.125 L 367.34029,678.40625 L 364.02779,675.78125 L 361.90279,674.3125 L 356.40279,669.8125 L 354.74654,668.46875 L 353.02779,667.40625 L 351.65279,666.09375 L 350.18404,664.6875 L 348.24654,663.28125 L 346.27779,660.78125 L 345.40279,659.125 L 344.18404,656 L 341.84029,653.3125 L 339.90279,650.34375 L 338.62154,647.4375 L 338.05904,645.6875 L 336.49654,644.375 L 335.12154,642.53125 L 333.71529,640.15625 L 332.09029,637.84375 L 331.18404,635.71875 L 329.30904,630.28125 L 328.80904,627.9375 L 328.46529,625.625 L 326.90279,622.9375 L 324.46529,617.03125 L 323.55904,614.375 L 323.18404,612.59375 L 323.43404,610.71875 L 322.71529,607.8125 L 322.80904,602.53125 L 322.37154,594.8125 L 321.90279,590.03125 L 322.18404,588.15625 L 322.71529,585.6875 L 322.46529,584 L 322.12154,582.125 L 322.09029,580.3125 L 322.84029,574.1875 L 323.21529,572.55625 L 325.27779,567.80625 L 327.43404,563.2125 L 328.80904,561.24375 L 329.18404,559.7375 L 329.34029,556.14375 L 329.80904,553.83125 L 331.18404,549.925 L 332.87154,547.95 L 334.62154,546.075 L 336.30904,543.2625 L 336.90279,541.25625 L 339.09029,535.975 L 339.96529,534.19375 L 341.52779,532.71875 L 343.40279,531.1875 L 346.37154,529 L 349.59029,526.11875 L 351.52779,524.9 L 352.55904,523.36875 L 355.15279,519.3375 L 356.71529,517.74375 L 358.15279,515.275 L 360.02779,513.58125 L 362.59029,511.675 L 364.87154,509.83125 L 367.05904,508.8 L 370.24654,506.55 L 372.46529,504.675 L 375.37154,503.2625 L 378.65279,502.1375 L 381.96528,501.6375 L 384.49653,501.0125 L 386.24653,499.91875 L 387.99653,499.3875 L 390.62153,497.6375 L 394.68403,495.48125 L 396.62153,494.73125 L 398.34028,494.29375 L 400.99653,494.23125 L 403.24653,494.575 L 405.27778,494.725 L 408.15278,494.0375 L 413.34028,493.31875 L 416.96528,492.725 L 419.68403,492.19375 L 422.05903,491.81875 L 424.15278,491.475 L 427.68403,490.7875 L 430.05903,490.63125 z"
488
+ style="opacity:0.844;fill:url(#linearGradient5165);fill-opacity:1;stroke:none;stroke-width:3.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:4.15;stroke-opacity:1;filter:url(#filter4746)"
489
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
490
+ </g>
491
+ <g
492
+ id="g4606"
493
+ clip-path="url(#clipPath4610)"
494
+ transform="translate(-306.83909,0)">
495
+ <path
496
+ id="path4458"
497
+ d="M 564.39817,568.71875 L 563.99192,571.28125 L 563.96067,580.78125 L 563.49192,584.0625 L 562.21067,587.4375 L 561.92942,589.71875 L 561.61692,594.71875 L 561.05442,597.25 L 560.17942,599.25 L 558.11692,602.75 L 557.14817,604.84375 L 556.30442,607.28125 L 555.05442,610 L 554.11692,611.46875 L 552.17942,613.5 L 551.46067,614.75 L 549.52317,619.21875 L 548.80442,620.6875 L 546.83567,623 L 544.27317,626.78125 L 540.71067,630.8125 L 538.46067,632.46875 L 535.52317,634.6875 L 533.52317,637.0625 L 529.92942,642.03125 L 528.89817,643.03125 L 522.52317,647.15625 L 520.89817,648.59375 L 519.42942,650.25 L 517.36692,651.90625 L 516.11692,653.3125 L 514.96067,654.4375 L 510.99192,656.34375 L 509.33567,657.125 L 507.21067,657.4375 L 503.05442,659.21875 L 500.42942,661.0625 L 499.21067,662.09375 L 496.24192,662.71875 L 494.61692,663.1875 L 491.99192,664.21875 L 490.21067,664.78125 L 488.64817,665.96875 L 484.71067,667 L 482.27317,667.3125 L 479.61692,667.9375 L 477.49192,668.5 L 473.71067,668.625 L 472.05442,668.96875 L 469.33567,669.84375 L 467.14817,670.25 L 462.61692,670.625 L 460.46067,671.21875 L 456.96067,671.15625 L 454.71067,670.8125 L 451.30442,670.8125 L 447.02317,670.21875 L 443.96067,669.53125 L 438.80442,668 L 433.77317,668.1875 L 430.55442,668.21875 L 428.83567,667.75 L 426.52317,666.78125 L 423.74192,665.8125 L 418.27317,663.75 L 412.08567,661.8125 L 409.52317,659.8125 L 406.39817,658.03125 L 401.42942,655.75 L 399.42942,654.84375 L 397.46067,653.46875 L 394.92942,651.65625 L 391.49192,648.9375 L 389.27317,647.40625 L 383.55442,642.75 L 381.83567,641.3125 L 380.05442,640.21875 L 378.61692,638.875 L 377.08567,637.40625 L 375.08567,635.9375 L 373.02317,633.34375 L 372.11692,631.625 L 370.83567,628.375 L 368.42942,625.59375 L 366.39817,622.46875 L 365.08567,619.46875 L 364.46067,617.65625 L 362.86692,616.25 L 361.42942,614.375 L 359.96067,611.875 L 358.27317,609.46875 L 357.33567,607.28125 L 355.39817,601.59375 L 354.86692,599.15625 L 354.49192,596.78125 L 352.86692,594 L 350.33567,587.84375 L 349.39817,585.0625 L 348.99192,583.21875 L 349.27317,581.28125 L 348.55442,578.25 L 348.61692,572.75 L 348.42942,569.40625 L 347.86692,574.03125 L 347.89817,575.90625 L 348.27317,577.84375 L 348.52317,579.625 L 347.99192,582.1875 L 347.67942,584.125 L 348.17942,589.125 L 348.61692,597.15625 L 348.55442,602.625 L 349.27317,605.65625 L 348.99192,607.59375 L 349.39817,609.4375 L 350.33567,612.21875 L 352.86692,618.375 L 354.49192,621.15625 L 354.86692,623.5625 L 355.39817,626 L 357.33567,631.65625 L 358.27317,633.84375 L 359.96067,636.25 L 361.42942,638.75 L 362.86692,640.65625 L 364.46067,642.03125 L 365.08567,643.84375 L 366.39817,646.84375 L 368.42942,649.96875 L 370.83567,652.75 L 372.11692,656 L 373.02317,657.71875 L 375.08567,660.3125 L 377.08567,661.78125 L 378.61692,663.25 L 380.05442,664.59375 L 381.83567,665.6875 L 383.55442,667.125 L 389.27317,671.78125 L 391.49192,673.3125 L 394.92942,676.03125 L 397.46067,677.84375 L 399.42942,679.21875 L 401.42942,680.125 L 406.39817,682.40625 L 409.52317,684.1875 L 412.08567,686.1875 L 418.27317,688.125 L 423.74192,690.21875 L 426.52317,691.15625 L 428.83567,692.125 L 430.55442,692.625 L 433.77317,692.5625 L 438.80442,692.40625 L 443.96067,693.90625 L 447.02317,694.59375 L 451.30442,695.1875 L 454.71067,695.1875 L 456.96067,695.53125 L 460.46067,695.59375 L 462.61692,695 L 467.14817,694.625 L 469.33567,694.25 L 472.05442,693.34375 L 473.71067,693 L 477.49192,692.90625 L 479.61692,692.34375 L 482.27317,691.71875 L 484.71067,691.375 L 488.64817,690.34375 L 490.21067,689.15625 L 491.99192,688.59375 L 494.61692,687.5625 L 496.24192,687.09375 L 499.21067,686.5 L 500.42942,685.4375 L 503.05442,683.625 L 507.21067,681.8125 L 509.33567,681.5 L 510.99192,680.71875 L 514.96067,678.8125 L 516.11692,677.71875 L 517.36692,676.28125 L 519.42942,674.625 L 520.89817,672.96875 L 522.52317,671.53125 L 528.89817,667.4375 L 529.92942,666.4375 L 533.52317,661.46875 L 535.52317,659.0625 L 538.46067,656.84375 L 540.71067,655.1875 L 544.27317,651.15625 L 546.83567,647.375 L 548.80442,645.0625 L 549.52317,643.59375 L 551.46067,639.15625 L 552.17942,637.875 L 554.11692,635.84375 L 555.05442,634.40625 L 556.30442,631.65625 L 557.14817,629.21875 L 558.11692,627.125 L 560.17942,623.625 L 561.05442,621.625 L 561.61692,619.125 L 561.92942,614.125 L 562.21067,611.8125 L 563.49192,608.4375 L 563.96067,605.15625 L 563.99192,595.6875 L 564.61692,591.65625 L 565.36692,589.09375 L 565.74192,586.125 L 565.27317,584.75 L 564.80442,581.5625 L 565.27317,578.40625 L 564.86692,574.09375 L 564.67942,570.46875 L 564.39817,568.71875 z"
498
+ style="opacity:0.69599998;fill:#c9913d;fill-opacity:1;stroke:none;stroke-width:3.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:4.15;stroke-opacity:1;filter:url(#filter4602)" />
499
+ <path
500
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
501
+ id="path4472"
502
+ d="M 346.61692,570.125 L 346.39817,572.15625 L 346.71067,570.625 L 346.61692,570.125 z M 563.11692,581.59375 L 562.80442,582.65625 L 562.17942,586.6875 L 562.14817,596.15625 L 561.67942,599.4375 L 560.36692,602.8125 L 560.11692,605.125 L 559.80442,610.125 L 559.21067,612.625 L 558.33567,614.625 L 556.30442,618.125 L 555.33567,620.21875 L 554.49192,622.65625 L 553.21067,625.40625 L 552.30442,626.84375 L 550.36692,628.875 L 549.64817,630.15625 L 547.71067,634.59375 L 546.99192,636.0625 L 544.99192,638.375 L 542.42942,642.15625 L 538.89817,646.1875 L 536.64817,647.84375 L 533.71067,650.0625 L 531.71067,652.46875 L 528.08567,657.4375 L 527.05442,658.4375 L 520.71067,662.53125 L 519.08567,663.96875 L 517.61692,665.625 L 515.55442,667.28125 L 514.30442,668.71875 L 513.14817,669.8125 L 509.17942,671.71875 L 507.49192,672.5 L 505.39817,672.8125 L 501.21067,674.625 L 498.61692,676.4375 L 497.39817,677.5 L 494.42942,678.09375 L 492.77317,678.5625 L 490.17942,679.59375 L 488.39817,680.15625 L 486.80442,681.34375 L 482.86692,682.375 L 480.46067,682.71875 L 477.80442,683.34375 L 475.64817,683.90625 L 471.89817,684 L 470.24192,684.34375 L 467.52317,685.25 L 465.33567,685.625 L 460.80442,686 L 458.64817,686.59375 L 455.14817,686.53125 L 452.89817,686.1875 L 449.46067,686.1875 L 445.21067,685.59375 L 442.14817,684.90625 L 436.99192,683.40625 L 431.96067,683.5625 L 428.74192,683.625 L 426.99192,683.125 L 424.67942,682.15625 L 421.89817,681.21875 L 416.42942,679.125 L 410.27317,677.1875 L 407.67942,675.1875 L 404.55442,673.40625 L 399.61692,671.125 L 397.61692,670.21875 L 395.64817,668.84375 L 393.11692,667.03125 L 389.67942,664.3125 L 387.46067,662.78125 L 381.74192,658.125 L 380.02317,656.6875 L 378.24192,655.59375 L 376.80442,654.25 L 375.24192,652.78125 L 373.27317,651.3125 L 371.21067,648.71875 L 370.30442,647 L 369.02317,643.75 L 366.58567,640.96875 L 364.58567,637.84375 L 363.24192,634.84375 L 362.64817,633.03125 L 361.02317,631.65625 L 359.58567,629.75 L 358.14817,627.25 L 356.46067,624.84375 L 355.49192,622.65625 L 353.55442,617 L 353.05442,614.5625 L 352.67942,612.15625 L 351.05442,609.375 L 348.52317,603.21875 L 347.58567,600.4375 L 347.17942,598.59375 L 347.46067,596.65625 L 346.71067,593.625 L 346.80442,588.15625 L 346.42942,581.9375 L 346.17942,583.1875 L 345.86692,585.125 L 346.33567,590.125 L 346.80442,598.15625 L 346.71067,603.625 L 347.46067,606.65625 L 347.17942,608.59375 L 347.58567,610.4375 L 348.52317,613.21875 L 351.05442,619.375 L 352.67942,622.15625 L 353.05442,624.5625 L 353.55442,627 L 355.49192,632.65625 L 356.46067,634.84375 L 358.14817,637.25 L 359.58567,639.75 L 361.02317,641.65625 L 362.64817,643.03125 L 363.24192,644.84375 L 364.58567,647.84375 L 366.58567,650.96875 L 369.02317,653.75 L 370.30442,657 L 371.21067,658.71875 L 373.27317,661.3125 L 375.24192,662.78125 L 376.80442,664.25 L 378.24192,665.59375 L 380.02317,666.6875 L 381.74192,668.125 L 387.46067,672.78125 L 389.67942,674.3125 L 393.11692,677.03125 L 395.64817,678.84375 L 397.61692,680.21875 L 399.61692,681.125 L 404.55442,683.40625 L 407.67942,685.1875 L 410.27317,687.1875 L 416.42942,689.125 L 421.89817,691.21875 L 424.67942,692.15625 L 426.99192,693.125 L 428.74192,693.625 L 431.96067,693.5625 L 436.99192,693.40625 L 442.14817,694.90625 L 445.21067,695.59375 L 449.46067,696.1875 L 452.89817,696.1875 L 455.14817,696.53125 L 458.64817,696.59375 L 460.80442,696 L 465.33567,695.625 L 467.52317,695.25 L 470.24192,694.34375 L 471.89817,694 L 475.64817,693.90625 L 477.80442,693.34375 L 480.46067,692.71875 L 482.86692,692.375 L 486.80442,691.34375 L 488.39817,690.15625 L 490.17942,689.59375 L 492.77317,688.5625 L 494.42942,688.09375 L 497.39817,687.5 L 498.61692,686.4375 L 501.21067,684.625 L 505.39817,682.8125 L 507.49192,682.5 L 509.17942,681.71875 L 513.14817,679.8125 L 514.30442,678.71875 L 515.55442,677.28125 L 517.61692,675.625 L 519.08567,673.96875 L 520.71067,672.53125 L 527.05442,668.4375 L 528.08567,667.4375 L 531.71067,662.46875 L 533.71067,660.0625 L 536.64817,657.84375 L 538.89817,656.1875 L 542.42942,652.15625 L 544.99192,648.375 L 546.99192,646.0625 L 547.71067,644.59375 L 549.64817,640.15625 L 550.36692,638.875 L 552.30442,636.84375 L 553.21067,635.40625 L 554.49192,632.65625 L 555.33567,630.21875 L 556.30442,628.125 L 558.33567,624.625 L 559.21067,622.625 L 559.80442,620.125 L 560.11692,615.125 L 560.36692,612.8125 L 561.67942,609.4375 L 562.14817,606.15625 L 562.17942,596.6875 L 562.80442,592.65625 L 563.55442,590.09375 L 563.89817,587.125 L 563.42942,585.75 L 562.96067,582.5625 L 563.11692,581.59375 z"
503
+ style="opacity:0.69599998;fill:url(#linearGradient5167);fill-opacity:1;stroke:none;stroke-width:3.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:4.15;stroke-opacity:1;filter:url(#filter4598)" />
504
+ </g>
505
+ <path
506
+ style="opacity:0.21199999;fill:url(#radialGradient5169);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4448)"
507
+ d="M 117.50256,491.4375 L 115.74474,491.71027 L 108.19823,496.95342 L 114.28999,496.07451 L 124.47324,496.07451 C 124.47323,496.07451 122.73155,494.04392 120.9879,494.04392 C 119.24425,494.04392 117.50256,491.4375 117.50256,491.4375 z M 178.23833,492.86194 L 176.20774,496.07451 L 172.99517,499.25677 L 170.96458,499.86292 L 174.44992,500.71152 L 177.66249,495.1956 L 178.23833,492.86194 z M 103.83399,501.0146 L 96.287475,507.40943 L 97.439151,508.28834 L 99.469738,505.37884 L 104.7129,506.25775 L 103.83399,501.0146 z M 153.23483,501.0146 L 148.90089,503.04518 L 143.35466,504.49993 L 133.47449,504.49993 L 136.68706,506.83359 L 141.62715,506.25775 C 141.62715,506.25775 144.52761,505.66945 147.14307,505.37884 C 149.75854,505.08823 151.20425,503.62102 151.20424,503.62102 L 153.23483,501.0146 z M 129.41332,502.74211 L 125.35215,504.803 L 122.74572,507.40943 L 119.83622,507.6822 L 116.35089,511.77368 L 111.68357,511.4706 L 109.34991,507.10636 C 109.3499,507.10636 107.31932,502.16798 107.31932,503.62102 C 107.31931,505.07406 109.07714,508.86418 109.07714,508.86418 L 109.95605,511.4706 L 108.19823,514.3801 L 105.28873,516.98653 L 101.8034,515.53178 L 99.772811,514.68317 L 100.07588,519.32019 L 97.742224,520.77493 L 98.318062,523.10859 L 102.37924,522.50245 L 104.7129,520.1991 L 105.28873,518.44128 L 109.65298,513.80426 L 111.10773,513.22843 L 119.83622,511.4706 L 120.9879,509.44002 L 123.32156,508.56111 L 129.41332,502.74211 z M 134.92924,515.53178 L 126.23106,518.16851 L 124.77631,521.35077 L 127.38273,522.80552 L 131.44391,520.1991 L 135.23231,517.2896 L 134.92924,515.53178 z M 64.313308,521.07801 L 62.585794,526.59393 C 62.585794,526.59393 61.427019,529.79577 60.555207,530.95818 C 59.683386,532.12061 56.463726,534.14045 56.463726,534.14044 L 55.008977,538.50469 L 54.433139,546.62703 L 55.615122,545.17229 C 55.615122,545.17229 56.173116,541.12186 56.463726,539.95944 C 56.754327,538.797 57.918475,535.59521 57.918475,535.59519 L 61.131045,531.80678 L 62.585794,527.74561 L 64.313308,525.41195 L 64.313308,521.07801 z M 218.63791,527.16977 L 215.72842,527.47284 L 216.88009,530.35203 L 219.51683,530.6551 L 218.63791,527.16977 z M 171.26766,527.74561 L 170.69182,531.80678 L 174.75299,534.44351 L 177.93525,536.4741 L 174.75299,531.80678 L 171.26766,527.74561 z M 130.565,529.20036 L 136.11123,536.17103 L 137.2629,540.83835 L 137.56597,535.29212 L 134.3534,531.23094 L 130.565,529.20036 z M 194.51333,531.53401 L 196.84699,534.71628 L 201.484,535.59519 L 199.15034,532.68569 L 194.51333,531.53401 z M 173.87408,537.92885 L 170.96458,538.20161 L 172.7224,542.56586 L 174.17715,545.47536 L 175.90467,541.41418 L 173.87408,537.92885 z M 200.02925,537.92885 L 200.02925,541.11111 L 203.81766,540.2322 L 203.81766,538.77745 L 200.02925,537.92885 z M 206.42409,541.68695 L 203.51459,542.29309 L 206.42409,545.77843 L 211.36417,549.26377 L 213.12199,548.96069 L 206.42409,541.68695 z M 125.35215,552.44603 L 124.47324,556.5072 L 132.89866,560.29561 L 140.1724,562.62927 L 144.23357,566.99352 L 151.78008,564.93262 L 147.44614,563.78095 L 140.44516,559.99254 L 125.35215,552.44603 z M 215.42534,570.47885 L 213.69783,574.81279 L 214.57674,580.93486 L 213.12199,586.45078 L 217.18317,587.32969 L 216.60733,580.63179 L 215.42534,570.47885 z M 92.80214,591.0878 L 89.892642,595.17928 L 94.256888,598.08877 L 96.287475,596.02788 L 95.135799,591.39087 L 92.80214,591.0878 z M 217.18317,591.69394 L 215.15258,592.54254 L 211.94001,595.75511 L 211.0611,600.96796 L 213.39476,600.96796 L 217.18317,591.69394 z M 196.24084,592.84562 L 191.30076,597.48263 L 192.75551,600.96796 L 197.99867,606.78696 L 198.5745,614.0607 L 202.63568,611.72704 L 201.78707,604.48361 L 198.5745,600.96796 L 196.24084,597.20986 L 196.24084,592.84562 z M 247.09644,594.60344 L 242.7625,596.90679 L 243.91418,600.96796 L 247.09644,594.60344 z M 88.437893,600.96796 L 86.104233,604.18053 L 82.92197,608.54478 L 79.7094,611.45428 L 77.406048,614.36378 L 81.164149,616.39436 L 82.618898,618.12188 L 85.831468,615.51545 L 84.649485,611.45428 L 84.376719,607.66587 L 88.437893,600.96796 z M 125.04907,608.54478 L 123.59432,608.81755 L 120.10899,610.84813 L 120.9879,612.30288 L 119.83622,616.09129 L 127.38273,613.48487 L 122.74572,612.90903 L 125.04907,608.54478 z M 116.62365,615.78822 L 115.74474,618.12188 L 115.74474,623.36504 L 116.35089,627.72928 L 118.65424,632.06322 L 120.9879,636.73054 L 124.47324,640.21588 L 124.47324,643.70121 L 127.38273,648.94437 L 129.71639,650.39912 L 129.71639,647.18655 L 126.23106,643.12537 L 126.50382,638.18529 L 131.44391,637.00331 L 138.99042,639.64004 L 137.83874,636.42747 L 134.65648,635.85163 L 131.44391,634.97272 L 132.32282,633.51797 L 129.41332,635.27579 L 125.92798,638.45805 L 123.8974,637.00331 L 123.01849,634.97272 L 120.41206,631.79046 L 119.23008,629.18403 L 117.80564,625.66839 L 117.80564,621.91029 L 116.62365,615.78822 z M 231.42758,618.12188 L 219.51683,628.57789 L 230.85174,622.7892 L 231.12451,627.72928 L 234.91292,632.36629 L 238.09518,636.1547 L 234.33708,628.30512 L 233.73093,625.66839 L 231.42758,618.12188 z M 141.89991,639.0642 L 141.05131,641.94339 C 141.05132,641.94339 141.32578,646.33086 142.77882,645.45903 C 144.23185,644.58721 152.65899,642.8223 152.65899,642.8223 L 152.38623,640.79171 L 145.99139,641.36755 L 141.89991,639.0642 z M 190.72492,648.33822 L 185.78484,653.27831 L 184.05732,656.18781 L 182.2995,659.0973 L 178.81417,662.0068 L 175.90467,664.61323 L 176.78358,665.79521 L 182.87534,661.70373 L 185.51207,658.21839 L 188.1185,652.70247 L 190.72492,648.33822 z M 220.6685,651.55079 L 216.88009,655.3392 L 209.03051,660.27929 L 216.60733,656.76364 L 223.00216,652.12663 L 220.6685,651.55079 z M 197.11976,666.37105 L 199.75649,670.43222 L 203.81766,671.31113 L 205.54518,669.55331 L 201.78707,669.55331 L 197.11976,666.37105 z M 170.69182,675.67538 L 168.05509,679.16071 L 165.14559,681.76714 L 160.50858,682.91882 L 163.41807,683.52496 L 166.90341,686.43446 L 170.38875,688.16197 L 169.81291,686.70722 L 169.23707,684.97971 L 169.81291,682.07021 L 171.84349,679.43348 L 167.20648,682.64605 L 169.81291,678.85764 L 170.69182,675.67538 z"
508
+ id="path4278" />
509
+ <path
510
+ id="path4452"
511
+ d="M 117.50256,491.4375 L 115.74474,491.71027 L 108.19823,496.95342 L 114.28999,496.07451 L 124.47324,496.07451 C 124.47323,496.07451 122.73155,494.04392 120.9879,494.04392 C 119.24425,494.04392 117.50256,491.4375 117.50256,491.4375 z M 178.23833,492.86194 L 176.20774,496.07451 L 172.99517,499.25677 L 170.96458,499.86292 L 174.44992,500.71152 L 177.66249,495.1956 L 178.23833,492.86194 z M 103.83399,501.0146 L 96.287475,507.40943 L 97.439151,508.28834 L 99.469738,505.37884 L 104.7129,506.25775 L 103.83399,501.0146 z M 153.23483,501.0146 L 148.90089,503.04518 L 143.35466,504.49993 L 133.47449,504.49993 L 136.68706,506.83359 L 141.62715,506.25775 C 141.62715,506.25775 144.52761,505.66945 147.14307,505.37884 C 149.75854,505.08823 151.20425,503.62102 151.20424,503.62102 L 153.23483,501.0146 z M 129.41332,502.74211 L 125.35215,504.803 L 122.74572,507.40943 L 119.83622,507.6822 L 116.35089,511.77368 L 111.68357,511.4706 L 109.34991,507.10636 C 109.3499,507.10636 107.31932,502.16798 107.31932,503.62102 C 107.31931,505.07406 109.07714,508.86418 109.07714,508.86418 L 109.95605,511.4706 L 108.19823,514.3801 L 105.28873,516.98653 L 101.8034,515.53178 L 99.772811,514.68317 L 100.07588,519.32019 L 97.742224,520.77493 L 98.318062,523.10859 L 102.37924,522.50245 L 104.7129,520.1991 L 105.28873,518.44128 L 109.65298,513.80426 L 111.10773,513.22843 L 119.83622,511.4706 L 120.9879,509.44002 L 123.32156,508.56111 L 129.41332,502.74211 z M 134.92924,515.53178 L 126.23106,518.16851 L 124.77631,521.35077 L 127.38273,522.80552 L 131.44391,520.1991 L 135.23231,517.2896 L 134.92924,515.53178 z M 64.313308,521.07801 L 62.585794,526.59393 C 62.585794,526.59393 61.427019,529.79577 60.555207,530.95818 C 59.683386,532.12061 56.463726,534.14045 56.463726,534.14044 L 55.008977,538.50469 L 54.433139,546.62703 L 55.615122,545.17229 C 55.615122,545.17229 56.173116,541.12186 56.463726,539.95944 C 56.754327,538.797 57.918475,535.59521 57.918475,535.59519 L 61.131045,531.80678 L 62.585794,527.74561 L 64.313308,525.41195 L 64.313308,521.07801 z M 218.63791,527.16977 L 215.72842,527.47284 L 216.88009,530.35203 L 219.51683,530.6551 L 218.63791,527.16977 z M 171.26766,527.74561 L 170.69182,531.80678 L 174.75299,534.44351 L 177.93525,536.4741 L 174.75299,531.80678 L 171.26766,527.74561 z M 130.565,529.20036 L 136.11123,536.17103 L 137.2629,540.83835 L 137.56597,535.29212 L 134.3534,531.23094 L 130.565,529.20036 z M 194.51333,531.53401 L 196.84699,534.71628 L 201.484,535.59519 L 199.15034,532.68569 L 194.51333,531.53401 z M 173.87408,537.92885 L 170.96458,538.20161 L 172.7224,542.56586 L 174.17715,545.47536 L 175.90467,541.41418 L 173.87408,537.92885 z M 200.02925,537.92885 L 200.02925,541.11111 L 203.81766,540.2322 L 203.81766,538.77745 L 200.02925,537.92885 z M 206.42409,541.68695 L 203.51459,542.29309 L 206.42409,545.77843 L 211.36417,549.26377 L 213.12199,548.96069 L 206.42409,541.68695 z M 125.35215,552.44603 L 124.47324,556.5072 L 132.89866,560.29561 L 140.1724,562.62927 L 144.23357,566.99352 L 151.78008,564.93262 L 147.44614,563.78095 L 140.44516,559.99254 L 125.35215,552.44603 z M 215.42534,570.47885 L 213.69783,574.81279 L 214.57674,580.93486 L 213.12199,586.45078 L 217.18317,587.32969 L 216.60733,580.63179 L 215.42534,570.47885 z M 92.80214,591.0878 L 89.892642,595.17928 L 94.256888,598.08877 L 96.287475,596.02788 L 95.135799,591.39087 L 92.80214,591.0878 z M 217.18317,591.69394 L 215.15258,592.54254 L 211.94001,595.75511 L 211.0611,600.96796 L 213.39476,600.96796 L 217.18317,591.69394 z M 196.24084,592.84562 L 191.30076,597.48263 L 192.75551,600.96796 L 197.99867,606.78696 L 198.5745,614.0607 L 202.63568,611.72704 L 201.78707,604.48361 L 198.5745,600.96796 L 196.24084,597.20986 L 196.24084,592.84562 z M 247.09644,594.60344 L 242.7625,596.90679 L 243.91418,600.96796 L 247.09644,594.60344 z M 88.437893,600.96796 L 86.104233,604.18053 L 82.92197,608.54478 L 79.7094,611.45428 L 77.406048,614.36378 L 81.164149,616.39436 L 82.618898,618.12188 L 85.831468,615.51545 L 84.649485,611.45428 L 84.376719,607.66587 L 88.437893,600.96796 z M 125.04907,608.54478 L 123.59432,608.81755 L 120.10899,610.84813 L 120.9879,612.30288 L 119.83622,616.09129 L 127.38273,613.48487 L 122.74572,612.90903 L 125.04907,608.54478 z M 116.62365,615.78822 L 115.74474,618.12188 L 115.74474,623.36504 L 116.35089,627.72928 L 118.65424,632.06322 L 120.9879,636.73054 L 124.47324,640.21588 L 124.47324,643.70121 L 127.38273,648.94437 L 129.71639,650.39912 L 129.71639,647.18655 L 126.23106,643.12537 L 126.50382,638.18529 L 131.44391,637.00331 L 138.99042,639.64004 L 137.83874,636.42747 L 134.65648,635.85163 L 131.44391,634.97272 L 132.32282,633.51797 L 129.41332,635.27579 L 125.92798,638.45805 L 123.8974,637.00331 L 123.01849,634.97272 L 120.41206,631.79046 L 119.23008,629.18403 L 117.80564,625.66839 L 117.80564,621.91029 L 116.62365,615.78822 z M 231.42758,618.12188 L 219.51683,628.57789 L 230.85174,622.7892 L 231.12451,627.72928 L 234.91292,632.36629 L 238.09518,636.1547 L 234.33708,628.30512 L 233.73093,625.66839 L 231.42758,618.12188 z M 141.89991,639.0642 L 141.05131,641.94339 C 141.05132,641.94339 141.32578,646.33086 142.77882,645.45903 C 144.23185,644.58721 152.65899,642.8223 152.65899,642.8223 L 152.38623,640.79171 L 145.99139,641.36755 L 141.89991,639.0642 z M 190.72492,648.33822 L 185.78484,653.27831 L 184.05732,656.18781 L 182.2995,659.0973 L 178.81417,662.0068 L 175.90467,664.61323 L 176.78358,665.79521 L 182.87534,661.70373 L 185.51207,658.21839 L 188.1185,652.70247 L 190.72492,648.33822 z M 220.6685,651.55079 L 216.88009,655.3392 L 209.03051,660.27929 L 216.60733,656.76364 L 223.00216,652.12663 L 220.6685,651.55079 z M 197.11976,666.37105 L 199.75649,670.43222 L 203.81766,671.31113 L 205.54518,669.55331 L 201.78707,669.55331 L 197.11976,666.37105 z M 170.69182,675.67538 L 168.05509,679.16071 L 165.14559,681.76714 L 160.50858,682.91882 L 163.41807,683.52496 L 166.90341,686.43446 L 170.38875,688.16197 L 169.81291,686.70722 L 169.23707,684.97971 L 169.81291,682.07021 L 171.84349,679.43348 L 167.20648,682.64605 L 169.81291,678.85764 L 170.69182,675.67538 z"
512
+ style="opacity:0.45199998;fill:url(#radialGradient5171);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4448)"
513
+ transform="matrix(0.258819,0.9659258,-0.9659258,0.258819,681.41495,291.56221)" />
514
+ <path
515
+ id="path4454"
516
+ d="M 178.15974,492.875 L 177.72224,493.5625 L 177.56599,494.1875 L 174.34724,499.71875 L 172.69099,499.3125 L 170.87849,499.875 L 174.34724,500.71875 L 177.56599,495.1875 L 178.15974,492.875 z M 114.19099,495.0625 L 109.94099,495.6875 L 108.09724,496.96875 L 114.19099,496.0625 L 124.37849,496.0625 C 124.37848,496.06249 123.93812,495.57015 123.28474,495.0625 L 114.19099,495.0625 z M 153.12849,501 L 151.90974,501.5625 L 151.09724,502.625 C 151.09725,502.625 149.65021,504.08438 147.03474,504.375 C 144.41928,504.66561 141.53475,505.25 141.53474,505.25 L 136.59724,505.84375 L 134.75349,504.5 L 133.37849,504.5 L 136.59724,506.84375 L 141.53474,506.25 C 141.53475,506.25 144.41928,505.66561 147.03474,505.375 C 149.65021,505.08438 151.09725,503.625 151.09724,503.625 L 153.12849,501 z M 129.31599,502.75 L 127.06599,503.875 L 123.22224,507.5625 L 120.90974,508.4375 L 119.75349,510.46875 L 116.87849,511.03125 L 116.25349,511.78125 L 113.97224,511.625 L 111.00349,512.21875 L 109.56599,512.8125 L 108.12849,514.34375 L 108.09724,514.375 L 108.03474,514.4375 L 105.19099,517.4375 L 104.62849,519.1875 L 102.28474,521.5 L 98.222237,522.09375 L 97.878487,520.65625 L 97.659737,520.78125 L 98.222237,523.09375 L 102.28474,522.5 L 104.62849,520.1875 L 105.19099,518.4375 L 109.56599,513.8125 L 111.00349,513.21875 L 119.75349,511.46875 L 120.90974,509.4375 L 123.22224,508.5625 L 129.31599,502.75 z M 107.31599,503.34375 C 107.26047,503.34778 107.22224,503.44337 107.22224,503.625 C 107.22224,505.07803 108.97224,508.875 108.97224,508.875 L 109.65974,510.84375 L 109.87849,510.46875 L 108.97224,507.875 C 108.97224,507.875 107.71872,505.08635 107.34724,503.375 C 107.33486,503.37018 107.32667,503.34298 107.31599,503.34375 z M 99.69099,504.4375 L 98.815987,505.1875 L 97.347237,507.28125 L 96.815987,506.875 L 96.190987,507.40625 L 97.347237,508.28125 L 99.37849,505.375 L 104.62849,506.25 L 104.47224,505.21875 L 99.69099,504.4375 z M 99.69099,514.6875 L 99.90974,518.34375 L 99.97224,518.3125 L 99.75349,514.71875 L 99.69099,514.6875 z M 134.97224,516.40625 L 131.34724,519.1875 L 127.28474,521.8125 L 125.03474,520.5625 L 124.69099,521.34375 L 127.28474,522.8125 L 131.34724,520.1875 L 135.12849,517.28125 L 134.97224,516.40625 z M 64.222237,524.40625 L 62.503487,526.75 L 61.034737,530.8125 L 57.815987,534.59375 C 57.815987,534.59377 56.669097,537.80634 56.378487,538.96875 C 56.087877,540.13117 55.534737,544.18749 55.534737,544.1875 L 54.409737,545.53125 L 54.347237,546.625 L 55.534737,545.1875 C 55.534737,545.18749 56.087877,541.13117 56.378487,539.96875 C 56.669097,538.80634 57.815987,535.59377 57.815987,535.59375 L 61.034737,531.8125 L 62.503487,527.75 L 64.222237,525.40625 L 64.222237,524.40625 z M 216.00349,527.4375 L 215.62849,527.46875 L 216.78474,530.34375 L 219.40974,530.65625 L 219.15974,529.625 L 216.78474,529.34375 L 216.00349,527.4375 z M 130.47224,529.1875 L 136.00349,536.15625 L 137.15974,540.84375 L 137.47224,535.28125 L 137.40974,535.21875 L 137.15974,539.84375 L 136.00349,535.15625 L 131.84724,529.9375 L 130.47224,529.1875 z M 170.72224,530.90625 L 170.59724,531.8125 L 174.65974,534.4375 L 177.84724,536.46875 L 176.62849,534.6875 L 174.65974,533.4375 L 170.72224,530.90625 z M 194.40974,531.53125 L 196.75349,534.71875 L 201.37849,535.59375 L 200.44099,534.40625 L 196.75349,533.71875 L 195.31599,531.75 L 194.40974,531.53125 z M 171.25349,538.15625 L 170.87849,538.1875 L 172.62849,542.5625 L 174.09724,545.46875 L 175.81599,541.40625 L 175.56599,541 L 174.09724,544.46875 L 172.62849,541.5625 L 171.25349,538.15625 z M 203.72224,539.21875 L 199.94099,540.125 L 199.94099,541.125 L 203.72224,540.21875 L 203.72224,539.21875 z M 204.12849,542.125 L 203.40974,542.28125 L 206.31599,545.78125 L 211.28474,549.25 L 213.03474,548.96875 L 212.22224,548.09375 L 211.28474,548.25 L 206.31599,544.78125 L 204.12849,542.125 z M 124.56599,555.59375 L 124.37849,556.5 L 132.81599,560.28125 L 140.06599,562.625 L 144.12849,567 L 151.69099,564.9375 L 149.84724,564.4375 L 144.12849,566 L 140.06599,561.625 L 132.81599,559.28125 L 124.56599,555.59375 z M 213.69099,574.5625 L 213.59724,574.8125 L 214.37849,580.28125 L 214.47224,579.9375 L 213.69099,574.5625 z M 213.28474,585.5 L 213.03474,586.4375 L 217.09724,587.34375 L 217.00349,586.3125 L 213.28474,585.5 z M 217.09724,591.6875 L 216.59724,591.90625 L 213.31599,599.96875 L 211.12849,599.96875 L 210.97224,600.96875 L 213.31599,600.96875 L 217.09724,591.6875 z M 90.284737,594.5 L 89.784737,595.1875 L 94.159737,598.09375 L 96.190987,596.03125 L 96.003487,595.21875 L 94.159737,597.09375 L 90.284737,594.5 z M 247.00349,594.59375 L 246.31599,594.96875 L 243.81599,599.96875 L 242.90974,596.78125 L 242.65974,596.90625 L 243.81599,600.96875 L 247.00349,594.59375 z M 191.50349,597.1875 L 191.22224,597.46875 L 192.65974,600.96875 L 197.90974,606.78125 L 198.47224,614.0625 L 202.53474,611.71875 L 202.44099,610.78125 L 198.47224,613.0625 L 197.90974,605.78125 L 192.65974,599.96875 L 191.50349,597.1875 z M 88.347237,600.96875 L 86.003487,604.1875 L 84.722237,605.90625 L 84.284737,606.65625 L 84.347237,607.5625 L 88.347237,600.96875 z M 124.94099,608.53125 L 124.34724,608.65625 L 122.65974,611.90625 L 123.15974,611.96875 L 124.94099,608.53125 z M 120.47224,610.59375 L 120.00349,610.84375 L 120.69099,611.96875 L 120.90974,611.3125 L 120.47224,610.59375 z M 125.15974,613.21875 L 120.09724,614.96875 L 119.75349,616.09375 L 127.28474,613.5 L 125.15974,613.21875 z M 77.878487,613.6875 L 77.315987,614.375 L 81.065987,616.40625 L 82.534737,618.125 L 85.753487,615.5 L 85.503487,614.6875 L 82.534737,617.125 L 81.065987,615.40625 L 77.878487,613.6875 z M 230.75349,621.78125 L 222.15974,626.15625 L 219.40974,628.5625 L 230.75349,622.78125 L 231.03474,627.71875 L 234.81599,632.375 L 238.00349,636.15625 L 236.90974,633.84375 L 234.81599,631.375 L 231.03474,626.71875 L 230.75349,621.78125 z M 115.65974,622.375 L 115.65974,623.375 L 116.25349,627.71875 L 118.56599,632.0625 L 120.90974,636.71875 L 124.37849,640.21875 L 124.37849,639.21875 L 120.90974,635.71875 L 118.56599,631.0625 L 116.25349,626.71875 L 115.65974,622.375 z M 132.22224,633.53125 L 131.44099,634 L 131.87849,634.125 L 132.22224,633.53125 z M 131.34724,636 L 127.53474,636.90625 L 126.37849,638 L 126.12849,642.125 L 126.19099,642.1875 L 126.40974,638.1875 L 131.34724,637 L 138.90974,639.625 L 138.50349,638.46875 L 131.34724,636 z M 141.03474,641.6875 L 140.97224,641.9375 C 140.97226,641.93747 141.23795,646.34058 142.69099,645.46875 C 144.14403,644.59691 152.56599,642.8125 152.56599,642.8125 L 152.44099,641.84375 C 152.20724,641.89282 144.12331,643.60934 142.69099,644.46875 C 141.61816,645.11245 141.1865,642.89511 141.03474,641.6875 z M 124.37849,642.6875 L 124.37849,643.6875 L 127.28474,648.9375 L 129.62849,650.40625 L 129.62849,649.40625 L 127.28474,647.9375 L 124.37849,642.6875 z M 190.62849,648.34375 L 189.15974,649.8125 L 188.03474,651.6875 L 185.40974,657.21875 L 182.78474,660.71875 L 176.69099,664.78125 L 176.25349,664.21875 L 175.81599,664.625 L 176.69099,665.78125 L 182.78474,661.71875 L 185.40974,658.21875 L 188.03474,652.6875 L 190.62849,648.34375 z M 221.87849,651.875 L 216.50349,655.75 L 215.09724,656.40625 L 208.94099,660.28125 L 216.50349,656.75 L 222.90974,652.125 L 221.87849,651.875 z M 197.03474,666.375 L 199.65974,670.4375 L 203.72224,671.3125 L 205.44099,669.5625 L 204.47224,669.5625 L 203.72224,670.3125 L 199.65974,669.4375 L 198.19099,667.15625 L 197.03474,666.375 z M 170.59724,675.6875 L 170.15974,676.25 L 169.72224,677.84375 L 167.12849,681.65625 L 168.40974,680.75 L 169.72224,678.84375 L 170.59724,675.6875 z M 171.75349,679.4375 L 170.06599,680.59375 L 169.72224,681.0625 L 169.12849,683.96875 L 169.25349,684.34375 L 169.72224,682.0625 L 171.75349,679.4375 z M 162.59724,682.375 L 160.40974,682.90625 L 163.31599,683.53125 L 166.81599,686.4375 L 170.28474,688.15625 L 169.78474,686.90625 L 166.81599,685.4375 L 163.31599,682.53125 L 162.59724,682.375 z"
517
+ style="opacity:0.45199998;fill:#e7e18c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4444)"
518
+ transform="matrix(0.258819,0.9659258,-0.9659258,0.258819,681.41495,291.56221)" />
519
+ <path
520
+ style="fill:#6b331c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
521
+ d="M 149.51853,472.84375 L 139.64353,474.9375 L 138.14353,473.75 L 136.92478,480.625 L 136.04978,483.34375 L 137.83103,488.71875 L 143.51853,492.90625 L 156.11228,494.71875 L 161.20603,490.21875 L 166.29978,488.4375 L 157.01853,478.53125 L 149.51853,472.84375 z M 83.299782,498.625 L 80.018532,499.21875 L 73.706032,503.40625 L 73.424782,510.59375 L 68.924782,517.5 L 74.612282,516 L 82.706032,515.09375 L 84.206032,510.3125 L 93.799782,506.40625 L 91.393532,503.40625 L 83.299782,498.625 z M 202.54978,505.8125 L 198.36228,506.71875 L 190.58103,507.59375 L 185.76853,511.5 L 186.98728,517.78125 L 194.45603,524.375 L 204.04978,527.375 L 213.04978,529.1875 L 215.45603,526.1875 L 212.14353,521.375 L 207.04978,517.1875 L 206.45603,511.1875 L 207.95603,508.8125 L 202.54978,505.8125 z M 100.67478,524.375 L 92.299782,530.96875 L 87.487282,537.5625 L 83.893532,545.96875 L 86.299782,551.34375 L 92.299782,549.5625 L 99.487282,549.5625 L 104.86228,548.96875 L 106.67478,541.75 L 108.48728,533.96875 L 106.08103,528.59375 L 100.67478,524.375 z M 181.58103,561.25 L 179.17478,563.34375 L 173.48728,565.75 L 168.39353,569.9375 L 167.51853,576.21875 L 171.39353,580.40625 L 175.89353,582.8125 L 182.17478,586.40625 L 185.76853,581.90625 L 192.08103,576.53125 L 189.67478,568.4375 L 187.89353,565.75 L 181.58103,561.25 z M 197.76853,565.75 L 194.45603,571.125 L 195.36228,577.40625 L 197.76853,584 L 202.86228,589.09375 L 209.45603,584.90625 L 209.76853,579.21875 L 209.14353,571.125 L 206.76853,568.71875 L 199.26853,566.03125 L 197.76853,565.75 z M 113.26853,572.3125 L 105.17478,576.53125 L 100.08103,577.125 L 94.081032,580.125 L 96.174782,582.5 L 96.487282,585.8125 L 100.39353,588.8125 L 104.26853,590.3125 L 112.36228,591.5 L 115.04978,589.71875 L 120.45603,586.125 L 122.26853,581.03125 L 122.86228,574.125 L 121.64353,572.9375 L 117.76853,572.625 L 113.26853,572.3125 z M 175.29978,622.0625 L 171.70603,622.65625 L 165.39353,624.75 L 169.29978,628.65625 L 173.20603,633.15625 L 177.98728,634.9375 L 181.58103,632.25 L 178.29978,628.375 L 175.29978,622.0625 z M 221.14353,626.875 L 217.23728,634.34375 L 212.73728,639.75 L 207.64353,643.65625 L 207.04978,646.9375 L 212.45603,648.4375 L 216.95603,653.84375 L 223.54978,654.4375 L 227.42478,650.84375 L 227.14353,646.03125 L 225.64353,636.15625 L 222.04978,628.0625 L 221.14353,626.875 z M 107.86228,642.4375 L 102.48728,647.25 L 106.67478,651.71875 L 111.17478,650.25 L 111.17478,645.15625 L 107.86228,642.4375 z M 122.54978,672.40625 L 124.04978,676.59375 L 120.76853,679.3125 L 116.86228,681.40625 L 113.86228,685.90625 L 120.76853,689.78125 L 127.36228,689.78125 L 127.64353,688 L 131.54978,688.59375 L 138.14353,684.6875 L 138.73728,679.3125 L 139.64353,673.90625 L 137.23728,673.59375 L 129.45603,672.40625 L 122.54978,672.40625 z"
522
+ id="path4818" />
523
+ <path
524
+ style="fill:#33180d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4860)"
525
+ d="M 136.75062,482.34375 L 136.43812,483.34375 L 138.21937,488.71875 L 143.90687,492.90625 L 156.50062,494.71875 L 161.59437,490.21875 L 166.68812,488.4375 L 165.28187,486.9375 L 161.59437,488.21875 L 156.50062,492.71875 L 143.90687,490.90625 L 138.21937,486.71875 L 136.75062,482.34375 z M 92.969371,504.90625 L 84.594371,508.3125 L 83.094371,513.09375 L 75.000621,514 L 70.875621,515.09375 L 69.313121,517.5 L 75.000621,516 L 83.094371,515.09375 L 84.594371,510.3125 L 94.188121,506.40625 L 92.969371,504.90625 z M 207.40687,508.28125 L 206.84437,509.1875 L 207.00062,510.90625 L 208.34437,508.8125 L 207.40687,508.28125 z M 186.50062,511.21875 L 186.15687,511.5 L 187.37562,517.78125 L 194.84437,524.375 L 204.43812,527.375 L 213.43812,529.1875 L 215.84437,526.1875 L 215.09437,525.125 L 213.43812,527.1875 L 204.43812,525.375 L 194.84437,522.375 L 187.37562,515.78125 L 186.50062,511.21875 z M 108.56312,533.28125 L 107.06312,539.75 L 105.25062,546.96875 L 99.87562,547.5625 L 92.688121,547.5625 L 86.688121,549.34375 L 84.719371,544.9375 L 84.281871,545.96875 L 86.688121,551.34375 L 92.688121,549.5625 L 99.87562,549.5625 L 105.25062,548.96875 L 107.06312,541.75 L 108.87562,533.96875 L 108.56312,533.28125 z M 195.06312,570.75 L 194.84437,571.125 L 195.75062,577.40625 L 198.15687,584 L 203.25062,589.09375 L 209.84437,584.90625 L 210.15687,579.21875 L 210.09437,578.375 L 209.84437,582.90625 L 203.25062,587.09375 L 198.15687,582 L 195.75062,575.40625 L 195.06312,570.75 z M 123.09437,573.96875 L 122.65687,579.03125 L 120.84437,584.125 L 115.43812,587.71875 L 112.75062,589.5 L 104.65687,588.3125 L 100.78187,586.8125 L 96.875621,583.8125 L 96.563121,580.5 L 95.688121,579.5 L 94.469371,580.125 L 96.563121,582.5 L 96.875621,585.8125 L 100.78187,588.8125 L 104.65687,590.3125 L 112.75062,591.5 L 115.43812,589.71875 L 120.84437,586.125 L 122.65687,581.03125 L 123.25062,574.125 L 123.09437,573.96875 z M 168.15687,574.46875 L 167.90687,576.21875 L 171.78187,580.40625 L 176.28187,582.8125 L 182.56312,586.40625 L 186.15687,581.90625 L 192.46937,576.53125 L 192.00062,574.9375 L 186.15687,579.90625 L 182.56312,584.40625 L 176.28187,580.8125 L 171.78187,578.40625 L 168.15687,574.46875 z M 167.28187,624.25 L 165.78187,624.75 L 169.68812,628.65625 L 173.59437,633.15625 L 178.37562,634.9375 L 181.96937,632.25 L 180.93812,631.03125 L 178.37562,632.9375 L 173.59437,631.15625 L 169.68812,626.65625 L 167.28187,624.25 z M 207.78187,645.03125 L 207.43812,646.9375 L 212.84437,648.4375 L 217.34437,653.84375 L 223.93812,654.4375 L 227.81312,650.84375 L 227.68812,648.9375 L 223.93812,652.4375 L 217.34437,651.84375 L 212.84437,646.4375 L 207.78187,645.03125 z M 103.90687,646.34375 L 102.87562,647.25 L 107.06312,651.71875 L 111.56312,650.25 L 111.56312,648.25 L 107.06312,649.71875 L 103.90687,646.34375 z M 122.93812,672.40625 L 123.87562,675.0625 L 124.43812,674.59375 L 123.65687,672.40625 L 122.93812,672.40625 z M 139.71937,673.875 L 139.12562,677.3125 L 138.53187,682.6875 L 131.93812,686.59375 L 128.03187,686 L 127.75062,687.78125 L 121.15687,687.78125 L 115.21937,684.4375 L 114.25062,685.90625 L 121.15687,689.78125 L 127.75062,689.78125 L 128.03187,688 L 131.93812,688.59375 L 138.53187,684.6875 L 139.12562,679.3125 L 140.03187,673.90625 L 139.71937,673.875 z"
526
+ id="path4847" />
527
+ <g
528
+ id="g5044"
529
+ transform="matrix(0.258819,0.9659258,-0.9659258,0.258819,597.64947,15.245921)">
530
+ <path
531
+ id="path5012"
532
+ d="M 326.51609,551.64238 L 326.00317,561.40477 C 325.99178,561.59517 325.89737,561.77095 325.74493,561.88557 L 325.09212,562.39005 L 328.3111,563.89962 C 328.48955,563.92367 328.50128,563.92862 328.34128,563.90771 C 333.12831,564.53463 338.29163,560.33846 340.03271,553.84064 C 341.09621,549.87158 340.58448,546.02142 339.03695,543.18872 L 333.74339,546.04083 L 326.51609,551.64238 z"
533
+ style="fill:url(#linearGradient5173);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
534
+ <path
535
+ id="path5010"
536
+ d="M 334.28828,622.24728 L 334.01905,625.18391 L 336.30182,631.87782 L 337.10064,632.15657 C 338.98312,631.18177 340.65728,629.14598 341.37297,626.47499 C 342.37101,622.75027 341.13459,619.23866 338.82086,617.76776 L 334.28828,622.24728 z"
537
+ style="fill:url(#linearGradient5175);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
538
+ <path
539
+ id="path5008"
540
+ d="M 372.11122,508.86051 L 371.89903,512.91241 C 371.90492,512.93496 371.9096,512.95781 371.91304,512.98087 L 370.76263,520.53425 L 373.04122,525.67413 L 375.74446,525.84847 C 378.54829,524.53937 380.90757,521.79278 381.86908,518.20442 C 383.02095,513.9056 381.79194,509.63578 379.17486,507.12974 L 377.56479,506.86009 C 377.42392,506.83704 377.29455,506.76828 377.19665,506.66439 L 375.81955,505.16306 C 375.78086,505.14826 375.72369,505.1395 375.69881,505.13071 L 372.11122,508.86051 z"
541
+ style="fill:url(#linearGradient5177);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
542
+ <path
543
+ id="path5006"
544
+ d="M 363.81903,612.01033 L 367.7354,621.18017 L 367.78768,621.22653 L 372.83681,627.497 L 372.85891,627.53527 L 373.10631,627.69862 C 375.30524,626.16191 377.16431,623.66208 378.0186,620.47384 C 379.55837,614.72735 377.35629,609.22536 373.29347,607.56089 L 368.76337,608.28819 L 363.81903,612.01033 z"
545
+ style="fill:url(#linearGradient5179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
546
+ <path
547
+ id="path5004"
548
+ d="M 420.42399,543.35257 L 421.58863,545.76754 C 421.61366,545.83327 421.62785,545.90263 421.63066,545.97291 L 422.47696,551.99075 L 423.11936,553.45698 C 427.60901,553.85032 431.49992,551.76177 432.41544,548.34505 C 433.40078,544.66769 430.61582,540.53382 425.943,538.81384 L 425.90473,538.83594 L 420.42399,543.35257 z"
549
+ style="fill:url(#linearGradient5181);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
550
+ <path
551
+ id="path5002"
552
+ d="M 428.91234,528.57731 L 432.7623,532.68238 L 438.56494,533.36368 C 440.4042,532.26598 441.82593,530.61129 442.39142,528.50085 C 443.16046,525.63074 442.22416,522.69515 440.1605,520.52673 L 436.40512,519.81165 L 433.77235,521.30616 L 429.33609,527.72028 L 429.30591,527.71219 L 428.91234,528.57731 z"
553
+ style="fill:url(#linearGradient5183);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
554
+ <path
555
+ id="path5000"
556
+ d="M 413.26403,612.09166 L 415.20219,620.79614 C 415.2291,620.88198 415.23789,620.97247 415.22804,621.06189 L 414.50963,625.91636 C 418.39848,625.59771 422.19324,622.35474 423.50574,617.45646 C 425.10056,611.50452 422.42638,605.74685 417.72788,604.4879 C 417.28334,604.36879 416.82293,604.28531 416.36738,604.25276 L 415.9081,604.51793 L 414.69013,607.9768 L 413.26403,612.09166 z"
557
+ style="fill:url(#linearGradient5185);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
558
+ <path
559
+ id="path4998"
560
+ d="M 477.30467,565.54946 L 477.00309,568.60683 L 477.00901,568.70548 L 477.20974,572.54449 C 479.4136,573.11722 481.64797,571.7978 482.23971,569.5894 C 482.73502,567.74088 481.86683,565.90937 480.30067,564.99344 L 477.30467,565.54946 z"
561
+ style="fill:url(#linearGradient5187);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
562
+ <path
563
+ id="path4996"
564
+ d="M 494.42271,522.19 L 499.8719,527.20887 C 499.8991,527.23487 499.92399,527.26319 499.94628,527.2935 L 501.63433,529.68696 C 503.69619,528.95398 505.32076,527.52008 505.85856,525.51304 C 506.2815,523.93461 505.95702,522.32416 505.12533,520.8843 L 503.3018,520.68686 L 503.27161,520.67877 L 494.85772,522.01539 L 494.42271,522.19 z"
565
+ style="fill:url(#linearGradient5189);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
566
+ <path
567
+ id="path4994"
568
+ d="M 479.78737,635.61056 L 480.9822,638.03361 C 482.13981,637.65152 483.1703,636.74975 483.53583,635.38556 C 483.66768,634.8935 483.6083,634.391 483.54566,633.89999 L 482.51936,633.62499 L 479.78737,635.61056 z"
569
+ style="fill:url(#linearGradient5191);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
570
+ <path
571
+ id="path4894"
572
+ d="M 513.08535,626.28598 C 513.43641,626.99401 513.91379,627.58512 514.45003,628.07515 L 516.0666,627.95832 C 516.34191,627.94209 516.59749,628.10135 516.70424,628.35564 L 517.15803,629.31839 C 520.11203,629.62953 523.26423,627.17638 524.32554,623.21553 C 525.04736,620.52165 524.55889,617.91911 523.33756,616.1568 L 522.31343,615.75298 C 522.3033,615.75052 522.29324,615.74783 522.28324,615.74489 L 518.39427,613.95874 C 518.18565,613.99818 517.97934,614.07589 517.76197,614.14519 L 517.24116,615.36444 L 514.10445,622.48265 L 514.08018,622.5732 L 513.08535,626.28598 z"
573
+ style="fill:url(#linearGradient5193);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
574
+ </g>
575
+ </g>
576
+ <path
577
+ id="path5106"
578
+ d="M 67.12105,560.94021 L 63.52528,571.72752 L 63.52528,580.11765 L 65.92246,588.50778 L 67.12105,592.10355 L 68.319641,582.51483 L 68.319641,578.91906 L 67.12105,572.92611 L 67.12105,560.94021 z"
579
+ style="fill:url(#linearGradient5195);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
580
+ </g>
581
+ </svg>
@@ -1,49 +1,48 @@
1
- document.addEventListener("DOMContentLoaded", () => {
2
- const { window_type, form_target, width, height } = window.ENV;
1
+ const getRelaunchElement = (id) => document.getElementById(`relaunch-${id}`);
2
+ const hide = (el) => (el.style.display = "none");
3
+ const show = (el) => (el.style.display = "flex"); // normally this is 'block', but the containers need to be 'flex'
4
+ const COOKIE_NAME = "can_set_cookies";
3
5
 
4
- let newWindow;
5
- const openNewWindow = () => {
6
- switch (window_type) {
7
- case "popup": {
8
- newWindow = window.open(
9
- "",
10
- form_target,
11
- "toolbar=no,menubar=no,location=no,status=no,resizable,scrollbars," +
12
- `width=${width},height=${height}`
13
- );
14
- break;
15
- }
16
- case "new_window": {
17
- newWindow = window.open("", form_target);
18
- break;
19
- }
6
+ const openNewWindow = ({ window_type, form_target, width, height }) => {
7
+ switch (window_type) {
8
+ case "popup": {
9
+ return window.open(
10
+ "",
11
+ form_target,
12
+ "toolbar=no,menubar=no,location=no,status=no,resizable,scrollbars," +
13
+ `width=${width},height=${height}`
14
+ );
15
+ }
16
+ case "new_window": {
17
+ return window.open("", form_target);
20
18
  }
21
- };
19
+ }
20
+ };
22
21
 
23
- const getRelaunchElement = (id) => document.getElementById(`relaunch-${id}`);
24
- const hide = (el) => (el.style.display = "none");
25
- const show = (el) => (el.style.display = "flex"); // normally this is 'block', but the containers need to be 'flex'
22
+ const relaunchOnLogin = () => {
23
+ const { window_type, form_target, width, height } = window.ENV;
26
24
 
27
25
  const successMessageEl = getRelaunchElement("success");
28
26
  const retryMessageEl = getRelaunchElement("retry");
29
27
  const relaunchFormEl = getRelaunchElement("form");
30
28
  const retryButtonEl = getRelaunchElement("request");
31
29
 
32
- // set a test cookie
33
- const testCookie = "canSetCookies=true";
34
- document.cookie = testCookie;
30
+ // set a test cookie, both with and without same-site none
31
+ // this will work for local development and deployed environments
32
+ document.cookie = `${COOKIE_NAME}=true; path=/;`;
33
+ document.cookie = `${COOKIE_NAME}=true; path=/; samesite=none; secure`;
35
34
  if (
36
- document.cookie.split(";").some((cookie) => cookie.includes(testCookie))
35
+ document.cookie.split(";").some((cookie) => cookie.includes(COOKIE_NAME))
37
36
  ) {
38
- // setting cookies works, continue login flow inline
39
- // todo: remove test cookie
37
+ // setting cookies works, remove test cookie and continue login flow inline
38
+ document.cookie = `${COOKIE_NAME}=; path=/; expires=Thu, 01 Jan 1970 00:00:01 GMT`;
40
39
  document.getElementById("redirect-form").submit();
41
40
  return;
42
41
  }
43
42
 
44
43
  // open in new tab and restart login flow
45
44
  show(successMessageEl);
46
- openNewWindow();
45
+ const newWindow = openNewWindow({ window_type, form_target, width, height });
47
46
 
48
47
  if (newWindow) {
49
48
  // tool opened successfully, POST login form data to opened window
@@ -57,10 +56,22 @@ document.addEventListener("DOMContentLoaded", () => {
57
56
 
58
57
  retryButtonEl.addEventListener("click", () => {
59
58
  // open tool and POST login data again
60
- openNewWindow();
59
+ openNewWindow({ window_type, form_target, width, height });
61
60
  relaunchFormEl.submit();
62
61
 
63
62
  show(successMessageEl);
64
63
  hide(retryMessageEl);
65
64
  });
66
- });
65
+ };
66
+
67
+ // run on page load
68
+ document.addEventListener("DOMContentLoaded", relaunchOnLogin);
69
+
70
+ // exported for testing only
71
+ module.exports = {
72
+ COOKIE_NAME,
73
+ openNewWindow,
74
+ hide,
75
+ show,
76
+ relaunchOnLogin,
77
+ };
@@ -4,7 +4,7 @@
4
4
  height: 100%;
5
5
  font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans",
6
6
  "Helvetica Neue", Arial, sans-serif;
7
- font-size: 1.1em;
7
+ font-size: 1.1rem;
8
8
  padding: 0 24px;
9
9
  }
10
10
 
@@ -2,7 +2,7 @@ module CanvasLtiThirdPartyCookies::RelaunchOnLogin
2
2
  extend ActiveSupport::Concern
3
3
 
4
4
  # this should replace your previous login render call, at the end of your login action.
5
- #
5
+ #
6
6
  # `redirect_url` (required): the authorization redirect URL to continue the login flow
7
7
  #
8
8
  # `redirect_data` (required): all form data required for the authorization redirect, which
@@ -25,7 +25,7 @@ module CanvasLtiThirdPartyCookies::RelaunchOnLogin
25
25
  # ...
26
26
  # def login
27
27
  # state, nonce = create_and_cache_state # handled elsewhere
28
- # redirect_url = 'http://canvas.instructure.com/api/lti/authorize_redirect'
28
+ # redirect_url = 'http://canvas.instructure.com/api/lti/authorize_redirect'
29
29
  # redirect_data = {
30
30
  # scope: 'openid',
31
31
  # response_type: 'id_token',
@@ -44,12 +44,8 @@ module CanvasLtiThirdPartyCookies::RelaunchOnLogin
44
44
  def relaunch_on_login(redirect_url, redirect_data, window_type: :new_window, width: 800, height: 600)
45
45
  raise ArgumentError.new("window_type must be either :new_window or :popup") unless [:new_window, :popup].include? window_type
46
46
 
47
- window_type_text = {
48
- new_window: 'new tab',
49
- popup: 'popup window'
50
- }
47
+ I18n.locale = calculate_locale
51
48
  form_target = 'login_relaunch'
52
-
53
49
  render(
54
50
  'canvas_lti_third_party_cookies/relaunch_on_login',
55
51
  locals: {
@@ -58,7 +54,7 @@ module CanvasLtiThirdPartyCookies::RelaunchOnLogin
58
54
  relaunch_url: request.url,
59
55
  relaunch_data: params.permit(:canvas_region, :client_id, :iss, :login_hint, :lti_message_hint, :target_link_uri),
60
56
  form_target: form_target,
61
- window_type_text: window_type_text[window_type],
57
+ window_type: window_type,
62
58
  js_env: {
63
59
  form_target: form_target,
64
60
  window_type: window_type,
@@ -68,4 +64,21 @@ module CanvasLtiThirdPartyCookies::RelaunchOnLogin
68
64
  }
69
65
  )
70
66
  end
71
- end
67
+
68
+ def calculate_locale
69
+ decoded_jwt = params[:lti_message_hint] ? JSON::JWT.decode(params[:lti_message_hint], :skip_verification) : {}
70
+ if decoded_jwt['canvas_locale']
71
+ # this is essentially the same logic as language_region_compatible_from below
72
+ # example: 'en-AU', 'da-x-k12', 'ru', 'zh-Hant'
73
+ full_locale = decoded_jwt['canvas_locale'].to_sym
74
+ return full_locale if I18n.available_locales.include?(full_locale)
75
+
76
+ # The exact locale is not available, let's trim it down if possible
77
+ # example: 'en', 'da', 'ru', 'zh'
78
+ trimmed_locale = decoded_jwt['canvas_locale'][0..1].to_sym
79
+ return trimmed_locale if I18n.available_locales.include?(trimmed_locale)
80
+ end
81
+
82
+ http_accept_language.language_region_compatible_from(I18n.available_locales) || I18n.default_locale
83
+ end
84
+ end
@@ -1,11 +1,11 @@
1
1
  <div id="<%= id %>" class="flex-container">
2
2
  <div class="flex-item">
3
- <img src="https://upload.wikimedia.org/wikipedia/commons/0/03/Oxygen480-apps-preferences-web-browser-cookies.svg" alt="Cookie" />
3
+ <%= image_tag "canvas_lti_third_party_cookies/cookies.svg" %>
4
4
  </div>
5
5
 
6
6
  <div class="flex-item">
7
- <strong>It looks like your browser doesn't like cookies.</strong>
7
+ <h3><%= I18n.t "It looks like your browser doesn't like cookies." %></h3>
8
8
  </div>
9
9
 
10
10
  <%= yield %>
11
- </div>
11
+ </div>
@@ -22,20 +22,28 @@
22
22
  <%# default message to display on new window launch; hidden by default %>
23
23
  <%= render 'canvas_lti_third_party_cookies/cookie_message', id: 'relaunch-success' do %>
24
24
  <div class="flex-item">
25
- <p>Some browsers block third-party cookies by default, which this app relies on for launch and sign-in features.</p>
26
- <p>This app has opened in a <%= window_type_text %>, so that it can set its own cookies.
25
+ <p><%= I18n.t "Some browsers block third-party cookies by default, which this app relies on for launch and sign-in features." %></p>
26
+ <p><%= window_type == :new_window ?
27
+ I18n.t("This app has opened in a new tab, so that it can set its own cookies.") :
28
+ I18n.t("This app has opened in a popup window, so that it can set its own cookies.")
29
+ %></p>
27
30
  </div>
28
31
  <% end %>
29
32
 
30
33
  <%# message displayed when popups are blocked; hidden by default %>
31
34
  <%= render 'canvas_lti_third_party_cookies/cookie_message', id: 'relaunch-retry' do %>
32
35
  <div class="flex-item">
33
- <p>Some browsers block third-party cookies by default, which this app relies on for launch and sign-in features.</p>
34
- <p>Launching this app in a <%= window_type_text %>, separate from Canvas, will allow the app to set its own cookies.</p>
35
- <p>To open the app, make sure your browser allows popups for this page and try again.</p>
36
+ <p><%= I18n.t "Some browsers block third-party cookies by default, which this app relies on for launch and sign-in features." %></p>
37
+ <p><%= window_type == :new_window ?
38
+ I18n.t("Launching this app in a new tab, separate from Canvas, will allow the app to set its own cookies.") :
39
+ I18n.t("Launching this app in a popup window, separate from Canvas, will allow the app to set its own cookies.")
40
+ %></p>
41
+ <p><%= I18n.t "To open the app, make sure your browser allows popups for this page and try again." %></p>
36
42
  </div>
37
-
43
+
38
44
  <div class="flex-item">
39
- <button id="relaunch-request">Open in <%= window_type_text.capitalize %></button>
45
+ <button id="relaunch-request">
46
+ <%= window_type == :new_window ? I18n.t("Open in New Tab") : I18n.t("Open in Popup Window")%>
47
+ </button>
40
48
  </div>
41
49
  <% end %>
@@ -1,9 +1,23 @@
1
+ require 'i18nliner'
2
+ require 'http_accept_language'
3
+ require 'json/jwt'
4
+
1
5
  module CanvasLtiThirdPartyCookies
2
6
  class Engine < ::Rails::Engine
3
7
  isolate_namespace CanvasLtiThirdPartyCookies
4
8
 
5
9
  initializer "CanvasLtiThirdPartyCookies.assets.precompile" do |app|
6
- app.config.assets.precompile += %w( canvas_lti_third_party_cookies/relaunch_on_login.js canvas_lti_third_party_cookies/relaunch_on_login.css )
10
+ app.config.assets.precompile += %w(
11
+ canvas_lti_third_party_cookies/relaunch_on_login.js
12
+ canvas_lti_third_party_cookies/relaunch_on_login.css
13
+ canvas_lti_third_party_cookies/cookies.svg
14
+ )
15
+ end
16
+
17
+ initializer "CanvasLtiThirdPartyCookies.i18n.locale" do |app|
18
+ app.config.i18n.load_path += Dir[root.join('config','locales','*.yml')]
19
+ app.config.i18n.default_locale = :en
20
+ app.config.i18n.fallbacks = true
7
21
  end
8
22
  end
9
23
  end
@@ -1,3 +1,3 @@
1
1
  module CanvasLtiThirdPartyCookies
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: canvas_lti_third_party_cookies
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Xander Moffatt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-29 00:00:00.000000000 Z
11
+ date: 2022-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,40 +16,62 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 6.0.3
19
+ version: '6.1'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 6.0.3.6
22
+ version: 6.1.4.2
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: 6.0.3
29
+ version: '6.1'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 6.0.3.6
32
+ version: 6.1.4.2
33
33
  - !ruby/object:Gem::Dependency
34
- name: browser
34
+ name: i18nliner
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '2.6'
40
- - - ">="
39
+ version: 0.1.2
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 0.1.2
47
+ - !ruby/object:Gem::Dependency
48
+ name: json-jwt
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
41
52
  - !ruby/object:Gem::Version
42
- version: 2.6.1
53
+ version: 1.13.0
43
54
  type: :runtime
44
55
  prerelease: false
45
56
  version_requirements: !ruby/object:Gem::Requirement
46
57
  requirements:
47
58
  - - "~>"
48
59
  - !ruby/object:Gem::Version
49
- version: '2.6'
50
- - - ">="
60
+ version: 1.13.0
61
+ - !ruby/object:Gem::Dependency
62
+ name: http_accept_language
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 2.1.1
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
51
73
  - !ruby/object:Gem::Version
52
- version: 2.6.1
74
+ version: 2.1.1
53
75
  - !ruby/object:Gem::Dependency
54
76
  name: sqlite3
55
77
  requirement: !ruby/object:Gem::Requirement
@@ -75,6 +97,7 @@ files:
75
97
  - LICENSE
76
98
  - README.md
77
99
  - Rakefile
100
+ - app/assets/images/canvas_lti_third_party_cookies/cookies.svg
78
101
  - app/assets/javascripts/canvas_lti_third_party_cookies/relaunch_on_login.js
79
102
  - app/assets/stylesheets/canvas_lti_third_party_cookies/relaunch_on_login.css
80
103
  - app/controllers/concerns/canvas_lti_third_party_cookies/relaunch_on_login.rb
@@ -103,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
126
  - !ruby/object:Gem::Version
104
127
  version: '0'
105
128
  requirements: []
106
- rubygems_version: 3.0.1
129
+ rubygems_version: 3.2.32
107
130
  signing_key:
108
131
  specification_version: 4
109
132
  summary: Allow LTI tools launched by Canvas to set 3rd party cookies in Safari 13.1+