capybara-lockstep 2.3.1 → 2.3.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b10f22c42f855e5a7ca55b34c6a7ab33da9712f8f345f4ff6278e93756aca6a6
4
- data.tar.gz: 670652bccdf353c723d0c3466be51bcccff00f9a189306a142caed2e10714f06
3
+ metadata.gz: cc60ce49170390b7a2160291bcee08a08a22bceacaf58e12b2f2bc5ebadf484e
4
+ data.tar.gz: dd6c60d318fe9f336462a3dcff507acf0120036d8ea160a97a5125ab94dc4248
5
5
  SHA512:
6
- metadata.gz: ef6f4cb2a0c2c105e29a99cbaf4f8c2467526b38741dd47a8eb772a4df440c7a0ef27f8e05958d4bbc07746c4e0d9a63763ebd52372db61efbddb81b1d1e90ba
7
- data.tar.gz: c309f4a88411eae4ea65645fe3d99a97a8558af368057aff51d06dd146f289c0ff8b1f3b5c48764200eeb9c221c1b5adc1ff3982428ff51b0699ebfe98f79f46
6
+ metadata.gz: fcf26ef14e209a4fd8f6353c129fe9b88b97feb58dd787ebccddc3e19980802ebec1403a374cf580c1798ecf3bc30e365eba1218f40d3b0af3bbbc6f80ca9904
7
+ data.tar.gz: f8db9ee7dbc655724cab11b6f2e3a181ae182579ba78b5f193174b7a78951f407275e49dbceec0b10b4f41cb9abbdc28233a271b781ba686f4bc030e2b932c35
data/CHANGELOG.md CHANGED
@@ -13,9 +13,25 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
13
13
  -
14
14
 
15
15
 
16
- ## 2.3.1 - 2026-02-17
16
+ # 2.3.2 - 2026-09-11
17
17
 
18
- ### Compatible changes
18
+ ## Compatible changes
19
+
20
+ - Treat a Selenium `UnknownError` carrying the CDP message `Promise was collected` as a benign "navigated away" event,
21
+ - like the existing `document unloaded` `JavascriptError`. Newer Chrome (141+) with selenium-webdriver 4.41 reports
22
+ - a destroyed JS execution context (e.g. Turbo frame swaps, SPA navigations) this way, which previously surfaced as
23
+ - a flaky, hard-to-diagnose test failure.
24
+ - Skip client synchronization when the effective timeout is not positive. Capybara evaluates filter blocks
25
+ - (e.g. `has_css?('.foo') { |node| node.has_field?('bar') }`) with `using_wait_time(0)`. A nested lookup inside such
26
+ - a block triggered a synchronization with a timeout of 0 when the client was out of sync (e.g. after a timed-out
27
+ - synchronization or on a page without the capybara-lockstep snippet). Capybara's Selenium driver persisted that 0
28
+ - as the WebDriver script timeout, so every later script-based command (including Capybara's visibility checks)
29
+ - failed with `Selenium::WebDriver::Error::ScriptTimeoutError`. This only affected the default configuration
30
+ - (`Capybara::Lockstep.timeout = nil`).
31
+
32
+ # 2.3.1 - 2026-02-17
33
+
34
+ ## Compatible changes
19
35
 
20
36
  - Add tests for Ruby 4.0
21
37
  - Increase `required_ruby_version` and `activesupport` minimum version in gemspec so people
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capybara-lockstep (2.3.1)
4
+ capybara-lockstep (2.3.2)
5
5
  activesupport (>= 7.0)
6
6
  capybara (>= 3.0)
7
7
 
data/README.md CHANGED
@@ -342,6 +342,8 @@ Capybara::Lockstep.timeout = 5 # seconds
342
342
 
343
343
  By default Capybara will **not** raise an error after a timeout. You may occasionally get a slow server response, and Capybara will retry synchronization before the next interaction or `visit`. This is often good enough.
344
344
 
345
+ When the effective timeout is `0` (e.g. inside a Capybara filter block, which Capybara evaluates with `using_wait_time(0)`), capybara-lockstep skips the synchronization, logs `Cannot synchronize client with a timeout of 0 seconds` and retries on the next interaction.
346
+
345
347
  If you want to be strict you may configure that an `Capybara::Lockstep::Timeout` error is raised after a timeout:
346
348
 
347
349
  ```ruby
@@ -5,32 +5,26 @@ Gem::Specification.new do |spec|
5
5
  spec.version = Capybara::Lockstep::VERSION
6
6
  spec.authors = ["Henning Koch"]
7
7
  spec.email = ["henning.koch@makandra.de"]
8
-
9
- spec.summary = "Synchronize Capybara commands with client-side JavaScript and AJAX requests"
10
8
  spec.homepage = "https://github.com/makandra/capybara-lockstep"
9
+ spec.summary = "Synchronize Capybara commands with client-side JavaScript and AJAX requests"
11
10
  spec.license = "MIT"
12
- spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
13
11
 
14
- spec.metadata["homepage_uri"] = spec.homepage
15
- spec.metadata["source_code_uri"] = spec.homepage
12
+ spec.metadata = {
13
+ "homepage_uri" => spec.homepage,
14
+ "source_code_uri" => spec.homepage,
15
+ "bug_tracker_uri" => "#{spec.homepage}/issues",
16
+ "changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md",
17
+ "rubygems_mfa_required" => 'true',
18
+ }
16
19
 
17
- spec.metadata["bug_tracker_uri"] = "https://github.com/makandra/capybara-lockstep/issues"
18
- spec.metadata["changelog_uri"] = "https://github.com/makandra/capybara-lockstep/blob/main/CHANGELOG.md"
19
- spec.metadata["rubygems_mfa_required"] = 'true'
20
+ spec.files = `git ls-files`.split("\n").select { |f| !File.symlink?(f) && !f.match(%r{^(spec|dev|media|.github)/}) }
21
+ spec.require_paths = ["lib"]
20
22
 
21
- # Specify which files should be added to the gem when it is released.
22
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
25
- end
26
23
  spec.bindir = "exe"
27
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
- spec.require_paths = ["lib"]
24
+ spec.executables = []
25
+
26
+ spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
29
27
 
30
- # Uncomment to register a new dependency of your gem
31
28
  spec.add_dependency "capybara", ">= 3.0"
32
29
  spec.add_dependency "activesupport", ">= 7.0"
33
-
34
- # For more information and examples about making a new gem, checkout our
35
- # guide at: https://bundler.io/guides/creating_gem.html
36
30
  end
@@ -32,6 +32,22 @@ module Capybara
32
32
  else
33
33
  unhandled_synchronize_error(e)
34
34
  end
35
+ rescue ::Selenium::WebDriver::Error::UnknownError => e
36
+ # Newer Chrome (e.g. chrome-headless-shell 141) with selenium-webdriver 4.41
37
+ # reports the same "navigated away" condition differently than the older
38
+ # JavascriptError "document unloaded" message handled above. When an interaction
39
+ # destroys the JS execution context that owns our pending async probe (a Turbo
40
+ # frame swap or an SPA navigation), the promise can never resolve and the driver
41
+ # raises a Selenium::WebDriver::Error::UnknownError wrapping the CDP error:
42
+ # 'unknown error: unhandled inspector error: {"code":-32000,"message":"Promise was collected"}'.
43
+ # Treat this symmetrically to the 'unload' branch above: leave the client
44
+ # unsynchronized and retry on the next Capybara synchronize call, by then we
45
+ # should see the new page. Any other UnknownError is still unexpected and re-raised.
46
+ if e.message.include?('Promise was collected')
47
+ log ERROR_NAVIGATED_AWAY
48
+ else
49
+ unhandled_synchronize_error(e)
50
+ end
35
51
  rescue StandardError => e
36
52
  unhandled_synchronize_error(e)
37
53
  end
@@ -37,6 +37,18 @@ module Capybara
37
37
  # If synchronization fails below we consider us unsynchronized after.
38
38
  self.synchronized = false
39
39
 
40
+ # Capybara evaluates filter blocks with `using_wait_time(0)`. Our default timeout is
41
+ # Capybara.default_max_wait_time, so a nested lookup inside such a block would try
42
+ # to synchronize with a timeout of 0. An async script can never finish within 0 seconds,
43
+ # and Capybara's Selenium driver would persist that 0 as the WebDriver script timeout,
44
+ # breaking every later script-based command with a ScriptTimeoutError.
45
+ if timeout <= 0
46
+ log "Cannot synchronize client with a timeout of #{timeout} seconds"
47
+ # Don't raise an error, this will happen in an innocent test.
48
+ # We will retry on the next Capybara synchronize call with a real timeout.
49
+ return
50
+ end
51
+
40
52
  # Running the synchronization script while an alert is open would close the alert,
41
53
  # most likely causing subsequent expectations to fail.
42
54
  if alert_present?
@@ -25,8 +25,6 @@ module Capybara
25
25
  false
26
26
  end
27
27
 
28
- private
29
-
30
28
  def selenium_driver?
31
29
  defined?(Capybara::Selenium::Driver) && driver.is_a?(Capybara::Selenium::Driver)
32
30
  end
@@ -35,7 +33,6 @@ module Capybara
35
33
  defined?(Capybara::Cuprite::Driver) && driver.is_a?(Capybara::Cuprite::Driver)
36
34
  end
37
35
 
38
-
39
36
  end
40
37
  end
41
38
  end
@@ -1,5 +1,5 @@
1
1
  module Capybara
2
2
  module Lockstep
3
- VERSION = "2.3.1"
3
+ VERSION = "2.3.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capybara-lockstep
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
@@ -43,7 +43,6 @@ executables: []
43
43
  extensions: []
44
44
  extra_rdoc_files: []
45
45
  files:
46
- - ".github/workflows/test.yml"
47
46
  - ".gitignore"
48
47
  - ".rspec"
49
48
  - ".ruby-version"
@@ -72,12 +71,6 @@ files:
72
71
  - lib/capybara-lockstep/server.rb
73
72
  - lib/capybara-lockstep/util.rb
74
73
  - lib/capybara-lockstep/version.rb
75
- - media/logo.dark.shapes.svg
76
- - media/logo.dark.text.svg
77
- - media/logo.light.shapes.svg
78
- - media/logo.light.text.svg
79
- - media/makandra-with-bottom-margin.dark.svg
80
- - media/makandra-with-bottom-margin.light.svg
81
74
  - tasks/spec_tasks.rb
82
75
  homepage: https://github.com/makandra/capybara-lockstep
83
76
  licenses:
@@ -1,64 +0,0 @@
1
- ---
2
- name: Tests
3
- on:
4
- push:
5
- branches:
6
- - main
7
- pull_request:
8
- branches:
9
- - main
10
- workflow_dispatch:
11
- branches:
12
- - main
13
- jobs:
14
- test:
15
- runs-on: ubuntu-24.04
16
- timeout-minutes: 3
17
- strategy:
18
- fail-fast: false
19
- matrix:
20
- include:
21
- - ruby: 3.2.0
22
- gemfile: Gemfile
23
- capybara_driver: selenium
24
- - ruby: 3.2.0
25
- gemfile: Gemfile
26
- capybara_driver: cuprite
27
- - ruby: 3.4.1
28
- gemfile: Gemfile
29
- capybara_driver: selenium
30
- - ruby: 3.4.1
31
- gemfile: Gemfile
32
- capybara_driver: cuprite
33
- - ruby: 4.0.1
34
- gemfile: Gemfile
35
- capybara_driver: selenium
36
- - ruby: 4.0.1
37
- gemfile: Gemfile
38
- capybara_driver: cuprite
39
- env:
40
- BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
41
- CAPYBARA_DRIVER: "${{ matrix.capybara_driver }}"
42
- steps:
43
- - uses: actions/checkout@v3
44
- - name: Install Chrome
45
- uses: browser-actions/setup-chrome@latest
46
- - name: Show Chrome version
47
- run: chrome --version
48
- - name: Install ChromeDriver
49
- uses: nanasess/setup-chromedriver@master
50
- if: "${{ matrix.capybara_driver == 'selenium' }}"
51
- - name: Install ruby
52
- uses: ruby/setup-ruby@v1
53
- with:
54
- ruby-version: "${{ matrix.ruby }}"
55
- - name: Bundle
56
- run: |
57
- gem install bundler:2.3.1
58
- bundle install --no-deployment
59
- - name: Run tests
60
- uses: nick-invision/retry@v2
61
- with:
62
- timeout_seconds: 30
63
- max_attempts: 3
64
- command: bundle exec rake spec
@@ -1,169 +0,0 @@
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="103.71816mm"
14
- height="14.056225mm"
15
- viewBox="0 0 103.71816 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(1.5503049,0,0,0.08820435,-34.191832,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="2.8"
56
- inkscape:cx="120.47146"
57
- inkscape:cy="-25.333161"
58
- inkscape:document-units="mm"
59
- inkscape:current-layer="text1385"
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,-52.518951)">
88
- <g
89
- aria-label="CAPYBARA-LOCKSTEP"
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 3.8629165,58.191618 q 0.4868334,0 0.8837084,-0.142875 0.4021666,-0.142875 0.5979583,-0.280459 l 0.6773333,1.344084 q -0.2487083,0.211666 -0.8519583,0.428625 -0.5979583,0.216958 -1.4234583,0.216958 -0.7725833,0 -1.4499166,-0.269875 Q 1.6192499,59.218201 1.1006666,58.731368 0.58737498,58.239243 0.29104166,57.583076 0,56.921618 0,56.149034 0,55.376451 0.29104166,54.714993 0.58208331,54.048243 1.095375,53.556118 q 0.5185833,-0.492125 1.1959166,-0.762 0.682625,-0.275167 1.4552083,-0.275167 0.8255,0 1.4234583,0.216958 0.60325,0.216959 0.8519583,0.428625 L 5.3445832,54.508618 Q 5.1487915,54.365743 4.7466249,54.228159 4.3497499,54.085284 3.8629165,54.085284 q -0.5397499,0 -0.9419166,0.169334 -0.4021666,0.164041 -0.6720416,0.455083 -0.269875,0.291042 -0.4021667,0.656167 -0.1322917,0.365125 -0.1322917,0.767291 0,0.407459 0.1322917,0.777875 0.1322917,0.365125 0.4021667,0.656167 0.269875,0.291042 0.6720416,0.460375 0.4021667,0.164042 0.9419166,0.164042 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 9.2498207,52.645951 h 1.5716253 l 2.756958,6.985 h -1.688042 l -0.508,-1.402292 H 8.6941957 L 8.180904,59.630951 H 6.4875707 Z m -0.026458,4.196292 h 1.6351247 l -0.809625,-2.291292 h -0.01587 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 14.144601,52.645951 h 2.54 q 0.672042,0 1.211792,0.238125 0.53975,0.232833 0.85725,0.714375 0.322792,0.47625 0.322792,1.195917 0,0.714375 -0.322792,1.217083 -0.3175,0.497417 -0.85725,0.762 -0.53975,0.259292 -1.211792,0.259292 H 15.72681 v 2.598208 h -1.582209 z m 1.582209,3.137958 h 0.518583 q 0.322792,0 0.576792,-0.09525 0.259291,-0.09525 0.41275,-0.301625 0.153458,-0.211666 0.153458,-0.555625 0,-0.34925 -0.153458,-0.550333 -0.153459,-0.206375 -0.41275,-0.296333 -0.254,-0.08996 -0.576792,-0.08996 H 15.72681 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 21.769887,57.117409 -2.407708,-4.471458 h 1.920875 l 1.275291,2.661708 1.280584,-2.661708 h 1.910291 l -2.397125,4.471458 v 2.513542 h -1.582208 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 26.384201,52.645951 h 2.397125 q 0.597958,0 1.105958,0.164042 0.513292,0.164041 0.8255,0.53975 0.3175,0.370416 0.3175,1.005416 0,0.418042 -0.15875,0.746125 -0.153458,0.328084 -0.41275,0.53975 -0.254,0.206375 -0.555625,0.275167 0.264583,0.03175 0.513292,0.153458 0.254,0.116417 0.455083,0.328084 0.206375,0.206375 0.322792,0.518583 0.121708,0.306917 0.121708,0.73025 0,0.587375 -0.264583,1.037167 -0.259292,0.4445 -0.762,0.6985 -0.497417,0.248708 -1.222375,0.248708 h -2.682875 z m 1.582208,5.720292 h 0.719667 q 0.338667,0 0.550333,-0.100542 0.216958,-0.105833 0.3175,-0.296333 0.100542,-0.195792 0.100542,-0.465667 0,-0.423333 -0.264584,-0.619125 -0.259291,-0.201083 -0.730249,-0.201083 h -0.693209 z m 0,-2.921 h 0.640292 q 0.280458,0 0.465667,-0.100542 0.190499,-0.100542 0.285749,-0.280458 0.100542,-0.185209 0.100542,-0.423334 0,-0.428625 -0.243416,-0.576791 -0.243417,-0.153459 -0.66675,-0.153459 h -0.582084 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 34.438084,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 -1.693333 z m -0.02646,4.196292 h 1.635125 l -0.809625,-2.291292 h -0.01588 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 39.290533,52.645951 h 2.846917 q 0.608541,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.560917,0.629708 -0.328083,0.206375 -0.608541,0.248708 l 1.698625,2.894542 h -1.778 l -1.513417,-2.772833 h -0.381 v 2.772833 h -1.582208 z m 1.582208,3.116792 h 0.6985 q 0.423334,0 0.740834,-0.206375 0.317499,-0.206375 0.317499,-0.73025 0,-0.523875 -0.312208,-0.724959 -0.312208,-0.206375 -0.735541,-0.206375 h -0.709084 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 47.339146,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 -1.693333 z m -0.02646,4.196292 h 1.635125 l -0.809625,-2.291292 h -0.01588 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 52.006369,57.905868 v -1.36525 h 2.725208 v 1.36525 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
- <path
129
- d="m 55.927475,52.645951 h 1.582208 v 5.598583 h 2.534708 v 1.386417 h -4.116916 z"
130
- 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"
131
- id="path840" />
132
- <path
133
- d="m 62.325091,56.133159 q 0,0.597959 0.243416,1.084792 0.248709,0.481542 0.682625,0.767292 0.439209,0.28575 1.016,0.28575 0.576792,0 1.010709,-0.28575 0.439208,-0.28575 0.682625,-0.767292 0.248708,-0.486833 0.248708,-1.084792 0,-0.597958 -0.248708,-1.0795 -0.243417,-0.481541 -0.682625,-0.767291 -0.433917,-0.291042 -1.010709,-0.291042 -0.576791,0 -1.016,0.291042 -0.433916,0.28575 -0.682625,0.767291 -0.243416,0.481542 -0.243416,1.0795 z m -1.645709,0 q 0,-0.762 0.269875,-1.418166 0.269875,-0.661459 0.756709,-1.153584 0.486833,-0.492125 1.143,-0.767291 0.656166,-0.275167 1.418166,-0.275167 0.772584,0 1.423459,0.275167 0.656166,0.275166 1.137708,0.767291 0.486833,0.492125 0.751417,1.153584 0.269875,0.656166 0.269875,1.418166 0,0.767292 -0.259292,1.42875 -0.259292,0.656167 -0.740833,1.153584 -0.481542,0.492125 -1.137709,0.767291 -0.656166,0.275167 -1.444625,0.275167 -0.804333,0 -1.465791,-0.275167 -0.656167,-0.275166 -1.132417,-0.767291 -0.47625,-0.497417 -0.735542,-1.153584 -0.254,-0.661458 -0.254,-1.42875 z"
134
- 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"
135
- id="path842" />
136
- <path
137
- d="m 72.453325,58.191618 q 0.486833,0 0.883708,-0.142875 0.402167,-0.142875 0.597958,-0.280459 l 0.677334,1.344084 q -0.248709,0.211666 -0.851958,0.428625 -0.597959,0.216958 -1.423459,0.216958 -0.772583,0 -1.449916,-0.269875 -0.677334,-0.269875 -1.195917,-0.756708 -0.513292,-0.492125 -0.809625,-1.148292 -0.291042,-0.661458 -0.291042,-1.434042 0,-0.772583 0.291042,-1.434041 0.291042,-0.66675 0.804333,-1.158875 0.518584,-0.492125 1.195917,-0.762 0.682625,-0.275167 1.455208,-0.275167 0.8255,0 1.423459,0.216958 0.603249,0.216959 0.851958,0.428625 l -0.677334,1.344084 q -0.195791,-0.142875 -0.597958,-0.280459 -0.396875,-0.142875 -0.883708,-0.142875 -0.53975,0 -0.941917,0.169334 -0.402166,0.164041 -0.672041,0.455083 -0.269875,0.291042 -0.402167,0.656167 -0.132292,0.365125 -0.132292,0.767291 0,0.407459 0.132292,0.777875 0.132292,0.365125 0.402167,0.656167 0.269875,0.291042 0.672041,0.460375 0.402167,0.164042 0.941917,0.164042 z"
138
- 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"
139
- id="path844" />
140
- <path
141
- d="m 78.427604,56.022034 2.656417,3.608917 h -1.889125 l -2.148417,-3.053292 v 3.053292 h -1.582208 v -6.985 h 1.582208 v 2.8575 l 1.979083,-2.8575 h 1.783292 z"
142
- 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"
143
- id="path846" />
144
- <path
145
- d="m 84.248426,52.518951 q 0.650875,0 1.137709,0.142875 0.486833,0.142875 0.783166,0.301625 0.296334,0.15875 0.359834,0.211667 l -0.762,1.275291 q -0.08467,-0.0635 -0.291042,-0.185208 -0.201083,-0.121708 -0.481542,-0.216958 -0.275166,-0.09525 -0.576791,-0.09525 -0.407459,0 -0.661459,0.148166 -0.248708,0.142875 -0.248708,0.428625 0,0.195792 0.132292,0.354542 0.137583,0.153458 0.41275,0.296333 0.280458,0.137584 0.709083,0.301625 0.391583,0.142875 0.735542,0.338667 0.343958,0.195792 0.60325,0.465667 0.264583,0.264583 0.418041,0.613833 0.153459,0.34925 0.153459,0.79375 0,0.529167 -0.216959,0.92075 -0.216958,0.386292 -0.592666,0.640292 -0.370417,0.254 -0.846667,0.375708 -0.470958,0.127 -0.978958,0.127 -0.719667,0 -1.291167,-0.164042 -0.566208,-0.164041 -0.915458,-0.354541 -0.34925,-0.1905 -0.418042,-0.254 l 0.788458,-1.328209 q 0.0635,0.04762 0.243417,0.153459 0.185208,0.105833 0.449792,0.22225 0.264583,0.111125 0.560916,0.1905 0.301625,0.07937 0.592667,0.07937 0.486833,0 0.73025,-0.185209 0.243417,-0.1905 0.243417,-0.497416 0,-0.227542 -0.153459,-0.407459 -0.153458,-0.179916 -0.460375,-0.338666 -0.306916,-0.164042 -0.767291,-0.343959 -0.460375,-0.185208 -0.862542,-0.449791 -0.396875,-0.264584 -0.645583,-0.661459 -0.248709,-0.396875 -0.248709,-0.98425 0,-0.587375 0.328084,-1.016 0.333375,-0.433916 0.873125,-0.66675 0.545041,-0.232833 1.164166,-0.232833 z"
146
- 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"
147
- id="path848" />
148
- <path
149
- d="m 88.926256,54.032368 h -1.666875 v -1.386417 h 4.910667 v 1.386417 h -1.661584 v 5.598583 h -1.582208 z"
150
- 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"
151
- id="path850" />
152
- <path
153
- d="m 93.021982,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"
154
- 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"
155
- id="path852" />
156
- <path
157
- d="m 98.689342,52.645951 h 2.539998 q 0.67204,0 1.21179,0.238125 0.53975,0.232833 0.85725,0.714375 0.3228,0.47625 0.3228,1.195917 0,0.714375 -0.3228,1.217083 -0.3175,0.497417 -0.85725,0.762 -0.53975,0.259292 -1.21179,0.259292 h -0.95779 v 2.598208 h -1.582208 z m 1.582208,3.137958 h 0.51858 q 0.3228,0 0.5768,-0.09525 0.25929,-0.09525 0.41275,-0.301625 0.15345,-0.211666 0.15345,-0.555625 0,-0.34925 -0.15345,-0.550333 -0.15346,-0.206375 -0.41275,-0.296333 -0.254,-0.08996 -0.5768,-0.08996 h -0.51858 z"
158
- 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"
159
- id="path854" />
160
- </g>
161
- <rect
162
- style="fill:url(#linearGradient1408);fill-opacity:1;stroke:none;stroke-width:0.03697885;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
163
- id="rect1387"
164
- width="103.71816"
165
- height="1.2668874"
166
- x="-3.5527137e-15"
167
- y="65.308289" />
168
- </g>
169
- </svg>
@@ -1,107 +0,0 @@
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="103.71816mm"
14
- height="14.056225mm"
15
- viewBox="0 0 103.71816 14.056225"
16
- version="1.1"
17
- id="svg838"
18
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
19
- sodipodi:docname="capybara-lockstep.dark.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(1.5503049,0,0,0.08820435,-34.191832,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="2.8"
56
- inkscape:cx="183.50717"
57
- inkscape:cy="-23.90459"
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="1920"
66
- inkscape:window-height="1151"
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,-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';stroke-width:0.26458332;fill:#ffffff;fill-opacity:1;">CAPYBARA-LOCKSTEP</tspan></text>
99
- <rect
100
- style="fill:url(#linearGradient1408);fill-opacity:1;stroke:none;stroke-width:0.03697885;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
101
- id="rect1387"
102
- width="103.71816"
103
- height="1.2668874"
104
- x="-3.5527137e-15"
105
- y="65.308289" />
106
- </g>
107
- </svg>
@@ -1,168 +0,0 @@
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="103.71816mm"
14
- height="14.056225mm"
15
- viewBox="0 0 103.71816 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(1.5503049,0,0,0.08820435,-34.191832,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="2.8"
56
- inkscape:cx="120.47146"
57
- inkscape:cy="-25.333161"
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,-52.518951)">
87
- <g
88
- aria-label="CAPYBARA-LOCKSTEP"
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 3.8629165,58.191618 q 0.4868334,0 0.8837084,-0.142875 0.4021666,-0.142875 0.5979583,-0.280459 l 0.6773333,1.344084 q -0.2487083,0.211666 -0.8519583,0.428625 -0.5979583,0.216958 -1.4234583,0.216958 -0.7725833,0 -1.4499166,-0.269875 Q 1.6192499,59.218201 1.1006666,58.731368 0.58737498,58.239243 0.29104166,57.583076 0,56.921618 0,56.149034 0,55.376451 0.29104166,54.714993 0.58208331,54.048243 1.095375,53.556118 q 0.5185833,-0.492125 1.1959166,-0.762 0.682625,-0.275167 1.4552083,-0.275167 0.8255,0 1.4234583,0.216958 0.60325,0.216959 0.8519583,0.428625 L 5.3445832,54.508618 Q 5.1487915,54.365743 4.7466249,54.228159 4.3497499,54.085284 3.8629165,54.085284 q -0.5397499,0 -0.9419166,0.169334 -0.4021666,0.164041 -0.6720416,0.455083 -0.269875,0.291042 -0.4021667,0.656167 -0.1322917,0.365125 -0.1322917,0.767291 0,0.407459 0.1322917,0.777875 0.1322917,0.365125 0.4021667,0.656167 0.269875,0.291042 0.6720416,0.460375 0.4021667,0.164042 0.9419166,0.164042 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 9.2498207,52.645951 h 1.5716253 l 2.756958,6.985 h -1.688042 l -0.508,-1.402292 H 8.6941957 L 8.180904,59.630951 H 6.4875707 Z m -0.026458,4.196292 h 1.6351247 l -0.809625,-2.291292 h -0.01587 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 14.144601,52.645951 h 2.54 q 0.672042,0 1.211792,0.238125 0.53975,0.232833 0.85725,0.714375 0.322792,0.47625 0.322792,1.195917 0,0.714375 -0.322792,1.217083 -0.3175,0.497417 -0.85725,0.762 -0.53975,0.259292 -1.211792,0.259292 H 15.72681 v 2.598208 h -1.582209 z m 1.582209,3.137958 h 0.518583 q 0.322792,0 0.576792,-0.09525 0.259291,-0.09525 0.41275,-0.301625 0.153458,-0.211666 0.153458,-0.555625 0,-0.34925 -0.153458,-0.550333 -0.153459,-0.206375 -0.41275,-0.296333 -0.254,-0.08996 -0.576792,-0.08996 H 15.72681 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 21.769887,57.117409 -2.407708,-4.471458 h 1.920875 l 1.275291,2.661708 1.280584,-2.661708 h 1.910291 l -2.397125,4.471458 v 2.513542 h -1.582208 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 26.384201,52.645951 h 2.397125 q 0.597958,0 1.105958,0.164042 0.513292,0.164041 0.8255,0.53975 0.3175,0.370416 0.3175,1.005416 0,0.418042 -0.15875,0.746125 -0.153458,0.328084 -0.41275,0.53975 -0.254,0.206375 -0.555625,0.275167 0.264583,0.03175 0.513292,0.153458 0.254,0.116417 0.455083,0.328084 0.206375,0.206375 0.322792,0.518583 0.121708,0.306917 0.121708,0.73025 0,0.587375 -0.264583,1.037167 -0.259292,0.4445 -0.762,0.6985 -0.497417,0.248708 -1.222375,0.248708 h -2.682875 z m 1.582208,5.720292 h 0.719667 q 0.338667,0 0.550333,-0.100542 0.216958,-0.105833 0.3175,-0.296333 0.100542,-0.195792 0.100542,-0.465667 0,-0.423333 -0.264584,-0.619125 -0.259291,-0.201083 -0.730249,-0.201083 h -0.693209 z m 0,-2.921 h 0.640292 q 0.280458,0 0.465667,-0.100542 0.190499,-0.100542 0.285749,-0.280458 0.100542,-0.185209 0.100542,-0.423334 0,-0.428625 -0.243416,-0.576791 -0.243417,-0.153459 -0.66675,-0.153459 h -0.582084 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 34.438084,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 -1.693333 z m -0.02646,4.196292 h 1.635125 l -0.809625,-2.291292 h -0.01588 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 39.290533,52.645951 h 2.846917 q 0.608541,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.560917,0.629708 -0.328083,0.206375 -0.608541,0.248708 l 1.698625,2.894542 h -1.778 l -1.513417,-2.772833 h -0.381 v 2.772833 h -1.582208 z m 1.582208,3.116792 h 0.6985 q 0.423334,0 0.740834,-0.206375 0.317499,-0.206375 0.317499,-0.73025 0,-0.523875 -0.312208,-0.724959 -0.312208,-0.206375 -0.735541,-0.206375 h -0.709084 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 47.339146,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 -1.693333 z m -0.02646,4.196292 h 1.635125 l -0.809625,-2.291292 h -0.01588 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 52.006369,57.905868 v -1.36525 h 2.725208 v 1.36525 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
- <path
128
- d="m 55.927475,52.645951 h 1.582208 v 5.598583 h 2.534708 v 1.386417 h -4.116916 z"
129
- 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"
130
- id="path840" />
131
- <path
132
- d="m 62.325091,56.133159 q 0,0.597959 0.243416,1.084792 0.248709,0.481542 0.682625,0.767292 0.439209,0.28575 1.016,0.28575 0.576792,0 1.010709,-0.28575 0.439208,-0.28575 0.682625,-0.767292 0.248708,-0.486833 0.248708,-1.084792 0,-0.597958 -0.248708,-1.0795 -0.243417,-0.481541 -0.682625,-0.767291 -0.433917,-0.291042 -1.010709,-0.291042 -0.576791,0 -1.016,0.291042 -0.433916,0.28575 -0.682625,0.767291 -0.243416,0.481542 -0.243416,1.0795 z m -1.645709,0 q 0,-0.762 0.269875,-1.418166 0.269875,-0.661459 0.756709,-1.153584 0.486833,-0.492125 1.143,-0.767291 0.656166,-0.275167 1.418166,-0.275167 0.772584,0 1.423459,0.275167 0.656166,0.275166 1.137708,0.767291 0.486833,0.492125 0.751417,1.153584 0.269875,0.656166 0.269875,1.418166 0,0.767292 -0.259292,1.42875 -0.259292,0.656167 -0.740833,1.153584 -0.481542,0.492125 -1.137709,0.767291 -0.656166,0.275167 -1.444625,0.275167 -0.804333,0 -1.465791,-0.275167 -0.656167,-0.275166 -1.132417,-0.767291 -0.47625,-0.497417 -0.735542,-1.153584 -0.254,-0.661458 -0.254,-1.42875 z"
133
- 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"
134
- id="path842" />
135
- <path
136
- d="m 72.453325,58.191618 q 0.486833,0 0.883708,-0.142875 0.402167,-0.142875 0.597958,-0.280459 l 0.677334,1.344084 q -0.248709,0.211666 -0.851958,0.428625 -0.597959,0.216958 -1.423459,0.216958 -0.772583,0 -1.449916,-0.269875 -0.677334,-0.269875 -1.195917,-0.756708 -0.513292,-0.492125 -0.809625,-1.148292 -0.291042,-0.661458 -0.291042,-1.434042 0,-0.772583 0.291042,-1.434041 0.291042,-0.66675 0.804333,-1.158875 0.518584,-0.492125 1.195917,-0.762 0.682625,-0.275167 1.455208,-0.275167 0.8255,0 1.423459,0.216958 0.603249,0.216959 0.851958,0.428625 l -0.677334,1.344084 q -0.195791,-0.142875 -0.597958,-0.280459 -0.396875,-0.142875 -0.883708,-0.142875 -0.53975,0 -0.941917,0.169334 -0.402166,0.164041 -0.672041,0.455083 -0.269875,0.291042 -0.402167,0.656167 -0.132292,0.365125 -0.132292,0.767291 0,0.407459 0.132292,0.777875 0.132292,0.365125 0.402167,0.656167 0.269875,0.291042 0.672041,0.460375 0.402167,0.164042 0.941917,0.164042 z"
137
- 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"
138
- id="path844" />
139
- <path
140
- d="m 78.427604,56.022034 2.656417,3.608917 h -1.889125 l -2.148417,-3.053292 v 3.053292 h -1.582208 v -6.985 h 1.582208 v 2.8575 l 1.979083,-2.8575 h 1.783292 z"
141
- 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"
142
- id="path846" />
143
- <path
144
- d="m 84.248426,52.518951 q 0.650875,0 1.137709,0.142875 0.486833,0.142875 0.783166,0.301625 0.296334,0.15875 0.359834,0.211667 l -0.762,1.275291 q -0.08467,-0.0635 -0.291042,-0.185208 -0.201083,-0.121708 -0.481542,-0.216958 -0.275166,-0.09525 -0.576791,-0.09525 -0.407459,0 -0.661459,0.148166 -0.248708,0.142875 -0.248708,0.428625 0,0.195792 0.132292,0.354542 0.137583,0.153458 0.41275,0.296333 0.280458,0.137584 0.709083,0.301625 0.391583,0.142875 0.735542,0.338667 0.343958,0.195792 0.60325,0.465667 0.264583,0.264583 0.418041,0.613833 0.153459,0.34925 0.153459,0.79375 0,0.529167 -0.216959,0.92075 -0.216958,0.386292 -0.592666,0.640292 -0.370417,0.254 -0.846667,0.375708 -0.470958,0.127 -0.978958,0.127 -0.719667,0 -1.291167,-0.164042 -0.566208,-0.164041 -0.915458,-0.354541 -0.34925,-0.1905 -0.418042,-0.254 l 0.788458,-1.328209 q 0.0635,0.04762 0.243417,0.153459 0.185208,0.105833 0.449792,0.22225 0.264583,0.111125 0.560916,0.1905 0.301625,0.07937 0.592667,0.07937 0.486833,0 0.73025,-0.185209 0.243417,-0.1905 0.243417,-0.497416 0,-0.227542 -0.153459,-0.407459 -0.153458,-0.179916 -0.460375,-0.338666 -0.306916,-0.164042 -0.767291,-0.343959 -0.460375,-0.185208 -0.862542,-0.449791 -0.396875,-0.264584 -0.645583,-0.661459 -0.248709,-0.396875 -0.248709,-0.98425 0,-0.587375 0.328084,-1.016 0.333375,-0.433916 0.873125,-0.66675 0.545041,-0.232833 1.164166,-0.232833 z"
145
- 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"
146
- id="path848" />
147
- <path
148
- d="m 88.926256,54.032368 h -1.666875 v -1.386417 h 4.910667 v 1.386417 h -1.661584 v 5.598583 h -1.582208 z"
149
- 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"
150
- id="path850" />
151
- <path
152
- d="m 93.021982,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"
153
- 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"
154
- id="path852" />
155
- <path
156
- d="m 98.689342,52.645951 h 2.539998 q 0.67204,0 1.21179,0.238125 0.53975,0.232833 0.85725,0.714375 0.3228,0.47625 0.3228,1.195917 0,0.714375 -0.3228,1.217083 -0.3175,0.497417 -0.85725,0.762 -0.53975,0.259292 -1.21179,0.259292 h -0.95779 v 2.598208 h -1.582208 z m 1.582208,3.137958 h 0.51858 q 0.3228,0 0.5768,-0.09525 0.25929,-0.09525 0.41275,-0.301625 0.15345,-0.211666 0.15345,-0.555625 0,-0.34925 -0.15345,-0.550333 -0.15346,-0.206375 -0.41275,-0.296333 -0.254,-0.08996 -0.5768,-0.08996 h -0.51858 z"
157
- 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"
158
- id="path854" />
159
- </g>
160
- <rect
161
- style="fill:url(#linearGradient1408);fill-opacity:1;stroke:none;stroke-width:0.03697885;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
162
- id="rect1387"
163
- width="103.71816"
164
- height="1.2668874"
165
- x="-3.5527137e-15"
166
- y="65.308289" />
167
- </g>
168
- </svg>
@@ -1,106 +0,0 @@
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="103.71816mm"
14
- height="14.056225mm"
15
- viewBox="0 0 103.71816 14.056225"
16
- version="1.1"
17
- id="svg838"
18
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
19
- sodipodi:docname="capybara-lockstep.light.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(1.5503049,0,0,0.08820435,-34.191832,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="2.8"
56
- inkscape:cx="183.50717"
57
- inkscape:cy="-23.90459"
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="1920"
66
- inkscape:window-height="1151"
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,-52.518951)">
87
- <text
88
- xml:space="preserve"
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
- x="-0.27516666"
91
- y="59.630951"
92
- id="text1385"><tspan
93
- sodipodi:role="line"
94
- id="tspan1383"
95
- x="-0.27516666"
96
- y="59.630951"
97
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'League Spartan';-inkscape-font-specification:'League Spartan';stroke-width:0.26458332;fill:#141210;fill-opacity:1;">CAPYBARA-LOCKSTEP</tspan></text>
98
- <rect
99
- style="fill:url(#linearGradient1408);fill-opacity:1;stroke:none;stroke-width:0.03697885;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
100
- id="rect1387"
101
- width="103.71816"
102
- height="1.2668874"
103
- x="-3.5527137e-15"
104
- y="65.308289" />
105
- </g>
106
- </svg>
@@ -1,180 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Generator: Adobe Illustrator 23.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- version="1.1"
13
- id="Ebene_1"
14
- x="0px"
15
- y="0px"
16
- viewBox="0 0 600.00159 198.53798"
17
- xml:space="preserve"
18
- sodipodi:docname="makandra.dark.svg"
19
- width="600.00159"
20
- height="198.53798"
21
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
22
- id="metadata45"><rdf:RDF><cc:Work
23
- rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
24
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
25
- id="defs43" /><sodipodi:namedview
26
- pagecolor="#ffffff"
27
- bordercolor="#666666"
28
- borderopacity="1"
29
- objecttolerance="10"
30
- gridtolerance="10"
31
- guidetolerance="10"
32
- inkscape:pageopacity="0"
33
- inkscape:pageshadow="2"
34
- inkscape:window-width="1920"
35
- inkscape:window-height="1151"
36
- id="namedview41"
37
- showgrid="false"
38
- inkscape:pagecheckerboard="true"
39
- fit-margin-top="0"
40
- fit-margin-left="0"
41
- fit-margin-right="0"
42
- fit-margin-bottom="0"
43
- inkscape:zoom="1.0966667"
44
- inkscape:cx="-38.195719"
45
- inkscape:cy="-91.947799"
46
- inkscape:window-x="1920"
47
- inkscape:window-y="0"
48
- inkscape:window-maximized="1"
49
- inkscape:current-layer="Ebene_1" />
50
- <style
51
- type="text/css"
52
- id="style2">
53
- .st0{fill:#E61D47;}
54
- .st1{fill:#FFFFFF;}
55
- </style>
56
- <g
57
- id="g38"
58
- transform="translate(0.00160275,-0.76)">
59
- <polygon
60
- class="st0"
61
- points="585.95,14.81 585.95,59.46 600,45.41 600,0.76 555.34,0.76 541.29,14.81 "
62
- id="polygon4"
63
- style="fill:#e61d47" />
64
- <path
65
- class="st1"
66
- d="m 161.87,43.92 v -1.44 h -13.07 -0.87 v 6.8 c -4.61,-5.11 -10.84,-8.22 -18.57,-8.22 -17.7,0 -29.41,15.58 -29.41,33.03 0,17.2 11.22,33.15 29.41,33.15 7.86,0 14.11,-3.21 18.57,-8.39 v 6.77 h 1.87 v 0 h 12.09 V 43.92 Z M 130.98,94.9 c -10.59,0 -16.58,-9.72 -16.58,-20.81 0,-11.59 6.48,-20.69 16.58,-20.69 9.97,0 17.82,8.23 17.82,20.57 0,13.21 -8.47,20.93 -17.82,20.93 z"
67
- id="path6"
68
- inkscape:connector-curvature="0"
69
- style="fill:#ffffff" />
70
- <path
71
- class="st1"
72
- d="m 297.85,43.93 v -1.44 h -13.07 -0.87 v 6.8 c -4.61,-5.11 -10.84,-8.22 -18.57,-8.22 -17.7,0 -29.41,15.58 -29.41,33.03 0,17.2 11.22,33.15 29.41,33.15 7.86,0 14.11,-3.21 18.57,-8.39 v 6.77 h 1.87 v 0 h 12.09 v -61.7 z m -30.89,50.98 c -10.59,0 -16.58,-9.72 -16.58,-20.81 0,-11.59 6.48,-20.69 16.58,-20.69 9.97,0 17.82,8.23 17.82,20.57 0.01,13.2 -8.47,20.93 -17.82,20.93 z"
73
- id="path8"
74
- inkscape:connector-curvature="0"
75
- style="fill:#ffffff" />
76
- <path
77
- class="st1"
78
- d="m 558.34,43.87 v -1.44 h -13.07 -0.87 v 6.8 c -4.61,-5.11 -10.84,-8.22 -18.57,-8.22 -17.7,0 -29.41,15.58 -29.41,33.03 0,17.2 11.22,33.15 29.41,33.15 7.86,0 14.11,-3.21 18.57,-8.39 v 6.77 h 1.87 v 0 h 12.09 v -61.7 z m -30.9,50.98 c -10.59,0 -16.58,-9.72 -16.58,-20.81 0,-11.59 6.48,-20.69 16.58,-20.69 9.97,0 17.82,8.23 17.82,20.57 0.01,13.2 -8.47,20.93 -17.82,20.93 z"
79
- id="path10"
80
- inkscape:connector-curvature="0"
81
- style="fill:#ffffff" />
82
- <path
83
- class="st1"
84
- d="M 14.1,86.98 V 75.1 c 0,-14.58 6.11,-21.81 13.34,-21.81 6.85,0 9.6,5.61 9.6,13.46 V 86.97 H 51 v -11 c 0,-15.33 5.98,-22.68 13.34,-22.68 6.86,0 9.6,5.61 9.6,13.46 V 86.97 H 87.9 V 64.88 c 0,-14.83 -7.98,-23.93 -20.57,-23.93 -7.98,0 -14.83,3.37 -19.19,10.84 -3.24,-6.85 -9.47,-10.84 -17.7,-10.84 -6.72,0 -12.38,2.55 -16.57,7.88 V 42.37 H 0 v 44.6 h 14.1 z"
85
- id="path12"
86
- inkscape:connector-curvature="0"
87
- style="fill:#ffffff" />
88
-
89
- <rect
90
- x="313.17001"
91
- y="91.599998"
92
- transform="rotate(90,320.2078,98.578)"
93
- class="st1"
94
- width="14.08"
95
- height="13.96"
96
- id="rect14"
97
- style="fill:#ffffff" />
98
-
99
- <rect
100
- x="353.25"
101
- y="91.599998"
102
- transform="rotate(90,360.29075,98.57795)"
103
- class="st1"
104
- width="14.08"
105
- height="13.96"
106
- id="rect16"
107
- style="fill:#ffffff" />
108
-
109
- <rect
110
- x="456.56"
111
- y="91.599998"
112
- transform="rotate(90,463.60275,98.57795)"
113
- class="st1"
114
- width="14.08"
115
- height="13.96"
116
- id="rect18"
117
- style="fill:#ffffff" />
118
-
119
- <rect
120
- x="36.959999"
121
- y="91.599998"
122
- transform="rotate(90,43.9944,98.578)"
123
- class="st1"
124
- width="14.08"
125
- height="13.96"
126
- id="rect20"
127
- style="fill:#ffffff" />
128
-
129
- <rect
130
- x="0"
131
- y="91.540001"
132
- transform="rotate(90,7.04045,98.57795)"
133
- class="st1"
134
- width="14.08"
135
- height="14.08"
136
- id="rect22"
137
- style="fill:#ffffff" />
138
-
139
- <rect
140
- x="73.879997"
141
- y="91.610001"
142
- transform="rotate(90,80.91625,98.57795)"
143
- class="st0"
144
- width="14.08"
145
- height="13.94"
146
- id="rect24"
147
- style="fill:#e61d47" />
148
- <g
149
- id="g30">
150
- <polygon
151
- class="st1"
152
- points="204.35,73.98 235.93,42.41 216.05,42.41 184.48,73.98 216.05,105.56 235.93,105.56 "
153
- id="polygon26"
154
- style="fill:#ffffff" />
155
- <polygon
156
- class="st1"
157
- points="177.32,105.64 191.28,105.64 191.28,85.07 191.31,85.04 191.31,66.59 191.28,66.62 191.28,27.56 177.32,27.56 "
158
- id="polygon28"
159
- style="fill:#ffffff" />
160
- </g>
161
- <path
162
- class="st1"
163
- d="M 427.32,27.49 V 49.22 C 422.71,44.11 416.48,41 408.75,41 c -18.07,0 -29.41,15.95 -29.41,33.15 0,17.45 11.59,33.03 29.41,33.03 8.23,0 14.71,-3.49 19.2,-8.97 l 1.25,7.35 h 12.09 V 27.49 Z m -16.95,67.35 c -10.34,0 -16.57,-9.22 -16.57,-20.69 0,-11.22 6.23,-20.81 16.57,-20.81 9.35,0 17.83,7.73 17.83,20.81 -0.01,12.46 -7.86,20.69 -17.83,20.69 z"
164
- id="path32"
165
- inkscape:connector-curvature="0"
166
- style="fill:#ffffff" />
167
- <path
168
- class="st1"
169
- d="m 470.67,86.98 v -9.26 c 0,-14.33 6.98,-24.3 19.69,-24.3 V 41.07 c -9.35,0 -15.57,3.95 -19.69,9.91 v -8.49 h -14.05 v 44.48 h 14.05 z"
170
- id="path34"
171
- inkscape:connector-curvature="0"
172
- style="fill:#ffffff" />
173
- <path
174
- class="st1"
175
- d="M 327.26,86.98 V 76.59 c 0,-14.58 6.23,-23.18 16.33,-23.18 6.86,0 9.72,5.73 9.72,13.58 v 19.98 h 13.96 V 65.13 c 0,-14.83 -8.23,-24.05 -20.82,-24.05 -8.15,0 -14.71,2.95 -19.19,8.77 V 42.7 h -1.99 v -0.01 l -0.06,0.01 h -11.98 v 44.28 z"
176
- id="path36"
177
- inkscape:connector-curvature="0"
178
- style="fill:#ffffff" />
179
- </g>
180
- </svg>
@@ -1,180 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Generator: Adobe Illustrator 23.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- version="1.1"
13
- id="Ebene_1"
14
- x="0px"
15
- y="0px"
16
- viewBox="0 0 600.00159 198.53798"
17
- xml:space="preserve"
18
- sodipodi:docname="makandra.light.svg"
19
- width="600.00159"
20
- height="198.53798"
21
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
22
- id="metadata45"><rdf:RDF><cc:Work
23
- rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
24
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
25
- id="defs43" /><sodipodi:namedview
26
- pagecolor="#ffffff"
27
- bordercolor="#666666"
28
- borderopacity="1"
29
- objecttolerance="10"
30
- gridtolerance="10"
31
- guidetolerance="10"
32
- inkscape:pageopacity="0"
33
- inkscape:pageshadow="2"
34
- inkscape:window-width="1920"
35
- inkscape:window-height="1151"
36
- id="namedview41"
37
- showgrid="false"
38
- fit-margin-top="0"
39
- fit-margin-left="0"
40
- fit-margin-right="0"
41
- fit-margin-bottom="0"
42
- inkscape:pagecheckerboard="true"
43
- inkscape:zoom="2.1933333"
44
- inkscape:cx="-93.29719"
45
- inkscape:cy="-70.469332"
46
- inkscape:window-x="1920"
47
- inkscape:window-y="0"
48
- inkscape:window-maximized="1"
49
- inkscape:current-layer="Ebene_1" />
50
- <style
51
- type="text/css"
52
- id="style2">
53
- .st0{fill:#E61D47;}
54
- .st1{fill:#141210;}
55
- </style>
56
- <g
57
- id="g38"
58
- transform="translate(0.00160275,-0.76)">
59
- <polygon
60
- class="st0"
61
- points="585.95,14.81 585.95,59.46 600,45.41 600,0.76 555.34,0.76 541.29,14.81 "
62
- id="polygon4"
63
- style="fill:#e61d47" />
64
- <path
65
- class="st1"
66
- d="m 161.87,43.92 v -1.44 h -13.07 -0.87 v 6.8 c -4.61,-5.11 -10.84,-8.22 -18.57,-8.22 -17.7,0 -29.41,15.58 -29.41,33.03 0,17.2 11.22,33.15 29.41,33.15 7.86,0 14.11,-3.21 18.57,-8.39 v 6.77 h 1.87 v 0 h 12.09 V 43.92 Z M 130.98,94.9 c -10.59,0 -16.58,-9.72 -16.58,-20.81 0,-11.59 6.48,-20.69 16.58,-20.69 9.97,0 17.82,8.23 17.82,20.57 0,13.21 -8.47,20.93 -17.82,20.93 z"
67
- id="path6"
68
- inkscape:connector-curvature="0"
69
- style="fill:#141210" />
70
- <path
71
- class="st1"
72
- d="m 297.85,43.93 v -1.44 h -13.07 -0.87 v 6.8 c -4.61,-5.11 -10.84,-8.22 -18.57,-8.22 -17.7,0 -29.41,15.58 -29.41,33.03 0,17.2 11.22,33.15 29.41,33.15 7.86,0 14.11,-3.21 18.57,-8.39 v 6.77 h 1.87 v 0 h 12.09 v -61.7 z m -30.89,50.98 c -10.59,0 -16.58,-9.72 -16.58,-20.81 0,-11.59 6.48,-20.69 16.58,-20.69 9.97,0 17.82,8.23 17.82,20.57 0.01,13.2 -8.47,20.93 -17.82,20.93 z"
73
- id="path8"
74
- inkscape:connector-curvature="0"
75
- style="fill:#141210" />
76
- <path
77
- class="st1"
78
- d="m 558.34,43.87 v -1.44 h -13.07 -0.87 v 6.8 c -4.61,-5.11 -10.84,-8.22 -18.57,-8.22 -17.7,0 -29.41,15.58 -29.41,33.03 0,17.2 11.22,33.15 29.41,33.15 7.86,0 14.11,-3.21 18.57,-8.39 v 6.77 h 1.87 v 0 h 12.09 v -61.7 z m -30.9,50.98 c -10.59,0 -16.58,-9.72 -16.58,-20.81 0,-11.59 6.48,-20.69 16.58,-20.69 9.97,0 17.82,8.23 17.82,20.57 0.01,13.2 -8.47,20.93 -17.82,20.93 z"
79
- id="path10"
80
- inkscape:connector-curvature="0"
81
- style="fill:#141210" />
82
- <path
83
- class="st1"
84
- d="M 14.1,86.98 V 75.1 c 0,-14.58 6.11,-21.81 13.34,-21.81 6.85,0 9.6,5.61 9.6,13.46 V 86.97 H 51 v -11 c 0,-15.33 5.98,-22.68 13.34,-22.68 6.86,0 9.6,5.61 9.6,13.46 V 86.97 H 87.9 V 64.88 c 0,-14.83 -7.98,-23.93 -20.57,-23.93 -7.98,0 -14.83,3.37 -19.19,10.84 -3.24,-6.85 -9.47,-10.84 -17.7,-10.84 -6.72,0 -12.38,2.55 -16.57,7.88 V 42.37 H 0 v 44.6 h 14.1 z"
85
- id="path12"
86
- inkscape:connector-curvature="0"
87
- style="fill:#141210" />
88
-
89
- <rect
90
- x="313.17001"
91
- y="91.599998"
92
- transform="rotate(90,320.2078,98.578)"
93
- class="st1"
94
- width="14.08"
95
- height="13.96"
96
- id="rect14"
97
- style="fill:#141210" />
98
-
99
- <rect
100
- x="353.25"
101
- y="91.599998"
102
- transform="rotate(90,360.29075,98.57795)"
103
- class="st1"
104
- width="14.08"
105
- height="13.96"
106
- id="rect16"
107
- style="fill:#141210" />
108
-
109
- <rect
110
- x="456.56"
111
- y="91.599998"
112
- transform="rotate(90,463.60275,98.57795)"
113
- class="st1"
114
- width="14.08"
115
- height="13.96"
116
- id="rect18"
117
- style="fill:#141210" />
118
-
119
- <rect
120
- x="36.959999"
121
- y="91.599998"
122
- transform="rotate(90,43.9944,98.578)"
123
- class="st1"
124
- width="14.08"
125
- height="13.96"
126
- id="rect20"
127
- style="fill:#141210" />
128
-
129
- <rect
130
- x="0"
131
- y="91.540001"
132
- transform="rotate(90,7.04045,98.57795)"
133
- class="st1"
134
- width="14.08"
135
- height="14.08"
136
- id="rect22"
137
- style="fill:#141210" />
138
-
139
- <rect
140
- x="73.879997"
141
- y="91.610001"
142
- transform="rotate(90,80.91625,98.57795)"
143
- class="st0"
144
- width="14.08"
145
- height="13.94"
146
- id="rect24"
147
- style="fill:#e61d47" />
148
- <g
149
- id="g30">
150
- <polygon
151
- class="st1"
152
- points="204.35,73.98 235.93,42.41 216.05,42.41 184.48,73.98 216.05,105.56 235.93,105.56 "
153
- id="polygon26"
154
- style="fill:#141210" />
155
- <polygon
156
- class="st1"
157
- points="177.32,105.64 191.28,105.64 191.28,85.07 191.31,85.04 191.31,66.59 191.28,66.62 191.28,27.56 177.32,27.56 "
158
- id="polygon28"
159
- style="fill:#141210" />
160
- </g>
161
- <path
162
- class="st1"
163
- d="M 427.32,27.49 V 49.22 C 422.71,44.11 416.48,41 408.75,41 c -18.07,0 -29.41,15.95 -29.41,33.15 0,17.45 11.59,33.03 29.41,33.03 8.23,0 14.71,-3.49 19.2,-8.97 l 1.25,7.35 h 12.09 V 27.49 Z m -16.95,67.35 c -10.34,0 -16.57,-9.22 -16.57,-20.69 0,-11.22 6.23,-20.81 16.57,-20.81 9.35,0 17.83,7.73 17.83,20.81 -0.01,12.46 -7.86,20.69 -17.83,20.69 z"
164
- id="path32"
165
- inkscape:connector-curvature="0"
166
- style="fill:#141210" />
167
- <path
168
- class="st1"
169
- d="m 470.67,86.98 v -9.26 c 0,-14.33 6.98,-24.3 19.69,-24.3 V 41.07 c -9.35,0 -15.57,3.95 -19.69,9.91 v -8.49 h -14.05 v 44.48 h 14.05 z"
170
- id="path34"
171
- inkscape:connector-curvature="0"
172
- style="fill:#141210" />
173
- <path
174
- class="st1"
175
- d="M 327.26,86.98 V 76.59 c 0,-14.58 6.23,-23.18 16.33,-23.18 6.86,0 9.72,5.73 9.72,13.58 v 19.98 h 13.96 V 65.13 c 0,-14.83 -8.23,-24.05 -20.82,-24.05 -8.15,0 -14.71,2.95 -19.19,8.77 V 42.7 h -1.99 v -0.01 l -0.06,0.01 h -11.98 v 44.28 z"
176
- id="path36"
177
- inkscape:connector-curvature="0"
178
- style="fill:#141210" />
179
- </g>
180
- </svg>