inital
19
AudioStreamPlayer.gd
Normal file
@ -0,0 +1,19 @@
|
||||
extends AudioStreamPlayer
|
||||
|
||||
# Declare member variables here. Examples:
|
||||
# var a = 2
|
||||
# var b = "text"
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
||||
|
||||
func _on_VisibilityNotifier2D_screen_exited():
|
||||
var audio = load("res://Music/Depressed of Happytown.ogg")
|
||||
set_stream(audio)
|
||||
play()
|
||||
AudioServer.set_bus_mute(1, true)
|
17
Button.gd
Normal file
@ -0,0 +1,17 @@
|
||||
extends Button
|
||||
|
||||
# Declare member variables here. Examples:
|
||||
# var a = 2
|
||||
# var b = "text"
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
||||
|
||||
|
||||
func _on_Button_pressed():
|
||||
get_tree().change_scene("res://main.tscn")
|
64
Credits.tscn
Normal file
@ -0,0 +1,64 @@
|
||||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://obstacles/fly_1.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://obstacles/fly_6.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://Button.gd" type="Script" id=3]
|
||||
|
||||
[node name="Control" type="Control"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_left = 0.902496
|
||||
margin_right = 0.902466
|
||||
|
||||
[node name="RichTextLabel" type="RichTextLabel" parent="."]
|
||||
margin_left = -2.0
|
||||
margin_top = 5.22774
|
||||
margin_right = 1016.0
|
||||
margin_bottom = 602.228
|
||||
text = "Designer - Syborg5001
|
||||
Veileder - Daniel Olsen (daniel@dodsorf.as)
|
||||
|
||||
Musikk - Nep5040
|
||||
|
||||
emotinal support animal/beta tester-Sverre
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Open Gameart
|
||||
|
||||
Extra Music:
|
||||
https://opengameart.org/content/heroic-minority - Alexandr Zhelanov - CC-BY 3.0
|
||||
https://opengameart.org/content/undercover - lifeasaghost - CC-BY 4.0
|
||||
https://opengameart.org/content/depressed-of-happytown - Alexandr Zhelanov - CC-BY 3.0
|
||||
|
||||
Art
|
||||
https://opengameart.org/content/unsealed-ghost - Ben Potter - CC-BY-SA 3.0
|
||||
https://opengameart.org/content/glitch-ilmenskie-undergroundcave-terrain-svg - Tiny Speck - CC0
|
||||
https://opengameart.org/content/background-5 - jkjkke - CC-BY 3.0
|
||||
|
||||
Sound Effects
|
||||
https://opengameart.org/content/wind - IgnasD - CC-BY-SA 3.0
|
||||
https://opengameart.org/content/death-sounds - Macro - CC-BY 3.0
|
||||
https://opengameart.org/content/dripping-water - spookymodem - CC-BY 3.0"
|
||||
|
||||
[node name="Area2D" parent="RichTextLabel" instance=ExtResource( 1 )]
|
||||
position = Vector2( 9.43651, 99.1113 )
|
||||
|
||||
[node name="Area2D" parent="." instance=ExtResource( 2 )]
|
||||
position = Vector2( 767.407, 87.1507 )
|
||||
|
||||
[node name="Button" type="Button" parent="."]
|
||||
margin_left = 768.0
|
||||
margin_top = 421.0
|
||||
margin_right = 923.0
|
||||
margin_bottom = 483.0
|
||||
text = "Back"
|
||||
script = ExtResource( 3 )
|
||||
[connection signal="pressed" from="Button" to="Button" method="_on_Button_pressed"]
|
12
Generic.gd
Normal file
@ -0,0 +1,12 @@
|
||||
extends Node2D
|
||||
|
||||
var speed = 2
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _physics_process(delta):
|
||||
position.x -= speed
|
||||
|
6
Generic.tscn
Normal file
@ -0,0 +1,6 @@
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://Generic.gd" type="Script" id=1]
|
||||
|
||||
[node name="Generic" type="Node2D"]
|
||||
script = ExtResource( 1 )
|
69
Music.gd
Normal file
@ -0,0 +1,69 @@
|
||||
extends AudioStreamPlayer
|
||||
|
||||
# Declare member variables here. Examples:
|
||||
# var a = 2
|
||||
# var b = "text"
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
randomize()
|
||||
change_audio()
|
||||
|
||||
func change_audio():
|
||||
var rand = randi() % 7
|
||||
if rand == 0:
|
||||
var audio = load("res://Music/portalen1 - 08.09.2019, 10.21.wav")
|
||||
audio.set_loop_mode(audio.LOOP_DISABLED)
|
||||
set_stream(audio)
|
||||
play()
|
||||
elif rand == 1:
|
||||
var audio = load("res://Music/portalen2 - 08.09.2019, 10.22.wav")
|
||||
audio.set_loop_mode(audio.LOOP_DISABLED)
|
||||
set_stream(audio)
|
||||
play()
|
||||
elif rand == 2:
|
||||
var audio = load("res://Music/portalen3 - 08.09.2019, 14.10.wav")
|
||||
audio.set_loop_mode(audio.LOOP_DISABLED)
|
||||
set_stream(audio)
|
||||
play()
|
||||
elif rand == 3:
|
||||
var audio = load("res://Music/portalen4 - 08.09.2019, 14.10.wav")
|
||||
audio.set_loop_mode(audio.LOOP_DISABLED)
|
||||
set_stream(audio)
|
||||
play()
|
||||
elif rand == 4:
|
||||
var audio = load("res://Music/portalen5 + ødelagt piano - 08.09.2019, 14.09.wav")
|
||||
audio.set_loop_mode(audio.LOOP_DISABLED)
|
||||
set_stream(audio)
|
||||
play()
|
||||
elif rand == 5:
|
||||
var audio = load("res://Music/portalen6 - 08.09.2019, 14.08.wav")
|
||||
audio.set_loop_mode(audio.LOOP_DISABLED)
|
||||
set_stream(audio)
|
||||
play()
|
||||
elif rand == 6:
|
||||
var audio = load("res://Music/undercover.wav")
|
||||
audio.set_loop_mode(audio.LOOP_DISABLED)
|
||||
set_stream(audio)
|
||||
play()
|
||||
|
||||
func _play_death_music():
|
||||
var rand = randi() % 2
|
||||
if rand == 0:
|
||||
var audio = load("res://Music/Depressed of Happytown.ogg")
|
||||
set_stream(audio)
|
||||
play()
|
||||
if rand == 1:
|
||||
var audio = load("res://Music/herovic minority.ogg")
|
||||
set_stream(audio)
|
||||
play()
|
||||
|
||||
|
||||
|
||||
func _on_Player__on_death():
|
||||
stop()
|
||||
AudioServer.set_bus_mute(1, true)
|
||||
|
||||
|
||||
func _on_Music_finished():
|
||||
change_audio()
|
BIN
Music/Death Sounds/Death 6.wav
Normal file
21
Music/Death Sounds/Death 6.wav.import
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/Death 6.wav-a2c6fe1d94a038a22db1139016d666ce.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/Death Sounds/Death 6.wav"
|
||||
dest_files=[ "res://.import/Death 6.wav-a2c6fe1d94a038a22db1139016d666ce.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/Depressed of Happytown.ogg
Normal file
15
Music/Depressed of Happytown.ogg.import
Normal file
@ -0,0 +1,15 @@
|
||||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/Depressed of Happytown.ogg-6a877a30b40027817d3909414cc8fb6c.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/Depressed of Happytown.ogg"
|
||||
dest_files=[ "res://.import/Depressed of Happytown.ogg-6a877a30b40027817d3909414cc8fb6c.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
BIN
Music/Dripping Water.wav
Normal file
21
Music/Dripping Water.wav.import
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/Dripping Water.wav-cddab3d7e9a4d1c53a915ef5d80e6eb3.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/Dripping Water.wav"
|
||||
dest_files=[ "res://.import/Dripping Water.wav-cddab3d7e9a4d1c53a915ef5d80e6eb3.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/ghost.ogg
Normal file
15
Music/ghost.ogg.import
Normal file
@ -0,0 +1,15 @@
|
||||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/ghost.ogg-5f9e29e8e1bcfff1f67f68a3e5bdf93a.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/ghost.ogg"
|
||||
dest_files=[ "res://.import/ghost.ogg-5f9e29e8e1bcfff1f67f68a3e5bdf93a.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
BIN
Music/herovic minority.ogg
Normal file
15
Music/herovic minority.ogg.import
Normal file
@ -0,0 +1,15 @@
|
||||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/herovic minority.ogg-d86c647cbadd8d37003470b8590e074b.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/herovic minority.ogg"
|
||||
dest_files=[ "res://.import/herovic minority.ogg-d86c647cbadd8d37003470b8590e074b.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
BIN
Music/portalen1 - 08.09.2019, 10.21.wav
Normal file
21
Music/portalen1 - 08.09.2019, 10.21.wav.import
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/portalen1 - 08.09.2019, 10.21.wav-210ef4dd192acb562833e220019578f4.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/portalen1 - 08.09.2019, 10.21.wav"
|
||||
dest_files=[ "res://.import/portalen1 - 08.09.2019, 10.21.wav-210ef4dd192acb562833e220019578f4.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/portalen2 - 08.09.2019, 10.22.wav
Normal file
21
Music/portalen2 - 08.09.2019, 10.22.wav.import
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/portalen2 - 08.09.2019, 10.22.wav-42dbd534b5275f2ad6609a32743940a9.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/portalen2 - 08.09.2019, 10.22.wav"
|
||||
dest_files=[ "res://.import/portalen2 - 08.09.2019, 10.22.wav-42dbd534b5275f2ad6609a32743940a9.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/portalen3 - 08.09.2019, 14.10.wav
Normal file
21
Music/portalen3 - 08.09.2019, 14.10.wav.import
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/portalen3 - 08.09.2019, 14.10.wav-24daef596e7ca15b7fd885d7fc06aecc.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/portalen3 - 08.09.2019, 14.10.wav"
|
||||
dest_files=[ "res://.import/portalen3 - 08.09.2019, 14.10.wav-24daef596e7ca15b7fd885d7fc06aecc.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/portalen4 - 08.09.2019, 14.10.wav
Normal file
21
Music/portalen4 - 08.09.2019, 14.10.wav.import
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/portalen4 - 08.09.2019, 14.10.wav-88dff70c55ed9ec1c92f07f0621c59ea.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/portalen4 - 08.09.2019, 14.10.wav"
|
||||
dest_files=[ "res://.import/portalen4 - 08.09.2019, 14.10.wav-88dff70c55ed9ec1c92f07f0621c59ea.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/portalen5 + ødelagt piano - 08.09.2019, 14.09.wav
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/portalen5 + ødelagt piano - 08.09.2019, 14.09.wav-dead5b980f39c8289aa6d0b0c2afa809.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/portalen5 + ødelagt piano - 08.09.2019, 14.09.wav"
|
||||
dest_files=[ "res://.import/portalen5 + ødelagt piano - 08.09.2019, 14.09.wav-dead5b980f39c8289aa6d0b0c2afa809.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/portalen6 - 08.09.2019, 14.08.wav
Normal file
21
Music/portalen6 - 08.09.2019, 14.08.wav.import
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/portalen6 - 08.09.2019, 14.08.wav-4b0c64dba181b94339789b894feb27b5.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/portalen6 - 08.09.2019, 14.08.wav"
|
||||
dest_files=[ "res://.import/portalen6 - 08.09.2019, 14.08.wav-4b0c64dba181b94339789b894feb27b5.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/undercover.wav
Normal file
21
Music/undercover.wav.import
Normal file
@ -0,0 +1,21 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/undercover.wav-2bf632572d05152aba091eed05eee9b7.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/undercover.wav"
|
||||
dest_files=[ "res://.import/undercover.wav-2bf632572d05152aba091eed05eee9b7.sample" ]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=true
|
||||
edit/normalize=true
|
||||
edit/loop=false
|
||||
compress/mode=0
|
BIN
Music/wind/Wind.ogg
Normal file
15
Music/wind/Wind.ogg.import
Normal file
@ -0,0 +1,15 @@
|
||||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/Wind.ogg-1e6190597688de4d38fa923e3ea3fde5.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/wind/Wind.ogg"
|
||||
dest_files=[ "res://.import/Wind.ogg-1e6190597688de4d38fa923e3ea3fde5.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
BIN
Music/wind/Wind2.ogg
Normal file
15
Music/wind/Wind2.ogg.import
Normal file
@ -0,0 +1,15 @@
|
||||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/Wind2.ogg-9f4c4d42db313f3365d8ee431bb09cbb.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/wind/Wind2.ogg"
|
||||
dest_files=[ "res://.import/Wind2.ogg-9f4c4d42db313f3365d8ee431bb09cbb.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
BIN
Music/wind/Wind3.ogg
Normal file
15
Music/wind/Wind3.ogg.import
Normal file
@ -0,0 +1,15 @@
|
||||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/Wind3.ogg-4b532e9e4e1d1c60ebecd04ff8ad925d.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Music/wind/Wind3.ogg"
|
||||
dest_files=[ "res://.import/Wind3.ogg-4b532e9e4e1d1c60ebecd04ff8ad925d.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
13
Node2D.gd
Normal file
@ -0,0 +1,13 @@
|
||||
extends Node2D
|
||||
|
||||
# Declare member variables here. Examples:
|
||||
# var a = 2
|
||||
# var b = "text"
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
14
Player.gd
Normal file
@ -0,0 +1,14 @@
|
||||
extends "res://icon.gd"
|
||||
|
||||
# Declare member variables here. Examples:
|
||||
# var a = 2
|
||||
# var b = "text"
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
func _physics_process(delta):
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
10
backgroubd.tscn
Normal file
@ -0,0 +1,10 @@
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://background.jpg" type="Texture" id=1]
|
||||
|
||||
[node name="Node2D" type="Node2D"]
|
||||
|
||||
[node name="background" type="Sprite" parent="."]
|
||||
scale = Vector2( 1.60314, 1.8829 )
|
||||
texture = ExtResource( 1 )
|
||||
centered = false
|
BIN
background.jpg
Normal file
After Width: | Height: | Size: 100 KiB |
34
background.jpg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/background.jpg-79b88fb6fb9ac2ea3dfbdde6ce8e779f.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://background.jpg"
|
||||
dest_files=[ "res://.import/background.jpg-79b88fb6fb9ac2ea3dfbdde6ce8e779f.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=false
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
22
default_bus_layout.tres
Normal file
@ -0,0 +1,22 @@
|
||||
[gd_resource type="AudioBusLayout" format=2]
|
||||
|
||||
[resource]
|
||||
bus/0/volume_db = 3.5
|
||||
bus/1/name = "Effects"
|
||||
bus/1/solo = false
|
||||
bus/1/mute = false
|
||||
bus/1/bypass_fx = false
|
||||
bus/1/volume_db = -26.1
|
||||
bus/1/send = "Master"
|
||||
bus/2/name = "Music"
|
||||
bus/2/solo = false
|
||||
bus/2/mute = false
|
||||
bus/2/bypass_fx = false
|
||||
bus/2/volume_db = -24.3
|
||||
bus/2/send = "Master"
|
||||
bus/3/name = "Player"
|
||||
bus/3/solo = false
|
||||
bus/3/mute = false
|
||||
bus/3/bypass_fx = false
|
||||
bus/3/volume_db = -23.3
|
||||
bus/3/send = "Master"
|
7
default_env.tres
Normal file
@ -0,0 +1,7 @@
|
||||
[gd_resource type="Environment" load_steps=2 format=2]
|
||||
|
||||
[sub_resource type="ProceduralSky" id=1]
|
||||
|
||||
[resource]
|
||||
background_mode = 2
|
||||
background_sky = SubResource( 1 )
|
113
export_presets.cfg
Normal file
@ -0,0 +1,113 @@
|
||||
[preset.0]
|
||||
|
||||
name="Windows Desktop"
|
||||
platform="Windows Desktop"
|
||||
runnable=true
|
||||
custom_features=""
|
||||
export_filter="scenes"
|
||||
export_files=PoolStringArray( "res://Credits.tscn", "res://Generic.tscn", "res://backgroubd.tscn", "res://main.tscn", "res://obstacal.tscn", "res://obstacles/Large_rock2.tscn", "res://obstacles/crystal_4.tscn", "res://obstacles/crystal_5.tscn", "res://obstacles/fly_1.tscn", "res://obstacles/fly_2.tscn", "res://obstacles/fly_3.tscn", "res://obstacles/fly_4.tscn", "res://obstacles/fly_5.tscn", "res://obstacles/fly_6.tscn", "res://obstacles/fly_7.tscn", "res://obstacles/fly_8.tscn", "res://obstacles/hill_1.tscn", "res://obstacles/hill_11.tscn", "res://obstacles/hill_2.tscn", "res://obstacles/hill_3.tscn", "res://obstacles/hill_4.tscn", "res://obstacles/hill_5.tscn", "res://obstacles/hill_7.tscn", "res://obstacles/hill_8.tscn", "res://obstacles/icicle_1.tscn", "res://obstacles/large_rock_1.tscn", "res://obstacles/pairs/1.tscn", "res://obstacles/pairs/10.tscn", "res://obstacles/pairs/11.tscn", "res://obstacles/pairs/12.tscn", "res://obstacles/pairs/13.tscn", "res://obstacles/pairs/14.tscn", "res://obstacles/pairs/15.tscn", "res://obstacles/pairs/2.tscn", "res://obstacles/pairs/3.tscn", "res://obstacles/pairs/4.tscn", "res://obstacles/pairs/5.tscn", "res://obstacles/pairs/6.tscn", "res://obstacles/pairs/7.tscn", "res://obstacles/pairs/8.tscn", "res://obstacles/pairs/9.tscn", "res://obstacles/stalacitie_2.tscn", "res://obstacles/stalacitie_5.tscn", "res://obstacles/stalactite_1.tscn", "res://obstacles/stalcitite_4_2.tscn", "res://obstacles/top_1a.tscn", "res://obstacles/top_1b.tscn", "res://obstacles/top_c1.tscn", "res://obstacles/tree_5.tscn", "res://player.tscn", "res://spawner.tscn" )
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path="/home/daniel/Documents/Hackathon demo/Hackathon Demo.exe"
|
||||
patch_list=PoolStringArray( )
|
||||
script_export_mode=1
|
||||
script_encryption_key=""
|
||||
|
||||
[preset.0.options]
|
||||
|
||||
texture_format/bptc=false
|
||||
texture_format/s3tc=true
|
||||
texture_format/etc=false
|
||||
texture_format/etc2=false
|
||||
texture_format/no_bptc_fallbacks=true
|
||||
binary_format/64_bits=true
|
||||
custom_template/release=""
|
||||
custom_template/debug=""
|
||||
application/icon=""
|
||||
application/file_version=""
|
||||
application/product_version=""
|
||||
application/company_name=""
|
||||
application/product_name=""
|
||||
application/file_description=""
|
||||
application/copyright=""
|
||||
application/trademarks=""
|
||||
|
||||
[preset.1]
|
||||
|
||||
name="Mac OSX"
|
||||
platform="Mac OSX"
|
||||
runnable=true
|
||||
custom_features=""
|
||||
export_filter="all_resources"
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path="/home/daniel/Documents/Hackathon demo/Hackathon Demo.zip"
|
||||
patch_list=PoolStringArray( )
|
||||
script_export_mode=1
|
||||
script_encryption_key=""
|
||||
|
||||
[preset.1.options]
|
||||
|
||||
custom_package/debug=""
|
||||
custom_package/release=""
|
||||
application/name=""
|
||||
application/info="Made with Godot Engine"
|
||||
application/icon=""
|
||||
application/identifier=""
|
||||
application/signature=""
|
||||
application/short_version="1.0"
|
||||
application/version="1.0"
|
||||
application/copyright=""
|
||||
display/high_res=false
|
||||
texture_format/s3tc=true
|
||||
texture_format/etc=false
|
||||
texture_format/etc2=false
|
||||
|
||||
[preset.2]
|
||||
|
||||
name="Linux/X11"
|
||||
platform="Linux/X11"
|
||||
runnable=true
|
||||
custom_features=""
|
||||
export_filter="all_resources"
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path="/home/daniel/Documents/Hackathon demo/Hackathon Demo.x86_64"
|
||||
patch_list=PoolStringArray( )
|
||||
script_export_mode=1
|
||||
script_encryption_key=""
|
||||
|
||||
[preset.2.options]
|
||||
|
||||
texture_format/bptc=false
|
||||
texture_format/s3tc=true
|
||||
texture_format/etc=false
|
||||
texture_format/etc2=false
|
||||
texture_format/no_bptc_fallbacks=true
|
||||
binary_format/64_bits=true
|
||||
custom_template/release=""
|
||||
custom_template/debug=""
|
||||
|
||||
[preset.3]
|
||||
|
||||
name="HTML5"
|
||||
platform="HTML5"
|
||||
runnable=true
|
||||
custom_features=""
|
||||
export_filter="scenes"
|
||||
export_files=PoolStringArray( "res://Credits.tscn", "res://Generic.tscn", "res://backgroubd.tscn", "res://main.tscn", "res://obstacal.tscn", "res://obstacles/Large_rock2.tscn", "res://obstacles/crystal_4.tscn", "res://obstacles/crystal_5.tscn", "res://obstacles/fly_1.tscn", "res://obstacles/fly_2.tscn", "res://obstacles/fly_3.tscn", "res://obstacles/fly_4.tscn", "res://obstacles/fly_5.tscn", "res://obstacles/fly_6.tscn", "res://obstacles/fly_7.tscn", "res://obstacles/fly_8.tscn", "res://obstacles/hill_1.tscn", "res://obstacles/hill_11.tscn", "res://obstacles/hill_2.tscn", "res://obstacles/hill_3.tscn", "res://obstacles/hill_4.tscn", "res://obstacles/hill_5.tscn", "res://obstacles/hill_7.tscn", "res://obstacles/hill_8.tscn", "res://obstacles/icicle_1.tscn", "res://obstacles/large_rock_1.tscn", "res://obstacles/pairs/1.tscn", "res://obstacles/pairs/10.tscn", "res://obstacles/pairs/11.tscn", "res://obstacles/pairs/12.tscn", "res://obstacles/pairs/13.tscn", "res://obstacles/pairs/14.tscn", "res://obstacles/pairs/15.tscn", "res://obstacles/pairs/2.tscn", "res://obstacles/pairs/3.tscn", "res://obstacles/pairs/4.tscn", "res://obstacles/pairs/5.tscn", "res://obstacles/pairs/6.tscn", "res://obstacles/pairs/7.tscn", "res://obstacles/pairs/8.tscn", "res://obstacles/pairs/9.tscn", "res://obstacles/stalacitie_2.tscn", "res://obstacles/stalacitie_5.tscn", "res://obstacles/stalactite_1.tscn", "res://obstacles/stalcitite_4_2.tscn", "res://obstacles/top_1a.tscn", "res://obstacles/top_1b.tscn", "res://obstacles/top_c1.tscn", "res://obstacles/tree_5.tscn", "res://player.tscn", "res://spawner.tscn" )
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path="/home/daniel/Documents/Hackathon html/index.html"
|
||||
patch_list=PoolStringArray( )
|
||||
script_export_mode=1
|
||||
script_encryption_key=""
|
||||
|
||||
[preset.3.options]
|
||||
|
||||
vram_texture_compression/for_desktop=true
|
||||
vram_texture_compression/for_mobile=false
|
||||
html/custom_html_shell=""
|
||||
html/head_include=""
|
||||
custom_template/release=""
|
||||
custom_template/debug=""
|
34
ghost.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/ghost.png-f343bb4bd35f12f8f631dffe3b7d2891.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://ghost.png"
|
||||
dest_files=[ "res://.import/ghost.png-f343bb4bd35f12f8f631dffe3b7d2891.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=false
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
24
glitch-ilmenskie-svg/ilmenskie/Glints_3.svg
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="150px"
|
||||
height="150px" viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||
<symbol id="Glint" viewBox="1.05 -23.8 20.55 22.55">
|
||||
<g id="Layer_1_3_">
|
||||
|
||||
<use xlink:href="#Symbol_1" width="20.55" height="22.55" y="-22.55" transform="matrix(1 0 0 1 1.0498 -1.25)" style="overflow:visible;opacity:0.2305;"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="Symbol_1" viewBox="0 -22.55 20.55 22.55">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M8.9,0c0.6-7.333,4.483-11,11.65-11
|
||||
c-6.9-0.2-10.466-4.05-10.7-11.55C9.55-15.783,6.267-12.1,0-11.5C5.333-11.067,8.3-7.233,8.9,0z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="Layer_6">
|
||||
</g>
|
||||
<g id="Layer_4">
|
||||
|
||||
<use xlink:href="#Glint" width="20.55" height="22.55" x="1.05" y="-23.8" transform="matrix(0 -0.5088 -0.5088 0 99.25 52.6499)" style="overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
34
glitch-ilmenskie-svg/ilmenskie/Glints_3.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Glints_3.svg-f4b28149da7ec4d2bacf20c992f5740e.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/Glints_3.svg"
|
||||
dest_files=[ "res://.import/Glints_3.svg-f4b28149da7ec4d2bacf20c992f5740e.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
19
glitch-ilmenskie-svg/ilmenskie/Glints_5.svg
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_6" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="150px" height="150px" viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||
<symbol id="Glint" viewBox="1.05 -23.8 20.55 22.55">
|
||||
<g id="Layer_1_3_">
|
||||
|
||||
<use xlink:href="#Symbol_1" width="20.55" height="22.55" y="-22.55" transform="matrix(1 0 0 1 1.0498 -1.25)" style="overflow:visible;opacity:0.2305;"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="Symbol_1" viewBox="0 -22.55 20.55 22.55">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M8.9,0c0.6-7.333,4.483-11,11.65-11
|
||||
c-6.9-0.2-10.466-4.05-10.7-11.55C9.55-15.783,6.267-12.1,0-11.5C5.333-11.067,8.3-7.233,8.9,0z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<use xlink:href="#Glint" width="20.55" height="22.55" x="1.05" y="-23.8" transform="matrix(0.3861 0 0 -0.3861 60.6001 64.5)" style="overflow:visible;"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
34
glitch-ilmenskie-svg/ilmenskie/Glints_5.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Glints_5.svg-d8cf056d4224846ff4990fab297bbe48.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/Glints_5.svg"
|
||||
dest_files=[ "res://.import/Glints_5.svg-d8cf056d4224846ff4990fab297bbe48.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
2176
glitch-ilmenskie-svg/ilmenskie/back_wall_1.svg
Normal file
After Width: | Height: | Size: 157 KiB |
34
glitch-ilmenskie-svg/ilmenskie/back_wall_1.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/back_wall_1.svg-6ded8b3d3de11084374242cbf56c919b.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/back_wall_1.svg"
|
||||
dest_files=[ "res://.import/back_wall_1.svg-6ded8b3d3de11084374242cbf56c919b.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
1812
glitch-ilmenskie-svg/ilmenskie/back_wall_2.svg
Normal file
After Width: | Height: | Size: 130 KiB |
34
glitch-ilmenskie-svg/ilmenskie/back_wall_2.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/back_wall_2.svg-9092c1a28a203355af2ce6637051855c.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/back_wall_2.svg"
|
||||
dest_files=[ "res://.import/back_wall_2.svg-9092c1a28a203355af2ce6637051855c.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
3591
glitch-ilmenskie-svg/ilmenskie/back_wall_3.svg
Normal file
After Width: | Height: | Size: 266 KiB |
34
glitch-ilmenskie-svg/ilmenskie/back_wall_3.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/back_wall_3.svg-9d9c489b30330f5d0b9290f54169c47c.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/back_wall_3.svg"
|
||||
dest_files=[ "res://.import/back_wall_3.svg-9d9c489b30330f5d0b9290f54169c47c.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
2068
glitch-ilmenskie-svg/ilmenskie/back_wall_4.svg
Normal file
After Width: | Height: | Size: 154 KiB |
34
glitch-ilmenskie-svg/ilmenskie/back_wall_4.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/back_wall_4.svg-b6214371d77eaaa476e6c5403bda1fe0.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/back_wall_4.svg"
|
||||
dest_files=[ "res://.import/back_wall_4.svg-b6214371d77eaaa476e6c5403bda1fe0.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
3510
glitch-ilmenskie-svg/ilmenskie/back_wall_5.svg
Normal file
After Width: | Height: | Size: 264 KiB |
34
glitch-ilmenskie-svg/ilmenskie/back_wall_5.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/back_wall_5.svg-ea26dfce5b27cb14cb70670b2a69eb39.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/back_wall_5.svg"
|
||||
dest_files=[ "res://.import/back_wall_5.svg-ea26dfce5b27cb14cb70670b2a69eb39.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
1115
glitch-ilmenskie-svg/ilmenskie/back_wall_6.svg
Normal file
After Width: | Height: | Size: 81 KiB |
34
glitch-ilmenskie-svg/ilmenskie/back_wall_6.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/back_wall_6.svg-abca9b43107dc2103a671e83c493ff46.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/back_wall_6.svg"
|
||||
dest_files=[ "res://.import/back_wall_6.svg-abca9b43107dc2103a671e83c493ff46.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="168.8px" height="248.9px" viewBox="0 0 168.8 248.9" style="enable-background:new 0 0 168.8 248.9;" xml:space="preserve"
|
||||
>
|
||||
<symbol id="flash0.ai_x2F_Layer_3_x2F__x3C_Compound_Path_x3E_" viewBox="0 -248.9 168.776 248.914">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CFE5DB;" d="M104.05-39.5c1.967-6,5.717-19.117,11.25-39.35
|
||||
c4.733-17.267,8.85-30.45,12.35-39.55c2.434-6.4,6.934-17,13.5-31.8c6.7-15.133,11.583-26.633,14.65-34.5
|
||||
c10.767-27.733,14.833-49.133,12.2-64.2L0-248.3c0.5,5.3,2.1,12.85,4.8,22.65c1.733,6.433,5.367,18.683,10.9,36.75
|
||||
c4.633,15.2,8.667,29.816,12.1,43.85c4.034,17.466,7.434,32.1,10.2,43.9c1.433,6.133,3.25,16.233,5.45,30.3
|
||||
C45.783-55.817,47.633-45.033,49-38.5C54.2-14.2,61.567-1.417,71.1-0.15c7.233,0.967,13.683-2.333,19.35-9.9
|
||||
C95.083-16.25,99.617-26.067,104.05-39.5z M82.7-75.75c-0.633,1.933-1.434,3.45-2.4,4.55c-0.867,1.034-1.917,1.617-3.15,1.75
|
||||
c-1.367,0.2-2.6-0.25-3.7-1.35c0.367,0.033,0.917,0.15,1.65,0.35c0.6,0.1,1.05-0.05,1.35-0.45c0.066-0.367-0.434-1.9-1.5-4.6
|
||||
c-0.567-2.433-0.8-4.583-0.7-6.45c0.133-2.1,0.3-3.633,0.5-4.6c0.467-1.934,1.233-3.25,2.3-3.95c-0.433-0.367-0.933-0.5-1.5-0.4
|
||||
c-0.333,0.066-0.867,0.3-1.6,0.7c0.767-1.033,1.716-1.633,2.85-1.8c0.934-0.133,1.833,0.017,2.7,0.45
|
||||
c1.433,0.7,2.55,2.267,3.35,4.7c0.7,2.067,0.983,4.117,0.85,6.15C83.633-79.133,83.3-77.483,82.7-75.75z M55.15-71.55
|
||||
c0.633-0.034,1.067-0.1,1.3-0.2c0.433-0.167,0.667-0.483,0.7-0.95c0.033-0.2-0.2-0.716-0.7-1.55c-0.5-0.9-0.784-1.45-0.85-1.65
|
||||
c-0.4-1.233-0.65-2.717-0.75-4.45c-0.2-4.167,0.367-6.833,1.7-8c-0.333-0.967-1.167-0.933-2.5,0.1
|
||||
c0.534-0.933,1.233-1.517,2.1-1.75c0.733-0.2,1.45-0.15,2.15,0.15c1.167,0.467,2.15,1.7,2.95,3.7
|
||||
c0.667,1.733,1.05,3.483,1.15,5.25c0.133,3.633-0.383,6.217-1.55,7.75c-0.667,0.833-1.517,1.417-2.55,1.75
|
||||
C57.2-71.033,56.15-71.083,55.15-71.55z M64.25-97.05c-1.2-0.034-1.7-0.55-1.5-1.55c0.2-0.9,0.767-1.65,1.7-2.25
|
||||
c0.7-0.467,1.566-0.75,2.6-0.85c1.167-0.133,2.117,0.05,2.85,0.55c0.467,0.333,0,1.083-1.4,2.25
|
||||
C67.033-97.633,65.617-97.017,64.25-97.05z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_3_x2F__x3C_Compound_Path_x3E_" width="168.776" height="248.914" y="-248.9" transform="matrix(1 0 0 -1 0 0)" style="overflow:visible;opacity:0.7109;enable-background:new ;"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/background_ghost_transparent.svg-b0ffe6cd6a3985c4e3234156f9bd74d2.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/background_ghost_transparent.svg"
|
||||
dest_files=[ "res://.import/background_ghost_transparent.svg-b0ffe6cd6a3985c4e3234156f9bd74d2.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="203.55px" height="256.6px" viewBox="0 0 203.55 256.6" style="enable-background:new 0 0 203.55 256.6;"
|
||||
xml:space="preserve">
|
||||
<symbol id="flash0.ai_x2F_Layer_3_x2F__x3C_Compound_Path_x3E_" viewBox="0.06 -256.6 203.54 256.6">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CFE5DB;" d="M129.2-65.05c0.1-2.267,0.733-4.184,1.9-5.75
|
||||
c1.133-1.567,2.467-2.3,4-2.2c1.533,0.067,2.8,0.95,3.8,2.65c1.033,1.667,1.5,3.65,1.4,5.95c-0.1,2.3-0.716,4.233-1.85,5.8
|
||||
c-1.167,1.533-2.517,2.267-4.05,2.2c-1.533-0.1-2.8-1-3.8-2.7C129.6-60.767,129.133-62.75,129.2-65.05z M111.05-73.6
|
||||
c1.967,0,3.633,0.833,5,2.5c1.367,1.7,2.05,3.733,2.05,6.1s-0.684,4.4-2.05,6.1c-1.367,1.667-3.033,2.5-5,2.5
|
||||
c-1.933,0-3.6-0.833-5-2.5c-1.367-1.7-2.05-3.733-2.05-6.1s0.683-4.4,2.05-6.1C107.45-72.767,109.117-73.6,111.05-73.6z
|
||||
M170.6-137.15c4.066-16.267,8.85-33.2,14.35-50.8c6.667-21.167,11-35.316,13-42.45c3.2-11.367,5.083-20.1,5.65-26.2H0.95
|
||||
c-3.1,17.434,1.9,42.133,15,74.1c3.733,9.133,9.683,22.417,17.85,39.85c8,17.066,13.483,29.283,16.45,36.65
|
||||
C57.45-87.533,62.7-74.117,66-65.75c5.767,14.567,10.733,25.833,14.9,33.8c5.467,10.434,11,18.2,16.6,23.3
|
||||
C103.867-2.883,110.817,0,118.35,0c6.6,0,12.167-2.583,16.7-7.75c3.9-4.433,7.3-11.133,10.2-20.1
|
||||
c2.033-6.333,4.283-15.583,6.75-27.75c3.333-16.5,5.483-26.767,6.45-30.8C161.75-100.067,165.8-116.983,170.6-137.15z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_3_x2F__x3C_Compound_Path_x3E_" width="203.54" height="256.6" x="0.06" y="-256.6" transform="matrix(1 0 0 -1 -0.0498 0)" style="overflow:visible;opacity:0.5508;enable-background:new ;"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/background_ghost_transparent_2.svg-83838c7ae69695551adca9732796d3ab.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/background_ghost_transparent_2.svg"
|
||||
dest_files=[ "res://.import/background_ghost_transparent_2.svg-83838c7ae69695551adca9732796d3ab.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
363
glitch-ilmenskie-svg/ilmenskie/bck_flying_platforms_1.svg
Normal file
@ -0,0 +1,363 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="371.6px" height="372.75px" viewBox="0 0 371.6 372.75" style="enable-background:new 0 0 371.6 372.75;"
|
||||
xml:space="preserve">
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Clip_Group_0_x3E_" viewBox="0.057 -178.82 330.893 178.79">
|
||||
<g id="Layer_1_6_">
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M323.5-35.55c-4.767,0.667-7.517,1.1-8.25,1.3c-4.767,1.233-13.033,3.867-24.8,7.9
|
||||
c-10.434,3.567-18.75,6.017-24.95,7.35c-5,1.067-14.283,2.083-27.85,3.05c-11.8,0.8-21.017,2.284-27.65,4.45l-1.05,0.35
|
||||
c-7.467,3.033-12.983,5.267-16.55,6.7c-6.367,2.567-12.1,3.983-17.2,4.25c-14.667,0.767-27.667-1.05-39-5.45
|
||||
c-4.767-1.867-10.633-2.767-17.6-2.7c-8.033,0.434-14.067,0.684-18.1,0.75C97.267-7.567,92.85-8,87.25-8.9
|
||||
c-6.167-0.967-10.6-1.5-13.3-1.6c-4.3-0.2-9.55-0.2-15.75,0c-7,0.233-12.267,0.4-15.8,0.5c-8.767,0.733-16,1.067-21.7,1
|
||||
C10.067-9.133,3.483-10.983,0.95-14.55c-1.667-2.4-1-6.8,2-13.2c1.633-3.433,3.95-7.767,6.95-13
|
||||
c1.467-3.267,2.517-5.433,3.15-6.5c1.434-2.333,3.083-4.017,4.95-5.05c1.133-0.6,2.783-0.983,4.95-1.15
|
||||
c2.333-0.167,3.983-0.45,4.95-0.85c1.767-0.767,3.417-2.2,4.95-4.3c0.867-1.2,2.133-3.05,3.8-5.55c2.7-3.533,6.1-6.55,10.2-9.05
|
||||
c2.433-1.466,6.4-3.55,11.9-6.25c4.2-2.267,8.883-6.183,14.05-11.75c2.867-3.133,6.95-7.767,12.25-13.9
|
||||
c3.9-4.167,6.434-5.85,7.6-5.05c0.434,0.3,1.117,1.233,2.05,2.8c1.133,1.9,2.233,3.45,3.3,4.65c0.967-2.466,2.2-4.483,3.7-6.05
|
||||
c0.966-0.967,2.8-2.417,5.5-4.35c2.367-1.667,4.633-4,6.8-7c1.233-1.7,3.117-4.383,5.65-8.05c1.233-1.633,3.167-3.15,5.8-4.55
|
||||
c2.867-1.533,4.8-2.833,5.8-3.9c2.467-2.633,4.417-7.566,5.85-14.8c1.9-9.7,3.05-15.083,3.45-16.15
|
||||
c3.7-10.034,7.633-9.9,11.8,0.4c1.133,2.767,2.633,7.35,4.5,13.75c1.667,5.633,2.816,9.017,3.45,10.15
|
||||
c1.333,2.467,3.284,3.95,5.85,4.45c4.6,0.867,7.184,1.433,7.75,1.7c3.233,1.434,6.467,4.233,9.7,8.4
|
||||
c1.833,2.333,4.35,5.883,7.55,10.65c1.367,1.867,3,4.65,4.9,8.35c1.967,3.867,3.517,6.617,4.65,8.25c1.466,2.1,3.55,4.3,6.25,6.6
|
||||
c2.566,2.167,5.05,3.867,7.45,5.1c1.867,0.967,3.517,1.467,4.95,1.5c0.1,0,1.867-0.183,5.3-0.55
|
||||
c4.1-0.434,8.083-0.517,11.95-0.25c4.833,0.333,8.683,1.2,11.55,2.6c2.833,1.367,8.7,4.5,17.6,9.4
|
||||
c7.1,3.933,12.967,6.833,17.6,8.7c2.233,0.9,4.617,2.383,7.15,4.45c0.4,0.333,2.483,2.233,6.25,5.7c3.333,2.967,6.8,4.967,10.4,6
|
||||
c0.667,0.2,1.117,0.317,1.35,0.35c0.267,0.033,0.583-0.05,0.95-0.25c-0.133-0.9-0.65-1.833-1.55-2.8
|
||||
c-0.933-1-1.633-1.867-2.1-2.6c-0.267-0.4-0.533-0.933-0.8-1.6c-0.433-1-0.667-1.533-0.7-1.6c-0.033-0.133-0.2-0.466-0.5-1
|
||||
c-0.267-0.5-0.367-0.833-0.3-1c0.1-0.267,0.4-0.3,0.9-0.1c0.3,0.133,0.667,0.316,1.1,0.55c0.567,0.233,1.767,0.933,3.6,2.1
|
||||
c4.2,2.2,7.917,4.983,11.15,8.35c3.033,3.2,5.05,5.4,6.05,6.6c2.2,2.7,3.75,5.2,4.65,7.5
|
||||
C329.517-36.8,327.033-36.083,323.5-35.55z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="Layer_3_1_" style="clip-path:url(#SVGID_2_);">
|
||||
<g>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Group_x3E__x5F_1" width="322.725" height="166.528" x="0.037" y="-166.505" transform="matrix(1 0 0 1 6.0498 -5.75)" style="overflow:visible;opacity:0.2891;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Group_x3E_" width="322.835" height="144.52" y="-144.52" transform="matrix(1 0 0 1 3.5 -34.2998)" style="overflow:visible;enable-background:new ;"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_4_1_">
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Group_x3E_" viewBox="0 -144.52 322.835 144.52">
|
||||
<g id="Layer_1_5_">
|
||||
<g>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_0" width="322.835" height="144.52" y="-144.52" style="overflow:visible;opacity:0.7305;enable-background:new ;"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Group_x3E__x5F_1" viewBox="0.037 -166.505 322.725 166.528">
|
||||
<g id="Layer_1_4_">
|
||||
<g>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" width="322.725" height="166.528" x="0.037" y="-166.505" style="overflow:visible;opacity:0.3398;enable-background:new ;"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" viewBox="0.037 -166.505 322.725 166.528">
|
||||
<g id="Layer_1_2_">
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-24.1162" y1="-15794.2695" x2="36.2603" y2="-15794.2695" gradientTransform="matrix(0.007 -1 1 0.007 15955.4385 58.1509)">
|
||||
<stop offset="0" style="stop-color:#8FB5B0"/>
|
||||
<stop offset="1" style="stop-color:#BDDAC2"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);" d="M294.1-47.9c-3-1.567-5.633-3.133-7.9-4.7
|
||||
c-7.9-5.467-13.9-11.75-18-18.85c-2.333-0.5-4.083-0.883-5.25-1.15c-2.067-0.5-3.767-1.066-5.1-1.7
|
||||
c0.467,1.066,1.283,2.3,2.45,3.7c0.667,0.833,1.65,1.983,2.95,3.45c1.067,1.233,2.833,2.983,5.3,5.25c2.4,2.2,4.15,3.967,5.25,5.3
|
||||
c0.567,0.667,3.034,2.684,7.4,6.05c3.833,3.3,5.233,5.583,4.2,6.85c-1.433-1.367-3.617-2.883-6.55-4.55
|
||||
c-4.467-2.567-6.767-3.9-6.9-4c0.466,1.033,0.833,1.717,1.1,2.05c-2.667-1.466-6.183-3.683-10.55-6.65
|
||||
c-4.9-3.333-8.35-5.6-10.35-6.8c0.434,0.633,1.15,1.467,2.15,2.5c1.034,1.066,1.75,1.883,2.15,2.45
|
||||
c0.367,0.534,0.783,1.317,1.25,2.35c0.466,1.033,0.867,1.817,1.2,2.35c-1.433-0.233-3.1-0.867-5-1.9
|
||||
c-0.633-0.333-2.15-1.25-4.55-2.75c-1.1-0.633-2.333-1.5-3.7-2.6c-1.5-1.267-2.633-2.2-3.4-2.8c-0.633-0.5-1.5-1.017-2.6-1.55
|
||||
c-1.167-0.533-2-0.983-2.5-1.35c-0.533-0.4-1.35-1.283-2.45-2.65c-0.867-1.033-1.8-1.733-2.8-2.1c-2.833-2-5.267-3.6-7.3-4.8
|
||||
c-3.934-2.333-5.467-2.167-4.6,0.5c0.467,1.033,1.183,2.033,2.15,3c0.6,0.533,1.533,1.333,2.8,2.4
|
||||
c0.733,0.633,1.65,1.684,2.75,3.15c1.07,1.448,1.945,2.481,2.625,3.1c-1.133-0.978-3.309-2.078-6.525-3.3
|
||||
c-3.3-1.267-5.617-2.517-6.95-3.75c-3.1-3.2-5.467-5.567-7.1-7.1c-3-2.833-4.4-3.4-4.2-1.7c0.833,2.733,2.567,5.5,5.2,8.3
|
||||
c1.467,1.566,4.15,3.967,8.05,7.2c3.667,3.034,6.284,5.45,7.85,7.25c2.5,2.8,4.05,5.633,4.65,8.5
|
||||
c-5.833,1.067-10.716,1.2-14.65,0.4c-2.2-0.467-5.967-2.883-11.3-7.25c-4.967-4.067-10.1-8.85-15.4-14.35
|
||||
c-5.5-5.733-9.7-10.684-12.6-14.85c-3.233-4.733-4.167-7.633-2.8-8.7c-0.2-0.966-0.683-2.283-1.45-3.95
|
||||
c-0.867-1.8-1.417-3.117-1.65-3.95c1.6-0.033,3.816,0.934,6.65,2.9c2.667,1.867,4.783,2.65,6.35,2.35
|
||||
c-3.1-4.7-6.217-8.417-9.35-11.15c-0.667-0.567-2.917-1.917-6.75-4.05c-4.033-2.267-6.05-3.2-6.05-2.8c0,0.333-0.083,0.8-0.25,1.4
|
||||
c-0.167,0.633-0.25,1.017-0.25,1.15c-4.566-5.167-8.283-11.017-11.15-17.55c-2.8-6.333-4.667-13.033-5.6-20.1
|
||||
c-0.167-1.333-0.483-4.716-0.95-10.15c-0.8-4.733-2.367-7.033-4.7-6.9c-1.833,7.867-2.783,11.983-2.85,12.35
|
||||
c-0.8,4.467-1,8.65-0.6,12.55c0.533,5.2,0.633,9.417,0.3,12.65c-0.433,4.3-1.65,8.267-3.65,11.9c-1.367,2.233-2.367,3.933-3,5.1
|
||||
c-1.067,2-1.583,3.817-1.55,5.45c0.034,1.2,0.633,3.017,1.8,5.45c1.167,2.4,1.733,4.233,1.7,5.5c-0.033,1.667-0.566,3.25-1.6,4.75
|
||||
c-1.4,1.733-2.5,3.167-3.3,4.3c-1.833,2.567-3.2,5.05-4.1,7.45c-0.966,2.633-1.483,5.45-1.55,8.45c0,0.367,0.167,1.783,0.5,4.25
|
||||
c0.233,1.833,0.15,3.2-0.25,4.1c-0.433,0.9-1,1.5-1.7,1.8c-0.833,0.4-1.417,0.817-1.75,1.25c-1.367,1.733-2.183,3.617-2.45,5.65
|
||||
c-0.167,2.533-0.467,4.7-0.9,6.5c-4.934-1.367-7.534-6.117-7.8-14.25c0-0.2,0.05-3.55,0.15-10.05
|
||||
c0.067-3.867-0.183-6.733-0.75-8.6c-0.733,0.633-1.3,1.15-1.7,1.55c-0.767,0.7-1.317,1.333-1.65,1.9
|
||||
c-0.133-1.767,0.167-3.8,0.9-6.1c0.433-1.3,1.117-3.25,2.05-5.85c1.333-8.733,1.217-12.283-0.35-10.65c-3.367,3.5-5.9,6.7-7.6,9.6
|
||||
c-0.8,1.4-2.1,3.333-3.9,5.8c-1.867,2.6-3.183,4.534-3.95,5.8c-0.9,1.533-1.817,3.8-2.75,6.8c-1.033,3.233-1.883,5.517-2.55,6.85
|
||||
c-0.533,1.033-1.65,2.55-3.35,4.55c-1.6,1.867-2.65,3.4-3.15,4.6c-0.533,1.233-0.667,3.017-0.4,5.35
|
||||
c0.267,2.4,0.217,4.133-0.15,5.2c-0.933,2.733-3.817,5.483-8.65,8.25c-5.6,3.233-9,5.633-10.2,7.2
|
||||
c-0.7-0.733-1.117-1.816-1.25-3.25c-0.066-0.833-0.15-2.066-0.25-3.7c-0.133-0.934-0.75-2.684-1.85-5.25
|
||||
c-1-2.3-1.483-3.983-1.45-5.05c0.066-2.533,1.283-5.65,3.65-9.35c3.033-4.8,4.767-7.767,5.2-8.9c0.867-2.2,2.417-5.933,4.65-11.2
|
||||
c1.033-3.333-0.617-2.6-4.95,2.2c-2.633,2.9-6.517,7.25-11.65,13.05c-5.167,5.833-9.033,10.167-11.6,13
|
||||
c-1.367,1.5-2.9,3.75-4.6,6.75c-1.833,3.3-3.233,5.55-4.2,6.75c-1.133,1.367-2.7,2.05-4.7,2.05c-2.433-0.233-4.316-0.3-5.65-0.2
|
||||
c-1.967,0.133-3.367,0.667-4.2,1.6c-0.867,1.333-1.816,2.417-2.85,3.25c-0.7,0.567-1.934,0.917-3.7,1.05
|
||||
C7.15-26.2,5.6-26.1,4.6-26c-3.7,0.433-5.15,2.3-4.35,5.6c0.367,1.566,2.217,3.283,5.55,5.15c1.767,1.033,4.15,2.4,7.15,4.1
|
||||
c2.133,1.633,3.9,2.767,5.3,3.4c1.9,0.833,3.95,1.167,6.15,1c3.767-0.3,7.967-0.233,12.6,0.2C37.9-6.483,42.1-5.967,49.6-5
|
||||
c16.733,2.167,34.7,3.633,53.9,4.4c16.233,0.633,34.25,0.783,54.05,0.45c20.8-0.333,38.583-1.283,53.35-2.85
|
||||
c19.367-2.033,36.833-5.367,52.4-10c10-3,21.284-7.5,33.85-13.5c0.467-0.233,3.117-1.683,7.95-4.35
|
||||
c3.267-1.8,5.983-3.033,8.15-3.7l0.25-0.1c0.8-0.233,2.583-0.4,5.35-0.5c2.4-0.3,3.7-1.184,3.9-2.65
|
||||
c0.067-0.434-0.15-0.867-0.65-1.3c-0.667-0.5-1.133-0.883-1.4-1.15l-0.65,0.6c-0.066-0.133-0.283-0.383-0.65-0.75
|
||||
c-0.333-0.333-0.533-0.583-0.6-0.75c-0.2,0.633-0.3,1.1-0.3,1.4c-1.067-0.4-1.817-0.75-2.25-1.05c-0.033,0.066-0.033,0.15,0,0.25
|
||||
c0.01,0.029,0.018,0.054,0.025,0.075c-0.719-0.306-1.627-0.797-2.725-1.475c0.4,0.733,0.95,1.483,1.65,2.25
|
||||
c-0.4-0.2-1.117-0.7-2.15-1.5c-0.9-0.633-1.65-1.066-2.25-1.3c0.067,0.067,0.25,0.45,0.55,1.15c-1.733,0.2-3.3,0.067-4.7-0.4
|
||||
c-0.566-0.167-2.017-0.833-4.35-2C298.6-45.583,295.867-46.967,294.1-47.9z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_0" viewBox="0 -144.52 322.835 144.52">
|
||||
<g id="Layer_1_3_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#474D40;" d="M304.2-22.65c-1.034-1.4-1.65-2.667-1.85-3.8
|
||||
c1.2,0.1,2.8,0.85,4.8,2.25c1.033,0.733,2.483,1.9,4.35,3.5c0.767,0.633,1.933,1.75,3.5,3.35c1.5,1.434,2.667,2.5,3.5,3.2
|
||||
c0.533,0.433,1.217,0.8,2.05,1.1c0.467,0.167,1.2,0.433,2.2,0.8c0.4-1.3-0.617-3.333-3.05-6.1c-2.833-2.867-4.583-4.633-5.25-5.3
|
||||
c-2.067-2.067-4.717-4.117-7.95-6.15c-0.933-0.567-3.867-2.217-8.8-4.95c-2.9-1.6-7.067-2.867-12.5-3.8
|
||||
c-6.767-1.2-11.083-2.1-12.95-2.7c-1.367-0.467-3.017-1.217-4.95-2.25c-2.433-1.333-4.017-2.167-4.75-2.5
|
||||
c-1.7-0.733-3.917-1.95-6.65-3.65c-3.033-1.867-5.2-3.117-6.5-3.75c-4.3-2.233-9.533-4.2-15.7-5.9
|
||||
c-6.333-1.034-11.267-1.917-14.8-2.65c-6.467-1.367-10.867-3.5-13.2-6.4l-0.55-0.7c-0.967-1.5-2.033-3.883-3.2-7.15
|
||||
c-1.167-3.367-2.2-5.767-3.1-7.2c-1.767-2.867-4.117-5.7-7.05-8.5c-2.1-2.033-4.917-4.4-8.45-7.1
|
||||
c-9.533-7.267-16.684-13.933-21.45-20c-2.167-2.733-3.617-4.633-4.35-5.7c-1.5-2.3-2.517-4.45-3.05-6.45
|
||||
c-0.133-0.5-0.35-1.95-0.65-4.35c-0.233-1.8-0.633-3.2-1.2-4.2c-2.133-3.9-5.133-5.433-9-4.6c-3.566,0.767-6.267,2.966-8.1,6.6
|
||||
c-1.833,3.7-4.483,8.184-7.95,13.45c-5.4,8.133-8.267,12.483-8.6,13.05c-2.2,3.567-5.267,6.667-9.2,9.3
|
||||
c-1.2,0.8-5.033,2.95-11.5,6.45c-3.867,2.1-7.167,4.9-9.9,8.4c-1.5,1.966-3.783,5.65-6.85,11.05c-1.333,2.367-3.55,4.933-6.65,7.7
|
||||
c-4,3.566-6.467,5.9-7.4,7c-2.267,2.9-3.967,5.033-5.1,6.4c-2.033,2.433-4.05,4.233-6.05,5.4c-1.934,1.1-4.267,2.75-7,4.95
|
||||
c-3.867,3.066-6.15,4.85-6.85,5.35c-0.933,0.667-2.117,1.267-3.55,1.8c-1.633,0.566-2.883,1.033-3.75,1.4
|
||||
c-1.934,0.8-3.6,2.05-5,3.75c-1.5,2.067-2.75,3.667-3.75,4.8s-2.4,2.184-4.2,3.15c-2.133,1.066-3.717,1.883-4.75,2.45
|
||||
c-1.1,0.567-2.583,1.6-4.45,3.1c-1.933,1.567-3.4,2.633-4.4,3.2C6.417-14.317,4.5-12.067,2.9-8.8C1.667-6.3,0.7-3.367,0,0
|
||||
c1.533-0.8,3.017-2.683,4.45-5.65c1.767-3.633,3-5.833,3.7-6.6c1.434-1.6,3.367-2.8,5.8-3.6c3.033-1,5.483-1.6,7.35-1.8
|
||||
c0.767-0.067,2.067-0.083,3.9-0.05c1.633-0.1,2.85-0.517,3.65-1.25c0.733-0.667,1.6-1.966,2.6-3.9
|
||||
c1.066-2.033,1.95-3.417,2.65-4.15c0.566-0.633,1.7-1.733,3.4-3.3c1.5-1.4,2.6-2.534,3.3-3.4c0.667-0.867,1.5-1.95,2.5-3.25
|
||||
c0.867-1,1.983-1.783,3.35-2.35c3.333-1.4,6-2.767,8-4.1c3.3-2.133,5.667-3.917,7.1-5.35c0.9-0.9,2.4-1.95,4.5-3.15
|
||||
c2.167-1.233,3.65-2.25,4.45-3.05c0.566-0.533,1.566-1.816,3-3.85c1.066-1.467,2.283-2.583,3.65-3.35
|
||||
c2.133-1.167,3.883-2.283,5.25-3.35c1.167-0.9,2.117-1.967,2.85-3.2c0.433-0.7,1.133-1.867,2.1-3.5c1.2,0.667,2.034,1.833,2.5,3.5
|
||||
c0.434,1.567,0.417,3.034-0.05,4.4c-0.933,1.7-1.567,2.983-1.9,3.85c-0.633,1.567,0.017,1.767,1.95,0.6
|
||||
c0.434-0.233,0.9-0.75,1.4-1.55c0.6-0.934,1.017-1.517,1.25-1.75c0.333-0.333,0.9-0.733,1.7-1.2c0.8-0.5,1.367-0.9,1.7-1.2
|
||||
c0.7-0.667,1.417-1.684,2.15-3.05c0.9-1.733,1.5-2.816,1.8-3.25c0.934-1.333,2.8-2.867,5.6-4.6c2.633-1.633,4.383-3.25,5.25-4.85
|
||||
c0.434-0.767,0.833-1.85,1.2-3.25c0.433-1.567,0.783-2.65,1.05-3.25c0.434-1.034,1.167-2.017,2.2-2.95
|
||||
c0.633-0.533,1.667-1.25,3.1-2.15c0.2-0.133,1.167-0.9,2.9-2.3c1.566-1.267,2.433-1.917,2.6-1.95c0.6-0.067,0.933,0.683,1,2.25
|
||||
c0,1.833,0.017,3.033,0.05,3.6c1.267-1.733,2.533-3.833,3.8-6.3c0.733-1.367,1.8-3.566,3.2-6.6
|
||||
c1.467-3.167,2.483-7.316,3.05-12.45c0.9-8.067,1.4-12.35,1.5-12.85c0.4-2.3,1.017-4.217,1.85-5.75
|
||||
c1.233-2.333,2.75-3.267,4.55-2.8c2.2,0.6,3.883,3.083,5.05,7.45c0.967,4.9,1.683,8.017,2.15,9.35c0.367,1.067,1.15,2.7,2.35,4.9
|
||||
c1.1,2.1,1.833,3.75,2.2,4.95c0.5,2.233,0.883,3.867,1.15,4.9c0.433,1.867,1.05,3.467,1.85,4.8c1.433,2.367,2.55,4.05,3.35,5.05
|
||||
c1.833,2.333,3.317,3.367,4.45,3.1c-0.1-0.567-0.483-1.85-1.15-3.85c-0.4-1.867-0.233-3.05,0.5-3.55
|
||||
c0.533-0.367,1.583-0.267,3.15,0.3c0.033,0,1.1,0.45,3.2,1.35c1.633,0.667,3.15,1.833,4.55,3.5c0.767,0.966,1.967,2.517,3.6,4.65
|
||||
c2.867,3.233,5.167,6.933,6.9,11.1c0.7,1.767,1.783,4.083,3.25,6.95c1.733,3.434,2.867,5.75,3.4,6.95
|
||||
c1.467,3.267,4.283,6.15,8.45,8.65l10.5,6.25c0.8,0.6,2.066,1.6,3.8,3c1.533,1.167,2.883,2.067,4.05,2.7
|
||||
c-0.167-0.567-0.8-1.434-1.9-2.6c-0.933-1.033-1.4-1.95-1.4-2.75c0.167-0.067,0.983-0.5,2.45-1.3c0.8-0.466,1.75-0.617,2.85-0.45
|
||||
c0.733,0.1,1.833,0.433,3.3,1c1.4,0.533,2.483,0.833,3.25,0.9c-0.233-0.633-0.417-1.05-0.55-1.25c2.167-0.833,4.716-0.8,7.65,0.1
|
||||
c0.933,0.267,3.316,1.25,7.15,2.95c0.933,0.434,2.267,0.867,4,1.3c1.933,0.5,3.283,0.9,4.05,1.2c1,0.4,1.967,1.017,2.9,1.85
|
||||
c0.566,0.5,1.417,1.317,2.55,2.45c2.467,2.233,3.767,3.4,3.9,3.5c1.504,1.308,2.863,2.375,4.075,3.2
|
||||
c-0.719-0.524-1.627-1.674-2.725-3.45c-1.167-1.8-1.833-3.15-2-4.05c1,0.133,2.083,0.583,3.25,1.35c0.667,0.4,1.633,1.067,2.9,2
|
||||
c0.6,0.367,1.517,0.8,2.75,1.3c1.267,0.5,2.184,0.933,2.75,1.3c0.733,0.467,1.717,1.133,2.95,2c1.133,0.733,2.217,1.283,3.25,1.65
|
||||
c1.5,0.533,2.417,0.883,2.75,1.05c0.967,0.4,1.816,0.9,2.55,1.5c0.4,0.333,1.1,1.15,2.1,2.45c0.967,1.033,1.733,1.283,2.3,0.75
|
||||
c1.3,0.833,3.217,2.367,5.75,4.6c2.367,2.1,4.317,3.6,5.85,4.5c3.567,2.033,6.317,3.333,8.25,3.9c2.1,0.667,2.917,0.4,2.45-0.8
|
||||
c-0.267-0.7-1.05-1.967-2.35-3.8C305.617-20.7,304.767-21.85,304.2-22.65z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-264.3926" y1="90.7705" x2="-119.7236" y2="90.7705" gradientTransform="matrix(-0.1141 -0.9935 0.9935 -0.1141 1.788288e-004 -9.683892e-004)">
|
||||
<stop offset="0.0078" style="stop-color:#27545B"/>
|
||||
<stop offset="0.3333" style="stop-color:#8DBCA6"/>
|
||||
<stop offset="1" style="stop-color:#B6DCCC"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_4_);" d="M166.95,166.2c-3.567,0.2-9.1,0.867-16.6,2
|
||||
c-7.133,1.033-12.633,1.633-16.5,1.8c-1.9,0.067-8.6,0.733-20.1,2c-8.233,0.867-14.933,0.983-20.1,0.35
|
||||
c-8.233-1.067-17.066-0.117-26.5,2.85c-3.133,1.066-5.767,2.05-7.9,2.95c-4.267,2.033-7.517,3.55-9.75,4.55
|
||||
c-4,1.8-7.367,2.95-10.1,3.45c0.967-1.6,2.417-3.267,4.35-5c0.733-0.667,2.467-2.083,5.2-4.25c1.333-1.033,2.75-2.417,4.25-4.15
|
||||
c2.1-2.467,3.383-3.933,3.85-4.4c1.6-1.633,2.867-2.483,3.8-2.55c0.667-0.066,2.183,0.05,4.55,0.35
|
||||
c5.867,0.133,11.967-4.183,18.3-12.95c3.3-4.8,5.8-8.267,7.5-10.4c2.9-3.7,5.633-6.233,8.2-7.6c3.4-1.8,6.783-1.55,10.15,0.75
|
||||
c2.067,1.433,4.9,4.433,8.5,9c3.667,4.633,6.45,7.633,8.35,9c3.233,2.367,6.45,2.683,9.65,0.95c1.5-0.8,3.15-1.717,4.95-2.75
|
||||
c1.433-0.433,3.3-0.05,5.6,1.15c0.8,0.434,2.833,2.1,6.1,5c2.566,2.267,4.767,3.467,6.6,3.6c0.867,0.067,1.75-0.2,2.65-0.8
|
||||
c1-0.7,1.767-1.083,2.3-1.15c1.133-0.133,2-0.133,2.6,0c0.4,0.1,1.233,0.333,2.5,0.7c1.467,0.3,3.917,0.783,7.35,1.45
|
||||
c3,0.7,5.3,1.533,6.9,2.5c-1.867,0.867-4.567,1.367-8.1,1.5C171.5,166.1,168.65,166.133,166.95,166.2z"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-585.9668" y1="171.6797" x2="101.9681" y2="171.6797" gradientTransform="matrix(-0.114 -0.9935 0.9935 -0.114 1.447797e-004 1.658425e-004)">
|
||||
<stop offset="0.0078" style="stop-color:#27545B"/>
|
||||
<stop offset="0.3333" style="stop-color:#8DBCA6"/>
|
||||
<stop offset="1" style="stop-color:#B6DCCC"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_5_);" d="M155.8,51.75l-0.35,2.4l1-0.85L155.8,51.75z
|
||||
M146.5,48.35l-0.35-1l-0.3,0.5c-0.167,0.833-0.25,1.333-0.25,1.5l-0.4-0.5c-0.8,1.133-1.8,2.417-3,3.85
|
||||
c-1.067,1.267-1.684,1.983-1.85,2.15c-2.8,3.3-4.6,6.066-5.4,8.3c-1.3,3.567-0.617,6.467,2.05,8.7
|
||||
c-0.167-1.8,1.117-4.117,3.85-6.95c1.633-1.667,3.867-3.467,6.7-5.4c1.567-1.033,3.767-2.5,6.6-4.4l-0.55-5.65
|
||||
c-0.1,0.367-0.417,1.083-0.95,2.15c-0.433-1.133-0.533-2.233-0.3-3.3c-0.2,0.733-0.4,1.95-0.6,3.65c0.067-1.7-0.167-3.233-0.7-4.6
|
||||
c-0.5,2.3-0.833,4.183-1,5.65c-0.367-1.667-0.683-2.933-0.95-3.8c-0.434-1.6-1.017-2.75-1.75-3.45
|
||||
c-0.033,0.233-0.184,0.65-0.45,1.25C146.667,47.567,146.533,48.017,146.5,48.35z M141.225,41.425
|
||||
c0.023,0.727-0.235,1.585-0.775,2.575c-0.534,0.967-1.117,1.75-1.75,2.35c-0.034-1.067,0-1.867,0.1-2.4
|
||||
c-0.2,0.566-0.6,1.367-1.2,2.4c0.167-0.833,0.25-1.833,0.25-3c-1.434,0.6-2.867,1.933-4.3,4c-0.933,1.733-2.1,3.65-3.5,5.75
|
||||
c-1.8,2.667-2.783,5.3-2.95,7.9c-0.167,2.2,0.233,4.25,1.2,6.15c0.067-1.433,0.317-2.733,0.75-3.9
|
||||
c0.967-2.6,3.317-5.383,7.05-8.35c4.467-3.533,7.217-6.017,8.25-7.45c-0.633-1.233-1-2.45-1.1-3.65
|
||||
c-0.233,1.1-0.75,2.75-1.55,4.95c0.066-0.967,0.017-2.233-0.15-3.8C141.378,43.178,141.27,42.003,141.225,41.425z M198.75,60
|
||||
c-0.333,1.467-0.616,2.55-0.85,3.25c0.133-1.633-0.051-3.633-0.551-6l-0.5,0.65c0.134,4.8-0.033,8.7-0.5,11.7
|
||||
c-0.361,2.302-1.245,5.835-2.649,10.6c0.17-0.413,0.652-1.046,1.45-1.9c1.199-1.367,1.816-2.066,1.85-2.1
|
||||
c0.434-0.6,1.366-1.767,2.8-3.5c1.267-1.5,2.167-2.684,2.7-3.55c2-3.333,3.417-6.967,4.25-10.9l-0.55,1.05
|
||||
c-0.284-1.074-0.276-2.182,0.024-3.325c-0.346,1.193-0.805,2.201-1.375,3.025c-0.3-1.7-0.383-3.167-0.25-4.4
|
||||
c-0.3,1.033-0.85,2.233-1.649,3.6c-0.934,1.533-1.617,2.667-2.05,3.4c-0.267-1.1-0.233-2.25,0.1-3.45
|
||||
c-0.066,0.133-0.233,0.434-0.5,0.9c-0.233,0.4-0.4,0.75-0.5,1.05c-0.4-1-0.533-2.1-0.4-3.3
|
||||
C199.333,57.467,199.05,58.533,198.75,60z M193.45,58.75c0.233,0.667,0.316,1.667,0.25,3c-0.467-1.467-0.9-2.567-1.3-3.3
|
||||
c-0.534,1.566-0.851,2.85-0.95,3.85c-0.2-0.6-0.334-1.083-0.4-1.45l-0.8,3.55c0.1-1.033,0.1-2.083,0-3.15
|
||||
c-0.1-0.667-0.184-1.05-0.25-1.15c-0.467,1.367-0.934,3.25-1.4,5.65c-0.533,3.033-0.899,4.933-1.1,5.7
|
||||
c0.566-2.7,0.717-5.784,0.45-9.25c-0.434,0.6-0.7,1.216-0.8,1.85l0.05-1.45c-0.8,0.767-1.434,1.8-1.9,3.1
|
||||
c-0.133-0.833-0.184-1.45-0.149-1.85c-0.734,1.2-1.317,2.6-1.75,4.2l-0.2-1.45c-0.1-0.567-0.133-1.083-0.1-1.55
|
||||
c-0.667,0.833-1.267,1.85-1.8,3.05c-0.533,1.167-0.85,2.167-0.95,3c-0.267-1.033-0.434-2.434-0.5-4.2
|
||||
c-0.833,3.2-1.267,5.817-1.3,7.85c-0.678-3.068-0.995-5.334-0.95-6.8c-0.108,1.826-0.325,4.542-0.65,8.15
|
||||
c-0.267,3.333-0.333,6.1-0.2,8.3c-0.367-1.867-0.7-4.75-1-8.65c-0.267-3.833-0.6-6.717-1-8.65c0.167,0.933,0.2,2.15,0.1,3.65
|
||||
c-0.033,0.867-0.117,2.117-0.25,3.75c-1.3-5.102-1.917-8.776-1.85-11.025l-0.3,5.325c-1.067-2.5-1.7-5.2-1.9-8.1l-0.35,0.5
|
||||
c-0.133-0.867-0.184-1.534-0.15-2c-1,1.633-1.617,3.3-1.85,5c-0.367-1.1-0.6-2.2-0.7-3.3c-0.767,1.533-1.25,3.517-1.45,5.95
|
||||
c-0.133,1.367-0.233,3.433-0.3,6.2c-0.367-1.8-0.633-4.117-0.8-6.95c-0.233-3.267-0.267-6.4-0.1-9.4c-0.4,0.066-0.8,1.75-1.2,5.05
|
||||
c-0.333,2.767-0.5,4.817-0.5,6.15c-0.3-2.333-0.533-4.1-0.7-5.3c-0.267-2.1-0.6-3.833-1-5.2c0,0.7-0.067,1.733-0.2,3.1
|
||||
c-0.591-2.168-1.3-3.868-2.125-5.1c0.328,0.523,0.187,1.573-0.425,3.15c-0.667-0.8-1.217-1.933-1.65-3.4
|
||||
c-0.5,0.633-1.2,1.367-2.1,2.2l-0.25,0.95l-0.1-0.65c-1.133,1-2.15,1.817-3.05,2.45c-4.5,3.2-7.283,5.717-8.35,7.55
|
||||
c-1.667,2.9-0.55,5.533,3.35,7.9c5.034,1.034,8.383,1.934,10.05,2.7c3.333,1.6,5.4,4.167,6.2,7.7
|
||||
c0.567,2.466,0.667,6.517,0.3,12.15c-0.333,5.333-0.117,9.316,0.65,11.95c1.5,5.167,5.517,6.833,12.05,5
|
||||
c2.2-0.6,4.833-1.667,7.9-3.2c1.666-0.8,3.767-1.867,6.3-3.2c3.733-1.8,6.616-3.133,8.65-4c-2.7-0.333-4.983-1.267-6.851-2.8
|
||||
c-2.066-1.633-3.333-3.767-3.8-6.4c-0.667-3.833,0.066-8.583,2.2-14.25c2.633-7,4.083-11.633,4.35-13.9
|
||||
c0.367-3.433,0.4-6.2,0.101-8.3l-0.551,1.15L193.45,58.75z M249.95,61.3c-0.521-0.717-0.88-1.259-1.075-1.625
|
||||
c0.134,0.268,0.459,1.176,0.975,2.725l-0.85-1c0.267,0.7,0.384,1.55,0.35,2.55c0,0.6-0.05,1.483-0.149,2.65
|
||||
c-0.467-1-0.717-2-0.75-3c-0.167,1.5-0.667,3.433-1.5,5.8c-0.967,2.733-1.566,4.633-1.8,5.7c0-0.9,0.25-2.45,0.75-4.65
|
||||
c0.433-1.934,0.583-3.517,0.449-4.75c-0.233,1.333-0.75,2.683-1.55,4.05l-0.05-3.9c-0.366,1.4-1.2,2.65-2.5,3.75
|
||||
c-0.323-0.382-0.373-0.798-0.15-1.25c-1.372,2.483-2.172,4.049-2.399,4.7c-0.066-1.633,0.25-3.083,0.95-4.35
|
||||
c-1.134,1.4-1.95,2.517-2.45,3.35c-0.834,1.4-1.367,2.733-1.601,4c-0.699-1.933-0.949-3.55-0.75-4.85
|
||||
c-0.733,3.5-1.149,5.433-1.25,5.8c0.034-0.7-0.066-1.583-0.3-2.65c-0.333-1.533-0.517-2.4-0.55-2.6c0,1.067-0.384,2.683-1.15,4.85
|
||||
c-0.8,2.267-1.233,4.867-1.3,7.8c-0.3-4.333-0.133-7.717,0.5-10.15c-0.3,0.667-0.816,2.167-1.55,4.5
|
||||
c0.066-1.667,0.116-2.917,0.15-3.75c0.1-1.467,0.267-2.683,0.5-3.65c-0.233,0.533-0.65,1.283-1.25,2.25
|
||||
c0.033-1.167,0.083-2.033,0.149-2.6c-0.434,1.2-1.383,3.5-2.85,6.9c0.066-1.033,0.083-2.383,0.05-4.05
|
||||
c-0.066-2.033-0.1-3.383-0.1-4.05c-0.7,1.067-1.117,2.133-1.25,3.2c-0.301-0.567-0.551-1.017-0.75-1.35
|
||||
c-0.301-0.566-0.5-1.017-0.601-1.35c-0.233,0.6-0.434,1.35-0.6,2.25c-0.101,0.534-0.233,1.317-0.4,2.35
|
||||
c-0.2-0.633-0.45-1.8-0.75-3.5c-0.267-1.566-0.55-2.783-0.85-3.65c-0.066,0.567-0.334,1.467-0.8,2.7
|
||||
c-0.301-0.8-0.617-2.1-0.95-3.9c-0.101,0.467-0.334,1.233-0.7,2.3c-0.1-0.434-0.316-0.967-0.65-1.6
|
||||
c-0.399-0.833-0.633-1.333-0.699-1.5c-1.536,3.871-2.336,7.446-2.4,10.725c-0.026-4.244-0.442-7.819-1.25-10.725
|
||||
c-0.2,0.667-0.366,1.617-0.5,2.85c-0.134,1.333-0.283,2.283-0.45,2.85c-0.533-4.067-0.899-7.1-1.1-9.1
|
||||
c-0.367,1.667-0.566,2.733-0.601,3.2c-0.1-0.433-0.267-1.417-0.5-2.95c-0.166-1.233-0.399-2.184-0.699-2.85
|
||||
c-0.067,1.433-0.134,2.4-0.2,2.9c-0.134,1.067-0.384,1.934-0.75,2.6c-0.033-1.067-0.184-2.3-0.45-3.7
|
||||
c-0.366-1.633-0.634-2.867-0.8-3.7c-0.601,3.833-1.7,7.45-3.3,10.85c-1.634,3.5-4.567,8.65-8.801,15.45
|
||||
c-2.866,5.567-2.966,9.5-0.3,11.8c2.566,2.233,7.517,3.716,14.851,4.45c12.666-3.667,24.383-3.683,35.149-0.05
|
||||
c9.4,3.167,17.65,10.05,24.75,20.65c6.334,9.5,10.367,19.667,12.101,30.5c0.966,6.033,1.483,13.85,1.55,23.45
|
||||
c0.1,12.267,0.267,20.066,0.5,23.399c-11.834-4.233-25.55-6.616-41.15-7.149c-4.166-0.134-18.1,0.133-41.8,0.8
|
||||
c1.533-2.8,3.767-6.367,6.7-10.7c4.666-6.9,7.116-10.55,7.35-10.95c5.8-8.934,9.351-16.633,10.65-23.1
|
||||
c2.633-13.267-1-20.567-10.9-21.9c-5.3-0.7-14.783,0.8-28.45,4.5c-9,2.433-15.466,3.483-19.399,3.15
|
||||
c-6.667-0.467-11.617-3.083-14.85-7.85c-3.2-4.767-4.217-10.933-3.05-18.5c0.9-4.066,1.5-7.267,1.8-9.6
|
||||
c0.533-4.233,0.183-7.3-1.05-9.2c-0.9-1.434-2.35-2.633-4.35-3.6c-0.967-0.467-2.883-1.183-5.75-2.15
|
||||
c-4.367-1.267-8.083-3.383-11.15-6.35c-3.3-3.167-5.066-6.683-5.3-10.55c-0.233-4.333,1.517-8.833,5.25-13.5
|
||||
c1.933-2.467,3.4-4.617,4.4-6.45l0.15-0.8c-1.3,1.6-2.3,2.783-3,3.55l0.9-1.95c-1.1,1.434-1.95,2.467-2.55,3.1
|
||||
c0.1-1.066,0.2-1.833,0.3-2.3c-1.967,2.4-3.684,5.533-5.15,9.4c0-0.8,0.1-1.967,0.3-3.5c0.233-1.567,0.333-2.7,0.3-3.4
|
||||
c-1.2,1.9-1.883,4.767-2.05,8.6c-0.267,4.867-0.65,8.233-1.15,10.1c0.267-2.167,0.333-4.917,0.2-8.25
|
||||
c-0.233-3.767-0.4-6.517-0.5-8.25c-0.733,1.333-1.267,3.45-1.6,6.35c-0.175,1.4-0.35,3.309-0.525,5.725
|
||||
c0.109-2.755,0.134-4.947,0.075-6.575c-0.167-3.066-0.684-5.483-1.55-7.25c-0.433,0.9-0.933,2.617-1.5,5.15
|
||||
c-0.066-1.1-0.133-1.8-0.2-2.1c-0.133-0.733-0.4-1.383-0.8-1.95c0.034,0.033-0.066,0.2-0.3,0.5c-0.2,0.233-0.35,0.383-0.45,0.45
|
||||
c-0.4-0.8-0.783-1.133-1.15-1c-0.467,0.3-0.883,0.433-1.25,0.4c-0.167,0.633-0.533,1.55-1.1,2.75c-0.1-1.5-0.133-2.383-0.1-2.65
|
||||
c-0.167,0.633-0.467,1.6-0.9,2.9c-0.333,1.133-0.483,2.15-0.45,3.05c-0.133-1.667-0.233-2.9-0.3-3.7
|
||||
c-0.4,0.566-0.75,1.367-1.05,2.4c-0.167,0.533-0.4,1.317-0.7,2.35c0-1.6,0.034-2.783,0.1-3.55c-1,2.233-1.6,4.233-1.8,6
|
||||
c0-3.233,0.017-5.033,0.05-5.4c-0.867,2.833-1.367,6.684-1.5,11.55c-0.233,7.133-0.383,11.083-0.45,11.85
|
||||
c-0.267-2.233-0.4-5.966-0.4-11.2c0-4.9-0.2-8.633-0.6-11.2c-0.6,1.167-1.017,2.583-1.25,4.25c-0.133,0.967-0.233,2.45-0.3,4.45
|
||||
c-0.367-1.467-0.55-3.167-0.55-5.1c-0.032-0.614,0.009-2.247,0.125-4.9c-0.071,0.981-0.379,3.048-0.925,6.2
|
||||
c-0.466,2.833-0.6,5.1-0.4,6.8c-1.133-6.6-1.467-11.617-1-15.05c-0.167,0.5-0.333,1.25-0.5,2.25
|
||||
c-0.167,1.067-0.316,1.817-0.45,2.25c-0.233-1.2-0.417-3.05-0.55-5.55l-0.3,1.1c-0.467-0.8-0.733-1.467-0.8-2l-0.9,0.85
|
||||
c-0.4-0.633-0.65-1.133-0.75-1.5v2.05c-0.7-0.633-1.283-1.483-1.75-2.55c-0.467-1.067-0.733-2.083-0.8-3.05l-0.15,1.7
|
||||
c-0.767-1.1-1.383-2.733-1.85-4.9c0,0.466-0.05,1.233-0.15,2.3c-0.333-0.5-0.583-1.15-0.75-1.95c0-0.033-0.133-0.733-0.4-2.1
|
||||
L88,43.45c-0.3-1.2-0.45-2.467-0.45-3.8c-0.033,0.633-0.066,1.583-0.1,2.85c-0.067,1.1-0.2,2-0.4,2.7
|
||||
c-0.8-1.333-1.167-3.117-1.1-5.35c0.233-2.533,0.4-4.367,0.5-5.5c-0.333,0.833-0.6,1.967-0.8,3.4c-0.3,1.7-0.517,2.833-0.65,3.4
|
||||
c-0.467-3.066-0.367-6.25,0.3-9.55c0.267-1.267,0.567-2.367,0.9-3.3c1.4-3.767,4.283-7.517,8.65-11.25
|
||||
c3.8-3.233,7.816-5.783,12.05-7.65c8.267-3.633,18.35-6,30.25-7.1c6.4-0.566,12.817-0.3,19.25,0.8
|
||||
c5.733,1,11.184,2.617,16.35,4.85c5.467,2.367,10.183,5.533,14.15,9.5c2.533,2.533,4.517,5.083,5.949,7.65
|
||||
c1.934-0.9,3.801-1.533,5.601-1.9c4.366-0.833,9.316-0.733,14.85,0.3c4.8,0.9,9.55,2.367,14.25,4.4
|
||||
c5.367,2.367,9.851,5.617,13.45,9.75c1.833,2.067,3.116,3.9,3.85,5.5C248.816,49.483,250.517,55.533,249.95,61.3z"/>
|
||||
</g>
|
||||
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="38.8755" y1="269.2207" x2="370.3525" y2="269.2207" gradientTransform="matrix(0.9973 0.0737 -0.0737 0.9973 -7.832795e-005 -7.466972e-005)">
|
||||
<stop offset="0" style="stop-color:#BBD6C0"/>
|
||||
<stop offset="0.2157" style="stop-color:#B1CDBC"/>
|
||||
<stop offset="0.502" style="stop-color:#A9C5B8"/>
|
||||
<stop offset="1" style="stop-color:#C2DAC6"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_6_);" d="M330.3,248.15c-3.6,1.033-7.066,3.033-10.399,6
|
||||
c-3.767,3.466-5.851,5.366-6.25,5.699c-2.534,2.067-4.917,3.551-7.15,4.45c-4.634,1.867-10.5,4.767-17.6,8.7
|
||||
c-8.9,4.9-14.767,8.033-17.601,9.4c-2.866,1.399-6.717,2.267-11.55,2.6c-3.866,0.267-7.85,0.184-11.95-0.25
|
||||
c-3.434-0.366-5.2-0.55-5.3-0.55c-1.434,0.033-3.083,0.533-4.95,1.5c-2.399,1.233-4.883,2.934-7.45,5.1
|
||||
c-2.699,2.3-4.783,4.5-6.25,6.601c-1.133,1.633-2.683,4.383-4.649,8.25c-1.9,3.699-3.533,6.483-4.9,8.35
|
||||
c-1.633,2.167-4.149,5.717-7.55,10.65c-3.233,4.166-6.467,6.966-9.7,8.399c-0.566,0.267-3.149,0.834-7.75,1.7
|
||||
c-2.566,0.5-4.517,1.983-5.85,4.45c-0.633,1.133-1.784,4.517-3.45,10.149c-1.867,6.4-3.367,10.983-4.5,13.75
|
||||
c-4.167,10.301-8.1,10.434-11.8,0.4c-0.4-1.066-1.55-6.45-3.45-16.15c-1.433-7.233-3.383-12.166-5.85-14.8
|
||||
c-1-1.066-2.933-2.366-5.8-3.899c-2.633-1.4-4.567-2.917-5.8-4.551c-2.533-3.666-4.417-6.35-5.65-8.05c-2.167-3-4.433-5.333-6.8-7
|
||||
c-2.7-1.934-4.533-3.383-5.5-4.35c-1.5-1.566-2.733-3.584-3.7-6.05c-1.066,1.199-2.167,2.75-3.3,4.649
|
||||
c-0.934,1.566-1.617,2.5-2.05,2.8c-1.167,0.801-3.7-0.883-7.6-5.05c-5.3-6.133-9.383-10.767-12.25-13.899
|
||||
c-5.167-5.567-9.85-9.483-14.05-11.75c-5.5-2.7-9.467-4.784-11.9-6.25c-4.1-2.5-7.5-5.517-10.2-9.051
|
||||
c-1.667-2.5-2.933-4.35-3.8-5.55c-1.533-2.1-3.183-3.533-4.95-4.3c-0.966-0.4-2.617-0.684-4.95-0.85
|
||||
c-2.167-0.167-3.817-0.551-4.95-1.15c-1.867-1.033-3.517-2.717-4.95-5.05c-0.633-1.066-1.684-3.233-3.15-6.5
|
||||
c-3-5.233-5.316-9.566-6.95-13c-3-6.4-3.667-10.8-2-13.2c2.533-3.566,9.117-5.417,19.75-5.55c5.7-0.066,12.933,0.267,21.7,1
|
||||
c3.534,0.1,8.8,0.267,15.8,0.5c6.2,0.2,11.45,0.2,15.75,0c2.7-0.101,7.133-0.634,13.3-1.601c5.6-0.899,10.017-1.333,13.25-1.3
|
||||
c4.033,0.066,10.067,0.316,18.1,0.75c6.967,0.066,12.833-0.833,17.6-2.7c11.333-4.399,24.333-6.216,39-5.449
|
||||
c5.101,0.267,10.834,1.683,17.2,4.25c3.566,1.433,9.084,3.666,16.55,6.699l1.051,0.351c6.633,2.166,15.85,3.649,27.649,4.45
|
||||
c13.566,0.966,22.851,1.983,27.851,3.05c6.199,1.333,14.517,3.783,24.949,7.35c11.767,4.033,20.034,6.667,24.801,7.9
|
||||
c0.733,0.2,3.483,0.633,8.25,1.3c3.533,0.533,6.017,1.25,7.449,2.15c-0.899,2.3-2.449,4.8-4.649,7.5c-1,1.199-3.017,3.399-6.05,6.6
|
||||
c-3.233,3.366-6.95,6.15-11.15,8.35c-1.833,1.167-3.033,1.867-3.6,2.101c-0.434,0.233-0.801,0.416-1.101,0.55
|
||||
c-0.5,0.2-0.8,0.167-0.899-0.1c-0.067-0.167,0.033-0.5,0.3-1c0.3-0.534,0.467-0.867,0.5-1c0.033-0.067,0.267-0.601,0.7-1.601
|
||||
c0.267-0.666,0.533-1.2,0.8-1.6c0.467-0.733,1.166-1.601,2.1-2.601c0.9-0.966,1.417-1.899,1.55-2.8
|
||||
c-0.366-0.2-0.683-0.283-0.949-0.25C331.417,247.833,330.967,247.95,330.3,248.15z"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Clip_Group_0_x3E_" width="330.893" height="178.79" x="0.057" y="-178.82" transform="matrix(1 0 0 -1 23.1499 195.9502)" style="overflow:visible;"/>
|
||||
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="159.4482" y1="-190.1753" x2="298.4509" y2="-190.1753" gradientTransform="matrix(-0.02 0.9998 -0.9998 -0.02 3.364272e-004 1.561102e-004)">
|
||||
<stop offset="0" style="stop-color:#C3EAD6"/>
|
||||
<stop offset="1" style="stop-color:#BDDAC2"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_7_);" d="M113.2,219.75c-0.367-0.434-0.883-1.15-1.55-2.15
|
||||
c0.233,0.434,0.533,1.301,0.9,2.601L113.2,219.75z M371.6,224.45v0.95c-0.066,0.767-0.267,1.916-0.6,3.449
|
||||
c-0.366,1.634-0.583,2.801-0.65,3.5c-0.066,0.767-0.116,2.017-0.149,3.75c-0.134,1.5-0.467,2.667-1,3.5l-0.05-0.85
|
||||
c-1.167,3.4-2.817,6.733-4.95,10c-2.233,3.467-4.634,6.283-7.2,8.45c1.767-3.767,3-6.55,3.7-8.351c1.166-3.1,1.934-6.05,2.3-8.85
|
||||
c-1.467,0.566-2.667,2.05-3.6,4.45c-0.534,1.3-1.267,3.2-2.2,5.7c0-2.2,0.017-3.851,0.05-4.95c0.066-1.867,0.25-3.483,0.55-4.851
|
||||
c-1.399,0.601-2.899,0.45-4.5-0.449c-1.733-1.2-3.066-1.967-4-2.301c-1.767-0.666-3.166-1.183-4.2-1.55
|
||||
c-1.899-0.666-3.283-1.066-4.149-1.2c-0.033,0-1.233,0.217-3.601,0.65c-2.066,0.366-3.066,0.35-3-0.05
|
||||
c-0.399,2.866-0.533,4.916-0.399,6.149c-1.733-3-3.117-5.25-4.15-6.75c-1.8-2.767-3.85-4.066-6.149-3.899
|
||||
c0.166,0.1,0.5,0.383,1,0.85c0.466,0.4,0.85,0.684,1.149,0.851c-4.633-2.467-10.55-4.817-17.75-7.051c0.233,1.167,0.9,2.301,2,3.4
|
||||
c0.934,0.9,2.033,1.667,3.3,2.3c-0.699-0.333-2.6-1.1-5.699-2.3c-2.334-0.934-4.233-1.833-5.7-2.7
|
||||
c-3.934-2.366-6.767-4.467-8.5-6.3c-0.967-1.1-1.667-1.85-2.101-2.25c-0.767-0.7-1.683-1.184-2.75-1.45h0.625
|
||||
c-0.592-0.014-2.184-0.147-4.774-0.399c-2-0.167-3.584-0.101-4.75,0.199c1.566,2.034,2.967,3.317,4.2,3.851
|
||||
c-0.934-0.167-2.684-0.7-5.25-1.601c-2.134-0.733-3.967-1.149-5.5-1.25c-1.634-0.1-6.317-0.583-14.051-1.449
|
||||
c-5.699-0.634-10.383-0.867-14.05-0.7c0.3,0.333,1.2,1.066,2.7,2.2c-1.667,0.066-3.616-0.167-5.85-0.7
|
||||
c-2.967-0.667-4.851-1.05-5.65-1.15c0.3,1.101,0.816,2.15,1.55,3.15c0.834,1.133,1.733,1.883,2.7,2.25
|
||||
c-1.95-0.041-3.9-0.474-5.85-1.3c-1.9-0.767-3.601-1.851-5.101-3.25c0,0.8,0.033,1.966,0.101,3.5c-0.767-0.4-1.601-1.367-2.5-2.9
|
||||
c-0.301,0.767-2.634,2.184-7,4.25c-4.267,2.033-6.75,2.983-7.45,2.85l0.3-0.3c-5.7,2.434-9.65,5.101-11.85,8
|
||||
c0.433-2.066,0.75-4.066,0.949-6c-0.666,0.601-2.25,2.316-4.75,5.15c-1.933,2.133-3.649,3.684-5.149,4.649
|
||||
c1.566-1.433,2.883-3.833,3.95-7.199c1.044-3.275,1.969-5.608,2.774-7c-1.271,1.856-3.13,3.589-5.575,5.199
|
||||
c-1.399,0.9-3.883,2.233-7.449,4c-3.5,1.4-6.25,2.517-8.25,3.351c-3.667,1.5-6.117,3-7.35,4.5c0.684-1.026,1.251-1.793,1.7-2.3
|
||||
c-5.919,3.403-10.636,5.47-14.15,6.199c2.066-1.466,3.667-2.883,4.8-4.25c1.434-1.699,2.417-3.616,2.95-5.75
|
||||
c-0.9,2.267-3.667,3.967-8.3,5.101c-4.966,1.233-8.066,2.767-9.3,4.6c-0.033-0.265,0-1.415,0.1-3.45
|
||||
c-0.026,0.304-0.326,0.854-0.9,1.65c-0.767,1-1.184,1.55-1.25,1.65c-0.267-1.801-0.517-2.95-0.75-3.45
|
||||
c-0.367-0.7-1.284-0.851-2.75-0.45c-1.267,0.333-2.75,1.167-4.45,2.5c-1.367,1.066-2.633,2.233-3.8,3.5
|
||||
c0.367-0.934,0.6-1.9,0.7-2.9c-1.267,0.667-3.133,1.634-5.6,2.9c-2,1.167-3.483,2.517-4.45,4.05c0.066-1.434,0.117-2.517,0.15-3.25
|
||||
c-1.5,1-2.717,2.95-3.65,5.851c-0.8,2.566-1.15,4.883-1.05,6.949c-0.433-1.767-1.517-4.066-3.25-6.899
|
||||
c-2.433-3.934-3.8-6.184-4.1-6.75c-0.067,0.566-0.067,1.233,0,2c0.033,0.467,0.117,1.133,0.25,2
|
||||
c-0.133-0.233-1.583-2.217-4.35-5.95c-1.934-2.566-3-4.684-3.2-6.35c-0.233-2.101,0.434-4.567,2-7.4c2-3.066,3.35-5.316,4.05-6.75
|
||||
c-0.8,0.106-1.617,0.44-2.45,1c0.101-0.105,0.201-0.206,0.3-0.3c1.367-1.267,1.983-2.101,1.85-2.5c-0.066-0.3-0.583-0.601-1.55-0.9
|
||||
c-1.067-0.267-1.717-0.45-1.95-0.55c-2.233-0.866-4.183-1.467-5.85-1.8c-1.966-0.4-4.017-0.533-6.15-0.4
|
||||
c-1.1,0.101-3.183,0.717-6.25,1.851c-3.333,1.267-5.117,2.233-5.35,2.899c0.633-1.666,0.934-2.616,0.9-2.85
|
||||
c-0.1-0.467-0.9-0.733-2.4-0.8c-1.133-0.067-2.517,0.267-4.15,1c-1.833,0.966-3.133,1.633-3.9,2c-3.033,1.5-5.583,2.983-7.65,4.449
|
||||
c-2.367,1.7-4.517,3.667-6.45,5.9c0-0.167,0.05-1.116,0.15-2.85c0.067-1.167,0-2.101-0.2-2.801c-0.7,0.167-1.35,0.684-1.95,1.551
|
||||
c-0.233,0.333-0.7,1.149-1.4,2.449c0.233-1.3,0.05-2.399-0.55-3.3l-0.55,0.9c0-0.033-1.033,0.2-3.1,0.7c-2.1,0.5-3.3,0.833-3.6,1
|
||||
c-0.333,0.199-2.35,0.966-6.05,2.3c-3.4,1.233-5.133,1.983-5.2,2.25c0.033-1.101,0.167-1.9,0.4-2.4
|
||||
c-1.533-0.066-2.95,0.684-4.25,2.25c-1.133,1.4-1.833,2.917-2.1,4.55c-1.467-2.5-2.333-5.199-2.6-8.1
|
||||
c-0.467,0.134-1.267,0.5-2.4,1.1c-1,0.5-1.8,0.784-2.4,0.851c0.3-0.7,0.533-1.184,0.7-1.45c-1.033,0.134-2.05,0.6-3.05,1.4
|
||||
c-1.1,0.866-1.7,1.8-1.8,2.8c-1.034-1.2-1.45-3.033-1.25-5.5c-2.667,1.2-3.85,3.6-3.55,7.2c0.133,2,0.9,4.85,2.3,8.55
|
||||
c-0.934-0.9-1.967-2.267-3.1-4.101c-1.567-2.533-2.5-4-2.8-4.399c-1.533-1.934-2.667-3.4-3.4-4.4c-1.267-1.767-2.033-3.434-2.3-5
|
||||
c-0.2,3.2,0.433,6.367,1.9,9.5c-1.2-1-2.317-2.366-3.35-4.1c-0.5-0.867-1.316-2.434-2.45-4.7c-1.333-2.767-2.15-4.917-2.45-6.45
|
||||
c-0.467-2.2-0.317-4.467,0.45-6.8c1.133-3.4,3.683-7.184,7.65-11.35c2.3-2.4,5.75-5.5,10.35-9.301c8.1-6.766,17.433-11.466,28-14.1
|
||||
c4-0.967,8.716-1.883,14.15-2.75c3.167-0.467,7.917-1.133,14.25-2c18.6-5.867,36.566-8.55,53.9-8.05
|
||||
c8,0.233,20.817-0.934,38.45-3.5c16.6-2.467,29.517-3.35,38.75-2.65c12.666,0.934,26.866,3.684,42.6,8.25
|
||||
c7.434,2.167,21.233,6.8,41.4,13.9l4.7,1.05l-1.101,0.2l7.65,2.65c4.366,1.466,10.983,3.466,19.85,6
|
||||
c9.2,2.733,20.634,7.2,34.3,13.4c4.5,2.033,8.134,4.517,10.9,7.45C369.934,216.116,371.634,220.116,371.6,224.45z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 34 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_flying_platforms_1.svg-457ce7685d3ceacc2b4c2276bbf6388c.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_flying_platforms_1.svg"
|
||||
dest_files=[ "res://.import/bck_flying_platforms_1.svg-457ce7685d3ceacc2b4c2276bbf6388c.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
364
glitch-ilmenskie-svg/ilmenskie/bck_flying_platforms_11.svg
Normal file
@ -0,0 +1,364 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="371.6px" height="372.75px" viewBox="0 0 371.6 372.75" style="enable-background:new 0 0 371.6 372.75;"
|
||||
xml:space="preserve">
|
||||
<symbol id="FlashAICB_x2F_Layer_3_x2F__x3C_Clip_Group_0_x3E_" viewBox="0.057 -178.82 330.893 178.839">
|
||||
<g id="Layer_1_6_">
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M323.5-35.55c-4.767,0.667-7.517,1.1-8.25,1.3c-4.767,1.233-13.033,3.883-24.8,7.95
|
||||
c-10.4,3.566-18.717,6.017-24.95,7.35c-4.967,1.067-14.25,2.067-27.85,3c-11.767,0.8-20.967,2.284-27.6,4.45l-1.1,0.35
|
||||
c-7.467,3.033-12.983,5.283-16.55,6.75c-6.367,2.566-12.083,3.983-17.15,4.25c-14.633,0.767-27.65-1.067-39.05-5.5
|
||||
c-4.767-1.867-10.633-2.767-17.6-2.7c-8.033,0.434-14.067,0.684-18.1,0.75c-3.233,0.067-7.65-0.35-13.25-1.25
|
||||
c-6.2-1-10.617-1.55-13.25-1.65c-4.4-0.167-9.667-0.167-15.8,0c-7,0.267-12.267,0.45-15.8,0.55c-8.767,0.7-16,1.017-21.7,0.95
|
||||
C10.067-9.133,3.483-10.983,0.95-14.55c-1.667-2.4-1-6.8,2-13.2c1.633-3.433,3.95-7.767,6.95-13
|
||||
c1.467-3.233,2.517-5.383,3.15-6.45c1.434-2.367,3.083-4.066,4.95-5.1c1.1-0.6,2.75-0.983,4.95-1.15
|
||||
c2.333-0.167,3.983-0.45,4.95-0.85c1.767-0.767,3.417-2.2,4.95-4.3c0.867-1.2,2.133-3.05,3.8-5.55c2.7-3.533,6.1-6.55,10.2-9.05
|
||||
c2.433-1.466,6.4-3.55,11.9-6.25c4.2-2.233,8.883-6.15,14.05-11.75c2.867-3.133,6.95-7.767,12.25-13.9
|
||||
c3.9-4.167,6.434-5.833,7.6-5c0.434,0.3,1.117,1.217,2.05,2.75c1.133,1.934,2.233,3.5,3.3,4.7c1-2.5,2.25-4.533,3.75-6.1
|
||||
c0.967-0.967,2.783-2.4,5.45-4.3c2.367-1.7,4.633-4.05,6.8-7.05c1.233-1.7,3.117-4.383,5.65-8.05c1.233-1.6,3.167-3.117,5.8-4.55
|
||||
c2.867-1.533,4.8-2.833,5.8-3.9c2.467-2.633,4.417-7.566,5.85-14.8c1.9-9.7,3.05-15.083,3.45-16.15
|
||||
c3.7-10.034,7.633-9.883,11.8,0.45c1.133,2.767,2.633,7.35,4.5,13.75c1.667,5.633,2.816,9.017,3.45,10.15
|
||||
c1.333,2.434,3.284,3.9,5.85,4.4c4.6,0.9,7.184,1.483,7.75,1.75c3.233,1.433,6.467,4.216,9.7,8.35
|
||||
c1.833,2.367,4.35,5.934,7.55,10.7c1.4,1.867,3.033,4.633,4.9,8.3c2,3.934,3.55,6.7,4.65,8.3c1.466,2.1,3.55,4.283,6.25,6.55
|
||||
c2.6,2.2,5.083,3.917,7.45,5.15c1.867,0.934,3.517,1.417,4.95,1.45c0.033,0,1.8-0.167,5.3-0.5
|
||||
c4.033-0.433,8.017-0.517,11.95-0.25c4.833,0.333,8.683,1.2,11.55,2.6c2.9,1.4,8.767,4.533,17.6,9.4
|
||||
c7.133,3.9,13,6.783,17.6,8.65c2.233,0.9,4.617,2.4,7.15,4.5c0.2,0.167,2.283,2.067,6.25,5.7c3.233,2.9,6.7,4.9,10.4,6
|
||||
c0.733,0.2,1.184,0.316,1.35,0.35c0.3,0,0.617-0.083,0.95-0.25c-0.1-0.867-0.617-1.817-1.55-2.85c-0.867-0.934-1.566-1.8-2.1-2.6
|
||||
c-0.233-0.4-0.483-0.917-0.75-1.55c-0.433-1.067-0.667-1.617-0.7-1.65c-0.633-1.1-0.917-1.75-0.85-1.95
|
||||
c0.1-0.267,0.4-0.3,0.9-0.1c0.3,0.1,0.667,0.267,1.1,0.5c0.567,0.233,1.767,0.95,3.6,2.15c4.1,2.1,7.816,4.883,11.15,8.35
|
||||
c2.967,3.067,4.983,5.25,6.05,6.55c2.2,2.7,3.75,5.2,4.65,7.5C329.517-36.8,327.033-36.083,323.5-35.55z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="Layer_3_1_" style="clip-path:url(#SVGID_2_);">
|
||||
<g>
|
||||
|
||||
<use xlink:href="#FlashAICB_x2F_Layer_3_x2F__x3C_Group_x3E__x5F_1" width="322.725" height="166.5" x="-0.013" y="-166.506" transform="matrix(1 0 0 1 6.1001 -5.7002)" style="overflow:visible;opacity:0.9219;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#FlashAICB_x2F_Layer_3_x2F__x3C_Group_x3E_" width="322.835" height="144.52" y="-144.52" transform="matrix(1 0 0 1 3.5 -34.2998)" style="overflow:visible;enable-background:new ;"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_4_1_">
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="FlashAICB_x2F_Layer_3_x2F__x3C_Group_x3E_" viewBox="0 -144.52 322.835 144.52">
|
||||
<g id="Layer_1_5_">
|
||||
<g>
|
||||
|
||||
<use xlink:href="#FlashAICB_x2F_Layer_3_x2F__x3C_Path_x3E__x5F_0" width="322.835" height="144.52" y="-144.52" style="overflow:visible;opacity:0.7305;enable-background:new ;"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="FlashAICB_x2F_Layer_3_x2F__x3C_Group_x3E__x5F_1" viewBox="-0.013 -166.506 322.725 166.5">
|
||||
<g id="Layer_1_4_">
|
||||
<g>
|
||||
|
||||
<use xlink:href="#FlashAICB_x2F_Layer_3_x2F__x3C_Path_x3E_" width="322.725" height="166.5" x="-0.013" y="-166.506" style="overflow:visible;opacity:0.3398;enable-background:new ;"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="FlashAICB_x2F_Layer_3_x2F__x3C_Path_x3E_" viewBox="-0.013 -166.506 322.725 166.5">
|
||||
<g id="Layer_1_2_">
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-24.0664" y1="-15794.3193" x2="36.3101" y2="-15794.3193" gradientTransform="matrix(0.007 -1 1 0.007 15955.4385 58.1509)">
|
||||
<stop offset="0" style="stop-color:#90B5B0"/>
|
||||
<stop offset="1" style="stop-color:#BDDAC3"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);" d="M294.05-47.9c-2.966-1.567-5.6-3.15-7.9-4.75
|
||||
c-7.9-5.467-13.9-11.733-18-18.8c-2.333-0.5-4.083-0.883-5.25-1.15c-2.066-0.5-3.767-1.083-5.1-1.75
|
||||
c0.467,1.067,1.284,2.317,2.45,3.75c0.667,0.833,1.65,1.983,2.95,3.45c1.033,1.2,2.8,2.933,5.3,5.2
|
||||
c2.367,2.2,4.117,3.983,5.25,5.35c0.567,0.667,3.033,2.667,7.4,6c3.833,3.3,5.233,5.6,4.2,6.9c-1.434-1.4-3.6-2.933-6.5-4.6
|
||||
c-3.233-1.8-5.55-3.133-6.95-4c0.434,1,0.8,1.683,1.1,2.05c-2.6-1.433-6.117-3.65-10.55-6.65c-4.8-3.267-8.25-5.517-10.35-6.75
|
||||
c0.4,0.633,1.117,1.45,2.15,2.45c1.033,1.067,1.75,1.883,2.15,2.45c0.367,0.533,0.783,1.317,1.25,2.35
|
||||
c0.467,1.066,0.867,1.867,1.2,2.4c-1.434-0.233-3.1-0.867-5-1.9c-0.467-0.267-1.983-1.2-4.55-2.8c-1.3-0.767-3.667-2.566-7.1-5.4
|
||||
c-0.6-0.5-1.467-1-2.6-1.5c-1.133-0.533-1.967-1-2.5-1.4s-1.35-1.283-2.45-2.65c-0.867-1.033-1.8-1.733-2.8-2.1
|
||||
c-2.833-2-5.267-3.6-7.3-4.8c-3.9-2.333-5.433-2.167-4.6,0.5c0.433,1.033,1.167,2.033,2.2,3c0.567,0.533,1.483,1.333,2.75,2.4
|
||||
c0.733,0.633,1.667,1.7,2.8,3.2c1.115,1.477,2.007,2.519,2.675,3.125c-1.115-0.962-3.324-2.087-6.625-3.375
|
||||
c-3.267-1.267-5.583-2.517-6.95-3.75c-3.1-3.2-5.466-5.566-7.1-7.1c-3-2.833-4.4-3.383-4.2-1.65c0.833,2.733,2.567,5.5,5.2,8.3
|
||||
c1.466,1.533,4.15,3.917,8.05,7.15c3.633,3.033,6.25,5.45,7.85,7.25c2.5,2.833,4.05,5.683,4.65,8.55
|
||||
c-6,1.034-10.883,1.15-14.65,0.35c-2.2-0.467-5.967-2.867-11.3-7.2c-4.966-4.1-10.1-8.9-15.4-14.4c-5.5-5.7-9.7-10.65-12.6-14.85
|
||||
c-3.233-4.733-4.167-7.633-2.8-8.7c-0.2-0.933-0.683-2.25-1.45-3.95c-0.833-1.767-1.367-3.066-1.6-3.9
|
||||
c1.6-0.033,3.8,0.934,6.6,2.9c2.667,1.867,4.8,2.65,6.4,2.35c-3.167-4.733-6.3-8.467-9.4-11.2c-0.6-0.534-2.85-1.883-6.75-4.05
|
||||
c-4.033-2.267-6.05-3.2-6.05-2.8c0.033,0.367-0.033,0.85-0.2,1.45c-0.2,0.667-0.3,1.05-0.3,1.15
|
||||
c-4.567-5.2-8.283-11.05-11.15-17.55c-2.8-6.4-4.667-13.117-5.6-20.15c-0.167-1.333-0.483-4.717-0.95-10.15
|
||||
c-0.8-4.7-2.367-6.983-4.7-6.85c-1.833,7.767-2.783,11.867-2.85,12.3c-0.8,4.467-1,8.65-0.6,12.55
|
||||
c0.533,5.2,0.633,9.417,0.3,12.65c-0.434,4.3-1.65,8.283-3.65,11.95c-1.367,2.2-2.367,3.883-3,5.05
|
||||
c-1.066,2.033-1.583,3.867-1.55,5.5c0.033,1.2,0.633,3.017,1.8,5.45c1.167,2.367,1.733,4.183,1.7,5.45
|
||||
c-0.033,1.667-0.567,3.25-1.6,4.75c-1.4,1.767-2.5,3.2-3.3,4.3c-1.833,2.566-3.2,5.066-4.1,7.5c-0.967,2.633-1.483,5.433-1.55,8.4
|
||||
c0,0.3,0.167,1.717,0.5,4.25c0.233,1.833,0.15,3.2-0.25,4.1c-0.4,0.9-0.967,1.517-1.7,1.85c-0.867,0.4-1.45,0.8-1.75,1.2
|
||||
c-1.333,1.733-2.15,3.633-2.45,5.7c-0.167,2.533-0.466,4.7-0.9,6.5c-4.933-1.4-7.533-6.167-7.8-14.3c0-0.2,0.05-3.55,0.15-10.05
|
||||
c0.067-3.867-0.183-6.717-0.75-8.55c-0.733,0.633-1.3,1.15-1.7,1.55c-0.767,0.7-1.316,1.333-1.65,1.9
|
||||
c-0.133-1.767,0.167-3.817,0.9-6.15c0.434-1.3,1.117-3.25,2.05-5.85c1.367-8.733,1.25-12.267-0.35-10.6
|
||||
c-3.3,3.367-5.833,6.567-7.6,9.6c-0.8,1.367-2.1,3.283-3.9,5.75c-1.867,2.567-3.183,4.5-3.95,5.8c-0.9,1.534-1.816,3.8-2.75,6.8
|
||||
c-1.033,3.233-1.883,5.517-2.55,6.85c-0.533,1.033-1.65,2.55-3.35,4.55c-1.6,1.867-2.65,3.4-3.15,4.6
|
||||
c-0.533,1.233-0.667,3.017-0.4,5.35c0.267,2.433,0.217,4.183-0.15,5.25c-0.934,2.7-3.817,5.45-8.65,8.25
|
||||
c-5.6,3.2-9,5.583-10.2,7.15c-0.7-0.733-1.117-1.817-1.25-3.25c-0.067-0.833-0.15-2.067-0.25-3.7c-0.133-0.9-0.75-2.633-1.85-5.2
|
||||
c-1-2.3-1.483-4-1.45-5.1c0.067-2.533,1.284-5.65,3.65-9.35c3.033-4.8,4.767-7.767,5.2-8.9c0.867-2.167,2.417-5.9,4.65-11.2
|
||||
c1.034-3.333-0.617-2.6-4.95,2.2c-2.633,2.9-6.517,7.25-11.65,13.05c-5.167,5.833-9.034,10.167-11.6,13
|
||||
c-1.367,1.5-2.9,3.75-4.6,6.75c-1.833,3.3-3.233,5.55-4.2,6.75c-1.133,1.4-2.7,2.1-4.7,2.1c-2.434-0.267-4.317-0.35-5.65-0.25
|
||||
c-1.967,0.133-3.367,0.667-4.2,1.6c-0.867,1.333-1.817,2.417-2.85,3.25c-0.7,0.566-1.933,0.917-3.7,1.05
|
||||
c-2.1,0.1-3.65,0.2-4.65,0.3c-3.7,0.433-5.15,2.3-4.35,5.6c0.367,1.567,2.216,3.3,5.55,5.2c1.767,1,4.15,2.35,7.15,4.05
|
||||
c2.133,1.633,3.9,2.767,5.3,3.4c1.9,0.833,3.95,1.167,6.15,1c3.8-0.3,8-0.233,12.6,0.2c1.566,0.167,5.767,0.7,12.6,1.6
|
||||
c16.733,2.133,34.7,3.583,53.9,4.35c16.167,0.633,34.183,0.8,54.05,0.5c20.933-0.367,38.717-1.317,53.35-2.85
|
||||
c19.4-2.033,36.867-5.383,52.4-10.05c9.933-2.934,21.217-7.434,33.85-13.5c0.5-0.233,3.15-1.684,7.95-4.35
|
||||
c3.267-1.8,5.983-3.033,8.15-3.7l0.25-0.05c0.8-0.233,2.583-0.4,5.35-0.5c2.4-0.333,3.7-1.233,3.9-2.7
|
||||
c0.066-0.433-0.15-0.867-0.65-1.3c-0.633-0.5-1.083-0.883-1.35-1.15l-0.7,0.6c-0.067-0.167-0.283-0.417-0.65-0.75
|
||||
c-0.333-0.333-0.533-0.566-0.6-0.7c0,0.133-0.05,0.35-0.15,0.65s-0.15,0.533-0.15,0.7c-1.067-0.4-1.817-0.733-2.25-1
|
||||
c-0.034,0.033-0.034,0.1,0,0.2c0.024,0.072,0.049,0.122,0.075,0.15c-0.477-0.215-1.385-0.715-2.725-1.5
|
||||
c0.4,0.8,0.934,1.534,1.6,2.2c-0.4-0.233-1.117-0.733-2.15-1.5c-0.9-0.633-1.633-1.067-2.2-1.3c0.2,0.267,0.367,0.65,0.5,1.15
|
||||
c-1.733,0.2-3.3,0.066-4.7-0.4c-0.567-0.167-2.017-0.833-4.35-2C297.183-46.333,294.45-47.7,294.05-47.9z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="FlashAICB_x2F_Layer_3_x2F__x3C_Path_x3E__x5F_0" viewBox="0 -144.52 322.835 144.52">
|
||||
<g id="Layer_1_3_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#474D41;" d="M304.2-22.65c-1.034-1.4-1.65-2.65-1.85-3.75
|
||||
c1.2,0.066,2.8,0.8,4.8,2.2c1.033,0.733,2.483,1.9,4.35,3.5c0.767,0.633,1.933,1.75,3.5,3.35c1.5,1.434,2.667,2.5,3.5,3.2
|
||||
c0.533,0.433,1.217,0.8,2.05,1.1c1.367,0.533,2.1,0.816,2.2,0.85c0.4-1.3-0.617-3.35-3.05-6.15
|
||||
c-0.167-0.167-1.917-1.917-5.25-5.25c-2.067-2.1-4.717-4.15-7.95-6.15c-1.3-0.8-4.233-2.45-8.8-4.95
|
||||
c-2.867-1.6-7.034-2.883-12.5-3.85c-6.733-1.167-11.05-2.067-12.95-2.7c-1.333-0.433-2.967-1.183-4.9-2.25
|
||||
c-2.333-1.267-3.934-2.083-4.8-2.45c-1.7-0.767-3.917-1.983-6.65-3.65c-3.066-1.9-5.233-3.167-6.5-3.8
|
||||
c-4.333-2.2-9.566-4.15-15.7-5.85c-6.333-1.067-11.267-1.967-14.8-2.7c-6.5-1.333-10.9-3.45-13.2-6.35l-0.55-0.75
|
||||
c-0.967-1.5-2.033-3.867-3.2-7.1c-1.167-3.367-2.2-5.767-3.1-7.2c-1.767-2.867-4.117-5.7-7.05-8.5
|
||||
c-2.167-2.1-4.983-4.467-8.45-7.1c-9.567-7.333-16.717-14.017-21.45-20.05c-2.167-2.733-3.617-4.633-4.35-5.7
|
||||
c-1.5-2.267-2.517-4.4-3.05-6.4c-0.133-0.5-0.35-1.967-0.65-4.4c-0.233-1.767-0.633-3.167-1.2-4.2c-2.133-3.9-5.133-5.433-9-4.6
|
||||
c-3.566,0.767-6.267,2.966-8.1,6.6c-1.833,3.667-4.483,8.15-7.95,13.45c-5.233,7.933-8.1,12.3-8.6,13.1
|
||||
c-2.2,3.533-5.267,6.617-9.2,9.25c-1.167,0.8-5,2.95-11.5,6.45c-3.867,2.1-7.167,4.9-9.9,8.4c-1.467,1.933-3.75,5.617-6.85,11.05
|
||||
c-1.333,2.4-3.55,4.967-6.65,7.7c-4.033,3.633-6.5,5.966-7.4,7c-2.233,2.9-3.933,5.05-5.1,6.45c-2.033,2.4-4.05,4.184-6.05,5.35
|
||||
c-1.9,1.133-4.233,2.8-7,5c-3.667,2.9-5.95,4.667-6.85,5.3c-0.933,0.667-2.117,1.267-3.55,1.8c-1.633,0.566-2.883,1.033-3.75,1.4
|
||||
c-1.934,0.8-3.6,2.05-5,3.75c-1.5,2.067-2.75,3.683-3.75,4.85c-1,1.133-2.4,2.183-4.2,3.15c-2.133,1.033-3.717,1.833-4.75,2.4
|
||||
c-1.1,0.567-2.583,1.617-4.45,3.15c-1.9,1.534-3.367,2.583-4.4,3.15C6.417-14.317,4.5-12.067,2.9-8.8C1.667-6.3,0.7-3.367,0,0
|
||||
c1.533-0.767,3.017-2.65,4.45-5.65c1.767-3.633,3-5.833,3.7-6.6c1.434-1.6,3.367-2.8,5.8-3.6c3.333-1.033,5.783-1.617,7.35-1.75
|
||||
c0.767-0.066,2.083-0.1,3.95-0.1c1.6-0.1,2.8-0.5,3.6-1.2c0.733-0.667,1.6-1.967,2.6-3.9c1.066-2.067,1.95-3.467,2.65-4.2
|
||||
c0.566-0.633,1.7-1.733,3.4-3.3c1.5-1.4,2.6-2.534,3.3-3.4c0.667-0.833,1.5-1.917,2.5-3.25c0.9-1,2.034-1.783,3.4-2.35
|
||||
c3.1-1.3,5.75-2.667,7.95-4.1c3.3-2.133,5.684-3.917,7.15-5.35c0.867-0.9,2.35-1.95,4.45-3.15c2.167-1.233,3.65-2.233,4.45-3
|
||||
c0.566-0.533,1.566-1.817,3-3.85c1.066-1.5,2.283-2.633,3.65-3.4c2.133-1.167,3.883-2.283,5.25-3.35
|
||||
c1.167-0.9,2.117-1.95,2.85-3.15c0.433-0.733,1.133-1.917,2.1-3.55c1.2,0.7,2.034,1.867,2.5,3.5c0.434,1.567,0.434,3.034,0,4.4
|
||||
c-0.966,1.7-1.617,2.983-1.95,3.85c-0.633,1.6,0.033,1.817,2,0.65c0.4-0.267,0.85-0.8,1.35-1.6c0.566-0.9,0.983-1.467,1.25-1.7
|
||||
c0.333-0.333,0.9-0.733,1.7-1.2c0.8-0.5,1.367-0.9,1.7-1.2c0.7-0.667,1.417-1.683,2.15-3.05c0.9-1.733,1.5-2.817,1.8-3.25
|
||||
c0.934-1.333,2.8-2.867,5.6-4.6c2.633-1.633,4.383-3.25,5.25-4.85c0.434-0.767,0.833-1.85,1.2-3.25
|
||||
c0.433-1.567,0.783-2.65,1.05-3.25c0.434-1.067,1.167-2.05,2.2-2.95c0.566-0.5,1.6-1.233,3.1-2.2c0.2-0.133,1.167-0.9,2.9-2.3
|
||||
c1.566-1.233,2.433-1.867,2.6-1.9c0.6-0.1,0.933,0.633,1,2.2c0,1.833,0.017,3.033,0.05,3.6c1.267-1.733,2.533-3.817,3.8-6.25
|
||||
c0.733-1.4,1.8-3.6,3.2-6.6c1.467-3.167,2.483-7.333,3.05-12.5c0.9-8.067,1.4-12.35,1.5-12.85c0.4-2.267,1.017-4.167,1.85-5.7
|
||||
c1.233-2.333,2.75-3.267,4.55-2.8c2.2,0.567,3.883,3.033,5.05,7.4c0.967,4.9,1.683,8.033,2.15,9.4c0.367,1,1.15,2.617,2.35,4.85
|
||||
c1.1,2.067,1.833,3.717,2.2,4.95c0.5,2.233,0.883,3.867,1.15,4.9c0.433,1.867,1.05,3.467,1.85,4.8c1.367,2.3,2.483,4,3.35,5.1
|
||||
c1.8,2.3,3.284,3.317,4.45,3.05c-0.1-0.567-0.483-1.85-1.15-3.85c-0.4-1.867-0.233-3.05,0.5-3.55
|
||||
c0.533-0.367,1.583-0.267,3.15,0.3c0.033,0,1.1,0.45,3.2,1.35c1.633,0.667,3.15,1.833,4.55,3.5c0.8,0.966,2,2.517,3.6,4.65
|
||||
c2.9,3.3,5.2,7.017,6.9,11.15c0.7,1.733,1.783,4.05,3.25,6.95c1.7,3.367,2.833,5.683,3.4,6.95c1.467,3.267,4.283,6.133,8.45,8.6
|
||||
c1.167,0.7,2.95,1.683,5.35,2.95c2.133,1.2,3.85,2.3,5.15,3.3c2.467,1.933,3.733,2.933,3.8,3c1.533,1.167,2.883,2.067,4.05,2.7
|
||||
c-0.167-0.567-0.784-1.434-1.85-2.6c-0.934-1-1.4-1.917-1.4-2.75c0.133-0.033,0.933-0.467,2.4-1.3c0.8-0.466,1.75-0.617,2.85-0.45
|
||||
c0.733,0.1,1.833,0.433,3.3,1c1.4,0.566,2.483,0.883,3.25,0.95c-0.233-0.667-0.417-1.1-0.55-1.3c2.2-0.8,4.75-0.767,7.65,0.1
|
||||
c1.1,0.333,3.483,1.333,7.15,3c0.9,0.4,2.233,0.816,4,1.25c1.9,0.467,3.25,0.867,4.05,1.2c1,0.4,1.967,1.017,2.9,1.85
|
||||
c0.566,0.5,1.417,1.317,2.55,2.45c2.467,2.233,3.767,3.4,3.9,3.5c1.504,1.308,2.863,2.375,4.075,3.2
|
||||
c-0.719-0.524-1.627-1.674-2.725-3.45c-1.167-1.8-1.833-3.15-2-4.05c1,0.133,2.083,0.583,3.25,1.35c0.667,0.4,1.633,1.067,2.9,2
|
||||
c0.6,0.367,1.517,0.8,2.75,1.3c1.267,0.5,2.184,0.933,2.75,1.3c0.733,0.467,1.733,1.133,3,2c1.1,0.733,2.167,1.283,3.2,1.65
|
||||
c1.7,0.633,2.633,0.983,2.8,1.05c0.967,0.433,1.8,0.95,2.5,1.55c0.4,0.3,1.1,1.1,2.1,2.4c0.967,1.033,1.733,1.283,2.3,0.75
|
||||
c1.267,0.8,3.184,2.35,5.75,4.65c2.367,2.1,4.317,3.583,5.85,4.45c3.434,2,6.184,3.317,8.25,3.95c2.1,0.633,2.917,0.35,2.45-0.85
|
||||
c-0.267-0.7-1.05-1.95-2.35-3.75C305.617-20.683,304.767-21.85,304.2-22.65z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-262.4053" y1="91.0015" x2="-117.7363" y2="91.0015" gradientTransform="matrix(-0.1141 -0.9935 0.9935 -0.1141 1.788288e-004 -9.683892e-004)">
|
||||
<stop offset="0.0078" style="stop-color:#29545A"/>
|
||||
<stop offset="0.3333" style="stop-color:#60A183"/>
|
||||
<stop offset="1" style="stop-color:#B7DCCD"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_4_);" d="M166.95,164.2c-3.534,0.2-9.05,0.85-16.55,1.95
|
||||
c-7.167,1.033-12.683,1.633-16.55,1.8c-1.733,0.066-8.434,0.75-20.1,2.05c-8.2,0.867-14.9,0.983-20.1,0.35
|
||||
c-8.233-1.067-17.066-0.117-26.5,2.85c-2.566,0.833-5.2,1.816-7.9,2.95c-4.267,2.033-7.517,3.55-9.75,4.55
|
||||
c-4,1.8-7.367,2.95-10.1,3.45c1-1.633,2.45-3.3,4.35-5c0.933-0.867,2.667-2.283,5.2-4.25c1.333-1.033,2.75-2.433,4.25-4.2
|
||||
c2.233-2.567,3.517-4.034,3.85-4.4c1.6-1.6,2.867-2.433,3.8-2.5c0.667-0.066,2.183,0.034,4.55,0.3c3.533,0.066,6.934-1.2,10.2-3.8
|
||||
c2.4-1.9,5.117-4.933,8.15-9.1c3.267-4.8,5.75-8.267,7.45-10.4c2.9-3.7,5.633-6.233,8.2-7.6c3.4-1.8,6.783-1.55,10.15,0.75
|
||||
c2.067,1.433,4.9,4.417,8.5,8.95c3.7,4.667,6.5,7.684,8.4,9.05c3.233,2.367,6.45,2.683,9.65,0.95c1.467-0.8,3.1-1.717,4.9-2.75
|
||||
c1.433-0.433,3.3-0.05,5.6,1.15c0.8,0.434,2.833,2.1,6.1,5c2.566,2.267,4.783,3.467,6.65,3.6c0.867,0.067,1.733-0.217,2.6-0.85
|
||||
c0.966-0.667,1.733-1.033,2.3-1.1c1.133-0.133,2-0.133,2.6,0c0.4,0.1,1.233,0.316,2.5,0.65c1.467,0.3,3.917,0.783,7.35,1.45
|
||||
c3,0.7,5.3,1.534,6.9,2.5c-1.867,0.9-4.567,1.4-8.1,1.5C171.5,164.05,168.65,164.1,166.95,164.2z"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-583.98" y1="171.9141" x2="103.9549" y2="171.9141" gradientTransform="matrix(-0.114 -0.9935 0.9935 -0.114 1.447797e-004 1.658425e-004)">
|
||||
<stop offset="0.0078" style="stop-color:#29545A"/>
|
||||
<stop offset="0.3333" style="stop-color:#61A284"/>
|
||||
<stop offset="1" style="stop-color:#B7DCCD"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_5_);" d="M155.8,49.75l-0.35,2.35l1-0.8L155.8,49.75z
|
||||
M146.5,46.35l-0.3-1.05l-0.35,0.55c-0.167,0.833-0.25,1.333-0.25,1.5l-0.4-0.55c-1.367,1.934-2.983,3.934-4.85,6
|
||||
c-2.8,3.333-4.6,6.117-5.4,8.35c-1.3,3.567-0.617,6.467,2.05,8.7c-0.167-1.8,1.117-4.117,3.85-6.95c1.667-1.7,3.9-3.5,6.7-5.4
|
||||
c1.567-1.067,3.767-2.533,6.6-4.4l-0.55-5.7c-0.1,0.4-0.417,1.133-0.95,2.2c-0.433-1.133-0.517-2.233-0.25-3.3
|
||||
c-0.233,0.733-0.45,1.95-0.65,3.65c0.067-1.733-0.167-3.267-0.7-4.6c-0.5,2.2-0.833,4.083-1,5.65
|
||||
c-0.367-1.667-0.683-2.95-0.95-3.85c-0.434-1.566-1.017-2.7-1.75-3.4c-0.033,0.233-0.184,0.65-0.45,1.25
|
||||
C146.667,45.567,146.533,46.017,146.5,46.35z M141.225,39.4c0.029,0.733-0.229,1.6-0.775,2.6c-0.534,0.967-1.117,1.75-1.75,2.35
|
||||
c0-1.067,0.033-1.867,0.1-2.4c-0.2,0.533-0.6,1.316-1.2,2.35c0.167-0.8,0.25-1.8,0.25-3c-1.434,0.633-2.867,1.983-4.3,4.05
|
||||
c-1.1,2-2.267,3.9-3.5,5.7c-1.8,2.667-2.783,5.3-2.95,7.9c-0.167,2.2,0.233,4.267,1.2,6.2c0.067-1.333,0.317-2.65,0.75-3.95
|
||||
c0.967-2.567,3.317-5.333,7.05-8.3c4.433-3.5,7.183-5.983,8.25-7.45c-0.633-1.2-1-2.417-1.1-3.65c-0.233,1.1-0.75,2.75-1.55,4.95
|
||||
c0.066-0.967,0.017-2.233-0.15-3.8C141.377,41.137,141.269,39.954,141.225,39.4z M198.75,57.95c-0.333,1.533-0.616,2.633-0.85,3.3
|
||||
c0.133-1.633-0.051-3.633-0.551-6l-0.5,0.6c0.167,4.767,0.017,8.683-0.449,11.75c-0.362,2.203-1.262,5.736-2.7,10.6
|
||||
c0.172-0.421,0.655-1.071,1.45-1.95c0.466-0.533,1.083-1.217,1.85-2.05c0.4-0.567,1.333-1.733,2.8-3.5
|
||||
c1.267-1.5,2.167-2.7,2.7-3.6c2-3.333,3.417-6.95,4.25-10.85l-0.55,1c-0.295-1.114-0.253-2.247,0.125-3.4
|
||||
c-0.459,1.28-0.95,2.33-1.476,3.15c-0.3-1.7-0.383-3.167-0.25-4.4c-0.3,1-0.85,2.183-1.649,3.55
|
||||
c-0.934,1.533-1.617,2.684-2.05,3.45c-0.267-1.1-0.233-2.25,0.1-3.45c-0.167,0.4-0.483,1.033-0.95,1.9
|
||||
c-0.467-0.966-0.616-2.05-0.45-3.25C199.333,55.467,199.05,56.517,198.75,57.95z M194.1,58.15c-0.313-0.625-0.521-1.092-0.625-1.4
|
||||
c0.215,0.704,0.29,1.704,0.226,3c-0.4-1.367-0.834-2.483-1.3-3.35c-0.534,1.633-0.851,2.934-0.95,3.9l-0.4-1.45l-0.8,3.55
|
||||
c0.1-1.033,0.1-2.083,0-3.15c-0.1-0.667-0.184-1.067-0.25-1.2v0.05c-0.467,1.367-0.934,3.25-1.4,5.65
|
||||
c-0.533,3.033-0.899,4.933-1.1,5.7c0.566-2.534,0.717-5.633,0.45-9.3c-0.434,0.667-0.7,1.3-0.8,1.9l0.05-1.45
|
||||
c-0.834,0.8-1.467,1.833-1.9,3.1c-0.133-0.833-0.184-1.467-0.149-1.9c-0.8,1.434-1.384,2.85-1.75,4.25
|
||||
c-0.1-0.633-0.167-1.117-0.2-1.45c-0.1-0.567-0.117-1.083-0.05-1.55c-0.7,0.833-1.316,1.85-1.85,3.05
|
||||
c-0.533,1.133-0.85,2.133-0.95,3c-0.267-1.033-0.434-2.434-0.5-4.2c-0.8,3.033-1.233,5.65-1.3,7.85
|
||||
c-0.678-3.132-0.995-5.407-0.95-6.825c-0.108,1.839-0.325,4.564-0.65,8.175c-0.267,3.333-0.333,6.1-0.2,8.3
|
||||
c-0.367-1.867-0.7-4.75-1-8.65c-0.267-3.867-0.6-6.767-1-8.7c0.167,0.934,0.2,2.15,0.1,3.65c-0.033,0.867-0.117,2.117-0.25,3.75
|
||||
c-1.299-5.1-1.916-8.758-1.85-10.975l-0.3,5.325c-1.067-2.633-1.7-5.35-1.9-8.15l-0.3,0.5c-0.167-0.833-0.233-1.5-0.2-2
|
||||
c-0.933,1.533-1.55,3.217-1.85,5.05c-0.4-1.233-0.617-2.333-0.65-3.3c-0.8,1.5-1.3,3.467-1.5,5.9c-0.133,1.4-0.233,3.467-0.3,6.2
|
||||
c-0.367-1.767-0.633-4.083-0.8-6.95c-0.233-3.267-0.267-6.4-0.1-9.4c-0.4,0.067-0.8,1.75-1.2,5.05
|
||||
c-0.333,2.767-0.5,4.816-0.5,6.15c-0.3-2.3-0.533-4.05-0.7-5.25c-0.267-2.1-0.6-3.833-1-5.2c0,0.7-0.067,1.717-0.2,3.05
|
||||
c-0.594-2.179-1.303-3.871-2.125-5.075c0.335,0.52,0.194,1.579-0.425,3.175c-0.7-0.833-1.25-1.966-1.65-3.4
|
||||
c-0.667,0.8-1.367,1.533-2.1,2.2l-0.2,0.95l-0.15-0.65c-0.867,0.767-1.883,1.583-3.05,2.45c-4.5,3.167-7.283,5.667-8.35,7.5
|
||||
c-1.667,2.9-0.55,5.533,3.35,7.9c5.034,1.033,8.383,1.933,10.05,2.7c3.333,1.6,5.4,4.167,6.2,7.7c0.567,2.5,0.667,6.567,0.3,12.2
|
||||
c-0.333,5.333-0.117,9.316,0.65,11.95c1.5,5.167,5.517,6.833,12.05,5c2.2-0.633,4.833-1.7,7.9-3.2
|
||||
c1.666-0.833,3.767-1.917,6.3-3.25c3.1-1.5,5.983-2.817,8.65-3.95c-2.7-0.333-4.983-1.267-6.851-2.8
|
||||
c-2.066-1.667-3.333-3.8-3.8-6.4c-0.667-3.833,0.066-8.583,2.2-14.25c2.633-7,4.083-11.65,4.35-13.95
|
||||
c0.367-3.433,0.4-6.183,0.101-8.25L194.1,58.15z M249.95,59.3c-0.498-0.685-0.849-1.227-1.05-1.625
|
||||
c0.172,0.372,0.488,1.28,0.949,2.725l-0.85-1c0.267,0.667,0.384,1.517,0.35,2.55c0,0.6-0.05,1.483-0.149,2.65
|
||||
c-0.467-1.067-0.717-2.067-0.75-3c-0.167,1.467-0.667,3.4-1.5,5.8c-0.967,2.7-1.566,4.6-1.8,5.7
|
||||
c0.033-0.867,0.283-2.417,0.75-4.65c0.433-1.934,0.583-3.517,0.449-4.75c-0.233,1.367-0.733,2.7-1.5,4l-0.1-3.85
|
||||
c-0.4,1.367-1.233,2.6-2.5,3.7c-0.323-0.387-0.348-0.837-0.075-1.35c-1.352,2.405-2.177,4.005-2.475,4.8
|
||||
c-0.066-1.6,0.25-3.033,0.95-4.3c-1.134,1.4-1.95,2.517-2.45,3.35c-0.834,1.367-1.367,2.684-1.601,3.95
|
||||
c-0.699-1.933-0.949-3.533-0.75-4.8c-0.733,3.5-1.149,5.433-1.25,5.8c0.034-0.733-0.066-1.617-0.3-2.65
|
||||
c-0.333-1.533-0.517-2.417-0.55-2.65c0,1.1-0.384,2.733-1.15,4.9c-0.8,2.267-1.233,4.85-1.3,7.75c-0.3-4.2-0.133-7.567,0.5-10.1
|
||||
c-0.366,0.833-0.883,2.333-1.55,4.5c0.066-1.667,0.116-2.917,0.15-3.75c0.1-1.467,0.267-2.683,0.5-3.65
|
||||
c-0.233,0.5-0.65,1.25-1.25,2.25c0.033-1.167,0.083-2.05,0.149-2.65c-0.434,1.233-1.383,3.55-2.85,6.95
|
||||
c0.066-1.066,0.083-2.433,0.05-4.1c-0.066-2-0.1-3.333-0.1-4c-0.7,1.2-1.117,2.267-1.25,3.2c-0.301-0.567-0.551-1.017-0.75-1.35
|
||||
c-0.301-0.566-0.5-1.017-0.601-1.35c-0.233,0.567-0.434,1.317-0.6,2.25c-0.101,0.5-0.233,1.267-0.4,2.3
|
||||
c-0.2-0.633-0.45-1.783-0.75-3.45c-0.267-1.6-0.55-2.816-0.85-3.65c-0.066,0.567-0.334,1.467-0.8,2.7
|
||||
c-0.267-0.733-0.584-2.034-0.95-3.9c-0.101,0.467-0.316,1.217-0.65,2.25c-0.133-0.367-0.366-0.9-0.7-1.6
|
||||
c-0.366-0.7-0.6-1.2-0.699-1.5c-1.534,3.931-2.335,7.506-2.4,10.725c-0.026-4.243-0.442-7.801-1.25-10.675
|
||||
c-0.2,0.667-0.366,1.617-0.5,2.85c-0.134,1.333-0.283,2.283-0.45,2.85c-0.533-4.067-0.899-7.1-1.1-9.1
|
||||
c-0.367,1.7-0.566,2.75-0.601,3.15c-0.1-0.4-0.267-1.383-0.5-2.95c-0.166-1.2-0.399-2.133-0.699-2.8
|
||||
c-0.067,1.433-0.134,2.4-0.2,2.9c-0.134,1.067-0.384,1.934-0.75,2.6c-0.033-1.067-0.184-2.317-0.45-3.75
|
||||
c-0.366-1.633-0.634-2.867-0.8-3.7c-0.533,3.7-1.634,7.333-3.3,10.9c-1.634,3.5-4.567,8.65-8.801,15.45
|
||||
c-2.866,5.567-2.966,9.5-0.3,11.8c2.667,2.3,7.617,3.767,14.851,4.4c12.767-3.633,24.483-3.65,35.149-0.05
|
||||
c9.4,3.167,17.65,10.067,24.75,20.7c6.334,9.5,10.367,19.667,12.101,30.5c0.966,5.967,1.483,13.783,1.55,23.45
|
||||
c0.1,12.133,0.283,19.934,0.55,23.399c-11.833-4.233-25.566-6.616-41.2-7.149c-3.899-0.134-17.833,0.116-41.8,0.75
|
||||
c1.533-2.767,3.767-6.317,6.7-10.65c4.566-6.767,7.017-10.417,7.35-10.95c5.8-8.967,9.351-16.684,10.65-23.15
|
||||
c2.633-13.267-1-20.567-10.9-21.9c-5.233-0.667-14.717,0.833-28.45,4.5c-9,2.434-15.466,3.5-19.399,3.2
|
||||
c-6.667-0.5-11.617-3.133-14.85-7.9c-3.2-4.767-4.217-10.917-3.05-18.45c0.9-4.1,1.5-7.316,1.8-9.65
|
||||
c0.533-4.2,0.183-7.267-1.05-9.2c-0.9-1.433-2.35-2.633-4.35-3.6c-0.9-0.4-2.817-1.1-5.75-2.1
|
||||
c-4.367-1.267-8.083-3.383-11.15-6.35c-3.3-3.167-5.05-6.683-5.25-10.55c-0.267-4.333,1.467-8.833,5.2-13.5
|
||||
c1.933-2.467,3.4-4.617,4.4-6.45l0.15-0.85l-3,3.6c0.067-0.1,0.367-0.75,0.9-1.95c-1.1,1.4-1.95,2.434-2.55,3.1
|
||||
c0.1-1.066,0.2-1.85,0.3-2.35c-1.934,2.4-3.65,5.55-5.15,9.45c0-0.8,0.1-1.983,0.3-3.55c0.233-1.567,0.333-2.7,0.3-3.4
|
||||
c-1.167,1.9-1.85,4.784-2.05,8.65c-0.233,4.833-0.617,8.183-1.15,10.05c0.267-2.133,0.333-4.867,0.2-8.2
|
||||
c-0.233-3.8-0.4-6.566-0.5-8.3c-0.733,1.333-1.267,3.45-1.6,6.35c-0.2,1.633-0.4,3.9-0.6,6.8c0.167-3.267,0.216-5.816,0.15-7.65
|
||||
c-0.167-3.067-0.684-5.483-1.55-7.25c-0.5,1.067-0.983,2.8-1.45,5.2c-0.1-1.2-0.184-1.917-0.25-2.15
|
||||
c-0.133-0.733-0.4-1.383-0.8-1.95c0.034,0.066-0.066,0.233-0.3,0.5c-0.2,0.267-0.35,0.433-0.45,0.5c-0.4-0.8-0.783-1.133-1.15-1
|
||||
c-0.467,0.3-0.883,0.433-1.25,0.4c-0.167,0.633-0.517,1.55-1.05,2.75c-0.1-1.767-0.15-2.667-0.15-2.7
|
||||
c-0.167,0.633-0.467,1.6-0.9,2.9c-0.333,1.167-0.483,2.183-0.45,3.05l-0.25-3.65c-0.4,0.566-0.767,1.35-1.1,2.35
|
||||
c-0.167,0.566-0.4,1.35-0.7,2.35c0-1.566,0.034-2.733,0.1-3.5c-1,2.233-1.6,4.233-1.8,6c0-3.033,0.017-4.833,0.05-5.4
|
||||
c-0.867,2.833-1.367,6.684-1.5,11.55c-0.233,7.133-0.383,11.083-0.45,11.85c-0.267-2.233-0.4-5.966-0.4-11.2
|
||||
c0-4.9-0.2-8.633-0.6-11.2c-0.9,1.8-1.417,4.684-1.55,8.65c-0.367-1.433-0.55-3.117-0.55-5.05c-0.032-0.614,0.009-2.247,0.125-4.9
|
||||
c-0.073,0.957-0.381,3.007-0.925,6.15c-0.466,2.833-0.6,5.117-0.4,6.85c-1.1-6.467-1.433-11.483-1-15.05
|
||||
c-0.167,0.5-0.333,1.25-0.5,2.25c-0.167,1.067-0.316,1.817-0.45,2.25c-0.233-1.167-0.417-3.033-0.55-5.6l-0.3,1.15
|
||||
c-0.467-0.833-0.733-1.517-0.8-2.05l-0.9,0.9c-0.4-0.633-0.65-1.15-0.75-1.55v2.1c-0.7-0.633-1.283-1.483-1.75-2.55
|
||||
c-0.467-1.067-0.733-2.083-0.8-3.05c0,0.367-0.05,0.917-0.15,1.65c-0.7-1-1.317-2.633-1.85-4.9c0,0.5-0.05,1.267-0.15,2.3
|
||||
c-0.333-0.5-0.583-1.15-0.75-1.95c-0.167-0.933-0.3-1.617-0.4-2.05l-0.5,1.45c-0.333-1.1-0.5-2.35-0.5-3.75
|
||||
c-0.033,0.6-0.066,1.55-0.1,2.85c-0.067,1.1-0.2,1.983-0.4,2.65c-0.8-1.333-1.167-3.1-1.1-5.3c0.233-2.533,0.4-4.367,0.5-5.5
|
||||
c-0.3,0.8-0.567,1.917-0.8,3.35c-0.267,1.667-0.483,2.816-0.65,3.45c-0.433-3.066-0.333-6.25,0.3-9.55
|
||||
c0.267-1.2,0.567-2.3,0.9-3.3c1.4-3.767,4.283-7.517,8.65-11.25c3.8-3.267,7.816-5.833,12.05-7.7c8.467-3.7,18.55-6.05,30.25-7.05
|
||||
C143.583-0.267,150,0,156.4,1.1c5.767,1,11.217,2.617,16.35,4.85c5.433,2.367,10.15,5.533,14.15,9.5
|
||||
c2.5,2.5,4.483,5.033,5.949,7.6c1.967-0.9,3.834-1.517,5.601-1.85c4.366-0.833,9.316-0.75,14.85,0.25
|
||||
c4.8,0.9,9.55,2.383,14.25,4.45c5.4,2.367,9.9,5.617,13.5,9.75c1.8,2.067,3.066,3.9,3.8,5.5
|
||||
C248.816,47.483,250.517,53.533,249.95,59.3z"/>
|
||||
</g>
|
||||
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="38.728" y1="267.1934" x2="370.2051" y2="267.1934" gradientTransform="matrix(0.9973 0.0737 -0.0737 0.9973 -7.832795e-005 -7.466972e-005)">
|
||||
<stop offset="0" style="stop-color:#BBD6C1"/>
|
||||
<stop offset="0.1255" style="stop-color:#AEC9B2"/>
|
||||
<stop offset="0.3569" style="stop-color:#9AB59C"/>
|
||||
<stop offset="0.502" style="stop-color:#92AE93"/>
|
||||
<stop offset="1" style="stop-color:#C2DAC7"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_6_);" d="M330.3,246.1c-3.7,1.101-7.166,3.101-10.399,6
|
||||
c-3.967,3.634-6.051,5.534-6.25,5.7c-2.534,2.101-4.917,3.601-7.15,4.5c-4.6,1.867-10.467,4.75-17.6,8.65
|
||||
c-8.834,4.866-14.7,8-17.601,9.399c-2.866,1.4-6.717,2.267-11.55,2.601c-3.934,0.267-7.917,0.184-11.95-0.25
|
||||
c-3.5-0.334-5.267-0.5-5.3-0.5c-1.434,0.033-3.083,0.517-4.95,1.45c-2.366,1.233-4.85,2.949-7.45,5.149
|
||||
c-2.699,2.267-4.783,4.45-6.25,6.55c-1.1,1.601-2.649,4.367-4.649,8.301c-1.867,3.666-3.5,6.433-4.9,8.3
|
||||
c-1.633,2.166-4.149,5.733-7.55,10.7c-3.233,4.133-6.467,6.916-9.7,8.35c-0.566,0.267-3.149,0.85-7.75,1.75
|
||||
c-2.566,0.5-4.517,1.967-5.85,4.4c-0.633,1.133-1.784,4.517-3.45,10.149c-1.867,6.4-3.367,10.983-4.5,13.75
|
||||
c-4.167,10.334-8.1,10.483-11.8,0.45c-0.4-1.066-1.55-6.45-3.45-16.15c-1.433-7.233-3.383-12.166-5.85-14.8
|
||||
c-1-1.066-2.933-2.366-5.8-3.899c-2.633-1.434-4.567-2.95-5.8-4.551c-2.533-3.666-4.417-6.35-5.65-8.05
|
||||
c-2.167-3-4.433-5.35-6.8-7.05c-2.667-1.9-4.483-3.333-5.45-4.3c-1.5-1.566-2.75-3.601-3.75-6.101c-1.066,1.2-2.167,2.767-3.3,4.7
|
||||
c-0.934,1.533-1.617,2.45-2.05,2.75c-1.167,0.834-3.7-0.833-7.6-5c-5.3-6.133-9.383-10.767-12.25-13.899
|
||||
c-5.167-5.601-9.85-9.517-14.05-11.75c-5.5-2.7-9.467-4.784-11.9-6.25c-4.1-2.5-7.5-5.517-10.2-9.051
|
||||
c-1.667-2.5-2.933-4.35-3.8-5.55c-1.533-2.1-3.183-3.533-4.95-4.3c-0.966-0.4-2.617-0.684-4.95-0.85
|
||||
c-2.2-0.167-3.85-0.551-4.95-1.15c-1.867-1.033-3.517-2.733-4.95-5.1c-0.633-1.067-1.684-3.217-3.15-6.45
|
||||
c-3-5.233-5.316-9.566-6.95-13c-3-6.4-3.667-10.8-2-13.2c2.533-3.566,9.117-5.417,19.75-5.55c5.7-0.066,12.933,0.25,21.7,0.95
|
||||
c3.534,0.1,8.8,0.283,15.8,0.55c6.133,0.166,11.4,0.166,15.8,0c2.633-0.101,7.05-0.65,13.25-1.65
|
||||
c5.6-0.899,10.017-1.316,13.25-1.25c4.033,0.066,10.067,0.316,18.1,0.75c6.967,0.066,12.833-0.833,17.6-2.7
|
||||
c11.4-4.433,24.417-6.267,39.05-5.5c5.066,0.267,10.783,1.684,17.149,4.25c3.566,1.467,9.084,3.717,16.55,6.75l1.101,0.351
|
||||
c6.633,2.166,15.833,3.649,27.6,4.45c13.601,0.933,22.884,1.933,27.851,3c6.233,1.333,14.55,3.783,24.949,7.35
|
||||
c11.767,4.066,20.034,6.717,24.801,7.95c0.733,0.2,3.483,0.633,8.25,1.3c3.533,0.533,6.017,1.25,7.449,2.15
|
||||
c-0.899,2.3-2.449,4.8-4.649,7.5c-1.066,1.3-3.084,3.483-6.05,6.55c-3.334,3.467-7.051,6.25-11.15,8.35
|
||||
c-1.833,1.2-3.033,1.917-3.6,2.15c-0.434,0.233-0.801,0.399-1.101,0.5c-0.5,0.2-0.8,0.166-0.899-0.101
|
||||
c-0.067-0.199,0.216-0.85,0.85-1.949c0.033-0.034,0.267-0.584,0.7-1.65c0.267-0.634,0.517-1.15,0.75-1.55
|
||||
c0.533-0.8,1.233-1.667,2.1-2.601c0.934-1.033,1.45-1.983,1.55-2.85c-0.333-0.167-0.649-0.25-0.949-0.25
|
||||
C331.483,245.783,331.033,245.9,330.3,246.1z"/>
|
||||
|
||||
<use xlink:href="#FlashAICB_x2F_Layer_3_x2F__x3C_Clip_Group_0_x3E_" width="330.893" height="178.839" x="0.057" y="-178.82" transform="matrix(1 0 0 -1 23.1499 193.9502)" style="overflow:visible;"/>
|
||||
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="157.4482" y1="-190.1348" x2="296.4509" y2="-190.1348" gradientTransform="matrix(-0.02 0.9998 -0.9998 -0.02 3.364272e-004 1.561102e-004)">
|
||||
<stop offset="0" style="stop-color:#C4EAD7"/>
|
||||
<stop offset="1" style="stop-color:#BDDAC3"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_7_);" d="M113.25,217.75c-0.5-0.566-1.033-1.283-1.6-2.15
|
||||
c0.2,0.334,0.5,1.184,0.9,2.551L113.25,217.75z M371.6,222.45v0.95c-0.066,0.767-0.267,1.899-0.6,3.399
|
||||
c-0.366,1.634-0.583,2.816-0.65,3.55c-0.066,0.767-0.116,2.017-0.149,3.75c-0.134,1.5-0.467,2.65-1,3.45l-0.05-0.8
|
||||
c-1.167,3.4-2.817,6.733-4.95,10c-2.233,3.467-4.634,6.283-7.2,8.45c1.767-3.7,3-6.483,3.7-8.351c1.166-3.1,1.934-6.066,2.3-8.899
|
||||
c-1.434,0.6-2.634,2.1-3.6,4.5c-0.534,1.3-1.267,3.184-2.2,5.649c0-2.199,0.017-3.85,0.05-4.949c0.066-1.867,0.25-3.483,0.55-4.851
|
||||
c-1.399,0.601-2.899,0.467-4.5-0.399c-1.733-1.2-3.066-1.967-4-2.301c-1.767-0.666-3.166-1.183-4.2-1.55
|
||||
c-1.866-0.666-3.25-1.066-4.149-1.2c-0.033,0-1.233,0.217-3.601,0.65c-2.022,0.359-3.022,0.334-3-0.075
|
||||
c-0.068,0.733-0.202,1.758-0.399,3.075c-0.101,1.167-0.101,2.2,0,3.1c-1.733-3-3.117-5.25-4.15-6.75
|
||||
c-1.8-2.767-3.85-4.083-6.149-3.949c0.1,0.1,0.449,0.399,1.05,0.899c0.434,0.4,0.8,0.684,1.1,0.851
|
||||
c-4.633-2.467-10.55-4.817-17.75-7.051c0.233,1.134,0.9,2.25,2,3.351c0.918,0.917,1.951,1.659,3.101,2.225
|
||||
c-0.728-0.332-2.561-1.073-5.5-2.225c-2.334-0.9-4.233-1.783-5.7-2.65c-3.934-2.366-6.767-4.467-8.5-6.3
|
||||
c-0.934-1.1-1.634-1.85-2.101-2.25c-0.733-0.7-1.633-1.184-2.699-1.45l0.649-0.05c-0.467,0-2.083-0.134-4.85-0.4
|
||||
c-2-0.166-3.584-0.1-4.75,0.2c0.8,1.033,1.434,1.783,1.899,2.25c0.733,0.733,1.5,1.283,2.301,1.65
|
||||
c-0.867-0.167-2.617-0.7-5.25-1.601c-2.134-0.733-3.95-1.149-5.45-1.25c-1.334-0.1-6.017-0.583-14.05-1.449
|
||||
c-5.7-0.634-10.4-0.867-14.101-0.7c0.533,0.566,1.434,1.3,2.7,2.2c-1.667,0.066-3.616-0.167-5.85-0.7
|
||||
c-2.934-0.7-4.817-1.101-5.65-1.2c0.3,1.134,0.816,2.2,1.55,3.2c0.795,1.081,1.67,1.814,2.625,2.2c0.038-0.001,0.08-0.001,0.125,0
|
||||
c0.066,0,0.066,0.017,0,0.05c-0.046-0.017-0.087-0.033-0.125-0.05c-1.961-0.052-3.886-0.469-5.774-1.25
|
||||
c-1.9-0.801-3.601-1.884-5.101-3.25c0,0.8,0.033,1.966,0.101,3.5c-0.767-0.4-1.601-1.367-2.5-2.9c-0.301,0.733-2.634,2.15-7,4.25
|
||||
c-4.267,2.033-6.75,2.983-7.45,2.85c0.033,0,0.133-0.1,0.3-0.3c-5.644,2.409-9.568,5.051-11.775,7.925
|
||||
c0.419-2.304,0.711-4.296,0.875-5.975c-0.633,0.566-2.216,2.283-4.75,5.15c-1.933,2.166-3.649,3.733-5.149,4.699
|
||||
c1.566-1.433,2.883-3.85,3.95-7.25c1.043-3.243,1.968-5.56,2.774-6.949c-1.272,1.854-3.131,3.57-5.575,5.149
|
||||
c-1.267,0.834-3.75,2.184-7.449,4.05c-3.5,1.367-6.25,2.467-8.25,3.301c-3.667,1.5-6.117,3.017-7.35,4.55
|
||||
c0.733-1.134,1.333-1.934,1.8-2.4c-5.867,3.467-10.617,5.566-14.25,6.3c2.066-1.5,3.667-2.916,4.8-4.25
|
||||
c1.434-1.699,2.417-3.616,2.95-5.75c-0.9,2.267-3.667,3.967-8.3,5.101c-4.966,1.233-8.066,2.767-9.3,4.6
|
||||
c-0.033-0.6,0.017-1.767,0.15-3.5c-0.033,0.267-0.35,0.816-0.95,1.65c-0.767,1-1.184,1.566-1.25,1.7
|
||||
c-0.267-1.801-0.517-2.95-0.75-3.45c-0.367-0.7-1.284-0.851-2.75-0.45c-1.3,0.333-2.784,1.167-4.45,2.5
|
||||
c-1.433,1.1-2.683,2.267-3.75,3.5c0.333-1,0.55-1.967,0.65-2.9c-1.267,0.667-3.133,1.617-5.6,2.851c-1.966,1.2-3.45,2.566-4.45,4.1
|
||||
c0-0.033,0.05-1.116,0.15-3.25c-1.5,0.967-2.717,2.9-3.65,5.8c-0.8,2.567-1.15,4.9-1.05,7c-0.433-1.8-1.517-4.1-3.25-6.899
|
||||
c-2.5-4.066-3.867-6.334-4.1-6.8c-0.1,0.699,0,2.05,0.3,4.05c-0.067-0.101-1.533-2.084-4.4-5.95c-1.9-2.566-2.967-4.7-3.2-6.4
|
||||
c-0.233-2.1,0.434-4.55,2-7.35c2-3.066,3.35-5.316,4.05-6.75c-0.867,0.113-1.742,0.479-2.625,1.1
|
||||
c0.167-0.157,0.326-0.308,0.475-0.449c1.367-1.233,1.983-2.051,1.85-2.45c-0.066-0.3-0.583-0.601-1.55-0.9
|
||||
c-1.067-0.267-1.717-0.45-1.95-0.55c-2.267-0.9-4.217-1.517-5.85-1.85c-2-0.4-4.05-0.517-6.15-0.351
|
||||
c-1.1,0.066-3.183,0.684-6.25,1.851c-3.285,1.228-5.068,2.178-5.35,2.85c0.633-1.634,0.934-2.567,0.9-2.8
|
||||
c-0.1-0.467-0.9-0.75-2.4-0.851c-1.133-0.066-2.517,0.284-4.15,1.051c-1.833,0.966-3.133,1.633-3.9,2
|
||||
c-3.033,1.5-5.583,2.983-7.65,4.449c-2.367,1.667-4.517,3.617-6.45,5.851c0-0.2,0.05-1.134,0.15-2.8c0.067-1.167,0-2.101-0.2-2.801
|
||||
c-0.7,0.134-1.35,0.65-1.95,1.551c-0.167,0.199-0.633,1-1.4,2.399c0.233-1.3,0.05-2.383-0.55-3.25l-0.55,0.9
|
||||
c0-0.066-1.033,0.166-3.1,0.7c-2.1,0.5-3.283,0.833-3.55,1c-0.3,0.166-2.333,0.933-6.1,2.3c-3.4,1.2-5.133,1.95-5.2,2.25
|
||||
c0.033-1.101,0.167-1.9,0.4-2.4c-1.533-0.066-2.95,0.684-4.25,2.25c-1.133,1.4-1.833,2.917-2.1,4.55
|
||||
c-1.467-2.5-2.333-5.199-2.6-8.1c-0.433,0.134-1.233,0.483-2.4,1.05c-0.967,0.5-1.767,0.783-2.4,0.851l0.7-1.4
|
||||
c-1.033,0.1-2.05,0.55-3.05,1.35c-1.1,0.9-1.7,1.851-1.8,2.851c-1.034-1.267-1.45-3.101-1.25-5.5c-2.667,1.166-3.85,3.566-3.55,7.2
|
||||
c0.133,2,0.9,4.85,2.3,8.55c-0.934-0.9-1.967-2.267-3.1-4.101c-1.633-2.633-2.567-4.116-2.8-4.449c-1.533-1.934-2.65-3.4-3.35-4.4
|
||||
c-1.267-1.767-2.05-3.417-2.35-4.95c-0.2,3.134,0.433,6.3,1.9,9.5c-1.2-1-2.317-2.366-3.35-4.1c-0.533-0.9-1.35-2.483-2.45-4.75
|
||||
c-1.333-2.767-2.15-4.9-2.45-6.4c-0.467-2.233-0.317-4.5,0.45-6.8c1.1-3.4,3.65-7.184,7.65-11.35
|
||||
c2.233-2.334,5.683-5.45,10.35-9.351c8.133-6.733,17.466-11.417,28-14.05c3.966-1,8.683-1.917,14.15-2.75
|
||||
c3.167-0.5,7.917-1.183,14.25-2.05c18.667-5.833,36.633-8.5,53.9-8c8,0.233,20.817-0.95,38.45-3.55
|
||||
c16.6-2.433,29.517-3.316,38.75-2.65c12.666,0.933,26.866,3.7,42.6,8.3c7.434,2.167,21.233,6.8,41.4,13.9l4.7,1.05
|
||||
c-0.2,0-0.567,0.067-1.101,0.2l7.65,2.6c3.033,1.034,9.649,3.05,19.85,6.05c9.033,2.667,20.467,7.117,34.3,13.351
|
||||
c4.5,2.066,8.134,4.566,10.9,7.5C369.934,214.083,371.634,218.083,371.6,222.45z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 35 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_flying_platforms_11.svg-97344a3b77c91f64d796827fd2d4820a.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_flying_platforms_11.svg"
|
||||
dest_files=[ "res://.import/bck_flying_platforms_11.svg-97344a3b77c91f64d796827fd2d4820a.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
54
glitch-ilmenskie-svg/ilmenskie/bck_hill_1.svg
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="299.15px" height="305.6px" viewBox="0 0 299.15 305.6" style="enable-background:new 0 0 299.15 305.6;"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-170.311" y1="152.9502" x2="117.7068" y2="152.9502" gradientTransform="matrix(0.0111 -0.9999 0.9999 0.0111 6.874651e-005 -5.905237e-005)">
|
||||
<stop offset="0" style="stop-color:#B5D6BA"/>
|
||||
<stop offset="1" style="stop-color:#CEE3D1"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);" d="M219.35,95.95c-2.133,5.966-3.716,12.25-4.75,18.85
|
||||
c-3.3,21.067-0.383,41.283,8.75,60.65c-0.899-6.667-0.316-14.15,1.75-22.45c4.067-16.533,13.45-28.817,28.15-36.85
|
||||
c-1.3,0.9-2.816,2.317-4.55,4.25c-3.5,3.8-6.384,8.2-8.65,13.2c-7.166,16-6.717,34.917,1.351,56.75
|
||||
c-1.134-3.267-1.301-7.55-0.5-12.85c1.633-10.566,7.35-20.866,17.149-30.9l-2.35,4.35c-1.733,3.733-3.101,7.649-4.101,11.75
|
||||
c-3.133,13.166-1.883,25.783,3.75,37.85c7.101,15.134,15.601,32.783,25.5,52.95c7.233,15.8,13.334,32.483,18.301,50.05L0,305.6
|
||||
c1.433-5.566,3.55-12.816,6.35-21.75c5.533-17.899,11.633-35.316,18.3-52.25c11.1-26.5,18.767-45,23-55.5
|
||||
c6.934-17.233,12.817-35.633,17.65-55.2c2.1-8.533,4.633-20.283,7.6-35.25c3.1-15.667,5.367-26.5,6.8-32.5
|
||||
C85.2,30.217,92.15,15.1,100.55,7.8c10.267-8.966,20.633-10.183,31.1-3.65c10.667,6.7,19.167,20.184,25.5,40.45
|
||||
c2.633,8.5,5.083,19.45,7.35,32.85c1.3,7.667,3.2,19.517,5.7,35.55c4.967,28.592,12.367,51.692,22.2,69.3
|
||||
c-1.835-3.627-3.368-8.493-4.601-14.6c-3.066-15.233-2.25-32.417,2.45-51.55l-0.8,5.35c-0.434,4.6-0.367,9.45,0.2,14.55
|
||||
c1.8,16.333,8.183,32.233,19.149,47.7c-3.899-8.934-6.267-19.6-7.1-32c-1.667-24.733,5.184-45.667,20.55-62.8L219.35,95.95z"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-289.4429" y1="135.5029" x2="-159.5282" y2="135.5029" gradientTransform="matrix(0.0316 -0.9995 0.9995 0.0316 -1.578741e-004 4.882291e-004)">
|
||||
<stop offset="0" style="stop-color:#B5D6BA"/>
|
||||
<stop offset="1" style="stop-color:#CEE3D1"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);" d="M113.05,55.35c6.967-7.867,14.167-8.9,21.6-3.1
|
||||
c7.367,5.767,12.983,18.333,16.85,37.7c1.1,5.433,2.583,13.833,4.45,25.2c1.8,10.2,3.616,18.317,5.45,24.35
|
||||
c4,13.167,8.783,26.333,14.35,39.5c3.866,9.066,7.5,16.816,10.9,23.25c11.133,20.9,19.8,43.95,26,69.15
|
||||
c3.133,12.6,5.133,23.1,6,31.5h-66l-119.351,2c1.6-9.934,4.25-22.367,7.95-37.301c7.433-29.833,16.467-57.216,27.1-82.149
|
||||
c7.033-16.434,13.367-34.133,19-53.1c4.233-14.2,7.783-28.017,10.65-41.45C101.467,74.633,106.483,62.783,113.05,55.35z"/>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-257.3843" y1="142.3794" x2="41.6178" y2="142.3794" gradientTransform="matrix(0.039 -0.9992 0.9992 0.039 -6.921589e-006 4.777014e-004)">
|
||||
<stop offset="0" style="stop-color:#B5D6BA"/>
|
||||
<stop offset="1" style="stop-color:#CEE3D1"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);" d="M136.5,79.5c2.8,4.033,5.45,11.017,7.95,20.95
|
||||
c1.7,6.7,3.917,17.466,6.649,32.3c3.334,17.867,5.801,30.517,7.4,37.95c0.9,4.233,4.184,12.5,9.85,24.8
|
||||
c7.334,15.934,12.317,27.3,14.95,34.1c5.8,15.034,11.434,31.75,16.9,50.15c2.733,9.233,4.883,16.95,6.45,23.15
|
||||
c-76,1.333-126.667,1.783-152,1.35c1.033-6.7,2.767-15.05,5.2-25.05c4.9-20.033,10.95-38.351,18.15-54.95
|
||||
c6.933-16.033,11.9-28.533,14.9-37.5c5.133-15.366,9.934-34.2,14.4-56.5c2.934-17.367,5.184-29.233,6.75-35.6
|
||||
c2.567-10.333,6.317-16.683,11.25-19.05C129.567,73.533,133.3,74.833,136.5,79.5z"/>
|
||||
</g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CEE3D1;" d="M123.9,118.95c0.567,2.466,0.7,5.583,0.4,9.35
|
||||
c-0.3,3.733-0.917,6.934-1.85,9.6c-1.034,2.934-2.233,4.4-3.6,4.4c-4.367,0-5.833-4.367-4.4-13.1c0.566-3.4,1.466-6.483,2.7-9.25
|
||||
c1.267-2.833,2.483-4.383,3.65-4.65C122.267,115,123.3,116.217,123.9,118.95z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CEE3D1;" d="M140.15,116.15c0.934,0.333,1.783,1.867,2.55,4.6
|
||||
c0.733,2.667,1.183,5.583,1.35,8.75c0.4,8.2-1.167,12.133-4.7,11.8c-1.1-0.1-1.934-1.55-2.5-4.35c-0.533-2.534-0.75-5.534-0.65-9
|
||||
c0.066-3.534,0.433-6.417,1.1-8.65C138.033,116.8,138.983,115.75,140.15,116.15z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_1.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_1.svg-3aa4ee57c7e5b592c3a485084258afb0.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_1.svg"
|
||||
dest_files=[ "res://.import/bck_hill_1.svg-3aa4ee57c7e5b592c3a485084258afb0.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
79
glitch-ilmenskie-svg/ilmenskie/bck_hill_10.svg
Normal file
@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="474px" height="307.15px" viewBox="0 0 474 307.15" style="enable-background:new 0 0 474 307.15;" xml:space="preserve">
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" viewBox="0 -150.9 90.7 150.825">
|
||||
<g id="Layer_1_6_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C7ECDC;" d="M80-42.8c-0.367-12.767,0.667-32.367,3.1-58.8
|
||||
c2.566-27.867,5.1-44.3,7.6-49.3H0c5,2.566,10.667,6.583,17,12.05c12.667,10.934,22.333,23.617,29,38.05
|
||||
C51.8-88.267,56.883-70.667,61.25-48c2.433,12.567,4,20.4,4.7,23.5C67.783-16.633,69.8-10.517,72-6.15
|
||||
c4.367,8.733,7.033,8.05,8-2.05C80.533-13.633,80.533-25.167,80-42.8z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_1" viewBox="0 -129.35 57.35 129.378">
|
||||
<g id="Layer_1_5_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C7ECDC;" d="M52.7-19.25c1.367-9.733,2.55-31,3.55-63.8
|
||||
c0.5-16.4,0.867-31.833,1.1-46.3H0c3,5.733,6.4,13.583,10.2,23.55c7.566,19.867,13.283,40.267,17.15,61.2
|
||||
c5.133,27.733,10.367,42.55,15.7,44.45c2.133,0.733,4.083-0.8,5.85-4.6C50.533-8.217,51.8-13.05,52.7-19.25z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_2" viewBox="0 -272.65 96.65 272.647">
|
||||
<g id="Layer_1_4_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C7ECD1;" d="M50-0.55c8.133,3.2,16.1-7.65,23.9-32.55
|
||||
c6.167-19.633,11.3-44.283,15.4-73.95c2.8-20.034,4.867-53.65,6.2-100.85c0.667-23.6,1.05-45.184,1.15-64.75h-9.3
|
||||
c1.267,20.633-0.483,53.933-5.25,99.9c-4.767,46.1-9.467,74.617-14.1,85.55c-4.7,11.067-9.1,12.284-13.2,3.65
|
||||
c-4.133-8.767-8.183-28.217-12.15-58.35C39.317-167.167,33.433-196.533,25-230c-4.233-16.767-8.133-30.983-11.7-42.65H0
|
||||
c2.667,12.1,5.7,26.95,9.1,44.55c6.767,35.2,11.95,66.567,15.55,94.1c1.6,12.1,3.3,28.017,5.1,47.75
|
||||
c1.867,20.6,3.217,34.3,4.05,41.1c1.667,13.267,3.617,23.283,5.85,30.05C42.317-7.067,45.767-2.217,50-0.55z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_3" viewBox="0 -189.05 121.35 189.044">
|
||||
<g id="Layer_1_3_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C7ECDC;" d="M113.95-30.95c0.333-6.2,0.483-16.433,0.45-30.7
|
||||
c0-17.033,0.1-29.717,0.3-38.05c0.367-15.2,1.583-32.917,3.65-53.15c1.967-19.4,2.967-31.267,3-35.6
|
||||
c-9.333-0.8-49.783-0.8-121.35,0c6.367,5.367,13.2,12.333,20.5,20.9c14.633,17.133,24.3,33.667,29,49.6
|
||||
c11.633,39.3,20.9,67.4,27.8,84.3C87.133-9.517,95.55,1.633,102.55-0.2c3.7-0.966,6.45-4.15,8.25-9.55
|
||||
C112.4-14.483,113.45-21.55,113.95-30.95z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_4" viewBox="0 -216.75 143.9 216.769">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C7ECDC;" d="M23-114.75c2.433,37.667,6.783,66.733,13.05,87.2
|
||||
C42.517-6.417,50.133,2.567,58.9-0.6c7.7-2.8,16.283-18.967,25.75-48.5c6.3-19.633,11.733-40.467,16.3-62.5
|
||||
c2.3-11.233,5.1-21.967,8.4-32.2c2.467-7.7,4.833-13.983,7.1-18.85c2.933-6.267,7.2-15.6,12.8-28c5-10.5,9.883-19.117,14.65-25.85
|
||||
c-10.467-0.333-58.433-0.333-143.9,0c3.3,8.633,6.733,19.333,10.3,32.1C17.433-158.8,21.667-135.583,23-114.75z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-274.2261" y1="247.9141" x2="51.1861" y2="247.9141" gradientTransform="matrix(0.0361 -0.9993 0.9993 0.0361 1.838133e-004 -1.212955e-004)">
|
||||
<stop offset="0.0118" style="stop-color:#759EA1"/>
|
||||
<stop offset="0.4863" style="stop-color:#91C4C4"/>
|
||||
<stop offset="1" style="stop-color:#B5E3B5"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);" d="M336.5,50c3.7-2.467,7.75-3.717,12.15-3.75
|
||||
c9.733-0.1,18.366,8.083,25.899,24.55c2.601,5.7,5.384,13.117,8.351,22.25c1.666,5.034,3.916,12.1,6.75,21.2
|
||||
c2.933,8.8,6.433,20.55,10.5,35.25c4.966,18,8.3,29.783,10,35.35c8.366,27.634,18.1,49.967,29.199,67
|
||||
c3.034,4.634,9.467,13.384,19.301,26.25c8.699,12.101,13.816,21.584,15.35,28.45c-13,0.667-91.866,0.667-236.6,0
|
||||
c-144.934-0.666-224.067-0.666-237.4,0c2.1-3.233,4.417-5.967,6.95-8.2c1.9-1.666,4.833-3.75,8.8-6.25
|
||||
C28.283,284.2,39.033,276.634,48,269.4c5.5-4.434,12.25-12.601,20.25-24.5c6.833-10.167,12.25-19.367,16.25-27.601
|
||||
c4.567-9.399,9.417-21.2,14.55-35.399c5.6-16.267,9.717-28.134,12.35-35.601c4.633-13.1,8.6-23.05,11.9-29.85
|
||||
c4.367-8.9,8.717-14.917,13.05-18.05c8.033-5.767,15.15-8.066,21.35-6.9c2.1,0.4,4.767,1.333,8,2.8c4.3,2,7.133,3.25,8.5,3.75
|
||||
c5.667,2.067,10.7-0.2,15.1-6.8c3.333-5,6.7-13.233,10.1-24.7c6.5-22.167,11.15-36.566,13.95-43.2
|
||||
c6.133-14.467,12.833-22.2,20.1-23.2c4.6-0.633,8.616,0.6,12.05,3.7c2.967,2.667,5.783,7.017,8.45,13.05
|
||||
C255.616,20.633,258,27,261.1,36c3.334,9.767,6.017,17.1,8.051,22c4.933,11.833,9.566,19.833,13.899,24
|
||||
c5.566,5.367,11.717,5.883,18.45,1.55c5.134-3.3,10.033-7.383,14.7-12.25c0.899-0.933,4.434-4.966,10.6-12.1
|
||||
C330.566,54.867,333.8,51.8,336.5,50z"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_4" width="143.9" height="216.769" y="-216.75" transform="matrix(1 0 0 -1 289.0996 90.0498)" style="overflow:visible;opacity:0.3594;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_3" width="121.35" height="189.044" y="-189.05" transform="matrix(1 0 0 -1 53 118.1001)" style="overflow:visible;opacity:0.3594;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_2" width="96.65" height="272.647" y="-272.65" transform="matrix(1 0 0 -1 181.7002 33.8999)" style="overflow:visible;opacity:0.3594;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_1" width="57.35" height="129.378" y="-129.35" transform="matrix(1 0 0 -1 203 177.2002)" style="overflow:visible;opacity:0.3594;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" width="90.7" height="150.825" y="-150.9" transform="matrix(1 0 0 -1 73 155.6504)" style="overflow:visible;opacity:0.3594;enable-background:new ;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_10.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_10.svg-4042dc8f0b8ab82290ac1f7ad1890b78.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_10.svg"
|
||||
dest_files=[ "res://.import/bck_hill_10.svg-4042dc8f0b8ab82290ac1f7ad1890b78.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
17
glitch-ilmenskie-svg/ilmenskie/bck_hill_11.svg
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="327px" height="412.2px" viewBox="0 0 327 412.2" style="enable-background:new 0 0 327 412.2;" xml:space="preserve">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CFE5DB;" d="M222.3,94.2c-1.833-2.534-3.983-3.733-6.45-3.6
|
||||
c-2.466,0.167-4.5,1.6-6.1,4.3c-1.634,2.7-2.384,5.883-2.25,9.55c0.167,3.7,1.167,6.8,3,9.3s3.983,3.683,6.45,3.55
|
||||
s4.517-1.566,6.149-4.3c1.634-2.7,2.367-5.883,2.2-9.55C225.167,99.783,224.167,96.7,222.3,94.2z M186.35,94.65
|
||||
c-2.199-2.7-4.866-4.05-8-4.05c-3.133,0-5.816,1.35-8.05,4.05c-2.2,2.7-3.3,5.967-3.3,9.8c0,3.8,1.1,7.05,3.3,9.75
|
||||
c2.233,2.7,4.917,4.05,8.05,4.05c3.134,0,5.801-1.35,8-4.05c2.2-2.7,3.301-5.95,3.301-9.75
|
||||
C189.65,100.617,188.55,97.35,186.35,94.65z M216.9,12.45c6.267,7.1,11.716,17.85,16.35,32.25c3.267,10.167,6.884,25.033,10.85,44.6
|
||||
c5.334,26.333,8.801,42.817,10.4,49.45c5.267,21.967,11.75,49.167,19.45,81.6c6.533,26.067,14.233,53.25,23.1,81.551
|
||||
c10.7,34.033,17.667,56.783,20.9,68.25c5.133,18.233,8.149,32.25,9.05,42.05H1.5c-2.8-15.667-1.733-34.351,3.2-56.05
|
||||
c4.033-17.9,11-38.917,20.9-63.051c6-14.666,15.55-35.983,28.65-63.949c12.833-27.467,21.65-47.101,26.45-58.9
|
||||
c11.533-29.633,19.966-51.183,25.3-64.65c9.233-23.4,17.2-41.5,23.9-54.3c8.8-16.733,17.684-29.2,26.65-37.4
|
||||
C166.783,4.633,177.967,0,190.1,0C200.7,0,209.634,4.15,216.9,12.45z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_11.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_11.svg-83908bfe9a50d24e98bd23ed79b6ff14.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_11.svg"
|
||||
dest_files=[ "res://.import/bck_hill_11.svg-83908bfe9a50d24e98bd23ed79b6ff14.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
40
glitch-ilmenskie-svg/ilmenskie/bck_hill_12.svg
Normal file
@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="171.35px" height="219.45px" viewBox="0 0 171.35 219.45" style="enable-background:new 0 0 171.35 219.45;"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-176.7026" y1="107.2412" x2="167.6653" y2="107.2412" gradientTransform="matrix(0.1012 -0.9949 0.9949 0.1012 1.482293e-004 2.363324e-004)">
|
||||
<stop offset="0" style="stop-color:#B5D6BA"/>
|
||||
<stop offset="1" style="stop-color:#CEE3D1"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);" d="M164.5,173.15c0.467,2.3,1.866,10.399,4.2,24.3
|
||||
c0.666,3.934,1.283,8.283,1.85,13.05c0.533,4.566,0.8,7.55,0.8,8.95c-10.267-1.134-38.466-2-84.6-2.601
|
||||
C34.317,216.15,5.4,215.684,0,215.45c5.233-12.5,10.95-24.783,17.15-36.851c5.267-10.233,11.8-22.066,19.6-35.5
|
||||
c5.233-9.066,10.017-19.383,14.35-30.949c3.433-9.2,6.883-20.067,10.35-32.601c5.333-23,9.8-39.383,13.4-49.15
|
||||
c6.2-16.667,14.667-26.4,25.4-29.2c11.733-3.067,21.05-0.167,27.95,8.7c5.866,7.6,9.717,19.117,11.55,34.55
|
||||
c2.434,20.633,4.816,37.816,7.15,51.55c3.199,18.967,6.966,35.833,11.3,50.6C160.6,154.8,162.7,163.65,164.5,173.15z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#AFCFB5;" d="M100.05,40.55c8.233-5.733,14.601-4.433,19.101,3.9
|
||||
c3.933,7.267,5.616,17.65,5.05,31.15c-0.367,8.767,0.833,20.3,3.6,34.6c1.566,8.133,4.084,20.316,7.55,36.55
|
||||
c4.767,25.833,8.767,49.616,12,71.35l-73.899-0.75l-58.75-2.6c7.633-17.5,13.05-28.85,16.25-34.05
|
||||
c7.433-11.267,13.1-19.967,17-26.101C54.917,143.7,61,132.55,66.2,121.15c2.633-5.767,5.367-13.3,8.2-22.601
|
||||
c3.033-10.633,5.317-18.466,6.85-23.5C86.85,56.883,93.116,45.383,100.05,40.55z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CBECD2;" d="M93.2,83.7c2.866-4.867,6.033-7.4,9.5-7.6
|
||||
c5.7-0.3,8.75,5.183,9.149,16.45c0.233,6.434-0.149,16.95-1.149,31.55c-0.167,11-0.05,20.467,0.35,28.4
|
||||
c0.434,7.767,1.2,15.184,2.3,22.25c1.667,10.7,4.067,20.9,7.2,30.6c1.533,4.867,2.917,8.667,4.15,11.4
|
||||
c-14.467,0.3-34.25,0.167-59.35-0.4c-12.567-0.267-23.684-0.566-33.35-0.899c3.9-6.834,7.9-14.167,12-22
|
||||
c2.767-5.3,6.917-12.667,12.45-22.101c5.367-9.133,9-15.55,10.9-19.25c3.5-6.866,6.983-15.383,10.45-25.55
|
||||
c3.6-11.333,6.217-19.466,7.851-24.4C88.45,93.65,90.967,87.5,93.2,83.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-161.9629" y1="108.4033" x2="-75.1164" y2="108.4033" gradientTransform="matrix(0.133 -0.9911 0.9911 0.133 -1.424551e-004 -2.909899e-004)">
|
||||
<stop offset="0" style="stop-color:#B5D6BA"/>
|
||||
<stop offset="1" style="stop-color:#CEE3D1"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);" d="M71.05,195.6c1.767-4.399,4.733-12.649,8.9-24.75
|
||||
c3.333-9.666,5.899-16.3,7.7-19.899c2.633-5.267,4.983-7.467,7.05-6.601c3.333,1.434,5.467,7.284,6.399,17.551
|
||||
c0.801,8.533,0.684,18.449-0.35,29.75c-0.767,8.566-1,17.149-0.7,25.75c-5.166-0.801-11.316-1.15-18.45-1.051
|
||||
c-8.667,0.267-15.717,0.384-21.15,0.351C63.85,211.9,67.383,204.866,71.05,195.6z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_12.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_12.svg-860a9ed761656ee965ae63752cf06361.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_12.svg"
|
||||
dest_files=[ "res://.import/bck_hill_12.svg-860a9ed761656ee965ae63752cf06361.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
36
glitch-ilmenskie-svg/ilmenskie/bck_hill_13.svg
Normal file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="470.3px" height="296.6px" viewBox="0 0 470.3 296.6" style="enable-background:new 0 0 470.3 296.6;" xml:space="preserve"
|
||||
>
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#D4E6D3;" d="M470.3,296.05c-42.133-0.333-113.883-0.316-215.25,0.05
|
||||
c-91.767,0.334-163.5,0.15-215.2-0.55c-10.867-0.2-24.15-0.033-39.85,0.5c7.367-1.733,13.283-3.217,17.75-4.45
|
||||
c8.133-2.199,15.35-4.866,21.65-8c18.267-9.133,33.017-24.1,44.25-44.899c5.567-10.3,11.5-23.25,17.8-38.851
|
||||
c6.933-17.8,12.017-30.8,15.25-39c5.667-14.333,10.533-25.233,14.6-32.7c5.333-9.767,10.633-16.367,15.9-19.8
|
||||
c9.767-6.4,18.4-8.983,25.9-7.75c2.566,0.4,5.783,1.417,9.65,3.05c5.233,2.133,8.65,3.467,10.25,4c6.833,2.2,12.95-0.333,18.35-7.6
|
||||
c4.066-5.466,8.183-14.483,12.35-27.05c8.066-24.333,13.8-40.083,17.2-47.25C248.4,9.883,256.533,1.367,265.3,0.2
|
||||
c7.934-1.067,15.25,2.083,21.95,9.45c5.634,6.167,11.434,16.033,17.4,29.6c2.966,6.767,8.333,20.533,16.1,41.3
|
||||
c7.134,19.133,13.2,34.034,18.2,44.7c15.934,34.134,31.783,61.483,47.55,82.05c13.167,17.2,31.616,36.117,55.35,56.75
|
||||
c8.067,7,13.733,12.283,17,15.851C463.217,284.634,467.033,290.017,470.3,296.05z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C0D7BF;" d="M462.7,296.05c-73.667,0.334-150.601,0.517-230.8,0.55
|
||||
c-22.633,0-84.483-0.017-185.55-0.05c-3.233,0-8.7-0.083-16.4-0.25c-7.233-0.166-13.1-0.25-17.6-0.25
|
||||
c15.566-3.767,28.517-8.366,38.85-13.8c17.867-9.467,32.533-22.833,44-40.1c5.767-8.667,11.216-19.834,16.35-33.5
|
||||
c2.367-6.2,6.383-18.184,12.05-35.95c4.5-14.167,8.267-24.434,11.3-30.8c4.4-9.3,9.167-15.35,14.3-18.15
|
||||
c5.233-2.833,9.933-4.067,14.1-3.7c3.3,0.267,6.65,1.633,10.05,4.1c1.967,1.434,4.8,3.817,8.5,7.15c3.433,2.8,6.633,4.583,9.6,5.35
|
||||
c13,3.3,23.55-4.833,31.65-24.4c8.2-19.767,14-32.567,17.4-38.4c7.5-12.9,15.566-19.867,24.2-20.9c7.8-0.934,14.95,1.533,21.45,7.4
|
||||
c5.466,4.933,11.05,12.85,16.75,23.75c2.833,5.4,7.949,16.467,15.35,33.2c6.8,15.367,12.6,27.35,17.4,35.95
|
||||
c14.366,25.767,29.633,47.55,45.8,65.35c6.6,7.301,14.483,15.2,23.649,23.7c2.267,2.101,11.134,10.117,26.601,24.05
|
||||
c3.434,3.067,9.033,7.867,16.8,14.4C455.167,286.65,459.9,291.75,462.7,296.05z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#B0CDC2;" d="M361.95,241.2c17.967,17.366,30.383,29.517,37.25,36.45
|
||||
c9,9.1,14.55,15.233,16.649,18.399c-9.233,0.033-66.149,0.017-170.75-0.05c-98.966-0.1-154.716-0.083-167.25,0.05
|
||||
c3.667-1.2,8.083-4.416,13.25-9.649c5.5-6.034,9.367-10.117,11.6-12.25c6-5.567,10.45-9.784,13.35-12.65
|
||||
c5.034-4.934,9.15-9.5,12.35-13.7c5.8-7.566,10.7-15.616,14.7-24.149c2.467-5.267,5.3-12.483,8.5-21.65
|
||||
c3.2-9.233,5.75-15.9,7.65-20c3.333-7.1,7.417-13.417,12.25-18.95c2.7-3.1,5.217-4.7,7.55-4.8c1.934-0.1,3.9,0.884,5.9,2.95
|
||||
c1.066,1.066,2.816,3.333,5.25,6.8c2.233,3.2,4.066,5.434,5.5,6.7c6.733,5.934,12.867,3,18.4-8.8c1.7-3.733,3.483-8.65,5.35-14.75
|
||||
c2.066-6.867,3.15-10.417,3.25-10.65c3.233-10.167,6.233-18,9-23.5c5.066-10.033,11.3-15.5,18.7-16.4
|
||||
c5.199-0.633,9.983,1,14.35,4.9c3.634,3.233,7.35,8.45,11.15,15.65c1.899,3.533,5.333,10.833,10.3,21.9
|
||||
c4.533,10.101,8.399,17.983,11.6,23.65c9.233,16.366,19.55,30.583,30.95,42.649C335.616,216.616,346.684,227.233,361.95,241.2z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_13.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_13.svg-04c46bfc8be4038d5ea97b4f54c0e52b.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_13.svg"
|
||||
dest_files=[ "res://.import/bck_hill_13.svg-04c46bfc8be4038d5ea97b4f54c0e52b.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
22
glitch-ilmenskie-svg/ilmenskie/bck_hill_14.svg
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="206px" height="184.2px" viewBox="0 0 206 184.2" style="enable-background:new 0 0 206 184.2;" xml:space="preserve">
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" viewBox="0 -143.45 141.5 143.455">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#E7EEE1;" d="M119.55-67.3c3.233-11.3,7.217-25.9,11.95-43.8
|
||||
c4-14.333,7.333-25.117,10-32.35H0c2.333,4.633,5.383,10.383,9.15,17.25c7.5,13.7,14.783,26.067,21.85,37.1
|
||||
c9.567,14.9,16.883,27.133,21.95,36.7c6.333,12,11.017,23.1,14.05,33.3c1.633,5.467,3.917,9.9,6.85,13.3
|
||||
c2.9,3.367,6.083,5.267,9.55,5.7c7.934,1,14.633-5.167,20.1-18.5C108.333-30.333,113.683-46.567,119.55-67.3z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CFE5D4;" d="M206,183.5L0,184.2c2.067-3.467,4.867-7.884,8.4-13.25
|
||||
c7.067-10.7,14.267-20.733,21.6-30.101c13.1-16.666,23.017-30.35,29.75-41.05C69.117,84.9,76.533,69.7,82,54.2
|
||||
c7-19.9,13.2-33.8,18.6-41.7c6.433-9.467,13.567-13.567,21.4-12.3c8.033,1.267,16.316,9.983,24.85,26.15
|
||||
c7.834,14.9,15.784,35.95,23.851,63.15c3.6,12.134,9.566,28.05,17.899,47.75C196.9,156.884,202.7,172.3,206,183.5z"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" width="141.5" height="143.455" y="-143.45" transform="matrix(1 0 0 -1 37.7002 40.75)" style="overflow:visible;opacity:0.4219;enable-background:new ;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_14.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_14.svg-b3a998d70f2836fa3004537e82c20574.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_14.svg"
|
||||
dest_files=[ "res://.import/bck_hill_14.svg-b3a998d70f2836fa3004537e82c20574.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_15.svg
Normal file
@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="214.15px" height="235.9px" viewBox="0 0 214.15 235.9" style="enable-background:new 0 0 214.15 235.9;"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#AFCFB5;" d="M174.5,151.75c3.333,7.4,8.583,18.8,15.75,34.2
|
||||
c3.566,7.633,8.767,17.166,15.6,28.6c4.9,8.233,7.667,14.05,8.301,17.45c-14.7,1.3-45.301,2.15-91.801,2.55
|
||||
c-54.033,0.233-91.883,0.483-113.55,0.75c-0.167-3.633,0.35-8.916,1.55-15.85c1.533-8.467,2.417-14.417,2.65-17.851
|
||||
c1.133-15.366-3.2-29.283-13-41.75c0.033,0.034,1.183,0.75,3.45,2.15c2.9,2,5.85,4.417,8.85,7.25c3.034,2.866,5.85,6.634,8.45,11.3
|
||||
c1.333,2.334,2.35,4.384,3.05,6.15c0.233-2.167,0.383-5.033,0.45-8.601c0.133-7.133-0.2-14.133-1-21
|
||||
c-0.8-6.866-4.467-14.55-11-23.05c-2.033-2.633-4.233-5.2-6.6-7.7L2.7,123.4l6.75,3.35c5.3,3.1,9.95,6.75,13.95,10.95
|
||||
c4,4.233,7.067,10.45,9.2,18.649c1.066,4.101,1.733,7.784,2,11.051c0.467-1.834,0.917-4.551,1.35-8.15
|
||||
c0.867-7.233,1.2-15.316,1-24.25c-0.233-8.967-2.534-18.85-6.9-29.65c-1.367-3.367-2.867-6.633-4.5-9.8l-2-3.7l7.1,7.7
|
||||
C36.017,106.383,40.3,114,43.5,122.4c3.2,8.399,4.917,19.666,5.15,33.8c0.1,7.066-0.117,13.283-0.65,18.649
|
||||
c0.933-2.1,1.95-5.017,3.05-8.75c2.233-7.433,3.75-15.149,4.55-23.149c0.8-7.967,0.4-15.867-1.2-23.7l-2.6-9.3l3,6.4
|
||||
c2.3,5.333,4.1,10.617,5.4,15.85c1.3,5.233,1.6,13.6,0.9,25.1c-0.333,5.733-0.817,10.95-1.45,15.65c0.533-0.8,1.133-2.017,1.8-3.65
|
||||
c1.367-3.267,2.45-6.983,3.25-11.149c1.2-6.5,2.066-14.784,2.6-24.851c0.667-13.267,0.517-27-0.45-41.2
|
||||
c-1.3-19.4-0.617-36.434,2.05-51.1c3.434-18.767,9.85-31.15,19.25-37.15c9.267-5.9,17.167-5,23.7,2.7
|
||||
c4.101,4.8,9.184,15.25,15.25,31.35c3.801,10.1,9.267,23.45,16.4,40.05c7.467,17.3,12.983,30.617,16.55,39.95
|
||||
C163.15,126.066,167.967,137.35,174.5,151.75z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#BAD9BF;" d="M89.75,47.55c5.767-7.667,12.233-8.483,19.4-2.45
|
||||
c6.666,5.633,11.199,14.333,13.6,26.1c2.366,11.667,5.483,22.983,9.35,33.95c4.134,11.8,9.9,25.383,17.301,40.75
|
||||
c8.466,17.699,19.816,37.6,34.05,59.699c7.1,11.067,13.35,20.351,18.75,27.851L52.4,235.9c10.1-24.4,16.283-39.2,18.55-44.4
|
||||
c2.066-4.667,4.383-12.6,6.95-23.8c3-13.2,5.15-26.233,6.45-39.101c0.566-5.833,0.667-13.283,0.3-22.35
|
||||
c-0.566-10.267-0.933-17.85-1.1-22.75C82.917,65.833,84.983,53.85,89.75,47.55z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C4DFD1;" d="M93.95,90.35c-0.167-9.233,0.033-15.417,0.6-18.55
|
||||
c0.8-4.333,2.583-6.367,5.35-6.1c5.6,0.566,10.05,5.183,13.35,13.85c1.2,3.133,2.45,7.317,3.75,12.55
|
||||
c0.733,2.967,1.816,7.45,3.25,13.45c2.3,8.934,6.45,19.55,12.45,31.851c3.467,7.066,8.866,17.616,16.2,31.649
|
||||
c11.199,22.434,22.399,44.017,33.6,64.75c-21.1,0.9-60.483,1.533-118.15,1.9c3.767-8.967,7.7-19.033,11.8-30.2
|
||||
c8.167-22.3,13.1-38.967,14.8-50c1.733-11.467,2.767-23.634,3.1-36.5C94.183,113.2,94.15,103.65,93.95,90.35z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_15.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_15.svg-94e7ea652bf6feedaa3a1e6ed8b6eb2c.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_15.svg"
|
||||
dest_files=[ "res://.import/bck_hill_15.svg-94e7ea652bf6feedaa3a1e6ed8b6eb2c.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
111
glitch-ilmenskie-svg/ilmenskie/bck_hill_16.svg
Normal file
@ -0,0 +1,111 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="226.55px" height="253.05px" viewBox="0 0 226.55 253.05" style="enable-background:new 0 0 226.55 253.05;"
|
||||
xml:space="preserve">
|
||||
<symbol id="flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Clip_Group_0_x3E_" viewBox="-0.038 -252.65 226.538 252.671">
|
||||
<g id="Layer_1_7_">
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M222.5-246.3c-2.033,2.8-3.583,5.117-4.65,6.95c-4.1,7.2-8.233,18.767-12.4,34.7
|
||||
c-4.233,16.233-6.167,39.5-5.8,69.8c0.133,9.233,0.517,21.783,1.15,37.65c0.733,16.833,1.15,28.184,1.25,34.05
|
||||
c0.4,19.967-3.033,35.816-10.3,47.55C184.883-4.467,176.4,0.317,166.3-1.25c-11.066-1.767-20.966-13.5-29.7-35.2
|
||||
c-2.233-5.533-5.317-14.367-9.25-26.5c-3.434-10.5-6.033-17.583-7.8-21.25c-3.733-7.767-7.367-13.433-10.9-17
|
||||
c-3.4-3.466-6.033-4.267-7.9-2.4c-0.933,0.967-1.717,1.934-2.35,2.9c-0.7,1-1.6,2.567-2.7,4.7
|
||||
c-3.534,6.767-7.784,10.4-12.75,10.9c-5,0.5-9.5-2.3-13.5-8.4c-2.567-3.933-5.184-9.467-7.85-16.6
|
||||
c-2.033-5.467-4.617-13.4-7.75-23.8C47.883-153.8,41.933-169,36-179.5c-5.167-9.067-10.717-15.2-16.65-18.4l-8-6.65
|
||||
c-5.633-5.333-9.184-10.317-10.65-14.95c-4.633-14.733,12.533-22.967,51.5-24.7c62.3-2.8,120.4-5.617,174.3-8.45
|
||||
C225.6-250.883,224.267-248.767,222.5-246.3z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="Layer_3_1_" style="clip-path:url(#SVGID_2_);">
|
||||
|
||||
<use xlink:href="#flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_4" width="61.05" height="42.909" y="-42.887" transform="matrix(1 0 0 1 140.5996 0)" style="overflow:visible;opacity:0.4688;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_3" width="72.4" height="57.992" y="-57.975" transform="matrix(1 0 0 1 129.25 -37.6001)" style="overflow:visible;opacity:0.4688;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_2" width="77.45" height="74.287" y="-74.26" transform="matrix(1 0 0 1 122.5 -58.75)" style="overflow:visible;opacity:0.4688;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_1" width="106.2" height="118.704" y="-118.642" transform="matrix(1 0 0 1 106 -90.6001)" style="overflow:visible;opacity:0.4688;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E_" width="156.838" height="159.771" x="0.012" y="-159.771" transform="matrix(1 0 0 1 55.8999 -72.5498)" style="overflow:visible;opacity:0.4688;enable-background:new ;"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_4_1_">
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E_" viewBox="0.012 -159.771 156.838 159.771">
|
||||
<g id="Layer_1_6_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M47.4-35.05c3.033-6,6.434-13.25,10.2-21.75
|
||||
c2-4.5,4.483-11.284,7.45-20.35c3.567-10.867,5.883-17.7,6.95-20.5c2.533-6.667,5.3-12.333,8.3-17
|
||||
c3.7-5.767,7.967-10.367,12.8-13.8c4.033-2.867,9.4-4.833,16.1-5.9c6.433-1.033,10.983-2.617,13.65-4.75
|
||||
c5.767-4.6,10.617-7.5,14.55-8.7c6.133-1.833,11.684-0.517,16.65,3.95l2.8-7.3c-1.633-1.833-3.633-3.55-6-5.15
|
||||
c-4.733-3.167-8.917-4.167-12.55-3c-2.667,0.867-6.533,4.167-11.6,9.9c-4.767,5.433-8.85,8.4-12.25,8.9c-1.1,0.167-4,0.2-8.7,0.1
|
||||
c-4.3-0.1-7.917,0.15-10.85,0.75c-9.4,2.033-17.1,8.583-23.1,19.65c-2.6,4.733-5,10.25-7.2,16.55c-1.367,3.934-3.15,9.7-5.35,17.3
|
||||
c-1.967,6.8-3.667,12.15-5.1,16.05c-1.833,4.934-4.183,10.15-7.05,15.65c-3.2,6.2-6.367,10.733-9.5,13.6
|
||||
c-4.4,4-9.533,5.733-15.4,5.2c-2.767-0.267-5.7-1.533-8.8-3.8c-4.267-3.167-6.9-4.983-7.9-5.45c-2.367-1.133-3.967-0.783-4.8,1.05
|
||||
c-0.567,1.3-0.784,3.367-0.65,6.2c0.1,2.633,0.633,5.417,1.6,8.35c0.7,2.167,1.783,4.8,3.25,7.9c1.833,4.133,3.25,7.233,4.25,9.3
|
||||
c1.767,3.633,3.583,6.483,5.45,8.55C16.733-1.183,19.15,0,21.85,0c2.833,0,5.083-1.4,6.75-4.2c0.133-0.233,2.55-3.816,7.25-10.75
|
||||
c4.267-6.267,6.7-10.133,7.3-11.6C43.183-26.583,44.6-29.417,47.4-35.05z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_1" viewBox="0 -118.642 106.2 118.704">
|
||||
<g id="Layer_1_5_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M7.4-1.25c2.934,1.267,6.4,1.617,10.4,1.05
|
||||
C25.867-1.333,32.267-7.117,37-17.55c4.833-10.6,8.833-20.5,12-29.7c1.967-5.767,5.3-15.9,10-30.4
|
||||
c3.8-11.267,8.133-19.117,13-23.55c4.067-3.733,9.6-5.85,16.6-6.35c5.367-0.367,9.517,1.05,12.45,4.25
|
||||
c1.467,1.6,2.4,3.233,2.8,4.9l2.35-11.8c-1.767-2.133-4.15-4.017-7.15-5.65c-6.033-3.267-12.15-3.667-18.35-1.2
|
||||
c-6.934,2.767-12.184,7.333-15.75,13.7c-3.1,5.6-7.817,18.317-14.15,38.15C44-44.033,38.583-29.667,34.55-22.1
|
||||
C29.25-12.167,23.333-7.2,16.8-7.2c-5.133,0-9.466-0.533-13-1.6C2.033-9.3,0.767-9.817,0-10.35L7.4-1.25z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_2" viewBox="0 -74.26 77.45 74.287">
|
||||
<g id="Layer_1_4_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M49.25-48.6c4.133-9.233,9.2-14.617,15.2-16.15
|
||||
c4.6-1.2,8.933-0.167,13,3.1V-72.2c-2.534-1.466-5.6-2.15-9.2-2.05c-7.233,0.2-13.567,4.25-19,12.15c-2.6,3.8-5.583,8.6-8.95,14.4
|
||||
c-3.566,6.2-6.183,10.684-7.85,13.45c-5.733,9.5-10.8,15.1-15.2,16.8c-4.567,1.733-8.817,1.9-12.75,0.5
|
||||
c-1.933-0.7-3.433-1.566-4.5-2.6l3.35,8c1.267,2.6,3.05,5,5.35,7.2c4.566,4.367,9.383,5.467,14.45,3.3
|
||||
c6.067-2.6,11.1-8.733,15.1-18.4c0.933-2.233,2.633-6.867,5.1-13.9C45.55-39.683,47.517-44.767,49.25-48.6z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_3" viewBox="0 -57.975 72.4 57.992">
|
||||
<g id="Layer_1_3_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M42.55-37.95c-2.133,4.8-3.767,8.267-4.9,10.4
|
||||
c-4,7.566-9.533,12.017-16.6,13.35C15.25-13.1,10-14.167,5.3-17.4c-2.333-1.633-4.1-3.367-5.3-5.2L4.2-9.55
|
||||
c1.533,2.1,3.6,4.05,6.2,5.85c5.2,3.567,10.434,4.567,15.7,3c5.233-1.566,9.933-6.2,14.1-13.9c2.3-4.3,5.316-10.617,9.05-18.95
|
||||
c3.1-5.534,6.65-8.767,10.65-9.7c4.3-1,8.467,0.833,12.5,5.5l-0.85-17.7c-1.833-1.466-4.15-2.3-6.95-2.5
|
||||
C59-58.283,53.733-55.2,48.8-48.7C46.7-45.933,44.617-42.35,42.55-37.95z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_4" viewBox="0 -42.887 61.05 42.909">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M55.6-21.5c2.933-6.933,4.75-13.8,5.45-20.6
|
||||
c-1.033-0.7-2.566-0.933-4.6-0.7c-4.067,0.5-8.567,3.117-13.5,7.85c-5.767,5.9-9.45,9.633-11.05,11.2
|
||||
c-2.3,2.267-5.35,4.433-9.15,6.5c-3.867,2.1-8.817,1.183-14.85-2.75c-3.033-1.967-5.667-4.15-7.9-6.55
|
||||
c1.767,4.566,4.333,9.1,7.7,13.6C14.433-3.95,21.833,0.367,29.9,0C41.167-0.5,49.733-7.667,55.6-21.5z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-282.5986" y1="131.1543" x2="191.152" y2="131.1543" gradientTransform="matrix(0.0681 -0.9977 0.9977 0.0681 2.933294e-005 -1.185611e-004)">
|
||||
<stop offset="0" style="stop-color:#CCE4E4"/>
|
||||
<stop offset="0.4902" style="stop-color:#CDE7CF"/>
|
||||
<stop offset="1" style="stop-color:#B5E4D6"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);" d="M191.8,15.6c7.267,11.733,10.7,27.583,10.3,47.55
|
||||
c-0.1,5.867-0.517,17.217-1.25,34.05c-0.633,15.867-1.017,28.417-1.149,37.649c-0.367,30.301,1.566,53.567,5.8,69.801
|
||||
c4.167,15.933,8.3,27.5,12.4,34.699c1.066,1.834,2.616,4.15,4.649,6.95c1.767,2.467,3.101,4.584,4,6.351
|
||||
c-19.7,0.267-43.633,0.399-71.8,0.399C98.35,253.116,48.9,252.6,6.4,251.5c-5-1.767-5.283-7.983-0.85-18.65
|
||||
c2.467-6,8.083-16.449,16.85-31.35c6.934-10.7,12.033-19.116,15.3-25.25c5.433-10.3,10.833-24.417,16.2-42.35
|
||||
c3.133-10.4,5.717-18.333,7.75-23.8c2.667-7.133,5.283-12.667,7.85-16.6c3.833-5.867,8.217-8.65,13.15-8.35
|
||||
c4.567,0.267,8.367,2.95,11.4,8.05c1.5,2.533,3.1,5.283,4.8,8.25c1.267,1.733,2.95,2.716,5.05,2.95c2.033,0.267,4.567-1.7,7.6-5.9
|
||||
c2.467-3.467,5.167-8.233,8.1-14.3c1.767-3.667,4.367-10.75,7.801-21.25c3.933-12.133,7.017-20.967,9.25-26.5
|
||||
c8.733-21.7,18.633-33.434,29.699-35.2C176.45-0.317,184.934,4.467,191.8,15.6z"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x5F_0_x2F_Layer_1_x2F__x3C_Clip_Group_0_x3E_" width="226.538" height="252.671" x="-0.038" y="-252.65" transform="matrix(1 0 0 -1 0.0498 0)" style="overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.5 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_16.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_16.svg-3aa4cf3f24ccde6bf6e8fe2ba4c220fc.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_16.svg"
|
||||
dest_files=[ "res://.import/bck_hill_16.svg-3aa4cf3f24ccde6bf6e8fe2ba4c220fc.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
88
glitch-ilmenskie-svg/ilmenskie/bck_hill_17.svg
Normal file
@ -0,0 +1,88 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="205.1px" height="288.1px" viewBox="0 0 205.1 288.1" style="enable-background:new 0 0 205.1 288.1;" xml:space="preserve"
|
||||
>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Clip_Group_0_x3E_" viewBox="0 -288.088 205.1 288.09">
|
||||
<g id="Layer_1_6_">
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M195.6-262.85c-4.567,11.367-9.617,25.684-15.15,42.95c-1.9,5.967-10.6,36.683-26.1,92.15
|
||||
c-14.533,52-22.8,80.483-24.8,85.45c-6,14.966-11.75,25.767-17.25,32.4C103.233,1,93.867,2.867,84.2-4.3
|
||||
c-4.333-3.2-8.3-9.35-11.9-18.45c-2.867-7.233-5.867-17.383-9-30.45c-1.833-7.667-4.566-19.85-8.2-36.55
|
||||
c-3.434-15.067-6.617-27.283-9.55-36.65c-6.466-20.667-14.917-47.4-25.35-80.2C12.133-233.533,5.4-260.5,0-287.5
|
||||
c35.033-0.667,77.05-0.767,126.05-0.3c40.367,0.4,66.717,0.883,79.05,1.45C201.2-276.75,198.033-268.917,195.6-262.85z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="Layer_3_1_" style="clip-path:url(#SVGID_2_);">
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_3" width="50.101" height="35.33" y="-35.328" transform="matrix(1 0 0 1 71.25 0)" style="overflow:visible;opacity:0.4492;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_2" width="76.587" height="55.736" y="-55.719" transform="matrix(1 0 0 1 61.7998 -34.6001)" style="overflow:visible;opacity:0.4492;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_1" width="94.7" height="74.39" y="-74.414" transform="matrix(1 0 0 1 54.5498 -59.3501)" style="overflow:visible;opacity:0.4492;enable-background:new ;"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" width="129.2" height="101.958" y="-101.945" transform="matrix(1 0 0 1 44.25 -118.1001)" style="overflow:visible;opacity:0.4492;enable-background:new ;"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_4_1_">
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" viewBox="0 -101.945 129.2 101.958">
|
||||
<g id="Layer_1_5_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M113-87.55c3.4,1.466,6.367,3.9,8.9,7.3
|
||||
c2.434,3.267,4.083,6.883,4.95,10.85l2.35-9.85c-1.2-5.467-3.467-10.367-6.8-14.7c-6.667-8.7-15.316-10.3-25.95-4.8
|
||||
c-5.567,2.9-11.567,8.267-18,16.1c-4.067,5-9.934,13.2-17.6,24.6c-5.167,8.433-9.483,15.233-12.95,20.4
|
||||
c-6.333,9.433-13.017,17.783-20.05,25.05C21.617-6.2,15.1-4.383,8.3-7.15c-3.4-1.4-6.167-3.434-8.3-6.1l2.15,7.3
|
||||
C4.283-3.85,7-2.233,10.3-1.1C16.867,1.2,23-0.067,28.7-4.9c7.733-6.533,17.55-18.2,29.45-35
|
||||
c14.067-19.833,23.967-32.883,29.7-39.15C96.317-88.283,104.7-91.117,113-87.55z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_1" viewBox="0 -74.414 94.7 74.39">
|
||||
<g id="Layer_1_4_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M91.65-43.75l0.25,3.25l2.8-9.85l-0.55-4.45
|
||||
c-0.533-3.4-1.2-6.2-2-8.4c-1.2-3.133-2.85-5.617-4.95-7.45c-1.667-1.434-3.733-2.533-6.2-3.3c-3.333-1-6.733-0.383-10.2,1.85
|
||||
c-4.133,2.667-9.017,7.917-14.65,15.75C48.75-46.083,43.1-38.633,39.2-34c-4.7,5.567-9.35,10.117-13.95,13.65
|
||||
c-3.9,3-8.517,3.1-13.85,0.3c-4.633-2.4-8.433-6-11.4-10.8l5.35,22.3C11.483-0.583,17.783,1.8,24.25-1.4
|
||||
c5.7-2.833,12.333-10.583,19.9-23.25c8.4-14.1,15.283-24.233,20.65-30.4c6.9-7.934,12.583-11.083,17.05-9.45
|
||||
c3.933,1.433,6.783,5.867,8.55,13.3C90.967-48.867,91.383-46.383,91.65-43.75z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_2" viewBox="0 -55.719 76.587 55.736">
|
||||
<g id="Layer_1_3_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M76.25-41.9c-0.933-5.567-3.633-9.783-8.1-12.65
|
||||
c-6.767-4.333-16.9,3.383-30.4,23.15c-5.967,8.667-11.867,13.933-17.7,15.8C13.183-13.433,6.5-16.05,0-23.45L3.9-7.8
|
||||
C8.433-2.833,13.033-0.233,17.7,0c4.7,0.233,9.233-1.95,13.6-6.55c1.833-1.934,4.233-5.083,7.2-9.45
|
||||
c1.733-2.5,4.433-6.517,8.1-12.05c6.933-10.167,12.4-16,16.4-17.5c3.967-1.5,6.683,1.183,8.15,8.05c0.6,2.8,1.033,7.7,1.3,14.7
|
||||
l3.85-11.6l0.25-2.2C76.65-38.4,76.55-40.167,76.25-41.9z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_3" viewBox="0 -35.328 50.101 35.33">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#C6E1B5;" d="M43.45-10.8c2.667-3.534,4.617-7.067,5.85-10.6l0.8-3.75
|
||||
c0.033-3.067-1.1-6.1-3.4-9.1c-1.667-2.2-5.25-1.033-10.75,3.5c-3.333,2.933-5.917,5.167-7.75,6.7c-3.3,2.833-6.133,5-8.5,6.5
|
||||
c-4.8,3-8.9,3.216-12.3,0.65c-1.967-1.467-4.433-4.333-7.4-8.6c2.2,6.567,4.467,11.567,6.8,15C11.633-3.4,17.65,0.1,24.85,0
|
||||
C31.917-0.1,38.117-3.7,43.45-10.8z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-314.6636" y1="110.6968" x2="154.3416" y2="110.6968" gradientTransform="matrix(0.0285 -0.9996 0.9996 0.0285 -4.540198e-004 2.348740e-004)">
|
||||
<stop offset="0" style="stop-color:#CCE4E4"/>
|
||||
<stop offset="0.4902" style="stop-color:#CDE7CF"/>
|
||||
<stop offset="1" style="stop-color:#B5E4D6"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);" d="M84.2,4.3c9.667-7.167,19.033-5.3,28.1,5.6
|
||||
c5.5,6.633,11.25,17.434,17.25,32.4c2,4.967,10.267,33.45,24.8,85.45c15.5,55.467,24.2,86.184,26.101,92.15
|
||||
c5.533,17.267,10.583,31.583,15.149,42.949c2.434,6.067,5.601,13.9,9.5,23.5c-12.333,0.567-38.683,1.051-79.05,1.45
|
||||
c-49,0.467-91.017,0.367-126.05-0.3c5.4-27,12.133-53.967,20.2-80.9c10.433-32.8,18.883-59.533,25.35-80.2
|
||||
c2.934-9.367,6.117-21.583,9.55-36.65c3.633-16.7,6.367-28.883,8.2-36.55c3.133-13.067,6.133-23.217,9-30.45
|
||||
C75.9,13.65,79.867,7.5,84.2,4.3z"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Clip_Group_0_x3E_" width="205.1" height="288.09" y="-288.088" transform="matrix(1 0 0 -1 0 0)" style="overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.1 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_17.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_17.svg-a0b425e46daac11508e4df6a308edab3.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_17.svg"
|
||||
dest_files=[ "res://.import/bck_hill_17.svg-a0b425e46daac11508e4df6a308edab3.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
33
glitch-ilmenskie-svg/ilmenskie/bck_hill_2.svg
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="554.7px" height="371.3px" viewBox="0 0 554.7 371.3" style="enable-background:new 0 0 554.7 371.3;" xml:space="preserve"
|
||||
>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" viewBox="0 -311.906 380.05 311.954">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#E7EEE1;" d="M364.15-307.85c-9.5-0.833-14.9-1.217-16.2-1.15
|
||||
c-25.667,1.433-54.667,1.967-87,1.6c-18.567-0.233-47.567-1-87-2.3c-38-1.267-67-1.983-87-2.15
|
||||
c-32.133-0.267-61.117,0.417-86.95,2.05c1.7,11.2,6.067,24.017,13.1,38.45c6.033,12.367,11.25,20.883,15.65,25.55
|
||||
c19.867,21.033,35.633,39.5,47.3,55.4c15.067,20.6,30.267,45.783,45.6,75.55c2.967,5.8,7.467,15.7,13.5,29.7
|
||||
c6.4,14.9,11.35,25.883,14.85,32.95c12.767,25.934,25.75,42.15,38.95,48.65C203.083,3.417,216.8,0.267,230.1-13
|
||||
c8.367-8.333,16.517-20.767,24.45-37.3c0.867-1.8,9.934-23.35,27.2-64.65c15.9-37.966,26.35-61.35,31.35-70.15
|
||||
c9.6-16.833,23.316-38.5,41.15-65c13.833-22.167,22.433-41.783,25.8-58.85C376.683-307.617,371.383-307.25,364.15-307.85z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CFE5DB;" d="M341.2,4.95c18.066-7.534,33.066-6.434,45,3.3
|
||||
c9.7,7.933,19.25,23.667,28.649,47.2c11.467,28.6,23.117,55.867,34.95,81.8c6.134,13.467,13.367,29.317,21.7,47.55
|
||||
c5.7,13.334,14.15,29.25,25.35,47.75c6.301,10.4,15.717,25.75,28.25,46.05c10.233,17.4,17.634,32.4,22.2,45
|
||||
c5.8,16.034,8.184,30.934,7.15,44.7c-1.066,0.3-5.3,0.4-12.7,0.3c-13.066-0.166-23.35-0.233-30.85-0.199
|
||||
c-4,0-37.884-0.267-101.65-0.801c-41-0.333-75.5,0.084-103.5,1.25c-25.566,1.067-59.867,1.284-102.9,0.65
|
||||
c-47.8-0.733-84.7-0.783-110.7-0.15c-3.133,0.067-15.483-0.183-37.05-0.75c-18.2-0.466-36.517-0.149-54.95,0.95
|
||||
c-1.167-17.934,4.65-40.083,17.45-66.45c9.433-19.466,20.85-38.066,34.25-55.8c8.433-11.133,17.267-27.55,26.5-49.25
|
||||
c5.333-12.5,9-20.883,11-25.15c4.4-9.3,8.9-17.4,13.5-24.3c9.867-14.833,19.183-23.233,27.95-25.2c7.067-1.6,14.517,1.067,22.35,8
|
||||
c2.867,2.5,6.283,6.033,10.25,10.6c2.267,2.6,5.684,6.567,10.25,11.9c8.5,9.6,15.95,15.7,22.35,18.3c14,5.7,28,1.45,42-12.75
|
||||
c10.267-10.4,22.233-28.417,35.9-54.05c0.367-0.733,5.933-11.483,16.7-32.25c6.634-12.767,12.134-22.833,16.5-30.2
|
||||
C319.634,21.85,331,9.183,341.2,4.95z"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" width="380.05" height="311.954" y="-311.906" transform="matrix(1 0 0 -1 153.75 59.3999)" style="overflow:visible;opacity:0.4219;enable-background:new ;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_2.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_2.svg-76cbe8fcddf78eaf9bbb09f281527698.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_2.svg"
|
||||
dest_files=[ "res://.import/bck_hill_2.svg-76cbe8fcddf78eaf9bbb09f281527698.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
30
glitch-ilmenskie-svg/ilmenskie/bck_hill_4.svg
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="165.8px" height="229.1px" viewBox="0 0 165.8 229.1" style="enable-background:new 0 0 165.8 229.1;" xml:space="preserve"
|
||||
>
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" viewBox="0 -153.698 94.7 153.698">
|
||||
<g id="Layer_1_2_">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CBECD2;" d="M50-39c4.5,12.533,8.133,21.667,10.9,27.4
|
||||
C64.6-3.867,67.7,0,70.2,0c5.5,0,8.683-7.183,9.55-21.55c0.233-4.067,0.35-10.383,0.35-18.95c-0.033-8.4,0.066-14.2,0.3-17.4
|
||||
c1.8-26.867,4.733-50.783,8.8-71.75c2-10.5,3.833-18.3,5.5-23.4c-12.767-0.6-32.383-0.784-58.85-0.55
|
||||
c-13.233,0.133-25.184,0.317-35.85,0.55c2.167,4.966,4.933,11.017,8.3,18.15c6.7,14.233,13.017,26.733,18.95,37.5
|
||||
c3.033,5.533,6.767,14.25,11.2,26.15C43.617-56.783,47.467-46.033,50-39z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#AFDDCA;" d="M128.25,9.75c5.7,7.6,9.316,19.267,10.85,35
|
||||
c1.134,11.833,5.934,45.783,14.4,101.85c4.2,28.034,8.3,54.884,12.3,80.551H69.85c-5.367,0.767-17.833,1.366-37.4,1.8
|
||||
C10.817,229.45,0,228.85,0,227.15C-0.033,214.55,4.033,201,12.2,186.5c2.3-4.066,6.083-10.15,11.35-18.25
|
||||
c5.2-7.967,8.967-14.05,11.3-18.25c3.533-6.4,7.383-14.767,11.55-25.1C51.9,111.3,56.8,96.933,61.1,81.8
|
||||
c5.667-23.5,10.367-40.25,14.1-50.25c6.433-17.1,14.983-27.167,25.649-30.2C112.483-1.983,121.616,0.817,128.25,9.75z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#A7D6BF;" d="M99.95,41.4c7.967-5.767,14.017-3.733,18.149,6.1
|
||||
c3.134,7.433,5.034,18.8,5.7,34.1c1.134,25.867,5,57.883,11.601,96.05c3.3,19.1,6.483,35.6,9.55,49.5H12.8
|
||||
c2-5.567,4.184-11.5,6.55-17.801c4.7-12.533,7.983-20.517,9.85-23.949c7.767-13.767,13.683-24.267,17.75-31.5
|
||||
c7.4-13.134,13.716-25.434,18.95-36.9c2.667-5.833,5.45-13.183,8.35-22.05c3.067-9.833,5.383-17.034,6.95-21.6
|
||||
C86.7,57.15,92.95,46.5,99.95,41.4z"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E_" width="94.7" height="153.698" y="-153.698" transform="matrix(1 0 0 -1 29.7998 74.1001)" style="overflow:visible;opacity:0.6602;enable-background:new ;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_4.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_4.svg-9521db829a6087b09da363bd3808e3ee.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_4.svg"
|
||||
dest_files=[ "res://.import/bck_hill_4.svg-9521db829a6087b09da363bd3808e3ee.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
29
glitch-ilmenskie-svg/ilmenskie/bck_hill_5.svg
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="168.05px" height="238.85px" viewBox="0 0 168.05 238.85" style="enable-background:new 0 0 168.05 238.85;"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#A8D9C9;" d="M107.25,31.75c2.833,9.533,6.116,25.383,9.85,47.55
|
||||
c2.967,14.367,6.551,28.034,10.75,41c3.2,9.934,6.233,17.95,9.101,24.05c5.633,12.134,11.616,27.601,17.95,46.4
|
||||
c6.399,19.066,10.783,34.566,13.149,46.5c-4.7,0-18.8,0.333-42.3,1c-17.8,0.5-27.833,0.483-30.1-0.05H0
|
||||
c0.233-3.533,0.683-7.967,1.35-13.3c1.267-10.7,2.917-20.601,4.95-29.7c2.534-11.334,10-39.316,22.4-83.95
|
||||
C40.267,69.683,46.567,45.767,47.6,39.5C50,25.033,54.05,14.467,59.75,7.8c6.7-7.8,15.3-9.75,25.8-5.85
|
||||
C95.184,5.517,102.417,15.45,107.25,31.75z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#99CFB5;" d="M105.9,90.85c2.333,10.566,4.55,19.433,6.649,26.6
|
||||
c3.367,11.6,8.267,25.3,14.7,41.1c3.3,8.167,6.934,16.851,10.9,26.05c5.1,13.2,9.199,25.851,12.3,37.95
|
||||
c1.566,6.066,2.616,10.8,3.149,14.2L93.2,238.2H19.35c2.1-7.834,4.833-17.45,8.2-28.851c6.667-22.833,13.1-43.149,19.3-60.949
|
||||
c3.8-10.9,6.833-23.634,9.1-38.2c1.833-11.567,3.25-24.883,4.25-39.95c0.867-12.667,3.5-22.717,7.9-30.15
|
||||
c4.967-8.3,10.6-9.867,16.9-4.7c6.4,5.233,11.616,15.9,15.65,32C101.217,69.733,102.967,77.55,105.9,90.85z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#BAECD2;" d="M77,73.4c6.233-2.3,13.167,9.45,20.8,35.25
|
||||
c1.8,6.167,4.467,16.183,8,30.05c2.8,10.967,4.717,17.733,5.75,20.3c6.934,16.967,17.4,43.2,31.4,78.7
|
||||
c-55.367,0.666-89.333,1-101.9,1c0.833-4.634,2.867-11.517,6.1-20.65c5.167-14.633,8.25-23.533,9.25-26.7
|
||||
c8.133-25.533,12.417-50.116,12.85-73.75c-0.5-12.8-0.583-21.934-0.25-27.4C69.533,80.8,72.2,75.2,77,73.4z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#99CFB5;" d="M78.95,148.05c-0.2-12.6,0.7-19.25,2.7-19.95
|
||||
c4.333-1.5,10.683,12.334,19.05,41.5c1.533,5.367,4.566,16.517,9.1,33.45c3.134,11.767,5.25,19.017,6.351,21.75
|
||||
c0.6,1.467,1.466,3.667,2.6,6.601c1.033,2.566,2.017,4.666,2.95,6.3c-8.134,0.3-16.867,0.517-26.2,0.649
|
||||
c-10.4,0.134-18.85,0.301-25.35,0.5c1.133-4.767,2.383-12.1,3.75-22c0.567-4.133,2.017-15.366,4.35-33.699
|
||||
C79.017,177.15,79.25,165.45,78.95,148.05z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_5.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_5.svg-d6ab1a0f4d47cdd6aa1994df3636ecb0.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_5.svg"
|
||||
dest_files=[ "res://.import/bck_hill_5.svg-d6ab1a0f4d47cdd6aa1994df3636ecb0.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
25
glitch-ilmenskie-svg/ilmenskie/bck_hill_6.svg
Normal file
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="271.1px" height="399.85px" viewBox="0 0 271.1 399.85" style="enable-background:new 0 0 271.1 399.85;"
|
||||
xml:space="preserve">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#CFE5DB;" d="M205,190.25c3.934,10.233,11.184,27.25,21.75,51.05
|
||||
c10.767,24.267,18.616,42.75,23.55,55.45c17.267,44.5,23.783,78.866,19.55,103.1L0,398.85c0.8-8.5,3.35-20.633,7.65-36.399
|
||||
c2.733-9.967,8.583-29.634,17.55-59c7.466-24.434,13.933-47.934,19.4-70.5c6.5-28.033,11.967-51.534,16.4-70.5
|
||||
c2.3-9.867,5.217-26.083,8.75-48.65c3.767-24.167,6.767-41.483,9-51.95c3.933-18.4,8.4-32.45,13.4-42.15
|
||||
C98.25,7.9,105.6,1.417,114.2,0.25c11.633-1.533,22,3.767,31.1,15.9c7.467,10,14.75,25.767,21.851,47.3
|
||||
c3.199,9.8,9.233,30.883,18.1,63.25C192.816,154.467,199.4,175.65,205,190.25z M123.9,111.55c-2.2-0.267-4.183,0.483-5.95,2.25
|
||||
c0.6-0.033,1.483-0.233,2.65-0.6c1-0.167,1.733,0.083,2.2,0.75c0.067,0.333-0.283,1.517-1.05,3.55
|
||||
c-0.833,2.267-1.283,3.533-1.35,3.8c-0.333,1.434-0.617,3.167-0.85,5.2c-0.233,2.1-0.333,3.833-0.3,5.2
|
||||
c0.167,3.267,0.45,5.733,0.85,7.4c0.7,3.066,1.917,5.167,3.65,6.3c-0.733,0.6-1.533,0.8-2.4,0.6c-0.533-0.1-1.4-0.467-2.6-1.1
|
||||
c1.267,1.633,2.817,2.583,4.65,2.85c1.5,0.233,2.934,0.017,4.3-0.65c2.3-1.133,4.083-3.65,5.35-7.55
|
||||
c1.067-3.333,1.534-6.65,1.4-9.95c-0.1-2.467-0.633-5.1-1.6-7.9c-1.033-3.067-2.317-5.5-3.85-7.3
|
||||
C127.6,112.733,125.9,111.783,123.9,111.55z M93.7,114.7c-1.8-0.567-3.517-0.467-5.15,0.3c0.967,0,1.667,0.083,2.1,0.25
|
||||
c0.7,0.267,1.083,0.8,1.15,1.6c0.034,0.267-0.333,1.066-1.1,2.4c-0.833,1.5-1.3,2.4-1.4,2.7c-0.667,2-1.05,4.4-1.15,7.2
|
||||
c-0.267,6.733,0.633,11.017,2.7,12.85c-0.533,1.467-1.883,1.383-4.05-0.25c0.867,1.533,2.017,2.483,3.45,2.85
|
||||
c1.133,0.333,2.267,0.267,3.4-0.2c1.867-0.767,3.45-2.783,4.75-6.05c1.1-2.733,1.717-5.533,1.85-8.4c0.233-5.867-0.617-10-2.55-12.4
|
||||
C96.667,116.183,95.333,115.233,93.7,114.7z M103.55,162.05c1.1,0.733,2.467,1.184,4.1,1.35c1.9,0.233,3.434-0.066,4.6-0.9
|
||||
c0.733-0.5-0.017-1.717-2.25-3.65c-2.333-2-4.6-2.983-6.8-2.95c-1.934,0.033-2.733,0.85-2.4,2.45
|
||||
C101.1,159.817,102.017,161.05,103.55,162.05z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_6.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_6.svg-06425f49d78c00cfef0bb9a115e27ddc.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_6.svg"
|
||||
dest_files=[ "res://.import/bck_hill_6.svg-06425f49d78c00cfef0bb9a115e27ddc.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
63
glitch-ilmenskie-svg/ilmenskie/bck_hill_8.svg
Normal file
@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="328.05px" height="320.35px" viewBox="0 0 328.05 320.35" style="enable-background:new 0 0 328.05 320.35;"
|
||||
xml:space="preserve">
|
||||
<symbol id="flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_1" viewBox="0 -257.35 188.55 257.317">
|
||||
<g id="Layer_1_2_">
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="15981.2363" y1="583.6875" x2="16094.666" y2="583.6875" gradientTransform="matrix(0.0919 0.9958 -1.0061 -0.0197 -789.5781 -16183.3896)">
|
||||
<stop offset="0" style="stop-color:#B5D6BA"/>
|
||||
<stop offset="1" style="stop-color:#DEECE0"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);" d="M107.3-27.65c2.534-7.434,4.95-17.367,7.25-29.8
|
||||
c1.333-7.167,3.25-18.267,5.75-33.3c2.367-13.2,4.817-23.967,7.35-32.3c5.633-18.567,12.35-36.934,20.15-55.1
|
||||
c6.7-15.633,12.1-26.5,16.2-32.6c2.933-4.367,7.9-13.133,14.9-26.3c3.533-6.567,6.75-12.7,9.65-18.4L0-257.35
|
||||
c0.967,3.867,2.6,9.267,4.9,16.2c4.6,13.867,10.184,28.433,16.75,43.7c7.967,18.534,15.367,41.467,22.2,68.8
|
||||
c7.533,30.367,11.883,56.867,13.05,79.5c0.434,8.167,1.867,15.95,4.3,23.35c2.367,7.233,5.383,13.117,9.05,17.65
|
||||
c3.8,4.767,7.8,7.433,12,8c4.567,0.633,8.967-1.3,13.2-5.8C100.117-10.917,104.067-18.15,107.3-27.65z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-282.417" y1="166.8906" x2="19.8016" y2="166.8906" gradientTransform="matrix(0.0111 -0.9999 0.9999 0.0111 -2.391078e-004 3.403276e-004)">
|
||||
<stop offset="0" style="stop-color:#B5D6BF"/>
|
||||
<stop offset="0.9882" style="stop-color:#BBDCCC"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);" d="M225.75,182.65c0.267-7.967,1.184-16.134,2.75-24.5
|
||||
l2.25-10.15l-0.45,3.8c-0.3,3.3-0.434,6.784-0.399,10.45c0.133,11.8,1.933,23.417,5.399,34.85
|
||||
c3.467,11.434,7.834,22.267,13.101,32.5c2.633,5.134,4.916,9.117,6.85,11.95c-2.333-7.7-4.483-16.717-6.45-27.05
|
||||
c-3.899-20.634-4.866-37.5-2.899-50.6c1.966-13.067,5.633-25.284,11-36.65c1.666-3.533,3.416-6.783,5.25-9.75
|
||||
c0.899-1.467,1.633-2.583,2.199-3.35l-1.699,5.95c-1.267,5-2.351,10.15-3.25,15.45c-2.834,16.9-3.067,31.9-0.7,45
|
||||
c2.366,13.101,5.2,24.8,8.5,35.101c1.666,5.133,3.1,8.966,4.3,11.5c-0.366-4.767-0.3-10.267,0.2-16.5
|
||||
c1-12.467,3.633-22.317,7.899-29.551c4.267-7.199,9.351-13.767,15.25-19.699c2.967-2.967,5.5-5.217,7.601-6.75
|
||||
c-0.8,0.9-1.8,2.184-3,3.85c-2.4,3.333-4.584,6.967-6.55,10.9c-6.267,12.6-9.184,25.833-8.75,39.699
|
||||
c0.3,10.267,1.716,20.567,4.25,30.9c1.267,5.2,2.5,9.35,3.699,12.45c0.467-2.767,1.25-6.033,2.351-9.8
|
||||
c2.233-7.5,5.017-13.733,8.35-18.7c3.367-4.967,6.75-9.283,10.15-12.95c1.7-1.833,3.066-3.167,4.1-4
|
||||
c-0.533,0.767-1.166,1.85-1.899,3.25c-1.534,2.733-2.9,5.583-4.101,8.55c-3.8,9.533-5.3,18.45-4.5,26.75
|
||||
c1.167,12.066,4.684,25.967,10.55,41.7c1.134,2.967,3.334,8.483,6.601,16.55c2.267,5.634,3.717,9.601,4.35,11.9
|
||||
c-48.8,0.5-98.649,1.083-149.55,1.75c-101.8,1.267-157.917,2.233-168.35,2.899c-2.9-1.966-3.633-6.716-2.2-14.25l3-10.75
|
||||
c6.2-29.933,6.233-54.267,0.1-73c-1.933-5.866-4.35-10.816-7.25-14.85L0,203.2c13.033,7.467,22.283,16.616,27.75,27.45
|
||||
c2.733,5.399,4.167,10.05,4.3,13.949c4.534-25.399,4.333-48.899-0.6-70.5c-1.567-6.767-3.5-12.933-5.8-18.5l-3-6.3
|
||||
c11.067,9.767,19.2,26.884,24.4,51.351c2.6,12.267,4.1,23.533,4.5,33.8c5.867-15.3,8.15-30.967,6.85-47
|
||||
c-0.4-5-1.133-9.733-2.2-14.2l-1.5-5.2c7.167,12.4,11.933,27.55,14.3,45.45c17.233-51.134,29.417-101.333,36.55-150.6
|
||||
c1.8-12.533,3.333-21.783,4.6-27.75c2-9.367,4.367-16.7,7.1-22c6.733-12.933,17.383-16.333,31.95-10.2
|
||||
c14.733,6.233,27.233,22.583,37.5,49.05c8.033,20.633,14.033,45.267,18,73.9c2.899,20.967,6.767,41.034,11.6,60.2
|
||||
c3.7,14.601,7.351,26.434,10.95,35.5c2.3,5.867,4.884,11,7.75,15.4c1.4,2.2,2.583,3.816,3.55,4.85
|
||||
c-2.233-6.666-4.45-14.149-6.649-22.449C227.533,202.866,225.483,190.616,225.75,182.65z"/>
|
||||
|
||||
<use xlink:href="#flash0.ai_x2F_Layer_1_x2F__x3C_Path_x3E__x5F_1" width="188.55" height="257.317" y="-257.35" transform="matrix(1 0 0 -1 64.1001 60.3999)" style="overflow:visible;opacity:0.7891;enable-background:new ;"/>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-262.1714" y1="191.3789" x2="-9.3474" y2="191.3789" gradientTransform="matrix(0.0993 -0.9951 1.0062 -0.0123 -4.898608e-004 -1.956178e-004)">
|
||||
<stop offset="0" style="stop-color:#B5D6BA"/>
|
||||
<stop offset="1" style="stop-color:#CEE3D1"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);" d="M172.2,142.2c2,8.9,4.916,22.8,8.75,41.7
|
||||
c3.467,16.366,6.483,28.517,9.05,36.449c4.667,14.434,13.833,35.334,27.5,62.7c6.2,12.367,11.483,23.3,15.85,32.8
|
||||
c-79.266,0.767-127.7,1.551-145.3,2.351c1.867-4.634,4.15-10.684,6.85-18.15c5.367-15,10.117-29.649,14.25-43.95
|
||||
c6.533-22.733,11.117-39.133,13.75-49.199c4.533-17.434,8.15-33.834,10.85-49.2c0.9-5,1.6-11.95,2.1-20.85
|
||||
c0.6-10.667,1.066-17.434,1.4-20.3c0.8-6.933,2.117-12.117,3.95-15.55c2.233-4.167,5.466-6.383,9.7-6.65
|
||||
c4-0.267,7.883,4.3,11.65,13.7C165.517,115.45,168.733,126.833,172.2,142.2z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_8.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_8.svg-9d46a3e68c812c486a4b3fccaa026768.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_8.svg"
|
||||
dest_files=[ "res://.import/bck_hill_8.svg-9d46a3e68c812c486a4b3fccaa026768.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
23
glitch-ilmenskie-svg/ilmenskie/bck_hill_9.svg
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="474px" height="306.9px" viewBox="0 0 474 306.9" style="enable-background:new 0 0 474 306.9;" xml:space="preserve">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="249.584" y1="-41.6758" x2="237.834" y2="283.3492">
|
||||
<stop offset="0" style="stop-color:#B5E3B5"/>
|
||||
<stop offset="0.5137" style="stop-color:#91C4C4"/>
|
||||
<stop offset="0.9882" style="stop-color:#759EA1"/>
|
||||
</linearGradient>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);" d="M332,111.4c4.833,2.833,12.134,14.3,21.9,34.4
|
||||
c0.566,1.133,5.416,11.384,14.55,30.75c6.633,14.033,12.483,25.983,17.55,35.851c4.333,8.5,10.366,18.5,18.1,30
|
||||
c9.167,13.633,16.467,22.633,21.9,27c9.066,7.3,19.816,14.85,32.25,22.649c3.967,2.467,6.9,4.533,8.8,6.2
|
||||
c2.566,2.2,4.884,4.917,6.95,8.15c-13.333-0.667-92.45-0.667-237.35,0C91.883,307.066,13,307.066,0,306.4
|
||||
c1.533-6.867,6.633-16.317,15.3-28.351c9.833-12.8,16.267-21.533,19.3-26.2c11.833-18.1,22.367-39.066,31.6-62.899
|
||||
c3.433-8.9,7.283-19.767,11.55-32.601c4.9-14.899,8.65-26.216,11.25-33.95c2.933-9.066,5.283-16.133,7.05-21.2
|
||||
c3.133-8.9,6.167-16.367,9.1-22.4c8.133-16.7,17.083-25.5,26.85-26.4c4.467-0.4,9.767,2.9,15.9,9.9
|
||||
c0.633,0.733,3.45,4.133,8.45,10.2c3.667,4.5,6.883,8.133,9.65,10.9c4.467,4.467,9.483,4.867,15.05,1.2
|
||||
c6.233-4.133,11.217-12.533,14.95-25.2c5.233-17.667,11.367-31.75,18.4-42.25c8.4-12.566,17.117-18.233,26.15-17
|
||||
C247.65,1.117,253.9,9.167,259.3,24.3c3.167,8.767,7.4,23.467,12.7,44.1c5.533,18.934,9.483,31.35,11.85,37.25
|
||||
c5.967,14.867,11.617,21.333,16.95,19.4c2.566-0.933,5.134-2.733,7.7-5.4c1.434-1.533,3.467-3.816,6.1-6.85
|
||||
c2.367-2.367,4.717-3.733,7.051-4.1C324.583,108.2,328.033,109.1,332,111.4z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
34
glitch-ilmenskie-svg/ilmenskie/bck_hill_9.svg.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/bck_hill_9.svg-9562cdfa9078341ebf25e7ecc601e0b2.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://glitch-ilmenskie-svg/ilmenskie/bck_hill_9.svg"
|
||||
dest_files=[ "res://.import/bck_hill_9.svg-9562cdfa9078341ebf25e7ecc601e0b2.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|