PageRenderTime 83ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 1ms

/pkg/ui/datafile.go

https://github.com/ironcladlou/kubernetes
Go | 3501 lines | 3410 code | 75 blank | 16 comment | 34 complexity | 4390108fb3ff1f770a23f6dca65f1849 MD5 | raw file
Possible License(s): BSD-3-Clause, MIT, LGPL-3.0, Apache-2.0, JSON, BSD-2-Clause

Large files files are truncated, but you can click here to view the full file

  1. /*
  2. Copyright 2014 Google Inc. All rights reserved.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. // generated by hack/build-ui.sh; DO NOT EDIT
  14. package ui
  15. import (
  16. "fmt"
  17. "io/ioutil"
  18. "os"
  19. "path"
  20. "path/filepath"
  21. "strings"
  22. "time"
  23. )
  24. type asset struct {
  25. bytes []byte
  26. info os.FileInfo
  27. }
  28. type bindata_file_info struct {
  29. name string
  30. size int64
  31. mode os.FileMode
  32. modTime time.Time
  33. }
  34. func (fi bindata_file_info) Name() string {
  35. return fi.name
  36. }
  37. func (fi bindata_file_info) Size() int64 {
  38. return fi.size
  39. }
  40. func (fi bindata_file_info) Mode() os.FileMode {
  41. return fi.mode
  42. }
  43. func (fi bindata_file_info) ModTime() time.Time {
  44. return fi.modTime
  45. }
  46. func (fi bindata_file_info) IsDir() bool {
  47. return false
  48. }
  49. func (fi bindata_file_info) Sys() interface{} {
  50. return nil
  51. }
  52. var _www_box_ng = []byte(`<!--
  53. Copyright 2014 Google Inc. All rights reserved.
  54. Licensed under the Apache License, Version 2.0 (the "License");
  55. you may not use this file except in compliance with the License.
  56. You may obtain a copy of the License at
  57. http://www.apache.org/licenses/LICENSE-2.0
  58. Unless required by applicable law or agreed to in writing, software
  59. distributed under the License is distributed on an "AS IS" BASIS,
  60. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  61. See the License for the specific language governing permissions and
  62. limitations under the License.
  63. -->
  64. <div style="margin-top: 10px">
  65. <div class="k8s-title-font k8s-box">
  66. {{ groupName }}
  67. <div ng-if="group.kind != 'grouping'">
  68. <div ng-if="!settings.display || settings.display=='box'">
  69. <div class="content k8s-item k8s-inline" ng-repeat="item in group">
  70. <div class="k8s-title-font k8s-font-regular">
  71. <div ng-switch on='item.labels["type"]'>
  72. <a ng-switch-when='pod' href="#/pods/{{ item.id }}">{{ item.id }}</a>
  73. <a ng-switch-when='service' href="#/services/{{ item.id }}">{{ item.id }}</a>
  74. <a ng-switch-when='replicationController' href="#/replicationControllers/{{ item.id }}">{{ item.id }}</a>
  75. <span ng-switch-default>{{item.id}}</span>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. <div ng-if="settings.display=='list'">
  81. <table style="width: 90%; padding: 10px">
  82. <tr ng-repeat="item in group" ng-class-odd="'k8s-odd'" ng-class-even="'k8s-even'" valign="top">
  83. <td class="k8s-cell">
  84. <div ng-switch on='item.labels["type"]'>
  85. <a ng-switch-when='pod' href="#/pods/{{ item.id }}">{{ item.id }}</a>
  86. <a ng-switch-when='service' href="#/services/{{ item.id }}">{{ item.id }}</a>
  87. <a ng-switch-when='replicationController' href="#/replicationControllers/{{ item.id }}">{{ item.id }}</a>
  88. <span ng-switch-default>{{item.id}}</span>
  89. </div>
  90. </td>
  91. <td class="k8s-cell">
  92. <div ng-repeat='(key, value) in item.labels'>
  93. <a href="#/groups/{{key}}/selector/{{controller.routeParams.selector}}">{{key}}</a> :
  94. <a href="#/groups/{{controller.routeParams.grouping}}/selector/{{key}}={{value}}">{{value}}</a> </span>
  95. </td>
  96. </tr>
  97. </table>
  98. </div>
  99. </div>
  100. <div ng-if="group.kind == 'grouping'">
  101. <div ng-repeat="(groupName,group) in group.items" ng-include="'box.ng'">
  102. </div>
  103. </div>
  104. <div>
  105. <a ng-click="settings={display:'box'}">box</a>
  106. <a ng-click="settings={display:'list'}">list</a>
  107. <a ng-click="controller.resetGroupLayout(this);">reset</a>
  108. </div>
  109. </div>
  110. `)
  111. func www_box_ng_bytes() ([]byte, error) {
  112. return _www_box_ng, nil
  113. }
  114. func www_box_ng() (*asset, error) {
  115. bytes, err := www_box_ng_bytes()
  116. if err != nil {
  117. return nil, err
  118. }
  119. info := bindata_file_info{name: "www/box.ng", size: 2526, mode: os.FileMode(416), modTime: time.Unix(1422479417, 0)}
  120. a := &asset{bytes: bytes, info: info}
  121. return a, nil
  122. }
  123. var _www_index_html = []byte(`<!--
  124. Copyright 2014 Google Inc. All rights reserved.
  125. Licensed under the Apache License, Version 2.0 (the "License");
  126. you may not use this file except in compliance with the License.
  127. You may obtain a copy of the License at
  128. http://www.apache.org/licenses/LICENSE-2.0
  129. Unless required by applicable law or agreed to in writing, software
  130. distributed under the License is distributed on an "AS IS" BASIS,
  131. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  132. See the License for the specific language governing permissions and
  133. limitations under the License.
  134. -->
  135. <html ng-app="k8s">
  136. <head>
  137. <title>Kubernetes</title>
  138. <link href='https://fonts.googleapis.com/css?family=Ubuntu%20Mono' rel='stylesheet' type='text/css'>
  139. <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  140. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.25/angular.min.js"></script>
  141. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.25/angular-route.min.js"></script>
  142. <!--
  143. For local/network free development.
  144. <script src="/angular.min.js"></script>
  145. <!-- -->
  146. <script src="podcontroller.js"></script>
  147. <link rel="stylesheet" href="k8s-style.css">
  148. </head>
  149. <body>
  150. <div class="navbar">
  151. <div class="navbar-logo">
  152. <img src="logotext.svg" id="nav-logo-img" alt="logo">
  153. </div>
  154. </div>
  155. <div ng-view></div>
  156. </body>
  157. </html>
  158. `)
  159. func www_index_html_bytes() ([]byte, error) {
  160. return _www_index_html, nil
  161. }
  162. func www_index_html() (*asset, error) {
  163. bytes, err := www_index_html_bytes()
  164. if err != nil {
  165. return nil, err
  166. }
  167. info := bindata_file_info{name: "www/index.html", size: 1454, mode: os.FileMode(416), modTime: time.Unix(1422479417, 0)}
  168. a := &asset{bytes: bytes, info: info}
  169. return a, nil
  170. }
  171. var _www_k8s_style_css = []byte(`.logo {
  172. background: url('titlelogo.svg');
  173. background-repeat: no-repeat;
  174. height: 150px;
  175. width: 600px;
  176. }
  177. .navbar-logo {
  178. margin-left: 10px;
  179. margin-top: 5px;
  180. }
  181. .title {
  182. color: #fff;
  183. font-size: 14pt;
  184. height: 20px;
  185. padding-top: 10px;
  186. padding-left: 10px;
  187. width: 1024px;
  188. }
  189. #nav-logo-img {
  190. height: 42px;
  191. }
  192. .spread {
  193. width: 1024px;
  194. }
  195. .content {
  196. margin-left: 20px;
  197. margin-top: 10px;
  198. }
  199. .bar {
  200. background: #DFE7FA;
  201. padding: 10px;
  202. }
  203. .navbar {
  204. background-color: #447AE8;
  205. border: 0px;
  206. border-radius: 0;
  207. }
  208. .link {
  209. color: #22F;
  210. cursor: pointer;
  211. text-decoration: underline;
  212. }
  213. .k8s-title-font {
  214. font-family: 'Ubuntu Mono', arial, sans-serif;
  215. font-size: 14pt;
  216. }
  217. .k8s-font-medium {
  218. font-size: 18pt;
  219. }
  220. .k8s-font-regular {
  221. font-size: 12pt;
  222. }
  223. .k8s-box {
  224. background: #CCC;
  225. border: 1px solid darkgray;
  226. padding: 10px;
  227. width: 90%;
  228. margin-left: 5%;
  229. }
  230. .k8s-item {
  231. background: #DDD;
  232. border: 1px solid whitesmoke;
  233. padding: 10px;
  234. width: 200px;
  235. }
  236. .k8s-list {
  237. background: #DDD;
  238. border: 1px solid whitesmoke;
  239. padding: 10px;
  240. width: 90%;
  241. }
  242. .k8s-inline {
  243. display: inline-block;
  244. }
  245. .k8s-button {
  246. border: 1px solid black;
  247. background: lightgray;
  248. cursor: pointer;
  249. padding: 2px 4px 2px 4px;
  250. }
  251. .k8s-odd {
  252. background: #EEE;
  253. }
  254. .k8s-even {
  255. background: #DDD;
  256. }
  257. .k8s-cell {
  258. padding: 10px;
  259. }`)
  260. func www_k8s_style_css_bytes() ([]byte, error) {
  261. return _www_k8s_style_css, nil
  262. }
  263. func www_k8s_style_css() (*asset, error) {
  264. bytes, err := www_k8s_style_css_bytes()
  265. if err != nil {
  266. return nil, err
  267. }
  268. info := bindata_file_info{name: "www/k8s-style.css", size: 1355, mode: os.FileMode(416), modTime: time.Unix(1422479417, 0)}
  269. a := &asset{bytes: bytes, info: info}
  270. return a, nil
  271. }
  272. var _www_logotext_svg = []byte(`<?xml version="1.0" encoding="UTF-8" standalone="no"?>
  273. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  274. <svg
  275. xmlns:dc="http://purl.org/dc/elements/1.1/"
  276. xmlns:cc="http://creativecommons.org/ns#"
  277. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  278. xmlns:svg="http://www.w3.org/2000/svg"
  279. xmlns="http://www.w3.org/2000/svg"
  280. version="1.1"
  281. width="562.78589"
  282. height="134.62993"
  283. id="svg2"
  284. xml:space="preserve"><metadata
  285. id="metadata8"><rdf:RDF><cc:Work
  286. rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
  287. rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
  288. id="defs6" /><g
  289. transform="matrix(1.25,0,0,-1.25,-169.2546,1414.8444)"
  290. id="g10"><g
  291. transform="matrix(0,0.18092,-0.18275,0,0,0)"
  292. id="g12"><path
  293. d="m 6196.6587,-1043.6173 -94.2902,-195.4939 -211.9113,-48.3046 -169.9617,135.2607 -0.025,216.9692 169.9297,135.2974 211.9254,-48.257 94.3336,-195.4718 z"
  294. id="path14"
  295. style="fill:none;stroke:#ffffff;stroke-width:118.52590179;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  296. d="m 190.7198,1121.0876 35.725,-17.0586 8.8274,-38.3391 -24.7181,-30.7489 -39.6505,0 -24.7249,30.7434 8.8192,38.3412 35.7219,17.0665 z"
  297. id="path16"
  298. style="fill:#336ee5;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  299. transform="matrix(0,0.18092,-0.18275,0,0,0)"
  300. id="g18"><path
  301. d="m 6196.6587,-1043.6173 -94.2888,-195.4939 -211.9141,-48.3046 -169.9603,135.2593 -0.025,216.9723 169.9297,135.2942 211.9237,-48.2572 94.3353,-195.4701 z"
  302. id="path20"
  303. style="fill:none;stroke:#336ee5;stroke-width:74.74790192;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
  304. transform="scale(0.18275,0.18275)"
  305. id="g22"><path
  306. d="m 1013.0746,6022.3961 c 73.5242,16.6963 146.8298,-29.4129 163.7263,-102.9881 16.9013,-73.5693 -29.0033,-146.7459 -102.5258,-163.4409 -73.5273,-16.6903 -146.8343,29.4189 -163.7325,102.9867 -16.8967,73.5769 29.0047,146.7505 102.532,163.4423 z"
  307. id="path24"
  308. style="fill:none;stroke:#ffffff;stroke-width:30.78089905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  309. d="m 188.4186,1104.8074 2.7468,-0.01 0.1749,-20.1918 -4.0657,-0.038 1.144,20.236 z"
  310. id="path26"
  311. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  312. transform="scale(0.17178,0.18275)"
  313. id="g28"><path
  314. d="m 1096.8024,6045.6095 15.9899,-0.036 1.0191,-110.4894 -23.6699,-0.2094 6.6609,110.7345 z"
  315. id="path30"
  316. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  317. d="m 193.0309,1104.8074 -2.7474,-0.01 -0.1703,-20.1918 4.0654,-0.037 -1.1477,20.2354 z"
  318. id="path32"
  319. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  320. transform="scale(0.17178,0.18275)"
  321. id="g34"><path
  322. d="m 1123.6518,6045.6098 -15.993,-0.036 -0.991,-110.4894 23.6681,-0.2029 -6.6841,110.7283 z"
  323. id="path36"
  324. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  325. d="m 192.8625,1112.4315 c 0,-1.3119 -0.9576,-2.3758 -2.1382,-2.3758 -1.1806,0 -2.1379,1.0639 -2.1379,2.3752 0,1.3119 0.9564,2.3754 2.1379,2.3763 1.1806,0 2.1382,-1.0636 2.1382,-2.3757"
  326. id="path38"
  327. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  328. transform="matrix(0.16447,2e-5,-2e-5,0.18275,0,0)"
  329. id="g40"><path
  330. d="m 1173.5053,6087.183 c -8e-4,-7.1804 -5.8238,-12.9997 -13.0019,-12.9988 -7.1785,8e-4 -12.998,5.8229 -12.9969,12.9971 0,7.1819 5.817,13.0011 13.0006,13.0031 7.1781,-6e-4 12.9994,-5.8229 12.9982,-13.0014 z"
  331. id="path42"
  332. style="fill:none;stroke:#ffffff;stroke-width:0.2744;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  333. d="m 188.5873,1112.4629 c 5e-4,-0.1876 -0.009,-0.458 -0.003,-0.6389 0.0289,-0.7566 0.1945,-1.3368 0.294,-2.0344 0.1797,-1.4922 0.3311,-2.7289 0.2381,-3.8781 -0.0851,-0.5757 -0.4184,-0.8028 -0.6959,-1.0689 l 3.3721,-2.2315 -0.5069,9.8354 -2.6988,0.016 z"
  334. id="path44"
  335. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  336. transform="matrix(0,-0.17178,0.18275,0,0,0)"
  337. id="g46"><path
  338. d="m -6476.0579,1031.9675 c 1.0925,0 2.6666,-0.048 3.7194,-0.014 4.4045,0.1568 7.7839,1.0641 11.8431,1.6087 8.6865,0.9819 15.8862,1.8102 22.5791,1.3028 3.3483,-0.4652 4.6701,-2.2896 6.2212,-3.8095 l 12.9884,18.4555 -57.257,-2.7751 -0.094,-14.7685 z"
  339. id="path48"
  340. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  341. d="m 192.8625,1112.4629 c -0.001,-0.1876 0.008,-0.458 0.002,-0.6389 -0.0289,-0.7566 -0.1942,-1.3368 -0.2934,-2.0344 -0.1797,-1.4922 -0.3311,-2.7289 -0.2384,-3.8781 0.0847,-0.5757 0.4184,-0.8028 0.6959,-1.0689 l -3.3724,-2.2315 0.5074,9.8354 2.6989,0.016 z"
  342. id="path50"
  343. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  344. transform="matrix(0,-0.17178,0.18275,0,0,0)"
  345. id="g52"><path
  346. d="m -6476.0579,1055.3604 c 1.0925,0 2.6666,0.046 3.7194,0.011 4.4045,-0.1534 7.7839,-1.0624 11.8431,-1.6022 8.6865,-0.9867 15.8862,-1.815 22.5791,-1.3076 3.3483,0.4669 4.6701,2.291 6.2212,3.8081 l 12.9884,-18.4541 -57.257,2.7765 -0.094,14.7685 z"
  347. id="path54"
  348. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
  349. transform="scale(0.18275,0.18275)"
  350. id="g56"><path
  351. d="m 1073.7275,5865.2637 -30.1062,-14.4303 -30.1,14.438 -7.4344,32.4422 20.8395,26.0065 33.4099,0 20.8321,-26.0175 -7.4409,-32.4374 z"
  352. id="path58"
  353. style="fill:none;stroke:#ffffff;stroke-width:30.34600067;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  354. d="m 166.9153,1092.2468 1.7178,2.1436 15.8952,-12.4532 -2.5049,-3.2023 -15.1081,13.5119 z"
  355. id="path60"
  356. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  357. transform="matrix(0.1071,0.1343,-0.14288,0.11394,0,0)"
  358. id="g62"><path
  359. d="m 5577.0313,3012.37 15.9908,-0.036 1.0134,-110.4917 -23.6665,-0.2083 6.6623,110.7357 z"
  360. id="path64"
  361. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  362. d="m 169.7905,1095.853 -1.7074,-2.1523 15.6805,-12.723 2.5636,3.1561 -16.5367,11.7192 z"
  363. id="path66"
  364. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  365. transform="matrix(0.1071,0.1343,-0.14288,0.11394,0,0)"
  366. id="g68"><path
  367. d="m 5603.8799,3012.3729 -15.9928,-0.039 -0.9944,-110.4931 23.6693,-0.2001 -6.6821,110.7321 z"
  368. id="path70"
  369. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  370. d="m 163.7252,1100.4746 c 1.0258,-0.8183 1.2608,-2.2297 0.5247,-3.1529 -0.7368,-0.9233 -2.1651,-1.0089 -3.191,-0.1908 -1.0256,0.8181 -1.2606,2.2292 -0.5238,3.1524 0.7358,0.9235 2.1642,1.0086 3.1901,0.1913"
  371. id="path72"
  372. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  373. transform="matrix(0.10253,0.1286,-0.14289,0.11392,0,0)"
  374. id="g74"><path
  375. d="m 5852.363,3053.3992 c 0,-7.181 -5.8216,-13.0011 -13.0009,-13.0005 -7.1815,0 -13.0025,5.8227 -13.0013,13.0025 0,7.1796 5.8198,12.9977 13.0013,12.9949 7.1799,0 12.998,-5.8198 13.0009,-12.9969 z"
  376. id="path76"
  377. style="fill:none;stroke:#ffffff;stroke-width:0.2744;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  378. d="m 161.0351,1097.1516 c 0.1474,-0.1171 0.3518,-0.2931 0.4986,-0.4005 0.6089,-0.4496 1.1656,-0.6818 1.7734,-1.0387 1.2781,-0.7894 2.3397,-1.4428 3.1807,-2.232 0.3969,-0.4249 0.3662,-0.8268 0.4008,-1.2104 l 3.8472,1.2453 -8.0047,5.7356 -1.696,-2.0993 z"
  379. id="path78"
  380. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  381. transform="matrix(0.1343,-0.1071,0.11394,0.14288,0,0)"
  382. id="g80"><path
  383. d="m -3249.2299,5243.3232 c 1.0919,-9e-4 2.6612,-0.054 3.7205,-0.014 4.403,0.1539 7.7794,1.0602 11.8417,1.6056 8.6817,0.9844 15.8837,1.8121 22.5768,1.3042 3.3486,-0.4641 4.6681,-2.2882 6.2175,-3.8109 l 12.9912,18.4518 -57.2536,-2.7726 -0.094,-14.7639 z"
  384. id="path82"
  385. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  386. d="m 163.6999,1100.4936 c 0.1472,-0.1176 0.3643,-0.278 0.5012,-0.3965 0.574,-0.4944 0.9247,-0.9851 1.4077,-1.4979 1.0548,-1.0709 1.9275,-1.9601 2.8842,-2.6039 0.5026,-0.2928 0.8876,-0.1737 1.2691,-0.1221 l -0.3586,-4.0275 -7.3732,6.5273 1.6696,2.1206 z"
  387. id="path84"
  388. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  389. transform="matrix(0.1343,-0.1071,0.11394,0.14288,0,0)"
  390. id="g86"><path
  391. d="m -3249.2341,5266.7113 c 1.0978,-3e-4 2.6671,0.053 3.7204,0.013 4.4068,-0.1565 7.7837,-1.0596 11.8432,-1.6053 8.6876,-0.983 15.8876,-1.8099 22.5782,-1.2999 3.3503,0.462 4.6704,2.2847 6.2195,3.8072 l 12.9884,-18.4521 -57.2517,2.768 -0.098,14.7688 z"
  392. id="path88"
  393. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  394. d="m 163.3717,1067.5885 -0.6052,2.6796 19.6464,4.6636 0.9419,-3.9555 -19.9831,-3.3877 z"
  395. id="path90"
  396. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  397. transform="matrix(0.03823,-0.16747,0.17816,0.04067,0,0)"
  398. id="g92"><path
  399. d="m -5847.3595,2171.5736 -15.992,0.034 -1.017,110.4899 23.669,0.2087 -6.66,-110.7329 z"
  400. id="path94"
  401. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  402. d="m 162.3444,1072.0845 0.6182,-2.6767 19.7238,4.3271 -0.8685,3.9719 -19.4735,-5.6223 z"
  403. id="path96"
  404. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  405. transform="matrix(0.03823,-0.16747,0.17816,0.04067,0,0)"
  406. id="g98"><path
  407. d="m -5874.2073,2171.5679 15.9931,0.04 0.9924,110.4916 -23.6673,0.203 6.6818,-110.7349 z"
  408. id="path100"
  409. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  410. d="m 154.9497,1070.2236 c 1.2787,0.2928 2.529,-0.4039 2.7921,-1.5551 0.2625,-1.1509 -0.561,-2.3213 -1.8405,-2.6127 -1.2785,-0.2928 -2.5285,0.4039 -2.7919,1.5551 -0.2625,1.1509 0.5613,2.3207 1.8403,2.6127"
  411. id="path102"
  412. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  413. transform="matrix(0.03662,-0.16034,0.17816,0.04069,0,0)"
  414. id="g104"><path
  415. d="m -6133.9467,2130.5761 c 0,7.1782 5.8161,12.9985 12.9991,12.9988 7.1756,-3e-4 12.9985,-5.8192 12.9951,-13.0005 0.01,-7.1753 -5.8189,-12.9966 -12.9988,-12.9988 -7.1773,5e-4 -12.9963,5.8218 -12.9954,13.0005 z"
  416. id="path106"
  417. style="fill:none;stroke:#ffffff;stroke-width:0.2744;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  418. d="m 155.8706,1066.049 c 0.1829,0.042 0.4488,0.093 0.6234,0.14 0.7316,0.1962 1.2606,0.4867 1.9182,0.7387 1.4148,0.508 2.5869,0.9301 3.7281,1.0951 0.58,0.046 0.8745,-0.2282 1.1968,-0.4405 l 1.4247,3.7842 -9.4759,-2.6816 0.5847,-2.6359 z"
  419. id="path108"
  420. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  421. transform="matrix(0.16747,0.03823,-0.04067,0.17816,0,0)"
  422. id="g110"><path
  423. d="m 2265.6285,5497.4356 c 1.0922,0 2.6666,-0.045 3.7177,-0.01 4.4093,0.1534 7.7862,1.0596 11.8448,1.603 8.6851,0.9845 15.8865,1.8117 22.5771,1.3023 3.3483,-0.4592 4.6676,-2.2825 6.2201,-3.8072 l 12.9895,18.4535 -57.2534,-2.7672 -0.096,-14.7744 z"
  424. id="path112"
  425. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  426. d="m 154.9191,1070.2165 c 0.1834,0.042 0.4447,0.1106 0.6224,0.1451 0.7447,0.1404 1.3471,0.1078 2.0489,0.1661 1.4947,0.1571 2.7338,0.2849 3.8339,0.6313 0.5428,0.2106 0.6894,0.5859 0.8867,0.9165 l 2.9262,-2.791 -9.701,-1.696 -0.6171,2.628 z"
  427. id="path114"
  428. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  429. transform="matrix(0.16747,0.03823,-0.04067,0.17816,0,0)"
  430. id="g116"><path
  431. d="m 2265.6266,5520.8273 c 1.0955,0 2.6674,0.048 3.7193,0.017 4.4096,-0.1585 7.7859,-1.0659 11.8448,-1.6093 8.6865,-0.9822 15.8843,-1.809 22.5766,-1.3005 3.3536,0.4626 4.6684,2.287 6.2195,3.8092 l 12.9917,-18.4527 -57.2533,2.7683 -0.099,14.7682 z"
  432. id="path118"
  433. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  434. d="m 180.4031,1049.4196 -2.473,1.1973 8.6032,18.2685 3.6802,-1.73 -9.8104,-17.7358 z"
  435. id="path120"
  436. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  437. transform="matrix(0.15477,-0.07453,0.07929,0.16465,0,0)"
  438. id="g122"><path
  439. d="m -1704.3131,5602.1797 -15.9959,0.035 -1.0171,110.4913 23.6718,0.2081 -6.6588,-110.7343 z"
  440. id="path124"
  441. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  442. d="m 176.2469,1051.4203 2.4784,-1.1858 8.9141,18.1179 -3.6474,1.7978 -7.7451,-18.7299 z"
  443. id="path126"
  444. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  445. transform="matrix(0.15477,-0.07453,0.07929,0.16465,0,0)"
  446. id="g128"><path
  447. d="m -1731.1657,5602.1774 15.9936,0.038 0.9918,110.4882 -23.669,0.2044 6.6836,-110.7309 z"
  448. id="path130"
  449. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  450. d="m 173.0911,1044.4779 c 0.5695,1.1824 1.8927,1.7255 2.9568,1.2132 1.0642,-0.5122 1.4653,-1.8858 0.8964,-3.0676 -0.5687,-1.1826 -1.8933,-1.7252 -2.9569,-1.2132 -1.0644,0.5122 -1.4655,1.8856 -0.8963,3.0676"
  451. id="path132"
  452. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  453. transform="matrix(0.14819,-0.07134,0.07926,0.16466,0,0)"
  454. id="g134"><path
  455. d="m -1806.2371,5560.6799 c 3e-4,7.1804 5.821,12.9988 13.0023,13.0011 7.1781,0 12.9974,-5.8221 12.9957,-12.9997 0.01,-7.1801 -5.821,-12.9991 -12.9974,-12.9994 -7.1822,-5e-4 -13.0014,5.819 -13.0006,12.998 z"
  456. id="path136"
  457. style="fill:none;stroke:#ffffff;stroke-width:0.2744;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  458. d="m 176.9292,1042.5954 c 0.0817,0.1695 0.207,0.4085 0.2792,0.5749 0.3033,0.6934 0.4057,1.2883 0.6183,1.9596 0.4853,1.4227 0.8858,2.6025 1.468,3.5974 0.3266,0.4819 0.7249,0.542 1.0908,0.6614 l -2.0698,3.4733 -3.8107,-9.0808 2.4242,-1.1858 z"
  459. id="path138"
  460. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  461. transform="matrix(0.07453,0.15477,-0.16465,0.07929,0,0)"
  462. id="g140"><path
  463. d="m 5915.209,1602.9547 c 1.0953,0 2.6649,-0.05 3.7202,-0.012 4.4056,0.1519 7.7811,1.0601 11.8409,1.605 8.6862,0.9844 15.8865,1.8127 22.5763,1.3028 3.3508,-0.4666 4.6717,-2.2873 6.222,-3.8084 l 12.9909,18.4516 -57.2547,-2.7709 -0.096,-14.7685 z"
  464. id="path142"
  465. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  466. d="m 173.0784,1044.4501 c 0.0813,0.169 0.1902,0.4165 0.2744,0.5766 0.354,0.6698 0.7554,1.12 1.1471,1.7059 0.8099,1.266 1.482,2.3145 1.8975,3.3905 0.1735,0.5553 -0.0286,0.904 -0.1644,1.2646 l 4.0071,0.5473 -4.7237,-8.6411 -2.438,1.1562 z"
  467. id="path144"
  468. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  469. transform="matrix(0.07453,0.15477,-0.16465,0.07929,0,0)"
  470. id="g146"><path
  471. d="m 5915.2107,1626.3439 c 1.0917,0 2.6638,0.052 3.7171,0.016 4.4073,-0.1553 7.7822,-1.0655 11.8432,-1.6064 8.6876,-0.9845 15.8853,-1.8102 22.5771,-1.3051 3.3499,0.4646 4.6689,2.2873 6.22,3.8141 l 12.9887,-18.4575 -57.2528,2.7737 -0.093,14.7653 z"
  472. id="path148"
  473. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  474. d="m 205.2142,1051.4548 -2.4778,-1.1863 -8.9186,18.1171 3.6467,1.798 7.7497,-18.7288 z"
  475. id="path150"
  476. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  477. transform="matrix(0.15477,0.07454,-0.0793,0.16465,0,0)"
  478. id="g152"><path
  479. d="m 3732.232,4696.5288 -15.992,0.035 -1.0145,110.4942 23.669,0.2069 -6.6625,-110.7357 z"
  480. id="path154"
  481. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  482. d="m 201.0589,1049.4533 2.4729,1.1988 -8.6082,18.2661 -3.6797,-1.7314 9.815,-17.7335 z"
  483. id="path156"
  484. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  485. transform="matrix(0.15477,0.07454,-0.0793,0.16465,0,0)"
  486. id="g158"><path
  487. d="m 3705.3822,4696.5274 15.9982,0.038 0.9873,110.4936 -23.6687,0.201 6.6832,-110.7329 z"
  488. id="path160"
  489. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  490. d="m 204.5188,1042.6575 c -0.5697,1.1821 -0.1686,2.5563 0.8952,3.0685 1.0636,0.5122 2.3879,-0.03 2.9574,-1.2124 0.5689,-1.182 0.1684,-2.5554 -0.8952,-3.0682 -1.0644,-0.5125 -2.3876,0.031 -2.9574,1.2121"
  491. id="path162"
  492. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  493. transform="matrix(0.14817,0.07138,-0.07932,0.16464,0,0)"
  494. id="g164"><path
  495. d="m 3871.7606,4654.3567 c -9e-4,7.1818 5.8221,13.0025 13.0017,13.0022 7.1767,0 12.9999,-5.8209 12.9991,-13.002 0,-7.1784 -5.8212,-12.9977 -13,-12.9996 -7.183,0 -12.9977,5.8215 -13.0008,12.9994 z"
  496. id="path166"
  497. style="fill:none;stroke:#ffffff;stroke-width:0.2744;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  498. d="m 208.3836,1044.4844 c -0.0811,0.1698 -0.1896,0.4167 -0.2747,0.5775 -0.354,0.6698 -0.7554,1.1199 -1.1472,1.7056 -0.8095,1.2665 -1.4819,2.3142 -1.8978,3.3908 -0.1732,0.5553 0.029,0.9037 0.1636,1.2639 l -4.0059,0.5477 4.7233,-8.6411 2.4387,1.1556 z"
  499. id="path168"
  500. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  501. transform="matrix(0.07454,-0.15477,0.16465,0.0793,0,0)"
  502. id="g170"><path
  503. d="m -4951.7391,3507.378 c -1.097,5e-4 -2.6659,0.055 -3.7224,0.017 -4.4059,-0.1556 -7.7822,-1.065 -11.844,-1.6073 -8.6868,-0.9827 -15.8817,-1.8093 -22.5771,-1.3039 -3.35,0.4646 -4.665,2.2876 -6.2153,3.8089 l -12.992,-18.4507 57.2536,2.7686 0.097,14.7677 z"
  504. id="path172"
  505. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  506. d="m 204.5333,1042.6297 c -0.0825,0.1693 -0.2072,0.4091 -0.2801,0.5746 -0.3024,0.6945 -0.405,1.2895 -0.6179,1.9602 -0.4859,1.423 -0.8861,2.6022 -1.4684,3.5983 -0.3265,0.4816 -0.7248,0.5408 -1.091,0.6599 l 2.0701,3.4738 3.8112,-9.0802 -2.4239,-1.1866 z"
  507. id="path174"
  508. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  509. transform="matrix(0.07454,-0.15477,0.16465,0.0793,0,0)"
  510. id="g176"><path
  511. d="m -4951.7379,3483.9904 c -1.0953,0 -2.6683,-0.049 -3.7196,-0.014 -4.4074,0.1565 -7.7871,1.0633 -11.8438,1.6036 -8.687,0.987 -15.8847,1.8128 -22.5799,1.3073 -3.3508,-0.4663 -4.6681,-2.2904 -6.2186,-3.8114 l -12.989,18.4538 57.2508,-2.7706 0.1001,-14.7688 z"
  512. id="path178"
  513. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  514. d="m 219.1056,1072.1339 -0.6173,-2.6771 -19.7252,4.3226 0.868,3.9727 19.4745,-5.6182 z"
  515. id="path180"
  516. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  517. transform="matrix(0.03822,0.16747,-0.17816,0.04066,0,0)"
  518. id="g182"><path
  519. d="m 6368.633,136.4414 -15.9914,0.0349 -1.0165,110.4948 23.6699,0.206 -6.662,-110.7357 z"
  520. id="path184"
  521. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  522. d="m 218.0798,1067.6375 0.6046,2.6794 -19.6481,4.659 -0.9405,-3.9555 19.984,-3.3829 z"
  523. id="path186"
  524. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  525. transform="matrix(0.03822,0.16747,-0.17816,0.04066,0,0)"
  526. id="g188"><path
  527. d="m 6341.7858,136.44 15.9894,0.0363 0.993,110.4933 -23.6673,0.2019 6.6849,-110.7315 z"
  528. id="path190"
  529. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  530. d="m 225.5496,1066.1054 c -1.279,0.2923 -2.103,1.4613 -1.8405,2.6127 0.2631,1.1517 1.5126,1.8479 2.7913,1.5562 1.2793,-0.2914 2.1036,-1.4609 1.8411,-2.6127 -0.2631,-1.1514 -1.5123,-1.8482 -2.7919,-1.5562"
  531. id="path192"
  532. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  533. transform="matrix(0.03657,0.16035,-0.17817,0.04063,0,0)"
  534. id="g194"><path
  535. d="m 6624.6812,93.8699 c 0,7.1821 5.8189,12.9977 13.0011,12.9988 7.1796,-0.003 12.9974,-5.8215 12.9971,-12.9986 0,-7.1795 -5.8161,-13.0019 -12.9985,-13.0013 -7.1813,0.0022 -13.0012,5.8223 -12.9997,13.0011 z"
  536. id="path196"
  537. style="fill:none;stroke:#ffffff;stroke-width:0.2744;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  538. d="m 226.531,1070.2664 c -0.1826,0.042 -0.4439,0.1105 -0.6225,0.1443 -0.7435,0.1411 -1.3462,0.1085 -2.048,0.1669 -1.4947,0.1562 -2.7346,0.2844 -3.8345,0.6305 -0.5422,0.2103 -0.6891,0.5862 -0.8869,0.9164 l -2.9251,-2.7918 9.7005,-1.6937 0.6165,2.6274 z"
  539. id="path198"
  540. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  541. transform="matrix(0.16748,-0.03822,0.04066,0.17817,0,0)"
  542. id="g200"><path
  543. d="m -100.5092,5985.5941 c -1.0916,-2e-4 -2.6645,0.05 -3.7196,0.012 -4.4028,-0.1522 -7.7808,-1.0598 -11.8414,-1.6029 -8.684,-0.9862 -15.8879,-1.8139 -22.5803,-1.3054 -3.3477,0.4654 -4.6655,2.2895 -6.2161,3.8103 l -12.9872,-18.4544 57.2485,2.7726 0.0961,14.7679 z"
  544. id="path202"
  545. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  546. d="m 225.5803,1066.0992 c -0.1834,0.042 -0.4485,0.093 -0.624,0.14 -0.731,0.1953 -1.26,0.4859 -1.9176,0.7379 -1.4148,0.5074 -2.5869,0.93 -3.7281,1.0953 -0.5794,0.046 -0.8754,-0.2288 -1.1965,-0.4405 l -1.4247,3.7839 9.4748,-2.6821 -0.5839,-2.6345 z"
  547. id="path204"
  548. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  549. transform="matrix(0.16748,-0.03822,0.04066,0.17817,0,0)"
  550. id="g206"><path
  551. d="m -100.5077,5962.2049 c -1.0954,6e-4 -2.6652,-0.052 -3.7225,-0.013 -4.4022,0.1536 -7.7803,1.0581 -11.8358,1.6027 -8.6899,0.9836 -15.8896,1.8116 -22.5808,1.3036 -3.3505,-0.4626 -4.6715,-2.2858 -6.22,-3.8066 l -12.9867,18.4527 57.2477,-2.7737 0.0981,-14.766 z"
  552. id="path208"
  553. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  554. d="m 211.6429,1095.893 1.7084,-2.1515 -15.6779,-12.7267 -2.5639,3.1547 16.5334,11.7235 z"
  555. id="path210"
  556. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  557. transform="matrix(0.10711,-0.1343,0.14287,0.11395,0,0)"
  558. id="g212"><path
  559. d="m -4219.3791,4644.5956 15.993,-0.032 1.012,-110.4928 -23.6625,-0.208 6.6575,110.7329 z"
  560. id="path214"
  561. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  562. d="m 214.52,1092.2873 -1.7192,2.1436 -15.8913,-12.4566 2.5053,-3.2014 15.1052,13.5144 z"
  563. id="path216"
  564. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  565. transform="matrix(0.10711,-0.1343,0.14287,0.11395,0,0)"
  566. id="g218"><path
  567. d="m -4192.5257,4644.6018 -15.9959,-0.041 -0.9899,-110.4863 23.6639,-0.2055 -6.6781,110.7329 z"
  568. id="path220"
  569. style="fill:none;stroke:#ffffff;stroke-width:0.41159999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  570. d="m 220.3747,1097.1729 c -1.0256,-0.8181 -2.4542,-0.7331 -3.1901,0.1902 -0.7364,0.9229 -0.5017,2.3349 0.5233,3.1529 1.0261,0.8181 2.4542,0.7331 3.1909,-0.1899 0.7359,-0.923 0.5018,-2.3352 -0.5241,-3.1532"
  571. id="path222"
  572. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  573. transform="matrix(0.10257,-0.12857,0.14286,0.11397,0,0)"
  574. id="g224"><path
  575. d="m -4379.2058,4686.834 c -3e-4,-7.1787 -5.8215,-12.9999 -13,-12.9971 -7.179,-6e-4 -13,5.8218 -13.0017,12.998 0,7.1813 5.8204,13.0011 13.0009,13.0005 7.1778,-5e-4 13.0022,-5.8192 13.0008,-13.0014 z"
  576. id="path226"
  577. style="fill:none;stroke:#ffffff;stroke-width:0.2744;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  578. d="m 217.7337,1100.5347 c -0.1471,-0.1173 -0.364,-0.2786 -0.5012,-0.3962 -0.5737,-0.4938 -0.9241,-0.9859 -1.4068,-1.4976 -1.0554,-1.0718 -1.9273,-1.9613 -2.8843,-2.6053 -0.5026,-0.2925 -0.8872,-0.1735 -1.2691,-0.1216 l 0.3586,-4.028 7.3724,6.5284 -1.6696,2.1203 z"
  579. id="path228"
  580. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  581. transform="matrix(0.1343,0.10711,-0.11395,0.14287,0,0)"
  582. id="g230"><path
  583. d="m 4985.5978,3965.3263 c -1.097,8e-4 -2.6683,0.052 -3.7208,0.016 -4.4036,-0.1551 -7.7842,-1.0647 -11.8383,-1.6067 -8.6933,-0.9845 -15.8919,-1.8139 -22.5811,-1.3048 -3.3517,0.4632 -4.6689,2.2839 -6.2198,3.8098 l -12.9886,-18.4561 57.2496,2.7757 0.099,14.7665 z"
  584. id="path232"
  585. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  586. d="m 220.3994,1097.193 c -0.1474,-0.1171 -0.3532,-0.2926 -0.4984,-0.4006 -0.6088,-0.4498 -1.1664,-0.6814 -1.7733,-1.0391 -1.2784,-0.7898 -2.34,-1.4429 -3.1811,-2.2323 -0.3968,-0.4247 -0.3662,-0.8266 -0.4008,-1.2101 l -3.8472,1.2452 8.0045,5.7362 1.6963,-2.0993 z"
  587. id="path234"
  588. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
  589. transform="matrix(0.1343,0.10711,-0.11395,0.14287,0,0)"
  590. id="g236"><path
  591. d="m 4985.5986,3941.9357 c -1.0956,0 -2.6665,-0.048 -3.7216,-0.013 -4.4042,0.1528 -7.7836,1.0656 -11.8429,1.6047 -8.6839,0.9848 -15.887,1.8114 -22.5788,1.3028 -3.3499,-0.4629 -4.6672,-2.2867 -6.2169,-3.8072 l -12.9903,18.4524 57.2507,-2.7706 0.1,-14.7687 z"
  592. id="path238"
  593. style="fill:none;stroke:#ffffff;stroke-width:0.26840001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><path
  594. d="m 187.367,1086.9849 c -0.0426,-1.0035 -0.868,-1.8049 -1.8822,-1.8049 -0.4156,0 -0.7988,0.1338 -1.1101,0.3606 l -0.489,-0.2324 1.0012,-2.0696 4.3855,2.1152 -0.9958,2.0693 -0.9096,-0.4382 z"
  595. id="path240"
  596. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  597. d="m 180.2086,1080.3039 c 0.7586,-0.6588 0.8697,-1.8043 0.2379,-2.5971 -0.2591,-0.3243 -0.603,-0.5409 -0.9746,-0.6429 l -0.1227,-0.5276 2.2419,-0.5076 1.0811,4.7477 -2.2393,0.5119 -0.2243,-0.9844 z"
  598. id="path242"
  599. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  600. d="m 180.9609,1070.5462 c 0.9874,0.182 1.9525,-0.4448 2.1782,-1.4335 0.0927,-0.4045 0.0476,-0.8087 -0.1052,-1.1628 l 0.3365,-0.4243 1.7952,1.4357 -3.039,3.805 -1.7958,-1.4315 0.6301,-0.7886 z"
  601. id="path244"
  602. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  603. d="m 189.059,1065.0538 c 0.4731,0.8861 1.5653,1.2495 2.4786,0.8095 0.3739,-0.1797 0.6613,-0.4665 0.8438,-0.8064 l 0.5415,0 -0.004,2.2986 -4.8699,0 0,-2.2975 1.0097,6e-4 z"
  604. id="path246"
  605. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  606. d="m 198.3934,1067.993 c -0.3971,0.9233 -8e-4,2.003 0.9131,2.4426 0.3739,0.1809 0.777,0.2262 1.1562,0.1562 l 0.3391,0.4227 -1.7989,1.4309 -3.0339,-3.8095 1.7954,-1.4326 0.629,0.7897 z"
  607. id="path248"
  608. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  609. d="m 201.9577,1077.1194 c -0.9688,0.2648 -1.5661,1.2481 -1.3408,2.2366 0.0922,0.4045 0.3079,0.7489 0.5987,1.0023 l -0.1182,0.5284 -2.2399,-0.5148 1.0862,-4.7472 2.2394,0.5103 -0.2254,0.9844 z"
  610. id="path250"
  611. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  612. d="m 197.0442,1085.5809 c -0.811,-0.5922 -1.9525,-0.4462 -2.5844,0.3469 -0.2588,0.324 -0.394,0.7073 -0.4104,1.0928 l -0.4868,0.2369 -0.9935,-2.0726 4.388,-2.1104 0.9975,2.0695 -0.9104,0.4369 z"
  613. id="path252"
  614. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  615. d="m 281.6892,1072.3652 c 0.7671,0.8949 1.5449,1.8431 2.3332,2.8442 0.7883,1.0015 1.5554,2.035 2.3012,3.1003 0.7458,1.0653 1.4595,2.0988 2.1413,3.1003 0.682,1.0014 1.2784,1.9496 1.7898,2.8445 l 9.4603,0 c -0.767,-0.9802 -1.6407,-2.0455 -2.6206,-3.196 -0.9802,-1.1506 -1.9922,-2.3228 -3.0365,-3.5159 -1.044,-1.1931 -2.088,-2.3436 -3.132,-3.4517 -1.044,-1.1078 -1.9922,-2.1305 -2.8445,-3.0682 1.0655,-1.0228 2.2161,-2.2479 3.4517,-3.6754 1.2359,-1.4276 2.4503,-2.9084 3.6437,-4.4425 1.1931,-1.5341 2.2903,-3.0682 3.2918,-4.6023 1.0015,-1.5341 1.8003,-2.8979 2.397,-4.091 l -9.0127,0 c -0.5114,1.0653 -1.1827,2.2692 -2.0138,3.6116 -0.8308,1.3423 -1.7149,2.6632 -2.6526,3.9632 -0.9375,1.2997 -1.8856,2.5353 -2.8443,3.7074 -0.959,1.1718 -1.8431,2.1413 -2.653,2.9083 l 0,-14.1905 -7.9262,0 0,43.0189 7.9262,1.3422 0,-26.2074 z"
  616. id="path254"
  617. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  618. d="m 329.694,1055.2343 c -1.4491,-0.3836 -3.2069,-0.7671 -5.2736,-1.1506 -2.0668,-0.3835 -4.3146,-0.5752 -6.7436,-0.5752 -2.4719,0 -4.4958,0.3408 -6.0727,1.0225 -1.5766,0.682 -2.823,1.6515 -3.7392,2.9086 -0.9161,1.2572 -1.5449,2.738 -1.8859,4.4425 -0.3407,1.7045 -0.5113,3.5796 -0.5113,5.625 l 0,16.7474 7.8624,0 0,-15.7246 c 0,-2.77 0.3302,-4.826 0.9907,-6.1685 0.6605,-1.3422 1.9497,-2.0134 3.8673,-2.0134 1.1931,0 2.3862,0.1066 3.5796,0.3194 l 0,23.5871 7.9263,0 0,-29.0202 z"
  619. id="path256"
  620. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  621. d="m 355.7095,1069.4248 c 0,2.8125 -0.4581,4.9646 -1.3743,6.4559 -0.9161,1.4916 -2.3119,2.2374 -4.1867,2.2374 -0.8524,0 -1.694,-0.1174 -2.5248,-0.3518 -0.8312,-0.2341 -1.5449,-0.5219 -2.1416,-0.8629 l 0,-16.2997 c 0.5967,-0.1279 1.2251,-0.2132 1.8859,-0.2557 0.6604,-0.043 1.2251,-0.064 1.6937,-0.064 2.0454,0 3.6649,0.6925 4.858,2.0775 1.1931,1.385 1.7898,3.7395 1.7898,7.0634 z m 7.9903,-0.1919 c 0,-2.3862 -0.3198,-4.5491 -0.959,-6.488 -0.6392,-1.9389 -1.5766,-3.59 -2.8125,-4.9538 -1.2359,-1.3637 -2.7485,-2.4182 -4.5383,-3.164 -1.7898,-0.7458 -3.8353,-1.1186 -6.1364,-1.1186 -2.0455,0 -4.1338,0.1491 -6.2643,0.4473 -2.1308,0.2982 -3.9206,0.6818 -5.3694,1.1506 l 0,42.124 7.8622,1.3422 0,-15.0214 c 1.108,0.5114 2.1733,0.8629 3.196,1.0548 1.0228,0.1916 2.0455,0.2877 3.0683,0.2877 1.9604,0 3.6861,-0.373 5.1777,-1.1188 1.4913,-0.7458 2.738,-1.8111 3.7392,-3.1961 1.0015,-1.3847 1.7581,-3.0362 2.2694,-4.9538 0.5114,-1.9176 0.7671,-4.0481 0.7671,-6.3921"
  622. id="path258"
  623. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  624. d="m 367.5986,1068.9772 c 0,2.6422 0.405,4.9646 1.2146,6.9676 0.8096,2.0026 1.8751,3.6754 3.1961,5.0176 1.3209,1.3425 2.8338,2.3544 4.5382,3.0364 1.7048,0.6818 3.4518,1.0228 5.2416,1.0228 4.4319,0 7.7984,-1.3105 10.0995,-3.9314 2.3012,-2.6206 3.4518,-6.4451 3.4518,-11.4738 0,-0.5114 -0.0108,-1.044 -0.0321,-1.5979 -0.0212,-0.5542 -0.0532,-1.0015 -0.0958,-1.3425 l -19.4958,0 c 0,-1.9601 0.8096,-3.505 2.429,-4.634 1.6192,-1.1294 3.7074,-1.694 6.2643,-1.694 1.5766,0 3.0787,0.1703 4.5062,0.5113 1.4278,0.341 2.6314,0.6818 3.6116,1.0228 l 1.0868,-6.7119 c -1.3637,-0.4686 -2.8125,-0.8629 -4.3466,-1.1823 -1.5341,-0.3198 -3.2601,-0.4794 -5.1778,-0.4794 -2.5568,0 -4.8472,0.3303 -6.8714,0.9907 -2.0242,0.6605 -3.75,1.6407 -5.1775,2.9404 -1.4275,1.2997 -2.5251,2.9084 -3.2922,4.826 -0.767,1.9176 -1.1505,4.1547 -1.1505,6.7116 z m 20.1353,3.1323 c 0,0.8096 -0.1066,1.5874 -0.3198,2.3329 -0.2131,0.7458 -0.5538,1.417 -1.0227,2.0137 -0.4686,0.5964 -1.0653,1.0761 -1.7898,1.438 -0.7242,0.3623 -1.6191,0.5434 -2.6847,0.5434 -1.0227,0 -1.9069,-0.1703 -2.6526,-0.5113 -0.7458,-0.341 -1.3638,-0.8096 -1.8536,-1.4063 -0.4901,-0.5967 -0.8737,-1.2784 -1.1506,-2.0455 -0.2772,-0.767 -0.4581,-1.5553 -0.5434,-2.3649 l 12.0172,0 z"
  625. id="path260"
  626. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  627. d="m 425.5109,1076.2642 c -0.5113,0.1279 -1.1185,0.2557 -1.8218,0.3835 -0.703,0.1279 -1.4168,0.2452 -2.1413,0.3515 -0.7245,0.1066 -1.4275,0.1812 -2.1092,0.224 -0.6821,0.043 -1.2572,0.064 -1.7261,0.064 -1.1077,0 -2.1945,-0.053 -3.2598,-0.1599 -1.0656,-0.1063 -2.1521,-0.309 -3.2601,-0.6072 l 0,-22.3084 -7.9263,0 0,28.0613 c 2.0883,0.7671 4.2296,1.385 6.4242,1.8539 2.1946,0.4685 4.7622,0.703 7.7026,0.703 0.426,0 1.0332,-0.021 1.8215,-0.064 0.7886,-0.043 1.6302,-0.1174 2.5251,-0.2239 0.8949,-0.1066 1.8003,-0.2345 2.7165,-0.3836 0.9161,-0.1491 1.7365,-0.3515 2.461,-0.6072 l -1.4063,-7.287 z"
  628. id="path262"
  629. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  630. d="m 433.5647,1083.2956 c 1.4063,0.3835 3.1428,0.7458 5.2098,1.0868 2.0668,0.3407 4.3146,0.5113 6.7436,0.5113 2.3862,0 4.3679,-0.3305 5.9446,-0.991 1.5766,-0.6604 2.8233,-1.5978 3.7394,-2.8125 0.9162,-1.2144 1.5662,-2.6631 1.9497,-4.3466 0.3835,-1.6833 0.5752,-3.5476 0.5752,-5.5931 l 0,-16.939 -7.8622,0 0,15.9163 c 0,2.8125 -0.3198,4.8367 -0.959,6.0726 -0.6392,1.2357 -1.9389,1.8536 -3.899,1.8536 -0.5967,0 -1.1826,-0.021 -1.7578,-0.064 -0.5754,-0.043 -1.1826,-0.1065 -1.8218,-0.1919 l 0,-23.5868 -7.8625,0 0,29.0841 z"
  631. id="path264"
  632. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  633. d="m 463.4796,1068.9772 c 0,2.6422 0.4051,4.9646 1.2146,6.9676 0.8096,2.0026 1.8752,3.6754 3.1961,5.0176 1.3209,1.3425 2.8338,2.3544 4.5383,3.0364 1.7047,0.6818 3.4517,1.0228 5.2415,1.0228 4.432,0 7.7984,-1.3105 10.0996,-3.9314 2.3011,-2.6206 3.4517,-6.4451 3.4517,-11.4738 0,-0.5114 -0.0108,-1.044 -0.032,-1.5979 -0.0213,-0.5542 -0.0533,-1.0015 -0.0958,-1.3425 l -19.4959,0 c 0,-1.9601 0.8096,-3.505 2.429,-4.634 1.6192,-1.1294 3.7075,-1.694 6.2643,-1.694 1.5767,0 3.0787,0.1703 4.5063,0.5113 1.4278,0.341 2.6314,0.6818 3.6116,1.0228 l 1.0868,-6.7119 c -1.3638,-0.4686 -2.8126,-0.8629 -4.3467,-1.1823 -1.5341,-0.3198 -3.2601,-0.4794 -5.1777,-0.4794 -2.5569,0 -4.8473,0.3303 -6.8715,0.9907 -2.0242,0.6605 -3.7499,1.6407 -5.1775,2.9404 -1.4275,1.2997 -2.5251,2.9084 -3.2921,4.826 -0.7671,1.9176 -1.1506,4.1547 -1.1506,6.7116 z m 20.1353,3.1323 c 0,0.8096 -0.1066,1.5874 -0.3197,2.3329 -0.2132,0.7458 -0.5539,1.417 -1.0228,2.0137 -0.4685,0.5964 -1.0652,1.0761 -1.7898,1.438 -0.7242,0.3623 -1.6191,0.5434 -2.6846,0.5434 -1.0228,0 -1.9069,-0.1703 -2.6527,-0.5113 -0.7458,-0.341 -1.3638,-0.8096 -1.8536,-1.4063 -0.4901,-0.5967 -0.8736,-1.2784 -1.1506,-2.0455 -0.2772,-0.767 -0.458,-1.5553 -0.5434,-2.3649 l 12.0172,0 z"
  634. id="path266"
  635. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  636. d="m 502.5991,1077.7346 -6.8394,0 0,6.5199 6.8394,0 0,7.5424 7.8625,1.2785 0,-8.8209 12.5923,0 0,-6.5199 -12.5923,0 0,-12.1451 c 0,-1.1081 0.1066,-2.0029 0.3194,-2.6847 0.2132,-0.6817 0.5114,-1.2146 0.8949,-1.5982 0.3836,-0.3835 0.8524,-0.6392 1.4063,-0.767 0.5542,-0.1279 1.1718,-0.1916 1.8539,-0.1916 0.7242,0 1.3955,0.021 2.0134,0.064 0.618,0.043 1.2144,0.1174 1.7898,0.224 0.5752,0.1063 1.1718,0.2662 1.7898,0.4793 0.618,0.2132 1.2889,0.4901 2.0135,0.8309 l 1.0868,-6.7757 c -1.4491,-0.5964 -3.0153,-1.0225 -4.6985,-1.2781 -1.6832,-0.2557 -3.3131,-0.3836 -4.8897,-0.3836 -1.8326,0 -3.4518,0.1491 -4.8581,0.4473 -1.4062,0.2982 -2.5996,0.8737 -3.5795,1.7258 -0.9803,0.8524 -1.7261,2.0562 -2.2374,3.6116 -0.5114,1.5554 -0.7671,3.5904 -0.7671,6.1044 l 0,12.337 z"
  637. id="path268"
  638. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  639. d="m 527.4003,1068.9772 c 0,2.6422 0.4051,4.9646 1.2146,6.9676 0.8096,2.0026 1.8751,3.6754 3.1961,5.0176 1.3209,1.3425 2.8338,2.3544 4.5383,3.0364 1.7047,0.6818 3.4517,1.0228 5.2415,1.0228 4.432,0 7.7984,-1.3105 10.0996,-3.9314 2.3011,-2.6206 3.4517,-6.4451 3.4517,-11.4738 0,-0.5114 -0.0108,-1.044 -0.032,-1.5979 -0.0213,-0.5542 -0.0533,-1.0015 -0.0958,-1.3425 l -19.4959,0 c 0,-1.9601 0.8096,-3.505 2.429,-4.634 1.6192,-1.1294 3.7075,-1.694 6.2643,-1.694 1.5766,0 3.0787,0.1703 4.5063,0.5113 1.4278,0.341 2.6314,0.6818 3.6116,1.0228 l 1.0868,-6.7119 c -1.3638,-0.4686 -2.8126,-0.8629 -4.3467,-1.1823 -1.5341,-0.3198 -3.2601,-0.4794 -5.1777,-0.4794 -2.5569,0 -4.8473,0.3303 -6.8715,0.9907 -2.0242,0.6605 -3.7499,1.6407 -5.1775,2.9404 -1.4275,1.2997 -2.5251,2.9084 -3.2921,4.826 -0.7671,1.9176 -1.1506,4.1547 -1.1506,6.7116 z m 20.1353,3.1323 c 0,0.8096 -0.1066,1.5874 -0.3197,2.3329 -0.2132,0.7458 -0.5539,1.417 -1.0228,2.0137 -0.4685,0.5964 -1.0652,1.0761 -1.7898,1.438 -0.7242,0.3623 -1.6191,0.5434 -2.6847,0.5434 -1.0227,0 -1.9068,-0.1703 -2.6526,-0.5113 -0.7458,-0.341 -1.3638,-0.8096 -1.8536,-1.4063 -0.4901,-0.5967 -0.8736,-1.2784 -1.1506,-2.0455 -0.2772,-0.767 -0.4581,-1.5553 -0.5434,-2.3649 l 12.0172,0 z"
  640. id="path270"
  641. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
  642. d="m 571.9533,1060.1561 c 1.9176,0 3.3876,0.1386 4.4104,0.4155 1.0227,0.277 1.5341,0.8416 1.5341,1.694 0,0.5539 -0.1599,1.0227 -0.4793,1.4063 -0.3198,0.3835 -0.7671,0.7137 -1.3425,0.9907 -0.5752,0.2769 -1.2357,0.5434 -1.9814,0.7991 -0.7458,0.2557 -1.5234,0.5113 -2.3332,0.767 -1.1506,0.3407 -2.3225,0.735 -3.5156,1.1826 -1.1931,0.4473 -2.2799,1.012 -3.2601,1.6937 -0.9799,0.6821 -1.7898,1.5449 -2.429,2.5889 -0.6392,1.044 -0.9587,2.3545 -0.9587,3.9311 0,1.2784 0.2449,2.4823 0.735,3.6116 0.4901,1.1294 1.2572,2.1305 2.3012,3.0042 1.044,0.8736 2.3757,1.5554 3.9952,2.0455 1.6191,0.4901 3.5583,0.7353 5.8166,0.7353 1.9605,0 3.782,-0.1494 5.4652,-0.4476 1.6835,-0.2982 3.1428,-0.7246 4.3787,-1.2784 l -1.2143,-6.6479 c -0.7246,0.2132 -1.8539,0.5647 -3.388,1.0548 -1.5341,0.4901 -3.2599,0.735 -5.1775,0.735 -2.003,0 -3.3559,-0.2449 -4.0589,-0.735 -0.7033,-0.4901 -1.0548,-1.0122 -1.0548,-1.5661 0,-0.4689 0.1599,-0.8841 0.4793,-1.2464 0.3198,-0.3623 0.7458,-0.6925 1.2785,-0.9907 0.5326,-0.2985 1.1506,-0.5859 1.8538,-0.8632 0.703,-0.2769 1.4593,-0.5431 2.2692,-0.7988 1.1505,-0.3835 2.3437,-0.8098 3.5796,-1.2784 1.2356,-0.4689 2.3544,-1.0548 3.3556,-1.7578 1.0015,-0.7032 1.8218,-1.5981 2.461,-2.6847 0.6393,-1.0868 0.959,-2.4185 0.959,-3.9951 0,-1.2359 -0.2344,-2.4078 -0.7033,-3.5158 -0.4688,-1.1078 -1.2464,-2.0668 -2.3332,-2.8763 -1.0865,-0.8096 -2.5035,-1.4488 -4.2505,-1.9177 -1.7473,-0.4688 -3.8994,-0.703 -6.4562,-0.703 -2.5994,0 -4.8152,0.2982 -6.6478,0.8946 -1.8323,0.5967 -3.3024,1.1294 -4.4104,1.5982 l 1.2143,6.5838 c 1.4916,-0.5964 3.079,-1.1506 4.7622,-1.662 1.6832,-0.5114 3.3985,-0.767 5.1458,-0.767"
  643. id="path272"
  644. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g></svg>`)
  645. func www_logotext_svg_bytes() ([]byte, error) {
  646. return _www_logotext_svg, nil
  647. }
  648. func www_logotext_svg() (*asset, error) {
  649. bytes, err := www_logotext_svg_bytes()
  650. if err != nil {
  651. return nil, err
  652. }
  653. info := bindata_file_info{name: "www/logotext.svg", size: 41741, mode: os.FileMode(416), modTime: time.Unix(1422479417, 0)}
  654. a := &asset{bytes: bytes, info: info}
  655. return a, nil
  656. }
  657. var _www_partials_g

Large files files are truncated, but you can click here to view the full file