spreewald 4.6.2 → 4.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +3 -1
  3. data/CHANGELOG.md +6 -0
  4. data/Gemfile.ruby266.lock +8 -8
  5. data/Gemfile.ruby320.lock +10 -10
  6. data/README.md +27 -1
  7. data/lib/spreewald/web_steps.rb +16 -0
  8. data/lib/spreewald_support/mail_finder.rb +10 -2
  9. data/lib/spreewald_support/version.rb +1 -1
  10. data/media/logo.dark.shapes.svg +137 -0
  11. data/media/logo.dark.text.svg +107 -0
  12. data/media/logo.light.shapes.svg +136 -0
  13. data/media/logo.light.text.svg +106 -0
  14. data/media/makandra-with-bottom-margin.dark.svg +180 -0
  15. data/media/makandra-with-bottom-margin.light.svg +180 -0
  16. data/spec/steps/show_me_the_mails_spec.rb +22 -0
  17. data/tests/rails-7_capybara-3/Gemfile.lock +2 -2
  18. data/tests/rails-8_capybara-3/.ruby-version +1 -0
  19. data/tests/rails-8_capybara-3/Gemfile +27 -0
  20. data/tests/rails-8_capybara-3/Gemfile.lock +326 -0
  21. data/tests/rails-8_capybara-3/README.md +24 -0
  22. data/tests/rails-8_capybara-3/Rakefile +6 -0
  23. data/tests/rails-8_capybara-3/app/controllers +1 -0
  24. data/tests/rails-8_capybara-3/app/mailers/application_mailer.rb +4 -0
  25. data/tests/rails-8_capybara-3/app/mailers/spreewald_mailer.rb +66 -0
  26. data/tests/rails-8_capybara-3/app/models/application_record.rb +3 -0
  27. data/tests/rails-8_capybara-3/app/views +1 -0
  28. data/tests/rails-8_capybara-3/bin/bundle +114 -0
  29. data/tests/rails-8_capybara-3/bin/rails +4 -0
  30. data/tests/rails-8_capybara-3/bin/rake +4 -0
  31. data/tests/rails-8_capybara-3/bin/setup +33 -0
  32. data/tests/rails-8_capybara-3/config/application.rb +35 -0
  33. data/tests/rails-8_capybara-3/config/boot.rb +3 -0
  34. data/tests/rails-8_capybara-3/config/cucumber.yml +9 -0
  35. data/tests/rails-8_capybara-3/config/database.yml +25 -0
  36. data/tests/rails-8_capybara-3/config/environment.rb +5 -0
  37. data/tests/rails-8_capybara-3/config/environments/development.rb +66 -0
  38. data/tests/rails-8_capybara-3/config/environments/test.rb +56 -0
  39. data/tests/rails-8_capybara-3/config/initializers/application_controller_renderer.rb +8 -0
  40. data/tests/rails-8_capybara-3/config/initializers/backtrace_silencers.rb +8 -0
  41. data/tests/rails-8_capybara-3/config/initializers/content_security_policy.rb +28 -0
  42. data/tests/rails-8_capybara-3/config/initializers/cookies_serializer.rb +5 -0
  43. data/tests/rails-8_capybara-3/config/initializers/filter_parameter_logging.rb +6 -0
  44. data/tests/rails-8_capybara-3/config/initializers/inflections.rb +16 -0
  45. data/tests/rails-8_capybara-3/config/initializers/mime_types.rb +4 -0
  46. data/tests/rails-8_capybara-3/config/initializers/new_framework_defaults_6_1.rb +67 -0
  47. data/tests/rails-8_capybara-3/config/initializers/permissions_policy.rb +11 -0
  48. data/tests/rails-8_capybara-3/config/initializers/wrap_parameters.rb +14 -0
  49. data/tests/rails-8_capybara-3/config/locales/en.yml +33 -0
  50. data/tests/rails-8_capybara-3/config/routes.rb +1 -0
  51. data/tests/rails-8_capybara-3/config.ru +6 -0
  52. data/tests/rails-8_capybara-3/db +1 -0
  53. data/tests/rails-8_capybara-3/features/browser_tab_steps.feature +1 -0
  54. data/tests/rails-8_capybara-3/features/development_steps.feature +1 -0
  55. data/tests/rails-8_capybara-3/features/email_steps.feature +1 -0
  56. data/tests/rails-8_capybara-3/features/iframe_steps.feature +1 -0
  57. data/tests/rails-8_capybara-3/features/overriding.feature +1 -0
  58. data/tests/rails-8_capybara-3/features/session_steps.feature +1 -0
  59. data/tests/rails-8_capybara-3/features/step_definitions/.gitkeep +0 -0
  60. data/tests/rails-8_capybara-3/features/step_definitions/field_error_steps.rb +12 -0
  61. data/tests/rails-8_capybara-3/features/step_definitions/overriding_steps.rb +1 -0
  62. data/tests/rails-8_capybara-3/features/step_definitions/test_steps.rb +1 -0
  63. data/tests/rails-8_capybara-3/features/support/env.rb +66 -0
  64. data/tests/rails-8_capybara-3/features/support/paths.rb +1 -0
  65. data/tests/rails-8_capybara-3/features/support/selectors.rb +1 -0
  66. data/tests/rails-8_capybara-3/features/support/selenium.rb +1 -0
  67. data/tests/rails-8_capybara-3/features/table_steps.feature +1 -0
  68. data/tests/rails-8_capybara-3/features/time_steps.feature +1 -0
  69. data/tests/rails-8_capybara-3/features/web_steps.feature +1 -0
  70. data/tests/rails-8_capybara-3/lib/tasks/.keep +0 -0
  71. data/tests/rails-8_capybara-3/lib/tasks/cucumber.rake +76 -0
  72. data/tests/rails-8_capybara-3/log/.keep +0 -0
  73. data/tests/rails-8_capybara-3/public/404.html +67 -0
  74. data/tests/rails-8_capybara-3/public/422.html +67 -0
  75. data/tests/rails-8_capybara-3/public/500.html +66 -0
  76. data/tests/rails-8_capybara-3/public/favicon.ico +0 -0
  77. data/tests/rails-8_capybara-3/public/fixture_files +1 -0
  78. data/tests/rails-8_capybara-3/script/cucumber +11 -0
  79. data/tests/shared/app/controllers/emails_controller.rb +1 -8
  80. data/tests/shared/app/models/mailer.rb +43 -96
  81. data/tests/shared/features/shared/email_steps.feature +18 -0
  82. data/tests/shared/features/support/selenium.rb +2 -2
  83. metadata +134 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8b36c0e7f58e2fdc53690d9bed5690077215e16f874cf953d04e3bc96eb6ad5
4
- data.tar.gz: 5be73a131b725ed532f318f8dc373f2758b29620ad11a4e83154ba068b754a5f
3
+ metadata.gz: b0bedc86d2ad6cf9de6e252ff1581128a3de6b3a0714a1120df9443c1e5c1cfa
4
+ data.tar.gz: 6f6d401f6aac49a7d572251b457e4b1e1da6b53956310c06a814b90d12b66058
5
5
  SHA512:
6
- metadata.gz: c0ccd9c02ae206858b788f96d8a5a79144046e64cc8164e577fd81c4b02e1eccb94fd241295ddb29827374115c83d072b24e2818d3aea0c42685ec907dd874e7
7
- data.tar.gz: a8ecc4aff210a281a7e077ea6e7c9200ab402ce5e2171db3e9c4dee251adad36f834227f5d70c27ace7f697df1dc71b40556e5ef6fbed2b7e9e3bc2eb1805d3f
6
+ metadata.gz: f43986ae935595d562df8c7b204a0271ca8a098a0a2ae7dd306a4924adbf0be70d23a0ac432e39751685511795756a912cd38b739e923d8977b2c0e6a4d97a71
7
+ data.tar.gz: b819b28b9cc0715da3df19d76a6005ba831b832989ddbd3bc77653dee873714c80cab0f2d8f8f0c7e088588dd80763435a06652d7b9c832c502c08fe92bc1bad
@@ -9,13 +9,15 @@ name: Tests
9
9
  - master
10
10
  jobs:
11
11
  test:
12
- runs-on: ubuntu-20.04
12
+ runs-on: ubuntu-24.04
13
13
  strategy:
14
14
  fail-fast: false
15
15
  matrix:
16
16
  include:
17
17
  - ruby: 3.2.0
18
18
  gemfile: tests/rails-7_capybara-3/Gemfile
19
+ - ruby: 3.3.6
20
+ gemfile: tests/rails-8_capybara-3/Gemfile
19
21
  # Used to run rspec and integration tests for spreewald binary:
20
22
  - ruby: 2.6.6
21
23
  gemfile: Gemfile.ruby266
data/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## 4.6.4
7
+ - New step `I attach the files ["file1", "file2" and "file3"] to "My Uploads"`
8
+
9
+ ## 4.6.3
10
+ - Fix email steps not showing the attachments
11
+
6
12
  ## 4.6.2
7
13
  - Fix uninitialized constant `XPath::HTML` when using `When I fill in "..." with "..." inside any "..."` ([#210](https://github.com/makandra/spreewald/issues/210))
8
14
 
data/Gemfile.ruby266.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- spreewald (4.6.2)
4
+ spreewald (4.6.4)
5
5
  capybara
6
6
  cucumber
7
7
  cucumber_priority (>= 0.3.0)
@@ -11,8 +11,8 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- addressable (2.8.5)
15
- public_suffix (>= 2.0.2, < 6.0)
14
+ addressable (2.8.7)
15
+ public_suffix (>= 2.0.2, < 7.0)
16
16
  aruba (2.0.0)
17
17
  bundler (>= 1.17, < 3.0)
18
18
  childprocess (>= 2.0, < 5.0)
@@ -63,7 +63,7 @@ GEM
63
63
  cucumber-core (~> 10.1, >= 10.1.0)
64
64
  cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
65
65
  cucumber-messages (~> 17.1, >= 17.1.1)
66
- cucumber_priority (0.3.3)
66
+ cucumber_priority (1.0.0)
67
67
  cucumber
68
68
  diff-lcs (1.4.4)
69
69
  ffi (1.15.4)
@@ -80,13 +80,13 @@ GEM
80
80
  nokogiri (1.11.1)
81
81
  mini_portile2 (~> 2.5.0)
82
82
  racc (~> 1.4)
83
- public_suffix (5.0.4)
83
+ public_suffix (5.1.1)
84
84
  racc (1.5.2)
85
- rack (3.0.8)
86
- rack-test (2.1.0)
85
+ rack (3.1.16)
86
+ rack-test (2.2.0)
87
87
  rack (>= 1.3)
88
88
  rake (13.0.3)
89
- regexp_parser (2.8.3)
89
+ regexp_parser (2.10.0)
90
90
  rspec (3.10.0)
91
91
  rspec-core (~> 3.10.0)
92
92
  rspec-expectations (~> 3.10.0)
data/Gemfile.ruby320.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- spreewald (4.6.2)
4
+ spreewald (4.6.4)
5
5
  capybara
6
6
  cucumber
7
7
  cucumber_priority (>= 0.3.0)
@@ -11,8 +11,8 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- addressable (2.8.5)
15
- public_suffix (>= 2.0.2, < 6.0)
14
+ addressable (2.8.7)
15
+ public_suffix (>= 2.0.2, < 7.0)
16
16
  aruba (2.0.0)
17
17
  bundler (>= 1.17, < 3.0)
18
18
  childprocess (>= 2.0, < 5.0)
@@ -21,11 +21,11 @@ GEM
21
21
  rspec-expectations (~> 3.4)
22
22
  thor (~> 1.0)
23
23
  builder (3.2.4)
24
- capybara (3.39.2)
24
+ capybara (3.40.0)
25
25
  addressable
26
26
  matrix
27
27
  mini_mime (>= 0.1.3)
28
- nokogiri (~> 1.8)
28
+ nokogiri (~> 1.11)
29
29
  rack (>= 1.6.0)
30
30
  rack-test (>= 0.6.3)
31
31
  regexp_parser (>= 1.5, < 3.0)
@@ -63,7 +63,7 @@ GEM
63
63
  cucumber-core (~> 10.1, >= 10.1.0)
64
64
  cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
65
65
  cucumber-messages (~> 17.1, >= 17.1.1)
66
- cucumber_priority (0.3.3)
66
+ cucumber_priority (1.0.0)
67
67
  cucumber
68
68
  date (3.3.3)
69
69
  diff-lcs (1.4.4)
@@ -91,13 +91,13 @@ GEM
91
91
  net-protocol
92
92
  nokogiri (1.14.1-x86_64-linux)
93
93
  racc (~> 1.4)
94
- public_suffix (5.0.4)
94
+ public_suffix (6.0.2)
95
95
  racc (1.5.2)
96
- rack (3.0.8)
97
- rack-test (2.1.0)
96
+ rack (3.1.16)
97
+ rack-test (2.2.0)
98
98
  rack (>= 1.3)
99
99
  rake (13.0.3)
100
- regexp_parser (2.8.3)
100
+ regexp_parser (2.10.0)
101
101
  rspec (3.10.0)
102
102
  rspec-core (~> 3.10.0)
103
103
  rspec-expectations (~> 3.10.0)
data/README.md CHANGED
@@ -1,4 +1,21 @@
1
- # Spreewald
1
+ <p>
2
+ <a href="https://makandra.de/">
3
+ <picture>
4
+ <source media="(prefers-color-scheme: light)" srcset="media/makandra-with-bottom-margin.light.svg">
5
+ <source media="(prefers-color-scheme: dark)" srcset="media/makandra-with-bottom-margin.dark.svg">
6
+ <img align="right" width="25%" alt="makandra" src="media/makandra-with-bottom-margin.light.svg">
7
+ </picture>
8
+ </a>
9
+
10
+ <picture>
11
+ <source media="(prefers-color-scheme: light)" srcset="media/logo.light.shapes.svg">
12
+ <source media="(prefers-color-scheme: dark)" srcset="media/logo.dark.shapes.svg">
13
+ <img width="222" alt="spreewald" role="heading" aria-level="1" src="media/logo.light.shapes.svg">
14
+ </picture>
15
+ </p>
16
+
17
+ [![Tests](https://github.com/makandra/spreewald/workflows/Tests/badge.svg)](https://github.com/makandra/spreewald/actions)
18
+
2
19
 
3
20
  Spreewald is a collection of useful steps for cucumber. Feel free to fork.
4
21
 
@@ -463,6 +480,15 @@ deprecation notice. Decide for yourself whether you want to use them:
463
480
  Attach a file to a file upload form field
464
481
 
465
482
 
483
+ * **When I attach the files \[...\] to "..."**
484
+
485
+ Attach multiple files to a file upload form field
486
+
487
+ Example:
488
+
489
+ And attach the files ["file_1.jpg", "file_2.png" and "file_3.webp"] to "My Files"
490
+
491
+
466
492
  * **Then I should( not)? see "..."**
467
493
 
468
494
  Checks that some text appears on the page
@@ -169,6 +169,22 @@ When /^(?:|I )attach the file "([^"]*)" to "([^"]*)"$/ do |path, field|
169
169
  end
170
170
  end.overridable
171
171
 
172
+ # Attach multiple files to a file upload form field
173
+ #
174
+ # Example:
175
+ #
176
+ # And attach the files ["file_1.jpg", "file_2.png" and "file_3.webp"] to "My Files"
177
+ When(/^(?:|I )attach the files \[(.+)\] to "(.+)"$/) do |path_list, field|
178
+ paths = path_list.scan(/"([^"]+)"/).flatten
179
+
180
+ options = { multiple: true }
181
+ options[:make_visible] = true if javascript_capable?
182
+
183
+ patiently do
184
+ attach_file(field, paths.map { |path| File.expand_path(path) }, **options)
185
+ end
186
+ end.overridable
187
+
172
188
  # Checks that some text appears on the page
173
189
  #
174
190
  # Note that this does not detect if the text might be hidden via CSS
@@ -24,7 +24,6 @@ class MailFinder
24
24
  body = [header, body].join("\n\n")
25
25
  end
26
26
 
27
- filename_method = Rails::VERSION::MAJOR < 3 ? 'original_filename' : 'filename'
28
27
  matching_header = ActionMailer::Base.deliveries.select do |mail|
29
28
  [ conditions[:to].nil? || mail.to.include?(resolve_email conditions[:to]),
30
29
  conditions[:cc].nil? || mail.cc && mail.cc.include?(resolve_email conditions[:cc]),
@@ -32,7 +31,7 @@ class MailFinder
32
31
  conditions[:from].nil? || mail.from.include?(resolve_email conditions[:from]),
33
32
  conditions[:reply_to].nil? || mail.reply_to.include?(resolve_email conditions[:reply_to]),
34
33
  conditions[:subject].nil? || mail.subject.include?(conditions[:subject]),
35
- conditions[:attachments].nil? || conditions[:attachments].split(/\s*,\s*/).sort == Array(mail.attachments).collect(&:"#{filename_method}").sort
34
+ conditions[:attachments].nil? || conditions[:attachments].split(/\s*,\s*/).sort == attachment_filenames(mail)
36
35
  ].all?
37
36
  end
38
37
 
@@ -64,6 +63,9 @@ class MailFinder
64
63
  header << "CC: #{mail.cc.join(', ')}\n" if mail.cc
65
64
  header << "BCC: #{mail.bcc.join(', ')}\n" if mail.bcc
66
65
  header << "Subject: #{mail.subject}\n"
66
+ header << "Attachments: #{attachment_filenames(mail).join(', ')}\n" if mail.attachments.any?
67
+
68
+ header
67
69
  end
68
70
 
69
71
  def email_text_body(mail, type = '')
@@ -94,6 +96,12 @@ class MailFinder
94
96
  Regexp.new(expected)
95
97
  end
96
98
 
99
+ private
100
+
101
+ def attachment_filenames(mail)
102
+ Array(mail.attachments).collect(&:filename).sort
103
+ end
104
+
97
105
  end
98
106
  end
99
107
 
@@ -1,3 +1,3 @@
1
1
  module Spreewald
2
- VERSION = '4.6.2'
2
+ VERSION = '4.6.4'
3
3
  end
@@ -0,0 +1,137 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="56.414364mm"
14
+ height="14.056225mm"
15
+ viewBox="0 0 56.414362 14.056225"
16
+ version="1.1"
17
+ id="svg838"
18
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
19
+ sodipodi:docname="logo.dark.shapes.svg"
20
+ inkscape:export-filename="/home/henning/Projects/capybara-lockstep/media/capybara-lockstep.dark.png"
21
+ inkscape:export-xdpi="196"
22
+ inkscape:export-ydpi="196">
23
+ <defs
24
+ id="defs832">
25
+ <linearGradient
26
+ inkscape:collect="always"
27
+ id="linearGradient1406">
28
+ <stop
29
+ style="stop-color:#ff0844;stop-opacity:1"
30
+ offset="0"
31
+ id="stop1402" />
32
+ <stop
33
+ style="stop-color:#ffb199;stop-opacity:1"
34
+ offset="1"
35
+ id="stop1404" />
36
+ </linearGradient>
37
+ <linearGradient
38
+ inkscape:collect="always"
39
+ xlink:href="#linearGradient1406"
40
+ id="linearGradient1408"
41
+ x1="22.054907"
42
+ y1="91.071762"
43
+ x2="88.956696"
44
+ y2="91.071762"
45
+ gradientUnits="userSpaceOnUse"
46
+ gradientTransform="matrix(0.84108881,0,0,0.08820435,-18.550136,57.908781)" />
47
+ </defs>
48
+ <sodipodi:namedview
49
+ id="base"
50
+ pagecolor="#ffffff"
51
+ bordercolor="#666666"
52
+ borderopacity="1.0"
53
+ inkscape:pageopacity="0.0"
54
+ inkscape:pageshadow="2"
55
+ inkscape:zoom="3.959798"
56
+ inkscape:cx="215.87243"
57
+ inkscape:cy="25.711802"
58
+ inkscape:document-units="mm"
59
+ inkscape:current-layer="layer1"
60
+ showgrid="false"
61
+ fit-margin-top="0"
62
+ fit-margin-left="0"
63
+ fit-margin-right="0"
64
+ fit-margin-bottom="0"
65
+ inkscape:window-width="2560"
66
+ inkscape:window-height="1391"
67
+ inkscape:window-x="1920"
68
+ inkscape:window-y="0"
69
+ inkscape:window-maximized="1"
70
+ inkscape:pagecheckerboard="true" />
71
+ <metadata
72
+ id="metadata835">
73
+ <rdf:RDF>
74
+ <cc:Work
75
+ rdf:about="">
76
+ <dc:format>image/svg+xml</dc:format>
77
+ <dc:type
78
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
79
+ <dc:title></dc:title>
80
+ </cc:Work>
81
+ </rdf:RDF>
82
+ </metadata>
83
+ <g
84
+ inkscape:label="Layer 1"
85
+ inkscape:groupmode="layer"
86
+ id="layer1"
87
+ transform="translate(0.127,-52.518951)">
88
+ <g
89
+ aria-label="SPREEWALD"
90
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
91
+ id="text1385">
92
+ <path
93
+ d="m 2.7093332,52.518951 q 0.650875,0 1.1377083,0.142875 0.4868334,0.142875 0.7831667,0.301625 0.2963333,0.15875 0.3598333,0.211667 l -0.762,1.275291 q -0.084667,-0.0635 -0.2910416,-0.185208 -0.2010833,-0.121708 -0.4815417,-0.216958 -0.2751666,-0.09525 -0.5767916,-0.09525 -0.4074583,0 -0.6614583,0.148166 -0.2487084,0.142875 -0.2487084,0.428625 0,0.195792 0.1322917,0.354542 0.1375833,0.153458 0.41275,0.296333 0.2804583,0.137584 0.7090833,0.301625 0.3915833,0.142875 0.7355416,0.338667 0.3439584,0.195792 0.60325,0.465667 0.2645834,0.264583 0.4180417,0.613833 0.1534583,0.34925 0.1534583,0.79375 0,0.529167 -0.2169583,0.92075 -0.2169583,0.386292 -0.5926667,0.640292 -0.3704166,0.254 -0.8466666,0.375708 -0.4709583,0.127 -0.9789583,0.127 -0.7196667,0 -1.2911666,-0.164042 -0.56620835,-0.164041 -0.91545834,-0.354541 -0.34924999,-0.1905 -0.41804166,-0.254 l 0.78845831,-1.328209 q 0.0635,0.04762 0.24341666,0.153459 0.18520833,0.105833 0.44979163,0.22225 0.2645833,0.111125 0.5609167,0.1905 0.301625,0.07937 0.5926666,0.07937 0.4868333,0 0.73025,-0.185209 0.2434167,-0.1905 0.2434167,-0.497416 0,-0.227542 -0.1534584,-0.407459 Q 3.1749999,57.032743 2.8680832,56.873993 2.5611666,56.709951 2.1007916,56.530034 1.6404166,56.344826 1.23825,56.080243 0.84137497,55.815659 0.59266665,55.418784 0.34395832,55.021909 0.34395832,54.434534 q 0,-0.587375 0.32808332,-1.016 0.33337496,-0.433916 0.87312496,-0.66675 0.5450417,-0.232833 1.1641666,-0.232833 z"
94
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
95
+ id="path822" />
96
+ <path
97
+ d="m 6.0959969,52.645951 h 2.54 q 0.6720416,0 1.2117916,0.238125 0.5397495,0.232833 0.8572495,0.714375 0.322792,0.47625 0.322792,1.195917 0,0.714375 -0.322792,1.217083 -0.3175,0.497417 -0.8572495,0.762 -0.53975,0.259292 -1.2117916,0.259292 H 7.6782052 v 2.598208 H 6.0959969 Z m 1.5822083,3.137958 h 0.5185833 q 0.3227917,0 0.5767917,-0.09525 0.2592916,-0.09525 0.41275,-0.301625 0.1534583,-0.211666 0.1534583,-0.555625 0,-0.34925 -0.1534583,-0.550333 -0.1534584,-0.206375 -0.41275,-0.296333 -0.254,-0.08996 -0.5767917,-0.08996 H 7.6782052 Z"
98
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
99
+ id="path824" />
100
+ <path
101
+ d="m 11.906241,52.645951 h 2.846917 q 0.608542,0 1.084791,0.254 0.47625,0.254 0.751417,0.735542 0.280458,0.47625 0.280458,1.137708 0,0.661458 -0.238125,1.084792 -0.232833,0.418041 -0.560916,0.629708 -0.328083,0.206375 -0.608542,0.248708 l 1.698625,2.894542 h -1.778 L 13.86945,56.858118 h -0.381 v 2.772833 h -1.582209 z m 1.582209,3.116792 h 0.6985 q 0.423333,0 0.740833,-0.206375 0.3175,-0.206375 0.3175,-0.73025 0,-0.523875 -0.312208,-0.724959 -0.312209,-0.206375 -0.735542,-0.206375 H 13.48845 Z"
102
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
103
+ id="path826" />
104
+ <path
105
+ d="m 18.198027,52.645951 h 4.460875 v 1.386417 h -2.883959 v 1.423458 h 2.8575 v 1.344083 h -2.8575 v 1.444625 h 2.883959 v 1.386417 h -4.460875 z"
106
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
107
+ id="path828" />
108
+ <path
109
+ d="m 23.854799,52.645951 h 4.460875 v 1.386417 h -2.883958 v 1.423458 h 2.8575 v 1.344083 h -2.8575 v 1.444625 h 2.883958 v 1.386417 h -4.460875 z"
110
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
111
+ id="path830" />
112
+ <path
113
+ d="m 36.665905,59.630951 h -1.899708 l -1.185333,-4.873625 h 0.28575 l -1.185334,4.873625 h -1.910291 l -1.592792,-6.985 h 1.815042 l 0.841375,4.900083 h -0.02117 l 1.312333,-4.900083 h 1.190625 l 1.317625,4.900083 h -0.02117 l 0.841374,-4.900083 h 1.815042 z"
114
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
115
+ id="path832" />
116
+ <path
117
+ d="m 40.78809,52.645951 h 1.571625 l 2.756958,6.985 h -1.688042 l -0.508,-1.402292 h -2.688166 l -0.513292,1.402292 H 38.02584 Z m -0.02646,4.196292 h 1.635125 l -0.809625,-2.291292 h -0.01588 z"
118
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
119
+ id="path834" />
120
+ <path
121
+ d="m 45.714619,52.645951 h 1.582208 v 5.598583 h 2.534708 v 1.386417 h -4.116916 z"
122
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
123
+ id="path836" />
124
+ <path
125
+ d="m 50.873989,52.645951 h 2.100792 q 1.116542,0 1.846792,0.449792 0.735541,0.4445 1.100666,1.232958 0.365125,0.788458 0.365125,1.804458 0,1.021292 -0.365125,1.80975 -0.365125,0.788459 -1.100666,1.23825 -0.73025,0.449792 -1.846792,0.449792 h -2.100792 z m 1.576917,1.402292 v 4.180416 h 0.381 q 0.597958,0 0.989542,-0.269875 0.391583,-0.275166 0.587375,-0.746125 0.201083,-0.47625 0.201083,-1.068916 0,-0.597959 -0.195792,-1.068917 -0.1905,-0.47625 -0.587375,-0.751417 -0.396875,-0.275166 -0.994833,-0.275166 z"
126
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332"
127
+ id="path838" />
128
+ </g>
129
+ <rect
130
+ style="fill:url(#linearGradient1408);fill-opacity:1;stroke:none;stroke-width:0.0272374;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
131
+ id="rect1387"
132
+ width="56.27034"
133
+ height="1.2668874"
134
+ x="-3.5688103e-15"
135
+ y="65.308289" />
136
+ </g>
137
+ </svg>
@@ -0,0 +1,107 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="56.414364mm"
14
+ height="14.056225mm"
15
+ viewBox="0 0 56.414362 14.056225"
16
+ version="1.1"
17
+ id="svg838"
18
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
19
+ sodipodi:docname="logo.dark.text.svg"
20
+ inkscape:export-filename="/home/henning/Projects/capybara-lockstep/media/capybara-lockstep.dark.png"
21
+ inkscape:export-xdpi="196"
22
+ inkscape:export-ydpi="196">
23
+ <defs
24
+ id="defs832">
25
+ <linearGradient
26
+ inkscape:collect="always"
27
+ id="linearGradient1406">
28
+ <stop
29
+ style="stop-color:#ff0844;stop-opacity:1"
30
+ offset="0"
31
+ id="stop1402" />
32
+ <stop
33
+ style="stop-color:#ffb199;stop-opacity:1"
34
+ offset="1"
35
+ id="stop1404" />
36
+ </linearGradient>
37
+ <linearGradient
38
+ inkscape:collect="always"
39
+ xlink:href="#linearGradient1406"
40
+ id="linearGradient1408"
41
+ x1="22.054907"
42
+ y1="91.071762"
43
+ x2="88.956696"
44
+ y2="91.071762"
45
+ gradientUnits="userSpaceOnUse"
46
+ gradientTransform="matrix(0.84108881,0,0,0.08820435,-18.550136,57.908781)" />
47
+ </defs>
48
+ <sodipodi:namedview
49
+ id="base"
50
+ pagecolor="#ffffff"
51
+ bordercolor="#666666"
52
+ borderopacity="1.0"
53
+ inkscape:pageopacity="0.0"
54
+ inkscape:pageshadow="2"
55
+ inkscape:zoom="3.959798"
56
+ inkscape:cx="215.87243"
57
+ inkscape:cy="25.711802"
58
+ inkscape:document-units="mm"
59
+ inkscape:current-layer="layer1"
60
+ showgrid="false"
61
+ fit-margin-top="0"
62
+ fit-margin-left="0"
63
+ fit-margin-right="0"
64
+ fit-margin-bottom="0"
65
+ inkscape:window-width="2560"
66
+ inkscape:window-height="1391"
67
+ inkscape:window-x="1920"
68
+ inkscape:window-y="0"
69
+ inkscape:window-maximized="1"
70
+ inkscape:pagecheckerboard="true" />
71
+ <metadata
72
+ id="metadata835">
73
+ <rdf:RDF>
74
+ <cc:Work
75
+ rdf:about="">
76
+ <dc:format>image/svg+xml</dc:format>
77
+ <dc:type
78
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
79
+ <dc:title></dc:title>
80
+ </cc:Work>
81
+ </rdf:RDF>
82
+ </metadata>
83
+ <g
84
+ inkscape:label="Layer 1"
85
+ inkscape:groupmode="layer"
86
+ id="layer1"
87
+ transform="translate(0.127,-52.518951)">
88
+ <text
89
+ xml:space="preserve"
90
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
91
+ x="-0.27516666"
92
+ y="59.630951"
93
+ id="text1385"><tspan
94
+ sodipodi:role="line"
95
+ id="tspan1383"
96
+ x="-0.27516666"
97
+ y="59.630951"
98
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#ffffff;fill-opacity:1;stroke-width:0.26458332">SPREEWALD</tspan></text>
99
+ <rect
100
+ style="fill:url(#linearGradient1408);fill-opacity:1;stroke:none;stroke-width:0.0272374;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
101
+ id="rect1387"
102
+ width="56.27034"
103
+ height="1.2668874"
104
+ x="-3.5688103e-15"
105
+ y="65.308289" />
106
+ </g>
107
+ </svg>
@@ -0,0 +1,136 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="56.414364mm"
14
+ height="14.056225mm"
15
+ viewBox="0 0 56.414362 14.056225"
16
+ version="1.1"
17
+ id="svg838"
18
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
19
+ sodipodi:docname="logo.light.shapes.svg"
20
+ inkscape:export-filename="/home/henning/Projects/capybara-lockstep/media/capybara-lockstep3.light.png"
21
+ inkscape:export-xdpi="196"
22
+ inkscape:export-ydpi="196">
23
+ <defs
24
+ id="defs832">
25
+ <linearGradient
26
+ inkscape:collect="always"
27
+ id="linearGradient1406">
28
+ <stop
29
+ style="stop-color:#ff0844;stop-opacity:1"
30
+ offset="0"
31
+ id="stop1402" />
32
+ <stop
33
+ style="stop-color:#ffb199;stop-opacity:1"
34
+ offset="1"
35
+ id="stop1404" />
36
+ </linearGradient>
37
+ <linearGradient
38
+ inkscape:collect="always"
39
+ xlink:href="#linearGradient1406"
40
+ id="linearGradient1408"
41
+ x1="22.054907"
42
+ y1="91.071762"
43
+ x2="88.956696"
44
+ y2="91.071762"
45
+ gradientUnits="userSpaceOnUse"
46
+ gradientTransform="matrix(0.84141155,0,0,0.08820435,-18.573959,57.908781)" />
47
+ </defs>
48
+ <sodipodi:namedview
49
+ id="base"
50
+ pagecolor="#ffffff"
51
+ bordercolor="#666666"
52
+ borderopacity="1.0"
53
+ inkscape:pageopacity="0.0"
54
+ inkscape:pageshadow="2"
55
+ inkscape:zoom="1.979899"
56
+ inkscape:cx="-16.812599"
57
+ inkscape:cy="13.565714"
58
+ inkscape:document-units="mm"
59
+ inkscape:current-layer="layer1"
60
+ showgrid="false"
61
+ fit-margin-top="0"
62
+ fit-margin-left="0"
63
+ fit-margin-right="0"
64
+ fit-margin-bottom="0"
65
+ inkscape:window-width="2560"
66
+ inkscape:window-height="1391"
67
+ inkscape:window-x="1920"
68
+ inkscape:window-y="0"
69
+ inkscape:window-maximized="1" />
70
+ <metadata
71
+ id="metadata835">
72
+ <rdf:RDF>
73
+ <cc:Work
74
+ rdf:about="">
75
+ <dc:format>image/svg+xml</dc:format>
76
+ <dc:type
77
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
78
+ <dc:title></dc:title>
79
+ </cc:Work>
80
+ </rdf:RDF>
81
+ </metadata>
82
+ <g
83
+ inkscape:label="Layer 1"
84
+ inkscape:groupmode="layer"
85
+ id="layer1"
86
+ transform="translate(0.127,-52.518951)">
87
+ <g
88
+ aria-label="SPREEWALD"
89
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';letter-spacing:0px;word-spacing:0px;fill:#141210;fill-opacity:1;stroke:none;stroke-width:0.26458332"
90
+ id="text1385">
91
+ <path
92
+ d="m 2.7093332,52.518951 q 0.650875,0 1.1377083,0.142875 0.4868334,0.142875 0.7831667,0.301625 0.2963333,0.15875 0.3598333,0.211667 l -0.762,1.275291 q -0.084667,-0.0635 -0.2910416,-0.185208 -0.2010833,-0.121708 -0.4815417,-0.216958 -0.2751666,-0.09525 -0.5767916,-0.09525 -0.4074583,0 -0.6614583,0.148166 -0.2487084,0.142875 -0.2487084,0.428625 0,0.195792 0.1322917,0.354542 0.1375833,0.153458 0.41275,0.296333 0.2804583,0.137584 0.7090833,0.301625 0.3915833,0.142875 0.7355416,0.338667 0.3439584,0.195792 0.60325,0.465667 0.2645834,0.264583 0.4180417,0.613833 0.1534583,0.34925 0.1534583,0.79375 0,0.529167 -0.2169583,0.92075 -0.2169583,0.386292 -0.5926667,0.640292 -0.3704166,0.254 -0.8466666,0.375708 -0.4709583,0.127 -0.9789583,0.127 -0.7196667,0 -1.2911666,-0.164042 -0.56620835,-0.164041 -0.91545834,-0.354541 -0.34924999,-0.1905 -0.41804166,-0.254 l 0.78845831,-1.328209 q 0.0635,0.04762 0.24341666,0.153459 0.18520833,0.105833 0.44979163,0.22225 0.2645833,0.111125 0.5609167,0.1905 0.301625,0.07937 0.5926666,0.07937 0.4868333,0 0.73025,-0.185209 0.2434167,-0.1905 0.2434167,-0.497416 0,-0.227542 -0.1534584,-0.407459 Q 3.1749999,57.032743 2.8680832,56.873993 2.5611666,56.709951 2.1007916,56.530034 1.6404166,56.344826 1.23825,56.080243 0.84137497,55.815659 0.59266665,55.418784 0.34395832,55.021909 0.34395832,54.434534 q 0,-0.587375 0.32808332,-1.016 0.33337496,-0.433916 0.87312496,-0.66675 0.5450417,-0.232833 1.1641666,-0.232833 z"
93
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
94
+ id="path822" />
95
+ <path
96
+ d="m 6.0959969,52.645951 h 2.54 q 0.6720416,0 1.2117916,0.238125 0.5397495,0.232833 0.8572495,0.714375 0.322792,0.47625 0.322792,1.195917 0,0.714375 -0.322792,1.217083 -0.3175,0.497417 -0.8572495,0.762 -0.53975,0.259292 -1.2117916,0.259292 H 7.6782052 v 2.598208 H 6.0959969 Z m 1.5822083,3.137958 h 0.5185833 q 0.3227917,0 0.5767917,-0.09525 0.2592916,-0.09525 0.41275,-0.301625 0.1534583,-0.211666 0.1534583,-0.555625 0,-0.34925 -0.1534583,-0.550333 -0.1534584,-0.206375 -0.41275,-0.296333 -0.254,-0.08996 -0.5767917,-0.08996 H 7.6782052 Z"
97
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
98
+ id="path824" />
99
+ <path
100
+ d="m 11.906241,52.645951 h 2.846917 q 0.608542,0 1.084791,0.254 0.47625,0.254 0.751417,0.735542 0.280458,0.47625 0.280458,1.137708 0,0.661458 -0.238125,1.084792 -0.232833,0.418041 -0.560916,0.629708 -0.328083,0.206375 -0.608542,0.248708 l 1.698625,2.894542 h -1.778 L 13.86945,56.858118 h -0.381 v 2.772833 h -1.582209 z m 1.582209,3.116792 h 0.6985 q 0.423333,0 0.740833,-0.206375 0.3175,-0.206375 0.3175,-0.73025 0,-0.523875 -0.312208,-0.724959 -0.312209,-0.206375 -0.735542,-0.206375 H 13.48845 Z"
101
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
102
+ id="path826" />
103
+ <path
104
+ d="m 18.198027,52.645951 h 4.460875 v 1.386417 h -2.883959 v 1.423458 h 2.8575 v 1.344083 h -2.8575 v 1.444625 h 2.883959 v 1.386417 h -4.460875 z"
105
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
106
+ id="path828" />
107
+ <path
108
+ d="m 23.854799,52.645951 h 4.460875 v 1.386417 h -2.883958 v 1.423458 h 2.8575 v 1.344083 h -2.8575 v 1.444625 h 2.883958 v 1.386417 h -4.460875 z"
109
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
110
+ id="path830" />
111
+ <path
112
+ d="m 36.665905,59.630951 h -1.899708 l -1.185333,-4.873625 h 0.28575 l -1.185334,4.873625 h -1.910291 l -1.592792,-6.985 h 1.815042 l 0.841375,4.900083 h -0.02117 l 1.312333,-4.900083 h 1.190625 l 1.317625,4.900083 h -0.02117 l 0.841374,-4.900083 h 1.815042 z"
113
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
114
+ id="path832" />
115
+ <path
116
+ d="m 40.78809,52.645951 h 1.571625 l 2.756958,6.985 h -1.688042 l -0.508,-1.402292 h -2.688166 l -0.513292,1.402292 H 38.02584 Z m -0.02646,4.196292 h 1.635125 l -0.809625,-2.291292 h -0.01588 z"
117
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
118
+ id="path834" />
119
+ <path
120
+ d="m 45.714619,52.645951 h 1.582208 v 5.598583 h 2.534708 v 1.386417 h -4.116916 z"
121
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
122
+ id="path836" />
123
+ <path
124
+ d="m 50.873989,52.645951 h 2.100792 q 1.116542,0 1.846792,0.449792 0.735541,0.4445 1.100666,1.232958 0.365125,0.788458 0.365125,1.804458 0,1.021292 -0.365125,1.80975 -0.365125,0.788459 -1.100666,1.23825 -0.73025,0.449792 -1.846792,0.449792 h -2.100792 z m 1.576917,1.402292 v 4.180416 h 0.381 q 0.597958,0 0.989542,-0.269875 0.391583,-0.275166 0.587375,-0.746125 0.201083,-0.47625 0.201083,-1.068916 0,-0.597959 -0.195792,-1.068917 -0.1905,-0.47625 -0.587375,-0.751417 -0.396875,-0.275166 -0.994833,-0.275166 z"
125
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';fill:#141210;fill-opacity:1;stroke-width:0.26458332"
126
+ id="path838" />
127
+ </g>
128
+ <rect
129
+ style="fill:url(#linearGradient1408);fill-opacity:1;stroke:none;stroke-width:0.02724264;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
130
+ id="rect1387"
131
+ width="56.291939"
132
+ height="1.2668874"
133
+ x="-0.016704345"
134
+ y="65.308289" />
135
+ </g>
136
+ </svg>