phantom_svg 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c63fde319fb920c302ed2d8cf5e0794aa832d87
4
- data.tar.gz: 954d8c6013d661919e0afc4ee8a3ed527bd74be4
3
+ metadata.gz: 5e4bab9f9212fb4f2565aa6eb2beca9d36c52be2
4
+ data.tar.gz: 6da611e26c4e1ae1a1b4cce43f0ec52f2a941532
5
5
  SHA512:
6
- metadata.gz: c834ca1a0a43bbaa1a467192a011c7bf0fd33cf6e6cb09881150230277af9aa61b821de0b3c9ca1439b517ee568ee2760c0992f36859c7df00c6e17d9bf7d630
7
- data.tar.gz: d7924e17a977c3d85b5e2424bcf488ff2c1f2d247a3033d0b25ed2b1aa46a3d605d845b36de2230eb5c4c84940009f058f09897be97f6d35c03d47a4d8e58fda
6
+ metadata.gz: b2739454d44d7da6127eac83647dfc85824cb73d33c1057c21b75f8963e17ff136beb4b9597f9bb4ef2154f69cd38397de4ac1f77493e6ce3d489d44ff039d7a
7
+ data.tar.gz: ef8c345f125ef9e7d9ef88322754809de6d59d629855db3a3ea2bfb152c081701c32ad9249df0c2152a636e94f8b9458f18a07c4df090bedc8e5e9865c01dbdf
@@ -55,6 +55,8 @@ module Phantom
55
55
  create_file_list(frame_info[:name]).each do |file|
56
56
  reader = Parser::SVGReader.new(file, create_options(i, frame_info[:delay]))
57
57
  @frames += reader.frames
58
+ @width = reader.width if @width.to_i < reader.width.to_i
59
+ @height = reader.height if @height.to_i < reader.height.to_i
58
60
  i += 1
59
61
  end
60
62
  end
@@ -20,8 +20,11 @@ module Phantom
20
20
 
21
21
  frames = create_frames(path)
22
22
  @frames += frames
23
- @width = "#{frames.first.width}px"
24
- @height = "#{frames.first.height}px"
23
+ @width = "#{frames.first.width}"
24
+ @height = "#{frames.first.height}"
25
+ @loops = 0
26
+ @skip_first = false
27
+ @has_animation = true
25
28
  end
26
29
 
27
30
  private
@@ -35,6 +38,7 @@ module Phantom
35
38
  frame = set_param(img)
36
39
  frames << frame
37
40
  end
41
+
38
42
  frames
39
43
  end
40
44
 
@@ -17,8 +17,8 @@ module Phantom
17
17
 
18
18
  frame = create_frame(path)
19
19
  @frames << frame
20
- @width = "#{frame.width}px"
21
- @height = "#{frame.height}px"
20
+ @width = "#{frame.width}"
21
+ @height = "#{frame.height}"
22
22
  end
23
23
 
24
24
  private
@@ -32,8 +32,8 @@ module Phantom
32
32
  def read_png(path)
33
33
  frame = create_frame(path)
34
34
  @frames << frame
35
- @width = "#{frame.width}px"
36
- @height = "#{frame.height}px"
35
+ @width = "#{frame.width}"
36
+ @height = "#{frame.height}"
37
37
  end
38
38
 
39
39
  def read_apng(apngasm)
@@ -1,5 +1,6 @@
1
1
 
2
2
  require 'rexml/document'
3
+ require 'digest/md5'
3
4
 
4
5
  require_relative '../frame.rb'
5
6
  require_relative 'abstract_image_reader.rb'
@@ -15,7 +16,11 @@ module Phantom
15
16
 
16
17
  return if path.nil? || path.empty?
17
18
 
19
+ @path = path
20
+ @marker = Digest::MD5.hexdigest(open(@path).read)
21
+
18
22
  @root = REXML::Document.new(open(path))
23
+ make_ids_unique() if options[:unique_ids] == true
19
24
 
20
25
  if @root.elements['svg'].attributes['id'] == 'phantom_svg'
21
26
  read_animation_svg(options)
@@ -28,9 +33,33 @@ module Phantom
28
33
 
29
34
  private
30
35
 
36
+ # Make ID's and their references unique so they don't collide with other layers/frames.
37
+ def make_ids_unique(element_types = ['linearGradient', 'radialGradient'])
38
+ element_types.each { |element_type| make_id_unique(element_type) }
39
+ end
40
+
41
+ def make_id_unique(element_type)
42
+ @root.elements.each("//#{element_type}") do |element|
43
+ id = element.attributes['id']
44
+ new_id = id + @marker
45
+ element.attributes['id'] = new_id
46
+ _replace_id_refs(id, new_id)
47
+ end
48
+ end
49
+
50
+ def _replace_id_refs(id, new_id)
51
+ @root.elements.each("//*") do |element|
52
+ element.attributes['style'].gsub!(/url\(\##{id}\)/, "url(\##{new_id})") if element.attributes['style'] != nil
53
+ element.attributes['fill'].gsub!(/\##{id}$/, "\##{new_id}") if element.attributes['fill'] != nil
54
+ element.attributes['xlink:href'].gsub!(/\##{id}$/, "\##{new_id}") if element.attributes['xlink:href'] != nil
55
+ end
56
+ end
57
+
31
58
  # Read no animation svg.
32
59
  def read_svg(options)
33
60
  read_images(@root, options)
61
+ @width = @frames.first.width
62
+ @height = @frames.first.height
34
63
  end
35
64
 
36
65
  # Read animation svg.
data/lib/phantom/svg.rb CHANGED
@@ -128,54 +128,117 @@ module Phantom
128
128
  result
129
129
  end
130
130
 
131
+ # Combine image.
132
+ def combine(path)
133
+ src = Base.new(path, {unique_ids: true})
134
+
135
+ if @width != src.width || @height != src.height
136
+ fail "Can't combine source images of different sizes."
137
+ return
138
+ end
139
+
140
+ rest_duration = (total_duration * 1000).to_i.lcm((src.total_duration * 1000).to_i)
141
+ @frames[0].duration = rest_duration * 0.001 if @frames.length == 1
142
+ src.frames[0].duration = rest_duration * 0.001 if src.frames.length == 1
143
+
144
+ base_i = src_i = -1
145
+ base_duration = src_duration = 0;
146
+ base_frame = src_frame = nil
147
+ new_frames = []
148
+
149
+ begin
150
+ if base_duration == 0
151
+ base_i = (base_i + 1) % @frames.length
152
+ base_frame = @frames[base_i]
153
+ base_duration = (base_frame.duration * 1000).to_i
154
+ end
155
+
156
+ if src_duration == 0
157
+ src_i = (src_i + 1) % src.frames.length
158
+ src_frame = src.frames[src_i]
159
+ src_duration = (src_frame.duration * 1000).to_i
160
+ end
161
+
162
+ elapsed = [base_duration, src_duration].min
163
+
164
+ new_frame = base_frame.clone
165
+ new_frame.duration = elapsed * 0.001
166
+ new_frame.surfaces += src_frame.surfaces
167
+ new_frame.namespaces = src_frame.namespaces.merge(new_frame.namespaces)
168
+ new_frames << new_frame
169
+
170
+ base_duration -= elapsed
171
+ src_duration -= elapsed
172
+ rest_duration -= elapsed
173
+ end while rest_duration > 0
174
+
175
+ @frames = new_frames
176
+ end
177
+
131
178
  private
132
179
 
133
180
  def load_from_svg(path, options)
134
181
  reader = Parser::SVGReader.new(path, options)
182
+
135
183
  if reader.has_animation?
136
- @width = reader.width
137
- @height = reader.height
138
184
  @loops = reader.loops
139
185
  @skip_first = reader.skip_first
186
+ else
187
+ @loops = 0
188
+ @skip_first = false
140
189
  end
141
190
 
142
191
  @frames += reader.frames
192
+ @width = reader.width
193
+ @height = reader.height
143
194
  end
144
195
 
145
196
  def load_from_png(path, options)
146
197
  reader = Parser::PNGReader.new(path, options)
198
+
147
199
  if reader.has_animation?
148
- @width = reader.width
149
- @height = reader.height
150
200
  @loops = reader.loops
151
201
  @skip_first = reader.skip_first
202
+ else
203
+ @loops = 0
204
+ @skip_first = false
152
205
  end
153
206
 
154
207
  @frames += reader.frames
208
+ @width = reader.width
209
+ @height = reader.height
155
210
  end
156
211
 
157
212
  def load_from_jpeg(path, options)
158
213
  reader = Parser::JPEGReader.new(path, options)
214
+
159
215
  if reader.has_animation?
160
- @width = reader.width
161
- @height = reader.height
162
216
  @loops = reader.loops
163
217
  @skip_first = reader.skip_first
218
+ else
219
+ @loops = 0
220
+ @skip_first = false
164
221
  end
165
222
 
166
223
  @frames += reader.frames
224
+ @width = reader.width
225
+ @height = reader.height
167
226
  end
168
227
 
169
228
  def load_from_gif(path, option)
170
229
  reader = Parser::GIFReader.new(path, option)
230
+
171
231
  if reader.has_animation?
172
- @width = reader.width
173
- @height = reader.height
174
232
  @loops = reader.loops
175
233
  @skip_first = reader.skip_first
234
+ else
235
+ @loops = 0
236
+ @skip_first = false
176
237
  end
177
238
 
178
239
  @frames += reader.frames
240
+ @width = reader.width
241
+ @height = reader.height
179
242
  end
180
243
 
181
244
  def load_from_json(path, options)
data/phantom_svg.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.platform = Gem::Platform::RUBY
3
3
  s.name = 'phantom_svg'
4
- s.version = '1.2.3'
4
+ s.version = '1.2.4'
5
5
  s.license = 'LGPL-3.0'
6
6
  s.summary = 'Hight end SVG manipulation tools for Ruby'
7
7
  s.description = 'Hight end SVG manipulation tools for Ruby.\n' \
@@ -0,0 +1,198 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
5
+ y="0px" width="64px" height="64px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16" y1="58.8956757" x2="16" y2="86">
9
+ <stop offset="0" style="stop-color:#1EA839"/>
10
+ <stop offset="1" style="stop-color:#006934"/>
11
+ </linearGradient>
12
+ <path style="fill:url(#SVGID_1_);" d="M21.25,58.8956757c0,0,8.75,0,8.75,10.5S30,86,30,86H2c0,0,0-6.1043243,0-16.6043243
13
+ s8.75-10.5,8.75-10.5H21.25z"/>
14
+ <path style="fill:#231815;" d="M30.25,86.25H1.75V69.3955078c0-10.6269531,8.9101563-10.75,9-10.75h10.5
15
+ c0.0898438,0,9,0.1230469,9,10.75V86.25z M2.25,85.75h27.5V69.3955078c0-10.1337891-8.152832-10.25-8.5-10.25h-10.5
16
+ c-0.3466797,0.0009766-8.5,0.1308594-8.5,10.25V85.75z"/>
17
+ </g>
18
+ <g>
19
+ <g>
20
+ <path style="fill:#F9C7AF;" d="M20.3087234,52.5150337H16h-4.30867c0,0-0.2121811,5.3482018-0.94133,6.3386116
21
+ c0,0,1.859375,1.5185928,5.25,1.5185928s5.25-1.5185928,5.25-1.5185928
22
+ C20.5208511,57.8632355,20.3087234,52.5150337,20.3087234,52.5150337z"/>
23
+ <path style="fill:#231815;" d="M16,60.6220703c-3.4399414,0-5.3295898-1.5107422-5.4082031-1.5751953l-0.184082-0.1503906
24
+ l0.1411133-0.1914063c0.5605469-0.7617188,0.8344727-4.734375,0.8925781-6.2001953l0.0097656-0.2402344h9.0976563
25
+ l0.0097656,0.2402344c0.0581055,1.4658203,0.3320313,5.4384766,0.8925781,6.2001953l0.1411133,0.1914063l-0.184082,0.1503906
26
+ C21.3295898,59.1113281,19.4404297,60.6220703,16,60.6220703z M11.0791016,58.7822266
27
+ C11.6030273,59.1337891,13.3144531,60.1220703,16,60.1220703s4.3969727-0.9882813,4.9208984-1.3398438
28
+ c-0.5893555-1.2382813-0.8017578-4.9482422-0.8515625-6.0175781h-8.1386719
29
+ C11.8808594,53.8339844,11.668457,57.5439453,11.0791016,58.7822266z"/>
30
+ </g>
31
+ <g>
32
+ <path style="fill:#F9C7AF;" d="M24.75,45.9985352c0,0,1.75-1.3697052,1.75,2.7394066s-5.25,4.1091118-5.25,4.1091118
33
+ L24.75,45.9985352z"/>
34
+ <path style="fill:#231815;" d="M21.25,53.0966797h-0.4086914l3.7548828-7.2958984
35
+ c0.0351563-0.0273438,0.359375-0.2714844,0.7695313-0.2714844c0.918457,0,1.3842773,1.0791016,1.3842773,3.2089844
36
+ C26.75,53.046875,21.3051758,53.0966797,21.25,53.0966797z M24.9438477,46.1679688l-3.2753906,6.4091797
37
+ C22.8779297,52.4824219,26.25,51.9316406,26.25,48.7382813c0-1.7216797-0.3222656-2.7089844-0.8842773-2.7089844
38
+ C25.1855469,46.0292969,25.0185547,46.1201172,24.9438477,46.1679688z"/>
39
+ </g>
40
+ <g>
41
+ <path style="fill:#F9C7AF;" d="M7.25,45.9985352c0,0-1.75-1.3697052-1.75,2.7394066s5.25,4.1091118,5.25,4.1091118
42
+ L7.25,45.9985352z"/>
43
+ <path style="fill:#231815;" d="M11.1586914,53.0966797H10.75c-0.0551758,0-5.5-0.0498047-5.5-4.3583984
44
+ c0-2.1298828,0.4658203-3.2089844,1.3842773-3.2089844c0.4101563,0,0.734375,0.2441406,0.7695313,0.2714844l0.0688477,0.0839844
45
+ L11.1586914,53.0966797z M6.6342773,46.0292969c-0.5620117,0-0.8842773,0.9873047-0.8842773,2.7089844
46
+ c0,3.1982422,3.3725586,3.7460938,4.581543,3.8388672l-3.2753906-6.4091797
47
+ C6.9819336,46.1210938,6.8144531,46.0292969,6.6342773,46.0292969z"/>
48
+ </g>
49
+ <g>
50
+ <path style="fill:#F9C7AF;" d="M16,35.85746c-5.0031185,0-9.3939781,1.3880348-8.3385315,11.6502342
51
+ C8.5300827,55.9528351,14.1274948,57.7016563,16,57.7016563s7.4699173-1.7488213,8.3385315-10.1939621
52
+ C25.3940296,37.2454948,21.0031185,35.85746,16,35.85746z"/>
53
+ <path style="fill:#231815;" d="M16,57.9511719c-2.090332,0-7.7080078-1.8710938-8.5869141-10.4179688
54
+ c-0.4785156-4.6513672,0.1147461-7.828125,1.8139648-9.7109375C10.9985352,35.859375,13.7773438,35.6074219,16,35.6074219
55
+ s5.0014648,0.2519531,6.7729492,2.2148438c1.6992188,1.8828125,2.2924805,5.0595703,1.8139648,9.7109375
56
+ C23.7080078,56.0800781,18.090332,57.9511719,16,57.9511719z M16,36.1074219
57
+ c-2.2509766,0-4.7714844,0.2431641-6.4018555,2.0498047c-1.5991211,1.7724609-2.1508789,4.8222656-1.6879883,9.3251953
58
+ c0.8413086,8.1777344,6.125,9.96875,8.0898438,9.96875s7.2485352-1.7910156,8.0898438-9.96875
59
+ c0.4628906-4.5029297-0.0888672-7.5527344-1.6879883-9.3251953C20.7714844,36.3505859,18.2509766,36.1074219,16,36.1074219z"/>
60
+ </g>
61
+ </g>
62
+ <g>
63
+ <path style="fill:#231815;" d="M13.2358208,53.3966942c0,0,1.3820896,0.5656815,2.7641792,0.5656815
64
+ s2.7641792-0.5656815,2.7641792-0.5656815S18.520834,54.4997673,16,54.4997673S13.2358208,53.3966942,13.2358208,53.3966942z"/>
65
+ <g>
66
+ <g>
67
+ <path style="fill:#F5F5F5;" d="M17.8217258,47.6355438c0-0.32967,0.5181885-1.6939697,2.2311516-1.6939697
68
+ c1.7129612,0,2.4878292,1.3346405,2.4878292,1.3346405s-0.9360542,1.2744179-2.487978,1.2490997
69
+ C19.4077682,48.5147934,17.8217258,47.9652138,17.8217258,47.6355438z"/>
70
+ <ellipse style="fill:#231815;" cx="19.9640255" cy="47.1121788" rx="1.1944865" ry="1.3615568"/>
71
+ <ellipse style="fill:#3E3A39;" cx="19.9640255" cy="47.1121788" rx="0.9305195" ry="1.141019"/>
72
+ <ellipse style="fill:#231815;" cx="19.9640255" cy="47.1121788" rx="0.4513893" ry="0.5535012"/>
73
+ <path style="fill:#231815;" d="M20.0528774,45.7044296c-1.8471889,0.1684265-2.4272671,1.6621246-2.4878311,1.9311104
74
+ c0.1840076-0.1980743,1.1390972-1.4954262,2.3989792-1.4784775c1.589447,0.0213814,2.3002567,1.1760178,2.3002567,1.1760178
75
+ c-0.0219822,0.0342674-0.5189648,0.7407761-0.5189648,0.7407761s0.6877422-0.4030495,1.2657566-0.9450645
76
+ C23.0110741,47.1287918,21.9000645,45.5360031,20.0528774,45.7044296z"/>
77
+ <ellipse style="fill:#FFFFFF;" cx="19.2792015" cy="46.6207237" rx="0.3225295" ry="0.2886593"/>
78
+ </g>
79
+ <g>
80
+ <path style="fill:#F5F5F5;" d="M14.1782732,47.6355438c0-0.32967-0.5181866-1.6939697-2.2311497-1.6939697
81
+ s-2.4878311,1.3346405-2.4878311,1.3346405s0.9360542,1.2744179,2.4879799,1.2490997
82
+ C12.5922308,48.5147934,14.1782732,47.9652138,14.1782732,47.6355438z"/>
83
+ <ellipse style="fill:#231815;" cx="12.0359745" cy="47.1121788" rx="1.1944865" ry="1.3615568"/>
84
+ <ellipse style="fill:#3E3A39;" cx="12.0359745" cy="47.1121788" rx="0.9305195" ry="1.141019"/>
85
+ <ellipse style="fill:#231815;" cx="12.0359745" cy="47.1121788" rx="0.4513893" ry="0.5535012"/>
86
+ <path style="fill:#231815;" d="M11.9471235,45.7044296c1.8471889,0.1684265,2.4272661,1.6621246,2.4878311,1.9311104
87
+ c-0.1840076-0.1980743-1.1390991-1.4954262-2.3989801-1.4784775c-1.589447,0.0213814-2.3002558,1.1760178-2.3002558,1.1760178
88
+ c0.0219812,0.0342674,0.5189638,0.7407761,0.5189638,0.7407761s-0.6877422-0.4030495-1.2657566-0.9450645
89
+ C8.9889259,47.1287918,10.0999346,45.5360031,11.9471235,45.7044296z"/>
90
+ <ellipse style="fill:#FFFFFF;" cx="11.3511515" cy="46.6207237" rx="0.3225295" ry="0.2886593"/>
91
+ </g>
92
+ </g>
93
+ <g>
94
+ <path style="fill:#231815;" d="M14.9534931,44.7603073c0,0-2.5738401-2.3746033-5.8547792-0.2426949
95
+ c0,0,2.2344332-0.8078537,4.8931246,0.5140877C13.9918385,45.0317001,14.6565123,45.1152725,14.9534931,44.7603073z"/>
96
+ <path style="fill:#231815;" d="M17.0465069,44.7603073c0,0,2.5738392-2.3746033,5.8547783-0.2426949
97
+ c0,0-2.2344322-0.8078537-4.8931236,0.5140877C18.0081615,45.0317001,17.3434887,45.1152725,17.0465069,44.7603073z"/>
98
+ </g>
99
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15.5220461" y1="51.5990181" x2="15.5220461" y2="48.4343414">
100
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.05"/>
101
+ <stop offset="0.5" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
102
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0.05"/>
103
+ </linearGradient>
104
+ <path style="fill:url(#SVGID_2_);" d="M16.0000057,50.0166817c0,0.8739014-0.5712309,1.5823364-0.8270073,1.5823364
105
+ s-0.075633-0.9817696,0.0661602-1.8295784c0.1323214-0.7911682,0.240428-1.3350983,0.4962044-1.3350983
106
+ S16.0000057,49.1427803,16.0000057,50.0166817z"/>
107
+ </g>
108
+ <g>
109
+ <g>
110
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="15.970439" y1="32.9825096" x2="15.970439" y2="51.3264198">
111
+ <stop offset="0.1504425" style="stop-color:#714E2D"/>
112
+ <stop offset="0.9955752" style="stop-color:#312214"/>
113
+ </linearGradient>
114
+ <path style="fill:url(#SVGID_3_);" d="M22.5838566,34.8822479c-1.5881805-0.8247185-5.9077015-3.2587223-7.6338682-0.8912773
115
+ c-1.6175852-1.7141266-5.1308079,0.6007767-7.4466305,2.7653732c-3.0424204,2.84375-1.4926567,10.1245079-1.4926567,10.1245079
116
+ l2.4869976,4.4455681L8.4014721,48.98172L8.125,46.8923111L8.3984375,45.26371
117
+ c0.0652933-0.3944206-0.0182295-2.6922607,0.3098955-4.0776787c0.4242735,3.71875,1.75,4.3511124,1.75,4.3511124
118
+ S10.057292,42.1546631,10.75,39.9464493c0.182292,3.7552071,2.3234758,5.5906944,2.3234758,5.5906944
119
+ s-0.4746981-2.3256645-0.3911839-5.4813194c1.130208,3.71875,4.3294268,6.2680969,4.3294268,6.2680969
120
+ C17.75,44.2428741,17.75,41.0037384,17.75,41.0037384l1.4462223,4.8333473c0,0,0.776165-1.9675407,0.4921875-6.753067
121
+ c0.5772152,1.2270126,1.6086922,5.0223045,1.9494705,6.2279091c0,0,0.8881607-1.1798363,1.1261692-3.2520943
122
+ c0.2469273,1.8237381,1.2203255,4.4326363,1.2203255,4.4326363L23.65625,48.76371l-0.1535168,2.5627098l2.4865646-4.4455681
123
+ C25.9892979,46.8808517,27.9045124,37.6451836,22.5838566,34.8822479z"/>
124
+ <path style="fill:#2E1E15;" d="M23.1879883,52.4013672l0.21875-3.6523438l0.3212891-2.2294922
125
+ c-0.1152344-0.3134766-0.6245117-1.7314453-0.9624023-3.140625c-0.3564453,1.3105469-0.8989258,2.0439453-0.9282227,2.0830078
126
+ l-0.3032227,0.4023438l-0.2788086-0.9902344c-0.2919922-1.0449219-0.8041992-2.8769531-1.2578125-4.2519531
127
+ c0.0576172,3.6689453-0.5400391,5.2333984-0.5688477,5.3066406l-0.2646484,0.671875l-1.2246094-4.0917969
128
+ c-0.0800781,1.1347656-0.2646484,2.6943359-0.6918945,3.8994141l-0.1176758,0.3300781l-0.2739258-0.21875
129
+ c-0.1171875-0.0927734-2.5649414-2.0693359-3.9267578-5.0996094c0.0522461,2.3847656,0.3852539,4.0478516,0.3891602,4.0673828
130
+ l0.1455078,0.7138672l-0.5532227-0.4746094c-0.0776367-0.0664063-1.6499023-1.4453125-2.2192383-4.2314453
131
+ c-0.2265625,1.9189453,0.012207,3.9863281,0.0151367,4.0126953l0.0537109,0.4501953l-0.409668-0.1953125
132
+ c-0.0493164-0.0234375-1.0332031-0.5224609-1.6088867-2.9121094c-0.0380859,0.5771484-0.0498047,1.1523438-0.059082,1.6083984
133
+ c-0.0087891,0.4267578-0.0146484,0.7080078-0.0375977,0.8457031l-0.2670898,1.5927734l0.2714844,2.0507813l0.140625,3.4130859
134
+ l-3.0239258-5.4287109c-0.0644531-0.3027344-1.543457-7.4521484,1.5664063-10.359375
135
+ c0.8608398-0.8046875,3.847168-3.4277344,6.1435547-3.4277344c0.5708008,0,1.0566406,0.1611328,1.4482422,0.4804688
136
+ c0.5322266-0.5927734,1.28125-0.8935547,2.2304688-0.8935547c1.8681641,0,4.0957031,1.1679688,5.2919922,1.7958984
137
+ l0.2524414,0.1318359c5.4257813,2.8183594,3.6147461,11.8867188,3.534668,12.2714844l-0.0263672,0.0712891L23.1879883,52.4013672
138
+ z M6.2480469,46.7929688l1.9570313,3.4980469l-0.0537109-1.2988281l-0.2792969-2.1044922l0.2797852-1.6650391
139
+ c0.0170898-0.1025391,0.0234375-0.4130859,0.0307617-0.7734375c0.019043-0.9287109,0.0483398-2.3310547,0.2827148-3.3212891
140
+ l0.3295898-1.3916016l0.1621094,1.4208984c0.246582,2.1611328,0.8027344,3.2373047,1.1923828,3.7451172
141
+ c-0.0810547-1.109375-0.1591797-3.3701172,0.3618164-5.03125l0.4204102-1.3388672l0.0678711,1.4023438
142
+ c0.1166992,2.4003906,1.0673828,4.0029297,1.6914063,4.8066406c-0.1347656-0.9628906-0.3125-2.6650391-0.2587891-4.6923828
143
+ l0.0410156-1.5410156l0.4482422,1.4755859c0.9003906,2.9619141,3.1762695,5.1962891,3.96875,5.90625
144
+ C17.4926758,43.875,17.5,41.0341797,17.5,41.0039063V39.296875l1.6801758,5.6142578
145
+ c0.1977539-0.9794922,0.434082-2.8544922,0.2587891-5.8125l-0.0766602-1.2958984l0.5522461,1.1748047
146
+ c0.5146484,1.0927734,1.3798828,4.1796875,1.8076172,5.7089844c0.269043-0.5117188,0.6518555-1.421875,0.793457-2.6552734
147
+ l0.2285156-1.9863281l0.2675781,1.9814453c0.2402344,1.7753906,1.1972656,4.3525391,1.2070313,4.3779297l0.0219727,0.0605469
148
+ l-0.3369141,2.3349609l-0.0864258,1.4521484l1.934082-3.4580078c0.1210938-0.6328125,1.6416016-9.1318359-3.2827148-11.6904297
149
+ l-0.2539063-0.1328125c-1.1586914-0.6074219-3.3149414-1.7382813-5.0600586-1.7382813
150
+ c-0.9033203,0-1.5581055,0.296875-2.0024414,0.90625l-0.1772461,0.2431641l-0.206543-0.21875
151
+ c-0.3286133-0.3486328-0.7514648-0.5175781-1.2924805-0.5175781c-2.1132813,0-4.9750977,2.5205078-5.8017578,3.2929688
152
+ C4.8754883,39.5546875,6.1376953,46.2392578,6.2480469,46.7929688z"/>
153
+ </g>
154
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="15.6050825" y1="35.9931297" x2="15.6050825" y2="45.5371437">
155
+ <stop offset="0" style="stop-color:#8F6B3F"/>
156
+ <stop offset="0.9955752" style="stop-color:#714E2D"/>
157
+ </linearGradient>
158
+ <path style="fill:url(#SVGID_4_);" d="M15.1796875,35.9931297c0,0-2.1328125,5.5939445,1.4765625,9.544014
159
+ C16.65625,45.5371437,14.771554,41.7592049,15.1796875,35.9931297z"/>
160
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="21.297102" y1="36.4561195" x2="21.297102" y2="44.498085">
161
+ <stop offset="0" style="stop-color:#8F6B3F"/>
162
+ <stop offset="0.9955752" style="stop-color:#714E2D"/>
163
+ </linearGradient>
164
+ <path style="fill:url(#SVGID_5_);" d="M20.3086967,36.4561195c0,0,3.2928658,3.2294655,1.3788033,8.0419655
165
+ C21.6875,44.498085,21.9923935,40.2266541,20.3086967,36.4561195z"/>
166
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="6.9522572" y1="37.5219688" x2="6.9522572" y2="48.8183975">
167
+ <stop offset="0" style="stop-color:#8F6B3F"/>
168
+ <stop offset="0.9955752" style="stop-color:#714E2D"/>
169
+ </linearGradient>
170
+ <path style="fill:url(#SVGID_6_);" d="M7.7421875,37.5219688c0,0-3.5546875,4.9526787,0,11.2964287
171
+ C7.7421875,48.8183975,5.71875,41.7875938,7.7421875,37.5219688z"/>
172
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="24.5428448" y1="37.0844688" x2="24.5428448" y2="48.4826927">
173
+ <stop offset="0" style="stop-color:#8F6B3F"/>
174
+ <stop offset="0.9955752" style="stop-color:#714E2D"/>
175
+ </linearGradient>
176
+ <path style="fill:url(#SVGID_7_);" d="M23.875,37.0844688c0,0,2.5338535,4.5314865,0.6216545,11.3982239
177
+ C24.4966545,48.4826927,25.4609375,39.9282188,23.875,37.0844688z"/>
178
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="9.8418369" y1="36.4561195" x2="9.8418369" y2="43.3735313">
179
+ <stop offset="0" style="stop-color:#8F6B3F"/>
180
+ <stop offset="0.9955752" style="stop-color:#714E2D"/>
181
+ </linearGradient>
182
+ <path style="fill:url(#SVGID_8_);" d="M10.421875,36.4561195c0,0-1.9809504,2.0603142-0.765625,6.9174118
183
+ C9.65625,43.3735313,9.6015625,37.6324539,10.421875,36.4561195z"/>
184
+ </g>
185
+ </g>
186
+ <g>
187
+ </g>
188
+ <g>
189
+ </g>
190
+ <g>
191
+ </g>
192
+ <g>
193
+ </g>
194
+ <g>
195
+ </g>
196
+ <g>
197
+ </g>
198
+ </svg>
@@ -0,0 +1,246 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
5
+ y="0px" width="64px" height="64px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16" y1="33.0236282" x2="16" y2="64">
9
+ <stop offset="0" style="stop-color:#3E3A39"/>
10
+ <stop offset="1" style="stop-color:#231815"/>
11
+ </linearGradient>
12
+ <path style="fill:url(#SVGID_1_);" d="M22,33.0236282c0,0,10,0,10,12S32,64,32,64H0c0,0,0-6.9763718,0-18.9763718s10-12,10-12H22z
13
+ "/>
14
+ <path style="fill:#231815;" d="M32.25,64.25h-32.5V45.0234375c0-12.1098633,10.1474609-12.25,10.25-12.25h12
15
+ c0.1025391,0,10.25,0.1401367,10.25,12.25V64.25z M0.25,63.75h31.5V45.0234375c0-11.6015625-9.3520508-11.7490234-9.75-11.75H10
16
+ c-0.3979492,0.0009766-9.75,0.1484375-9.75,11.75V63.75z"/>
17
+ </g>
18
+ <g>
19
+ <g>
20
+ <path style="fill:#F9C7AF;" d="M20.9242554,25.0236301H16h-4.9241943c0,0-0.2424927,6.75-1.0758057,7.9999981
21
+ c0,0,2.125,1.916626,6,1.916626s6-1.916626,6-1.916626C21.166687,31.7736301,20.9242554,25.0236301,20.9242554,25.0236301z"/>
22
+ <path style="fill:#231815;" d="M16,35.1904297c-3.9257813,0-6.0776367-1.9003906-6.1674805-1.9814453l-0.1601563-0.1445313
23
+ l0.1196289-0.1796875c0.6513672-0.9770508,0.9672852-6.0126953,1.0336914-7.8701172l0.0087891-0.2412109h10.3310547
24
+ l0.0087891,0.2412109c0.0664063,1.8574219,0.3823242,6.8930664,1.0336914,7.8701172l0.1196289,0.1796875l-0.1601563,0.1445313
25
+ C22.0776367,33.2900391,19.9257813,35.1904297,16,35.1904297z M10.3198242,32.9599609
26
+ C10.8637695,33.3730469,12.8452148,34.6904297,16,34.6904297c3.1650391,0,5.1386719-1.3164063,5.6806641-1.7299805
27
+ c-0.699707-1.4912109-0.9443359-6.409668-0.9970703-7.6870117h-9.3671875
28
+ C11.2636719,26.5507813,11.019043,31.4682617,10.3198242,32.9599609z"/>
29
+ </g>
30
+ <g>
31
+ <path style="fill:#F9C7AF;" d="M26,15.9379845c0,0,2-1.6124029,2,3.2248058S22,24,22,24L26,15.9379845z"/>
32
+ <path style="fill:#231815;" d="M22,24.25h-0.4033203l4.246582-8.5068359
33
+ c0.0395508-0.0317383,0.4018555-0.3129883,0.8608398-0.3129883c1.0258789,0,1.5458984,1.2558594,1.5458984,3.7324219
34
+ C28.25,24.1918945,22.0625,24.25,22,24.25z M26.1962891,16.1044922l-3.7841797,7.6274414
35
+ C23.7382813,23.6357422,27.75,23.0249023,27.75,19.1625977c0-2.0541992-0.3813477-3.2324219-1.0458984-3.2324219
36
+ C26.4829102,15.9301758,26.2797852,16.0488281,26.1962891,16.1044922z"/>
37
+ </g>
38
+ <g>
39
+ <path style="fill:#F9C7AF;" d="M6,15.9379845c0,0-2-1.6124029-2,3.2248058S10,24,10,24L6,15.9379845z"/>
40
+ <path style="fill:#231815;" d="M10.4033203,24.25H10c-0.0625,0-6.25-0.0581055-6.25-5.0874023
41
+ c0-2.4765625,0.5200195-3.7324219,1.5458984-3.7324219c0.4589844,0,0.8212891,0.28125,0.8608398,0.3129883l0.0673828,0.0834961
42
+ L10.4033203,24.25z M5.2958984,15.9301758c-0.6645508,0-1.0458984,1.1782227-1.0458984,3.2324219
43
+ c0,3.8623047,4.0117188,4.4731445,5.3378906,4.5693359l-3.7841797-7.6274414
44
+ C5.7197266,16.0483398,5.5166016,15.9301758,5.2958984,15.9301758z"/>
45
+ </g>
46
+ <g>
47
+ <path style="fill:#F9C7AF;" d="M16,4c-5.6623144,0-10.6317587,1.7474365-9.437191,14.666626
48
+ c0.3604612,3.8980103,1.708014,6.9669189,3.2050395,8.5532227C11.2991447,28.8424683,14.100523,31.5,16,31.5
49
+ s4.7009125-2.6575317,6.2321529-4.2801514c1.4970818-1.5863037,2.844635-4.6552124,3.2050381-8.5532227
50
+ C26.6317596,5.7474365,21.6623154,4,16,4z"/>
51
+ <path style="fill:#231815;" d="M16,31.75c-1.9013672,0-4.5371094-2.3701172-6.4135742-4.3588867
52
+ c-1.7133789-1.8144531-2.9365234-5.0673828-3.2724609-8.7016602C5.7519531,12.6132813,6.5024414,8.5371094,8.6074219,6.2285156
53
+ C10.6103516,4.0317383,13.6103516,3.75,16,3.75s5.3896484,0.2817383,7.3925781,2.4785156
54
+ c2.1049805,2.3085938,2.8554688,6.3847656,2.293457,12.4609375c-0.3359375,3.6342773-1.559082,6.887207-3.2724609,8.7016602
55
+ C20.5371094,29.3798828,17.9013672,31.75,16,31.75z M16,4.25c-2.4287109,0-5.1625977,0.2749023-7.0229492,2.3154297
56
+ c-2.0053711,2.1992188-2.7133789,6.1499023-2.1650391,12.078125c0.3212891,3.4736328,1.5234375,6.6943359,3.1376953,8.4047852
57
+ C12.4697266,29.7182617,14.675293,31.25,16,31.25s3.5302734-1.5317383,6.050293-4.2016602
58
+ c1.6142578-1.7104492,2.8164063-4.9311523,3.1376953-8.4047852c0.5483398-5.9282227-0.159668-9.8789063-2.1650391-12.078125
59
+ C21.1625977,4.5249023,18.4287109,4.25,16,4.25z"/>
60
+ </g>
61
+ </g>
62
+ <g>
63
+ <path style="fill:#231815;" d="M12,25.4375c0,0,2,0.625,4,0.625s4-0.625,4-0.625s0.15625,1.21875-4,1.21875S12,25.4375,12,25.4375
64
+ z"/>
65
+ <g>
66
+ <g>
67
+ <path style="fill:#F5F5F5;" d="M18.012764,17.6929607c0-0.3434982,0.5725288-1.7650261,2.4651241-1.7650261
68
+ s2.7487202,1.390625,2.7487202,1.390625s-1.034214,1.3278732-2.7488842,1.3014927
69
+ C19.7651291,18.6090889,18.012764,18.036459,18.012764,17.6929607z"/>
70
+ <ellipse style="fill:#231815;" cx="20.3797188" cy="17.147644" rx="1.3197482" ry="1.4186682"/>
71
+ <ellipse style="fill:#3E3A39;" cx="20.3797188" cy="17.147644" rx="1.0280999" ry="1.1888798"/>
72
+ <ellipse style="fill:#231815;" cx="20.3797188" cy="17.147644" rx="0.4987249" ry="0.5767183"/>
73
+ <path style="fill:#231815;" d="M20.4778881,15.6808434c-2.0408974,0.1754913-2.6818066,1.731842-2.7487221,2.0121155
74
+ c0.2033043-0.2063866,1.2585526-1.558157,2.6505527-1.5404987c1.7561283,0.0222797,2.5414753,1.2253494,2.5414753,1.2253494
75
+ c-0.0242863,0.0357037-0.5733852,0.7718468-0.5733852,0.7718468s0.7598629-0.4199562,1.3984928-0.984705
76
+ C23.7463017,17.1649513,22.5187855,15.505352,20.4778881,15.6808434z"/>
77
+ <ellipse style="fill:#FFFFFF;" cx="19.6230812" cy="16.6355705" rx="0.356352" ry="0.3007674"/>
78
+ </g>
79
+ <g>
80
+ <path style="fill:#F5F5F5;" d="M13.9872351,17.6929607c0-0.3434982-0.5725269-1.7650261-2.4651222-1.7650261
81
+ s-2.7487211,1.390625-2.7487211,1.390625s1.034215,1.3278732,2.7488842,1.3014927
82
+ C12.23487,18.6090889,13.9872351,18.036459,13.9872351,17.6929607z"/>
83
+ <ellipse style="fill:#231815;" cx="11.6202812" cy="17.147644" rx="1.3197482" ry="1.4186682"/>
84
+ <ellipse style="fill:#3E3A39;" cx="11.6202812" cy="17.147644" rx="1.0280999" ry="1.1888798"/>
85
+ <ellipse style="fill:#231815;" cx="11.6202812" cy="17.147644" rx="0.4987249" ry="0.5767183"/>
86
+ <path style="fill:#231815;" d="M11.5221128,15.6808434c2.0408964,0.1754913,2.6818047,1.731842,2.7487202,2.0121155
87
+ c-0.2033033-0.2063866-1.2585516-1.558157-2.6505518-1.5404987c-1.7561274,0.0222797-2.5414762,1.2253494-2.5414762,1.2253494
88
+ c0.0242863,0.0357037,0.5733862,0.7718468,0.5733862,0.7718468s-0.7598639-0.4199562-1.3984928-0.984705
89
+ C8.2536983,17.1649513,9.4812155,15.505352,11.5221128,15.6808434z"/>
90
+ <ellipse style="fill:#FFFFFF;" cx="10.8636427" cy="16.6355705" rx="0.356352" ry="0.3007674"/>
91
+ </g>
92
+ </g>
93
+ <g>
94
+ <path style="fill:#231815;" d="M14.84375,14.6482391c0,0-2.84375-2.6236181-6.46875-0.2681446
95
+ c0,0,2.46875-0.8925714,5.40625,0.5679998C13.78125,14.9480944,14.515625,15.0404291,14.84375,14.6482391z"/>
96
+ <path style="fill:#231815;" d="M17.15625,14.6482391c0,0,2.84375-2.6236181,6.46875-0.2681446
97
+ c0,0-2.46875-0.8925714-5.40625,0.5679998C18.21875,14.9480944,17.484375,15.0404291,17.15625,14.6482391z"/>
98
+ </g>
99
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15.4719238" y1="22.833334" x2="15.4719238" y2="18">
100
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.05"/>
101
+ <stop offset="0.5" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
102
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0.05"/>
103
+ </linearGradient>
104
+ <path style="fill:url(#SVGID_2_);" d="M16.0000057,20.416666c0,1.3346882-0.6311331,2.4166679-0.9137316,2.4166679
105
+ c-0.2825994,0-0.0835657-1.4994335,0.0730982-2.7942715C15.3055696,18.8307285,15.4250135,18,15.707612,18
106
+ S16.0000057,19.0819778,16.0000057,20.416666z"/>
107
+ </g>
108
+ <g>
109
+ <g>
110
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="16.0000057" y1="0.7147986" x2="16.0000057" y2="21.678812">
111
+ <stop offset="0.1504425" style="stop-color:#6E4E30"/>
112
+ <stop offset="0.9955752" style="stop-color:#2E2114"/>
113
+ </linearGradient>
114
+ <path style="fill:url(#SVGID_3_);" d="M26.785675,7.9787483c-2.2882843-2.2723374-1.4450321-4.1529408-3.2612686-5.0932751
115
+ c-1.8162365-0.9402685-6.7516575-3.7242539-8.7244196-1.0186023c-1.8486691-1.9590029-4.8973513,1.0186023-6.7135878,1.9589368
116
+ C6.2701635,4.7660761,7.5026093,5.7064109,5.2143874,7.9787483c-2.288285,2.2724037-0.6307287,8.6194153-0.6307287,8.6194153
117
+ L6.5625,21.678812l0.753468-2.6796532l-0.5794353-2.3878975L7.3125,14.75
118
+ c0.0746207-0.4507656-0.1477113-1.7557154-0.0458517-2.1643057c0.3190069,0.4021788,0.7716722,2.0423851,1.4359741,2.2194128
119
+ c0,0,0.1131954-2.2098284-0.1627998-3.7943497c1.1815796,1.1018934,2.2709312,1.3944054,2.2709312,1.3944054
120
+ c-0.2347574-0.6492767-0.3348436-1.285532-0.3465624-1.8978567c2.2858086,3.850071,7.1072788,5.5894613,7.1072788,5.5894613
121
+ C18,15.125,18.3072643,11.2773561,18.25,10.7753601c0.8162041,0.9062243,1.2396412,1.6442137,1.2396412,1.6442137
122
+ c0.6105232-0.6333466,0.9009838-1.2227688,0.8732662-1.7389412c0.8435688,0.7219915,1.5714054,3.3710165,2.0803852,4.1244745
123
+ c0,0,1.0150414-1.3483839,1.2870502-3.7166767c0.2822018,2.0842705,0.1832581,3.776145,0.1832581,3.776145
124
+ c0.4630527-0.2404213,0.8520565-0.4883127,1.1945648-0.7403688L25.125,16.1542969L24.75,18.75l0.65625,2.928812
125
+ l2.0100918-5.0806484C27.4163418,16.5981636,29.0738964,10.251152,26.785675,7.9787483z"/>
126
+ <path style="fill:#2B1D15;" d="M25.3398438,22.5258789l-0.84375-3.7661133l0.3813477-2.6411133l-0.0146484-1.5195313
127
+ c-0.2636719,0.1733398-0.5390625,0.3339844-0.8339844,0.4873047l-0.390625,0.203125l0.0258789-0.4394531
128
+ c0.0004883-0.0117188,0.0473633-0.8535156-0.0224609-2.0639648c-0.4033203,1.3662109-0.9667969,2.1269531-0.9985352,2.1694336
129
+ l-0.2104492,0.2797852l-0.1962891-0.2900391c-0.2080078-0.3076172-0.4326172-0.8662109-0.6928711-1.5126953
130
+ c-0.2958984-0.7368164-0.6479492-1.6118164-1.0117188-2.1635742c-0.1318359,0.421875-0.4199219,0.8652344-0.8618164,1.3237305
131
+ l-0.230957,0.2397461l-0.1660156-0.2885742c-0.003418-0.0058594-0.2714844-0.4682617-0.78125-1.1000977
132
+ c-0.0629883,1.3081055-0.328125,3.9291992-0.6918945,4.7539063l-0.09375,0.2133789l-0.2197266-0.0791016
133
+ c-0.1850586-0.0668945-4.2353516-1.5581055-6.6694336-4.8447266c0.0546875,0.284668,0.1313477,0.5625,0.2290039,0.8330078
134
+ l0.1625977,0.4506836l-0.4628906-0.1245117c-0.0400391-0.0107422-0.8676758-0.2397461-1.8676758-1.019043
135
+ c0.1591797,1.4731445,0.0786133,3.1113281,0.0742188,3.1904297l-0.015625,0.3085938L8.6381836,15.046875
136
+ c-0.4838867-0.1293945-0.8188477-0.7426758-1.1054688-1.362793c0,0.0043945,0.0004883,0.0087891,0.0009766,0.0131836
137
+ c0.0336914,0.4365234,0.065918,0.8496094,0.0253906,1.09375l-0.5634766,1.828125l0.5786133,2.3842773l-0.9731445,3.4624023
138
+ l-2.2504883-5.7768555c-0.078125-0.2924805-1.675293-6.5410156,0.6875-8.8876953
139
+ C6.1469727,6.7001953,6.3945313,5.9306641,6.59375,5.3129883C6.7998047,4.671875,6.9780273,4.1181641,7.9716797,3.6035156
140
+ c0.3994141-0.206543,0.8725586-0.5234375,1.3735352-0.8588867c1.2480469-0.8349609,2.6630859-1.7817383,3.9589844-1.7817383
141
+ c0.5595703,0,1.0527344,0.1796875,1.4707031,0.5351563c0.6025391-0.6860352,1.4560547-1.0332031,2.5429688-1.0332031
142
+ c2.1201172,0,4.6577148,1.328125,6.0209961,2.0415039l0.300293,0.1567383
143
+ c0.9956055,0.515625,1.2631836,1.2880859,1.5737305,2.1831055c0.3017578,0.8710938,0.644043,1.8579102,1.7490234,2.9550781
144
+ c2.362793,2.3466797,0.765625,8.5952148,0.6962891,8.8598633L25.3398438,22.5258789z M13.3041992,1.4628906
145
+ c-1.144043,0-2.4916992,0.9018555-3.6806641,1.6977539C9.1103516,3.5039063,8.6259766,3.828125,8.2011719,4.0478516
146
+ C7.3911133,4.4672852,7.2700195,4.8432617,7.0693359,5.4658203c-0.215332,0.6699219-0.4833984,1.503418-1.6787109,2.6899414
147
+ c-2.159668,2.1450195-0.581543,8.3173828-0.5654297,8.3793945l1.6987305,4.3564453l0.5336914-1.8974609l-0.5805664-2.390625
148
+ l0.5966797-1.9272461c0.0224609-0.1513672-0.0097656-0.5708008-0.0385742-0.9404297
149
+ c-0.0385742-0.4921875-0.074707-0.9570313-0.0112305-1.2104492l0.1230469-0.4921875l0.3154297,0.3974609
150
+ c0.1235352,0.1557617,0.2416992,0.4179688,0.390625,0.75c0.1625977,0.3618164,0.3833008,0.8530273,0.6152344,1.1445313
151
+ c0.0166016-0.7285156,0.0180664-2.1660156-0.1743164-3.2714844l-0.1279297-0.7338867l0.5444336,0.5083008
152
+ c0.6630859,0.6181641,1.2988281,0.972168,1.7080078,1.1586914c-0.1259766-0.4760742-0.1943359-0.9702148-0.2041016-1.4746094
153
+ L10.1962891,9.565918l0.4829102,0.8139648c1.9291992,3.2495117,5.7651367,4.987793,6.7451172,5.3901367
154
+ c0.3720703-1.2114258,0.6245117-4.5537109,0.5771484-4.9663086l-0.0878906-0.7753906l0.5219727,0.5795898
155
+ c0.5258789,0.5834961,0.890625,1.0961914,1.090332,1.3989258c0.4057617-0.4804688,0.6079102-0.9306641,0.5874023-1.3125
156
+ l-0.0317383-0.5834961l0.4438477,0.3798828c0.5703125,0.4882813,1.0546875,1.6928711,1.4819336,2.7553711
157
+ c0.159668,0.3969727,0.3134766,0.7792969,0.4511719,1.0678711c0.3032227-0.5292969,0.8398438-1.6557617,1.0234375-3.2539063
158
+ l0.2280273-1.9853516l0.2680664,1.9799805c0.199707,1.4731445,0.2114258,2.7392578,0.2001953,3.3798828
159
+ c0.2744141-0.1591797,0.5327148-0.3286133,0.7817383-0.5117188l0.3945313-0.2905273L25.375,16.1523438l-0.3710938,2.5878906
160
+ l0.46875,2.0913086l1.7114258-4.3251953c0.0068359-0.0332031,1.5849609-6.2055664-0.574707-8.3505859
161
+ c-1.1870117-1.1787109-1.5649414-2.269043-1.8691406-3.1455078c-0.2973633-0.8588867-0.5126953-1.4794922-1.3305664-1.902832
162
+ L23.1069336,2.949707c-1.3251953-0.6938477-3.7919922-1.9848633-5.7890625-1.9848633
163
+ c-1.043457,0-1.8012695,0.3432617-2.315918,1.0493164L14.824707,2.2573242l-0.206543-0.2192383
164
+ C14.2524414,1.6508789,13.8227539,1.4628906,13.3041992,1.4628906z"/>
165
+ </g>
166
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="14.5063419" y1="3.75" x2="14.5063419" y2="15.0625">
167
+ <stop offset="0" style="stop-color:#8C6B42"/>
168
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
169
+ </linearGradient>
170
+ <path style="fill:url(#SVGID_4_);" d="M14,3.75c0,0-2.8125,5.875,3.15625,11.3125C17.15625,15.0625,7.75,9.4375,14,3.75z"/>
171
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="22.0538311" y1="4.6841831" x2="22.0538311" y2="13.875">
172
+ <stop offset="0" style="stop-color:#8C6B42"/>
173
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
174
+ </linearGradient>
175
+ <path style="fill:url(#SVGID_5_);" d="M20.9242249,4.6841831c0,0,3.7632751,3.6908169,1.5757751,9.1908169
176
+ C22.5,13.875,22.8484497,8.9933662,20.9242249,4.6841831z"/>
177
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="5.6597223" y1="7.6875" x2="5.6597223" y2="18.8125">
178
+ <stop offset="0" style="stop-color:#8C6B42"/>
179
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
180
+ </linearGradient>
181
+ <path style="fill:url(#SVGID_6_);" d="M6.5625,7.6875c0,0-4.0625,3.875,0,11.125C6.5625,18.8125,4.25,12.5625,6.5625,7.6875z"/>
182
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="26.5949516" y1="8" x2="26.5949516" y2="18.3125">
183
+ <stop offset="0" style="stop-color:#8C6B42"/>
184
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
185
+ </linearGradient>
186
+ <path style="fill:url(#SVGID_7_);" d="M25.8125,8c0,0,3.2542591,2.8125,0.3771305,10.3125
187
+ C26.1896305,18.3125,27.625,11.25,25.8125,8z"/>
188
+ </g>
189
+ <g>
190
+ <g>
191
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="18.5078125" y1="23.7229671" x2="18.5078125" y2="25.0236301">
192
+ <stop offset="0.1504425" style="stop-color:#6E4E30"/>
193
+ <stop offset="0.9955752" style="stop-color:#2E2114"/>
194
+ </linearGradient>
195
+ <path style="fill:url(#SVGID_8_);" d="M16.625,23.75c0,0,2.96875-0.3125,3.765625,1.1875
196
+ C20.390625,24.9375,17.1875,25.5,16.625,23.75z"/>
197
+ <path style="fill:#2B1D15;" d="M19.2695313,25.2734375c-1.581543,0-2.578125-0.5-2.8823242-1.4467773l-0.0942383-0.2929688
198
+ l0.3056641-0.0322266c0.0009766,0.0009766,3.1381836-0.3286133,4.0126953,1.3188477l0.1616211,0.3037109l-0.3388672,0.0595703
199
+ C20.4130859,25.1875,19.9145508,25.2734375,19.2695313,25.2734375z M17.0087891,23.9770508
200
+ c0.5664063,0.8520508,2.1567383,0.8359375,2.9321289,0.7646484
201
+ C19.2226563,23.9995117,17.7045898,23.953125,17.0087891,23.9770508z"/>
202
+ </g>
203
+ <g>
204
+ <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="13.4921875" y1="23.7229671" x2="13.4921875" y2="25.0236301">
205
+ <stop offset="0.1504425" style="stop-color:#6E4E30"/>
206
+ <stop offset="0.9955752" style="stop-color:#2E2114"/>
207
+ </linearGradient>
208
+ <path style="fill:url(#SVGID_9_);" d="M15.375,23.75c0,0-2.96875-0.3125-3.765625,1.1875
209
+ C11.609375,24.9375,14.8125,25.5,15.375,23.75z"/>
210
+ <path style="fill:#2B1D15;" d="M12.7304688,25.2734375C12.7304688,25.2734375,12.730957,25.2734375,12.7304688,25.2734375
211
+ c-0.6450195,0-1.1435547-0.0859375-1.1645508-0.0898438l-0.3388672-0.0595703l0.1616211-0.3037109
212
+ c0.8759766-1.6474609,4.0131836-1.3178711,4.0126953-1.3188477l0.3056641,0.0322266l-0.0942383,0.2929688
213
+ C15.3085938,24.7729492,14.3120117,25.2734375,12.7304688,25.2734375z M12.059082,24.7416992
214
+ c0.7739258,0.0717773,2.3657227,0.0874023,2.9321289-0.7646484
215
+ C14.2939453,23.9526367,12.7773438,23.9995117,12.059082,24.7416992z"/>
216
+ </g>
217
+ <g>
218
+ <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="16" y1="28.4555569" x2="16" y2="31.5">
219
+ <stop offset="0.1504425" style="stop-color:#6E4E30"/>
220
+ <stop offset="0.9955752" style="stop-color:#2E2114"/>
221
+ </linearGradient>
222
+ <path style="fill:url(#SVGID_10_);" d="M17.5750008,30.479166l-0.2953129-1.1694412l-0.3691406,0.2708321L16,28.4555569
223
+ l-0.9105473,1.125l-0.3691406-0.25l-0.2953119,1.1486092L13.4316406,30.3125c0,0,0.5242157,1.1875,2.5683594,1.1875
224
+ s2.5683594-1.1875,2.5683594-1.1875L17.5750008,30.479166z"/>
225
+ <path style="fill:#2B1D15;" d="M16,31.75c-2.1816406,0-2.7729492-1.2817383-2.796875-1.3364258l-0.1875-0.4243164
226
+ l1.2241211,0.2050781l0.3266602-1.2700195l0.4731445,0.3203125L16,28.0581055l0.9550781,1.1796875l0.4760742-0.3496094
227
+ l0.3300781,1.3061523l1.2231445-0.2050781l-0.1875,0.4243164C18.7729492,30.4682617,18.1816406,31.75,16,31.75z
228
+ M14.0488281,30.6694336C14.3881836,30.9477539,14.9887695,31.25,16,31.25c1.0107422,0,1.6113281-0.3017578,1.9511719-0.5805664
229
+ l-0.5620117,0.0942383L17.128418,29.730957l-0.262207,0.1923828L16,28.8530273l-0.8608398,1.0634766l-0.2651367-0.1796875
230
+ l-0.2641602,1.0268555L14.0488281,30.6694336z"/>
231
+ </g>
232
+ </g>
233
+ </g>
234
+ <g>
235
+ </g>
236
+ <g>
237
+ </g>
238
+ <g>
239
+ </g>
240
+ <g>
241
+ </g>
242
+ <g>
243
+ </g>
244
+ <g>
245
+ </g>
246
+ </svg>
@@ -0,0 +1,239 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
5
+ y="0px" width="64px" height="64px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="48" y1="15.5625" x2="48" y2="36.333313">
9
+ <stop offset="0.1504425" style="stop-color:#6E4E30"/>
10
+ <stop offset="0.9955752" style="stop-color:#2E2114"/>
11
+ </linearGradient>
12
+ <path style="fill:url(#SVGID_1_);" d="M60,26.25c-0.5949707-5.833374-2-10.6875-2-10.6875H48h-9.6066284
13
+ c0,0-1.7984009,4.854126-2.3933716,10.6875c-0.5949097,5.833313,2,9.083313,2,9.083313C37.75,33.375,38,32,38,32
14
+ c0.75,4.114563,10,4.333313,10,4.333313S57.25,36.114563,58,32c0,0,0.25,1.3333321,0,3.333313
15
+ C58,35.333313,60.5949097,32.083313,60,26.25z"/>
16
+ <path style="fill:#2B1D15;" d="M48,36.5830078h-0.0058594c-0.3515625-0.0087891-7.9082031-0.2275391-9.8447266-3.4873047
17
+ c-0.0224609,0.5654297-0.0136719,1.3271484,0.0986328,2.2060547l0.1132813,0.8837891l-0.5566406-0.6962891
18
+ c-0.1083984-0.1357422-2.6513672-3.3969727-2.0537109-9.2646484c0.5917969-5.7978516,2.3896484-10.7001953,2.4082031-10.7490234
19
+ L38.2197266,15.3125H58.1875l0.0527344,0.1806641c0.0136719,0.0483398,1.4179688,4.9423828,2.0087891,10.7314453
20
+ c0.5976563,5.8676758-1.9453125,9.1289063-2.0537109,9.2646484l-0.5537109,0.6923828l0.1103516-0.8798828
21
+ c0.1113281-0.8886719,0.1210938-1.6464844,0.0986328-2.2070313c-1.9345703,3.2607422-9.4931641,3.4794922-9.8447266,3.4882813H48z
22
+ M38,30.6040039l0.2460938,1.3510742C38.9433594,35.78125,47.7246094,36.0751953,48,36.0830078
23
+ c0.2753906-0.0078125,9.0566406-0.3017578,9.7539063-4.1279297L57.9960938,30.625l0.25,1.3291016
24
+ c0.0078125,0.0454102,0.1708984,0.9414063,0.0957031,2.3603516c0.7070313-1.3105469,1.8134766-4.0766602,1.4091797-8.0390625
25
+ c-0.5214844-5.1191406-1.6845703-9.53125-1.9404297-10.4628906H38.5693359
26
+ c-0.3125,0.8920898-1.796875,5.3208008-2.3203125,10.4628906c-0.4042969,3.9609375,0.7011719,6.7265625,1.4082031,8.0371094
27
+ c-0.0732422-1.3959961,0.0878906-2.3105469,0.0966797-2.3574219L38,30.6040039z"/>
28
+ </g>
29
+ <g>
30
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="48" y1="33.0236282" x2="48" y2="64">
31
+ <stop offset="0" style="stop-color:#E53828"/>
32
+ <stop offset="1" style="stop-color:#C10D23"/>
33
+ </linearGradient>
34
+ <path style="fill:url(#SVGID_2_);" d="M54,33.0236282c0,0,10,0,10,12S64,64,64,64H32c0,0,0-6.9763718,0-18.9763718s10-12,10-12H54
35
+ z"/>
36
+ <path style="fill:#231815;" d="M64.25,64.25h-32.5V45.0234375c0-12.1098633,10.1474609-12.25,10.25-12.25h12
37
+ c0.1025391,0,10.25,0.1401367,10.25,12.25V64.25z M32.25,63.75h31.5V45.0234375c0-11.6015625-9.3525391-11.7490234-9.75-11.75H42
38
+ c-0.3974609,0.0009766-9.75,0.1484375-9.75,11.75V63.75z"/>
39
+ </g>
40
+ <g>
41
+ <g>
42
+ <path style="fill:#FFB743;" d="M52.9242554,25.0236301H48h-4.9241943c0,0-0.2424927,6.75-1.0758057,7.9999981
43
+ c0,0,2.125,1.916626,6,1.916626s6-1.916626,6-1.916626C53.166687,31.7736301,52.9242554,25.0236301,52.9242554,25.0236301z"/>
44
+ <path style="fill:#231815;" d="M48,35.1904297c-3.9257813,0-6.078125-1.9003906-6.1669922-1.9814453l-0.1611328-0.1445313
45
+ l0.1201172-0.1796875c0.6513672-0.9770508,0.9677734-6.0126953,1.0341797-7.8701172l0.0087891-0.2412109h10.3300781
46
+ l0.0087891,0.2412109c0.0664063,1.8574219,0.3828125,6.8930664,1.0341797,7.8701172l0.1201172,0.1796875l-0.1611328,0.1445313
47
+ C54.078125,33.2900391,51.9257813,35.1904297,48,35.1904297z M42.3193359,32.9599609
48
+ C42.8632813,33.3730469,44.8447266,34.6904297,48,34.6904297c3.1650391,0,5.1386719-1.3164063,5.6806641-1.7299805
49
+ c-0.6992188-1.4912109-0.9443359-6.409668-0.9970703-7.6870117h-9.3671875
50
+ C43.2636719,26.5507813,43.0185547,31.4682617,42.3193359,32.9599609z"/>
51
+ </g>
52
+ <g>
53
+ <path style="fill:#FFB743;" d="M58,15.9379845c0,0,2-1.6124029,2,3.2248058S54,24,54,24L58,15.9379845z"/>
54
+ <path style="fill:#231815;" d="M54,24.25h-0.4033203l4.2460938-8.5068359
55
+ c0.0400391-0.0317383,0.4023438-0.3129883,0.8613281-0.3129883c1.0253906,0,1.5458984,1.2558594,1.5458984,3.7324219
56
+ C60.25,24.1918945,54.0625,24.25,54,24.25z M58.1962891,16.1044922l-3.7841797,7.6274414
57
+ C55.7382813,23.6357422,59.75,23.0249023,59.75,19.1625977c0-2.0541992-0.3808594-3.2324219-1.0458984-3.2324219
58
+ C58.4824219,15.9301758,58.2792969,16.0488281,58.1962891,16.1044922z"/>
59
+ </g>
60
+ <g>
61
+ <path style="fill:#FFB743;" d="M38,15.9379845c0,0-2-1.6124029-2,3.2248058S42,24,42,24L38,15.9379845z"/>
62
+ <path style="fill:#231815;" d="M42.4033203,24.25H42c-0.0625,0-6.25-0.0581055-6.25-5.0874023
63
+ c0-2.4765625,0.5205078-3.7324219,1.5458984-3.7324219c0.4589844,0,0.8212891,0.28125,0.8613281,0.3129883l0.0664063,0.0834961
64
+ L42.4033203,24.25z M37.2958984,15.9301758c-0.6650391,0-1.0458984,1.1782227-1.0458984,3.2324219
65
+ c0,3.8623047,4.0117188,4.4731445,5.3378906,4.5693359l-3.7841797-7.6274414
66
+ C37.7197266,16.0483398,37.5166016,15.9301758,37.2958984,15.9301758z"/>
67
+ </g>
68
+ <g>
69
+ <path style="fill:#FFB743;" d="M48,4c-5.6623154,0-10.6317596,1.7474365-9.437191,14.666626
70
+ c0.3604622,3.8980103,1.7080154,6.4033203,3.20504,7.989624C43.2991447,28.2788696,46.1005249,30.3125,48,30.3125
71
+ s4.7009125-2.0336304,6.232151-3.65625c1.4970856-1.5863037,2.844635-4.0916138,3.20504-7.989624
72
+ C58.6317596,5.7474365,53.6623154,4,48,4z"/>
73
+ <path style="fill:#231815;" d="M48,30.5625c-2.1054688,0-5.0517578-2.2905273-6.4140625-3.7348633
74
+ c-1.8535156-1.9638672-2.9550781-4.7021484-3.2724609-8.1381836c-0.5615234-6.0761719,0.1884766-10.1523438,2.2939453-12.4609375
75
+ C42.6103516,4.0317383,45.6103516,3.75,48,3.75s5.3896484,0.2817383,7.3925781,2.4785156
76
+ c2.1054688,2.3085938,2.8554688,6.3847656,2.2939453,12.4609375c-0.3173828,3.4360352-1.4189453,6.1743164-3.2724609,8.1381836
77
+ C53.0517578,28.2719727,50.1054688,30.5625,48,30.5625z M48,4.25c-2.4287109,0-5.1630859,0.2749023-7.0234375,2.3154297
78
+ c-2.0048828,2.1992188-2.7128906,6.1499023-2.1650391,12.078125c0.3066406,3.3217773,1.3623047,5.9599609,3.1376953,7.8413086
79
+ C43.609375,28.2431641,46.3261719,30.0625,48,30.0625s4.390625-1.8193359,6.0507813-3.5776367
80
+ c1.7753906-1.8813477,2.8310547-4.5195313,3.1376953-7.8413086c0.5478516-5.9282227-0.1601563-9.8789063-2.1650391-12.078125
81
+ C53.1630859,4.5249023,50.4287109,4.25,48,4.25z"/>
82
+ </g>
83
+ </g>
84
+ <g>
85
+ <path style="fill:#C10D23;" d="M44.5727501,24.7319622c0,0,1.713623,0.625,3.4272499,0.625s3.4272499-0.625,3.4272499-0.625
86
+ s0.1338768,1.21875-3.4272499,1.21875S44.5727501,24.7319622,44.5727501,24.7319622z"/>
87
+ <g>
88
+ <g>
89
+ <path style="fill:#F5F5F5;" d="M50.012764,17.6929607c0-0.3434982,0.5725288-1.7650261,2.4651222-1.7650261
90
+ c1.8925972,0,2.7487221,1.390625,2.7487221,1.390625s-1.034214,1.3278732-2.7488861,1.3014927
91
+ C51.7651291,18.6090889,50.012764,18.036459,50.012764,17.6929607z"/>
92
+ <ellipse style="fill:#231815;" cx="52.3797188" cy="17.147644" rx="1.3197482" ry="1.4186682"/>
93
+ <ellipse style="fill:#3E3A39;" cx="52.3797188" cy="17.147644" rx="1.0280999" ry="1.1888798"/>
94
+ <ellipse style="fill:#231815;" cx="52.3797188" cy="17.147644" rx="0.4987249" ry="0.5767183"/>
95
+ <path style="fill:#231815;" d="M55.916687,17.164917c0,0-0.826355-0.9133911-2.1317139-1.3063965
96
+ c0.9214478,0.0986328,1.5887451,0.3262939,1.5887451,0.3262939c-3.8999023-2.208374-5.5612183,0.7227173-5.5612183,0.7227173
97
+ c0.2763672-0.2606201,0.5808716-0.460022,0.8989868-0.6167603c-0.6791992,0.5268555-0.9408569,1.2283936-0.9822998,1.4021606
98
+ c0.2033081-0.2063599,1.2585449-1.5581665,2.6505127-1.5404663c1.7561646,0.0222778,2.5415039,1.2253418,2.5415039,1.2253418
99
+ c-0.024292,0.0357056-0.5733643,0.7718506-0.5733643,0.7718506l1.1689453-0.5038452l-0.2330933-0.0792236
100
+ C55.4769897,17.4448242,55.6902466,17.3096924,55.916687,17.164917z"/>
101
+ <ellipse style="fill:#FFFFFF;" cx="51.6230812" cy="16.6355705" rx="0.356352" ry="0.3007674"/>
102
+ </g>
103
+ <g>
104
+ <path style="fill:#F5F5F5;" d="M45.987236,17.6929607c0-0.3434982-0.5725288-1.7650261-2.4651222-1.7650261
105
+ c-1.8925972,0-2.7487221,1.390625-2.7487221,1.390625s1.034214,1.3278732,2.7488861,1.3014927
106
+ C44.2348709,18.6090889,45.987236,18.036459,45.987236,17.6929607z"/>
107
+ <ellipse style="fill:#231815;" cx="43.6202812" cy="17.147644" rx="1.3197482" ry="1.4186682"/>
108
+ <ellipse style="fill:#3E3A39;" cx="43.6202812" cy="17.147644" rx="1.0280999" ry="1.1888798"/>
109
+ <ellipse style="fill:#231815;" cx="43.6202812" cy="17.147644" rx="0.4987249" ry="0.5767183"/>
110
+ <path style="fill:#231815;" d="M40.083313,17.164917c0,0,0.826355-0.9133911,2.1317139-1.3063965
111
+ c-0.9214478,0.0986328-1.5887451,0.3262939-1.5887451,0.3262939c3.8999023-2.208374,5.5612183,0.7227173,5.5612183,0.7227173
112
+ c-0.2763672-0.2606201-0.5808716-0.460022-0.8989868-0.6167603c0.6791992,0.5268555,0.9408569,1.2283936,0.9822998,1.4021606
113
+ c-0.2033081-0.2063599-1.2585449-1.5581665-2.6505127-1.5404663c-1.7561646,0.0222778-2.5415039,1.2253418-2.5415039,1.2253418
114
+ c0.024292,0.0357056,0.5733643,0.7718506,0.5733643,0.7718506l-1.1689453-0.5038452l0.2330933-0.0792236
115
+ C40.5230103,17.4448242,40.3097534,17.3096924,40.083313,17.164917z"/>
116
+ <ellipse style="fill:#FFFFFF;" cx="42.8636436" cy="16.6355705" rx="0.356352" ry="0.3007674"/>
117
+ </g>
118
+ </g>
119
+ <g>
120
+ <path style="fill:#231815;" d="M49.6971626,14.0367432c0,0,2.5632629-2.5064297,6.4541245-0.0431776
121
+ C56.1512871,13.9935656,52.9242249,13.1240635,49.6971626,14.0367432z"/>
122
+ <path style="fill:#231815;" d="M46.3028374,14.0367432c0,0-2.5632629-2.5064297-6.4541245-0.0431776
123
+ C39.8487129,13.9935656,43.0757751,13.1240635,46.3028374,14.0367432z"/>
124
+ </g>
125
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="47.4719238" y1="22.833334" x2="47.4719238" y2="18">
126
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.05"/>
127
+ <stop offset="0.5" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
128
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0.05"/>
129
+ </linearGradient>
130
+ <path style="fill:url(#SVGID_3_);" d="M48.0000076,20.416666c0,1.3346882-0.631134,2.4166679-0.9137344,2.4166679
131
+ c-0.2825966,0-0.0835648-1.4994335,0.073101-2.7942715C47.3055687,18.8307285,47.4250145,18,47.7076111,18
132
+ C47.9902115,18,48.0000076,19.0819778,48.0000076,20.416666z"/>
133
+ </g>
134
+ <g>
135
+ <g>
136
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="47.8840904" y1="1.1484413" x2="47.8840904" y2="32.6666679">
137
+ <stop offset="0.1504425" style="stop-color:#6E4E30"/>
138
+ <stop offset="0.9955752" style="stop-color:#2E2114"/>
139
+ </linearGradient>
140
+ <path style="fill:url(#SVGID_4_);" d="M59.0416679,8c-1.4054222-2.1595478-1.0741425-3.0596652-2.8903809-4
141
+ c-1.8162346-0.9402685-4.4628792-3.1370814-6.9950371-2.2083335c-1.8486671-1.9590029-7.2536125,1.0938066-9.0698509,2.0341411
142
+ C38.2701645,4.7660761,39.2465553,4.7276626,36.9583321,7c-2.2882843,2.2724037-0.3746719,9.5981636-0.3746719,9.5981636
143
+ l2.7513695,16.0685043c0,0,0.9678421-1.7092762,0.7483025-3.5416679C39.207016,21.81077,38.5625,20.375,38.75,18.3782234
144
+ c0.137085-1.4598885,0.3547287-2.0866985,0.5429077-3.3157234c0.1057549-0.6906958-0.1133881-1.5891933-0.0262604-2.4768057
145
+ C39.5,14.0367432,39.6875,15.416667,41.375,15.9616747c0,0,0.0833321-0.3991747,0.375-0.8991747
146
+ c1.1743546,0.8991747,2.1064339,0.6175003,2.1064339,0.6175003c-0.1152344-0.4031029-0.1897659-1.0758333,0-1.4716673
147
+ c3.0185661,2.3644419,5.7150345,1.8884344,5.7150345,1.8884344C51.427906,12.9098701,51.9913406,8.501997,51.9340744,8
148
+ C52.7502785,8.9062252,54,14.8125,55.1834373,16.0982857c0,0,0.6958427-0.8201227,0.9678497-3.1884155
149
+ c0.2822037,2.0842705-0.1200371,3.3816547-0.1200371,3.3816547c0.4630547-0.2404213,0.8326683-1.3534889,1.1139183-2.0722389
150
+ c0,0-0.0853348,3.6784248-0.1451683,4.593214c-0.40625,6.2111206-1.2425499,9.3117809-1.25,10.53125
151
+ s0.9149704,3.3229179,0.9149704,3.3229179l2.7513695-16.0685043C59.4163399,16.5981636,60.8006935,10.7028885,59.0416679,8z"/>
152
+ <path style="fill:#2B1D15;" d="M56.7705078,33.5302734l-0.3339844-0.7631836
153
+ C56.3974609,32.6791992,55.4921875,30.6000977,55.5,29.3422852c0.0029297-0.4584961,0.1113281-1.1298828,0.2753906-2.1459961
154
+ c0.2851563-1.7675781,0.7158203-4.4384766,0.9755859-8.3999023c0.0341797-0.5385742,0.0791016-2.0634766,0.1103516-3.2075195
155
+ c-0.2021484,0.4233398-0.4335938,0.7783203-0.7148438,0.9243164l-0.5292969,0.2744141l0.1748047-0.5698242
156
+ c0.0029297-0.0073242,0.1367188-0.4555664,0.1884766-1.2358398c-0.2861328,0.8911133-0.5869141,1.2548828-0.6064453,1.277832
157
+ l-0.1826172,0.2158203L55,16.2675781c-0.6865234-0.7451172-1.3427734-2.7983398-1.9775391-4.7836914
158
+ c-0.3085938-0.9672852-0.625-1.956543-0.9003906-2.6171875c-0.2001953,1.597168-0.8876953,4.8720703-2.3349609,7.355957
159
+ l-0.0585938,0.1000977l-0.1132813,0.0200195c-0.0361328,0.0083008-2.6611328,0.4414063-5.6132813-1.7109375
160
+ c-0.0341797,0.3061523,0.0126953,0.690918,0.0947266,0.9794922l0.0673828,0.2368164l-0.2353516,0.0712891
161
+ c-0.0439453,0.0126953-0.9677734,0.2543945-2.0917969-0.4882813c-0.1630859,0.3354492-0.2167969,0.5791016-0.2167969,0.5825195
162
+ l-0.0585938,0.2705078l-0.2636719-0.0844727c-0.90625-0.2929688-1.4160156-0.8129883-1.7275391-1.4399414
163
+ c-0.0039063,0.1166992-0.0136719,0.2304688-0.0302734,0.340332c-0.0712891,0.4672852-0.1474609,0.8481445-0.2216797,1.2202148
164
+ c-0.1210938,0.6088867-0.2353516,1.184082-0.3193359,2.081543c-0.1015625,1.0810547,0.0507813,2.0126953,0.3554688,3.8681641
165
+ c0.2490234,1.512207,0.5888672,3.5834961,0.9765625,6.8251953c0.2275391,1.8920898-0.7373047,3.621582-0.7783203,3.6943359
166
+ l-0.3457031,0.6108398l-2.8691406-16.7602539c-0.0751953-0.2836914-1.9189453-7.4707031,0.4443359-9.8173828
167
+ c1.0009766-0.9941406,1.3574219-1.5253906,1.6181641-1.9130859c0.3603516-0.5371094,0.546875-0.7758789,1.5703125-1.3061523
168
+ l0.4082031-0.2133789c1.6552734-0.8710938,4.7373047-2.4916992,6.9814453-2.4916992
169
+ c0.7890625,0,1.4140625,0.2041016,1.8603516,0.6064453c0.3886719-0.1245117,0.7988281-0.1875,1.2207031-0.1875
170
+ c1.6787109,0,3.3349609,0.9946289,4.6650391,1.793457c0.4150391,0.2490234,0.8056641,0.4838867,1.1601563,0.6669922
171
+ c1.2539063,0.6494141,1.5654297,1.3212891,1.9960938,2.2509766c0.2363281,0.5112305,0.5048828,1.0913086,0.9892578,1.8349609
172
+ c1.7958984,2.7607422,0.4648438,8.5463867,0.4072266,8.7915039L56.7705078,33.5302734z M47.3603516,1.3984375
173
+ c-2.1201172,0-5.2460938,1.644043-6.7490234,2.434082l-0.4101563,0.215332
174
+ C39.25,4.5400391,39.1230469,4.7299805,38.8154297,5.1884766c-0.2568359,0.3823242-0.6455078,0.9599609-1.6816406,1.9887695
175
+ c-2.1591797,2.1455078-0.3271484,9.2856445-0.3076172,9.3579102l2.6171875,15.2807617
176
+ c0.2431641-0.6445313,0.5136719-1.6386719,0.3916016-2.6611328c-0.3867188-3.2314453-0.7255859-5.2958984-0.9736328-6.8037109
177
+ C38.5498047,20.453125,38.3935547,19.5,38.5009766,18.3549805c0.0869141-0.9228516,0.203125-1.5102539,0.3271484-2.1323242
178
+ c0.0732422-0.3652344,0.1474609-0.7392578,0.2177734-1.1982422c0.0488281-0.3198242,0.0205078-0.7070313-0.0087891-1.1171875
179
+ c-0.0322266-0.4345703-0.0644531-0.8837891-0.0195313-1.3457031l0.1884766-1.9243164l0.3222656,1.9990234
180
+ c0.2109375,1.3173828,0.3945313,2.465332,1.6826172,2.9990234c0.0605469-0.1767578,0.1630859-0.4238281,0.3232422-0.6987305
181
+ l0.1425781-0.2446289l0.2255859,0.171875c0.7011719,0.5371094,1.2988281,0.621582,1.6494141,0.6069336
182
+ c-0.0761719-0.4052734-0.1113281-0.9726563,0.0791016-1.3701172l0.1347656-0.2807617l0.2451172,0.1918945
183
+ c2.0820313,1.6308594,3.9951172,1.8740234,4.9501953,1.8740234c0.2041016,0,0.359375-0.0112305,0.4550781-0.0209961
184
+ c1.7910156-3.1508789,2.3125-7.4589844,2.2695313-7.8364258l-0.0898438-0.7763672l0.5234375,0.5805664
185
+ c0.4052734,0.4501953,0.8574219,1.862793,1.3798828,3.4990234c0.5244141,1.6401367,1.1113281,3.4755859,1.6640625,4.3276367
186
+ c0.2119141-0.3989258,0.5654297-1.2597656,0.7402344-2.7783203l0.2275391-1.9833984l0.2685547,1.9785156
187
+ c0.1328125,0.9804688,0.1181641,1.7900391,0.0625,2.3818359c0.1269531-0.2817383,0.2441406-0.5878906,0.3398438-0.8393555
188
+ l0.6269531-1.6083984l-0.0332031,1.4150391c-0.0039063,0.1503906-0.0869141,3.6943359-0.1464844,4.6035156
189
+ c-0.2597656,3.9858398-0.6933594,6.6708984-0.9804688,8.4472656C56.1142578,28.2333984,56.0029297,28.925293,56,29.3452148
190
+ c-0.0048828,0.6879883,0.3115234,1.6948242,0.5693359,2.3994141l2.6005859-15.1884766
191
+ c0.0166016-0.0732422,1.3427734-5.8378906-0.3378906-8.4199219c-0.5029297-0.7734375-0.7919922-1.3964844-1.0234375-1.8974609
192
+ c-0.4179688-0.9018555-0.6699219-1.4462891-1.7724609-2.0166016c-0.3671875-0.1904297-0.765625-0.4296875-1.1865234-0.6826172
193
+ c-1.3447266-0.8071289-2.8681641-1.722168-4.4082031-1.722168c-0.4179688,0-0.8212891,0.0703125-1.1992188,0.2089844
194
+ l-0.1542969,0.0566406l-0.1132813-0.1201172C48.6210938,1.5883789,48.078125,1.3984375,47.3603516,1.3984375z"/>
195
+ </g>
196
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="44.8803482" y1="3.75" x2="44.8803482" y2="15.0625">
197
+ <stop offset="0" style="stop-color:#8C6B42"/>
198
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
199
+ </linearGradient>
200
+ <path style="fill:url(#SVGID_5_);" d="M46,3.75c0,0-5.9166679,5.416667,0.3028374,11.3125
201
+ C46.3028374,15.0625,42.4271431,9.625,46,3.75z"/>
202
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="54.2205009" y1="4.6841831" x2="54.2205009" y2="14.4375">
203
+ <stop offset="0" style="stop-color:#8C6B42"/>
204
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
205
+ </linearGradient>
206
+ <path style="fill:url(#SVGID_6_);" d="M52.9242249,4.6841831c0,0,3.7007751,2.2741504,2.2592125,9.7533169
207
+ C55.1834373,14.4375,54.8484497,8.9933662,52.9242249,4.6841831z"/>
208
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="37.5238304" y1="7.375" x2="37.5238304" y2="23.5900002">
209
+ <stop offset="0" style="stop-color:#8C6B42"/>
210
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
211
+ </linearGradient>
212
+ <path style="fill:url(#SVGID_7_);" d="M37.9583321,7.375c0,0-3.6120834,0.395,0.577919,16.2150002
213
+ C38.5362511,23.5900002,36,10.3985367,37.9583321,7.375z"/>
214
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="58.274437" y1="8" x2="58.274437" y2="24">
215
+ <stop offset="0" style="stop-color:#8C6B42"/>
216
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
217
+ </linearGradient>
218
+ <path style="fill:url(#SVGID_8_);" d="M57.8125,8c0,0,2.2761269,2.833333-0.5625,16C57.25,24,61.4583321,9.666667,57.8125,8z"/>
219
+ <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="40.3165169" y1="6.3595743" x2="40.3165169" y2="14.791667">
220
+ <stop offset="0" style="stop-color:#8C6B42"/>
221
+ <stop offset="0.9955752" style="stop-color:#6E4E30"/>
222
+ </linearGradient>
223
+ <path style="fill:url(#SVGID_9_);" d="M40.75,6.3595743c0,0-2.7916679,3.3904257,0.2916679,8.4320927
224
+ C41.0416679,14.791667,40,9.1566486,40.75,6.3595743z"/>
225
+ </g>
226
+ </g>
227
+ <g>
228
+ </g>
229
+ <g>
230
+ </g>
231
+ <g>
232
+ </g>
233
+ <g>
234
+ </g>
235
+ <g>
236
+ </g>
237
+ <g>
238
+ </g>
239
+ </svg>
@@ -607,6 +607,35 @@ describe Phantom::SVG::Base do
607
607
  end
608
608
  end
609
609
 
610
+ describe 'combine test' do
611
+ before(:all) do
612
+ @source_dir = SPEC_SOURCE_DIR
613
+ @destination_dir = SPEC_TEMP_DIR
614
+ end
615
+
616
+ it 'combine non-animated images.' do
617
+ source1 = "#{@source_dir}/combine_test/dad_01(p).svg"
618
+ source2 = "#{@source_dir}/combine_test/mom_01.svg"
619
+ source3 = "#{@source_dir}/combine_test/boy_01(p).svg"
620
+ destination = "#{@destination_dir}/combined.svg"
621
+
622
+ loader = Phantom::SVG::Base.new(source1)
623
+ loader.combine(source2)
624
+ loader.combine(source3)
625
+ loader.save_svg(destination)
626
+ end
627
+
628
+ it 'combine animated images.' do
629
+ source1 = "#{@source_dir}/apngasm.png"
630
+ source2 = "#{@source_dir}/compiled.svg"
631
+ destination = "#{@destination_dir}/combined_anim.svg"
632
+
633
+ loader = Phantom::SVG::Base.new(source1)
634
+ loader.combine(source2)
635
+ loader.save_svg(destination)
636
+ end
637
+ end
638
+
610
639
  describe 'leak test' do
611
640
  before(:all) do
612
641
  @source_dir = SPEC_SOURCE_DIR
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phantom_svg
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rika Yoshida
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-08-25 00:00:00.000000000 Z
13
+ date: 2016-10-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: gobject-introspection
@@ -165,6 +165,9 @@ files:
165
165
  - phantom_svg.gemspec
166
166
  - spec/images/apngasm.gif
167
167
  - spec/images/apngasm.png
168
+ - spec/images/combine_test/boy_01(p).svg
169
+ - spec/images/combine_test/dad_01(p).svg
170
+ - spec/images/combine_test/mom_01.svg
168
171
  - spec/images/compiled.svg
169
172
  - spec/images/gradation_test/0.svg
170
173
  - spec/images/gradation_test/1.svg
@@ -263,6 +266,9 @@ summary: Hight end SVG manipulation tools for Ruby
263
266
  test_files:
264
267
  - spec/images/apngasm.gif
265
268
  - spec/images/apngasm.png
269
+ - spec/images/combine_test/boy_01(p).svg
270
+ - spec/images/combine_test/dad_01(p).svg
271
+ - spec/images/combine_test/mom_01.svg
266
272
  - spec/images/compiled.svg
267
273
  - spec/images/gradation_test/0.svg
268
274
  - spec/images/gradation_test/1.svg