lock-gemfile 0.1.4 → 0.1.5
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 +4 -4
- data/README.md +4 -2
- data/bin/lock-gemfile +3 -101
- data/lib/lock/gemfile/cli.rb +88 -0
- data/lib/lock/gemfile/report.rb +68 -0
- data/lib/lock/gemfile/version.rb +1 -1
- data/logo-dark-mode.svg +421 -0
- data/logo.svg +421 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60d75454fb8a101dfcb339a3c3f4b64951b6e76d80193f7b91802dd5cf3b131a
|
4
|
+
data.tar.gz: 5810d4b2a1b12b435a2ad34d165e02e2096850faa8419c21cd3b1670fbc50bea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dd1bfae0946ed5a7abeef9db5451d1084ba8f70b30ed754831721b57afd3a1456dbf6212a2cf22537ceca0f809c63c8e26d02278d531e56542a769278494d31
|
7
|
+
data.tar.gz: 03b842613a862cdd1366b20fb9249510420069bc64784a9bb65b79b2cb75899b834060a88a44d7cf0b6d0793cee0633c032d93c75e90fe5c0df4fff4820fedd2
|
data/README.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Lock::Gemfile
|
2
2
|
|
3
|
+

|
4
|
+
|
5
|
+
|
3
6
|
Lock::Gemfile is a Ruby library that provides functionality to update a Gemfile with locked versions - typically, from a corresponding Gemfile.lock file, but you can also provide arbitrary versions as well.
|
4
7
|
|
5
8
|
## Installation
|
@@ -125,6 +128,5 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
125
128
|
|
126
129
|
Commercial support for lock-gemfile and related tools is available from Durable Programming, LLC. You can contact us at [durableprogramming.com](https://www.durableprogramming.com).
|
127
130
|
|
128
|
-

|
130
132
|
|
data/bin/lock-gemfile
CHANGED
@@ -1,103 +1,5 @@
|
|
1
|
-
#!/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
1
|
+
#!/usr/bin/env ruby
|
3
2
|
|
4
|
-
|
5
|
-
# lock-gemfile
|
6
|
-
#
|
7
|
-
# This script updates a Gemfile with locked versions from the
|
8
|
-
# corresponding Gemfile.lock file. It uses the Parser gem to parse the
|
9
|
-
# Gemfile into an Abstract Syntax Tree (AST), and then uses a custom
|
10
|
-
# TreeRewriter to modify the AST, inserting the locked versions from
|
11
|
-
# the lockfile. The modified AST is then transformed back into source
|
12
|
-
# code and either printed to the console or written back to the Gemfile,
|
13
|
-
# depending on the provided options.
|
14
|
-
#
|
15
|
-
# Usage:
|
16
|
-
# gemfile_updater.rb update GEMFILE [options]
|
17
|
-
#
|
18
|
-
# Options:
|
19
|
-
# -w, [--write], [--no-write] # Write the updated Gemfile back
|
20
|
-
# to disk (default: false) -p, [--pessimistic], [--no-pessimistic] #
|
21
|
-
# Use pessimistic version constraints (~>) (default: true)
|
22
|
-
#
|
23
|
-
# Examples:
|
24
|
-
# gemfile_updater.rb update Gemfile gemfile_updater.rb update Gemfile
|
25
|
-
# --write gemfile_updater.rb update Gemfile --no-pessimistic
|
26
|
-
#
|
27
|
-
# Dependencies:
|
28
|
-
# - parser - bundler - thor
|
3
|
+
require_relative '../lib/lock/gemfile/cli'
|
29
4
|
|
30
|
-
|
31
|
-
require "bundler"
|
32
|
-
require "thor"
|
33
|
-
|
34
|
-
require_relative "../lib/lock/gemfile/rewriter"
|
35
|
-
|
36
|
-
# Squelch irrelevant deprecation warnings.
|
37
|
-
|
38
|
-
$VERBOSE = nil
|
39
|
-
|
40
|
-
class GemfileUpdater < Thor
|
41
|
-
#
|
42
|
-
# This class update a Gemfile with locked versions - designed to pull
|
43
|
-
# from the corresponding Gemfile.lock file, it can also accept an
|
44
|
-
# arbitrary hash of versions.. It uses the Parser gem to parse the
|
45
|
-
# Gemfile into an Abstract Syntax Tree (AST), and then uses a custom
|
46
|
-
# TreeRewriter to modify the AST, inserting the locked versions from
|
47
|
-
# the lockfile. The modified AST is then transformed back into source
|
48
|
-
# code and either printed to the console or written back to the Gemfile,
|
49
|
-
# depending on the provided options.
|
50
|
-
#
|
51
|
-
desc "update GEMFILE", "Update Gemfile with locked versions"
|
52
|
-
|
53
|
-
option :write, type: :boolean, default: false, aliases: "-w"
|
54
|
-
option :pessimistic, type: :boolean, default: true, aliases: "-p"
|
55
|
-
|
56
|
-
def update(gemfile)
|
57
|
-
# Read the content of the specified Gemfile
|
58
|
-
gemfile_content = File.read(gemfile)
|
59
|
-
|
60
|
-
# Parse the corresponding Gemfile.lock using Bundler's LockfileParser
|
61
|
-
lockfile = Bundler::LockfileParser.new(Bundler.read_file(gemfile + ".lock"))
|
62
|
-
|
63
|
-
# Create a hash to store the desired versions of each gem
|
64
|
-
desired_versions = {}
|
65
|
-
|
66
|
-
# Iterate over each gem specification in the lockfile
|
67
|
-
lockfile.specs.each do |spec|
|
68
|
-
# Store the gem name and its locked version in the desired_versions hash
|
69
|
-
desired_versions[spec.name] = spec.version
|
70
|
-
end
|
71
|
-
|
72
|
-
# Create a buffer to hold the Gemfile content
|
73
|
-
buffer = Parser::Source::Buffer.new("(gemfile)")
|
74
|
-
buffer.source = gemfile_content
|
75
|
-
|
76
|
-
# Create a new Ruby parser
|
77
|
-
parser = Parser::Ruby31.new
|
78
|
-
# Parse the Gemfile content into an Abstract Syntax Tree (AST)
|
79
|
-
ast = parser.parse(buffer)
|
80
|
-
|
81
|
-
# Create a new instance of the Lock::Gemfile::Rewriter
|
82
|
-
rewriter = Lock::Gemfile::Rewriter.new
|
83
|
-
# Set the desired versions from the lockfile
|
84
|
-
rewriter.lockfile = desired_versions
|
85
|
-
# Set the pessimistic option based on the command-line argument
|
86
|
-
rewriter.pessimistic = options[:pessimistic]
|
87
|
-
|
88
|
-
# Rewrite the Gemfile AST with the locked versions
|
89
|
-
transformed_code = rewriter.rewrite(buffer, ast)
|
90
|
-
|
91
|
-
# Print the transformed Gemfile content
|
92
|
-
puts transformed_code
|
93
|
-
|
94
|
-
# If the write option is not specified, exit the method
|
95
|
-
return unless options[:write]
|
96
|
-
|
97
|
-
# Write the transformed Gemfile content back to the original file
|
98
|
-
File.write(gemfile, transformed_code)
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
# Start the GemfileUpdater CLI with the provided command-line arguments
|
103
|
-
GemfileUpdater.start(ARGV)
|
5
|
+
Lock::Gemfile::CLI.run(ARGV)
|
@@ -0,0 +1,88 @@
|
|
1
|
+
require 'optparse'
|
2
|
+
require_relative 'rewriter'
|
3
|
+
require_relative 'report'
|
4
|
+
|
5
|
+
module Lock
|
6
|
+
module Gemfile
|
7
|
+
class CLI
|
8
|
+
def self.run(args)
|
9
|
+
new.run(args)
|
10
|
+
end
|
11
|
+
|
12
|
+
def run(args)
|
13
|
+
options = parse_options(args)
|
14
|
+
|
15
|
+
case options[:command]
|
16
|
+
when 'report'
|
17
|
+
Report.generate
|
18
|
+
when 'rewrite'
|
19
|
+
rewrite_gemfile(options)
|
20
|
+
else
|
21
|
+
puts "Unknown command: #{options[:command]}"
|
22
|
+
exit 1
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
private
|
27
|
+
|
28
|
+
def parse_options(args)
|
29
|
+
options = { pessimistic: true }
|
30
|
+
|
31
|
+
OptionParser.new do |opts|
|
32
|
+
opts.banner = "Usage: lock [options] <command>"
|
33
|
+
|
34
|
+
opts.on("-e", "--exact", "Use exact version instead of pessimistic") do
|
35
|
+
options[:pessimistic] = false
|
36
|
+
end
|
37
|
+
|
38
|
+
opts.on("-h", "--help", "Show this message") do
|
39
|
+
puts opts
|
40
|
+
exit
|
41
|
+
end
|
42
|
+
end.parse!(args)
|
43
|
+
|
44
|
+
options[:command] = args.shift
|
45
|
+
|
46
|
+
options
|
47
|
+
end
|
48
|
+
|
49
|
+
def rewrite_gemfile(options)
|
50
|
+
gemfile_path = 'Gemfile'
|
51
|
+
lockfile_path = 'Gemfile.lock'
|
52
|
+
|
53
|
+
unless File.exist?(gemfile_path) && File.exist?(lockfile_path)
|
54
|
+
puts "Gemfile or Gemfile.lock not found in current directory"
|
55
|
+
exit 1
|
56
|
+
end
|
57
|
+
|
58
|
+
gemfile_content = File.read(gemfile_path)
|
59
|
+
lockfile_content = File.read(lockfile_path)
|
60
|
+
|
61
|
+
parser = Parser::Ruby31.new
|
62
|
+
buffer = Parser::Source::Buffer.new(gemfile_path)
|
63
|
+
buffer.source = gemfile_content
|
64
|
+
ast = parser.parse(buffer)
|
65
|
+
|
66
|
+
lockfile = parse_lockfile(lockfile_content)
|
67
|
+
|
68
|
+
rewriter = Lock::Gemfile::Rewriter.new
|
69
|
+
rewriter.lockfile = lockfile
|
70
|
+
rewriter.pessimistic = options[:pessimistic]
|
71
|
+
|
72
|
+
modified_gemfile = rewriter.rewrite(buffer, ast)
|
73
|
+
|
74
|
+
File.write(gemfile_path, modified_gemfile)
|
75
|
+
puts "Gemfile updated with locked versions"
|
76
|
+
end
|
77
|
+
|
78
|
+
def parse_lockfile(content)
|
79
|
+
specs = content.split("DEPENDENCIES").first.split("\n")
|
80
|
+
specs.each_with_object({}) do |line, hash|
|
81
|
+
if line =~ /^\s{4}(\S+) \((.*?)\)/
|
82
|
+
hash[$1] = $2
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'bundler'
|
2
|
+
require 'net/http'
|
3
|
+
require 'uri'
|
4
|
+
require 'json'
|
5
|
+
|
6
|
+
module Lock
|
7
|
+
module Gemfile
|
8
|
+
class Report
|
9
|
+
def self.generate
|
10
|
+
new.generate
|
11
|
+
end
|
12
|
+
|
13
|
+
def generate
|
14
|
+
total_gems = gem_count
|
15
|
+
local_gems = locally_available_gemspec_count
|
16
|
+
remote_gems = remotely_available_gemspec_count
|
17
|
+
|
18
|
+
puts "Total gems: #{total_gems}"
|
19
|
+
puts "Matching gems locally available: #{local_gems} (#{pct_of(local_gems - total_gems, total_gems)} extra)"
|
20
|
+
puts "Matching gems remotely available: #{remote_gems} (#{pct_of(remote_gems - total_gems, total_gems)} extra)"
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def gem_count
|
26
|
+
@gem_count ||= local_gemfile_dependencies.length
|
27
|
+
end
|
28
|
+
|
29
|
+
def locally_available_gemspec_count
|
30
|
+
local_gemfile_dependencies.sum do |dep|
|
31
|
+
local_versions_for(dep.name).count do |version|
|
32
|
+
dep.requirement.satisfied_by?(version)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def remotely_available_gemspec_count
|
38
|
+
local_gemfile_dependencies.sum do |dependency|
|
39
|
+
constraint = dependency.requirement
|
40
|
+
versions = remote_versions_for(dependency.name)
|
41
|
+
|
42
|
+
versions.count do |version_data|
|
43
|
+
constraint.satisfied_by?(Gem::Version.new(version_data['number']))
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def remote_versions_for(gem_name)
|
49
|
+
uri = URI("https://rubygems.org/api/v1/versions/#{gem_name}.json")
|
50
|
+
response = Net::HTTP.get(uri)
|
51
|
+
JSON.parse(response)
|
52
|
+
end
|
53
|
+
|
54
|
+
def local_versions_for(gem_name)
|
55
|
+
Gem::Specification.find_all_by_name(gem_name).map(&:version)
|
56
|
+
end
|
57
|
+
|
58
|
+
|
59
|
+
def local_gemfile_dependencies
|
60
|
+
Bundler.definition.dependencies
|
61
|
+
end
|
62
|
+
|
63
|
+
def pct_of(a, b)
|
64
|
+
(((a.to_f / b.to_f) * 100)).round(2).to_s + '%'
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
data/lib/lock/gemfile/version.rb
CHANGED
data/logo-dark-mode.svg
ADDED
@@ -0,0 +1,421 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
class="img-fluid"
|
4
|
+
style="transform: none; transform-origin: 50% 50%; cursor: move; max-height: 694.48px;"
|
5
|
+
width="2688"
|
6
|
+
height="1536"
|
7
|
+
viewBox="0 0 26880 15360"
|
8
|
+
version="1.1"
|
9
|
+
id="svg578"
|
10
|
+
sodipodi:docname="logo.svg"
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
16
|
+
<defs
|
17
|
+
id="defs582">
|
18
|
+
<inkscape:path-effect
|
19
|
+
effect="powerstroke"
|
20
|
+
id="path-effect3012"
|
21
|
+
is_visible="true"
|
22
|
+
lpeversion="1"
|
23
|
+
offset_points="7.5291848,0.88920292"
|
24
|
+
not_jump="false"
|
25
|
+
sort_points="true"
|
26
|
+
interpolator_type="Linear"
|
27
|
+
interpolator_beta="0.13343109"
|
28
|
+
start_linecap_type="zerowidth"
|
29
|
+
linejoin_type="round"
|
30
|
+
miter_limit="4"
|
31
|
+
scale_width="1"
|
32
|
+
end_linecap_type="zerowidth" />
|
33
|
+
<inkscape:path-effect
|
34
|
+
effect="fill_between_many"
|
35
|
+
method="bsplinespiro"
|
36
|
+
linkedpaths="#path572,0,1"
|
37
|
+
id="path-effect3014"
|
38
|
+
join="true"
|
39
|
+
close="true"
|
40
|
+
autoreverse="true" />
|
41
|
+
</defs>
|
42
|
+
<sodipodi:namedview
|
43
|
+
id="namedview580"
|
44
|
+
pagecolor="#000"
|
45
|
+
bordercolor="#666666"
|
46
|
+
borderopacity="1.0"
|
47
|
+
inkscape:pageshadow="2"
|
48
|
+
inkscape:pageopacity="0.0"
|
49
|
+
inkscape:pagecheckerboard="0"
|
50
|
+
showgrid="false"
|
51
|
+
inkscape:zoom="0.33099594"
|
52
|
+
inkscape:cx="842.91064"
|
53
|
+
inkscape:cy="1415.4252"
|
54
|
+
inkscape:window-width="1902"
|
55
|
+
inkscape:window-height="1817"
|
56
|
+
inkscape:window-x="4484"
|
57
|
+
inkscape:window-y="146"
|
58
|
+
inkscape:window-maximized="1"
|
59
|
+
inkscape:current-layer="g39243"
|
60
|
+
showguides="true"
|
61
|
+
inkscape:guide-bbox="true">
|
62
|
+
<sodipodi:guide
|
63
|
+
position="5404.84,4454.1864"
|
64
|
+
orientation="1,0"
|
65
|
+
id="guide2884" />
|
66
|
+
<sodipodi:guide
|
67
|
+
position="7341.4798,9634.8542"
|
68
|
+
orientation="0,-1"
|
69
|
+
id="guide899" />
|
70
|
+
<sodipodi:guide
|
71
|
+
position="2165.3474,15318.667"
|
72
|
+
orientation="1,0"
|
73
|
+
id="guide987" />
|
74
|
+
<sodipodi:guide
|
75
|
+
position="6525.7598,14045.784"
|
76
|
+
orientation="1,0"
|
77
|
+
id="guide3795" />
|
78
|
+
<sodipodi:guide
|
79
|
+
position="8001.8579,9583.4653"
|
80
|
+
orientation="1,0"
|
81
|
+
id="guide3797" />
|
82
|
+
</sodipodi:namedview>
|
83
|
+
<g
|
84
|
+
id="g39243"
|
85
|
+
transform="matrix(1.282972,0,0,1.282972,-1365.3881,-1455.9994)">
|
86
|
+
<g
|
87
|
+
id="g4993"
|
88
|
+
style="opacity:0.77443"
|
89
|
+
transform="matrix(1.0028067,0,0,1,-195.94041,0)">
|
90
|
+
<path
|
91
|
+
d="m 7331.1413,5589.8146 c -198.9402,-62.1238 -437.9613,17.6518 -610.2707,-124.2043 -108.2347,-211.5079 -27.1068,-472.5694 -42.2029,-703.82 -2.4995,-296.2927 50.289,-617.3613 -104.738,-885.6681 -266.4985,-546.6319 -637.5299,-878.2766 -1245.5769,-829.4704 -406.2731,3.657 -825.9499,178.5742 -1053.8589,531.8203 -207.6886,262.0197 -378.9084,578.0484 -364.3268,924.148 -16.342,307.087 6.3332,617.15 -16.7591,922.6237 -131.8433,188.4596 -411.4801,92.2345 -598.7129,193.3523 -104.0996,34.3313 -248.2011,70.9044 -248.3568,5.1289 28.7817,-551.5115 -33.1119,-1157.9419 68.599,-1636.643 97.4101,-520.6954 414.1788,-937.1913 800.3671,-1286.0967 708.9284,-622.235 1579.9146,-763.8651 2396.79,-310.4731 330.7692,185.5143 605.0447,460.5634 811.1244,779.3256 320.6738,428.8076 407.1813,987.0741 397.7297,1512.449 -2.8529,297.1824 -3.4945,595.0204 1.8879,891.7161 -22.3221,97.4818 -133.7886,24.4976 -191.6951,15.8117 z"
|
92
|
+
id="path3016"
|
93
|
+
style="opacity:0.755044;fill:#fff"
|
94
|
+
inkscape:original-d="M 0,0"
|
95
|
+
inkscape:path-effect="#path-effect3014" />
|
96
|
+
<path
|
97
|
+
d="m 7315.5961,5589.8146 c -198.9402,-62.1238 -437.9613,17.6518 -610.2707,-124.2043 -108.2347,-211.5079 -27.1068,-472.5694 -42.2029,-703.82 -2.4995,-296.2927 50.289,-617.3613 -104.738,-885.6681 -266.4985,-546.6319 -637.5299,-878.2766 -1245.5769,-829.4704 -406.2731,3.657 -825.9499,178.5742 -1053.8589,531.8203 -207.6886,262.0197 -378.9084,578.0484 -364.3268,924.148 -16.342,307.087 6.3332,617.15 -16.7591,922.6237 -131.8433,188.4596 -411.4801,92.2345 -598.7129,193.3523 -104.0996,34.3313 -248.2011,70.9044 -248.3568,5.1289 28.7817,-551.5115 -33.1119,-1157.9419 68.599,-1636.643 97.4101,-520.6954 414.1788,-937.1913 800.3671,-1286.0967 708.9284,-622.235 1579.9146,-763.8651 2396.79,-310.4731 330.7692,185.5143 605.0447,460.5634 811.1244,779.3256 320.6738,428.8076 407.1813,987.0741 397.7297,1512.449 -2.8529,297.1824 -3.4945,595.0204 1.8879,891.7161 -22.3221,97.4818 -133.7886,24.4976 -191.6951,15.8117 z"
|
98
|
+
id="path572"
|
99
|
+
style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.77841"
|
100
|
+
sodipodi:nodetypes="ccsscccccccsscccc"
|
101
|
+
inkscape:linked-fill="path3016"
|
102
|
+
inkscape:original-d="m 7331.1413,5589.8146 c -198.9402,-62.1238 -437.9613,17.6518 -610.2707,-124.2043 -108.2347,-211.5079 -27.1068,-472.5694 -42.2029,-703.82 -2.4995,-296.2927 50.289,-617.3613 -104.738,-885.6681 -266.4985,-546.6319 -637.5299,-878.2766 -1245.5769,-829.4704 -406.2731,3.657 -825.9499,178.5742 -1053.8589,531.8203 -207.6886,262.0197 -378.9084,578.0484 -364.3268,924.148 -16.342,307.087 6.3332,617.15 -16.7591,922.6237 -131.8433,188.4596 -411.4801,92.2345 -598.7129,193.3523 -104.0996,34.3313 -248.2011,70.9044 -248.3568,5.1289 28.7817,-551.5115 -33.1119,-1157.9419 68.599,-1636.643 97.4101,-520.6954 414.1788,-937.1913 800.3671,-1286.0967 708.9284,-622.235 1579.9146,-763.8651 2396.79,-310.4731 330.7692,185.5143 605.0447,460.5634 811.1244,779.3256 320.6738,428.8076 407.1813,987.0741 397.7297,1512.449 -2.8529,297.1824 -3.4945,595.0204 1.8879,891.7161 -22.3221,97.4818 -133.7886,24.4976 -191.6951,15.8117 z"
|
103
|
+
inkscape:path-effect="#path-effect3012" />
|
104
|
+
<g
|
105
|
+
fill="#a00715"
|
106
|
+
id="g96"
|
107
|
+
transform="matrix(1.7671711,0,0,1.8065912,-3774.6638,-5877.2505)"
|
108
|
+
style="opacity:1">
|
109
|
+
<g
|
110
|
+
id="g94">
|
111
|
+
<path
|
112
|
+
d="m 5430,9306 c 0,-20 4,-36 9,-36 5,0 11,-10 13,-22 2,-19 10,-24 46,-26 33,-3 42,-7 42,-22 0,-10 5,-22 10,-25 6,-3 10,-14 10,-24 0,-19 49,-71 67,-71 6,0 13,-9 16,-20 4,-16 14,-20 51,-20 25,0 46,3 46,8 0,10 -157,163 -242,236 l -68,58 z"
|
113
|
+
id="path82" />
|
114
|
+
<path
|
115
|
+
d="m 5893,8873 c -7,-2 -13,-20 -13,-39 0,-34 0,-34 46,-34 h 46 l -32,40 c -17,22 -32,40 -33,39 -1,0 -8,-3 -14,-6 z"
|
116
|
+
id="path84" />
|
117
|
+
<path
|
118
|
+
d="m 4221,8802 c -19,-18 -43,-46 -53,-62 l -18,-30 h 25 c 39,0 87,54 83,93 l -3,32 z"
|
119
|
+
id="path86" />
|
120
|
+
<path
|
121
|
+
d="m 6010,8685 c 0,-24 6,-39 20,-47 11,-7 20,-18 20,-25 0,-9 15,-13 45,-13 h 45 l -37,51 c -30,42 -65,69 -89,69 -2,0 -4,-16 -4,-35 z"
|
122
|
+
id="path88" />
|
123
|
+
<path
|
124
|
+
d="m 3690,8129 c -20,-24 -48,-63 -63,-86 l -27,-43 h 30 c 16,0 30,4 30,9 0,6 11,22 25,37 14,15 25,33 25,40 0,7 5,14 11,16 6,2 9,19 7,37 l -3,34 z"
|
125
|
+
id="path90" />
|
126
|
+
<path
|
127
|
+
d="m 7023,7133 c -208.6689,-156.7823 -485.6059,-149.8182 -736.4659,-161.0036 -233.2976,46.3116 -1147.9402,-660.7869 -1032.6972,-858.3974 13.5064,-12.8676 252.3824,20.967 333.3396,38.7478 386.0445,47.5363 653.2412,55.4032 979.8503,199.1311 C 6722.5067,6530.2799 7093.2071,6978.9171 7023,7133 Z"
|
128
|
+
id="path92"
|
129
|
+
sodipodi:nodetypes="cccccc" />
|
130
|
+
</g>
|
131
|
+
</g>
|
132
|
+
<g
|
133
|
+
fill="#b50b10"
|
134
|
+
id="g122"
|
135
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3761.8526,-5711.2493)"
|
136
|
+
style="opacity:1">
|
137
|
+
<g
|
138
|
+
id="g120">
|
139
|
+
<path
|
140
|
+
d="m 5263,9441 c 3,-23 11,-48 17,-56 14,-16 100,-21 100,-6 0,10 -160.3548,151.2617 -190.3548,167.2617 -18,10 67.3548,-67.2617 73.3548,-105.2617 z"
|
141
|
+
id="path106"
|
142
|
+
sodipodi:nodetypes="ccscc" />
|
143
|
+
<path
|
144
|
+
d="m 4839,9414 c -93,-78 -406,-384 -506,-494 -52,-58 -126,-140 -165,-182 -38,-43 -84,-97 -101,-120 -16,-24 -33,-45 -36,-48 -36,-31 -466.9845,-618.394 -480.9845,-655.394 -12,-31 69.9845,22.394 101.9845,58.394 45,48 108,148 108,169 0,10 5,18 11,18 11,0 48,39 49,52 0,4 13,21 30,38 16,17 30,36 30,41 0,6 11,20 24,30 14,11 28,30 32,42 4,12 22,36 40,54 19,17 34,41 34,52 0,12 7,21 15,21 10,0 15,10 15,30 0,25 4,30 25,30 16,0 25,6 25,15 0,8 7,15 15,15 8,0 15,4 15,10 0,5 20,29 45,53 25,24 45,47 45,50 0,6 47,61 113,133 26,28 47,56 47,63 0,13 24,41 34,41 22,0 266,241 266,262 0,10 7,18 15,18 8,0 15,7 15,15 0,8 9,15 19,15 26,0 141,107 141,130 0,10 9,20 20,23 15,4 20,14 20,36 0,17 -1,31 -3,31 -2,0 -28,-21 -58,-46 z"
|
145
|
+
id="path108"
|
146
|
+
sodipodi:nodetypes="cccccccssccscscssssssssscssssssscssc" />
|
147
|
+
<path
|
148
|
+
d="m 5380,9325 c 0,-24 6,-39 20,-47 11,-7 20,-20 20,-29 0,-10 11,-37 25,-60 14,-24 32,-66 41,-92 20,-60 45,-77 113,-76 41,1 56,-2 63,-15 19,-34 72,-88 95,-97 12,-5 36,-30 52,-56 17,-27 58,-72 92,-102 34,-30 81,-85 106,-122 24,-38 51,-74 61,-81 10,-7 35,-37 56,-65 21,-29 42,-53 47,-53 5,0 19,-11 31,-25 12,-14 28,-25 35,-25 7,0 13,-6 13,-13 0,-20 60,-97 76,-97 8,0 14,-9 14,-19 0,-11 3,-21 8,-23 4,-1 15,-19 26,-40 10,-20 33,-52 52,-72 19,-20 34,-40 34,-44 0,-5 8,-17 18,-28 9,-11 26,-36 36,-57 11,-20 25,-37 33,-37 7,0 13,-9 13,-20 0,-11 4,-20 9,-20 5,0 12,-11 15,-25 4,-16 13,-25 26,-25 16,0 20,-7 20,-32 0,-42 85,-188 110,-188 21,0 30,-19 30,-61 0,-16 5,-29 10,-29 6,0 10,-9 10,-20 0,-34 92,-200 112,-200 9,0 20,-9 23,-20 4,-13 15,-20 30,-20 30,0 28,7 -46,146 -29,55 -76,146 -105,204 -49,97 -121,216 -241,399 -26,40 -60,92 -75,115 -14,22 -30,46 -35,51 -5,6 -30,40 -56,77 -26,36 -53,72 -60,80 -7,7 -35,42 -62,78 -89,119 -156,190 -178,191 -12,0 -16,3 -9,6 14.9898,16.0777 -37.2683,64.0952 -58,87 -15.3589,17.1203 -80,106 -103,106 -17,0 -19,2 -8,9 20,13 -190,235 -222,236 -74.0961,40.4352 -106.7456,171.16 -190,180 -13,0 -22,6 -22,15 0,22 -88.7376,113.5753 -110.7376,113.5753 -14,0 5.7376,-31.5753 5.7376,-58.5753 z"
|
149
|
+
id="path110"
|
150
|
+
sodipodi:nodetypes="scsccccccscscssssssccssccssscssssssscscccccccccccscccsss" />
|
151
|
+
<path
|
152
|
+
d="m 5266,7994 c -3,-9 -6,-33 -6,-55 0,-32 3,-39 20,-39 18,0 20,7 20,55 0,40 -4,55 -14,55 -8,0 -17,-7 -20,-16 z"
|
153
|
+
id="path112" />
|
154
|
+
<path
|
155
|
+
d="m 4880,7289 c 0,-19 6,-30 20,-34 11,-3 20,-12 20,-19 0,-28 72,-46 180,-45 130,0 180,17 180,60 v 28 l -45,-16 c -25,-8 -45,-18 -45,-21 0,-4 -37,-6 -82,-4 -73,2 -90,7 -155,41 l -73,38 z"
|
156
|
+
id="path114" />
|
157
|
+
<path
|
158
|
+
d="m 6981,7201 c 22.4387,-96.2346 -73.816,-150.0213 -156.5328,-131.4924 C 6573.9492,7045.4557 6330.841,6975.9853 6082,6941 c -254.4097,-253.8718 -508.727,-508.2267 -776.8724,-747.6834 -55.8199,-62.8617 10.9455,-108.867 46.8482,-31.9278 265.96,231.1298 511.5855,484.1104 762.0242,731.6112 289.0295,48.051 574.6942,123.1886 868.4693,136.9828 79.4162,11.8268 102.5833,150.2945 16.9209,170.0217 l -8.8551,1.0056 z"
|
159
|
+
id="path116" />
|
160
|
+
</g>
|
161
|
+
</g>
|
162
|
+
<g
|
163
|
+
fill="#c80406"
|
164
|
+
id="g140"
|
165
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3738.4744,-5759.5717)"
|
166
|
+
style="opacity:1">
|
167
|
+
<g
|
168
|
+
id="g138">
|
169
|
+
<path
|
170
|
+
d="m 5056,9589 c -14,-11 -24,-25 -21,-30 8,-11 115,-12 115,-1 0,12 -44,52 -57,52 -6,0 -22,-9 -37,-21 z"
|
171
|
+
id="path124" />
|
172
|
+
<path
|
173
|
+
d="m 5163,9543 c -7,-2 -13,-19 -13,-36 1,-39 58,-106 113,-132 21,-9 46.2471,-88.3275 67.2471,-111.3275 C 5375.2471,9211.6725 5440,9153 5440,9116 c 0,-14 16,-66 35,-115 19,-48 35,-96 35,-106 0,-9 15,-65 34,-123 19,-59 42,-136 51,-172 9,-36 24,-81 31,-100 8,-19 21,-60 29,-90 7,-30 20,-75 29,-100 8,-25 25,-85 36,-135 11,-49 34,-137 50,-195 16,-58 39,-143 51,-190 25,-101 54,-201 104,-365 46,-148 65,-220 65,-245 0,-11 9,-48 19,-82 32,-107 40,-151 34,-201 -3,-26 -3,-47 1,-47 3,0 19,14 34,30 25,28 37,32 172,55 80,13 174,30 210,39 146,34 244,49 478,72 49,5 54,8 70,42 9,20 22,40 27,44 6,4 1,8 -9,8 -20,0 -20,0 0,15 18,13 18,14 -6,8 -22,-5 -23,-4 -9,8 16,13 13,22 -25,104 -34,75 -44,90 -61,87 l -20,-4 20,16 c 20,15 20,15 -1,10 -26,-7 -43,14 -23,27 11,7 9,9 -6,9 -17,0 -17,2 -5,10 12,8 12,10 -5,10 -17,0 -17,2 -5,10 13,8 13,10 -2,10 -21,0 -67,82 -49,88 20,7 12,32 -11,32 -16,0 -19,3 -10,9 18,11 -15,81 -39,81 -11,0 -34,29 -63,77 -37,63 -42,79 -31,86 13,7 13,11 -1,32 -9,14 -26,25 -38,25 -17,0 -18,2 -6,10 12,8 12,10 -5,11 -11,0 -14,3 -7,6 20,8 14,23 -10,23 -18,0 -20,2 -9,9 12,8 12,14 4,33 -7,13 -12,17 -12,11 -2,-23 -26,-13 -44,17 -10,17 -13,30 -8,30 6,0 11,6 11,14 0,9 -7,12 -22,9 -17,-3 -19,-2 -10,5 11,7 8,11 -10,16 -14,4 -18,9 -10,13 20,8 14,23 -10,24 -13,0 -17,3 -10,6 6,2 12,12 11,21 0,11 -2,12 -6,5 -2,-7 -10,-13 -16,-13 -16,0 -80,94 -67,98 21,7 10,30 -12,25 -17,-3 -19,-2 -9,5 17,12 6,32 -19,32 -23,0 -85,81 -69,91 8,5 8,12 0,25 -6,11 -11,13 -11,7 0,-21 -25,-15 -48,12 -12,14 -26,25 -31,25 -5,0 -26,24 -47,53 -21,28 -46,58 -56,65 -10,7 -37,43 -61,81 -25,37 -72,92 -106,122 -34,30 -75,75 -92,102 -16,26 -40,52 -53,56 -23,9 -96,87 -96,103 0,4 -9,8 -19,8 -11,0 -23,5 -26,10 -8,13 -48,13 -61,0 -16,-16 -51,16 -64,58 -7,20 -26,63 -42,94 -17,32 -28,64 -25,73 4,9 1,15 -7,15 -21,0 -40,27 -24,33 17,6 -61,73 -80,69 -17,-4 -44,17 -36,29 3,5 -1,15 -8,22 -26,24 -116,97 -119,96 -2,0 -10,-3 -16,-6 z"
|
174
|
+
id="path126"
|
175
|
+
sodipodi:nodetypes="ccccscscsccccsccsccsccccccscccccccccssscscscscccssccsccccssccccccccscccsscscscscsccsscscccscccccc" />
|
176
|
+
<path
|
177
|
+
d="m 4949,9502 c -65,-49 -119,-99 -119,-109 0,-15 -120,-124 -129,-119 -8,5 -61,-47 -61,-61 0,-15 -250,-253 -266,-253 -10,0 -34,-28 -34,-41 0,-7 -21,-35 -47,-63 -70,-76 -113,-127 -113,-135 0,-9 -63,-65 -71,-63 -4,1 -10,-11 -14,-25 -5,-20 -8,-24 -15,-13 -7,11 -10,7 -15,-13 -4,-14 -16,-29 -26,-32 -10,-4 -22,-17 -25,-30 -3,-13 -12,-26 -20,-29 -8,-3 -14,-15 -14,-26 0,-12 -4,-19 -9,-15 -5,3 -12,-4 -16,-15 -3,-11 -15,-25 -26,-30 -10,-6 -19,-17 -19,-24 0,-18 -40,-67 -50,-61 -4,2 -10,-10 -14,-28 -5,-25 -9,-29 -16,-17 -8,12 -10,11 -10,-8 0,-12 -7,-25 -15,-28 -8,-4 -15,-11 -15,-16 0,-14 -41,-64 -47,-58 -3,3 -10,-11 -17,-31 -21,-61 -111,-178 -120,-156 -2,7 -5,4 -5,-5 -1,-10 -10,-27 -21,-38 -51,-51 12,-54 90,-5 30,19 63,35 73,35 24,0 46,27 47,58 0,12 9,40 20,62 11,22 20,45 20,52 0,20 89,118 116,129 14,5 24,17 24,27 0,11 17,30 39,45 l 40,26 3,-22 c 2,-14 11,-23 26,-25 13,-2 26,-10 29,-18 3,-10 21,-14 57,-14 52,0 52,0 74,45 24,50 29,120 10,128 -10,4 -10,6 0,6 8,1 12,20 12,59 0,78 21,157 56,217 25,41 39,52 80,67 27,10 50,18 52,18 1,0 2,-9 2,-20 0,-16 7,-20 36,-20 27,0 37,5 41,20 3,11 9,20 14,20 9,0 44,73 65,140 8,25 19,52 24,61 4,9 13,35 20,57 8,31 24,52 63,84 79,65 266,260 273,285 12,46 1,54 -37,25 z"
|
178
|
+
id="path128" />
|
179
|
+
<path
|
180
|
+
d="m 5100,8486 c 0,-8 19,-18 46,-25 60,-15 120,-54 139,-90 19,-38 19,-87 0,-232 -27,-202 -29,-278 -9,-300 9,-10 20,-19 24,-19 4,0 10,64 14,143 3,78 10,162 16,187 5,25 9,86 10,136 0,113 -17,145 -100,186 -61,30 -140,38 -140,14 z"
|
181
|
+
id="path130" />
|
182
|
+
<path
|
183
|
+
d="m 4877,8430 c -9,-11 -17,-25 -17,-30 0,-6 -4,-10 -10,-10 -5,0 -10,-18 -10,-40 0,-38 2,-40 30,-40 17,0 29,3 29,8 -5,31 6,59 36,89 19,19 35,37 35,39 0,2 -17,4 -38,4 -25,0 -43,-7 -55,-20 z"
|
184
|
+
id="path132" />
|
185
|
+
<path
|
186
|
+
d="m 4853,8293 c -18,-7 -17,-147 1,-215 7,-29 17,-89 21,-133 l 6,-80 -37,-20 c -46,-25 -94,-89 -94,-126 0,-15 -5,-29 -12,-31 -15,-5 -24,-118 -9,-118 6,0 11,-7 11,-15 0,-8 -4,-15 -10,-15 -21,0 -5,-131 23,-187 9,-19 18,-23 59,-23 46,0 61,11 37,26 -6,3 -24,34 -40,68 -25,52 -29,73 -29,141 0,57 6,92 19,122 21,45 96,133 115,133 6,0 17,4 24,9 14,8 12,29 -24,289 -8,56 -14,120 -14,142 0,40 -11,48 -47,33 z"
|
187
|
+
id="path134" />
|
188
|
+
<path
|
189
|
+
d="m 5432,7573 c 0,-60 -6,-101 -17,-127 -26,-61 -89,-139 -129,-161 -20,-11 -36,-23 -36,-28 0,-4 -4,-5 -10,-2 -5,3 -10,2 -10,-3 0,-20 -49,-31 -100,-23 -28,4 -53,4 -56,0 -8,-13 -42,-11 -47,4 -4,9 -6,9 -6,0 -1,-16 -71,15 -71,31 -1,14 -66,56 -74,48 -3,-3 -6,-20 -6,-39 0,-30 6,-37 62,-73 59,-39 64,-40 149,-40 48,0 91,5 94,10 3,6 16,10 29,10 27,0 124,57 172,102 42,39 64,78 64,113 0,15 7,33 15,41 11,12 15,40 15,120 0,96 -1,104 -19,104 -18,0 -19,-8 -19,-87 z"
|
190
|
+
id="path136" />
|
191
|
+
</g>
|
192
|
+
</g>
|
193
|
+
<path
|
194
|
+
d="M 5466.1143,11449.956 C 4936.1517,11292.479 3424.6486,9616.2211 3985.3499,9958.2029 3851.8776,9355.7964 2842.0649,8764.8896 2510.0387,8254.0253 c -322.7775,-955.46 -144.4803,-1327.6757 -486.5073,-796.703 -144.1868,-285.991 -735.3905,-1278.9285 -222.3888,-520.1575 316.7181,489.1746 593.756,1297.4439 1107.3137,371.3262 341.5285,-547.1247 79.363,-1097.4231 1016.2862,-1094.1131 865.2318,81.4163 1739.622,-13.4767 2610.41,32.5125 1110.4529,-54.388 732.2192,611.5365 698.6379,523.2473 -284.6833,1144.7852 -745.0722,3352.6733 -1270.5172,3948.8153 -156.2246,261.813 -250.6698,555.812 -497.1589,731.003 z"
|
195
|
+
id="path142"
|
196
|
+
style="opacity:1;fill:#d80506;stroke-width:1.87927"
|
197
|
+
sodipodi:nodetypes="ccccccccccc"
|
198
|
+
transform="matrix(0.9403492,0,0,0.95234487,162.98524,568.88693)" />
|
199
|
+
<g
|
200
|
+
fill="#f20606"
|
201
|
+
id="g156"
|
202
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3849.8061,-5711.2493)"
|
203
|
+
style="opacity:1">
|
204
|
+
<g
|
205
|
+
id="g154"
|
206
|
+
transform="translate(13.3877,-22.8417)">
|
207
|
+
<path
|
208
|
+
d="m 3586.0013,7934.741 c -129.8645,-148.6245 -185.8733,-356.3852 -303.706,-516.0817 -42.0048,-119.4533 -174.683,-320.8176 -157.683,-335.8176 104.8912,-73.9897 297.9643,-80.9296 413.9912,-123.3507 170.3049,-42.829 344.2145,-70.2005 518.2869,-92.6259 16.9588,195.4011 -135.8909,345.7605 -184.0172,525.5697 -71.6791,179.556 -135.0691,431.2331 -217.2609,606.4068 -17.8523,15.3123 -6.9987,10.741 -69.611,-64.1006 z"
|
209
|
+
id="path152"
|
210
|
+
sodipodi:nodetypes="cccccccc" />
|
211
|
+
</g>
|
212
|
+
</g>
|
213
|
+
<g
|
214
|
+
fill="#d5131a"
|
215
|
+
id="g164"
|
216
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3830.141,-5748.5481)"
|
217
|
+
style="opacity:1">
|
218
|
+
<g
|
219
|
+
id="g162">
|
220
|
+
<path
|
221
|
+
d="m 3121,7075 c 0,-26 25,-59 38,-50 16,9 13,35 -4,35 -7,0 -19,8 -24,18 -10,16 -10,15 -10,-3 z"
|
222
|
+
id="path158" />
|
223
|
+
<path
|
224
|
+
d="m 6055,6899 c -11,-4 -434,-9 -940,-10 -506,0 -940,-2 -965,-2 -25,-1 -53,3 -62,7 -15,7 -18,3 -18,-16 0,-27 38,-65 195,-201 270.2642,-148.4175 368.9153,-483.5962 661.1379,-570.7979 43,-12 220.3895,-14.3411 310.8621,-19.2021 33.9266,-1.7893 81.4875,15.2488 147.4875,84.2488 45,47 65.5125,100.7512 75.5125,103.7512 10,3 21,14 24,23 3,10 18,25 33,34 16,10 143,131 284,270 268,265 318,323 254,297 z"
|
225
|
+
id="path160"
|
226
|
+
sodipodi:nodetypes="ccccsccccscccc" />
|
227
|
+
</g>
|
228
|
+
</g>
|
229
|
+
<g
|
230
|
+
fill="#e32c2f"
|
231
|
+
id="g178"
|
232
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3849.8061,-5711.2493)"
|
233
|
+
style="opacity:1">
|
234
|
+
<g
|
235
|
+
id="g176">
|
236
|
+
<path
|
237
|
+
d="m 3130,7051 c 0,-15 49,-68 50,-54 0,7 6,10 13,8 6,-3 57,-11 112,-19 106,-16 481,-84 603,-110 40,-9 87,-16 104,-16 24,0 46,-15 107,-71 42,-40 105,-96 141,-125 66,-54 152,-131 391,-349 215,-196 250,-224 287,-224 17,-1 32,3 32,8 0,6 -23,29 -52,53 -28,24 -84,72 -123,108 -39,36 -132,119 -205,185 -73,66 -161,145 -194,176 -34,30 -104,91 -156,136 -52,45 -108,95 -124,112 -20,21 -39,31 -59,31 -28,0 -369,59 -552,96 -77,16 -352,63 -367,64 -5,0 -8,-4 -8,-9 z"
|
238
|
+
id="path174" />
|
239
|
+
</g>
|
240
|
+
</g>
|
241
|
+
<g
|
242
|
+
fill="#db4d4e"
|
243
|
+
id="g190"
|
244
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3849.8061,-5711.2493)"
|
245
|
+
style="opacity:1">
|
246
|
+
<g
|
247
|
+
id="g188">
|
248
|
+
<path
|
249
|
+
d="m 3150,7025 c 0,-12 154,-199 250,-305 52,-58 138,-154 189,-215 52,-60 100,-116 107,-124 6,-7 27,-16 45,-20 24,-5 33,-12 31,-24 -3,-18 15,-24 188,-63 57,-13 122,-24 142,-24 36,0 38,2 38,33 v 32 l -148,33 c -81,19 -167,38 -192,43 -37,8 -56,21 -107,74 -34,36 -69,65 -77,65 -9,0 -16,9 -16,20 0,15 -7,20 -25,20 -21,0 -25,5 -25,30 0,18 -6,33 -15,36 -8,4 -15,12 -15,18 0,7 -14,25 -31,42 -17,16 -53,61 -79,99 -48,69 -130,155 -150,155 -5,0 -10,7 -10,15 0,8 -3,15 -8,15 -4,0 -12,10 -17,23 -7,15 -20,23 -42,25 -18,2 -33,0 -33,-3 z"
|
250
|
+
id="path184" />
|
251
|
+
<path
|
252
|
+
d="m 4170,6256 c 0,-30 4,-34 31,-40 45,-9 49,-8 49,10 0,12 6,15 23,10 12,-4 94,-22 182,-41 88,-18 229,-49 313,-69 84,-20 163,-36 175,-36 19,0 18,3 -13,35 -24,25 -43,35 -64,35 -35,0 -348,63 -386,78 -14,5 -50,13 -80,17 -30,3 -77,13 -104,21 -27,8 -67,14 -88,14 -37,0 -38,-1 -38,-34 z"
|
253
|
+
id="path186" />
|
254
|
+
</g>
|
255
|
+
</g>
|
256
|
+
<g
|
257
|
+
fill="#ef4545"
|
258
|
+
id="g196"
|
259
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3849.8061,-5711.2493)"
|
260
|
+
style="opacity:1">
|
261
|
+
<g
|
262
|
+
id="g194">
|
263
|
+
<path
|
264
|
+
d="m 3146,7027 c 84.9329,-108.8411 197.0507,-194.5605 271.4122,-311.983 100.6996,-122.029 212.3452,-245.5504 313.6032,-372.2574 18.6223,-23.3027 180.0404,-50.6948 319.4982,-83.2866 141.5835,-36.6893 298.8865,-56.37 433.9534,-78.4893 151.467,-24.8052 385.5579,-97.054 470.2021,-95.6398 -69.5774,75.069 -146.8852,142.6734 -194.5944,185.1073 -75.5232,64.6091 -143.8023,137.5407 -219.5263,202.3088 -147.435,133.0925 -297.9728,262.682 -447.1829,393.7668 -96.0744,45.8613 -205.9602,40.5334 -307.1212,68.8378 -211.274,39.3256 -422.2075,83.0401 -636.3693,103.7604 -6.2335,-3.1162 -6.4217,-6.0249 -3.875,-12.125 z"
|
265
|
+
id="path192"
|
266
|
+
sodipodi:nodetypes="ccscsccccccc" />
|
267
|
+
</g>
|
268
|
+
</g>
|
269
|
+
</g>
|
270
|
+
<g
|
271
|
+
id="g11777"
|
272
|
+
style="opacity:0.755044"
|
273
|
+
transform="matrix(0.94034924,0,0,0.95234483,162.98523,568.88693)" />
|
274
|
+
<g
|
275
|
+
fill="#6b282a"
|
276
|
+
id="g100"
|
277
|
+
style="opacity:1">
|
278
|
+
<g
|
279
|
+
id="g98" />
|
280
|
+
</g>
|
281
|
+
<g
|
282
|
+
fill="#434344"
|
283
|
+
id="g104"
|
284
|
+
style="opacity:1">
|
285
|
+
<g
|
286
|
+
id="g102" />
|
287
|
+
</g>
|
288
|
+
<g
|
289
|
+
fill="#545354"
|
290
|
+
id="g150"
|
291
|
+
style="opacity:1">
|
292
|
+
<g
|
293
|
+
id="g148" />
|
294
|
+
</g>
|
295
|
+
<g
|
296
|
+
fill="#a2393c"
|
297
|
+
id="g168"
|
298
|
+
style="opacity:1">
|
299
|
+
<g
|
300
|
+
id="g166" />
|
301
|
+
</g>
|
302
|
+
<g
|
303
|
+
fill="#646365"
|
304
|
+
id="g172"
|
305
|
+
style="opacity:1">
|
306
|
+
<g
|
307
|
+
id="g170" />
|
308
|
+
</g>
|
309
|
+
<g
|
310
|
+
fill="#7b7b7c"
|
311
|
+
id="g182"
|
312
|
+
style="opacity:1">
|
313
|
+
<g
|
314
|
+
id="g180" />
|
315
|
+
</g>
|
316
|
+
<g
|
317
|
+
fill="#ca7070"
|
318
|
+
id="g200"
|
319
|
+
style="opacity:1">
|
320
|
+
<g
|
321
|
+
id="g198" />
|
322
|
+
</g>
|
323
|
+
<g
|
324
|
+
fill="#949494"
|
325
|
+
id="g204"
|
326
|
+
style="opacity:1">
|
327
|
+
<g
|
328
|
+
id="g202" />
|
329
|
+
</g>
|
330
|
+
<g
|
331
|
+
fill="#abacac"
|
332
|
+
id="g208"
|
333
|
+
style="opacity:1">
|
334
|
+
<g
|
335
|
+
id="g206" />
|
336
|
+
</g>
|
337
|
+
<g
|
338
|
+
fill="#dd9d9b"
|
339
|
+
id="g212"
|
340
|
+
style="opacity:1">
|
341
|
+
<g
|
342
|
+
id="g210" />
|
343
|
+
</g>
|
344
|
+
<g
|
345
|
+
aria-label="Lock::Gemfile"
|
346
|
+
id="text3271"
|
347
|
+
style="font-size:2933.33px;line-height:1.25;opacity:1;fill:#fff;stroke-width:10">
|
348
|
+
<path
|
349
|
+
d="M 2953.7304,6340.5068 V 8317.5713 H 4326.5289 V 7719.172 h -648.266 V 6340.5068 Z"
|
350
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
351
|
+
id="path901" />
|
352
|
+
<path
|
353
|
+
d="m 4479.0607,7625.3054 c 0,466.3995 252.2664,739.1992 777.3325,739.1992 525.0661,0 777.3325,-272.7997 777.3325,-739.1992 v -35.2 c 0,-466.3995 -252.2664,-742.1325 -777.3325,-742.1325 -525.0661,0 -777.3325,272.7997 -777.3325,739.1992 z m 777.3325,-299.1997 c 64.5333,0 93.8666,46.9333 93.8666,281.5997 0,234.6664 -29.3333,275.733 -93.8666,275.733 -67.4666,0 -93.8666,-41.0666 -93.8666,-275.733 0,-234.6664 26.4,-281.5997 93.8666,-281.5997 z"
|
354
|
+
style="fill:#000"
|
355
|
+
id="path903" />
|
356
|
+
<path
|
357
|
+
d="m 6162.7906,7631.1721 c 0,495.7327 296.2663,733.3325 830.1324,733.3325 126.1332,0 255.1997,-20.5333 357.8663,-46.9333 l 5.8666,-504.5328 c -67.4666,20.5333 -155.4665,32.2666 -234.6664,32.2666 -181.8664,0 -275.733,-52.7999 -275.733,-234.6664 0,-152.5331 85.0666,-231.733 266.933,-231.733 82.1333,0 164.2665,11.7333 225.8664,29.3333 l 14.6667,-516.2661 c -108.5332,-26.4 -243.4664,-44 -354.9329,-44 -551.4661,0 -835.9991,275.733 -835.9991,753.8658 z"
|
358
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
359
|
+
id="path905" />
|
360
|
+
<path
|
361
|
+
d="m 7544.3846,6293.5735 v 2023.9978 h 674.6659 v -492.7995 l 222.9331,492.7995 h 677.5993 l -387.1996,-689.3326 c 170.1332,-190.6664 284.533,-466.3995 319.733,-733.3325 h -654.1326 c -17.6,164.2665 -85.0666,375.4663 -178.9332,527.9994 V 6293.5735 Z"
|
362
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
363
|
+
id="path907" />
|
364
|
+
<path
|
365
|
+
d="m 9219.3107,7123.7059 c 0,187.7332 46.9332,319.733 322.6663,319.733 278.6663,0 331.4663,-131.9998 331.4663,-319.733 v -11.7333 c 0,-187.7331 -52.8,-322.6663 -331.4663,-322.6663 -275.7331,0 -322.6663,134.9332 -322.6663,322.6663 z m 0,921.0657 c 0,187.7331 46.9332,319.733 322.6663,319.733 278.6663,0 331.4663,-131.9999 331.4663,-319.733 v -11.7333 c 0,-187.7332 -52.8,-322.6663 -331.4663,-322.6663 -275.7331,0 -322.6663,134.9331 -322.6663,322.6663 z"
|
366
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
367
|
+
id="path909" />
|
368
|
+
<path
|
369
|
+
d="m 10125.704,7123.7059 c 0,187.7332 46.934,319.733 322.667,319.733 278.666,0 331.466,-131.9998 331.466,-319.733 v -11.7333 c 0,-187.7331 -52.8,-322.6663 -331.466,-322.6663 -275.733,0 -322.667,134.9332 -322.667,322.6663 z m 0,921.0657 c 0,187.7331 46.934,319.733 322.667,319.733 278.666,0 331.466,-131.9999 331.466,-319.733 v -11.7333 c 0,-187.7332 -52.8,-322.6663 -331.466,-322.6663 -275.733,0 -322.667,134.9331 -322.667,322.6663 z"
|
370
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
371
|
+
id="path911" />
|
372
|
+
<path
|
373
|
+
d="m 11008.631,7346.639 c 0,665.866 263.999,1017.8656 941.599,1017.8656 281.599,0 510.399,-26.4 703.999,-64.5333 V 7243.9725 h -659.999 v 569.066 c -214.134,0 -252.267,-140.7998 -252.267,-478.1328 v -14.6666 c 0,-337.333 111.467,-419.4662 407.733,-419.4662 134.933,0 302.133,20.5333 413.6,41.0666 l 29.333,-601.3327 c -161.333,-26.4 -372.533,-46.9333 -554.399,-46.9333 -665.866,0 -1029.599,305.0664 -1029.599,1014.9322 z"
|
374
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
375
|
+
id="path913" />
|
376
|
+
<path
|
377
|
+
d="m 12836.093,7601.8387 c 0,569.0661 343.199,762.6659 900.532,762.6659 181.867,0 393.066,-23.4667 528,-55.7333 l 20.533,-472.2661 c -143.733,17.5999 -302.133,23.4666 -428.266,23.4666 -114.4,0 -217.067,-8.8 -261.067,-20.5333 -55.733,-14.6667 -88,-49.8666 -93.866,-96.7999 h 830.132 v -49.8666 c 0,-571.9994 -208.266,-844.7991 -724.532,-844.7991 -466.4,0 -771.466,255.1997 -771.466,736.2659 z m 662.932,-155.4664 c 0,-105.5999 11.734,-155.4665 35.2,-181.8665 17.6,-20.5333 38.134,-29.3333 70.4,-29.3333 32.267,0 52.8,8.8 70.4,29.3333 23.467,26.4 35.2,76.2666 35.2,181.8665 z"
|
378
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
379
|
+
id="path915" />
|
380
|
+
<path
|
381
|
+
d="m 14478.755,6894.9062 v 1422.6651 h 674.666 V 7408.239 c 23.467,-14.6667 55.733,-26.4 90.933,-26.4 61.6,0 85.067,26.4 85.067,76.2666 v 859.4657 h 674.666 V 7408.239 c 23.467,-14.6667 55.733,-26.4 90.933,-26.4 61.6,0 85.067,26.4 85.067,76.2666 v 859.4657 h 674.666 v -912.2657 c 0,-366.6662 -143.734,-557.3327 -463.467,-557.3327 -178.933,0 -331.466,76.2666 -448.799,187.7331 -64.533,-120.2665 -202.4,-187.7331 -357.866,-187.7331 -190.667,0 -352,73.3333 -460.533,187.7331 h -8.8 l -11.733,-140.7998 z"
|
382
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
383
|
+
id="path917" />
|
384
|
+
<path
|
385
|
+
d="m 16972.084,6894.9062 v 475.1995 h 205.334 v 947.4656 h 674.665 v -947.4656 h 396 v 947.4656 h 674.666 V 6894.9062 h -1070.666 v -46.9333 c 0,-73.3332 61.6,-129.0665 328.533,-129.0665 143.734,0 287.467,23.4666 393.067,43.9999 l 41.066,-495.7327 c -149.6,-29.3333 -372.533,-52.8 -571.999,-52.8 -566.133,0 -865.332,167.1998 -865.332,598.3994 v 82.1332 z"
|
386
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
387
|
+
id="path919" />
|
388
|
+
<path
|
389
|
+
d="m 19128.08,6293.5735 v 2023.9978 h 674.666 V 6293.5735 Z"
|
390
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
391
|
+
id="path921" />
|
392
|
+
<path
|
393
|
+
d="m 19969.944,7601.8387 c 0,569.0661 343.2,762.6659 900.533,762.6659 181.866,0 393.066,-23.4667 527.999,-55.7333 l 20.533,-472.2661 c -143.733,17.5999 -302.133,23.4666 -428.266,23.4666 -114.4,0 -217.066,-8.8 -261.066,-20.5333 -55.733,-14.6667 -88,-49.8666 -93.867,-96.7999 h 830.133 v -49.8666 c 0,-571.9994 -208.267,-844.7991 -724.533,-844.7991 -466.399,0 -771.466,255.1997 -771.466,736.2659 z m 662.933,-155.4664 c 0,-105.5999 11.733,-155.4665 35.2,-181.8665 17.6,-20.5333 38.133,-29.3333 70.4,-29.3333 32.267,0 52.8,8.8 70.4,29.3333 23.466,26.4 35.2,76.2666 35.2,181.8665 z"
|
394
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
395
|
+
id="path923" />
|
396
|
+
</g>
|
397
|
+
<path
|
398
|
+
d="m 4988.2126,9796.8027 c -215.3912,-93.761 -230.2622,-182.333 -145.8163,-868.4592 71.9101,-584.2601 54.2287,-559.5907 -150.4302,-781.6188 -273.9963,-297.2524 -295.9513,-541.984 -134.0282,-866.9882 254.4229,-510.6608 792.9987,-612.5402 1205.2574,-227.9932 306.4079,285.8173 337.0305,654.5558 82.2097,989.9185 -95.7746,126.0469 -201.0618,266.7789 -233.9715,312.7333 -45.2261,63.1605 -43.018,217.1866 9.0424,630.8497 76.6319,608.8959 43.3745,737.6979 -215.9395,836.2869 -168.1521,63.93 -219.6802,60.874 -416.3238,-24.729 z"
|
399
|
+
style="opacity:1;fill:#000;fill-opacity:1;stroke-width:52.1227"
|
400
|
+
id="path2154"
|
401
|
+
sodipodi:nodetypes="cssccscssc" />
|
402
|
+
<rect
|
403
|
+
style="fill:#fff;fill-opacity:1;stroke-width:45.4978;stroke-linejoin:round"
|
404
|
+
id="rect919"
|
405
|
+
width="1589.2714"
|
406
|
+
height="640.70099"
|
407
|
+
x="2958.8833"
|
408
|
+
y="8596.041"
|
409
|
+
rx="8.0170479"
|
410
|
+
ry="41.312908" />
|
411
|
+
<rect
|
412
|
+
style="fill:#fff;fill-opacity:1;stroke-width:142.14;stroke-linejoin:round"
|
413
|
+
id="rect1734"
|
414
|
+
width="15510.818"
|
415
|
+
height="640.70099"
|
416
|
+
x="5911.5503"
|
417
|
+
y="8596.041"
|
418
|
+
rx="78.244019"
|
419
|
+
ry="41.312908" />
|
420
|
+
</g>
|
421
|
+
</svg>
|
data/logo.svg
ADDED
@@ -0,0 +1,421 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
class="img-fluid"
|
4
|
+
style="transform: none; transform-origin: 50% 50%; cursor: move; max-height: 694.48px; background-color: white;"
|
5
|
+
width="2688"
|
6
|
+
height="1536"
|
7
|
+
viewBox="0 0 26880 15360"
|
8
|
+
version="1.1"
|
9
|
+
id="svg578"
|
10
|
+
sodipodi:docname="logo.svg"
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
16
|
+
<defs
|
17
|
+
id="defs582">
|
18
|
+
<inkscape:path-effect
|
19
|
+
effect="powerstroke"
|
20
|
+
id="path-effect3012"
|
21
|
+
is_visible="true"
|
22
|
+
lpeversion="1"
|
23
|
+
offset_points="7.5291848,0.88920292"
|
24
|
+
not_jump="false"
|
25
|
+
sort_points="true"
|
26
|
+
interpolator_type="Linear"
|
27
|
+
interpolator_beta="0.13343109"
|
28
|
+
start_linecap_type="zerowidth"
|
29
|
+
linejoin_type="round"
|
30
|
+
miter_limit="4"
|
31
|
+
scale_width="1"
|
32
|
+
end_linecap_type="zerowidth" />
|
33
|
+
<inkscape:path-effect
|
34
|
+
effect="fill_between_many"
|
35
|
+
method="bsplinespiro"
|
36
|
+
linkedpaths="#path572,0,1"
|
37
|
+
id="path-effect3014"
|
38
|
+
join="true"
|
39
|
+
close="true"
|
40
|
+
autoreverse="true" />
|
41
|
+
</defs>
|
42
|
+
<sodipodi:namedview
|
43
|
+
id="namedview580"
|
44
|
+
pagecolor="#ffffff"
|
45
|
+
bordercolor="#666666"
|
46
|
+
borderopacity="1.0"
|
47
|
+
inkscape:pageshadow="2"
|
48
|
+
inkscape:pageopacity="0.0"
|
49
|
+
inkscape:pagecheckerboard="0"
|
50
|
+
showgrid="false"
|
51
|
+
inkscape:zoom="0.33099594"
|
52
|
+
inkscape:cx="842.91064"
|
53
|
+
inkscape:cy="1415.4252"
|
54
|
+
inkscape:window-width="1902"
|
55
|
+
inkscape:window-height="1817"
|
56
|
+
inkscape:window-x="4484"
|
57
|
+
inkscape:window-y="146"
|
58
|
+
inkscape:window-maximized="1"
|
59
|
+
inkscape:current-layer="g39243"
|
60
|
+
showguides="true"
|
61
|
+
inkscape:guide-bbox="true">
|
62
|
+
<sodipodi:guide
|
63
|
+
position="5404.84,4454.1864"
|
64
|
+
orientation="1,0"
|
65
|
+
id="guide2884" />
|
66
|
+
<sodipodi:guide
|
67
|
+
position="7341.4798,9634.8542"
|
68
|
+
orientation="0,-1"
|
69
|
+
id="guide899" />
|
70
|
+
<sodipodi:guide
|
71
|
+
position="2165.3474,15318.667"
|
72
|
+
orientation="1,0"
|
73
|
+
id="guide987" />
|
74
|
+
<sodipodi:guide
|
75
|
+
position="6525.7598,14045.784"
|
76
|
+
orientation="1,0"
|
77
|
+
id="guide3795" />
|
78
|
+
<sodipodi:guide
|
79
|
+
position="8001.8579,9583.4653"
|
80
|
+
orientation="1,0"
|
81
|
+
id="guide3797" />
|
82
|
+
</sodipodi:namedview>
|
83
|
+
<g
|
84
|
+
id="g39243"
|
85
|
+
transform="matrix(1.282972,0,0,1.282972,-1365.3881,-1455.9994)">
|
86
|
+
<g
|
87
|
+
id="g4993"
|
88
|
+
style="opacity:0.77443"
|
89
|
+
transform="matrix(1.0028067,0,0,1,-195.94041,0)">
|
90
|
+
<path
|
91
|
+
d="m 7331.1413,5589.8146 c -198.9402,-62.1238 -437.9613,17.6518 -610.2707,-124.2043 -108.2347,-211.5079 -27.1068,-472.5694 -42.2029,-703.82 -2.4995,-296.2927 50.289,-617.3613 -104.738,-885.6681 -266.4985,-546.6319 -637.5299,-878.2766 -1245.5769,-829.4704 -406.2731,3.657 -825.9499,178.5742 -1053.8589,531.8203 -207.6886,262.0197 -378.9084,578.0484 -364.3268,924.148 -16.342,307.087 6.3332,617.15 -16.7591,922.6237 -131.8433,188.4596 -411.4801,92.2345 -598.7129,193.3523 -104.0996,34.3313 -248.2011,70.9044 -248.3568,5.1289 28.7817,-551.5115 -33.1119,-1157.9419 68.599,-1636.643 97.4101,-520.6954 414.1788,-937.1913 800.3671,-1286.0967 708.9284,-622.235 1579.9146,-763.8651 2396.79,-310.4731 330.7692,185.5143 605.0447,460.5634 811.1244,779.3256 320.6738,428.8076 407.1813,987.0741 397.7297,1512.449 -2.8529,297.1824 -3.4945,595.0204 1.8879,891.7161 -22.3221,97.4818 -133.7886,24.4976 -191.6951,15.8117 z"
|
92
|
+
id="path3016"
|
93
|
+
style="opacity:0.755044;fill:#4f4f4f"
|
94
|
+
inkscape:original-d="M 0,0"
|
95
|
+
inkscape:path-effect="#path-effect3014" />
|
96
|
+
<path
|
97
|
+
d="m 7315.5961,5589.8146 c -198.9402,-62.1238 -437.9613,17.6518 -610.2707,-124.2043 -108.2347,-211.5079 -27.1068,-472.5694 -42.2029,-703.82 -2.4995,-296.2927 50.289,-617.3613 -104.738,-885.6681 -266.4985,-546.6319 -637.5299,-878.2766 -1245.5769,-829.4704 -406.2731,3.657 -825.9499,178.5742 -1053.8589,531.8203 -207.6886,262.0197 -378.9084,578.0484 -364.3268,924.148 -16.342,307.087 6.3332,617.15 -16.7591,922.6237 -131.8433,188.4596 -411.4801,92.2345 -598.7129,193.3523 -104.0996,34.3313 -248.2011,70.9044 -248.3568,5.1289 28.7817,-551.5115 -33.1119,-1157.9419 68.599,-1636.643 97.4101,-520.6954 414.1788,-937.1913 800.3671,-1286.0967 708.9284,-622.235 1579.9146,-763.8651 2396.79,-310.4731 330.7692,185.5143 605.0447,460.5634 811.1244,779.3256 320.6738,428.8076 407.1813,987.0741 397.7297,1512.449 -2.8529,297.1824 -3.4945,595.0204 1.8879,891.7161 -22.3221,97.4818 -133.7886,24.4976 -191.6951,15.8117 z"
|
98
|
+
id="path572"
|
99
|
+
style="opacity:1;fill:#4f4f4f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.77841"
|
100
|
+
sodipodi:nodetypes="ccsscccccccsscccc"
|
101
|
+
inkscape:linked-fill="path3016"
|
102
|
+
inkscape:original-d="m 7331.1413,5589.8146 c -198.9402,-62.1238 -437.9613,17.6518 -610.2707,-124.2043 -108.2347,-211.5079 -27.1068,-472.5694 -42.2029,-703.82 -2.4995,-296.2927 50.289,-617.3613 -104.738,-885.6681 -266.4985,-546.6319 -637.5299,-878.2766 -1245.5769,-829.4704 -406.2731,3.657 -825.9499,178.5742 -1053.8589,531.8203 -207.6886,262.0197 -378.9084,578.0484 -364.3268,924.148 -16.342,307.087 6.3332,617.15 -16.7591,922.6237 -131.8433,188.4596 -411.4801,92.2345 -598.7129,193.3523 -104.0996,34.3313 -248.2011,70.9044 -248.3568,5.1289 28.7817,-551.5115 -33.1119,-1157.9419 68.599,-1636.643 97.4101,-520.6954 414.1788,-937.1913 800.3671,-1286.0967 708.9284,-622.235 1579.9146,-763.8651 2396.79,-310.4731 330.7692,185.5143 605.0447,460.5634 811.1244,779.3256 320.6738,428.8076 407.1813,987.0741 397.7297,1512.449 -2.8529,297.1824 -3.4945,595.0204 1.8879,891.7161 -22.3221,97.4818 -133.7886,24.4976 -191.6951,15.8117 z"
|
103
|
+
inkscape:path-effect="#path-effect3012" />
|
104
|
+
<g
|
105
|
+
fill="#a00715"
|
106
|
+
id="g96"
|
107
|
+
transform="matrix(1.7671711,0,0,1.8065912,-3774.6638,-5877.2505)"
|
108
|
+
style="opacity:1">
|
109
|
+
<g
|
110
|
+
id="g94">
|
111
|
+
<path
|
112
|
+
d="m 5430,9306 c 0,-20 4,-36 9,-36 5,0 11,-10 13,-22 2,-19 10,-24 46,-26 33,-3 42,-7 42,-22 0,-10 5,-22 10,-25 6,-3 10,-14 10,-24 0,-19 49,-71 67,-71 6,0 13,-9 16,-20 4,-16 14,-20 51,-20 25,0 46,3 46,8 0,10 -157,163 -242,236 l -68,58 z"
|
113
|
+
id="path82" />
|
114
|
+
<path
|
115
|
+
d="m 5893,8873 c -7,-2 -13,-20 -13,-39 0,-34 0,-34 46,-34 h 46 l -32,40 c -17,22 -32,40 -33,39 -1,0 -8,-3 -14,-6 z"
|
116
|
+
id="path84" />
|
117
|
+
<path
|
118
|
+
d="m 4221,8802 c -19,-18 -43,-46 -53,-62 l -18,-30 h 25 c 39,0 87,54 83,93 l -3,32 z"
|
119
|
+
id="path86" />
|
120
|
+
<path
|
121
|
+
d="m 6010,8685 c 0,-24 6,-39 20,-47 11,-7 20,-18 20,-25 0,-9 15,-13 45,-13 h 45 l -37,51 c -30,42 -65,69 -89,69 -2,0 -4,-16 -4,-35 z"
|
122
|
+
id="path88" />
|
123
|
+
<path
|
124
|
+
d="m 3690,8129 c -20,-24 -48,-63 -63,-86 l -27,-43 h 30 c 16,0 30,4 30,9 0,6 11,22 25,37 14,15 25,33 25,40 0,7 5,14 11,16 6,2 9,19 7,37 l -3,34 z"
|
125
|
+
id="path90" />
|
126
|
+
<path
|
127
|
+
d="m 7023,7133 c -208.6689,-156.7823 -485.6059,-149.8182 -736.4659,-161.0036 -233.2976,46.3116 -1147.9402,-660.7869 -1032.6972,-858.3974 13.5064,-12.8676 252.3824,20.967 333.3396,38.7478 386.0445,47.5363 653.2412,55.4032 979.8503,199.1311 C 6722.5067,6530.2799 7093.2071,6978.9171 7023,7133 Z"
|
128
|
+
id="path92"
|
129
|
+
sodipodi:nodetypes="cccccc" />
|
130
|
+
</g>
|
131
|
+
</g>
|
132
|
+
<g
|
133
|
+
fill="#b50b10"
|
134
|
+
id="g122"
|
135
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3761.8526,-5711.2493)"
|
136
|
+
style="opacity:1">
|
137
|
+
<g
|
138
|
+
id="g120">
|
139
|
+
<path
|
140
|
+
d="m 5263,9441 c 3,-23 11,-48 17,-56 14,-16 100,-21 100,-6 0,10 -160.3548,151.2617 -190.3548,167.2617 -18,10 67.3548,-67.2617 73.3548,-105.2617 z"
|
141
|
+
id="path106"
|
142
|
+
sodipodi:nodetypes="ccscc" />
|
143
|
+
<path
|
144
|
+
d="m 4839,9414 c -93,-78 -406,-384 -506,-494 -52,-58 -126,-140 -165,-182 -38,-43 -84,-97 -101,-120 -16,-24 -33,-45 -36,-48 -36,-31 -466.9845,-618.394 -480.9845,-655.394 -12,-31 69.9845,22.394 101.9845,58.394 45,48 108,148 108,169 0,10 5,18 11,18 11,0 48,39 49,52 0,4 13,21 30,38 16,17 30,36 30,41 0,6 11,20 24,30 14,11 28,30 32,42 4,12 22,36 40,54 19,17 34,41 34,52 0,12 7,21 15,21 10,0 15,10 15,30 0,25 4,30 25,30 16,0 25,6 25,15 0,8 7,15 15,15 8,0 15,4 15,10 0,5 20,29 45,53 25,24 45,47 45,50 0,6 47,61 113,133 26,28 47,56 47,63 0,13 24,41 34,41 22,0 266,241 266,262 0,10 7,18 15,18 8,0 15,7 15,15 0,8 9,15 19,15 26,0 141,107 141,130 0,10 9,20 20,23 15,4 20,14 20,36 0,17 -1,31 -3,31 -2,0 -28,-21 -58,-46 z"
|
145
|
+
id="path108"
|
146
|
+
sodipodi:nodetypes="cccccccssccscscssssssssscssssssscssc" />
|
147
|
+
<path
|
148
|
+
d="m 5380,9325 c 0,-24 6,-39 20,-47 11,-7 20,-20 20,-29 0,-10 11,-37 25,-60 14,-24 32,-66 41,-92 20,-60 45,-77 113,-76 41,1 56,-2 63,-15 19,-34 72,-88 95,-97 12,-5 36,-30 52,-56 17,-27 58,-72 92,-102 34,-30 81,-85 106,-122 24,-38 51,-74 61,-81 10,-7 35,-37 56,-65 21,-29 42,-53 47,-53 5,0 19,-11 31,-25 12,-14 28,-25 35,-25 7,0 13,-6 13,-13 0,-20 60,-97 76,-97 8,0 14,-9 14,-19 0,-11 3,-21 8,-23 4,-1 15,-19 26,-40 10,-20 33,-52 52,-72 19,-20 34,-40 34,-44 0,-5 8,-17 18,-28 9,-11 26,-36 36,-57 11,-20 25,-37 33,-37 7,0 13,-9 13,-20 0,-11 4,-20 9,-20 5,0 12,-11 15,-25 4,-16 13,-25 26,-25 16,0 20,-7 20,-32 0,-42 85,-188 110,-188 21,0 30,-19 30,-61 0,-16 5,-29 10,-29 6,0 10,-9 10,-20 0,-34 92,-200 112,-200 9,0 20,-9 23,-20 4,-13 15,-20 30,-20 30,0 28,7 -46,146 -29,55 -76,146 -105,204 -49,97 -121,216 -241,399 -26,40 -60,92 -75,115 -14,22 -30,46 -35,51 -5,6 -30,40 -56,77 -26,36 -53,72 -60,80 -7,7 -35,42 -62,78 -89,119 -156,190 -178,191 -12,0 -16,3 -9,6 14.9898,16.0777 -37.2683,64.0952 -58,87 -15.3589,17.1203 -80,106 -103,106 -17,0 -19,2 -8,9 20,13 -190,235 -222,236 -74.0961,40.4352 -106.7456,171.16 -190,180 -13,0 -22,6 -22,15 0,22 -88.7376,113.5753 -110.7376,113.5753 -14,0 5.7376,-31.5753 5.7376,-58.5753 z"
|
149
|
+
id="path110"
|
150
|
+
sodipodi:nodetypes="scsccccccscscssssssccssccssscssssssscscccccccccccscccsss" />
|
151
|
+
<path
|
152
|
+
d="m 5266,7994 c -3,-9 -6,-33 -6,-55 0,-32 3,-39 20,-39 18,0 20,7 20,55 0,40 -4,55 -14,55 -8,0 -17,-7 -20,-16 z"
|
153
|
+
id="path112" />
|
154
|
+
<path
|
155
|
+
d="m 4880,7289 c 0,-19 6,-30 20,-34 11,-3 20,-12 20,-19 0,-28 72,-46 180,-45 130,0 180,17 180,60 v 28 l -45,-16 c -25,-8 -45,-18 -45,-21 0,-4 -37,-6 -82,-4 -73,2 -90,7 -155,41 l -73,38 z"
|
156
|
+
id="path114" />
|
157
|
+
<path
|
158
|
+
d="m 6981,7201 c 22.4387,-96.2346 -73.816,-150.0213 -156.5328,-131.4924 C 6573.9492,7045.4557 6330.841,6975.9853 6082,6941 c -254.4097,-253.8718 -508.727,-508.2267 -776.8724,-747.6834 -55.8199,-62.8617 10.9455,-108.867 46.8482,-31.9278 265.96,231.1298 511.5855,484.1104 762.0242,731.6112 289.0295,48.051 574.6942,123.1886 868.4693,136.9828 79.4162,11.8268 102.5833,150.2945 16.9209,170.0217 l -8.8551,1.0056 z"
|
159
|
+
id="path116" />
|
160
|
+
</g>
|
161
|
+
</g>
|
162
|
+
<g
|
163
|
+
fill="#c80406"
|
164
|
+
id="g140"
|
165
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3738.4744,-5759.5717)"
|
166
|
+
style="opacity:1">
|
167
|
+
<g
|
168
|
+
id="g138">
|
169
|
+
<path
|
170
|
+
d="m 5056,9589 c -14,-11 -24,-25 -21,-30 8,-11 115,-12 115,-1 0,12 -44,52 -57,52 -6,0 -22,-9 -37,-21 z"
|
171
|
+
id="path124" />
|
172
|
+
<path
|
173
|
+
d="m 5163,9543 c -7,-2 -13,-19 -13,-36 1,-39 58,-106 113,-132 21,-9 46.2471,-88.3275 67.2471,-111.3275 C 5375.2471,9211.6725 5440,9153 5440,9116 c 0,-14 16,-66 35,-115 19,-48 35,-96 35,-106 0,-9 15,-65 34,-123 19,-59 42,-136 51,-172 9,-36 24,-81 31,-100 8,-19 21,-60 29,-90 7,-30 20,-75 29,-100 8,-25 25,-85 36,-135 11,-49 34,-137 50,-195 16,-58 39,-143 51,-190 25,-101 54,-201 104,-365 46,-148 65,-220 65,-245 0,-11 9,-48 19,-82 32,-107 40,-151 34,-201 -3,-26 -3,-47 1,-47 3,0 19,14 34,30 25,28 37,32 172,55 80,13 174,30 210,39 146,34 244,49 478,72 49,5 54,8 70,42 9,20 22,40 27,44 6,4 1,8 -9,8 -20,0 -20,0 0,15 18,13 18,14 -6,8 -22,-5 -23,-4 -9,8 16,13 13,22 -25,104 -34,75 -44,90 -61,87 l -20,-4 20,16 c 20,15 20,15 -1,10 -26,-7 -43,14 -23,27 11,7 9,9 -6,9 -17,0 -17,2 -5,10 12,8 12,10 -5,10 -17,0 -17,2 -5,10 13,8 13,10 -2,10 -21,0 -67,82 -49,88 20,7 12,32 -11,32 -16,0 -19,3 -10,9 18,11 -15,81 -39,81 -11,0 -34,29 -63,77 -37,63 -42,79 -31,86 13,7 13,11 -1,32 -9,14 -26,25 -38,25 -17,0 -18,2 -6,10 12,8 12,10 -5,11 -11,0 -14,3 -7,6 20,8 14,23 -10,23 -18,0 -20,2 -9,9 12,8 12,14 4,33 -7,13 -12,17 -12,11 -2,-23 -26,-13 -44,17 -10,17 -13,30 -8,30 6,0 11,6 11,14 0,9 -7,12 -22,9 -17,-3 -19,-2 -10,5 11,7 8,11 -10,16 -14,4 -18,9 -10,13 20,8 14,23 -10,24 -13,0 -17,3 -10,6 6,2 12,12 11,21 0,11 -2,12 -6,5 -2,-7 -10,-13 -16,-13 -16,0 -80,94 -67,98 21,7 10,30 -12,25 -17,-3 -19,-2 -9,5 17,12 6,32 -19,32 -23,0 -85,81 -69,91 8,5 8,12 0,25 -6,11 -11,13 -11,7 0,-21 -25,-15 -48,12 -12,14 -26,25 -31,25 -5,0 -26,24 -47,53 -21,28 -46,58 -56,65 -10,7 -37,43 -61,81 -25,37 -72,92 -106,122 -34,30 -75,75 -92,102 -16,26 -40,52 -53,56 -23,9 -96,87 -96,103 0,4 -9,8 -19,8 -11,0 -23,5 -26,10 -8,13 -48,13 -61,0 -16,-16 -51,16 -64,58 -7,20 -26,63 -42,94 -17,32 -28,64 -25,73 4,9 1,15 -7,15 -21,0 -40,27 -24,33 17,6 -61,73 -80,69 -17,-4 -44,17 -36,29 3,5 -1,15 -8,22 -26,24 -116,97 -119,96 -2,0 -10,-3 -16,-6 z"
|
174
|
+
id="path126"
|
175
|
+
sodipodi:nodetypes="ccccscscsccccsccsccsccccccscccccccccssscscscscccssccsccccssccccccccscccsscscscscsccsscscccscccccc" />
|
176
|
+
<path
|
177
|
+
d="m 4949,9502 c -65,-49 -119,-99 -119,-109 0,-15 -120,-124 -129,-119 -8,5 -61,-47 -61,-61 0,-15 -250,-253 -266,-253 -10,0 -34,-28 -34,-41 0,-7 -21,-35 -47,-63 -70,-76 -113,-127 -113,-135 0,-9 -63,-65 -71,-63 -4,1 -10,-11 -14,-25 -5,-20 -8,-24 -15,-13 -7,11 -10,7 -15,-13 -4,-14 -16,-29 -26,-32 -10,-4 -22,-17 -25,-30 -3,-13 -12,-26 -20,-29 -8,-3 -14,-15 -14,-26 0,-12 -4,-19 -9,-15 -5,3 -12,-4 -16,-15 -3,-11 -15,-25 -26,-30 -10,-6 -19,-17 -19,-24 0,-18 -40,-67 -50,-61 -4,2 -10,-10 -14,-28 -5,-25 -9,-29 -16,-17 -8,12 -10,11 -10,-8 0,-12 -7,-25 -15,-28 -8,-4 -15,-11 -15,-16 0,-14 -41,-64 -47,-58 -3,3 -10,-11 -17,-31 -21,-61 -111,-178 -120,-156 -2,7 -5,4 -5,-5 -1,-10 -10,-27 -21,-38 -51,-51 12,-54 90,-5 30,19 63,35 73,35 24,0 46,27 47,58 0,12 9,40 20,62 11,22 20,45 20,52 0,20 89,118 116,129 14,5 24,17 24,27 0,11 17,30 39,45 l 40,26 3,-22 c 2,-14 11,-23 26,-25 13,-2 26,-10 29,-18 3,-10 21,-14 57,-14 52,0 52,0 74,45 24,50 29,120 10,128 -10,4 -10,6 0,6 8,1 12,20 12,59 0,78 21,157 56,217 25,41 39,52 80,67 27,10 50,18 52,18 1,0 2,-9 2,-20 0,-16 7,-20 36,-20 27,0 37,5 41,20 3,11 9,20 14,20 9,0 44,73 65,140 8,25 19,52 24,61 4,9 13,35 20,57 8,31 24,52 63,84 79,65 266,260 273,285 12,46 1,54 -37,25 z"
|
178
|
+
id="path128" />
|
179
|
+
<path
|
180
|
+
d="m 5100,8486 c 0,-8 19,-18 46,-25 60,-15 120,-54 139,-90 19,-38 19,-87 0,-232 -27,-202 -29,-278 -9,-300 9,-10 20,-19 24,-19 4,0 10,64 14,143 3,78 10,162 16,187 5,25 9,86 10,136 0,113 -17,145 -100,186 -61,30 -140,38 -140,14 z"
|
181
|
+
id="path130" />
|
182
|
+
<path
|
183
|
+
d="m 4877,8430 c -9,-11 -17,-25 -17,-30 0,-6 -4,-10 -10,-10 -5,0 -10,-18 -10,-40 0,-38 2,-40 30,-40 17,0 29,3 29,8 -5,31 6,59 36,89 19,19 35,37 35,39 0,2 -17,4 -38,4 -25,0 -43,-7 -55,-20 z"
|
184
|
+
id="path132" />
|
185
|
+
<path
|
186
|
+
d="m 4853,8293 c -18,-7 -17,-147 1,-215 7,-29 17,-89 21,-133 l 6,-80 -37,-20 c -46,-25 -94,-89 -94,-126 0,-15 -5,-29 -12,-31 -15,-5 -24,-118 -9,-118 6,0 11,-7 11,-15 0,-8 -4,-15 -10,-15 -21,0 -5,-131 23,-187 9,-19 18,-23 59,-23 46,0 61,11 37,26 -6,3 -24,34 -40,68 -25,52 -29,73 -29,141 0,57 6,92 19,122 21,45 96,133 115,133 6,0 17,4 24,9 14,8 12,29 -24,289 -8,56 -14,120 -14,142 0,40 -11,48 -47,33 z"
|
187
|
+
id="path134" />
|
188
|
+
<path
|
189
|
+
d="m 5432,7573 c 0,-60 -6,-101 -17,-127 -26,-61 -89,-139 -129,-161 -20,-11 -36,-23 -36,-28 0,-4 -4,-5 -10,-2 -5,3 -10,2 -10,-3 0,-20 -49,-31 -100,-23 -28,4 -53,4 -56,0 -8,-13 -42,-11 -47,4 -4,9 -6,9 -6,0 -1,-16 -71,15 -71,31 -1,14 -66,56 -74,48 -3,-3 -6,-20 -6,-39 0,-30 6,-37 62,-73 59,-39 64,-40 149,-40 48,0 91,5 94,10 3,6 16,10 29,10 27,0 124,57 172,102 42,39 64,78 64,113 0,15 7,33 15,41 11,12 15,40 15,120 0,96 -1,104 -19,104 -18,0 -19,-8 -19,-87 z"
|
190
|
+
id="path136" />
|
191
|
+
</g>
|
192
|
+
</g>
|
193
|
+
<path
|
194
|
+
d="M 5466.1143,11449.956 C 4936.1517,11292.479 3424.6486,9616.2211 3985.3499,9958.2029 3851.8776,9355.7964 2842.0649,8764.8896 2510.0387,8254.0253 c -322.7775,-955.46 -144.4803,-1327.6757 -486.5073,-796.703 -144.1868,-285.991 -735.3905,-1278.9285 -222.3888,-520.1575 316.7181,489.1746 593.756,1297.4439 1107.3137,371.3262 341.5285,-547.1247 79.363,-1097.4231 1016.2862,-1094.1131 865.2318,81.4163 1739.622,-13.4767 2610.41,32.5125 1110.4529,-54.388 732.2192,611.5365 698.6379,523.2473 -284.6833,1144.7852 -745.0722,3352.6733 -1270.5172,3948.8153 -156.2246,261.813 -250.6698,555.812 -497.1589,731.003 z"
|
195
|
+
id="path142"
|
196
|
+
style="opacity:1;fill:#d80506;stroke-width:1.87927"
|
197
|
+
sodipodi:nodetypes="ccccccccccc"
|
198
|
+
transform="matrix(0.9403492,0,0,0.95234487,162.98524,568.88693)" />
|
199
|
+
<g
|
200
|
+
fill="#f20606"
|
201
|
+
id="g156"
|
202
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3849.8061,-5711.2493)"
|
203
|
+
style="opacity:1">
|
204
|
+
<g
|
205
|
+
id="g154"
|
206
|
+
transform="translate(13.3877,-22.8417)">
|
207
|
+
<path
|
208
|
+
d="m 3586.0013,7934.741 c -129.8645,-148.6245 -185.8733,-356.3852 -303.706,-516.0817 -42.0048,-119.4533 -174.683,-320.8176 -157.683,-335.8176 104.8912,-73.9897 297.9643,-80.9296 413.9912,-123.3507 170.3049,-42.829 344.2145,-70.2005 518.2869,-92.6259 16.9588,195.4011 -135.8909,345.7605 -184.0172,525.5697 -71.6791,179.556 -135.0691,431.2331 -217.2609,606.4068 -17.8523,15.3123 -6.9987,10.741 -69.611,-64.1006 z"
|
209
|
+
id="path152"
|
210
|
+
sodipodi:nodetypes="cccccccc" />
|
211
|
+
</g>
|
212
|
+
</g>
|
213
|
+
<g
|
214
|
+
fill="#d5131a"
|
215
|
+
id="g164"
|
216
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3830.141,-5748.5481)"
|
217
|
+
style="opacity:1">
|
218
|
+
<g
|
219
|
+
id="g162">
|
220
|
+
<path
|
221
|
+
d="m 3121,7075 c 0,-26 25,-59 38,-50 16,9 13,35 -4,35 -7,0 -19,8 -24,18 -10,16 -10,15 -10,-3 z"
|
222
|
+
id="path158" />
|
223
|
+
<path
|
224
|
+
d="m 6055,6899 c -11,-4 -434,-9 -940,-10 -506,0 -940,-2 -965,-2 -25,-1 -53,3 -62,7 -15,7 -18,3 -18,-16 0,-27 38,-65 195,-201 270.2642,-148.4175 368.9153,-483.5962 661.1379,-570.7979 43,-12 220.3895,-14.3411 310.8621,-19.2021 33.9266,-1.7893 81.4875,15.2488 147.4875,84.2488 45,47 65.5125,100.7512 75.5125,103.7512 10,3 21,14 24,23 3,10 18,25 33,34 16,10 143,131 284,270 268,265 318,323 254,297 z"
|
225
|
+
id="path160"
|
226
|
+
sodipodi:nodetypes="ccccsccccscccc" />
|
227
|
+
</g>
|
228
|
+
</g>
|
229
|
+
<g
|
230
|
+
fill="#e32c2f"
|
231
|
+
id="g178"
|
232
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3849.8061,-5711.2493)"
|
233
|
+
style="opacity:1">
|
234
|
+
<g
|
235
|
+
id="g176">
|
236
|
+
<path
|
237
|
+
d="m 3130,7051 c 0,-15 49,-68 50,-54 0,7 6,10 13,8 6,-3 57,-11 112,-19 106,-16 481,-84 603,-110 40,-9 87,-16 104,-16 24,0 46,-15 107,-71 42,-40 105,-96 141,-125 66,-54 152,-131 391,-349 215,-196 250,-224 287,-224 17,-1 32,3 32,8 0,6 -23,29 -52,53 -28,24 -84,72 -123,108 -39,36 -132,119 -205,185 -73,66 -161,145 -194,176 -34,30 -104,91 -156,136 -52,45 -108,95 -124,112 -20,21 -39,31 -59,31 -28,0 -369,59 -552,96 -77,16 -352,63 -367,64 -5,0 -8,-4 -8,-9 z"
|
238
|
+
id="path174" />
|
239
|
+
</g>
|
240
|
+
</g>
|
241
|
+
<g
|
242
|
+
fill="#db4d4e"
|
243
|
+
id="g190"
|
244
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3849.8061,-5711.2493)"
|
245
|
+
style="opacity:1">
|
246
|
+
<g
|
247
|
+
id="g188">
|
248
|
+
<path
|
249
|
+
d="m 3150,7025 c 0,-12 154,-199 250,-305 52,-58 138,-154 189,-215 52,-60 100,-116 107,-124 6,-7 27,-16 45,-20 24,-5 33,-12 31,-24 -3,-18 15,-24 188,-63 57,-13 122,-24 142,-24 36,0 38,2 38,33 v 32 l -148,33 c -81,19 -167,38 -192,43 -37,8 -56,21 -107,74 -34,36 -69,65 -77,65 -9,0 -16,9 -16,20 0,15 -7,20 -25,20 -21,0 -25,5 -25,30 0,18 -6,33 -15,36 -8,4 -15,12 -15,18 0,7 -14,25 -31,42 -17,16 -53,61 -79,99 -48,69 -130,155 -150,155 -5,0 -10,7 -10,15 0,8 -3,15 -8,15 -4,0 -12,10 -17,23 -7,15 -20,23 -42,25 -18,2 -33,0 -33,-3 z"
|
250
|
+
id="path184" />
|
251
|
+
<path
|
252
|
+
d="m 4170,6256 c 0,-30 4,-34 31,-40 45,-9 49,-8 49,10 0,12 6,15 23,10 12,-4 94,-22 182,-41 88,-18 229,-49 313,-69 84,-20 163,-36 175,-36 19,0 18,3 -13,35 -24,25 -43,35 -64,35 -35,0 -348,63 -386,78 -14,5 -50,13 -80,17 -30,3 -77,13 -104,21 -27,8 -67,14 -88,14 -37,0 -38,-1 -38,-34 z"
|
253
|
+
id="path186" />
|
254
|
+
</g>
|
255
|
+
</g>
|
256
|
+
<g
|
257
|
+
fill="#ef4545"
|
258
|
+
id="g196"
|
259
|
+
transform="matrix(1.7671711,0,0,1.7897141,-3849.8061,-5711.2493)"
|
260
|
+
style="opacity:1">
|
261
|
+
<g
|
262
|
+
id="g194">
|
263
|
+
<path
|
264
|
+
d="m 3146,7027 c 84.9329,-108.8411 197.0507,-194.5605 271.4122,-311.983 100.6996,-122.029 212.3452,-245.5504 313.6032,-372.2574 18.6223,-23.3027 180.0404,-50.6948 319.4982,-83.2866 141.5835,-36.6893 298.8865,-56.37 433.9534,-78.4893 151.467,-24.8052 385.5579,-97.054 470.2021,-95.6398 -69.5774,75.069 -146.8852,142.6734 -194.5944,185.1073 -75.5232,64.6091 -143.8023,137.5407 -219.5263,202.3088 -147.435,133.0925 -297.9728,262.682 -447.1829,393.7668 -96.0744,45.8613 -205.9602,40.5334 -307.1212,68.8378 -211.274,39.3256 -422.2075,83.0401 -636.3693,103.7604 -6.2335,-3.1162 -6.4217,-6.0249 -3.875,-12.125 z"
|
265
|
+
id="path192"
|
266
|
+
sodipodi:nodetypes="ccscsccccccc" />
|
267
|
+
</g>
|
268
|
+
</g>
|
269
|
+
</g>
|
270
|
+
<g
|
271
|
+
id="g11777"
|
272
|
+
style="opacity:0.755044"
|
273
|
+
transform="matrix(0.94034924,0,0,0.95234483,162.98523,568.88693)" />
|
274
|
+
<g
|
275
|
+
fill="#6b282a"
|
276
|
+
id="g100"
|
277
|
+
style="opacity:1">
|
278
|
+
<g
|
279
|
+
id="g98" />
|
280
|
+
</g>
|
281
|
+
<g
|
282
|
+
fill="#434344"
|
283
|
+
id="g104"
|
284
|
+
style="opacity:1">
|
285
|
+
<g
|
286
|
+
id="g102" />
|
287
|
+
</g>
|
288
|
+
<g
|
289
|
+
fill="#545354"
|
290
|
+
id="g150"
|
291
|
+
style="opacity:1">
|
292
|
+
<g
|
293
|
+
id="g148" />
|
294
|
+
</g>
|
295
|
+
<g
|
296
|
+
fill="#a2393c"
|
297
|
+
id="g168"
|
298
|
+
style="opacity:1">
|
299
|
+
<g
|
300
|
+
id="g166" />
|
301
|
+
</g>
|
302
|
+
<g
|
303
|
+
fill="#646365"
|
304
|
+
id="g172"
|
305
|
+
style="opacity:1">
|
306
|
+
<g
|
307
|
+
id="g170" />
|
308
|
+
</g>
|
309
|
+
<g
|
310
|
+
fill="#7b7b7c"
|
311
|
+
id="g182"
|
312
|
+
style="opacity:1">
|
313
|
+
<g
|
314
|
+
id="g180" />
|
315
|
+
</g>
|
316
|
+
<g
|
317
|
+
fill="#ca7070"
|
318
|
+
id="g200"
|
319
|
+
style="opacity:1">
|
320
|
+
<g
|
321
|
+
id="g198" />
|
322
|
+
</g>
|
323
|
+
<g
|
324
|
+
fill="#949494"
|
325
|
+
id="g204"
|
326
|
+
style="opacity:1">
|
327
|
+
<g
|
328
|
+
id="g202" />
|
329
|
+
</g>
|
330
|
+
<g
|
331
|
+
fill="#abacac"
|
332
|
+
id="g208"
|
333
|
+
style="opacity:1">
|
334
|
+
<g
|
335
|
+
id="g206" />
|
336
|
+
</g>
|
337
|
+
<g
|
338
|
+
fill="#dd9d9b"
|
339
|
+
id="g212"
|
340
|
+
style="opacity:1">
|
341
|
+
<g
|
342
|
+
id="g210" />
|
343
|
+
</g>
|
344
|
+
<g
|
345
|
+
aria-label="Lock::Gemfile"
|
346
|
+
id="text3271"
|
347
|
+
style="font-size:2933.33px;line-height:1.25;opacity:1;fill:#00004f;stroke-width:10">
|
348
|
+
<path
|
349
|
+
d="M 2953.7304,6340.5068 V 8317.5713 H 4326.5289 V 7719.172 h -648.266 V 6340.5068 Z"
|
350
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
351
|
+
id="path901" />
|
352
|
+
<path
|
353
|
+
d="m 4479.0607,7625.3054 c 0,466.3995 252.2664,739.1992 777.3325,739.1992 525.0661,0 777.3325,-272.7997 777.3325,-739.1992 v -35.2 c 0,-466.3995 -252.2664,-742.1325 -777.3325,-742.1325 -525.0661,0 -777.3325,272.7997 -777.3325,739.1992 z m 777.3325,-299.1997 c 64.5333,0 93.8666,46.9333 93.8666,281.5997 0,234.6664 -29.3333,275.733 -93.8666,275.733 -67.4666,0 -93.8666,-41.0666 -93.8666,-275.733 0,-234.6664 26.4,-281.5997 93.8666,-281.5997 z"
|
354
|
+
style="fill:#ffffff"
|
355
|
+
id="path903" />
|
356
|
+
<path
|
357
|
+
d="m 6162.7906,7631.1721 c 0,495.7327 296.2663,733.3325 830.1324,733.3325 126.1332,0 255.1997,-20.5333 357.8663,-46.9333 l 5.8666,-504.5328 c -67.4666,20.5333 -155.4665,32.2666 -234.6664,32.2666 -181.8664,0 -275.733,-52.7999 -275.733,-234.6664 0,-152.5331 85.0666,-231.733 266.933,-231.733 82.1333,0 164.2665,11.7333 225.8664,29.3333 l 14.6667,-516.2661 c -108.5332,-26.4 -243.4664,-44 -354.9329,-44 -551.4661,0 -835.9991,275.733 -835.9991,753.8658 z"
|
358
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
359
|
+
id="path905" />
|
360
|
+
<path
|
361
|
+
d="m 7544.3846,6293.5735 v 2023.9978 h 674.6659 v -492.7995 l 222.9331,492.7995 h 677.5993 l -387.1996,-689.3326 c 170.1332,-190.6664 284.533,-466.3995 319.733,-733.3325 h -654.1326 c -17.6,164.2665 -85.0666,375.4663 -178.9332,527.9994 V 6293.5735 Z"
|
362
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
363
|
+
id="path907" />
|
364
|
+
<path
|
365
|
+
d="m 9219.3107,7123.7059 c 0,187.7332 46.9332,319.733 322.6663,319.733 278.6663,0 331.4663,-131.9998 331.4663,-319.733 v -11.7333 c 0,-187.7331 -52.8,-322.6663 -331.4663,-322.6663 -275.7331,0 -322.6663,134.9332 -322.6663,322.6663 z m 0,921.0657 c 0,187.7331 46.9332,319.733 322.6663,319.733 278.6663,0 331.4663,-131.9999 331.4663,-319.733 v -11.7333 c 0,-187.7332 -52.8,-322.6663 -331.4663,-322.6663 -275.7331,0 -322.6663,134.9331 -322.6663,322.6663 z"
|
366
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
367
|
+
id="path909" />
|
368
|
+
<path
|
369
|
+
d="m 10125.704,7123.7059 c 0,187.7332 46.934,319.733 322.667,319.733 278.666,0 331.466,-131.9998 331.466,-319.733 v -11.7333 c 0,-187.7331 -52.8,-322.6663 -331.466,-322.6663 -275.733,0 -322.667,134.9332 -322.667,322.6663 z m 0,921.0657 c 0,187.7331 46.934,319.733 322.667,319.733 278.666,0 331.466,-131.9999 331.466,-319.733 v -11.7333 c 0,-187.7332 -52.8,-322.6663 -331.466,-322.6663 -275.733,0 -322.667,134.9331 -322.667,322.6663 z"
|
370
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
371
|
+
id="path911" />
|
372
|
+
<path
|
373
|
+
d="m 11008.631,7346.639 c 0,665.866 263.999,1017.8656 941.599,1017.8656 281.599,0 510.399,-26.4 703.999,-64.5333 V 7243.9725 h -659.999 v 569.066 c -214.134,0 -252.267,-140.7998 -252.267,-478.1328 v -14.6666 c 0,-337.333 111.467,-419.4662 407.733,-419.4662 134.933,0 302.133,20.5333 413.6,41.0666 l 29.333,-601.3327 c -161.333,-26.4 -372.533,-46.9333 -554.399,-46.9333 -665.866,0 -1029.599,305.0664 -1029.599,1014.9322 z"
|
374
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
375
|
+
id="path913" />
|
376
|
+
<path
|
377
|
+
d="m 12836.093,7601.8387 c 0,569.0661 343.199,762.6659 900.532,762.6659 181.867,0 393.066,-23.4667 528,-55.7333 l 20.533,-472.2661 c -143.733,17.5999 -302.133,23.4666 -428.266,23.4666 -114.4,0 -217.067,-8.8 -261.067,-20.5333 -55.733,-14.6667 -88,-49.8666 -93.866,-96.7999 h 830.132 v -49.8666 c 0,-571.9994 -208.266,-844.7991 -724.532,-844.7991 -466.4,0 -771.466,255.1997 -771.466,736.2659 z m 662.932,-155.4664 c 0,-105.5999 11.734,-155.4665 35.2,-181.8665 17.6,-20.5333 38.134,-29.3333 70.4,-29.3333 32.267,0 52.8,8.8 70.4,29.3333 23.467,26.4 35.2,76.2666 35.2,181.8665 z"
|
378
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
379
|
+
id="path915" />
|
380
|
+
<path
|
381
|
+
d="m 14478.755,6894.9062 v 1422.6651 h 674.666 V 7408.239 c 23.467,-14.6667 55.733,-26.4 90.933,-26.4 61.6,0 85.067,26.4 85.067,76.2666 v 859.4657 h 674.666 V 7408.239 c 23.467,-14.6667 55.733,-26.4 90.933,-26.4 61.6,0 85.067,26.4 85.067,76.2666 v 859.4657 h 674.666 v -912.2657 c 0,-366.6662 -143.734,-557.3327 -463.467,-557.3327 -178.933,0 -331.466,76.2666 -448.799,187.7331 -64.533,-120.2665 -202.4,-187.7331 -357.866,-187.7331 -190.667,0 -352,73.3333 -460.533,187.7331 h -8.8 l -11.733,-140.7998 z"
|
382
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
383
|
+
id="path917" />
|
384
|
+
<path
|
385
|
+
d="m 16972.084,6894.9062 v 475.1995 h 205.334 v 947.4656 h 674.665 v -947.4656 h 396 v 947.4656 h 674.666 V 6894.9062 h -1070.666 v -46.9333 c 0,-73.3332 61.6,-129.0665 328.533,-129.0665 143.734,0 287.467,23.4666 393.067,43.9999 l 41.066,-495.7327 c -149.6,-29.3333 -372.533,-52.8 -571.999,-52.8 -566.133,0 -865.332,167.1998 -865.332,598.3994 v 82.1332 z"
|
386
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
387
|
+
id="path919" />
|
388
|
+
<path
|
389
|
+
d="m 19128.08,6293.5735 v 2023.9978 h 674.666 V 6293.5735 Z"
|
390
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
391
|
+
id="path921" />
|
392
|
+
<path
|
393
|
+
d="m 19969.944,7601.8387 c 0,569.0661 343.2,762.6659 900.533,762.6659 181.866,0 393.066,-23.4667 527.999,-55.7333 l 20.533,-472.2661 c -143.733,17.5999 -302.133,23.4666 -428.266,23.4666 -114.4,0 -217.066,-8.8 -261.066,-20.5333 -55.733,-14.6667 -88,-49.8666 -93.867,-96.7999 h 830.133 v -49.8666 c 0,-571.9994 -208.267,-844.7991 -724.533,-844.7991 -466.399,0 -771.466,255.1997 -771.466,736.2659 z m 662.933,-155.4664 c 0,-105.5999 11.733,-155.4665 35.2,-181.8665 17.6,-20.5333 38.133,-29.3333 70.4,-29.3333 32.267,0 52.8,8.8 70.4,29.3333 23.466,26.4 35.2,76.2666 35.2,181.8665 z"
|
394
|
+
style="font-family:'FS Jack';-inkscape-font-specification:'FS Jack'"
|
395
|
+
id="path923" />
|
396
|
+
</g>
|
397
|
+
<path
|
398
|
+
d="m 4988.2126,9796.8027 c -215.3912,-93.761 -230.2622,-182.333 -145.8163,-868.4592 71.9101,-584.2601 54.2287,-559.5907 -150.4302,-781.6188 -273.9963,-297.2524 -295.9513,-541.984 -134.0282,-866.9882 254.4229,-510.6608 792.9987,-612.5402 1205.2574,-227.9932 306.4079,285.8173 337.0305,654.5558 82.2097,989.9185 -95.7746,126.0469 -201.0618,266.7789 -233.9715,312.7333 -45.2261,63.1605 -43.018,217.1866 9.0424,630.8497 76.6319,608.8959 43.3745,737.6979 -215.9395,836.2869 -168.1521,63.93 -219.6802,60.874 -416.3238,-24.729 z"
|
399
|
+
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:52.1227"
|
400
|
+
id="path2154"
|
401
|
+
sodipodi:nodetypes="cssccscssc" />
|
402
|
+
<rect
|
403
|
+
style="fill:#00004f;fill-opacity:1;stroke-width:45.4978;stroke-linejoin:round"
|
404
|
+
id="rect919"
|
405
|
+
width="1589.2714"
|
406
|
+
height="640.70099"
|
407
|
+
x="2958.8833"
|
408
|
+
y="8596.041"
|
409
|
+
rx="8.0170479"
|
410
|
+
ry="41.312908" />
|
411
|
+
<rect
|
412
|
+
style="fill:#00004f;fill-opacity:1;stroke-width:142.14;stroke-linejoin:round"
|
413
|
+
id="rect1734"
|
414
|
+
width="15510.818"
|
415
|
+
height="640.70099"
|
416
|
+
x="5911.5503"
|
417
|
+
y="8596.041"
|
418
|
+
rx="78.244019"
|
419
|
+
ry="41.312908" />
|
420
|
+
</g>
|
421
|
+
</svg>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lock-gemfile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Durable Programming Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -68,8 +68,12 @@ files:
|
|
68
68
|
- Rakefile
|
69
69
|
- bin/lock-gemfile
|
70
70
|
- lib/lock/gemfile.rb
|
71
|
+
- lib/lock/gemfile/cli.rb
|
72
|
+
- lib/lock/gemfile/report.rb
|
71
73
|
- lib/lock/gemfile/rewriter.rb
|
72
74
|
- lib/lock/gemfile/version.rb
|
75
|
+
- logo-dark-mode.svg
|
76
|
+
- logo.svg
|
73
77
|
- sig/lock/gemfile.rbs
|
74
78
|
homepage: https://durableprogramming.com/library/lock-gemfile/
|
75
79
|
licenses:
|