svggvs 0.0.1

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.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 John Bintz
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,69 @@
1
+ # Process Inkscape files and create sets of cards for board games
2
+
3
+ You'll need `inkscape`, `convert`, `montage`, and `gs` in your `PATH`.
4
+
5
+ ## Initialize a starter project
6
+
7
+ Install the gem globally with `gem install svggvs` and then run `svggvs install <project>` where `project`
8
+ is the name of the directory to place the skeleton project files. You'll get a few files in there:
9
+
10
+ * `template.svg`, an Inkscape template that shoows how to do the basic SVGGVS template setup
11
+ * `Cardfile`, the file SVGGVS uses to define each card for printing
12
+ * `Gemfile`, in case you need additional gems. It has SVGGVS added already, but you may also want remote
13
+ data gems like `google_drive`, for instance.
14
+
15
+ ## How it works
16
+
17
+ Create a `Cardfile` in your working directory. It should look
18
+ something like this:
19
+
20
+ ``` ruby
21
+ @session.configure do |c|
22
+ c.svg_source = "template/template.svg"
23
+ c.svg_merged_target = "template/output.svg"
24
+
25
+ c.png_export_width = 825
26
+ c.pdf_card_size = "750x1050"
27
+ c.pdf_dpi = 300
28
+
29
+ c.individual_files_path = "template/output/card_%02d.svg"
30
+ c.png_files_path = "template/png/card_%02d.png"
31
+
32
+ c.pdf_target = "merged.pdf"
33
+ end
34
+
35
+ @session.process do
36
+ require './card_definitions.rb'
37
+
38
+ CardDefinitions.processed.each do |card|
39
+ @session.with_new_target do |target|
40
+ datum = card.to_svggvs
41
+
42
+ # #active_layers indicates what sublayers within the "Source" layer of
43
+ # the Inkscape document should be toggled as visible. All others are hidden.
44
+ target.active_layers = datum[:active]
45
+
46
+ # Any text with {% liquid_like_tags %} will have those tags replaced with the
47
+ # values within the hash passed in.
48
+ # Additionally, you can label the following and have things replaced:
49
+ # * svg:flowRoot will replace the text in the svg:flowPara within
50
+ # * svg:text will replace the text in the first svg:tspan within
51
+ # * svg:image will replace the xlink:href of the tag, changing the image to load
52
+ target.replacements = datum[:replacements]
53
+ end
54
+ end
55
+ end
56
+ ```
57
+
58
+ You can also have a `.cardrc` file which is run before loading the `Cardfile`.
59
+
60
+ Process your cards with `svggvs`:
61
+
62
+ * `svggvs merged_file`: Create a big SVG file with all cards as layers. Fine for simple setups, but will create monster files!
63
+ * `svggvs svgs`: Write out individual SVG files.
64
+ * `svggvs pngs`: Write out PNG files after writing out the SVG files.
65
+ * `svggvs pdf`: Write out the merged PnP PDF file.
66
+
67
+ You can also pass in `--cardfile <new file>` to load a different cardfile, say for
68
+ card backs.
69
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ require 'bundler/gem_tasks'
data/bin/svggvs ADDED
@@ -0,0 +1,121 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'thor'
4
+ require 'digest/md5'
5
+
6
+ require_relative '../lib/svggvs'
7
+
8
+ module SVGGVS
9
+ class Cli < Thor
10
+ include Thor::Actions
11
+
12
+ def self.source_root
13
+ ::File.expand_path('../../skel', __FILE__)
14
+ end
15
+
16
+ class_option :cardfile, default: 'Cardfile'
17
+
18
+ desc "install [ dir ]", "Install a Cardfile and sample template"
19
+ def install(dir = '.')
20
+ directory '.', dir
21
+ end
22
+
23
+ desc "merged_file", "Write out a merged file"
24
+ def merged_file
25
+ context.write_merged_file
26
+ end
27
+
28
+ desc "svgs", "Write out individual SVG files"
29
+ def svgs
30
+ write_svgs
31
+ end
32
+
33
+ desc "pngs", "Write out individual PNG files"
34
+ def pngs
35
+ write_svgs
36
+ ensure_tmp
37
+
38
+ @exported_pngs = []
39
+
40
+ context.individual_files.each_with_index do |svg_file, index|
41
+ target = Pathname(context.session.png_files_path % index)
42
+ target.parent.mkpath
43
+
44
+ @exported_pngs << target
45
+
46
+ system %{inkscape --export-area-page --export-png "#{target.expand_path}" --export-width #{context.session.png_export_width} --export-background="#ffffffff" "#{svg_file.expand_path}"}
47
+ end
48
+ end
49
+
50
+ desc "pdf", "Create PDF of card images"
51
+ def pdf
52
+ pngs
53
+
54
+ trimmed_pngs = @exported_pngs.collect do |png|
55
+ tmp_target = tmp_target_for(png)
56
+
57
+ system %{convert #{png} -gravity Center -crop #{context.session.pdf_card_size}+0+0 +repage #{tmp_target}}
58
+
59
+ tmp_target
60
+ end
61
+
62
+ png_slices = trimmed_pngs.each_slice(9)
63
+
64
+ page_count = trimmed_pngs.length / 9
65
+
66
+ placeholder = tmp_target_for("placeholder.png")
67
+ system %{convert -size #{context.session.pdf_card_size} xc:white #{placeholder}}
68
+
69
+ pages = png_slices.each_with_index.collect do |files, page_index|
70
+ tmp_pdf_target = tmp_path.join("page%05d.pdf" % page_index)
71
+
72
+ files += Array.new(9 - files.length, placeholder)
73
+
74
+ system %{montage -density #{context.session.pdf_dpi} -geometry +0+0 #{files.join(' ')} #{tmp_pdf_target}}
75
+
76
+ tmp_pdf_target
77
+ end
78
+
79
+ if context.session.card_back
80
+ tmp_target = tmp_target_for(context.session.card_back)
81
+ tmp_pdf_target = tmp_path.join("backs.pdf")
82
+
83
+ system %{convert #{context.session.card_back} -gravity Center -crop #{context.session.pdf_card_size}+0+0 +repage #{tmp_target}}
84
+ system %{montage -density #{context.session.pdf_dpi} -geometry +0+0 #{Array.new(9, tmp_target).join(' ')} #{tmp_pdf_target}}
85
+
86
+ pages.length.times do |page|
87
+ pages << tmp_pdf_target
88
+ end
89
+ end
90
+
91
+ Pathname(context.session.pdf_target).parent.mkpath
92
+
93
+ system "gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=#{context.session.pdf_target} -dBATCH #{pages.join(" ")}"
94
+ end
95
+
96
+ no_tasks do
97
+ def tmp_target_for(file)
98
+ tmp_path.join(Digest::MD5.hexdigest(file.to_s) + '.png')
99
+ end
100
+
101
+ def tmp_path
102
+ @tmp_path ||= Pathname(".tmp")
103
+ end
104
+
105
+ def ensure_tmp
106
+ tmp_path.rmtree if tmp_path.directory?
107
+ tmp_path.mkpath
108
+ end
109
+
110
+ def context
111
+ @context ||= SVGGVS::Context.load(options[:cardfile])
112
+ end
113
+
114
+ def write_svgs
115
+ context.write_individual_files
116
+ end
117
+ end
118
+ end
119
+ end
120
+
121
+ SVGGVS::Cli.start
@@ -0,0 +1,65 @@
1
+ require 'pathname'
2
+
3
+ module SVGGVS
4
+ class Context
5
+ attr_reader :individual_files
6
+
7
+ def initialize(cardfile = "Cardfile")
8
+ @cardfile = cardfile
9
+
10
+ @individual_files = []
11
+ end
12
+
13
+ def self.load(cardfile = "Cardfile")
14
+ context = new(cardfile)
15
+ context.load
16
+ context
17
+ end
18
+
19
+ def session
20
+ @session ||= SVGGVS::Session.new
21
+ end
22
+
23
+ def cardrc?
24
+ ::File.file?('.cardrc')
25
+ end
26
+
27
+ def load
28
+ session
29
+
30
+ if cardrc?
31
+ self.instance_eval(::File.read('.cardrc'))
32
+ end
33
+
34
+ self.instance_eval(cardfile_rb)
35
+ end
36
+
37
+ def cardfile_rb
38
+ @cardfile_rb ||= ::File.read(@cardfile)
39
+ end
40
+
41
+ def write_merged_file
42
+ session.on_card_finished = nil
43
+ session.run
44
+
45
+ session.file.save @session.svg_merged_target
46
+ end
47
+
48
+ def write_individual_files
49
+ session.on_card_finished do |index|
50
+ target = Pathname(session.individual_files_path % index)
51
+
52
+ target.parent.mkpath
53
+
54
+ session.file.dup_with_only_last_target.save target.to_s
55
+
56
+ session.file.clear_targets!
57
+
58
+ @individual_files << target
59
+ end
60
+
61
+ session.run
62
+ end
63
+ end
64
+ end
65
+
@@ -0,0 +1,93 @@
1
+ require 'nokogiri'
2
+
3
+ module SVGGVS
4
+ class File
5
+ def initialize(path_or_doc)
6
+ @instance = 0
7
+
8
+ case path_or_doc
9
+ when String
10
+ @path = path_or_doc
11
+ else
12
+ @doc = path_or_doc
13
+ end
14
+ end
15
+
16
+ def source
17
+ return @source if @source
18
+
19
+ @source = doc.at_css('g[inkscape|label="Source"]')
20
+ @source['style'] = 'display:none'
21
+ @source
22
+ end
23
+
24
+ def root
25
+ source.parent
26
+ end
27
+
28
+ def target
29
+ @target ||= doc.at_css('g[inkscape|label="Target"]')
30
+ end
31
+
32
+ def doc
33
+ return @doc if @doc
34
+
35
+ @doc = Nokogiri::XML(::File.read(@path))
36
+ clear_targets!
37
+
38
+ @doc
39
+ end
40
+
41
+ def clear_targets!
42
+ target.children.each(&:remove)
43
+ end
44
+
45
+ def with_new_target
46
+ new_target = source.dup
47
+ new_target[:id] = new_target[:id] + "_#{@instance}"
48
+ new_target['inkscape:label'] = new_target['inkscape:label'] + "_#{@instance}"
49
+
50
+ target_obj = Target.new(new_target)
51
+
52
+ yield target_obj
53
+
54
+ target_obj.replaced
55
+ target_obj.unclone
56
+
57
+ target << target_obj.target
58
+
59
+ @instance += 1
60
+ end
61
+
62
+ def dup_with_only_last_target
63
+ dupe = self.class.new(doc.dup)
64
+
65
+ target = dupe.target.children.last.dup
66
+ target[:style] = ''
67
+
68
+ dupe.target.remove
69
+
70
+ dupe.root.children.each do |child|
71
+ child[:style] = 'display:none'
72
+ end
73
+
74
+ dupe.root << target
75
+
76
+ dupe
77
+ end
78
+
79
+ def save(file)
80
+ for_save_doc = doc.dup
81
+ for_save_doc.css('g[inkscape|label]').each do |group|
82
+ if (group[:style] || '').include?('display:none')
83
+ if !(group['inkscape:label'] || '').include?('(protect)')
84
+ group.remove
85
+ end
86
+ end
87
+ end
88
+
89
+ ::File.open(file, 'w') { |fh| fh.print for_save_doc.to_xml }
90
+ end
91
+ end
92
+ end
93
+
@@ -0,0 +1,46 @@
1
+ module SVGGVS
2
+ class Session
3
+ attr_accessor :svg_source, :svg_merged_target, :individual_files_path, :on_card_finished
4
+ attr_accessor :png_files_path, :png_export_width, :pdf_card_size, :pdf_dpi
5
+ attr_accessor :pdf_target, :card_back
6
+
7
+ def initialize
8
+ @index = 0
9
+ end
10
+
11
+ def configure
12
+ yield self
13
+ end
14
+
15
+ def process(&block)
16
+ @process = block
17
+ end
18
+
19
+ def card_finished!
20
+ @on_card_finished.call(@index) if @on_card_finished
21
+
22
+ @index += 1
23
+ end
24
+
25
+ def on_card_finished(&block)
26
+ @on_card_finished = block
27
+ end
28
+
29
+ def file
30
+ @file ||= SVGGVS::File.new(@svg_source)
31
+ end
32
+
33
+ def run
34
+ @process.call
35
+ end
36
+
37
+ def with_new_target
38
+ file.with_new_target do |target|
39
+ yield target
40
+ end
41
+
42
+ card_finished!
43
+ end
44
+ end
45
+ end
46
+
@@ -0,0 +1,87 @@
1
+ require 'delegate'
2
+
3
+ module SVGGVS
4
+ class Target < SimpleDelegator
5
+ attr_reader :target
6
+
7
+ def initialize(target)
8
+ @target = target
9
+ end
10
+
11
+ def __getobj__
12
+ @target
13
+ end
14
+
15
+ def active_layers=(layers)
16
+ css("g[inkscape|groupmode='layer']").each do |layer|
17
+ if layers.include?(layer['inkscape:label'])
18
+ layer['style'] = ''
19
+
20
+ current_parent = layer.parent
21
+
22
+ while current_parent && current_parent.name == "g"
23
+ current_parent['style'] = ''
24
+
25
+ current_parent = current_parent.parent
26
+ end
27
+ else
28
+ layer['style'] = 'display:none'
29
+ end
30
+ end
31
+ end
32
+
33
+ def replacements=(replacements)
34
+ @replacements = replacements
35
+ end
36
+
37
+ def replaced(node = @target)
38
+ if !!@replacements
39
+ node.children.each do |child|
40
+ if child.text?
41
+ if match = child.content[%r{\{% ([^ ]+) %\}}, 1]
42
+ child.content = @replacements[match] || ''
43
+ end
44
+ else
45
+ if label = child['inkscape:label']
46
+ if !!@replacements[label]
47
+ if flow_para = child.css('svg|flowPara').first
48
+ flow_para.content = @replacements[label] || ''
49
+ end
50
+
51
+ if span = child.css('svg|tspan').first
52
+ span.content = @replacements[label] || ''
53
+ end
54
+
55
+ if child.name == "image" && !!@replacements[label]
56
+ child['xlink:href'] = ::File.expand_path(@replacements[label])
57
+ end
58
+ end
59
+ end
60
+
61
+ replaced(child)
62
+ end
63
+ end
64
+ end
65
+ end
66
+
67
+ # only uncloning text
68
+ def unclone
69
+ css('svg|use').each do |clone|
70
+ if source = css(clone['xlink:href']).first
71
+ if source.name == 'flowRoot' || source.name == 'text'
72
+ new_group = clone.add_next_sibling("<g />").first
73
+
74
+ clone.attributes.each do |key, attribute|
75
+ new_group[attribute.name] = attribute.value
76
+ end
77
+
78
+ new_group << source.dup
79
+
80
+ clone.remove
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end
86
+ end
87
+
@@ -0,0 +1,3 @@
1
+ module Svggvs
2
+ VERSION = "0.0.1"
3
+ end
data/lib/svggvs.rb ADDED
@@ -0,0 +1,8 @@
1
+ require_relative './svggvs/file'
2
+ require_relative './svggvs/target'
3
+ require_relative './svggvs/context'
4
+ require_relative './svggvs/session'
5
+
6
+ module SVGGVS
7
+ end
8
+
data/skel/Cardfile ADDED
@@ -0,0 +1,37 @@
1
+ @session.configure do |c|
2
+ c.svg_source = "template.svg"
3
+ c.svg_merged_target = "merged-template.svg"
4
+
5
+ c.png_export_width = 825
6
+
7
+ c.pdf_dpi = 300
8
+ c.pdf_card_size = "750x1050"
9
+
10
+ c.individual_files_path = "svgout/output_%03d.svg"
11
+
12
+ c.png_files_path = "pngout-svggvs/output_%03d.png"
13
+
14
+ c.pdf_target = "pnp/game.pdf"
15
+ end
16
+
17
+ card_data = [
18
+ {
19
+ active_layers: [ 'Action', 'Puppy', 'Name', 'Background' ],
20
+ replacements: { 'Name' => 'Woofie', 'Action' => 'Bark at the person who is ringing the doorbell.' }
21
+ },
22
+ {
23
+ active_layers: [ 'Action', 'Kitten', 'Name', 'Background' ],
24
+ replacements: { 'Name' => 'Hisshead', 'Action' => "Demand food by clawing at your owner's lap." }
25
+ },
26
+ ]
27
+
28
+ @session.process do
29
+ card_data.each do |card|
30
+ @session.with_new_target do |target|
31
+ target.active_layers = card[:active_layers]
32
+ target.replacements = card[:replacements]
33
+ end
34
+ end
35
+ end
36
+
37
+
data/skel/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'svggvs'
data/skel/template.svg ADDED
@@ -0,0 +1,585 @@
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="2.75in"
14
+ height="3.75in"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.48+devel r12777 custom"
18
+ viewBox="0 0 2.75 3.75"
19
+ sodipodi:docname="template.svg">
20
+ <defs
21
+ id="defs4">
22
+ <filter
23
+ x="-.12295"
24
+ y="-.33585"
25
+ color-interpolation-filters="sRGB"
26
+ width="1.2459"
27
+ height="1.6717"
28
+ id="filter4111">
29
+ <feGaussianBlur
30
+ stdDeviation="29.823351"
31
+ id="feGaussianBlur4113" />
32
+ </filter>
33
+ <linearGradient
34
+ x1="577.07"
35
+ y1="676.33"
36
+ gradientTransform="matrix(2.4461,0,0,2.4461,-1181.4,-773.73)"
37
+ x2="577.07"
38
+ gradientUnits="userSpaceOnUse"
39
+ y2="629.33"
40
+ id="linearGradient2926">
41
+ <stop
42
+ offset="0"
43
+ stop-opacity=".54867"
44
+ stop-color="#ac9f8c"
45
+ id="stop3832" />
46
+ <stop
47
+ offset="1"
48
+ stop-opacity="0"
49
+ stop-color="#ac9f8c"
50
+ id="stop3834" />
51
+ </linearGradient>
52
+ <radialGradient
53
+ r="32.375"
54
+ gradientTransform="matrix(2.451,1.4476e-6,-1.1271e-6,1.9165,-1184.6,-473.98)"
55
+ cx="573.92"
56
+ cy="572.44"
57
+ gradientUnits="userSpaceOnUse"
58
+ id="radialGradient2929">
59
+ <stop
60
+ offset="0"
61
+ stop-opacity=".54867"
62
+ stop-color="#d2cdba"
63
+ id="stop3816" />
64
+ <stop
65
+ offset="1"
66
+ stop-opacity="0"
67
+ stop-color="#9a7668"
68
+ id="stop3818" />
69
+ </radialGradient>
70
+ <radialGradient
71
+ r="13.921"
72
+ gradientTransform="matrix(0.7682,-0.52708,1.3186,1.9218,-263.67,677.56)"
73
+ cx="538.54"
74
+ cy="-26.231"
75
+ gradientUnits="userSpaceOnUse"
76
+ id="radialGradient2933">
77
+ <stop
78
+ offset="0"
79
+ stop-color="#9a7668"
80
+ id="stop3794" />
81
+ <stop
82
+ offset="1"
83
+ stop-opacity="0"
84
+ stop-color="#9a7668"
85
+ id="stop3796" />
86
+ </radialGradient>
87
+ <radialGradient
88
+ r="19.778"
89
+ gradientTransform="matrix(2.2832,0.92048,-0.57185,1.4185,-841.5,-839.37)"
90
+ cx="614.2"
91
+ cy="454.63"
92
+ gradientUnits="userSpaceOnUse"
93
+ id="radialGradient2936">
94
+ <stop
95
+ offset="0"
96
+ stop-color="#7a3629"
97
+ id="stop3784" />
98
+ <stop
99
+ offset="1"
100
+ stop-opacity="0"
101
+ stop-color="#7a3629"
102
+ id="stop3786" />
103
+ </radialGradient>
104
+ <linearGradient
105
+ x1="487.72"
106
+ y1="1.5084"
107
+ gradientTransform="translate(-433.37,640.37)"
108
+ x2="948.1"
109
+ gradientUnits="userSpaceOnUse"
110
+ y2="1.5084"
111
+ id="linearGradient2944">
112
+ <stop
113
+ offset="0"
114
+ stop-color="#cec5b7"
115
+ id="stop3735" />
116
+ <stop
117
+ offset="1"
118
+ stop-color="#ece6dc"
119
+ id="stop3737" />
120
+ </linearGradient>
121
+ </defs>
122
+ <sodipodi:namedview
123
+ id="base"
124
+ pagecolor="#ffffff"
125
+ bordercolor="#666666"
126
+ borderopacity="1.0"
127
+ inkscape:pageopacity="0.0"
128
+ inkscape:pageshadow="2"
129
+ inkscape:zoom="1.4"
130
+ inkscape:cx="118.20898"
131
+ inkscape:cy="158.22205"
132
+ inkscape:document-units="in"
133
+ inkscape:current-layer="layer10"
134
+ showgrid="false"
135
+ units="in"
136
+ borderlayer="true"
137
+ inkscape:showpageshadow="false"
138
+ inkscape:window-width="1280"
139
+ inkscape:window-height="1004"
140
+ inkscape:window-x="-2"
141
+ inkscape:window-y="-3"
142
+ inkscape:window-maximized="1"
143
+ showguides="true"
144
+ inkscape:guide-bbox="true">
145
+ <sodipodi:guide
146
+ orientation="1,0"
147
+ position="11.111678,356.33131"
148
+ id="guide4186" />
149
+ <sodipodi:guide
150
+ orientation="0,1"
151
+ position="30.304576,326.27927"
152
+ id="guide7553" />
153
+ <sodipodi:guide
154
+ orientation="1,0"
155
+ position="22.98097,318.95567"
156
+ id="guide7555" />
157
+ <sodipodi:guide
158
+ orientation="0,1"
159
+ position="196.97975,315.42013"
160
+ id="guide7557" />
161
+ <sodipodi:guide
162
+ orientation="1,0"
163
+ position="225.01148,315.42013"
164
+ id="guide7559" />
165
+ <sodipodi:guide
166
+ orientation="1,0"
167
+ position="236.12316,326.27927"
168
+ id="guide7561" />
169
+ <sodipodi:guide
170
+ orientation="0,1"
171
+ position="114.14724,12.121831"
172
+ id="guide7563" />
173
+ <sodipodi:guide
174
+ orientation="0,1"
175
+ position="101.01525,22.475894"
176
+ id="guide7565" />
177
+ </sodipodi:namedview>
178
+ <metadata
179
+ id="metadata7">
180
+ <rdf:RDF>
181
+ <cc:Work
182
+ rdf:about="">
183
+ <dc:format>image/svg+xml</dc:format>
184
+ <dc:type
185
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
186
+ <dc:title></dc:title>
187
+ </cc:Work>
188
+ </rdf:RDF>
189
+ </metadata>
190
+ <g
191
+ inkscape:label="Source"
192
+ inkscape:groupmode="layer"
193
+ id="layer1"
194
+ transform="translate(0,-714.86218)">
195
+ <g
196
+ inkscape:groupmode="layer"
197
+ id="layer5"
198
+ inkscape:label="Background">
199
+ <rect
200
+ style="color:#000000;fill:#cacbca;fill-opacity:1;fill-rule:nonzero;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
201
+ id="rect7594"
202
+ width="2.5001273"
203
+ height="3.4906378"
204
+ x="0.12346308"
205
+ y="714.98688"
206
+ rx="0.11223916"
207
+ ry="0.11223916" />
208
+ <path
209
+ style="color:#000000;fill:#28437b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
210
+ d="M 0 0 L 0 337.5 L 247.48828 337.5 L 247.48828 0 L 0 0 z M 33.082031 22.078125 L 214.91016 22.078125 C 220.5064 22.078125 225.01172 26.583443 225.01172 32.179688 L 225.01172 304.91992 C 225.01172 310.51617 220.5064 315.02148 214.91016 315.02148 L 33.082031 315.02148 C 27.485786 315.02148 22.980469 310.51617 22.980469 304.91992 L 22.980469 32.179688 C 22.980469 26.583443 27.485786 22.078125 33.082031 22.078125 z "
211
+ transform="matrix(0.01111111,0,0,0.01111111,0,714.86218)"
212
+ id="rect7585" />
213
+ </g>
214
+ <g
215
+ inkscape:groupmode="layer"
216
+ id="layer6"
217
+ inkscape:label="Name">
218
+ <text
219
+ xml:space="preserve"
220
+ style="font-size:0.35091549px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill-opacity:1;font-family:Sloppy Handwriting;-inkscape-font-specification:Sloppy Handwriting Bold Italic;"
221
+ x="1.3103793"
222
+ y="714.12299"
223
+ id="text7590"
224
+ sodipodi:linespacing="125%"
225
+ inkscape:label="Name"><tspan
226
+ sodipodi:role="line"
227
+ id="tspan7592"
228
+ x="1.3103793"
229
+ y="714.12299"
230
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:FreeSans;-inkscape-font-specification:FreeSans;">Name</tspan></text>
231
+ <g
232
+ id="g7600"
233
+ transform="translate(0.07175648,0)">
234
+ <use
235
+ style="fill:#ffffff;stroke:#ffffff;stroke-width:0.03333333;stroke-miterlimit:4;stroke-dasharray:none"
236
+ x="0"
237
+ y="0"
238
+ xlink:href="#text7590"
239
+ id="use7598"
240
+ transform="translate(-0.01587302,1.4126984)"
241
+ width="100%"
242
+ height="100%" />
243
+ <use
244
+ height="100%"
245
+ width="100%"
246
+ transform="translate(-0.01587302,1.4126984)"
247
+ id="use7596"
248
+ xlink:href="#text7590"
249
+ y="0"
250
+ x="0" />
251
+ </g>
252
+ </g>
253
+ <g
254
+ inkscape:groupmode="layer"
255
+ id="layer7"
256
+ inkscape:label="Animal Type">
257
+ <g
258
+ inkscape:groupmode="layer"
259
+ id="layer8"
260
+ inkscape:label="Kitten">
261
+ <g
262
+ transform="matrix(0.00139944,0,0,0.00139944,0.99582565,715.25136)"
263
+ id="layer1-4">
264
+ <path
265
+ transform="matrix(0.75634,0,0,0.78115,-82.88,72.081)"
266
+ d="m 758.9,1063 a 291.09,106.56 0 1 1 -582.17,0 291.09,106.56 0 1 1 582.17,0 z"
267
+ id="path4109"
268
+ inkscape:connector-curvature="0"
269
+ style="opacity:0.2;filter:url(#filter4111)" />
270
+ <path
271
+ d="m 464.59,729.74 c 1.0339,-46.481 -7.1043,-70.6 -20.554,-97.109 -16.066,-31.667 -31.06,-41.112 -47.656,-60.564 4.9628,-63.274 -26.931,-55.86 -18.526,-104.98 8.8375,-51.652 -0.5739,-96.535 -33.965,-121.96 -38.567,-29.371 -54.035,-26.245 -108.07,-26.245 -54.035,0 -77.192,13.895 -112.7,0 -35.508,-13.895 -43.063,1.3789 -43.063,1.3789 0,0 11.986,18.361 27.424,47.694 5.1897,9.8604 5.1096,20.462 3.4437,26.341 -3.2898,11.611 -14.557,20.94 -12.507,49.637 3.0877,43.228 26.245,77.192 35.508,104.98 9.263,27.789 7.7192,12.351 6.1753,30.877 -1.5438,18.526 -24.702,94.175 -27.789,117.33 -3.0877,23.158 4.6315,92.631 4.6315,126.6 0,33.965 -13.357,38.037 -53.833,67.068 -12.698,9.1077 -11.286,45.153 19.254,27.818 -12.248,6.8808 -16.865,41.835 0.5925,41.835 32.421,0 81.365,5.6598 95.74,-13.671 20.205,-27.17 11.489,-28.393 13.033,-43.831 1.5439,-15.438 3.4902,-54.673 0.9056,-71.096 1.264,15.809 1.6015,44.57 0.303,59.528 16.982,15.438 37.097,20.692 48.754,16.545 11.331,-44.785 34.128,-133.7 35.15,-142.76 -1.4432,8.4361 -38.271,163.62 -44.391,176.1 -11.065,22.554 37.484,33.455 63.924,28.17 27.588,-5.5151 41.338,-2.1256 41.338,-43.809 0,-41.684 24.4,-101.57 28.27,-107.79 -2.8645,7.2507 -33.147,58.361 -26.726,108.87 24.702,0 67.929,-24.243 78.736,-36.593 10.807,-12.351 15.096,-14.691 27.789,-12.351 -12.814,-2.4723 -27.085,10.147 -37.892,20.954 -10.807,10.807 -12.272,42.064 21.692,42.064 33.965,0 72.441,6.4842 73.322,-21.334 1.0627,-33.562 6.3986,-39.738 9.8668,-58.264 3.4207,-18.273 -6.2734,-65.725 -8.323,-82.226 -3.0734,-24.744 -34.566,-45.103 -39.86,-49.202 z"
272
+ id="path2932"
273
+ inkscape:connector-curvature="0"
274
+ style="fill:url(#linearGradient2944);stroke:#000000;stroke-width:2.4461px;stroke-linejoin:round" />
275
+ <path
276
+ d="m 201.23,496.74 c 9.7227,-21.154 29.958,-18.396 48.484,-10.677 -3.5371,19.67 -17.122,23.817 -48.484,10.677 z"
277
+ id="path2934"
278
+ inkscape:connector-curvature="0"
279
+ style="stroke:#000000;stroke-width:2.4461px" />
280
+ <path
281
+ d="m 157.89,495.3 c -1.9685,-24.575 -13.848,-29.53 -25.606,-29.24 -2.9517,19.099 3.3305,28.082 25.606,29.24 z"
282
+ id="path2934-1"
283
+ inkscape:connector-curvature="0"
284
+ style="stroke:#000000;stroke-width:1.9569px" />
285
+ <path
286
+ d="m 158.45,520.28 c 3.9902,12.267 23.44,9.0644 28.958,2.2982 -1.1989,9.2646 -9.8559,20.968 -11.242,22.852 1.5184,1.9652 5.0749,4.0867 10.323,6.1063 -7.469,-3.1086 -9.9815,-3.9352 -16.27,2.2183 1.9694,-3.441 6.9209,-5.1792 4.4748,-8.3918 -10.572,-6.8948 -16.244,-16.349 -16.244,-25.083 z"
287
+ id="path2958"
288
+ inkscape:connector-curvature="0"
289
+ style="stroke:#000000;stroke-width:2.4461px;stroke-linejoin:round" />
290
+ <path
291
+ d="m 215.91,482.59 c 1.079,30.277 29.668,20.203 27.579,2.2983 -8.7334,-4.1369 -17.016,-4.2851 -27.579,-2.2983 z"
292
+ id="path3732"
293
+ inkscape:connector-curvature="0"
294
+ style="fill:#59473d;stroke:#000000;stroke-width:2.4461px" />
295
+ <path
296
+ d="m 136.65,467.55 c -6.4359,10.937 -4.1158,29.753 20.007,21.418 -3.3425,-9.0395 -7.4553,-20.522 -20.007,-21.418 z"
297
+ id="path3732-7"
298
+ inkscape:connector-curvature="0"
299
+ style="fill:#59473d;stroke:#000000;stroke-width:2.4461px" />
300
+ <path
301
+ d="m 237.51,392.5 c 39.794,-58.196 104.9,-76.115 92.85,34.474 -39.527,-36.366 -65.013,-32.012 -92.85,-34.474 z"
302
+ id="path3756"
303
+ inkscape:connector-curvature="0"
304
+ style="fill:url(#radialGradient2936);stroke:#000000;stroke-width:2.4461px" />
305
+ <path
306
+ d="m 112.37,394.33 c -0.01,-35.629 -34.475,-69.014 -29.202,-73.892 4.0912,-3.7849 44.363,9.954 65.11,50.783 -17.765,-1.5698 -26.407,-2.7245 -35.908,23.11 z"
307
+ id="path3756-4"
308
+ inkscape:connector-curvature="0"
309
+ style="fill:url(#radialGradient2933);stroke:#000000;stroke-width:2.4461px;stroke-linejoin:round" />
310
+ <path
311
+ d="m 83.801,917.33 c 12.989,-12.508 30.308,-24.054 31.27,-41.373 0.9622,-17.319 1.4433,-38.005 1.4433,-38.005"
312
+ id="path3780"
313
+ inkscape:connector-curvature="0"
314
+ style="fill:none;stroke:#000000;stroke-width:2.4461px;stroke-linecap:round" />
315
+ <path
316
+ d="m 157.28,570.67 c 38.262,10.865 104.12,15.201 133.21,-6.6132 30.232,-22.674 -7.0448,181.24 -62.353,180.45 -66.132,-0.94478 -109.12,-184.7 -70.856,-173.83 z"
317
+ id="path3800"
318
+ inkscape:connector-curvature="0"
319
+ style="fill:url(#radialGradient2929)" />
320
+ <path
321
+ d="m 175.19,762.69 c 22.455,45.305 20.018,106.84 19.478,127.58 13.748,16.247 32.541,17.757 45.706,17.357 7.9194,-33.015 29.192,-126.19 36.691,-148.69 7.5091,-22.527 -118.54,-29.868 -101.87,3.7494 z"
322
+ id="path3820"
323
+ inkscape:connector-curvature="0"
324
+ style="fill:url(#linearGradient2926)" />
325
+ <g
326
+ transform="translate(1.269,2.5381)"
327
+ id="g2947">
328
+ <path
329
+ transform="matrix(3.8851,0,0,3.8851,-2009.6,-1519.9)"
330
+ d="m 577.92,517.08 a 1.2388,1.2388 0 1 1 -2.4775,0 1.2388,1.2388 0 1 1 2.4775,0 z"
331
+ id="path4024"
332
+ inkscape:connector-curvature="0" />
333
+ <path
334
+ transform="matrix(3.8851,0,0,3.8851,-2092.6,-1529.5)"
335
+ d="m 577.92,517.08 a 1.2388,1.2388 0 1 1 -2.4775,0 1.2388,1.2388 0 1 1 2.4775,0 z"
336
+ id="path4024-2"
337
+ inkscape:connector-curvature="0" />
338
+ </g>
339
+ </g>
340
+ </g>
341
+ <g
342
+ inkscape:groupmode="layer"
343
+ id="layer9"
344
+ inkscape:label="Puppy"
345
+ style="display:inline">
346
+ <g
347
+ id="Layer_1"
348
+ transform="matrix(0.0045418,0,0,0.0045418,0.72197887,715.62808)">
349
+ <g
350
+ id="g7"
351
+ style="fill-rule:evenodd">
352
+ <path
353
+ d="M 6.385,101.73 C 4.405,100.038 2.893,98.274 1.993,95.898 0.949,93.558 0.337,90.03 0.733,87.942 c 0.504,-2.16 2.196,-3.708 3.96,-4.788 1.548,-1.188 2.988,-1.188 5.868,-2.088 2.952,-0.972 8.136,-2.16 11.664,-3.564 3.312,-1.512 6.12,-2.736 8.568,-4.788 2.412,-2.16 3.564,-5.364 5.832,-7.524 2.16,-2.196 4.644,-4.032 7.308,-5.22 2.736,-1.188 5.688,-1.836 8.568,-2.088 2.664,-0.324 5.292,-0.252 7.74,0.216 -0.72,-2.232 -0.396,-4.392 0.828,-6.48 1.224,-2.124 4.032,-4.644 6.48,-6.048 2.448,-1.476 5.112,-1.98 7.704,-2.484 2.412,-0.612 4.536,-0.324 6.912,-0.648 2.376,-0.324 5.328,-0.324 7.308,-1.26 1.8,-1.008 2.916,-3.276 4.176,-4.572 1.152,-1.404 2.016,-1.944 3.132,-3.564 1.152,-1.656 2.376,-4.968 3.528,-6.048 1.008,-1.116 2.016,-0.936 2.736,-0.432 0.648,0.468 1.008,1.728 1.224,3.348 0.072,1.62 -0.288,4.32 -0.396,5.868 -0.216,1.296 -1.152,2.628 -0.432,2.484 0.648,-0.144 2.232,-1.26 4.608,-3.348 0,1.692 -0.216,2.988 -0.648,4.176 -0.468,1.044 -1.044,1.98 -1.872,2.52 l 5.868,-3.132 c -0.072,0.972 -0.288,2.016 -0.648,3.132 -0.36,1.152 -0.9,2.232 -1.476,3.528 l 4.608,-1.44 c 1.008,2.088 1.404,4.032 1.476,5.832 -0.144,1.764 -0.828,3.24 -1.476,4.824 -0.684,1.548 -1.224,3.096 -2.304,4.356 -1.152,1.152 -2.556,1.944 -4.356,2.52 0.144,1.188 0.828,1.908 2.052,2.304 1.26,0.252 4.14,0 5.437,-0.216 1.152,-0.252 1.872,-0.396 1.872,-0.828 0,1.764 -0.252,3.24 -0.612,4.572 -0.396,1.368 -0.9,2.232 -1.656,3.132 l 2.484,0.216 c -0.18,2.736 -0.972,4.968 -2.088,7.092 -1.188,1.944 -2.808,3.456 -5.004,5.22 -2.376,1.656 -5.148,3.528 -8.748,5.22 l 0,4.392 c 2.196,-0.216 4.212,0 6.444,0.648 2.052,0.54 3.888,1.764 6.48,3.096 2.7,1.332 6.156,3.312 9.396,4.824 3.132,1.368 5.544,3.24 9.612,3.528 4.032,0.252 10.08,-0.252 14.4,-2.484 4.248,-2.448 7.164,-7.992 10.836,-11.484 3.527,-3.564 6.66,-6.696 10.656,-9.396 4.068,-2.808 8.389,-5.616 13.355,-6.876 4.824,-1.26 10.369,-0.972 15.66,-0.648 5.148,0.252 10.873,2.592 15.66,2.304 4.859,-0.36 7.992,-1.8 13.141,-4.608 5.076,-2.916 11.268,-6.3 16.92,-12.924 5.508,-6.876 12.42,-19.512 15.875,-27.36 3.385,-8.028 3.35,-14.616 4.176,-19.62 0.686,-4.896 0.686,-8.208 0,-9.792 1.152,-0.756 2.377,-0.756 3.529,0 1.26,0.684 2.375,1.512 3.348,4.572 0.684,2.988 1.152,9.756 1.26,13.356 0.107,3.492 -0.035,6.192 -0.432,7.956 0.9,-0.324 1.547,-0.144 2.088,0.396 0.504,0.54 1.115,0.54 0.863,2.916 -0.324,2.304 -2.16,8.424 -2.736,10.872 -0.646,2.34 -1.043,3.456 -1.043,3.348 1.043,2.808 1.477,5.256 1.691,7.488 0.072,2.088 -0.035,3.42 -0.863,5.652 -1.045,2.196 -2.809,5.292 -4.176,7.74 -1.369,2.412 -2.412,4.428 -3.529,6.444 0.324,1.692 0.182,3.816 -0.432,6.084 -0.684,2.232 -1.332,4.572 -3.348,7.704 -2.016,3.096 -4.932,6.552 -8.748,10.656 0.756,2.016 0.756,3.78 0,5.436 -0.791,1.656 -1.26,1.908 -4.607,4.356 -3.457,2.34 -8.641,5.544 -15.84,9.612 l -0.432,1.044 c 0.432,3.132 1.295,5.436 2.303,7.308 0.973,1.692 2.016,2.809 3.961,3.349 2.016,0.504 4.68,0.432 7.703,-0.217 2.881,-0.792 7.057,-2.987 9.613,-3.96 2.375,-1.044 3.672,-2.016 5.436,-2.088 1.799,-0.107 3.707,0.108 5.436,1.477 1.656,1.26 2.916,3.312 4.176,6.443 1.08,3.097 1.584,8.712 2.484,12.132 0.721,3.24 1.332,5.293 2.52,7.704 1.152,2.376 2.881,4.681 4.607,6.48 1.693,1.692 4.141,2.412 5.4,3.96 1.152,1.512 1.729,3.348 1.873,5.22 0.072,1.765 -0.145,3.564 -1.225,5.832 -1.188,2.304 -3.023,4.752 -5.652,7.74 1.908,0.612 3.348,2.052 4.176,4.176 0.793,2.196 0.973,6.3 0.828,8.568 -0.215,2.088 -1.188,3.492 -2.088,4.355 -1.043,0.864 -2.195,1.152 -3.744,0.864 -0.035,1.836 -0.936,3.061 -2.699,3.96 -1.836,0.828 -5.436,1.224 -7.74,1.044 -2.305,-0.324 -4.32,-1.188 -6.049,-2.735 -1.871,-1.62 -3.059,-3.996 -4.391,-6.444 -1.225,-2.628 -2.34,-6.336 -3.348,-8.353 -1.117,-2.052 -1.584,-3.168 -3.35,-3.348 -1.799,-0.144 -3.924,1.476 -7.488,2.484 -3.852,0.936 -9.646,2.628 -14.615,3.132 -5.039,0.324 -9.072,0.972 -14.615,-0.396 -5.58,-1.403 -13.717,-4.607 -18.18,-7.523 -4.43,-2.988 -6.301,-7.164 -8.533,-10.008 -2.34,-2.988 -3.852,-5.725 -5.652,-7.093 -1.908,-1.367 -3.563,-1.512 -5.652,-0.863 -2.34,0.611 -4.967,2.34 -7.486,4.607 -2.557,2.124 -5.041,5.832 -7.309,8.353 -2.305,2.52 -3.313,4.788 -6.084,6.66 -2.771,1.728 -6.191,2.987 -10.404,3.779 0.828,1.008 1.225,1.98 1.045,2.916 -0.217,0.973 -0.721,1.765 -2.089,2.521 -1.512,0.54 -3.528,0.936 -6.48,1.044 -1.872,2.844 -4.032,4.968 -6.912,6.66 -2.88,1.619 -6.732,2.664 -10.008,3.132 -3.276,0.432 -6.48,0.18 -9.612,-0.612 -1.98,2.052 -3.996,3.744 -6.048,5.22 -2.232,1.44 -4.716,2.88 -6.48,3.349 -1.692,0.396 -2.988,0.107 -3.744,-0.864 -1.008,1.728 -2.7,2.52 -5.22,2.52 -2.592,-0.107 -6.624,-1.26 -10.008,-2.916 -3.492,-1.8 -7.092,-5.327 -10.224,-7.092 -3.168,-1.836 -5.436,-3.275 -8.352,-3.348 -3.024,-0.072 -5.76,1.404 -9.18,2.916 -3.456,1.404 -8.424,5.292 -11.304,5.832 -3.024,0.504 -4.932,-0.396 -6.264,-2.7 -1.296,1.512 -2.664,2.268 -3.96,1.872 -1.476,-0.432 -3.384,-1.944 -4.176,-3.96 -0.72,-2.088 -1.116,-5.148 -0.216,-8.352 0.864,-3.276 2.556,-6.912 5.22,-11.053 -3.168,-1.368 -5.508,-3.348 -6.876,-5.651 -1.332,-2.448 -1.872,-5.904 -1.476,-8.568 0.144,-2.772 0.936,-5.724 2.952,-7.488 1.98,-1.872 6.48,-3.06 9.18,-3.132 2.592,-0.036 4.14,2.124 6.876,3.132 2.736,1.008 6.696,2.7 9.396,2.7 2.628,-0.18 4.716,-1.368 6.264,-3.563 -0.936,-2.305 -1.404,-4.824 -1.26,-7.704 0.108,-2.952 0.864,-5.977 1.872,-9.612 0.9,-3.744 2.088,-7.668 3.564,-12.313 -1.62,-0.684 -4.032,-0.936 -7.092,-1.044 -3.204,-0.144 -8.1,0.108 -11.484,0.612 -3.384,0.54 -6.264,1.26 -8.784,2.304 -2.7,0.828 -4.968,2.521 -7.092,3.133 -2.268,0.611 -4.176,0.936 -5.436,0.432 -1.224,-0.576 -1.728,-1.764 -1.656,-3.996 -0.036,-2.376 0.684,-5.508 1.872,-9.792 -3.564,-1.44 -6.408,-2.772 -8.532,-4.392 -2.304,-1.584 -3.312,-2.881 -4.392,-5.004 -1.08,-2.269 -1.656,-5.004 -1.872,-8.353 l 0,-0.829 z"
354
+ id="path9"
355
+ inkscape:connector-curvature="0"
356
+ style="fill:#decdbf" />
357
+ <path
358
+ d="m 71.509,70.125 c 1.656,-0.504 5.832,-0.72 8.784,0.18 2.844,0.864 5.328,4.14 8.424,5.112 2.988,0.792 8.424,-1.476 9.648,0.144 1.116,1.548 -0.72,8.064 -2.448,9.684 -1.729,1.548 -5.832,1.008 -7.74,0.18 -2.016,-0.9 -2.664,-3.96 -4.032,-5.292 -1.476,-1.368 -2.808,-2.484 -4.572,-2.808 -1.908,-0.324 -4.752,1.152 -6.3,0.54 -1.656,-0.864 -2.7,-3.816 -2.988,-5.112 -0.36,-1.367 -0.504,-2.195 1.224,-2.628 z"
359
+ id="path11"
360
+ inkscape:connector-curvature="0"
361
+ style="fill:#a16121" />
362
+ <path
363
+ d="m 60.277,128.05 c 3.204,0 6.444,-1.044 10.008,-2.988 3.456,-1.979 7.56,-5.004 11.052,-8.928 3.528,-4.032 7.2,-10.368 9.468,-14.976 2.124,-4.644 2.988,-8.856 2.988,-12.78 l 7.2,-0.18 c 0.144,3.78 0.072,7.38 -0.504,11.088 -0.504,3.672 -1.44,7.02 -2.808,10.872 -1.476,3.744 -3.24,7.668 -5.976,11.772 -2.952,3.96 -7.56,9.216 -11.052,12.456 -3.636,3.168 -7.02,5.724 -10.008,6.84 -3.024,1.008 -5.94,0 -7.92,-0.54 -1.944,-0.576 -3.42,-1.512 -4.032,-2.808 0.684,-2.305 1.152,-4.284 1.404,-5.94 0.216,-1.621 0.324,-2.917 0.18,-3.888 z"
364
+ id="path13"
365
+ inkscape:connector-curvature="0"
366
+ style="fill:#a16121" />
367
+ <path
368
+ d="m 29.929,180.9 c -2.196,-1.152 -3.96,-2.664 -5.292,-4.392 -1.44,-1.801 -2.844,-3.528 -2.808,-6.156 -0.036,-2.736 0.828,-7.2 2.988,-9.648 2.196,-2.556 7.092,-4.464 9.828,-4.896 2.592,-0.324 3.996,1.764 6.156,2.808 2.088,0.973 6.156,1.404 6.66,2.952 0.432,1.368 -5.4,4.212 -4.032,5.616 1.368,1.368 10.764,1.476 12.096,2.664 1.152,1.116 -0.288,2.412 -4.716,4.032 -4.572,0.288 -8.208,0.756 -11.052,1.403 -2.88,0.576 -4.608,1.332 -6.156,2.269 -1.656,0.936 -2.88,2.053 -3.672,3.348 z"
369
+ id="path15"
370
+ inkscape:connector-curvature="0"
371
+ style="fill:#a16121" />
372
+ <path
373
+ d="m 33.241,202.14 c -1.296,0.504 -2.268,0.792 -3.312,0.864 -1.08,0.035 -1.836,0.432 -2.664,-0.36 -0.828,-0.937 -2.052,-2.844 -2.268,-4.896 -0.432,-2.195 -0.144,-4.896 0.72,-7.56 0.792,-2.664 1.944,-6.192 4.716,-8.064 2.664,-1.943 9.036,-3.707 11.772,-3.348 2.7,0.288 2.376,3.744 4.716,4.932 2.34,1.045 8.46,-0.107 9.324,1.404 0.684,1.512 -4.32,5.22 -4.752,7.38 -0.396,1.944 2.916,3.276 2.448,4.536 -0.684,1.188 -3.636,1.765 -5.94,2.988 -2.376,1.224 -5.436,2.988 -7.38,4.032 -1.944,0.792 -3.096,1.08 -4.032,1.26 -0.972,0.18 -1.62,-0.036 -1.944,-0.36 -0.468,-0.936 -0.936,-1.873 -1.404,-2.808 z"
374
+ id="path17"
375
+ inkscape:connector-curvature="0"
376
+ style="fill:#a16121" />
377
+ <path
378
+ d="m 265.84,153.39 c -0.865,-2.736 -1.225,-5.184 -1.08,-7.2 0.072,-2.195 1.008,-4.355 1.691,-5.111 0.576,-0.685 1.332,1.367 2.123,0.863 0.721,-0.611 1.621,-1.979 2.557,-4.248 0.576,4.752 1.477,8.424 2.305,11.017 0.828,2.592 1.367,2.592 2.988,4.464 1.656,1.764 5.076,4.248 6.768,6.336 1.619,1.944 2.592,3.6 2.771,5.508 0.037,1.8 -0.9,3.528 -2.123,5.724 -1.369,2.124 -3.025,4.572 -5.508,7.2 -2.484,-1.8 -4.465,-3.636 -5.941,-5.508 -1.475,-1.944 -1.943,-2.808 -2.951,-5.904 -1.045,-3.277 -2.377,-7.525 -3.6,-13.141 z"
379
+ id="path19"
380
+ inkscape:connector-curvature="0"
381
+ style="fill:#a16121" />
382
+ <path
383
+ d="m 234.66,185.79 c 3.672,-1.477 6.658,-2.628 9.107,-3.601 2.303,-1.008 3.707,-2.556 5.328,-2.124 1.619,0.433 3.096,2.196 4.428,4.464 1.152,2.196 1.367,5.4 2.988,8.064 1.584,2.556 3.959,5.04 6.551,6.768 2.412,1.513 5.725,2.952 8.281,2.521 2.447,-0.468 4.752,-2.232 6.768,-5.292 2.34,0.576 4.031,0.107 5.076,-1.26 0.936,-1.44 1.477,-4.717 1.08,-7.2 -0.469,-2.592 -2.268,-5.904 -3.6,-7.849 -1.477,-2.052 -3.133,-2.376 -4.682,-4.031 -1.547,-1.656 -3.096,-3.564 -4.643,-5.725 -1.584,-2.268 -1.152,-7.02 -4.68,-7.596 -3.672,-0.612 -12.889,5.4 -16.957,3.996 -3.996,-1.512 -4.104,-11.124 -7.416,-12.708 -3.672,-1.656 -8.641,1.008 -13.355,2.988 -4.752,1.943 -15.012,5.04 -14.4,8.46 0.793,3.275 14.904,8.315 18.432,11.664 3.313,3.349 3.925,6.12 1.694,8.461 z"
384
+ id="path21"
385
+ inkscape:connector-curvature="0"
386
+ style="fill:#a16121" />
387
+ <path
388
+ d="m 122.12,100.91 c 3.888,2.448 7.704,3.744 11.736,4.176 4.032,0.324 8.316,-0.072 12.168,-2.016 3.779,-2.052 6.732,-6.588 10.367,-10.008 3.457,-3.528 6.912,-7.452 10.945,-10.512 4.068,-3.06 9.035,-6.228 13.355,-7.704 4.32,-1.44 8.244,-1.98 12.168,-1.224 7.523,4.356 10.729,8.136 9.469,11.484 -1.262,3.312 -13.5,3.924 -16.885,8.352 -3.492,4.32 -0.539,10.728 -3.779,17.424 -3.42,6.731 -9.793,20.735 -16.201,22.14 -6.443,1.188 -15.732,-13.428 -22.032,-14.832 -6.336,-1.476 -11.448,6.66 -15.768,5.94 -4.356,-0.973 -9.396,-6.696 -10.26,-10.656 -0.971,-3.924 0.649,-8.064 4.717,-12.564 z"
389
+ id="path23"
390
+ inkscape:connector-curvature="0"
391
+ style="fill:#a16121" />
392
+ <path
393
+ d="m 31.837,117 c 0.18,2.735 0.648,5.256 1.404,7.56 0.648,2.304 0.9,4.356 2.988,6.3 2.124,1.908 6.84,4.141 9.288,4.752 2.196,0.433 3.204,-0.936 4.572,-1.764 1.44,-0.972 2.916,-2.124 3.852,-3.168 0.792,-1.008 1.476,-1.296 1.08,-2.809 -0.36,-1.764 -1.8,-4.355 -3.348,-6.659 -1.62,-2.305 -4.5,-4.572 -6.3,-6.66 -1.872,-2.232 -3.456,-4.104 -4.752,-6.156 -2.052,1.728 -3.852,3.312 -5.256,4.752 -1.476,1.475 -2.7,2.664 -3.528,3.852 z"
394
+ id="path25"
395
+ inkscape:connector-curvature="0"
396
+ style="fill:#ff8080" />
397
+ <path
398
+ d="M 6.025,102.6 C 3.937,99.97 2.497,97.666 1.561,95.686 0.697,93.634 0.373,92.482 0.589,90.682 c 0.18,-1.836 0.72,-4.32 1.764,-5.796 0.828,-1.548 1.728,-2.664 3.528,-3.348 1.728,-0.72 3.96,-0.9 6.84,-0.684 0.9,2.88 1.476,5.508 1.584,7.884 0.072,2.412 -0.036,4.428 -0.9,6.336 -1.044,1.764 -3.492,3.276 -4.716,4.536 -1.224,1.296 -2.16,2.196 -2.664,2.988 z"
399
+ id="path27"
400
+ inkscape:connector-curvature="0"
401
+ style="fill:#616161" />
402
+ <path
403
+ d="m 45.193,89.277 c -0.252,1.332 0.612,2.7 1.908,3.672 1.26,0.792 3.672,1.728 5.436,1.404 1.62,-0.432 4.032,-2.016 4.752,-3.492 0.612,-1.548 0.108,-4.032 -0.396,-5.22 -0.504,-1.224 -1.08,-1.98 -2.412,-1.98 -1.476,-0.072 -4.248,0.792 -5.796,1.764 -1.728,0.901 -3.168,2.556 -3.492,3.852 z"
404
+ id="path29"
405
+ inkscape:connector-curvature="0"
406
+ style="fill:#616161" />
407
+ <path
408
+ d="m 4.513,100.47 c -0.72,-0.9 -1.332,-2.052 -1.836,-3.6 -0.612,-1.62 -1.404,-3.636 -1.26,-5.652 0.108,-2.16 0.576,-5.004 1.944,-6.588 1.224,-1.584 3.636,-2.196 5.868,-2.808 2.232,-0.684 3.708,0.252 7.344,-1.08 3.636,-1.296 10.296,-4.248 14.148,-6.768 3.744,-2.664 5.328,-6.516 8.496,-8.928 3.096,-2.484 6.516,-4.644 10.116,-5.508 3.564,-0.864 7.884,-0.324 11.016,0.648 2.988,1.008 5.328,2.592 7.02,5.148 1.224,-2.736 3.168,-4.824 5.976,-6.264 2.844,-1.512 6.444,-2.34 10.8,-2.34 4.392,-0.036 10.296,2.736 14.796,2.196 4.392,-0.648 8.568,-3.564 11.16,-5.976 2.448,-2.52 3.672,-5.256 3.672,-8.604 -2.34,4.212 -4.824,7.344 -7.596,9.396 -2.844,2.016 -5.58,2.88 -9.18,2.988 -3.816,0 -8.64,-2.412 -12.528,-2.52 -3.888,-0.288 -7.128,0.18 -10.116,1.404 -2.952,1.26 -5.472,3.312 -7.56,6.3 0,-0.648 -0.468,-1.332 -1.404,-2.196 -0.972,-0.864 -2.376,-1.908 -4.356,-2.988 -0.324,-2.7 0.504,-5.004 2.628,-7.056 2.088,-2.232 5.436,-3.96 9.9,-5.328 4.392,-1.332 12.456,-1.116 16.416,-2.7 3.852,-1.764 4.86,-5.004 6.912,-7.344 2.052,-2.484 3.6,-6.408 4.932,-6.768 1.08,-0.396 1.872,2.7 1.944,4.86 0,2.232 -0.576,4.824 -1.728,8.172 1.476,-2.412 2.484,-4.716 2.88,-6.912 0.324,-2.304 0.18,-4.896 -0.576,-6.264 -0.756,-1.404 -2.376,-3.096 -3.888,-1.872 -1.584,1.188 -3.24,6.3 -5.4,8.928 -2.232,2.448 -4.86,5.04 -7.596,6.264 -2.808,1.116 -5.364,0.144 -9.18,1.116 -3.996,0.9 -10.944,2.52 -14.04,5.004 -3.168,2.628 -4.644,5.796 -4.572,10.188 -3.168,-0.612 -6.372,-0.648 -9.756,0.18 -3.528,0.756 -7.416,1.944 -10.692,4.392 -3.204,2.412 -5.94,7.272 -8.748,9.864 -3.06,2.484 -5.4,3.708 -8.82,5.184 -3.42,1.44 -7.164,2.592 -11.376,3.6 -2.556,0.288 -4.5,0.864 -5.976,1.728 -1.476,0.828 -2.124,1.656 -2.772,3.456 -0.756,1.764 -1.908,4.644 -1.368,7.236 0.504,2.52 1.908,5.076 4.356,7.812 z"
409
+ stroke-miterlimit="10"
410
+ id="path31"
411
+ inkscape:connector-curvature="0"
412
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
413
+ <path
414
+ d="m 100.31,44.638 c 2.268,-1.044 3.996,-2.304 5.184,-3.924 1.152,-1.62 1.764,-3.456 1.836,-5.652 0.396,2.844 0.324,4.86 -0.216,6.588 -0.684,1.62 -1.908,2.628 -3.096,3.168 -1.188,0.504 -2.376,0.395 -3.708,-0.18 z"
415
+ stroke-miterlimit="10"
416
+ id="path33"
417
+ inkscape:connector-curvature="0"
418
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
419
+ <path
420
+ d="m 105.96,45.286 c 0.792,-0.108 1.8,-0.684 2.628,-1.728 0.936,-1.116 1.692,-2.592 2.664,-4.572 0.144,3.313 -0.288,5.508 -1.152,6.588 -0.9,1.08 -2.232,0.936 -4.14,-0.288 z"
421
+ stroke-miterlimit="10"
422
+ id="path35"
423
+ inkscape:connector-curvature="0"
424
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
425
+ <path
426
+ d="m 115.03,45.574 c 0.396,2.988 0.432,5.364 0.108,7.56 -0.396,2.088 -1.116,3.672 -2.304,5.148 -1.26,1.404 -2.736,2.412 -4.824,3.168 1.836,1.08 3.384,1.728 5.076,1.548 1.62,-0.216 3.096,-0.864 4.572,-2.34 0.36,2.7 0.072,5.004 -1.008,7.056 -1.08,2.016 -2.844,3.636 -5.292,5.004 1.8,-1.944 2.88,-3.564 3.672,-5.004 0.72,-1.44 0.864,-2.592 0.576,-3.456 -1.872,0.72 -3.384,1.008 -5.076,0.468 -1.656,-0.504 -3.132,-1.656 -4.572,-3.456 3.24,-1.476 5.616,-3.564 7.128,-6.12 1.512,-2.665 2.16,-5.76 1.944,-9.576 z"
427
+ stroke-miterlimit="10"
428
+ id="path37"
429
+ inkscape:connector-curvature="0"
430
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
431
+ <path
432
+ d="m 94.009,88.414 c 4.284,-0.468 7.992,-1.512 11.124,-2.988 3.06,-1.584 5.544,-3.492 7.596,-6.12 2.052,-2.7 3.492,-5.94 4.608,-9.864 -0.108,4.248 -1.188,7.668 -3.24,10.8 -2.16,3.024 -5.688,5.94 -9.072,7.38 -3.348,1.368 -7.02,1.584 -11.016,0.792 z"
433
+ stroke-miterlimit="10"
434
+ id="path39"
435
+ inkscape:connector-curvature="0"
436
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
437
+ <path
438
+ d="m 13.009,83.554 c 0.792,1.44 1.26,3.06 1.404,5.004 0.144,1.908 0.54,4.104 -0.468,6.588 -1.296,2.376 -5.364,5.04 -6.228,7.848 -0.828,2.772 0.216,6.12 1.62,8.64 1.404,2.448 3.672,4.284 6.66,5.651 2.88,1.261 6.372,3.313 10.476,1.729 3.96,-1.764 8.316,-5.544 13.212,-11.772 -0.396,-0.756 -0.396,-1.908 -0.144,-3.312 0.252,-1.476 0.828,-3.204 1.728,-5.328 -0.432,3.348 0.072,6.192 1.512,8.928 1.44,2.628 3.672,5.04 6.984,7.092 -1.548,0.145 -3.024,-0.18 -4.572,-0.972 -1.62,-0.828 -3.024,-2.088 -4.608,-3.924 -4.896,4.68 -8.82,7.884 -12.168,9.9 -3.312,2.016 -4.32,2.735 -7.596,1.872 -3.492,-1.225 -9.936,-5.005 -12.528,-7.992 -2.592,-2.952 -3.132,-6.588 -2.988,-9.108 0.108,-2.592 2.088,-4.356 3.456,-6.12 1.296,-1.8 3.456,-2.34 4.248,-4.68 0.684,-2.556 0.684,-5.724 0,-10.044 z"
439
+ stroke-miterlimit="10"
440
+ id="path41"
441
+ inkscape:connector-curvature="0"
442
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
443
+ <path
444
+ d="m 20.605,120.56 c -1.008,1.764 -1.62,3.708 -1.836,5.976 -0.252,2.269 -0.288,5.652 0.576,7.381 0.792,1.476 1.548,2.664 4.356,2.016 2.736,-0.756 6.876,-2.556 12.276,-5.94 l -0.792,-1.439 c -4.932,2.952 -8.424,4.536 -11.016,5.04 -2.484,0.324 -3.456,-1.152 -4.032,-2.34 -0.72,-1.225 -0.216,-2.988 0,-4.717 0.18,-1.8 0.684,-3.636 1.368,-5.651 -0.288,-0.111 -0.576,-0.218 -0.9,-0.326 z"
445
+ stroke-miterlimit="10"
446
+ id="path43"
447
+ inkscape:connector-curvature="0"
448
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
449
+ <path
450
+ d="m 31.297,116.64 c 0.504,5.112 1.548,9.144 2.988,12.096 1.476,2.844 3.384,4.356 5.724,5.652 2.34,1.26 5.256,2.735 7.92,2.196 2.52,-0.721 6.048,-3.528 7.236,-5.652 1.08,-2.052 0.792,-4.356 -0.576,-6.769 -1.44,-2.411 -4.068,-5.075 -8.028,-7.848 2.376,2.34 4.212,4.392 5.508,6.588 1.296,2.088 2.808,4.176 2.304,6.12 -0.576,1.872 -3.6,4.428 -5.724,5.184 -2.196,0.648 -5.112,0.433 -7.38,-0.936 -2.412,-1.404 -5.328,-4.176 -6.66,-7.056 -1.44,-2.988 -1.8,-6.444 -1.476,-10.513 -0.612,0.289 -1.224,0.613 -1.836,0.938 z"
451
+ stroke-miterlimit="10"
452
+ id="path45"
453
+ inkscape:connector-curvature="0"
454
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
455
+ <path
456
+ d="m 36.805,113.04 c 0.252,2.521 0.648,4.536 1.476,6.444 0.792,1.836 1.728,3.492 3.096,4.536 1.332,1.008 3.348,1.296 4.392,1.404 0.72,-0.072 1.44,-0.685 0.792,-1.261 -0.756,-0.54 -3.132,-1.367 -4.356,-2.195 -1.188,-0.9 -1.8,-1.62 -2.52,-3.276 -0.828,-1.764 -1.476,-4.176 -2.088,-7.236 -0.252,0.505 -0.504,1.045 -0.792,1.584 z"
457
+ stroke-miterlimit="10"
458
+ id="path47"
459
+ inkscape:connector-curvature="0"
460
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
461
+ <path
462
+ d="m 49.909,82.149 c -2.052,0.9 -3.384,2.16 -4.14,3.924 -0.828,1.692 -1.584,4.752 -0.468,6.408 1.044,1.584 4.5,3.708 6.768,3.456 2.196,-0.288 5.652,-2.7 6.336,-4.86 0.576,-2.232 -1.548,-7.02 -2.88,-7.992 -1.512,-0.972 -3.204,-0.288 -5.616,2.196 1.656,-0.936 3.204,-1.26 4.248,-1.116 1.08,0.072 1.944,0.936 2.304,2.052 0.288,1.116 0.288,3.384 -0.576,4.716 -1.044,1.26 -3.744,2.844 -5.184,2.808 -1.548,-0.18 -3.096,-2.052 -3.672,-3.276 -0.576,-1.332 -0.36,-2.844 0.216,-4.248 0.432,-1.367 1.368,-2.771 2.664,-4.068 z"
463
+ stroke-miterlimit="10"
464
+ id="path49"
465
+ inkscape:connector-curvature="0"
466
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
467
+ <path
468
+ d="m 15.673,98.746 c -0.396,0.432 0.36,2.448 1.152,2.988 0.684,0.468 2.772,0.468 3.204,0 0.36,-0.54 -0.324,-2.556 -0.936,-2.988 -0.828,-0.504 -2.988,-0.504 -3.42,0 z"
469
+ stroke-miterlimit="10"
470
+ id="path51"
471
+ inkscape:connector-curvature="0"
472
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
473
+ <path
474
+ d="m 13.369,105.33 c -0.432,0.504 -0.612,1.512 -0.108,1.908 0.504,0.36 2.772,0.36 3.204,0 0.252,-0.54 -0.432,-2.7 -0.936,-2.988 -0.576,-0.359 -1.764,0.505 -2.16,1.08 z"
475
+ stroke-miterlimit="10"
476
+ id="path53"
477
+ inkscape:connector-curvature="0"
478
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
479
+ <path
480
+ d="m 19.237,109.44 c -0.072,0.684 1.512,1.404 2.268,1.332 0.648,-0.288 1.908,-1.512 1.98,-2.268 0.072,-0.792 -0.9,-2.16 -1.548,-2.017 -0.756,0.109 -2.628,2.161 -2.7,2.953 z"
481
+ stroke-miterlimit="10"
482
+ id="path55"
483
+ inkscape:connector-curvature="0"
484
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
485
+ <path
486
+ d="m 93.541,89.494 c 0.036,3.852 -1.26,8.244 -4.032,13.176 -2.88,5.041 -7.596,12.205 -12.492,16.488 -4.932,4.104 -10.512,6.769 -16.884,8.137 -1.008,-0.685 -1.98,-1.044 -2.772,-1.225 -0.9,-0.18 -1.62,-0.036 -2.304,0.288 l 0.36,2.052 c 1.404,0.181 2.556,0.54 3.312,0.937 0.72,0.396 1.188,0.864 1.26,1.404 -1.296,2.771 -2.16,5.651 -2.988,8.64 -0.864,3.06 -1.44,6.048 -1.728,9.396 -0.288,3.168 -0.288,6.517 0,9.9 -1.476,1.044 -3.06,1.512 -5.148,1.548 -2.124,-0.107 -4.32,-0.576 -7.128,-1.548 -2.916,-1.008 -6.552,-4.32 -9.648,-4.248 -3.096,0.036 -6.912,2.052 -8.964,4.392 -2.16,2.196 -3.456,6.337 -3.888,9.108 -0.504,2.664 -0.36,4.932 1.26,7.2 1.548,2.231 4.212,4.284 8.136,6.3 l 0.936,-0.936 c -2.376,-1.116 -4.392,-2.448 -5.652,-4.393 -1.368,-1.943 -2.592,-4.392 -2.412,-6.912 0.072,-2.592 1.26,-6.155 3.132,-8.172 1.872,-2.016 5.256,-4.067 7.92,-4.067 2.628,-0.036 4.464,2.411 7.452,3.456 2.88,0.863 6.66,2.52 9.54,2.34 2.736,-0.181 4.86,-1.225 6.66,-3.276 -0.9,-2.088 -1.152,-4.968 -0.9,-8.496 0.252,-3.708 1.476,-9.107 2.412,-12.852 0.864,-3.744 1.692,-6.732 2.628,-9.252 3.348,-0.145 6.732,-1.404 10.44,-3.78 3.672,-2.484 8.028,-6.264 11.52,-10.512 3.384,-4.32 7.236,-10.62 8.928,-14.868 1.62,-4.249 2.016,-7.526 1.044,-10.225 z"
487
+ stroke-miterlimit="10"
488
+ id="path57"
489
+ inkscape:connector-curvature="0"
490
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
491
+ <path
492
+ d="m 28.057,179.53 c -0.468,-2.7 -0.504,-4.896 -0.108,-6.731 0.36,-1.908 2.16,-4.104 2.628,-4.248 0.36,-0.145 0.216,1.8 0,3.312 -0.396,1.332 -1.008,3.276 -1.26,4.86 -0.216,1.512 0,2.88 0.36,4.248 -0.54,-0.468 -1.08,-0.937 -1.62,-1.441 z"
493
+ stroke-miterlimit="10"
494
+ id="path59"
495
+ inkscape:connector-curvature="0"
496
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
497
+ <path
498
+ d="m 71.257,148.97 c -1.908,2.124 -3.096,4.392 -3.564,7.2 -0.54,2.735 1.584,5.724 0.684,9.107 -0.972,3.384 -3.024,6.912 -6.3,10.98 -6.048,-1.152 -11.124,-1.62 -15.624,-1.261 -4.5,0.288 -7.992,1.009 -11.016,3.133 -3.132,1.979 -5.688,6.443 -7.272,9.107 -1.692,2.628 -1.944,4.32 -2.268,6.588 -0.288,2.124 -0.324,4.824 0.432,6.444 0.576,1.584 2.592,2.664 3.564,2.808 0.9,0 1.8,-0.792 2.304,-2.52 -0.252,-1.512 0.036,-2.916 0.576,-4.212 0.612,-1.332 2.592,-3.601 2.88,-3.456 0.072,0.144 -1.476,2.808 -1.728,4.392 -0.252,1.513 0.036,3.349 0.576,4.536 0.468,1.152 1.62,1.836 2.628,2.196 0.972,0.216 0.576,0.756 3.24,-0.468 2.556,-1.297 8.496,-5.437 12.276,-6.732 3.672,-1.368 6.768,-2.016 10.116,-1.116 3.204,0.9 6.3,4.104 9.864,6.265 3.6,2.052 8.316,4.787 11.628,5.832 3.204,0.899 5.76,0.792 7.668,-0.324 -1.44,-0.036 -2.664,-0.612 -3.672,-1.729 -1.044,-1.08 -2.916,-4.823 -2.268,-4.859 0.72,-0.181 3.672,3.312 6.084,4.248 2.268,0.827 5.4,1.367 7.452,1.079 2.016,-0.252 3.744,-2.34 4.608,-2.663 0.756,-0.433 0.756,-0.433 0,0 -3.492,0.18 -6.048,-0.181 -7.812,-1.08 -1.764,-1.044 -3.384,-3.889 -2.772,-4.248 0.54,-0.36 3.708,1.907 5.76,2.34 1.8,0.36 3.708,0.36 5.724,0 2.088,-0.36 4.212,-1.188 6.66,-2.34 3.204,1.008 6.264,1.188 9.324,0.936 2.988,-0.432 6.264,-1.62 8.712,-2.988 2.34,-1.403 4.14,-3.275 5.4,-5.472 l 2.664,0.288 c -1.08,2.412 -2.844,4.32 -5.292,6.12 -2.484,1.728 -5.94,3.42 -9.54,4.104 -3.708,0.54 -7.632,0.181 -12.168,-0.936 -1.836,1.548 -3.78,3.06 -5.976,4.68 -2.304,1.62 -5.22,3.889 -7.236,4.716 -2.016,0.757 -3.672,0.648 -4.824,-0.323 -2.232,2.016 -5.076,2.592 -8.388,1.584 -3.456,-1.116 -8.064,-5.437 -11.736,-7.704 -3.816,-2.376 -7.2,-5.328 -10.548,-5.94 -3.348,-0.647 -6.228,0.864 -9.324,2.196 -3.132,1.224 -6.768,4.068 -9.396,5.328 -2.772,1.151 -5.04,2.052 -6.804,1.872 -1.764,-0.288 -3.024,-1.188 -3.78,-3.132 -1.44,1.367 -2.808,1.872 -4.248,1.115 -1.476,-0.792 -3.852,-2.771 -4.356,-5.363 -0.648,-2.809 -0.072,-6.948 0.9,-10.332 0.936,-3.42 2.448,-7.021 4.824,-9.433 2.304,-2.376 5.976,-3.852 9.216,-4.859 3.204,-1.188 5.976,-1.584 9.972,-1.729 3.96,-0.18 8.136,0.18 13.212,0.937 2.232,-2.772 3.78,-5.328 4.5,-7.668 0.648,-2.269 0,-4.356 -0.144,-6.265 -0.216,-2.124 -1.08,-4.212 -0.792,-5.832 0.216,-1.584 1.224,-2.628 2.196,-3.42 0.936,-0.864 1.908,-1.439 3.204,-1.727 z"
499
+ stroke-miterlimit="10"
500
+ id="path61"
501
+ inkscape:connector-curvature="0"
502
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
503
+ <path
504
+ d="m 58.729,136.73 c 1.872,2.376 3.996,3.492 6.66,3.744 2.556,0.18 4.896,0.036 8.964,-2.664 4.068,-2.808 11.412,-8.604 15.516,-13.932 4.068,-5.509 6.876,-11.952 8.712,-18.072 1.728,-6.012 2.268,-12.024 1.62,-18.036 l 1.26,-0.288 c 0.504,4.176 0.468,8.352 -0.108,12.528 -0.612,4.068 -1.44,7.884 -3.456,12.564 -2.088,4.788 -5.724,11.124 -8.964,15.517 -3.312,4.14 -7.452,7.056 -10.908,9.575 -3.564,2.448 -7.056,4.717 -10.332,5.005 -3.348,0.144 -6.48,-1.009 -9.54,-3.744 0.18,-0.722 0.36,-1.442 0.576,-2.197 z"
505
+ stroke-miterlimit="10"
506
+ id="path63"
507
+ inkscape:connector-curvature="0"
508
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
509
+ <path
510
+ d="m 100.78,91.87 c 1.836,-1.26 4.14,-1.26 7.452,-0.144 3.168,1.152 7.668,4.788 11.844,6.876 4.104,1.872 8.388,4.464 12.852,4.86 4.32,0.288 8.028,0.936 13.463,-2.52 5.473,-3.492 14.328,-14.184 19.08,-18.18 4.572,-4.104 4.752,-4.104 8.604,-5.976 3.781,-1.908 8.857,-4.644 14.113,-5.148 5.256,-0.468 11.844,1.404 17.135,1.872 5.148,0.288 9.037,1.44 13.896,0.144 4.896,-1.44 10.332,-4.86 15.049,-8.316 4.5,-3.42 8.027,-6.156 12.383,-12.528 4.357,-6.696 11.125,-17.712 13.789,-26.532 2.627,-8.82 3.275,-17.316 1.943,-25.884 4.176,-1.152 6.877,0.324 8.533,4.716 1.584,4.392 1.836,11.304 0.898,21.168 0.576,-0.108 1.152,-0.684 1.729,-1.872 0.577,-1.188 1.152,-2.916 1.729,-5.184 0.611,2.808 0.576,6.084 -0.107,10.368 -0.721,4.212 -2.018,9 -4.033,14.76 1.152,1.944 1.836,4.14 2.053,6.876 0.072,2.628 0.432,5.616 -1.008,9.108 -1.512,3.528 -4.32,8.316 -7.596,11.592 -3.24,3.204 -7.273,5.472 -11.953,7.236 3.779,-2.52 7.057,-5.364 10.225,-8.928 3.096,-3.6 6.84,-8.28 8.172,-12.24 1.115,-3.996 0.936,-7.668 -0.936,-11.304 -0.252,2.556 -1.26,5.328 -3.313,8.172 -2.16,2.844 -8.676,9.432 -8.855,8.928 -0.182,-0.648 5.471,-7.884 7.92,-12.384 2.447,-4.608 5.471,-10.872 6.551,-14.76 0.938,-3.96 0.756,-6.84 -0.684,-8.784 -0.973,3.024 -2.305,6.048 -4.141,8.928 -1.836,2.88 -4.176,5.76 -6.875,8.496 1.584,-2.484 3.275,-5.184 4.932,-8.496 1.656,-3.276 4.031,-6.984 5.041,-11.124 0.826,-4.284 0.539,-10.512 0.252,-14.112 -0.324,-3.672 -0.973,-6.192 -2.088,-7.704 -1.152,-1.548 -2.629,-2.124 -4.572,-1.728 0.898,4.428 0.898,9.324 -0.145,15.228 -1.115,5.724 -2.125,11.988 -6.084,19.62 -4.141,7.776 -11.053,19.368 -17.676,26.172 -6.697,6.588 -14.004,11.124 -21.492,13.212 -7.561,1.872 -16.416,-1.62 -22.969,-1.584 -6.588,-0.036 -10.475,-0.864 -15.947,1.404 -5.58,2.196 -12.133,7.416 -17.027,11.772 -5.041,4.32 -7.777,11.016 -12.637,14.112 -5.004,3.024 -10.764,4.284 -16.308,3.924 -5.508,-0.54 -12.06,-4.248 -16.2,-6.264 -4.212,-2.052 -5.796,-4.716 -8.496,-5.652 -2.771,-0.936 -5.364,-1.08 -7.92,-0.144 -0.18,-0.684 -0.36,-1.368 -0.576,-2.052 z"
511
+ stroke-miterlimit="10"
512
+ id="path65"
513
+ inkscape:connector-curvature="0"
514
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
515
+ <path
516
+ d="m 262.27,72.861 c 0.469,1.044 0.287,2.88 -0.684,5.652 -1.045,2.736 -2.629,7.452 -5.148,10.692 -2.557,3.132 -5.652,5.796 -9.684,8.136 2.123,0.432 3.24,1.224 3.348,2.52 -0.037,1.296 -1.152,3.06 -2.771,4.86 -1.693,1.62 -3.637,3.492 -6.66,5.184 -2.988,1.656 -6.732,3.276 -11.232,4.86 0,3.132 0.432,5.652 1.152,7.848 0.648,2.124 1.475,3.744 3.311,5.004 1.766,1.152 5.041,2.16 7.598,2.196 2.482,-0.108 4.787,-1.116 7.344,-2.196 2.484,-1.151 5.328,-3.636 7.703,-4.392 2.268,-0.756 4.213,-0.756 5.832,-0.144 1.621,0.432 2.52,1.476 3.816,3.275 1.152,1.8 2.268,4.141 3.203,7.704 0.793,3.492 1.117,9.828 2.088,13.32 0.938,3.275 2.018,4.932 3.781,6.912 1.764,1.943 5.039,3.491 6.768,5.184 1.656,1.656 2.771,3.168 3.205,4.68 0.432,1.368 0.359,1.908 -0.793,4.104 -1.332,2.304 -3.42,5.292 -6.66,9.396 l 1.512,2.053 c 2.016,-2.593 3.781,-5.005 5.148,-7.236 1.404,-2.196 2.951,-4.284 3.096,-6.264 -0.145,-2.196 -1.691,-4.465 -2.988,-6.265 -1.332,-1.8 -2.844,-3.168 -4.248,-4.392 -1.512,-1.332 -2.988,-1.692 -4.139,-3.313 -1.117,-1.764 -2.018,-3.491 -2.844,-6.731 -1.045,-3.384 -1.729,-8.964 -2.881,-12.853 -1.26,-3.96 -2.305,-8.208 -4.248,-10.367 -2.088,-2.16 -4.68,-2.521 -7.344,-2.196 -2.664,0.325 -5.328,2.412 -8.389,3.78 -3.24,1.331 -7.703,3.6 -10.477,3.888 -2.771,0.144 -4.967,-0.972 -6.299,-2.809 -1.369,-1.871 -2.16,-4.644 -2.088,-8.315 2.52,-0.216 5.363,-1.08 8.387,-2.988 3.025,-1.979 7.67,-5.939 9.9,-8.136 2.125,-2.232 2.773,-3.492 3.205,-5.04 0.467,-1.656 0.107,-2.988 -0.684,-4.392 2.699,-1.656 5.074,-3.708 6.982,-6.588 1.945,-2.916 3.709,-7.38 4.609,-10.332 0.828,-2.952 0.898,-5.508 0.215,-7.524 -0.647,0.398 -1.293,0.794 -1.942,1.225 z"
517
+ stroke-miterlimit="10"
518
+ id="path67"
519
+ inkscape:connector-curvature="0"
520
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
521
+ <path
522
+ d="m 231.28,123.37 c -0.289,0.792 -0.9,1.297 -1.836,1.908 -1.008,0.468 -3.24,0.433 -3.924,1.26 -0.828,0.792 -0.936,1.944 -0.469,3.601 0.361,1.584 1.152,3.888 3.348,5.939 2.305,1.98 7.057,5.221 10.225,5.977 3.061,0.612 5.256,-0.612 8.137,-1.872 2.736,-1.368 6.479,-4.645 8.748,-5.652 2.268,-1.08 3.635,-1.512 4.932,-0.324 1.152,1.261 1.764,4.572 2.52,7.849 0.648,3.275 1.26,7.56 1.98,11.448 0.684,3.708 1.691,8.208 2.627,11.124 0.828,2.88 1.369,3.96 2.881,6.3 1.584,2.268 4.283,5.076 6.301,7.056 1.871,1.836 3.49,2.124 4.715,3.924 1.045,1.765 1.477,4.177 1.729,6.265 0.145,2.016 0.359,4.5 -0.469,5.796 -1.115,1.224 -2.844,1.512 -5.039,1.26 -2.16,-0.36 -4.645,-1.656 -7.596,-3.6 0.18,1.188 1.115,2.231 2.412,3.275 1.332,1.008 3.635,2.557 5.65,2.7 1.945,0.072 4.5,-0.468 5.725,-2.196 1.008,-1.907 1.045,-5.939 0.684,-8.64 -0.467,-2.628 -1.367,-5.04 -3.096,-7.236 -1.836,-2.195 -4.896,-3.06 -7.236,-6.084 -2.34,-3.24 -4.859,-7.38 -6.443,-12.563 -1.619,-5.328 -2.268,-13.968 -3.203,-18.685 -1.117,-4.644 -1.873,-7.632 -3.098,-9.396 -1.367,-1.944 -2.268,-2.521 -4.355,-1.872 -2.195,0.684 -5.221,4.284 -7.955,5.796 -2.844,1.404 -5.904,2.52 -8.496,2.664 -2.629,-0.036 -4.824,-1.476 -6.877,-2.521 -2.16,-1.151 -4.5,-2.411 -5.615,-3.924 -1.08,-1.584 -1.297,-3.996 -0.936,-5.004 0.215,-1.044 1.691,-0.72 2.627,-1.116 0.863,-0.468 1.836,-0.936 2.771,-1.548 -0.433,-0.612 -0.9,-1.26 -1.369,-1.909 z"
523
+ stroke-miterlimit="10"
524
+ id="path69"
525
+ inkscape:connector-curvature="0"
526
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
527
+ <path
528
+ d="m 276.42,196.48 c 0.287,0.864 0.143,1.836 -0.828,2.521 -0.973,0.72 -2.484,1.943 -4.68,1.872 -2.305,-0.108 -6.121,-0.721 -8.533,-2.521 -2.412,-2.088 -4.139,-5.76 -5.723,-8.928 -1.656,-3.168 -2.412,-8.028 -3.926,-9.576 -1.619,-1.656 -2.916,-0.504 -5.256,0.145 -2.412,0.611 -5.219,2.663 -8.855,3.636 -3.744,0.899 -8.027,1.8 -12.996,1.728 -5.004,-0.144 -10.871,-0.144 -16.631,-2.376 -5.941,-2.376 -13.178,-7.2 -17.82,-11.124 -4.537,-3.996 -6.301,-10.116 -9.18,-12.096 -2.988,-1.908 -5.58,-1.152 -8.605,0.468 -3.168,1.512 -6.984,5.688 -9.9,8.641 -2.951,2.916 -4.031,6.119 -7.559,8.64 -3.529,2.448 -8.1,4.284 -13.572,5.796 0.972,1.296 1.512,2.196 1.476,2.988 0,0.684 -0.576,0.972 -1.584,1.403 -1.188,0.469 -2.52,0.828 -4.824,1.08 -2.268,0.145 -5.184,0 -8.748,-0.288 2.268,1.404 4.464,2.196 7.02,2.664 2.52,0.396 5.724,0.145 7.812,-0.18 1.944,-0.432 3.383,-1.26 3.78,-2.34 0.359,-1.116 -0.217,-2.628 -1.584,-4.393 3.348,0.181 6.732,-1.044 10.549,-4.067 3.779,-3.096 7.92,-10.62 11.734,-13.824 3.709,-3.204 7.201,-4.968 10.08,-5.004 2.701,-0.108 4.033,1.872 6.336,4.392 2.232,2.521 3.277,6.984 7.021,10.332 3.635,3.24 9.107,7.021 15.047,9.108 5.904,1.908 14.76,2.808 20.305,2.844 5.436,0 8.244,-1.26 12.313,-2.376 3.924,-1.151 9,-4.644 11.482,-4.212 2.449,0.432 1.98,4.104 3.313,6.732 1.369,2.483 2.773,6.228 4.609,8.46 1.654,2.195 3.348,3.815 5.615,4.859 2.267,1.044 5.76,1.368 7.955,1.261 2.053,-0.36 3.529,-1.188 4.572,-2.341 1.045,-1.115 1.369,-2.376 1.369,-3.924 l -1.584,0 z"
529
+ stroke-miterlimit="10"
530
+ id="path71"
531
+ inkscape:connector-curvature="0"
532
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
533
+ <path
534
+ d="m 73.093,77.434 c 3.276,-1.62 5.616,-2.304 7.416,-2.196 1.656,0.036 1.944,1.512 2.952,2.916 0.972,1.404 1.944,3.168 2.916,5.436 -2.556,-3.06 -4.536,-4.824 -6.372,-5.436 -1.872,-0.612 -3.06,1.836 -4.248,1.8 -1.224,-0.144 -2.016,-0.936 -2.664,-2.52 z"
535
+ stroke-miterlimit="10"
536
+ id="path73"
537
+ inkscape:connector-curvature="0"
538
+ style="stroke:#000000;stroke-width:0.0880687;stroke-miterlimit:10" />
539
+ </g>
540
+ </g>
541
+ </g>
542
+ </g>
543
+ <g
544
+ inkscape:groupmode="layer"
545
+ id="layer10"
546
+ inkscape:label="Action">
547
+ <flowRoot
548
+ xml:space="preserve"
549
+ id="flowRoot7610"
550
+ style="font-size:11.25px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sloppy Handwriting;-inkscape-font-specification:Sloppy Handwriting Bold Italic"
551
+ transform="matrix(0.01111111,0,0,0.01111111,0.01086846,715.2352)"
552
+ inkscape:label="Action"><flowRegion
553
+ id="flowRegion7612"><rect
554
+ id="rect7614"
555
+ width="177.78685"
556
+ height="138.89598"
557
+ x="33.840111"
558
+ y="133.95427" /></flowRegion><flowPara
559
+ id="flowPara7616"
560
+ style="font-size:12.50000095px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:FreeSans;-inkscape-font-specification:FreeSans">Perform this action, then pat the nearest animal of this type.</flowPara></flowRoot> </g>
561
+ </g>
562
+ <g
563
+ inkscape:groupmode="layer"
564
+ id="layer2"
565
+ inkscape:label="Target" />
566
+ <g
567
+ inkscape:groupmode="layer"
568
+ id="layer3"
569
+ inkscape:label="Overlay"
570
+ style="opacity:0.1;display:none"
571
+ sodipodi:insensitive="true">
572
+ <path
573
+ style="color:#000000;fill:#fdff4e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
574
+ d="m 11.111328,11.220703 0,314.158207 225.011722,0 0,-314.158207 -225.011722,0 z m 16.423828,10.859375 192.921874,0 c 2.52268,0 4.55469,2.030056 4.55469,4.552734 l 0,283.837888 c 0,2.52268 -2.03201,4.55274 -4.55469,4.55274 l -192.921874,0 c -2.522678,0 -4.554687,-2.03006 -4.554687,-4.55274 l 0,-283.837888 c 0,-2.522678 2.032009,-4.552734 4.554687,-4.552734 z"
575
+ transform="scale(0.01111111,0.01111111)"
576
+ id="rect7574"
577
+ inkscape:connector-curvature="0" />
578
+ <path
579
+ style="color:#000000;fill:#ff0000;stroke:none;stroke-width:0.01111111;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
580
+ d="m 0,0 0,337.5 247.5,0 L 247.5,0 0,0 Z m 15.041016,11.220703 217.154294,0 c 2.17643,0 3.92774,1.751306 3.92774,3.927735 l 0,306.300782 c 0,2.17643 -1.75131,3.92969 -3.92774,3.92969 l -217.154294,0 c -2.176429,0 -3.929688,-1.75326 -3.929688,-3.92969 l 0,-306.300782 c 0,-2.176429 1.753259,-3.927735 3.929688,-3.927735 z"
581
+ transform="scale(0.01111111,0.01111111)"
582
+ id="rect7567"
583
+ inkscape:connector-curvature="0" />
584
+ </g>
585
+ </svg>
data/svggvs.gemspec ADDED
@@ -0,0 +1,22 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'svggvs/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "svggvs"
8
+ gem.version = Svggvs::VERSION
9
+ gem.authors = ["John Bintz"]
10
+ gem.email = ["john@coswellproductions.com"]
11
+ gem.description = %q{Generate sets of card game cards using Inkscape templates and Ruby}
12
+ gem.summary = %q{Generate sets of card game cards using Inkscape templates and Ruby}
13
+ gem.homepage = ""
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+
20
+ gem.add_dependency 'nokogiri'
21
+ gem.add_dependency 'thor'
22
+ end
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: svggvs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - John Bintz
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-11-17 00:00:00.000000000 -05:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: nokogiri
17
+ requirement: &80931760 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *80931760
26
+ - !ruby/object:Gem::Dependency
27
+ name: thor
28
+ requirement: &80931550 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: *80931550
37
+ description: Generate sets of card game cards using Inkscape templates and Ruby
38
+ email:
39
+ - john@coswellproductions.com
40
+ executables:
41
+ - svggvs
42
+ extensions: []
43
+ extra_rdoc_files: []
44
+ files:
45
+ - .gitignore
46
+ - Gemfile
47
+ - LICENSE.txt
48
+ - README.md
49
+ - Rakefile
50
+ - bin/svggvs
51
+ - lib/svggvs.rb
52
+ - lib/svggvs/context.rb
53
+ - lib/svggvs/file.rb
54
+ - lib/svggvs/session.rb
55
+ - lib/svggvs/target.rb
56
+ - lib/svggvs/version.rb
57
+ - skel/Cardfile
58
+ - skel/Gemfile
59
+ - skel/template.svg
60
+ - svggvs.gemspec
61
+ has_rdoc: true
62
+ homepage: ''
63
+ licenses: []
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ none: false
70
+ requirements:
71
+ - - ! '>='
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ none: false
76
+ requirements:
77
+ - - ! '>='
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubyforge_project:
82
+ rubygems_version: 1.6.2
83
+ signing_key:
84
+ specification_version: 3
85
+ summary: Generate sets of card game cards using Inkscape templates and Ruby
86
+ test_files: []