Commit 50a04c89a6feef85e484179ff622240711ff0ce7
[dali_1.1.27] Merge branch 'devel/master'
Change-Id: I7f014ed999b240cbc5fd4993206c70c6c8150ec9
Showing
26 changed files
with
2783 additions
and
66 deletions
build/tizen/CMakeLists.txt
| ... | ... | @@ -51,8 +51,9 @@ FILE(GLOB LOCAL_IMAGES_ICO RELATIVE "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/ |
| 51 | 51 | FILE(GLOB LOCAL_IMAGES_WBMP RELATIVE "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/*.wbmp") |
| 52 | 52 | FILE(GLOB LOCAL_IMAGES_KTX RELATIVE "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/*.ktx") |
| 53 | 53 | FILE(GLOB LOCAL_IMAGES_ASTC RELATIVE "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/*.astc") |
| 54 | +FILE(GLOB LOCAL_IMAGES_SVG RELATIVE "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/*.svg") | |
| 54 | 55 | |
| 55 | -SET(LOCAL_IMAGES_LIST ${LOCAL_IMAGES_PNG};${LOCAL_IMAGES_JPG};${LOCAL_IMAGES_GIF};${LOCAL_IMAGES_BMP};${LOCAL_IMAGES_ICO};${LOCAL_IMAGES_WBMP};${LOCAL_IMAGES_KTX};${LOCAL_IMAGES_ASTC}) | |
| 56 | +SET(LOCAL_IMAGES_LIST ${LOCAL_IMAGES_PNG};${LOCAL_IMAGES_JPG};${LOCAL_IMAGES_GIF};${LOCAL_IMAGES_BMP};${LOCAL_IMAGES_ICO};${LOCAL_IMAGES_WBMP};${LOCAL_IMAGES_KTX};${LOCAL_IMAGES_ASTC};${LOCAL_IMAGES_SVG}) | |
| 56 | 57 | FOREACH(flag ${LOCAL_IMAGES_LIST}) |
| 57 | 58 | INSTALL(FILES ${LOCAL_IMAGES_DIR}/${flag} DESTINATION ${IMAGES_DIR}) |
| 58 | 59 | ENDFOREACH(flag) | ... | ... |
com.samsung.dali-demo.xml
| ... | ... | @@ -133,6 +133,9 @@ |
| 133 | 133 | <ui-application appid="image-view-alpha-blending.example" exec="/usr/apps/com.samsung.dali-demo/bin/image-view-alpha-blending.example" nodisplay="true" multiple="false" type="c++app" taskmanage="true"> |
| 134 | 134 | <label>ImageView Alpha Blending</label> |
| 135 | 135 | </ui-application> |
| 136 | + <ui-application appid="image-view-svg.example" exec="/usr/apps/com.samsung.dali-demo/bin/image-view-svg.example" nodisplay="true" multiple="false" type="c++app" taskmanage="true"> | |
| 137 | + <label>ImageView SVG</label> | |
| 138 | + </ui-application> | |
| 136 | 139 | <ui-application appid="homescreen-benchmark.example" exec="/usr/apps/com.samsung.dali-demo/bin/homescreen-benchmark.example" nodisplay="true" multiple="false" type="c++app" taskmanage="true"> |
| 137 | 140 | <label>Homescreen Benchmark</label> |
| 138 | 141 | </ui-application> | ... | ... |
demo/dali-demo.cpp
| ... | ... | @@ -71,6 +71,7 @@ int main(int argc, char **argv) |
| 71 | 71 | demo.AddExample(Example("image-view.example", DALI_DEMO_STR_TITLE_IMAGE_VIEW)); |
| 72 | 72 | demo.AddExample(Example("image-view-pixel-area.example", DALI_DEMO_STR_TITLE_IMAGE_VIEW_PIXEL_AREA)); |
| 73 | 73 | demo.AddExample(Example("image-view-alpha-blending.example", DALI_DEMO_STR_TITLE_IMAGE_VIEW_ALPHA_BLENDING)); |
| 74 | + demo.AddExample(Example("image-view-svg.example", DALI_DEMO_STR_TITLE_IMAGE_VIEW_SVG)); | |
| 74 | 75 | demo.AddExample(Example("super-blur-bloom.example", DALI_DEMO_STR_TITLE_SUPER_BLUR_BLOOM)); |
| 75 | 76 | demo.AddExample(Example("tilt.example", DALI_DEMO_STR_TITLE_TILT_SENSOR)); |
| 76 | 77 | ... | ... |
demo/file.list
| ... | ... | @@ -15,7 +15,8 @@ demo_image_files = \ |
| 15 | 15 | $(demo_src_dir)/images/*.gif \ |
| 16 | 16 | $(demo_src_dir)/images/*.bmp \ |
| 17 | 17 | $(demo_src_dir)/images/*.ico \ |
| 18 | - $(demo_src_dir)/images/*.wbmp | |
| 18 | + $(demo_src_dir)/images/*.wbmp \ | |
| 19 | + $(demo_src_dir)/images/*.svg | |
| 19 | 20 | |
| 20 | 21 | demo_model_files = \ |
| 21 | 22 | $(demo_src_dir)/models/* | ... | ... |
examples/benchmark/benchmark.cpp
| ... | ... | @@ -195,8 +195,8 @@ Geometry& QuadMesh() |
| 195 | 195 | vertexFormat["aTexCoord"] = Property::VECTOR2; |
| 196 | 196 | |
| 197 | 197 | //Create a vertex buffer for vertex positions and texture coordinates |
| 198 | - vertexBuffer = PropertyBuffer::New( vertexFormat, 4u ); | |
| 199 | - vertexBuffer.SetData( gQuadWithTexture ); | |
| 198 | + vertexBuffer = PropertyBuffer::New( vertexFormat ); | |
| 199 | + vertexBuffer.SetData( gQuadWithTexture, 4u ); | |
| 200 | 200 | |
| 201 | 201 | //Create the geometry |
| 202 | 202 | mesh = Geometry::New(); | ... | ... |
examples/image-view-svg/image-view-svg-example.cpp
0 → 100644
| 1 | +/* | |
| 2 | + * Copyright (c) 2016 Samsung Electronics Co., Ltd. | |
| 3 | + * | |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); | |
| 5 | + * you may not use this file except in compliance with the License. | |
| 6 | + * You may obtain a copy of the License at | |
| 7 | + * | |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 | |
| 9 | + * | |
| 10 | + * Unless required by applicable law or agreed to in writing, software | |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, | |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 13 | + * See the License for the specific language governing permissions and | |
| 14 | + * limitations under the License. | |
| 15 | + * | |
| 16 | + */ | |
| 17 | + | |
| 18 | +#include <dali-toolkit/dali-toolkit.h> | |
| 19 | +#include <dali-toolkit/devel-api/controls/renderer-factory/renderer-factory.h> | |
| 20 | +#include <dali-toolkit/devel-api/controls/renderer-factory/control-renderer.h> | |
| 21 | +#include <string.h> | |
| 22 | + | |
| 23 | +using namespace Dali; | |
| 24 | + | |
| 25 | +namespace | |
| 26 | +{ | |
| 27 | +const float MAX_SCALE = 6.f; | |
| 28 | + | |
| 29 | +const char* SVG_IMAGES[] = | |
| 30 | +{ | |
| 31 | + DEMO_IMAGE_DIR "Camera.svg", | |
| 32 | + DEMO_IMAGE_DIR "Contacts.svg", | |
| 33 | + DEMO_IMAGE_DIR "Mail.svg", | |
| 34 | + DEMO_IMAGE_DIR "Message.svg", | |
| 35 | + DEMO_IMAGE_DIR "Phone.svg", | |
| 36 | + DEMO_IMAGE_DIR "Settings.svg", | |
| 37 | + DEMO_IMAGE_DIR "World.svg", | |
| 38 | + DEMO_IMAGE_DIR "Kid1.svg" | |
| 39 | +}; | |
| 40 | +const unsigned int NUM_SVG_IMAGES( sizeof( SVG_IMAGES ) / sizeof( SVG_IMAGES[0] ) ); | |
| 41 | +} | |
| 42 | + | |
| 43 | +// This example shows how to display svg images with ImageView | |
| 44 | +// | |
| 45 | +class ImageSvgController : public ConnectionTracker | |
| 46 | +{ | |
| 47 | +public: | |
| 48 | + | |
| 49 | + ImageSvgController( Application& application ) | |
| 50 | + : mApplication( application ), | |
| 51 | + mScale( 1.f ), | |
| 52 | + mIndex( 0 ) | |
| 53 | + { | |
| 54 | + // Connect to the Application's Init signal | |
| 55 | + mApplication.InitSignal().Connect( this, &ImageSvgController::Create ); | |
| 56 | + } | |
| 57 | + | |
| 58 | + ~ImageSvgController() | |
| 59 | + { | |
| 60 | + } | |
| 61 | + | |
| 62 | + // The Init signal is received once (only) during the Application lifetime | |
| 63 | + void Create( Application& application ) | |
| 64 | + { | |
| 65 | + // Get a handle to the stage | |
| 66 | + Stage stage = Stage::GetCurrent(); | |
| 67 | + stage.SetBackgroundColor( Color::WHITE ); | |
| 68 | + Vector2 stageSize = stage.GetSize(); | |
| 69 | + mActorSize = stageSize/2.f; | |
| 70 | + | |
| 71 | + stage.KeyEventSignal().Connect(this, &ImageSvgController::OnKeyEvent); | |
| 72 | + | |
| 73 | + // Background, for receiving gestures | |
| 74 | + mStageBackground = Actor::New(); | |
| 75 | + mStageBackground.SetAnchorPoint( AnchorPoint::TOP_CENTER ); | |
| 76 | + mStageBackground.SetParentOrigin( ParentOrigin::TOP_CENTER ); | |
| 77 | + mStageBackground.SetSize( stageSize.x, stageSize.y ); | |
| 78 | + stage.Add(mStageBackground); | |
| 79 | + | |
| 80 | + // Push button, for changing the image set for displaying | |
| 81 | + Toolkit::PushButton changeButton = Toolkit::PushButton::New(); | |
| 82 | + changeButton.SetLabelText( "Next" ); | |
| 83 | + changeButton.SetAnchorPoint( AnchorPoint::TOP_RIGHT ); | |
| 84 | + changeButton.SetParentOrigin( ParentOrigin::TOP_RIGHT ); | |
| 85 | + stage.Add( changeButton ); | |
| 86 | + changeButton.ClickedSignal().Connect( this, &ImageSvgController::OnChangeButtonClicked ); | |
| 87 | + | |
| 88 | + // Push button, for resetting the actor size and position | |
| 89 | + Toolkit::PushButton resetButton = Toolkit::PushButton::New(); | |
| 90 | + resetButton.SetLabelText( "Reset" ); | |
| 91 | + resetButton.SetAnchorPoint( AnchorPoint::TOP_LEFT ); | |
| 92 | + resetButton.SetParentOrigin( ParentOrigin::TOP_LEFT ); | |
| 93 | + stage.Add( resetButton ); | |
| 94 | + resetButton.ClickedSignal().Connect( this, &ImageSvgController::OnResetButtonClicked ); | |
| 95 | + | |
| 96 | + // Create and put imageViews to stage | |
| 97 | + for( unsigned int i=0; i<4u; i++) | |
| 98 | + { | |
| 99 | + mSvgActor[i] = Toolkit::ImageView::New(SVG_IMAGES[mIndex+i]); | |
| 100 | + mSvgActor[i].SetSize( mActorSize ); | |
| 101 | + stage.Add( mSvgActor[i] ); | |
| 102 | + } | |
| 103 | + mSvgActor[0].SetParentOrigin( ParentOrigin::CENTER ); | |
| 104 | + mSvgActor[0].SetAnchorPoint( AnchorPoint::BOTTOM_RIGHT ); | |
| 105 | + mSvgActor[1].SetParentOrigin( ParentOrigin::CENTER ); | |
| 106 | + mSvgActor[1].SetAnchorPoint( AnchorPoint::BOTTOM_LEFT ); | |
| 107 | + mSvgActor[2].SetParentOrigin( ParentOrigin::CENTER ); | |
| 108 | + mSvgActor[2].SetAnchorPoint( AnchorPoint::TOP_RIGHT ); | |
| 109 | + mSvgActor[3].SetParentOrigin( ParentOrigin::CENTER ); | |
| 110 | + mSvgActor[3].SetAnchorPoint( AnchorPoint::TOP_LEFT ); | |
| 111 | + | |
| 112 | + // Connect pan gesture for moving the actors | |
| 113 | + mPanGestureDetector = PanGestureDetector::New(); | |
| 114 | + mPanGestureDetector.DetectedSignal().Connect( this, &ImageSvgController::OnPanGesture ); | |
| 115 | + mPanGestureDetector.Attach( mStageBackground ); | |
| 116 | + | |
| 117 | + // Connect pinch gesture for resizing the actors | |
| 118 | + mPinchGestureDetector = PinchGestureDetector::New(); | |
| 119 | + mPinchGestureDetector.Attach( mStageBackground); | |
| 120 | + mPinchGestureDetector.DetectedSignal().Connect(this, &ImageSvgController::OnPinch); | |
| 121 | + } | |
| 122 | + | |
| 123 | + // Callback of push button, for changing image set | |
| 124 | + bool OnChangeButtonClicked( Toolkit::Button button ) | |
| 125 | + { | |
| 126 | + mIndex = (mIndex+4) % NUM_SVG_IMAGES; | |
| 127 | + for( unsigned int i=0; i<4u; i++) | |
| 128 | + { | |
| 129 | + mSvgActor[i].SetImage(SVG_IMAGES[mIndex+i]); | |
| 130 | + } | |
| 131 | + | |
| 132 | + return true; | |
| 133 | + } | |
| 134 | + | |
| 135 | + // Callback of push button, for resetting image size and position | |
| 136 | + bool OnResetButtonClicked( Toolkit::Button button ) | |
| 137 | + { | |
| 138 | + for( unsigned int i=0; i<4u; i++) | |
| 139 | + { | |
| 140 | + mSvgActor[i].SetSize(mActorSize); | |
| 141 | + mSvgActor[i].SetPosition( Vector3::ZERO ); | |
| 142 | + mScale = 1.f; | |
| 143 | + } | |
| 144 | + | |
| 145 | + return true; | |
| 146 | + } | |
| 147 | + | |
| 148 | + // Callback of pan gesture, for moving the actors | |
| 149 | + void OnPanGesture( Actor actor, const PanGesture& gesture ) | |
| 150 | + { | |
| 151 | + if( gesture.state == Gesture::Continuing ) | |
| 152 | + { | |
| 153 | + for( unsigned int i=0; i<4u; i++) | |
| 154 | + { | |
| 155 | + mSvgActor[i].TranslateBy(Vector3(gesture.displacement)); | |
| 156 | + } | |
| 157 | + } | |
| 158 | + } | |
| 159 | + | |
| 160 | + // Callback of pinch gesture, for resizing the actors | |
| 161 | + void OnPinch(Actor actor, const PinchGesture& gesture) | |
| 162 | + { | |
| 163 | + if (gesture.state == Gesture::Started) | |
| 164 | + { | |
| 165 | + mScaleAtPinchStart = mScale; | |
| 166 | + } | |
| 167 | + if( gesture.state == Gesture::Finished ) | |
| 168 | + { | |
| 169 | + mScale = mScaleAtPinchStart * gesture.scale; | |
| 170 | + mScale = mScale > MAX_SCALE ? MAX_SCALE : mScale; | |
| 171 | + for( unsigned int i=0; i<4u; i++) | |
| 172 | + { | |
| 173 | + mSvgActor[i].SetSize( mActorSize * mScale); | |
| 174 | + } | |
| 175 | + } | |
| 176 | + } | |
| 177 | + | |
| 178 | + /** | |
| 179 | + * Main key event handler | |
| 180 | + */ | |
| 181 | + void OnKeyEvent(const KeyEvent& event) | |
| 182 | + { | |
| 183 | + if(event.state == KeyEvent::Down) | |
| 184 | + { | |
| 185 | + if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) ) | |
| 186 | + { | |
| 187 | + mApplication.Quit(); | |
| 188 | + } | |
| 189 | + else | |
| 190 | + { | |
| 191 | + const char* keyName = event.keyPressedName.c_str(); | |
| 192 | + if( strcmp(keyName, "Left") == 0 ) | |
| 193 | + { | |
| 194 | + mScale /= 1.1f; | |
| 195 | + for( unsigned int i=0; i<4u; i++) | |
| 196 | + { | |
| 197 | + mSvgActor[i].SetSize( mActorSize * mScale); | |
| 198 | + } | |
| 199 | + } | |
| 200 | + else if( strcmp(keyName, "Right") == 0 ) | |
| 201 | + { | |
| 202 | + if( mScale < MAX_SCALE ) | |
| 203 | + { | |
| 204 | + mScale *= 1.1f; | |
| 205 | + } | |
| 206 | + for( unsigned int i=0; i<4u; i++) | |
| 207 | + { | |
| 208 | + mSvgActor[i].SetSize( mActorSize * mScale); | |
| 209 | + } | |
| 210 | + } | |
| 211 | + } | |
| 212 | + } | |
| 213 | + } | |
| 214 | + | |
| 215 | +private: | |
| 216 | + Application& mApplication; | |
| 217 | + Actor mStageBackground; | |
| 218 | + PanGestureDetector mPanGestureDetector; | |
| 219 | + PinchGestureDetector mPinchGestureDetector; | |
| 220 | + | |
| 221 | + Toolkit::ImageView mSvgActor[4]; | |
| 222 | + Vector2 mActorSize; | |
| 223 | + float mScale; | |
| 224 | + float mScaleAtPinchStart; | |
| 225 | + unsigned int mIndex; | |
| 226 | +}; | |
| 227 | + | |
| 228 | +void RunTest( Application& application ) | |
| 229 | +{ | |
| 230 | + ImageSvgController test( application ); | |
| 231 | + | |
| 232 | + application.MainLoop(); | |
| 233 | +} | |
| 234 | + | |
| 235 | +// Entry point for Linux & Tizen applications | |
| 236 | +// | |
| 237 | +int main( int argc, char **argv ) | |
| 238 | +{ | |
| 239 | + Application application = Application::New( &argc, &argv ); | |
| 240 | + | |
| 241 | + RunTest( application ); | |
| 242 | + | |
| 243 | + return 0; | |
| 244 | +} | ... | ... |
examples/line-mesh/line-mesh-example.cpp
| ... | ... | @@ -82,20 +82,20 @@ Geometry CreateGeometry() |
| 82 | 82 | |
| 83 | 83 | Property::Map pentagonVertexFormat; |
| 84 | 84 | pentagonVertexFormat["aPosition1"] = Property::VECTOR2; |
| 85 | - PropertyBuffer pentagonVertices = PropertyBuffer::New( pentagonVertexFormat, 5 ); | |
| 86 | - pentagonVertices.SetData(pentagonVertexData); | |
| 85 | + PropertyBuffer pentagonVertices = PropertyBuffer::New( pentagonVertexFormat ); | |
| 86 | + pentagonVertices.SetData(pentagonVertexData, 5); | |
| 87 | 87 | |
| 88 | 88 | Property::Map pentacleVertexFormat; |
| 89 | 89 | pentacleVertexFormat["aPosition2"] = Property::VECTOR2; |
| 90 | - PropertyBuffer pentacleVertices = PropertyBuffer::New( pentacleVertexFormat, 5 ); | |
| 91 | - pentacleVertices.SetData(pentacleVertexData); | |
| 90 | + PropertyBuffer pentacleVertices = PropertyBuffer::New( pentacleVertexFormat ); | |
| 91 | + pentacleVertices.SetData( pentacleVertexData, 5 ); | |
| 92 | 92 | |
| 93 | 93 | // Create indices |
| 94 | 94 | unsigned int indexData[10] = { 0, 1, 1, 2, 2, 3, 3, 4, 4, 0 }; |
| 95 | 95 | Property::Map indexFormat; |
| 96 | 96 | indexFormat["indices"] = Property::INTEGER; |
| 97 | - PropertyBuffer indices = PropertyBuffer::New( indexFormat, sizeof(indexData)/sizeof(indexData[0]) ); | |
| 98 | - indices.SetData(indexData); | |
| 97 | + PropertyBuffer indices = PropertyBuffer::New( indexFormat ); | |
| 98 | + indices.SetData( indexData, sizeof(indexData)/sizeof(indexData[0]) ); | |
| 99 | 99 | |
| 100 | 100 | // Create the geometry object |
| 101 | 101 | Geometry pentagonGeometry = Geometry::New(); | ... | ... |
examples/mesh-morph/mesh-morph-example.cpp
| ... | ... | @@ -218,18 +218,18 @@ Geometry CreateGeometry() |
| 218 | 218 | |
| 219 | 219 | Property::Map initialPositionVertexFormat; |
| 220 | 220 | initialPositionVertexFormat["aInitPos"] = Property::VECTOR2; |
| 221 | - PropertyBuffer initialPositionVertices = PropertyBuffer::New( initialPositionVertexFormat, numberOfVertices ); | |
| 222 | - initialPositionVertices.SetData(quad); | |
| 221 | + PropertyBuffer initialPositionVertices = PropertyBuffer::New( initialPositionVertexFormat ); | |
| 222 | + initialPositionVertices.SetData( quad, numberOfVertices ); | |
| 223 | 223 | |
| 224 | 224 | Property::Map finalPositionVertexFormat; |
| 225 | 225 | finalPositionVertexFormat["aFinalPos"] = Property::VECTOR2; |
| 226 | - PropertyBuffer finalPositionVertices = PropertyBuffer::New( finalPositionVertexFormat, numberOfVertices ); | |
| 227 | - finalPositionVertices.SetData(cat); | |
| 226 | + PropertyBuffer finalPositionVertices = PropertyBuffer::New( finalPositionVertexFormat ); | |
| 227 | + finalPositionVertices.SetData( cat, numberOfVertices ); | |
| 228 | 228 | |
| 229 | 229 | Property::Map colorVertexFormat; |
| 230 | 230 | colorVertexFormat["aColor"] = Property::VECTOR3; |
| 231 | - PropertyBuffer colorVertices = PropertyBuffer::New( colorVertexFormat, numberOfVertices ); | |
| 232 | - colorVertices.SetData(colors); | |
| 231 | + PropertyBuffer colorVertices = PropertyBuffer::New( colorVertexFormat ); | |
| 232 | + colorVertices.SetData( colors, numberOfVertices ); | |
| 233 | 233 | |
| 234 | 234 | // Create the geometry object |
| 235 | 235 | Geometry texturedQuadGeometry = Geometry::New(); | ... | ... |
examples/mesh-sorting/mesh-sorting-example.cpp
| ... | ... | @@ -98,15 +98,15 @@ Geometry CreateGeometry() |
| 98 | 98 | Property::Map texturedQuadVertexFormat; |
| 99 | 99 | texturedQuadVertexFormat["aPosition"] = Property::VECTOR2; |
| 100 | 100 | texturedQuadVertexFormat["aTexCoord"] = Property::VECTOR2; |
| 101 | - PropertyBuffer texturedQuadVertices = PropertyBuffer::New( texturedQuadVertexFormat, 4 ); | |
| 102 | - texturedQuadVertices.SetData(texturedQuadVertexData); | |
| 101 | + PropertyBuffer texturedQuadVertices = PropertyBuffer::New( texturedQuadVertexFormat ); | |
| 102 | + texturedQuadVertices.SetData( texturedQuadVertexData, 4 ); | |
| 103 | 103 | |
| 104 | 104 | // Create indices |
| 105 | 105 | unsigned int indexData[6] = { 0, 3, 1, 0, 2, 3 }; |
| 106 | 106 | Property::Map indexFormat; |
| 107 | 107 | indexFormat["indices"] = Property::INTEGER; |
| 108 | - PropertyBuffer indices = PropertyBuffer::New( indexFormat, 6 ); | |
| 109 | - indices.SetData(indexData); | |
| 108 | + PropertyBuffer indices = PropertyBuffer::New( indexFormat ); | |
| 109 | + indices.SetData( indexData, 6 ); | |
| 110 | 110 | |
| 111 | 111 | // Create the geometry object |
| 112 | 112 | Geometry texturedQuadGeometry = Geometry::New(); | ... | ... |
examples/metaball-explosion/metaball-explosion-example.cpp
| ... | ... | @@ -380,20 +380,20 @@ Geometry MetaballExplosionController::CreateGeometry() |
| 380 | 380 | //Vertices |
| 381 | 381 | Property::Map positionVertexFormat; |
| 382 | 382 | positionVertexFormat["aPosition"] = Property::VECTOR2; |
| 383 | - PropertyBuffer positionVertices = PropertyBuffer::New( positionVertexFormat, numberOfVertices ); | |
| 384 | - positionVertices.SetData(vertices); | |
| 383 | + PropertyBuffer positionVertices = PropertyBuffer::New( positionVertexFormat ); | |
| 384 | + positionVertices.SetData( vertices, numberOfVertices ); | |
| 385 | 385 | |
| 386 | 386 | //Textures |
| 387 | 387 | Property::Map textureVertexFormat; |
| 388 | 388 | textureVertexFormat["aTexture"] = Property::VECTOR2; |
| 389 | - PropertyBuffer textureVertices = PropertyBuffer::New( textureVertexFormat, numberOfVertices ); | |
| 390 | - textureVertices.SetData(textures); | |
| 389 | + PropertyBuffer textureVertices = PropertyBuffer::New( textureVertexFormat ); | |
| 390 | + textureVertices.SetData( textures, numberOfVertices ); | |
| 391 | 391 | |
| 392 | 392 | //Indices |
| 393 | 393 | Property::Map indicesVertexFormat; |
| 394 | 394 | indicesVertexFormat["aIndices"] = Property::INTEGER; |
| 395 | - PropertyBuffer indicesToVertices = PropertyBuffer::New( indicesVertexFormat, 6 ); | |
| 396 | - indicesToVertices.SetData(indices); | |
| 395 | + PropertyBuffer indicesToVertices = PropertyBuffer::New( indicesVertexFormat ); | |
| 396 | + indicesToVertices.SetData( indices, 6 ); | |
| 397 | 397 | |
| 398 | 398 | // Create the geometry object |
| 399 | 399 | Geometry texturedQuadGeometry = Geometry::New(); |
| ... | ... | @@ -438,20 +438,20 @@ Geometry MetaballExplosionController::CreateGeometryComposition() |
| 438 | 438 | //Vertices |
| 439 | 439 | Property::Map positionVertexFormat; |
| 440 | 440 | positionVertexFormat["aPosition"] = Property::VECTOR2; |
| 441 | - PropertyBuffer positionVertices = PropertyBuffer::New( positionVertexFormat, numberOfVertices ); | |
| 442 | - positionVertices.SetData(vertices); | |
| 441 | + PropertyBuffer positionVertices = PropertyBuffer::New( positionVertexFormat ); | |
| 442 | + positionVertices.SetData( vertices, numberOfVertices ); | |
| 443 | 443 | |
| 444 | 444 | //Textures |
| 445 | 445 | Property::Map textureVertexFormat; |
| 446 | 446 | textureVertexFormat["aTexture"] = Property::VECTOR2; |
| 447 | - PropertyBuffer textureVertices = PropertyBuffer::New( textureVertexFormat, numberOfVertices ); | |
| 448 | - textureVertices.SetData(textures); | |
| 447 | + PropertyBuffer textureVertices = PropertyBuffer::New( textureVertexFormat ); | |
| 448 | + textureVertices.SetData( textures, numberOfVertices ); | |
| 449 | 449 | |
| 450 | 450 | //Indices |
| 451 | 451 | Property::Map indicesVertexFormat; |
| 452 | 452 | indicesVertexFormat["aIndices"] = Property::INTEGER; |
| 453 | - PropertyBuffer indicesToVertices = PropertyBuffer::New( indicesVertexFormat, 6 ); | |
| 454 | - indicesToVertices.SetData(indices); | |
| 453 | + PropertyBuffer indicesToVertices = PropertyBuffer::New( indicesVertexFormat ); | |
| 454 | + indicesToVertices.SetData( indices, 6 ); | |
| 455 | 455 | |
| 456 | 456 | // Create the geometry object |
| 457 | 457 | Geometry texturedQuadGeometry = Geometry::New(); | ... | ... |
examples/metaball-refrac/metaball-refrac-example.cpp
| ... | ... | @@ -327,26 +327,26 @@ Geometry MetaballRefracController::CreateGeometry() |
| 327 | 327 | //Vertices |
| 328 | 328 | Property::Map positionVertexFormat; |
| 329 | 329 | positionVertexFormat["aPosition"] = Property::VECTOR2; |
| 330 | - PropertyBuffer positionVertices = PropertyBuffer::New( positionVertexFormat, numberOfVertices ); | |
| 331 | - positionVertices.SetData(vertices); | |
| 330 | + PropertyBuffer positionVertices = PropertyBuffer::New( positionVertexFormat ); | |
| 331 | + positionVertices.SetData( vertices, numberOfVertices ); | |
| 332 | 332 | |
| 333 | 333 | //Textures |
| 334 | 334 | Property::Map textureVertexFormat; |
| 335 | 335 | textureVertexFormat["aTexture"] = Property::VECTOR2; |
| 336 | - PropertyBuffer textureVertices = PropertyBuffer::New( textureVertexFormat, numberOfVertices ); | |
| 337 | - textureVertices.SetData(textures); | |
| 336 | + PropertyBuffer textureVertices = PropertyBuffer::New( textureVertexFormat ); | |
| 337 | + textureVertices.SetData( textures, numberOfVertices ); | |
| 338 | 338 | |
| 339 | 339 | //Normals |
| 340 | 340 | Property::Map normalVertexFormat; |
| 341 | 341 | normalVertexFormat["aNormal"] = Property::VECTOR3; |
| 342 | - PropertyBuffer normalVertices = PropertyBuffer::New( normalVertexFormat, numberOfVertices ); | |
| 343 | - normalVertices.SetData(normals); | |
| 342 | + PropertyBuffer normalVertices = PropertyBuffer::New( normalVertexFormat ); | |
| 343 | + normalVertices.SetData( normals, numberOfVertices ); | |
| 344 | 344 | |
| 345 | 345 | //Indices |
| 346 | 346 | Property::Map indicesVertexFormat; |
| 347 | 347 | indicesVertexFormat["aIndices"] = Property::INTEGER; |
| 348 | - PropertyBuffer indicesToVertices = PropertyBuffer::New( indicesVertexFormat, 6 ); | |
| 349 | - indicesToVertices.SetData(indices); | |
| 348 | + PropertyBuffer indicesToVertices = PropertyBuffer::New( indicesVertexFormat ); | |
| 349 | + indicesToVertices.SetData( indices, 6 ); | |
| 350 | 350 | |
| 351 | 351 | |
| 352 | 352 | // Create the geometry object |
| ... | ... | @@ -403,27 +403,26 @@ Geometry MetaballRefracController::CreateGeometryComposition() |
| 403 | 403 | //Vertices |
| 404 | 404 | Property::Map positionVertexFormat; |
| 405 | 405 | positionVertexFormat["aPosition"] = Property::VECTOR2; |
| 406 | - PropertyBuffer positionVertices = PropertyBuffer::New( positionVertexFormat, numberOfVertices ); | |
| 407 | - positionVertices.SetData(vertices); | |
| 406 | + PropertyBuffer positionVertices = PropertyBuffer::New( positionVertexFormat ); | |
| 407 | + positionVertices.SetData( vertices, numberOfVertices ); | |
| 408 | 408 | |
| 409 | 409 | //Textures |
| 410 | 410 | Property::Map textureVertexFormat; |
| 411 | 411 | textureVertexFormat["aTexture"] = Property::VECTOR2; |
| 412 | - PropertyBuffer textureVertices = PropertyBuffer::New( textureVertexFormat, numberOfVertices ); | |
| 413 | - textureVertices.SetData(textures); | |
| 412 | + PropertyBuffer textureVertices = PropertyBuffer::New( textureVertexFormat ); | |
| 413 | + textureVertices.SetData( textures, numberOfVertices ); | |
| 414 | 414 | |
| 415 | 415 | //Normals |
| 416 | 416 | Property::Map normalVertexFormat; |
| 417 | 417 | normalVertexFormat["aNormal"] = Property::VECTOR3; |
| 418 | - PropertyBuffer normalVertices = PropertyBuffer::New( normalVertexFormat, numberOfVertices ); | |
| 419 | - normalVertices.SetData(normals); | |
| 418 | + PropertyBuffer normalVertices = PropertyBuffer::New( normalVertexFormat ); | |
| 419 | + normalVertices.SetData( normals, numberOfVertices ); | |
| 420 | 420 | |
| 421 | 421 | //Indices |
| 422 | 422 | Property::Map indicesVertexFormat; |
| 423 | 423 | indicesVertexFormat["aIndices"] = Property::INTEGER; |
| 424 | - PropertyBuffer indicesToVertices = PropertyBuffer::New( indicesVertexFormat, 6 ); | |
| 425 | - indicesToVertices.SetData(indices); | |
| 426 | - | |
| 424 | + PropertyBuffer indicesToVertices = PropertyBuffer::New( indicesVertexFormat ); | |
| 425 | + indicesToVertices.SetData( indices, 6 ); | |
| 427 | 426 | |
| 428 | 427 | // Create the geometry object |
| 429 | 428 | Geometry texturedQuadGeometry = Geometry::New(); | ... | ... |
examples/new-window/new-window-example.cpp
| ... | ... | @@ -446,15 +446,15 @@ Geometry NewWindowController::CreateMeshGeometry() |
| 446 | 446 | vertexFormat["aPosition"] = Property::VECTOR3; |
| 447 | 447 | vertexFormat["aTexCoord"] = Property::VECTOR2; |
| 448 | 448 | vertexFormat["aColor"] = Property::VECTOR3; |
| 449 | - PropertyBuffer vertices = PropertyBuffer::New( vertexFormat, 5 ); | |
| 450 | - vertices.SetData( vertexData ); | |
| 449 | + PropertyBuffer vertices = PropertyBuffer::New( vertexFormat ); | |
| 450 | + vertices.SetData( vertexData, 5 ); | |
| 451 | 451 | |
| 452 | 452 | // Specify all the faces |
| 453 | 453 | unsigned int indexData[12] = { 0,1,3,0,2,4,0,3,4,0,2,1 }; |
| 454 | 454 | Property::Map indexFormat; |
| 455 | 455 | indexFormat["indices"] = Property::INTEGER; |
| 456 | - PropertyBuffer indices = PropertyBuffer::New( indexFormat, 12 ); | |
| 457 | - indices.SetData( indexData ); | |
| 456 | + PropertyBuffer indices = PropertyBuffer::New( indexFormat ); | |
| 457 | + indices.SetData( indexData, 12 ); | |
| 458 | 458 | |
| 459 | 459 | // Create the geometry object |
| 460 | 460 | Geometry geometry = Geometry::New(); | ... | ... |
examples/point-mesh/point-mesh-example.cpp
| ... | ... | @@ -98,8 +98,8 @@ Geometry CreateGeometry() |
| 98 | 98 | Property::Map polyhedraVertexFormat; |
| 99 | 99 | polyhedraVertexFormat["aPosition"] = Property::VECTOR2; |
| 100 | 100 | polyhedraVertexFormat["aHue"] = Property::FLOAT; |
| 101 | - PropertyBuffer polyhedraVertices = PropertyBuffer::New( polyhedraVertexFormat, numSides ); | |
| 102 | - polyhedraVertices.SetData(polyhedraVertexData); | |
| 101 | + PropertyBuffer polyhedraVertices = PropertyBuffer::New( polyhedraVertexFormat ); | |
| 102 | + polyhedraVertices.SetData( polyhedraVertexData, numSides ); | |
| 103 | 103 | |
| 104 | 104 | // Create the geometry object |
| 105 | 105 | Geometry polyhedraGeometry = Geometry::New(); | ... | ... |
examples/radial-menu/radial-sweep-view-impl.cpp
| ... | ... | @@ -331,14 +331,14 @@ void RadialSweepViewImpl::CreateStencil( Radian initialSector ) |
| 331 | 331 | vertexFormat["aAngleIndex"] = Property::FLOAT; |
| 332 | 332 | vertexFormat["aPosition1"] = Property::VECTOR2; |
| 333 | 333 | vertexFormat["aPosition2"] = Property::VECTOR2; |
| 334 | - PropertyBuffer vertices = PropertyBuffer::New( vertexFormat, 7u ); | |
| 335 | - vertices.SetData( vertexData ); | |
| 334 | + PropertyBuffer vertices = PropertyBuffer::New( vertexFormat ); | |
| 335 | + vertices.SetData( vertexData, 7u ); | |
| 336 | 336 | |
| 337 | 337 | unsigned int indexData[15] = { 0,1,2,0,2,3,0,3,4,0,4,5,0,5,6 }; |
| 338 | 338 | Property::Map indexFormat; |
| 339 | 339 | indexFormat["indices"] = Property::INTEGER; |
| 340 | - PropertyBuffer indices = PropertyBuffer::New( indexFormat, 15u ); | |
| 341 | - indices.SetData( indexData ); | |
| 340 | + PropertyBuffer indices = PropertyBuffer::New( indexFormat ); | |
| 341 | + indices.SetData( indexData, 15u ); | |
| 342 | 342 | |
| 343 | 343 | Geometry meshGeometry = Geometry::New(); |
| 344 | 344 | meshGeometry.AddVertexBuffer( vertices ); | ... | ... |
examples/refraction-effect/refraction-effect-example.cpp
| ... | ... | @@ -456,8 +456,8 @@ private: |
| 456 | 456 | vertexFormat["aPosition"] = Property::VECTOR3; |
| 457 | 457 | vertexFormat["aNormal"] = Property::VECTOR3; |
| 458 | 458 | vertexFormat["aTexCoord"] = Property::VECTOR2; |
| 459 | - PropertyBuffer surfaceVertices = PropertyBuffer::New( vertexFormat, vertices.size() ); | |
| 460 | - surfaceVertices.SetData( &vertices[0] ); | |
| 459 | + PropertyBuffer surfaceVertices = PropertyBuffer::New( vertexFormat ); | |
| 460 | + surfaceVertices.SetData( &vertices[0], vertices.size() ); | |
| 461 | 461 | |
| 462 | 462 | Geometry surface = Geometry::New(); |
| 463 | 463 | surface.AddVertexBuffer( surfaceVertices ); | ... | ... |
examples/textured-mesh/textured-mesh-example.cpp
| ... | ... | @@ -75,15 +75,15 @@ Geometry CreateGeometry() |
| 75 | 75 | Property::Map texturedQuadVertexFormat; |
| 76 | 76 | texturedQuadVertexFormat["aPosition"] = Property::VECTOR2; |
| 77 | 77 | texturedQuadVertexFormat["aTexCoord"] = Property::VECTOR2; |
| 78 | - PropertyBuffer texturedQuadVertices = PropertyBuffer::New( texturedQuadVertexFormat, 4 ); | |
| 79 | - texturedQuadVertices.SetData(texturedQuadVertexData); | |
| 78 | + PropertyBuffer texturedQuadVertices = PropertyBuffer::New( texturedQuadVertexFormat ); | |
| 79 | + texturedQuadVertices.SetData( texturedQuadVertexData, 4 ); | |
| 80 | 80 | |
| 81 | 81 | // Create indices |
| 82 | 82 | unsigned int indexData[6] = { 0, 3, 1, 0, 2, 3 }; |
| 83 | 83 | Property::Map indexFormat; |
| 84 | 84 | indexFormat["indices"] = Property::INTEGER; |
| 85 | - PropertyBuffer indices = PropertyBuffer::New( indexFormat, sizeof(indexData)/sizeof(indexData[0]) ); | |
| 86 | - indices.SetData(indexData); | |
| 85 | + PropertyBuffer indices = PropertyBuffer::New( indexFormat ); | |
| 86 | + indices.SetData( indexData, sizeof(indexData)/sizeof(indexData[0]) ); | |
| 87 | 87 | |
| 88 | 88 | // Create the geometry object |
| 89 | 89 | Geometry texturedQuadGeometry = Geometry::New(); | ... | ... |
packaging/com.samsung.dali-demo.spec
resources/images/Camera.svg
0 → 100755
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |
| 3 | + | |
| 4 | +<svg | |
| 5 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| 6 | + xmlns:cc="http://creativecommons.org/ns#" | |
| 7 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| 8 | + xmlns:svg="http://www.w3.org/2000/svg" | |
| 9 | + xmlns="http://www.w3.org/2000/svg" | |
| 10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| 11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| 12 | + version="1.1" | |
| 13 | + id="Layer_1" | |
| 14 | + x="0px" | |
| 15 | + y="0px" | |
| 16 | + viewBox="0 0 195.688 195.687" | |
| 17 | + xml:space="preserve" | |
| 18 | + inkscape:version="0.48.4 r9939" | |
| 19 | + width="100%" | |
| 20 | + height="100%" | |
| 21 | + sodipodi:docname="Camera.svg"><metadata | |
| 22 | + id="metadata111"><rdf:RDF><cc:Work | |
| 23 | + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | |
| 24 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs | |
| 25 | + id="defs109" /><sodipodi:namedview | |
| 26 | + pagecolor="#ffffff" | |
| 27 | + bordercolor="#666666" | |
| 28 | + borderopacity="1" | |
| 29 | + objecttolerance="10" | |
| 30 | + gridtolerance="10" | |
| 31 | + guidetolerance="10" | |
| 32 | + inkscape:pageopacity="0" | |
| 33 | + inkscape:pageshadow="2" | |
| 34 | + inkscape:window-width="1855" | |
| 35 | + inkscape:window-height="1056" | |
| 36 | + id="namedview107" | |
| 37 | + showgrid="false" | |
| 38 | + inkscape:zoom="6.342955" | |
| 39 | + inkscape:cx="95.823553" | |
| 40 | + inkscape:cy="77.789068" | |
| 41 | + inkscape:window-x="1985" | |
| 42 | + inkscape:window-y="24" | |
| 43 | + inkscape:window-maximized="1" | |
| 44 | + inkscape:current-layer="Layer_1" | |
| 45 | + fit-margin-top="0" | |
| 46 | + fit-margin-left="0" | |
| 47 | + fit-margin-right="0" | |
| 48 | + fit-margin-bottom="0" /><g | |
| 49 | + id="g3" | |
| 50 | + transform="translate(-199.60801,-323.454)"><linearGradient | |
| 51 | + id="SVGID_1_" | |
| 52 | + gradientUnits="userSpaceOnUse" | |
| 53 | + x1="297.4512" | |
| 54 | + y1="324.3956" | |
| 55 | + x2="297.4512" | |
| 56 | + y2="518.1626"><stop | |
| 57 | + offset="0" | |
| 58 | + style="stop-color:#FFFFFF;stop-opacity:0.7" | |
| 59 | + id="stop6" /><stop | |
| 60 | + offset="0.9987" | |
| 61 | + style="stop-color:#D8D9D8;stop-opacity:0.7" | |
| 62 | + id="stop8" /></linearGradient><path | |
| 63 | + style="fill:url(#SVGID_1_);fill-rule:evenodd" | |
| 64 | + d="m 209.231,518.642 c -5.031,0 -9.124,-4.093 -9.124,-9.124 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.441 c 5.03,0 9.123,4.093 9.123,9.124 v 176.44 c 0,5.031 -4.093,9.124 -9.123,9.124 H 209.231 z" | |
| 65 | + id="path10" | |
| 66 | + inkscape:connector-curvature="0" /><path | |
| 67 | + style="fill:#d8d8d7" | |
| 68 | + d="m 385.671,324.454 c 4.755,0 8.624,3.868 8.624,8.623 v 176.441 c 0,4.755 -3.868,8.623 -8.624,8.623 h -176.44 c -4.755,0 -8.623,-3.868 -8.623,-8.623 V 333.077 c 0,-4.755 3.868,-8.623 8.623,-8.623 h 176.44 m 0,-1 h -176.44 c -5.315,0 -9.623,4.309 -9.623,9.623 v 176.441 c 0,5.315 4.309,9.623 9.623,9.623 h 176.441 c 5.315,0 9.624,-4.308 9.624,-9.623 V 333.077 c -10e-4,-5.315 -4.31,-9.623 -9.625,-9.623 l 0,0 z" | |
| 69 | + id="path12" | |
| 70 | + inkscape:connector-curvature="0" /></g><path | |
| 71 | + style="fill:none" | |
| 72 | + d="M 41.644991,57.106 H 161.45399 c 3.472,0 6.287,2.815 6.287,6.287 v 79.809 c 0,3.472 -2.815,6.287 -6.287,6.287 H 41.644991 c -3.472,0 -6.287,-2.815 -6.287,-6.287 V 63.393 c 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 73 | + id="path14" | |
| 74 | + inkscape:connector-curvature="0" /><g | |
| 75 | + id="g16" | |
| 76 | + transform="translate(-199.60801,-323.454)"><g | |
| 77 | + id="g18"><linearGradient | |
| 78 | + id="SVGID_2_" | |
| 79 | + gradientUnits="userSpaceOnUse" | |
| 80 | + x1="301.3562" | |
| 81 | + y1="382.27881" | |
| 82 | + x2="301.3562" | |
| 83 | + y2="473.1604"><stop | |
| 84 | + offset="0" | |
| 85 | + style="stop-color:#756A80" | |
| 86 | + id="stop21" /><stop | |
| 87 | + offset="1" | |
| 88 | + style="stop-color:#60576B" | |
| 89 | + id="stop23" /></linearGradient><path | |
| 90 | + style="fill:url(#SVGID_2_);fill-rule:evenodd" | |
| 91 | + d="m 235.238,406.51 v -19.725 c 0,-3.178 2.586,-5.764 5.765,-5.764 H 361.71 c 3.179,0 5.765,2.586 5.765,5.764 V 406.51 H 235.238 z" | |
| 92 | + id="path25" | |
| 93 | + inkscape:connector-curvature="0" /><path | |
| 94 | + style="fill:#5c5264" | |
| 95 | + d="m 361.71,381.271 c 3.041,0 5.515,2.474 5.515,5.515 v 19.475 H 235.488 v -19.475 c 0,-3.041 2.474,-5.515 5.515,-5.515 H 361.71 m 0,-0.5 H 241.002 c -3.322,0 -6.015,2.693 -6.015,6.015 v 19.975 h 132.737 v -19.975 c 0,-3.322 -2.693,-6.015 -6.014,-6.015 l 0,0 z" | |
| 96 | + id="path27" | |
| 97 | + inkscape:connector-curvature="0" /></g><g | |
| 98 | + id="g29"><linearGradient | |
| 99 | + id="SVGID_3_" | |
| 100 | + gradientUnits="userSpaceOnUse" | |
| 101 | + x1="301.3562" | |
| 102 | + y1="382.50409" | |
| 103 | + x2="301.3562" | |
| 104 | + y2="474.47351"><stop | |
| 105 | + offset="0" | |
| 106 | + style="stop-color:#756A80" | |
| 107 | + id="stop32" /><stop | |
| 108 | + offset="1" | |
| 109 | + style="stop-color:#60576B" | |
| 110 | + id="stop34" /></linearGradient><path | |
| 111 | + style="fill:url(#SVGID_3_);fill-rule:evenodd" | |
| 112 | + d="m 241.002,475.249 c -3.179,0 -5.765,-2.586 -5.765,-5.765 v -60.45 h 132.237 v 60.45 c 0,3.179 -2.586,5.765 -5.765,5.765 H 241.002 z" | |
| 113 | + id="path36" | |
| 114 | + inkscape:connector-curvature="0" /><path | |
| 115 | + style="fill:#5c5264" | |
| 116 | + d="m 367.224,409.284 v 60.2 c 0,3.041 -2.474,5.515 -5.515,5.515 H 241.002 c -3.041,0 -5.515,-2.474 -5.515,-5.515 v -60.2 h 131.737 m 0.5,-0.5 H 234.988 v 60.7 c 0,3.322 2.693,6.015 6.015,6.015 H 361.71 c 3.322,0 6.015,-2.693 6.015,-6.015 v -60.7 l -0.001,0 z" | |
| 117 | + id="path38" | |
| 118 | + inkscape:connector-curvature="0" /></g></g><g | |
| 119 | + id="g40" | |
| 120 | + transform="translate(-199.60801,-323.454)"><linearGradient | |
| 121 | + id="SVGID_4_" | |
| 122 | + gradientUnits="userSpaceOnUse" | |
| 123 | + x1="300.84109" | |
| 124 | + y1="399.01071" | |
| 125 | + x2="300.84109" | |
| 126 | + y2="458.10779"><stop | |
| 127 | + offset="0" | |
| 128 | + style="stop-color:#756A80" | |
| 129 | + id="stop43" /><stop | |
| 130 | + offset="1" | |
| 131 | + style="stop-color:#60576B" | |
| 132 | + id="stop45" /></linearGradient><path | |
| 133 | + style="fill:url(#SVGID_4_);fill-rule:evenodd" | |
| 134 | + d="m 300.841,461.131 c -17.485,0 -31.71,-14.226 -31.71,-31.711 0,-17.485 14.225,-31.71 31.71,-31.71 17.485,0 31.711,14.225 31.711,31.71 0,17.485 -14.226,31.711 -31.711,31.711 z" | |
| 135 | + id="path47" | |
| 136 | + inkscape:connector-curvature="0" /><path | |
| 137 | + style="fill:#5c5264" | |
| 138 | + d="m 300.841,398.21 c 17.237,0 31.21,13.973 31.21,31.21 0,17.237 -13.973,31.211 -31.21,31.211 -17.237,0 -31.211,-13.973 -31.211,-31.211 0,-17.237 13.974,-31.21 31.211,-31.21 m 0,-1 c -17.761,0 -32.211,14.45 -32.211,32.21 0,17.761 14.45,32.211 32.211,32.211 17.761,0 32.21,-14.45 32.21,-32.211 0,-17.761 -14.449,-32.21 -32.21,-32.21 l 0,0 z" | |
| 139 | + id="path49" | |
| 140 | + inkscape:connector-curvature="0" /></g><g | |
| 141 | + id="g51" | |
| 142 | + transform="translate(-199.60801,-323.454)"><linearGradient | |
| 143 | + id="SVGID_5_" | |
| 144 | + gradientUnits="userSpaceOnUse" | |
| 145 | + x1="300.84109" | |
| 146 | + y1="399.9697" | |
| 147 | + x2="300.84109" | |
| 148 | + y2="457.20319"><stop | |
| 149 | + offset="0" | |
| 150 | + style="stop-color:#E7E7E7" | |
| 151 | + id="stop54" /><stop | |
| 152 | + offset="1" | |
| 153 | + style="stop-color:#E2E2E2" | |
| 154 | + id="stop56" /></linearGradient><path | |
| 155 | + style="fill:url(#SVGID_5_);fill-rule:evenodd" | |
| 156 | + d="m 300.841,460.131 c -16.934,0 -30.71,-13.777 -30.71,-30.711 0,-16.934 13.777,-30.71 30.71,-30.71 16.933,0 30.711,13.777 30.711,30.71 0,16.933 -13.778,30.711 -30.711,30.711 z m 0.002,-48.728 c -9.935,0 -18.017,8.083 -18.017,18.017 0,9.934 8.083,18.017 18.017,18.017 9.934,0 18.017,-8.082 18.017,-18.017 0,-9.935 -8.083,-18.017 -18.017,-18.017 z" | |
| 157 | + id="path58" | |
| 158 | + inkscape:connector-curvature="0" /><path | |
| 159 | + style="fill:#f2f2f2" | |
| 160 | + d="m 300.841,399.21 c 16.658,0 30.21,13.552 30.21,30.21 0,16.658 -13.552,30.211 -30.21,30.211 -16.658,0 -30.211,-13.552 -30.211,-30.211 0,-16.658 13.553,-30.21 30.211,-30.21 m 0.002,48.726 c 10.21,0 18.517,-8.307 18.517,-18.517 0,-10.21 -8.307,-18.517 -18.517,-18.517 -10.21,0 -18.517,8.307 -18.517,18.517 0,10.21 8.306,18.517 18.517,18.517 m -0.002,-49.726 c -17.237,0 -31.211,13.973 -31.211,31.21 0,17.237 13.973,31.211 31.211,31.211 17.237,0 31.21,-13.973 31.21,-31.211 0,-17.237 -13.973,-31.21 -31.21,-31.21 l 0,0 z m 0.002,48.726 c -9.674,0 -17.517,-7.842 -17.517,-17.517 0,-9.674 7.843,-17.517 17.517,-17.517 9.674,0 17.517,7.843 17.517,17.517 -0.001,9.675 -7.843,17.517 -17.517,17.517 l 0,0 z" | |
| 161 | + id="path60" | |
| 162 | + inkscape:connector-curvature="0" /></g><path | |
| 163 | + style="fill:#5c5264;fill-rule:evenodd" | |
| 164 | + d="m 162.10099,57.106 -120.727999,0 c -4.82917,1.06976 -6.015,3.82683 -6.015,7.746 0,-3.322 2.693,-6.015 6.015,-6.015 l 120.728999,0 c 3.322,0 6.015,2.693 6.015,6.015 l 0,-1.731 c -10e-4,-3.322 -2.694,-6.015 -6.016,-6.015 z" | |
| 165 | + id="path62" | |
| 166 | + inkscape:connector-curvature="0" | |
| 167 | + sodipodi:nodetypes="sccssccs" /><path | |
| 168 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 169 | + d="m 41.372991,153.312 120.728999,0 c 5.14448,-0.12383 6.015,-3.82683 6.015,-7.746 0,3.322 -2.693,6.015 -6.015,6.015 l -120.728999,0 c -3.322,0 -6.015,-2.693 -6.015,-6.015 l 0,1.731 c 0,3.322 2.693,6.015 6.015,6.015 z" | |
| 170 | + id="path64" | |
| 171 | + inkscape:connector-curvature="0" | |
| 172 | + sodipodi:nodetypes="sccsscss" /><linearGradient | |
| 173 | + id="SVGID_6_" | |
| 174 | + gradientUnits="userSpaceOnUse" | |
| 175 | + x1="300.8425" | |
| 176 | + y1="413.8396" | |
| 177 | + x2="300.8425" | |
| 178 | + y2="445.65921" | |
| 179 | + gradientTransform="translate(-199.60801,-323.454)"><stop | |
| 180 | + offset="0" | |
| 181 | + style="stop-color:#595A5B" | |
| 182 | + id="stop67" /><stop | |
| 183 | + offset="1" | |
| 184 | + style="stop-color:#4C4C4C" | |
| 185 | + id="stop69" /></linearGradient><path | |
| 186 | + style="fill:url(#SVGID_6_);fill-rule:evenodd" | |
| 187 | + d="m 101.23499,88.449 c 9.674,0 17.517,7.842 17.517,17.517 0,9.674 -7.842,17.517 -17.517,17.517 -9.674999,0 -17.516999,-7.842 -17.516999,-17.517 0,-9.675 7.842,-17.517 17.516999,-17.517 z" | |
| 188 | + id="path71" | |
| 189 | + inkscape:connector-curvature="0" /><linearGradient | |
| 190 | + id="SVGID_7_" | |
| 191 | + gradientUnits="userSpaceOnUse" | |
| 192 | + x1="300.8425" | |
| 193 | + y1="413.8396" | |
| 194 | + x2="300.8425" | |
| 195 | + y2="445.65921" | |
| 196 | + gradientTransform="translate(-199.60801,-323.454)"><stop | |
| 197 | + offset="0" | |
| 198 | + style="stop-color:#595A5B" | |
| 199 | + id="stop74" /><stop | |
| 200 | + offset="1" | |
| 201 | + style="stop-color:#4C4C4C" | |
| 202 | + id="stop76" /></linearGradient><path | |
| 203 | + style="fill:url(#SVGID_7_);fill-rule:evenodd" | |
| 204 | + d="m 101.23499,88.449 c 9.674,0 17.517,7.842 17.517,17.517 0,9.674 -7.842,17.517 -17.517,17.517 -9.674999,0 -17.516999,-7.842 -17.516999,-17.517 0,-9.675 7.842,-17.517 17.516999,-17.517 z" | |
| 205 | + id="path78" | |
| 206 | + inkscape:connector-curvature="0" /><g | |
| 207 | + id="g80" | |
| 208 | + transform="translate(-199.60801,-323.454)"><g | |
| 209 | + id="g82"><path | |
| 210 | + style="fill:#5c5264;fill-rule:evenodd" | |
| 211 | + d="m 331.184,388.309 h 25.81 c 1.657,0 3,1.343 3,3 v 10.016 c 0,1.657 -1.343,3 -3,3 h -25.81 c -1.657,0 -3,-1.343 -3,-3 v -10.016 c 0,-1.657 1.343,-3 3,-3 z" | |
| 212 | + id="path84" | |
| 213 | + inkscape:connector-curvature="0" /></g></g><g | |
| 214 | + id="g86" | |
| 215 | + transform="translate(-199.60801,-323.454)"><g | |
| 216 | + id="g88"><linearGradient | |
| 217 | + id="SVGID_8_" | |
| 218 | + gradientUnits="userSpaceOnUse" | |
| 219 | + x1="344.0889" | |
| 220 | + y1="387.94641" | |
| 221 | + x2="344.0889" | |
| 222 | + y2="401.42691"><stop | |
| 223 | + offset="0" | |
| 224 | + style="stop-color:#E7E7E7" | |
| 225 | + id="stop91" /><stop | |
| 226 | + offset="1" | |
| 227 | + style="stop-color:#E2E2E2" | |
| 228 | + id="stop93" /></linearGradient><path | |
| 229 | + style="fill:url(#SVGID_8_);fill-rule:evenodd" | |
| 230 | + d="m 331.184,402.124 c -1.379,0 -2.5,-1.122 -2.5,-2.5 v -10.017 c 0,-1.378 1.121,-2.5 2.5,-2.5 h 25.811 c 1.379,0 2.5,1.122 2.5,2.5 v 10.017 c 0,1.378 -1.121,2.5 -2.5,2.5 h -25.811 z" | |
| 231 | + id="path95" | |
| 232 | + inkscape:connector-curvature="0" /></g><g | |
| 233 | + id="g97"><path | |
| 234 | + style="fill:#f2f2f2" | |
| 235 | + d="m 356.994,387.608 c 1.103,0 2,0.897 2,2 v 10.016 c 0,1.103 -0.897,2 -2,2 h -25.81 c -1.103,0 -2,-0.897 -2,-2 v -10.016 c 0,-1.103 0.897,-2 2,-2 h 25.81 m 0,-1 h -25.81 c -1.657,0 -3,1.343 -3,3 v 10.016 c 0,1.657 1.343,3 3,3 h 25.81 c 1.657,0 3,-1.343 3,-3 v -10.016 c 0,-1.657 -1.343,-3 -3,-3 l 0,0 z" | |
| 236 | + id="path99" | |
| 237 | + inkscape:connector-curvature="0" /></g></g><path | |
| 238 | + style="fill:#e0e1e0;fill-rule:evenodd" | |
| 239 | + d="m 94.535991,95.709 c 1.819,0 3.293,1.474 3.293,3.293 0,1.819 -1.474,3.293 -3.293,3.293 -1.819,0 -3.293,-1.475 -3.293,-3.293 -0.001,-1.819 1.474,-3.293 3.293,-3.293 z" | |
| 240 | + id="path101" | |
| 241 | + inkscape:connector-curvature="0" /><g | |
| 242 | + id="g103" | |
| 243 | + transform="translate(-199.60801,-323.454)"><path | |
| 244 | + style="fill:#353535;fill-rule:evenodd" | |
| 245 | + d="m 300.843,412.903 c 9.505,0 17.224,7.576 17.491,17.017 0.005,-0.168 0.025,-0.331 0.025,-0.5 0,-9.674 -7.842,-17.517 -17.517,-17.517 -9.675,0 -17.517,7.843 -17.517,17.517 0,0.169 0.021,0.332 0.025,0.5 0.268,-9.441 7.987,-17.017 17.493,-17.017 z" | |
| 246 | + id="path105" | |
| 247 | + inkscape:connector-curvature="0" /></g></svg> | |
| 0 | 248 | \ No newline at end of file | ... | ... |
resources/images/Contacts.svg
0 → 100755
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |
| 3 | + | |
| 4 | +<svg | |
| 5 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| 6 | + xmlns:cc="http://creativecommons.org/ns#" | |
| 7 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| 8 | + xmlns:svg="http://www.w3.org/2000/svg" | |
| 9 | + xmlns="http://www.w3.org/2000/svg" | |
| 10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| 11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| 12 | + version="1.1" | |
| 13 | + id="Layer_1" | |
| 14 | + x="0px" | |
| 15 | + y="0px" | |
| 16 | + viewBox="0 0 196.243 197.727" | |
| 17 | + xml:space="preserve" | |
| 18 | + inkscape:version="0.48.4 r9939" | |
| 19 | + width="100%" | |
| 20 | + height="100%" | |
| 21 | + sodipodi:docname="Contacts.svg"><metadata | |
| 22 | + id="metadata59"><rdf:RDF><cc:Work | |
| 23 | + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | |
| 24 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs | |
| 25 | + id="defs57" /><sodipodi:namedview | |
| 26 | + pagecolor="#ffffff" | |
| 27 | + bordercolor="#666666" | |
| 28 | + borderopacity="1" | |
| 29 | + objecttolerance="10" | |
| 30 | + gridtolerance="10" | |
| 31 | + guidetolerance="10" | |
| 32 | + inkscape:pageopacity="0" | |
| 33 | + inkscape:pageshadow="2" | |
| 34 | + inkscape:window-width="1476" | |
| 35 | + inkscape:window-height="1005" | |
| 36 | + id="namedview55" | |
| 37 | + showgrid="false" | |
| 38 | + inkscape:zoom="1.5857388" | |
| 39 | + inkscape:cx="98.059987" | |
| 40 | + inkscape:cy="54.586379" | |
| 41 | + inkscape:window-x="75" | |
| 42 | + inkscape:window-y="34" | |
| 43 | + inkscape:window-maximized="0" | |
| 44 | + inkscape:current-layer="Layer_1" | |
| 45 | + fit-margin-top="0" | |
| 46 | + fit-margin-left="0" | |
| 47 | + fit-margin-right="0" | |
| 48 | + fit-margin-bottom="0" /><g | |
| 49 | + id="g3" | |
| 50 | + transform="translate(-199.58001,-322.396)"><linearGradient | |
| 51 | + id="SVGID_1_" | |
| 52 | + gradientUnits="userSpaceOnUse" | |
| 53 | + x1="297.7009" | |
| 54 | + y1="325.1676" | |
| 55 | + x2="297.7009" | |
| 56 | + y2="517.5647"><stop | |
| 57 | + offset="0" | |
| 58 | + style="stop-color:#FFFFFF;stop-opacity:0.7" | |
| 59 | + id="stop6" /><stop | |
| 60 | + offset="0.9987" | |
| 61 | + style="stop-color:#D8D9D8;stop-opacity:0.7" | |
| 62 | + id="stop8" /></linearGradient><path | |
| 63 | + style="fill:url(#SVGID_1_);fill-rule:evenodd" | |
| 64 | + d="m 210.25,519.623 c -5.608,0 -10.17,-4.562 -10.17,-10.171 V 333.066 c 0,-5.608 4.562,-10.17 10.17,-10.17 h 174.902 c 5.607,0 10.17,4.562 10.17,10.17 v 176.386 c 0,5.608 -4.562,10.171 -10.17,10.171 H 210.25 z" | |
| 65 | + id="path10" | |
| 66 | + inkscape:connector-curvature="0" /><path | |
| 67 | + style="fill:#d8d8d7" | |
| 68 | + d="m 385.152,323.396 c 5.332,0 9.67,4.338 9.67,9.67 v 176.387 c 0,5.332 -4.338,9.67 -9.67,9.67 H 210.25 c -5.332,0 -9.67,-4.338 -9.67,-9.67 V 333.066 c 0,-5.332 4.338,-9.67 9.67,-9.67 h 174.902 m 0,-1 H 210.25 c -5.893,0 -10.67,4.777 -10.67,10.67 v 176.387 c 0,5.893 4.777,10.67 10.67,10.67 h 174.903 c 5.893,0 10.67,-4.777 10.67,-10.67 V 333.066 c 0,-5.893 -4.778,-10.67 -10.671,-10.67 l 0,0 z" | |
| 69 | + id="path12" | |
| 70 | + inkscape:connector-curvature="0" /></g><g | |
| 71 | + id="g14" | |
| 72 | + transform="translate(-199.58001,-322.396)"><linearGradient | |
| 73 | + id="SVGID_2_" | |
| 74 | + gradientUnits="userSpaceOnUse" | |
| 75 | + x1="297.23581" | |
| 76 | + y1="364.1608" | |
| 77 | + x2="297.23581" | |
| 78 | + y2="475.73239"><stop | |
| 79 | + offset="0.0049" | |
| 80 | + style="stop-color:#F48347" | |
| 81 | + id="stop17" /><stop | |
| 82 | + offset="1" | |
| 83 | + style="stop-color:#E4773B" | |
| 84 | + id="stop19" /></linearGradient><path | |
| 85 | + style="fill:url(#SVGID_2_);fill-rule:evenodd" | |
| 86 | + d="m 344.71,476.058 c -0.364,0 -0.589,-0.024 -0.603,-0.026 l -95.657,-0.003 c -3.342,0 -6.062,-2.719 -6.062,-6.062 V 369.656 c 0,-3.342 2.719,-6.062 6.062,-6.062 h 90.311 c 3.343,0 6.062,2.719 6.062,6.062 v 90.311 c 0,3.343 -2.719,6.062 -6.062,6.062 l -89.272,0.153 -0.402,5.875 0.537,-0.002 c 0.718,-0.002 71.989,-0.204 91.555,-0.204 4.732,0 7.132,-2.618 7.132,-7.782 0,-19.79 -0.299,-85.429 -0.329,-92.176 1.185,0.195 3.999,1.104 3.999,5.334 0,0.901 0.076,90.378 0.104,90.752 l -0.012,-0.107 c -0.002,7.388 -5.15,8.186 -7.363,8.186 z" | |
| 87 | + id="path21" | |
| 88 | + inkscape:connector-curvature="0" /><path | |
| 89 | + style="fill:#cf6a38" | |
| 90 | + d="m 338.761,364.095 c 3.067,0 5.561,2.495 5.561,5.561 v 90.311 c 0,3.067 -2.495,5.561 -5.563,5.561 l -88.806,0.152 -0.932,0.002 -0.064,0.93 -0.333,4.874 -0.073,1.071 1.074,-0.003 c 0.718,-0.002 71.989,-0.204 91.553,-0.204 3.482,0 7.632,-1.437 7.632,-8.282 0,-19.292 -0.284,-82.148 -0.327,-91.557 1.203,0.355 2.997,1.434 2.997,4.715 0,0.879 0.062,85.883 0.11,90.645 h -0.018 c 0,2.311 -0.669,7.685 -6.862,7.685 -0.338,0 -0.544,-0.022 -0.544,-0.022 l 0,0 -0.058,-0.007 h -0.058 -95.6 c -3.067,0 -5.561,-2.495 -5.561,-5.561 v -100.31 c 0,-3.067 2.495,-5.561 5.561,-5.561 h 90.311 m 0,-1 H 248.45 c -3.624,0 -6.561,2.938 -6.561,6.561 v 100.311 c 0,3.624 2.938,6.561 6.561,6.561 h 95.6 c 0,0 0.248,0.029 0.66,0.029 2.001,0 7.862,-0.683 7.862,-8.685 -0.002,-0.008 -0.092,-84.82 -0.092,-90.645 0,-5.825 -5.002,-5.888 -5.002,-5.888 0,0 0.332,71.724 0.332,92.73 0,5.221 -2.548,7.282 -6.632,7.282 -19.792,0 -91.556,0.204 -91.556,0.204 l 0.333,-4.874 88.806,-0.152 c 3.624,0 6.561,-2.938 6.561,-6.561 v -90.311 c 0,-3.624 -2.937,-6.562 -6.561,-6.562 l 0,0 z" | |
| 91 | + id="path23" | |
| 92 | + inkscape:connector-curvature="0" /></g><path | |
| 93 | + style="fill:#b27b2e;fill-rule:evenodd" | |
| 94 | + d="m 147.89799,48.943 -2.156,-1.683 c 0,-3.624 -2.938,-6.561 -6.562,-6.561 l -90.309999,0 c -3.624,0 -6.561,2.938 -6.561,6.561 l 0,1.5 c 0,-3.624 2.938,-6.561 6.561,-6.561 l 90.309999,0 c 3.624,0 6.562,2.938 6.562,6.561 l 2.156,1.683" | |
| 95 | + id="path25" | |
| 96 | + inkscape:connector-curvature="0" | |
| 97 | + sodipodi:nodetypes="ccssscsscc" /><g | |
| 98 | + id="g27" | |
| 99 | + transform="translate(-199.58001,-322.396)"><path | |
| 100 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 101 | + d="m 344.05,476.528 -95.6,0 c -3.624,0 -6.561,-2.938 -6.561,-6.562 l 0,1.663 c 0,3.624 2.938,6.255 6.561,6.255 l 95.6,0 c 0,0 8.521,1.299 8.521,-8.35 0.0282,-3.61847 0.67639,7.26515 -8.521,6.994 z" | |
| 102 | + id="path29" | |
| 103 | + inkscape:connector-curvature="0" | |
| 104 | + sodipodi:nodetypes="cscssccc" /></g><path | |
| 105 | + style="fill:#bf602e;fill-rule:evenodd" | |
| 106 | + d="m 126.68499,130.366 v -1.605 c 0,0 -16.147,-13.713 -24.628,-13.713 v -8.251 c 0,0 13.161,-2.772 13.161,-15.726 0,-8.241 3.257,-31.365 -20.096999,-31.365 -0.624,0 -0.624,0 -1.247,0 -23.354,0 -20.097,23.123 -20.097,31.365 0,12.675 13.161,15.726 13.161,15.726 v 8.251 c -8.332,0 -24.628,13.713 -24.628,13.713 v 1.605 h 64.374999 z" | |
| 107 | + id="path31" | |
| 108 | + inkscape:connector-curvature="0" /><g | |
| 109 | + id="g33" | |
| 110 | + transform="translate(-199.58001,-322.396)"><linearGradient | |
| 111 | + id="SVGID_3_" | |
| 112 | + gradientUnits="userSpaceOnUse" | |
| 113 | + x1="298.7244" | |
| 114 | + y1="371.77979" | |
| 115 | + x2="298.7244" | |
| 116 | + y2="472.5517"><stop | |
| 117 | + offset="0" | |
| 118 | + style="stop-color:#F9F3D9" | |
| 119 | + id="stop36" /><stop | |
| 120 | + offset="1" | |
| 121 | + style="stop-color:#EAE3CA" | |
| 122 | + id="stop38" /></linearGradient><path | |
| 123 | + style="fill:url(#SVGID_3_);fill-rule:evenodd" | |
| 124 | + d="m 250.188,466.931 88.572,-0.152 c 3.756,0 6.812,-3.056 6.812,-6.812 v -88.86 l 1.66,1.191 c 0.016,3.412 0.327,71.541 0.327,91.771 0,4.732 -2.088,7.032 -6.382,7.032 -18.957,0 -86.452,0.189 -91.289,0.203 l 0.3,-4.373 z" | |
| 125 | + id="path40" | |
| 126 | + inkscape:connector-curvature="0" /><path | |
| 127 | + style="fill:#fffcf3" | |
| 128 | + d="m 345.822,371.593 1.161,0.833 c 0.039,8.466 0.327,72.223 0.327,91.643 0,4.563 -2.006,6.782 -6.132,6.782 -18.664,0 -84.381,0.183 -91.02,0.202 l 0.265,-3.873 88.339,-0.151 c 3.894,0 7.061,-3.168 7.061,-7.061 v -88.375 m -0.501,-0.974 v 89.348 c 0,3.624 -2.938,6.561 -6.561,6.561 l -88.806,0.152 -0.333,4.874 c 0,0 71.764,-0.204 91.556,-0.204 4.084,0 6.632,-2.061 6.632,-7.282 0,-19.678 -0.291,-83.869 -0.328,-91.9 l -2.16,-1.549 0,0 z" | |
| 129 | + id="path42" | |
| 130 | + inkscape:connector-curvature="0" /></g><g | |
| 131 | + id="g44" | |
| 132 | + transform="translate(-199.58001,-322.396)"><linearGradient | |
| 133 | + id="SVGID_4_" | |
| 134 | + gradientUnits="userSpaceOnUse" | |
| 135 | + x1="294.0769" | |
| 136 | + y1="380.8504" | |
| 137 | + x2="294.0769" | |
| 138 | + y2="450.2294"><stop | |
| 139 | + offset="0" | |
| 140 | + style="stop-color:#F9F3D9" | |
| 141 | + id="stop47" /><stop | |
| 142 | + offset="1" | |
| 143 | + style="stop-color:#EAE3CA" | |
| 144 | + id="stop49" /></linearGradient><path | |
| 145 | + style="fill:url(#SVGID_4_);fill-rule:evenodd" | |
| 146 | + d="m 262.494,450.906 c 2.504,-2.468 15.465,-14.817 24.024,-14.817 h 0.25 v -8.699 l -0.193,-0.045 c -0.13,-0.03 -12.968,-3.158 -12.968,-15.483 0,-0.8 -0.031,-1.741 -0.064,-2.787 -0.207,-6.352 -0.554,-16.984 5.473,-23.21 3.287,-3.396 8.145,-5.118 14.438,-5.118 h 1.247 c 6.293,0 11.152,1.722 14.439,5.118 6.026,6.226 5.68,16.858 5.473,23.21 -0.034,1.046 -0.064,1.986 -0.064,2.787 0,12.606 -12.833,15.455 -12.963,15.481 l -0.198,0.042 v 8.704 h 0.25 c 8.56,0 21.521,12.35 24.023,14.817 h -63.167 z" | |
| 147 | + id="path51" | |
| 148 | + inkscape:connector-curvature="0" /><path | |
| 149 | + style="fill:#fffcf3" | |
| 150 | + d="m 294.701,380.997 c 6.223,0 11.02,1.696 14.259,5.042 5.953,6.15 5.609,16.716 5.403,23.028 -0.035,1.067 -0.065,1.988 -0.065,2.795 0,12.388 -12.243,15.126 -12.764,15.237 l -0.397,0.084 v 0.405 8.251 0.5 h 0.5 c 8.051,0 20.11,11.121 23.41,14.318 h -61.94 c 3.3,-3.197 15.36,-14.318 23.41,-14.318 h 0.5 v -0.5 -8.251 l 0,-0.397 -0.386,-0.09 c -0.522,-0.122 -12.774,-3.118 -12.774,-15.239 0,-0.806 -0.03,-1.728 -0.065,-2.795 -0.206,-6.313 -0.55,-16.878 5.403,-23.029 3.238,-3.345 8.036,-5.042 14.259,-5.042 h 1.247 m 0,-0.499 c -0.624,0 -0.624,0 -1.247,0 -23.354,0 -20.097,23.123 -20.097,31.365 0,12.675 13.161,15.726 13.161,15.726 v 8.251 c -9.677,0 -24.628,15.318 -24.628,15.318 h 64.376 c 0,0 -14.952,-15.318 -24.628,-15.318 v -8.251 c 0,0 13.161,-2.772 13.161,-15.726 -10e-4,-8.242 3.256,-31.365 -20.098,-31.365 l 0,0 z" | |
| 151 | + id="path53" | |
| 152 | + inkscape:connector-curvature="0" /></g></svg> | |
| 0 | 153 | \ No newline at end of file | ... | ... |
resources/images/Kid1.svg
0 → 100755
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |
| 3 | + | |
| 4 | +<svg | |
| 5 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| 6 | + xmlns:cc="http://creativecommons.org/ns#" | |
| 7 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| 8 | + xmlns:svg="http://www.w3.org/2000/svg" | |
| 9 | + xmlns="http://www.w3.org/2000/svg" | |
| 10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| 11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| 12 | + version="1.1" | |
| 13 | + id="Layer_1" | |
| 14 | + x="0px" | |
| 15 | + y="0px" | |
| 16 | + viewBox="0 0 306.90988 416.79828" | |
| 17 | + xml:space="preserve" | |
| 18 | + inkscape:version="0.48.4 r9939" | |
| 19 | + width="100%" | |
| 20 | + height="100%" | |
| 21 | + sodipodi:docname="Kid1.svg"><metadata | |
| 22 | + id="metadata185"><rdf:RDF><cc:Work | |
| 23 | + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | |
| 24 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs | |
| 25 | + id="defs183" /><sodipodi:namedview | |
| 26 | + pagecolor="#ffffff" | |
| 27 | + bordercolor="#666666" | |
| 28 | + borderopacity="1" | |
| 29 | + objecttolerance="10" | |
| 30 | + gridtolerance="10" | |
| 31 | + guidetolerance="10" | |
| 32 | + inkscape:pageopacity="0" | |
| 33 | + inkscape:pageshadow="2" | |
| 34 | + inkscape:window-width="640" | |
| 35 | + inkscape:window-height="480" | |
| 36 | + id="namedview181" | |
| 37 | + showgrid="false" | |
| 38 | + fit-margin-top="0" | |
| 39 | + fit-margin-left="0" | |
| 40 | + fit-margin-right="0" | |
| 41 | + fit-margin-bottom="0" | |
| 42 | + inkscape:zoom="0.28032166" | |
| 43 | + inkscape:cx="152.20465" | |
| 44 | + inkscape:cy="184.87264" | |
| 45 | + inkscape:window-x="75" | |
| 46 | + inkscape:window-y="34" | |
| 47 | + inkscape:window-maximized="0" | |
| 48 | + inkscape:current-layer="Layer_1" /><path | |
| 49 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 50 | + d="m 192.28065,343.14765 c 0,0 -4.5,75.5 37.5,71 42,-4.5 11.5,-75.5 11.5,-75.5 l -49,4.5 z" | |
| 51 | + id="path3" | |
| 52 | + inkscape:connector-curvature="0" /><path | |
| 53 | + style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 54 | + d="m 229.78065,414.14765 c 24.024,-2.574 24.325,-26.903 20.184,-47.259 l -56.117,5.805 c 3.172,20.614 12.003,44.018 35.933,41.454 z" | |
| 55 | + id="path5" | |
| 56 | + inkscape:connector-curvature="0" /><path | |
| 57 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 58 | + d="m 113.60765,343.14765 c 0,0 -23.087995,69 14,73 37.088,4 48,-73 48,-73 h -62 z" | |
| 59 | + id="path7" | |
| 60 | + inkscape:connector-curvature="0" /><path | |
| 61 | + style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 62 | + d="m 169.15465,370.76265 -60.625,-7.118 c -3.745,20.685 -4.689,49.94 19.078,52.503 21.993,2.372 34.78,-23.738 41.547,-45.385 z" | |
| 63 | + id="path9" | |
| 64 | + inkscape:connector-curvature="0" /><path | |
| 65 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 66 | + d="m 117.10565,371.73465 39.895,2.68 c 0,0 -7.065,27.803 -23.798,24.788 -16.733,-3.015 -16.097,-27.468 -16.097,-27.468 z" | |
| 67 | + id="path11" | |
| 68 | + inkscape:connector-curvature="0" /><path | |
| 69 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 70 | + d="m 206.27865,381.65765 35.399,-5.164 c 0,0 2.531,26.234 -10.49,26.241 -18.543,0.011 -24.909,-21.077 -24.909,-21.077 z" | |
| 71 | + id="path13" | |
| 72 | + inkscape:connector-curvature="0" /><path | |
| 73 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 74 | + d="m 121.49165,210.92765 c -24.560995,5.263 -52.631995,5.263 -52.631995,5.263 l 5.354,60.772 25.859995,-5.032 c 0,0 64.328,-18.197 62.574,-34.16 -2.104,-19.138 -16.595,-32.106 -41.156,-26.843 z" | |
| 75 | + id="path15" | |
| 76 | + inkscape:connector-curvature="0" /><path | |
| 77 | + style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 78 | + d="m 231.14065,228.64765 c -10.143,-34.251 -65.789,-51.053 -65.789,-51.053 0,0 -19.298,28.07 -43.86,33.333 -1.209,0.259 -2.428,0.502 -3.65,0.736 l -20.035995,60.709 2.267995,-0.441 -16.300995,80.54 184.714995,-4.731 c 0,10e-4 -25.566,-79.313 -37.347,-119.093 z" | |
| 79 | + id="path17" | |
| 80 | + inkscape:connector-curvature="0" /><line | |
| 81 | + style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 82 | + x1="110.72466" | |
| 83 | + y1="311.29565" | |
| 84 | + x2="104.40065" | |
| 85 | + y2="352.30963" | |
| 86 | + id="line19" /><polygon | |
| 87 | + style="fill:#666666;stroke:#000000;stroke-miterlimit:10" | |
| 88 | + points="390.823,464.081 392.798,470.374 237.225,476.667 237.225,468.729 " | |
| 89 | + id="polygon21" | |
| 90 | + transform="translate(-145.43535,-189.01935)" /><linearGradient | |
| 91 | + id="SVGID_1_" | |
| 92 | + gradientUnits="userSpaceOnUse" | |
| 93 | + x1="317.35651" | |
| 94 | + y1="383.66669" | |
| 95 | + x2="317.35651" | |
| 96 | + y2="199.5519" | |
| 97 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 98 | + offset="0" | |
| 99 | + style="stop-color:#402A04" | |
| 100 | + id="stop24" /><stop | |
| 101 | + offset="1" | |
| 102 | + style="stop-color:#7F5100" | |
| 103 | + id="stop26" /></linearGradient><path | |
| 104 | + style="fill:url(#SVGID_1_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 105 | + d="M 172.97165,196.01565 H 63.267655 c 0,0 -54.6040005,-192.1050008 109.704995,-188.5960008 164.309,3.5089998 106.414,188.5960008 106.414,188.5960008 h -106.415 z" | |
| 106 | + id="path28" | |
| 107 | + inkscape:connector-curvature="0" /><linearGradient | |
| 108 | + id="SVGID_2_" | |
| 109 | + gradientUnits="userSpaceOnUse" | |
| 110 | + x1="317.6879" | |
| 111 | + y1="298.16669" | |
| 112 | + x2="317.6879" | |
| 113 | + y2="399.66791" | |
| 114 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 115 | + offset="0.0019" | |
| 116 | + style="stop-color:#FFCA94" | |
| 117 | + id="stop31" /><stop | |
| 118 | + offset="1" | |
| 119 | + style="stop-color:#E2A380" | |
| 120 | + id="stop33" /></linearGradient><path | |
| 121 | + style="fill:url(#SVGID_2_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 122 | + d="m 93.798655,65.647649 c 0,0 -48.605,145.281001 77.692995,145.281001 126.298,0 80.202,-145.281001 80.202,-145.281001 H 93.798655 z" | |
| 123 | + id="path35" | |
| 124 | + inkscape:connector-curvature="0" /><linearGradient | |
| 125 | + id="SVGID_3_" | |
| 126 | + gradientUnits="userSpaceOnUse" | |
| 127 | + x1="316.33801" | |
| 128 | + y1="383.66669" | |
| 129 | + x2="316.33801" | |
| 130 | + y2="199.5519" | |
| 131 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 132 | + offset="0" | |
| 133 | + style="stop-color:#402A04" | |
| 134 | + id="stop38" /><stop | |
| 135 | + offset="1" | |
| 136 | + style="stop-color:#7F5100" | |
| 137 | + id="stop40" /></linearGradient><path | |
| 138 | + style="fill:url(#SVGID_3_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 139 | + d="m 108.82665,29.573649 c 0,0 -37.535995,22.859 -34.316995,82.359001 h 62.920995 c 0,0 7.255,-35.965001 7.255,-31.786001 0,4.179 3.509,31.786001 3.509,31.786001 h 48.246 V 87.833649 l 8.772,24.099001 h 62.281 c 0,0 0,-53.553001 -28.63,-82.359001 -28.072,0.877 -130.037,0 -130.037,0 z" | |
| 140 | + id="path42" | |
| 141 | + inkscape:connector-curvature="0" /><linearGradient | |
| 142 | + id="SVGID_4_" | |
| 143 | + gradientUnits="userSpaceOnUse" | |
| 144 | + x1="195.0862" | |
| 145 | + y1="372.3811" | |
| 146 | + x2="217.894" | |
| 147 | + y2="516.99213" | |
| 148 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 149 | + offset="0" | |
| 150 | + style="stop-color:#006178" | |
| 151 | + id="stop45" /><stop | |
| 152 | + offset="1" | |
| 153 | + style="stop-color:#00495C" | |
| 154 | + id="stop47" /></linearGradient><path | |
| 155 | + style="fill:url(#SVGID_4_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 156 | + d="m 111.64765,331.69965 -70.387995,13.196 c -6.487,1.216 -12.79,-3.096 -14.006,-9.583 L 1.8536545,199.83065 c -1.21599995,-6.487 3.096,-12.79 9.5830005,-14.006 l 70.388,-13.196 c 6.487,-1.216 12.79,3.096 14.006,9.583 l 25.399995,135.482 c 1.217,6.487 -3.096,12.79 -9.583,14.006 z" | |
| 157 | + id="path49" | |
| 158 | + inkscape:connector-curvature="0" /><linearGradient | |
| 159 | + id="SVGID_5_" | |
| 160 | + gradientUnits="userSpaceOnUse" | |
| 161 | + x1="197.17931" | |
| 162 | + y1="393.6586" | |
| 163 | + x2="218.5313" | |
| 164 | + y2="505.75641"><stop | |
| 165 | + offset="0" | |
| 166 | + style="stop-color:#6BBBD0" | |
| 167 | + id="stop52" /><stop | |
| 168 | + offset="1" | |
| 169 | + style="stop-color:#ACCCD4" | |
| 170 | + id="stop54" /></linearGradient><polygon | |
| 171 | + style="fill:url(#SVGID_5_);stroke:#000000;stroke-miterlimit:10" | |
| 172 | + points="179.836,514.167 159.336,399.948 236.336,387.667 254.336,498.167 " | |
| 173 | + id="polygon56" | |
| 174 | + transform="translate(-145.43535,-189.01935)" /><linearGradient | |
| 175 | + id="SVGID_6_" | |
| 176 | + gradientUnits="userSpaceOnUse" | |
| 177 | + x1="207.9456" | |
| 178 | + y1="466.41" | |
| 179 | + x2="201.4173" | |
| 180 | + y2="399.4946"><stop | |
| 181 | + offset="0" | |
| 182 | + style="stop-color:#FBCA51" | |
| 183 | + id="stop59" /><stop | |
| 184 | + offset="1" | |
| 185 | + style="stop-color:#FFECBF" | |
| 186 | + id="stop61" /></linearGradient><ellipse | |
| 187 | + style="fill:url(#SVGID_6_);stroke:#000000;stroke-miterlimit:10" | |
| 188 | + cx="205.43201" | |
| 189 | + cy="440.64801" | |
| 190 | + rx="28.959" | |
| 191 | + ry="28.080999" | |
| 192 | + id="ellipse63" | |
| 193 | + sodipodi:cx="205.43201" | |
| 194 | + sodipodi:cy="440.64801" | |
| 195 | + sodipodi:rx="28.959" | |
| 196 | + sodipodi:ry="28.080999" | |
| 197 | + transform="translate(-145.43535,-189.01935)" /><linearGradient | |
| 198 | + id="SVGID_7_" | |
| 199 | + gradientUnits="userSpaceOnUse" | |
| 200 | + x1="190.9269" | |
| 201 | + y1="427.96649" | |
| 202 | + x2="192.52139" | |
| 203 | + y2="436.33749"><stop | |
| 204 | + offset="0" | |
| 205 | + style="stop-color:#6BBBD0" | |
| 206 | + id="stop66" /><stop | |
| 207 | + offset="1" | |
| 208 | + style="stop-color:#ACCCD4" | |
| 209 | + id="stop68" /></linearGradient><line | |
| 210 | + style="fill:url(#SVGID_7_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 211 | + x1="44.983662" | |
| 212 | + y1="238.97565" | |
| 213 | + x2="47.595661" | |
| 214 | + y2="247.29865" | |
| 215 | + id="line70" /><linearGradient | |
| 216 | + id="SVGID_8_" | |
| 217 | + gradientUnits="userSpaceOnUse" | |
| 218 | + x1="211.39799" | |
| 219 | + y1="423.5397" | |
| 220 | + x2="213.01559" | |
| 221 | + y2="432.0325"><stop | |
| 222 | + offset="0" | |
| 223 | + style="stop-color:#6BBBD0" | |
| 224 | + id="stop73" /><stop | |
| 225 | + offset="1" | |
| 226 | + style="stop-color:#ACCCD4" | |
| 227 | + id="stop75" /></linearGradient><line | |
| 228 | + style="fill:url(#SVGID_8_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 229 | + x1="66.200653" | |
| 230 | + y1="234.40564" | |
| 231 | + x2="67.343658" | |
| 232 | + y2="243.13666" | |
| 233 | + id="line77" /><path | |
| 234 | + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 235 | + d="m 47.595655,260.51865 c 0,0 0.653,13.22 15.831,9.14 15.178,-4.08 11.229,-15.994 11.229,-15.994" | |
| 236 | + id="path79" | |
| 237 | + inkscape:connector-curvature="0" /><linearGradient | |
| 238 | + id="SVGID_9_" | |
| 239 | + gradientUnits="userSpaceOnUse" | |
| 240 | + x1="247.2587" | |
| 241 | + y1="416.16669" | |
| 242 | + x2="247.2587" | |
| 243 | + y2="464.19009" | |
| 244 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 245 | + offset="0.0019" | |
| 246 | + style="stop-color:#FFCA94" | |
| 247 | + id="stop82" /><stop | |
| 248 | + offset="1" | |
| 249 | + style="stop-color:#E2A380" | |
| 250 | + id="stop84" /></linearGradient><path | |
| 251 | + style="fill:url(#SVGID_9_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 252 | + d="m 125.03565,225.81865 c 0,0 -54.844995,-4.046 -54.589995,5.391 0.255,9.437 21.359,3.668 20.849,8.259 -0.51,4.591 -10.173,3.424 -8.763,9.166 1.335,5.436 9.891,0.337 10.485,4.399 0.594,4.062 -7.944,4.738 -7.2,9.587 0.744,4.849 9.437,1.275 9.947,4.081 0.51,2.806 -5.959,4.099 -3.664,7.415 2.296,3.316 25.481995,4.532 36.820995,-0.784 11.531,-5.406 -3.885,-47.514 -3.885,-47.514 z" | |
| 253 | + id="path86" | |
| 254 | + inkscape:connector-curvature="0" /><path | |
| 255 | + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 256 | + d="m 108.82665,147.75265 c 0,0 0.464,-21.64 21.464,-21.14 21,0.5 22,21.14 22,21.14" | |
| 257 | + id="path88" | |
| 258 | + inkscape:connector-curvature="0" /><path | |
| 259 | + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 260 | + d="m 194.78965,147.75265 c 0,0 5.5,-23.64 25,-23.64 19.5,0 21.571,21 21.571,21" | |
| 261 | + id="path90" | |
| 262 | + inkscape:connector-curvature="0" /><path | |
| 263 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 264 | + d="M 154.28965,177.59465" | |
| 265 | + id="path92" | |
| 266 | + inkscape:connector-curvature="0" /><path | |
| 267 | + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 268 | + d="m 154.28965,177.59465 c 0,0 0.715,18.789 16.607,18.421 15.893,-0.368 12.893,-18.421 12.893,-18.421" | |
| 269 | + id="path94" | |
| 270 | + inkscape:connector-curvature="0" /><path | |
| 271 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 272 | + d="m 228.94765,254.13365 c -2.38,6.629 -9.604,20.319 -44.933,26.513 -37.922,6.649 -56.122,-3.11 -56.122,-3.11 l -10.787,-59.329 c 0,0 37.312,5.696 53.792,4.439 16.48,-1.257 33.346,-5.764 33.346,-5.764 0,0 18.324,-4.366 23.904,8.074 5.579,12.439 3.538,21.552 0.8,29.177 z" | |
| 273 | + id="path96" | |
| 274 | + inkscape:connector-curvature="0" /><linearGradient | |
| 275 | + id="SVGID_10_" | |
| 276 | + gradientUnits="userSpaceOnUse" | |
| 277 | + x1="316.32571" | |
| 278 | + y1="383.66669" | |
| 279 | + x2="316.32571" | |
| 280 | + y2="199.5519"><stop | |
| 281 | + offset="0" | |
| 282 | + style="stop-color:#402A04" | |
| 283 | + id="stop99" /><stop | |
| 284 | + offset="1" | |
| 285 | + style="stop-color:#7F5100" | |
| 286 | + id="stop101" /></linearGradient><polygon | |
| 287 | + style="fill:url(#SVGID_10_)" | |
| 288 | + points="408.426,250.667 394.198,218.593 358.725,207.167 262.541,210.167 237.725,225.136 224.225,247.667 " | |
| 289 | + id="polygon103" | |
| 290 | + transform="translate(-145.43535,-189.01935)" /><polygon | |
| 291 | + style="fill:#c1272d;stroke:#000000;stroke-miterlimit:10" | |
| 292 | + points="399.167,290.713 428.616,269.855 394.694,225.136 365.225,225.136 354.191,247.667 404.225,254.667 " | |
| 293 | + id="polygon105" | |
| 294 | + transform="translate(-145.43535,-189.01935)" /><path | |
| 295 | + style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 296 | + d="m 245.96865,0.64764917 c -6.811,-2.50199997 -41.178,27.49999983 -36.678,36.49999983 4.5,9 39,21.5 39,21.5 l 13.209,-17.558 c -10e-4,0 -4.031,-36.2179998 -15.531,-40.44199983 z" | |
| 297 | + id="path107" | |
| 298 | + inkscape:connector-curvature="0" /><path | |
| 299 | + style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 300 | + d="m 272.19765,55.502649 -13.408,15.144 c 0,0 9,36.500001 17.5,35.500001 8.5,-1 32,-21.720001 30,-31.408001 -2,-9.688 -34.092,-19.236 -34.092,-19.236 z" | |
| 301 | + id="path109" | |
| 302 | + inkscape:connector-curvature="0" /><path | |
| 303 | + style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 304 | + d="m 243.78965,58.647649 c 0,0 13.418,-23.5 17.709,-22.5 4.291,1 15.093,16.043 15.791,19.356 0.698,3.313 -13,20.644 -18.5,19.144 -5.5,-1.5 -12.5,-10 -15,-16 z" | |
| 305 | + id="path111" | |
| 306 | + inkscape:connector-curvature="0" /><line | |
| 307 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 308 | + x1="215.78966" | |
| 309 | + y1="36.11665" | |
| 310 | + x2="245.96864" | |
| 311 | + y2="54.967648" | |
| 312 | + id="line113" /><line | |
| 313 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 314 | + x1="262.99066" | |
| 315 | + y1="73.483643" | |
| 316 | + x2="277.31567" | |
| 317 | + y2="96.647644" | |
| 318 | + id="line115" /><circle | |
| 319 | + style="opacity:0.2;fill:#d86d44" | |
| 320 | + cx="262.54099" | |
| 321 | + cy="357.16699" | |
| 322 | + r="19.249001" | |
| 323 | + id="circle117" | |
| 324 | + sodipodi:cx="262.54099" | |
| 325 | + sodipodi:cy="357.16699" | |
| 326 | + sodipodi:rx="19.249001" | |
| 327 | + sodipodi:ry="19.249001" | |
| 328 | + transform="translate(-145.43535,-189.01935)" /><circle | |
| 329 | + style="opacity:0.2;fill:#d86d44" | |
| 330 | + cx="372.72501" | |
| 331 | + cy="357.16699" | |
| 332 | + r="19.249001" | |
| 333 | + id="circle119" | |
| 334 | + sodipodi:cx="372.72501" | |
| 335 | + sodipodi:cy="357.16699" | |
| 336 | + sodipodi:rx="19.249001" | |
| 337 | + sodipodi:ry="19.249001" | |
| 338 | + transform="translate(-145.43535,-189.01935)" /><path | |
| 339 | + style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 340 | + d="M 231.14065,228.64765" | |
| 341 | + id="path121" | |
| 342 | + inkscape:connector-curvature="0" /><linearGradient | |
| 343 | + id="SVGID_11_" | |
| 344 | + gradientUnits="userSpaceOnUse" | |
| 345 | + x1="218.8582" | |
| 346 | + y1="511.4505" | |
| 347 | + x2="220.60651" | |
| 348 | + y2="520.62927" | |
| 349 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 350 | + offset="0" | |
| 351 | + style="stop-color:#006178" | |
| 352 | + id="stop124" /><stop | |
| 353 | + offset="1" | |
| 354 | + style="stop-color:#00495C" | |
| 355 | + id="stop126" /></linearGradient><path | |
| 356 | + style="fill:url(#SVGID_11_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 357 | + d="m 61.249655,330.25265 c 0.7,3.23 4.623,2.704 4.623,2.704 0,0 14.196,-2.268 16.856,-2.704 2.66,-0.436 5.413,-2.183 4.802,-5.501 -0.611,-3.318 -2.578,-4.334 -4.977,-4.104 -2.143,0.206 -17.811,4.016 -17.811,4.016 0,0 -4.628,0.35 -3.493,5.589 z" | |
| 358 | + id="path128" | |
| 359 | + inkscape:connector-curvature="0" /><linearGradient | |
| 360 | + id="SVGID_12_" | |
| 361 | + gradientUnits="userSpaceOnUse" | |
| 362 | + x1="196.34351" | |
| 363 | + y1="377.0275" | |
| 364 | + x2="197.17529" | |
| 365 | + y2="381.39441"><stop | |
| 366 | + offset="0" | |
| 367 | + style="stop-color:#006178" | |
| 368 | + id="stop131" /><stop | |
| 369 | + offset="1" | |
| 370 | + style="stop-color:#00495C" | |
| 371 | + id="stop133" /></linearGradient><polygon | |
| 372 | + style="fill:url(#SVGID_12_);stroke:#000000;stroke-miterlimit:10" | |
| 373 | + points="186.437,382.911 186.437,379.506 206.978,374.966 207.302,379.506 " | |
| 374 | + id="polygon135" | |
| 375 | + transform="translate(-145.43535,-189.01935)" /><linearGradient | |
| 376 | + id="SVGID_13_" | |
| 377 | + gradientUnits="userSpaceOnUse" | |
| 378 | + x1="152.85809" | |
| 379 | + y1="432.1676" | |
| 380 | + x2="155.30721" | |
| 381 | + y2="445.02539" | |
| 382 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 383 | + offset="0.0019" | |
| 384 | + style="stop-color:#FFCA94" | |
| 385 | + id="stop138" /><stop | |
| 386 | + offset="1" | |
| 387 | + style="stop-color:#E2A380" | |
| 388 | + id="stop140" /></linearGradient><path | |
| 389 | + style="fill:url(#SVGID_13_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 390 | + d="m 2.5626545,251.52265 c 0.949,7.344 13.9770005,5.843 12.4400005,-2.53 -1.537,-8.373 -13.8540005,-8.404 -12.4400005,2.53 z" | |
| 391 | + id="path142" | |
| 392 | + inkscape:connector-curvature="0" /><linearGradient | |
| 393 | + id="SVGID_14_" | |
| 394 | + gradientUnits="userSpaceOnUse" | |
| 395 | + x1="150.90849" | |
| 396 | + y1="418.1373" | |
| 397 | + x2="153.3576" | |
| 398 | + y2="430.99509" | |
| 399 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 400 | + offset="0.0019" | |
| 401 | + style="stop-color:#FFCA94" | |
| 402 | + id="stop145" /><stop | |
| 403 | + offset="1" | |
| 404 | + style="stop-color:#E2A380" | |
| 405 | + id="stop147" /></linearGradient><path | |
| 406 | + style="fill:url(#SVGID_14_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 407 | + d="m 0.61265455,237.49265 c 0.94899995,7.344 13.97700045,5.843 12.44000045,-2.53 -1.537,-8.373 -13.85300045,-8.404 -12.44000045,2.53 z" | |
| 408 | + id="path149" | |
| 409 | + inkscape:connector-curvature="0" /><linearGradient | |
| 410 | + id="SVGID_15_" | |
| 411 | + gradientUnits="userSpaceOnUse" | |
| 412 | + x1="155.52521" | |
| 413 | + y1="446.19681" | |
| 414 | + x2="157.7338" | |
| 415 | + y2="457.79221" | |
| 416 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 417 | + offset="0.0019" | |
| 418 | + style="stop-color:#FFCA94" | |
| 419 | + id="stop152" /><stop | |
| 420 | + offset="1" | |
| 421 | + style="stop-color:#E2A380" | |
| 422 | + id="stop154" /></linearGradient><path | |
| 423 | + style="fill:url(#SVGID_15_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 424 | + d="m 5.7066545,264.72965 c 0.856,6.623 12.6050005,5.269 11.2180005,-2.281 -1.387,-7.55 -12.4920005,-7.58 -11.2180005,2.281 z" | |
| 425 | + id="path156" | |
| 426 | + inkscape:connector-curvature="0" /><linearGradient | |
| 427 | + id="SVGID_16_" | |
| 428 | + gradientUnits="userSpaceOnUse" | |
| 429 | + x1="153.2876" | |
| 430 | + y1="459.8923" | |
| 431 | + x2="155.15581" | |
| 432 | + y2="469.70059" | |
| 433 | + gradientTransform="translate(-145.43535,-189.01935)"><stop | |
| 434 | + offset="0.0019" | |
| 435 | + style="stop-color:#FFCA94" | |
| 436 | + id="stop159" /><stop | |
| 437 | + offset="1" | |
| 438 | + style="stop-color:#E2A380" | |
| 439 | + id="stop161" /></linearGradient><path | |
| 440 | + style="fill:url(#SVGID_16_);stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 441 | + d="m 14.738655,269.81365 c 0,0 -14.45200045,0.644 -13.0900005,6.785 1.362,6.141 15.1240005,2.806 15.1240005,2.806 l -2.034,-9.591 z" | |
| 442 | + id="path163" | |
| 443 | + inkscape:connector-curvature="0" /><line | |
| 444 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 445 | + x1="103.19666" | |
| 446 | + y1="134.52966" | |
| 447 | + x2="111.07164" | |
| 448 | + y2="138.28766" | |
| 449 | + id="line165" /><line | |
| 450 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 451 | + x1="116.44066" | |
| 452 | + y1="121.91666" | |
| 453 | + x2="119.95366" | |
| 454 | + y2="128.63864" | |
| 455 | + id="line167" /><line | |
| 456 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 457 | + x1="231.53465" | |
| 458 | + y1="117.39664" | |
| 459 | + x2="227.96065" | |
| 460 | + y2="125.27765" | |
| 461 | + id="line169" /><line | |
| 462 | + style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 463 | + x1="249.61266" | |
| 464 | + y1="127.38266" | |
| 465 | + x2="237.84065" | |
| 466 | + y2="134.52966" | |
| 467 | + id="line171" /><line | |
| 468 | + style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 469 | + x1="243.72664" | |
| 470 | + y1="311.64764" | |
| 471 | + x2="251.97566" | |
| 472 | + y2="348.16364" | |
| 473 | + id="line173" /><line | |
| 474 | + style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 475 | + x1="184.01564" | |
| 476 | + y1="310.31366" | |
| 477 | + x2="184.01564" | |
| 478 | + y2="349.90466" | |
| 479 | + id="line175" /><line | |
| 480 | + style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 481 | + x1="146.45665" | |
| 482 | + y1="311.64764" | |
| 483 | + x2="143.12267" | |
| 484 | + y2="350.95166" | |
| 485 | + id="line177" /><line | |
| 486 | + style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10" | |
| 487 | + x1="218.07564" | |
| 488 | + y1="311.29565" | |
| 489 | + x2="222.05864" | |
| 490 | + y2="348.93066" | |
| 491 | + id="line179" /></svg> | ... | ... |
resources/images/Mail.svg
0 → 100755
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |
| 3 | + | |
| 4 | +<svg | |
| 5 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| 6 | + xmlns:cc="http://creativecommons.org/ns#" | |
| 7 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| 8 | + xmlns:svg="http://www.w3.org/2000/svg" | |
| 9 | + xmlns="http://www.w3.org/2000/svg" | |
| 10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| 11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| 12 | + version="1.1" | |
| 13 | + id="Layer_1" | |
| 14 | + x="0px" | |
| 15 | + y="0px" | |
| 16 | + viewBox="0 0 195.689 195.688" | |
| 17 | + xml:space="preserve" | |
| 18 | + inkscape:version="0.48.4 r9939" | |
| 19 | + width="100%" | |
| 20 | + height="100%" | |
| 21 | + sodipodi:docname="Mail.svg"><metadata | |
| 22 | + id="metadata68"><rdf:RDF><cc:Work | |
| 23 | + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | |
| 24 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs | |
| 25 | + id="defs66" /><sodipodi:namedview | |
| 26 | + pagecolor="#ffffff" | |
| 27 | + bordercolor="#666666" | |
| 28 | + borderopacity="1" | |
| 29 | + objecttolerance="10" | |
| 30 | + gridtolerance="10" | |
| 31 | + guidetolerance="10" | |
| 32 | + inkscape:pageopacity="0" | |
| 33 | + inkscape:pageshadow="2" | |
| 34 | + inkscape:window-width="1508" | |
| 35 | + inkscape:window-height="982" | |
| 36 | + id="namedview64" | |
| 37 | + showgrid="false" | |
| 38 | + inkscape:zoom="8.970293" | |
| 39 | + inkscape:cx="97.257987" | |
| 40 | + inkscape:cy="98.235009" | |
| 41 | + inkscape:window-x="75" | |
| 42 | + inkscape:window-y="34" | |
| 43 | + inkscape:window-maximized="0" | |
| 44 | + inkscape:current-layer="Layer_1" | |
| 45 | + fit-margin-top="0" | |
| 46 | + fit-margin-left="0" | |
| 47 | + fit-margin-right="0" | |
| 48 | + fit-margin-bottom="0" /><g | |
| 49 | + id="g3" | |
| 50 | + transform="translate(-200.38201,-323.492)"><linearGradient | |
| 51 | + id="SVGID_1_" | |
| 52 | + gradientUnits="userSpaceOnUse" | |
| 53 | + x1="298.22559" | |
| 54 | + y1="324.43469" | |
| 55 | + x2="298.22559" | |
| 56 | + y2="518.20068"><stop | |
| 57 | + offset="0" | |
| 58 | + style="stop-color:#FFFFFF;stop-opacity:0.7" | |
| 59 | + id="stop6" /><stop | |
| 60 | + offset="0.9987" | |
| 61 | + style="stop-color:#D8D9D8;stop-opacity:0.7" | |
| 62 | + id="stop8" /></linearGradient><path | |
| 63 | + style="fill:url(#SVGID_1_);fill-rule:evenodd" | |
| 64 | + d="m 210.005,518.68 c -5.031,0 -9.124,-4.093 -9.124,-9.123 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.441 c 5.03,0 9.123,4.093 9.123,9.124 v 176.44 c 0,5.03 -4.093,9.123 -9.123,9.123 H 210.005 z" | |
| 65 | + id="path10" | |
| 66 | + inkscape:connector-curvature="0" /><path | |
| 67 | + style="fill:#d8d8d7" | |
| 68 | + d="m 386.446,324.492 c 4.755,0 8.624,3.868 8.624,8.624 v 176.441 c 0,4.755 -3.868,8.623 -8.624,8.623 h -176.44 c -4.755,0 -8.624,-3.868 -8.624,-8.623 V 333.116 c 0,-4.755 3.868,-8.624 8.624,-8.624 h 176.44 m 0,-1 h -176.44 c -5.315,0 -9.624,4.309 -9.624,9.624 v 176.441 c 0,5.315 4.309,9.623 9.624,9.623 h 176.441 c 5.315,0 9.624,-4.308 9.624,-9.623 V 333.116 c -0.001,-5.315 -4.31,-9.624 -9.625,-9.624 l 0,0 z" | |
| 69 | + id="path12" | |
| 70 | + inkscape:connector-curvature="0" /></g><path | |
| 71 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 72 | + d="M 43.775991,58.85 H 148.48299 c 3.322,0 6.015,2.693 6.015,6.015 v 81.128 c 0,3.322 -2.693,6.015 -6.015,6.015 H 43.775991 c -3.322,0 -6.015,-2.693 -6.015,-6.015 V 64.865 c 0,-3.323 2.693,-6.015 6.015,-6.015 z" | |
| 73 | + id="path14" | |
| 74 | + inkscape:connector-curvature="0" /><g | |
| 75 | + id="g16" | |
| 76 | + transform="translate(-200.38201,-323.492)"><linearGradient | |
| 77 | + id="SVGID_2_" | |
| 78 | + gradientUnits="userSpaceOnUse" | |
| 79 | + x1="296.51169" | |
| 80 | + y1="381.51559" | |
| 81 | + x2="296.51169" | |
| 82 | + y2="474.0015"><stop | |
| 83 | + offset="0.0032" | |
| 84 | + style="stop-color:#E6C71E" | |
| 85 | + id="stop19" /><stop | |
| 86 | + offset="1" | |
| 87 | + style="stop-color:#E1BB23" | |
| 88 | + id="stop21" /></linearGradient><path | |
| 89 | + style="fill:url(#SVGID_2_);fill-rule:evenodd" | |
| 90 | + d="m 244.158,474.999 c -3.041,0 -5.515,-2.474 -5.515,-5.515 v -82.699 c 0,-3.041 2.474,-5.515 5.515,-5.515 h 104.707 c 3.041,0 5.515,2.474 5.515,5.515 v 82.699 c 0,3.041 -2.474,5.515 -5.515,5.515 H 244.158 z" | |
| 91 | + id="path23" | |
| 92 | + inkscape:connector-curvature="0" /><path | |
| 93 | + style="fill:#d6b429" | |
| 94 | + d="m 348.865,381.771 c 2.765,0 5.015,2.25 5.015,5.015 v 82.699 c 0,2.765 -2.25,5.015 -5.015,5.015 H 244.158 c -2.765,0 -5.015,-2.25 -5.015,-5.015 v -82.699 c 0,-2.765 2.25,-5.015 5.015,-5.015 h 104.707 m 0,-1 H 244.158 c -3.322,0 -6.015,2.693 -6.015,6.015 v 82.699 c 0,3.322 2.693,6.015 6.015,6.015 h 104.707 c 3.322,0 6.015,-2.693 6.015,-6.015 v -82.699 c 0,-3.322 -2.693,-6.015 -6.015,-6.015 l 0,0 z" | |
| 95 | + id="path25" | |
| 96 | + inkscape:connector-curvature="0" /></g><path | |
| 97 | + style="fill:#c9af2d;fill-rule:evenodd" | |
| 98 | + d="m 39.744991,60.112 -1.026,1.112 58.106,56.862 v -2.652 l -57.08,-55.322 z" | |
| 99 | + id="path27" | |
| 100 | + inkscape:connector-curvature="0" /><path | |
| 101 | + style="fill:#9e8831;fill-rule:evenodd" | |
| 102 | + d="m 39.867991,60.294 0.589,-0.666 56.368,55.16 v 0.646 l -56.957,-55.14 z" | |
| 103 | + id="path29" | |
| 104 | + inkscape:connector-curvature="0" /><polygon | |
| 105 | + style="fill:#eecf32;fill-rule:evenodd" | |
| 106 | + points="239.625,471.413 240.152,471.976 296.94,421.926 296.94,420.907 " | |
| 107 | + id="polygon31" | |
| 108 | + transform="translate(-200.38201,-323.492)" /><path | |
| 109 | + style="fill:#c9af2d;fill-rule:evenodd" | |
| 110 | + d="m 97.159431,118.6434 56.403999,-56.915 -1.09844,-1.5594 -55.638999,55.265 0,2.652 z" | |
| 111 | + id="path33" | |
| 112 | + inkscape:connector-curvature="0" | |
| 113 | + sodipodi:nodetypes="cccccc" /><path | |
| 114 | + style="fill:#968330;fill-rule:evenodd" | |
| 115 | + d="m 96.824991,114.788 55.097999,-55.103 0.542,0.485 -55.638999,55.265 v -0.647 z" | |
| 116 | + id="path35" | |
| 117 | + inkscape:connector-curvature="0" /><path | |
| 118 | + style="fill:#9e8831;fill-rule:evenodd" | |
| 119 | + d="m 148.48299,57.119 -104.706999,0 c -4.82917,1.06976 -6.015,3.82683 -6.015,7.746 0,-3.322 2.693,-6.015 6.015,-6.015 l 104.706999,0 c 3.322,0 6.015,2.693 6.015,6.015 l 0,-1.731 c 0,-3.322 -2.693,-6.015 -6.015,-6.015 z" | |
| 120 | + id="path37" | |
| 121 | + inkscape:connector-curvature="0" | |
| 122 | + sodipodi:nodetypes="sccsscss" /><path | |
| 123 | + style="fill:#bba330;fill-rule:evenodd" | |
| 124 | + d="m 38.470991,146.961 c 0,0 0.246,0.5 0.772,0.959 l 57.316,-50.505 0.02,-1.375 -58.108,50.921 z" | |
| 125 | + id="path39" | |
| 126 | + inkscape:connector-curvature="0" /><path | |
| 127 | + style="fill:#bba330;fill-rule:evenodd" | |
| 128 | + d="m 96.557991,95.891 v 1.524 l 55.750999,51.174 c 0.466,-0.33 0.768,-0.716 0.768,-0.716 L 96.557991,95.891 z" | |
| 129 | + id="path41" | |
| 130 | + inkscape:connector-curvature="0" /><path | |
| 131 | + style="fill:#eecf32;fill-rule:evenodd" | |
| 132 | + d="M 152.30999,148.589 96.558991,97.415 v 0.761 l 55.114999,50.925 c 0.32,-0.151 0.213,-0.212 0.636,-0.512 z" | |
| 133 | + id="path43" | |
| 134 | + inkscape:connector-curvature="0" /><path | |
| 135 | + style="fill:#ac9431;fill-rule:evenodd" | |
| 136 | + d="m 88.629991,88.999 c -3.192,1.17 -4.69,6.312 -6.235,7.829 -1.544,1.517 -4.703,1.544 -6.273,5.029 -1.57,3.485 1.75,4.183 1.675,7.319 -0.076,3.136 -2.91,3.923 -2.368,7.185 0.541,3.262 3.454,2.5 4.846,4.564 1.391,2.064 -0.81,5.496 2.281,6.831 3.091,1.335 5.185,-0.25 8.327,0.084 3.142,0.334 2.986,4.66 7.796,4.18 5.496999,-0.548 4.266999,-4.183 7.267999,-5.811 3.001,-1.628 6.925,1.166 8.397,-2.402 1.472,-3.568 -0.258,-5.944 0.469,-9.521 0.727,-3.577 4.949,-4.005 4.769,-7.767 -0.18,-3.762 -4.779,-6.555 -7.659,-7.681 -1.814,-0.709 -0.625,-7.017 -4.299,-8.084 -3.673,-1.067 -5.597,0.229 -10.023999,0.635 -4.428,0.407 -3.247,-4.488 -8.97,-2.39 z" | |
| 137 | + id="path45" | |
| 138 | + inkscape:connector-curvature="0" /><g | |
| 139 | + id="g47" | |
| 140 | + transform="translate(-200.38201,-323.492)"><linearGradient | |
| 141 | + id="SVGID_3_" | |
| 142 | + gradientUnits="userSpaceOnUse" | |
| 143 | + x1="297.85461" | |
| 144 | + y1="413.6799" | |
| 145 | + x2="297.85461" | |
| 146 | + y2="452.90948"><stop | |
| 147 | + offset="0" | |
| 148 | + style="stop-color:#F9F3D9" | |
| 149 | + id="stop50" /><stop | |
| 150 | + offset="1" | |
| 151 | + style="stop-color:#EAE3CA" | |
| 152 | + id="stop52" /></linearGradient><path | |
| 153 | + style="fill:url(#SVGID_3_);fill-rule:evenodd" | |
| 154 | + d="m 298.342,453.3 c -2.136,0 -3.101,-1.126 -4.034,-2.215 -0.778,-0.908 -1.583,-1.848 -3.018,-2.001 -0.322,-0.034 -0.633,-0.049 -0.936,-0.049 -0.919,0 -1.754,0.136 -2.561,0.267 -0.764,0.124 -1.484,0.241 -2.238,0.241 -0.892,0 -1.693,-0.166 -2.52,-0.523 -1.686,-0.729 -1.654,-2.082 -1.617,-3.649 0.025,-1.077 0.051,-2.191 -0.556,-3.092 -0.607,-0.901 -1.469,-1.292 -2.303,-1.669 -1.183,-0.535 -2.205,-0.997 -2.503,-2.797 -0.275,-1.657 0.375,-2.643 1.063,-3.687 0.625,-0.949 1.272,-1.931 1.309,-3.452 0.034,-1.415 -0.597,-2.379 -1.154,-3.229 -0.744,-1.137 -1.387,-2.118 -0.542,-3.992 0.985,-2.186 2.632,-2.966 4.084,-3.653 0.806,-0.382 1.567,-0.742 2.136,-1.301 0.559,-0.549 1.086,-1.504 1.698,-2.61 1.089,-1.973 2.445,-4.427 4.448,-5.162 0.936,-0.343 1.715,-0.51 2.382,-0.51 1.299,0 1.967,0.656 2.675,1.35 0.759,0.745 1.619,1.589 3.318,1.589 0.167,0 0.344,-0.008 0.53,-0.025 1.51,-0.139 2.74,-0.381 3.824,-0.596 1.225,-0.242 2.282,-0.451 3.415,-0.451 0.894,0 1.749,0.127 2.693,0.402 2.02,0.587 2.468,2.9 2.862,4.941 0.291,1.5 0.542,2.794 1.414,3.136 2.703,1.057 7.325,3.818 7.5,7.46 0.092,1.901 -1.027,2.912 -2.212,3.982 -1.081,0.977 -2.199,1.986 -2.552,3.724 -0.326,1.603 -0.171,2.965 -0.021,4.281 0.189,1.669 0.369,3.246 -0.435,5.193 -0.609,1.478 -1.646,1.78 -3.018,1.78 -0.382,0 -0.779,-0.023 -1.184,-0.047 -0.431,-0.024 -0.869,-0.05 -1.309,-0.05 -1.16,0 -2.017,0.184 -2.774,0.595 -1.227,0.665 -1.782,1.648 -2.319,2.599 -0.832,1.471 -1.617,2.86 -4.854,3.183 -0.242,0.025 -0.472,0.037 -0.691,0.037 z" | |
| 155 | + id="path54" | |
| 156 | + inkscape:connector-curvature="0" /><path | |
| 157 | + style="fill:#fffcf3" | |
| 158 | + d="m 291.481,410.466 c 1.197,0 1.8,0.593 2.499,1.279 0.793,0.778 1.692,1.661 3.493,1.661 0.175,0 0.359,-0.008 0.553,-0.026 1.523,-0.14 2.759,-0.384 3.849,-0.599 1.212,-0.239 2.258,-0.446 3.366,-0.446 0.869,0 1.703,0.125 2.623,0.392 1.873,0.544 2.306,2.778 2.688,4.749 0.305,1.572 0.568,2.93 1.568,3.321 2.647,1.035 7.173,3.725 7.341,7.24 0.085,1.784 -0.941,2.711 -2.13,3.785 -1.059,0.957 -2.26,2.041 -2.629,3.859 -0.334,1.642 -0.176,3.023 -0.024,4.36 0.186,1.636 0.362,3.181 -0.417,5.07 -0.558,1.354 -1.48,1.626 -2.787,1.626 -0.373,0 -0.76,-0.022 -1.17,-0.046 -0.43,-0.025 -0.874,-0.051 -1.323,-0.051 -1.204,0 -2.096,0.193 -2.893,0.625 -1.29,0.7 -1.863,1.714 -2.418,2.695 -0.833,1.474 -1.553,2.748 -4.661,3.058 -0.23,0.023 -0.455,0.035 -0.667,0.035 -2.022,0 -2.907,-1.033 -3.845,-2.128 -0.81,-0.946 -1.648,-1.923 -3.181,-2.087 -0.318,-0.034 -0.633,-0.05 -0.962,-0.05 -0.94,0 -1.784,0.137 -2.601,0.27 -0.753,0.122 -1.464,0.238 -2.198,0.238 -0.857,0 -1.626,-0.16 -2.421,-0.503 -1.457,-0.629 -1.507,-1.707 -1.466,-3.414 0.026,-1.116 0.053,-2.271 -0.598,-3.238 -0.647,-0.96 -1.582,-1.383 -2.408,-1.757 -1.164,-0.527 -2.083,-0.943 -2.359,-2.61 -0.259,-1.561 0.336,-2.463 1.025,-3.508 0.615,-0.933 1.312,-1.99 1.35,-3.584 0.036,-1.493 -0.618,-2.491 -1.195,-3.373 -0.733,-1.12 -1.312,-2.004 -0.524,-3.753 0.947,-2.102 2.48,-2.828 3.963,-3.53 0.826,-0.391 1.606,-0.76 2.205,-1.348 0.585,-0.575 1.121,-1.545 1.741,-2.668 1.069,-1.936 2.4,-4.346 4.315,-5.048 0.909,-0.334 1.66,-0.496 2.298,-0.496 m 0,-0.5 c -0.651,0 -1.451,0.152 -2.468,0.525 -3.192,1.17 -4.69,6.312 -6.235,7.829 -1.544,1.517 -4.703,1.544 -6.273,5.029 -1.57,3.485 1.75,4.183 1.675,7.319 -0.076,3.136 -2.91,3.923 -2.368,7.185 0.541,3.262 3.454,2.5 4.846,4.564 1.391,2.064 -0.81,5.496 2.281,6.831 0.947,0.409 1.801,0.544 2.619,0.544 1.587,0 3.044,-0.507 4.799,-0.507 0.294,0 0.597,0.014 0.91,0.048 2.977,0.317 2.994,4.217 7.079,4.217 0.226,0 0.465,-0.012 0.717,-0.037 5.497,-0.548 4.267,-4.183 7.268,-5.811 0.837,-0.454 1.747,-0.564 2.655,-0.564 0.853,0 1.704,0.097 2.493,0.097 1.382,0 2.574,-0.298 3.249,-1.935 1.472,-3.568 -0.258,-5.944 0.469,-9.521 0.727,-3.577 4.949,-4.005 4.769,-7.767 -0.18,-3.762 -4.779,-6.555 -7.659,-7.681 -1.814,-0.709 -0.625,-7.017 -4.299,-8.084 -1.027,-0.298 -1.917,-0.412 -2.763,-0.412 -2.181,0 -4.071,0.755 -7.261,1.047 -0.178,0.016 -0.347,0.024 -0.507,0.024 -3.128,0 -3.132,-2.939 -5.996,-2.94 l 0,0 z" | |
| 159 | + id="path56" | |
| 160 | + inkscape:connector-curvature="0" /></g><g | |
| 161 | + id="g58" | |
| 162 | + transform="translate(-200.38201,-323.492)"><path | |
| 163 | + style="fill:#2c2c2c" | |
| 164 | + d="m 295.754,427.07 c -0.707,0.492 -1.312,1.11 -1.816,1.854 -0.506,0.744 -0.9,1.554 -1.189,2.43 -0.287,0.876 -0.432,1.71 -0.432,2.502 0,1.008 0.289,1.842 0.863,2.502 0.576,0.66 1.32,0.99 2.232,0.99 0.793,0 1.523,-0.258 2.197,-0.774 0.67,-0.516 1.26,-1.163 1.764,-1.943 0.504,-0.78 0.9,-1.614 1.188,-2.502 0.288,-0.888 0.432,-1.704 0.432,-2.448 0,-0.433 -0.078,-0.852 -0.234,-1.26 -0.156,-0.408 -0.371,-0.762 -0.646,-1.062 -0.277,-0.3 -0.59,-0.546 -0.938,-0.738 -0.348,-0.191 -0.713,-0.288 -1.098,-0.288 -0.84,-0.001 -1.614,0.246 -2.323,0.737 z m 6.157,8.676 c -0.084,0.324 -0.125,0.618 -0.125,0.883 0,0.744 0.287,1.115 0.863,1.115 0.553,0 1.121,-0.252 1.711,-0.756 0.588,-0.504 1.121,-1.151 1.602,-1.943 0.479,-0.792 0.875,-1.68 1.188,-2.664 0.313,-0.984 0.469,-1.956 0.469,-2.916 0,-1.416 -0.271,-2.7 -0.811,-3.853 -0.541,-1.151 -1.266,-2.13 -2.178,-2.934 -0.912,-0.804 -1.951,-1.422 -3.115,-1.854 -1.164,-0.432 -2.381,-0.647 -3.652,-0.647 -1.537,0 -2.971,0.306 -4.303,0.918 -1.332,0.611 -2.49,1.446 -3.475,2.502 -0.984,1.057 -1.758,2.28 -2.322,3.672 -0.562,1.393 -0.846,2.88 -0.846,4.464 0,1.608 0.295,3.108 0.883,4.5 0.588,1.393 1.391,2.599 2.412,3.618 1.02,1.021 2.201,1.824 3.545,2.412 1.344,0.588 2.773,0.882 4.285,0.882 1.727,0 3.389,-0.396 4.986,-1.188 1.596,-0.792 2.908,-1.848 3.941,-3.168 h 2.268 c -0.576,1.009 -1.271,1.902 -2.088,2.683 -0.817,0.781 -1.709,1.439 -2.682,1.98 -0.973,0.54 -2.01,0.948 -3.115,1.225 -1.104,0.275 -2.23,0.414 -3.383,0.414 -1.896,0 -3.666,-0.349 -5.311,-1.044 -1.645,-0.696 -3.072,-1.65 -4.283,-2.862 -1.213,-1.212 -2.166,-2.64 -2.863,-4.284 -0.695,-1.644 -1.043,-3.426 -1.043,-5.346 0,-1.848 0.354,-3.582 1.062,-5.202 0.707,-1.62 1.668,-3.036 2.879,-4.248 1.213,-1.212 2.629,-2.166 4.248,-2.862 1.621,-0.695 3.342,-1.044 5.166,-1.044 1.656,0 3.229,0.276 4.717,0.828 1.488,0.553 2.789,1.314 3.906,2.286 1.115,0.972 1.998,2.137 2.645,3.492 0.648,1.355 0.973,2.85 0.973,4.481 0,1.561 -0.283,2.982 -0.846,4.267 -0.564,1.284 -1.266,2.382 -2.105,3.294 -0.842,0.912 -1.754,1.62 -2.736,2.124 -0.984,0.504 -1.896,0.756 -2.736,0.756 -0.625,0 -1.152,-0.192 -1.584,-0.576 -0.432,-0.384 -0.672,-0.972 -0.721,-1.764 h -0.107 c -0.553,0.624 -1.213,1.182 -1.98,1.674 -0.767,0.492 -1.596,0.738 -2.484,0.738 -0.768,0 -1.469,-0.15 -2.105,-0.45 -0.636,-0.3 -1.176,-0.702 -1.619,-1.206 -0.445,-0.504 -0.793,-1.104 -1.045,-1.8 -0.252,-0.696 -0.377,-1.44 -0.377,-2.232 0,-1.248 0.203,-2.484 0.611,-3.708 0.408,-1.224 0.979,-2.315 1.711,-3.276 0.73,-0.959 1.619,-1.739 2.662,-2.34 1.045,-0.6 2.203,-0.899 3.475,-0.899 0.84,0 1.621,0.222 2.34,0.666 0.721,0.444 1.283,1.206 1.693,2.286 l 0.826,-2.269 h 2.27 l -3.025,10.224 c -0.099,0.309 -0.188,0.628 -0.272,0.951 z" | |
| 165 | + id="path60" | |
| 166 | + inkscape:connector-curvature="0" /></g><path | |
| 167 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 168 | + d="M 148.48299,149.755 H 43.775991 c -3.322,0 -6.015,-2.693 -6.015,-6.015 v 2.253 c 0,3.322 2.693,6.015 6.015,6.015 H 148.48299 c 3.322,0 6.015,-2.693 6.015,-6.015 v -2.253 c 0,3.322 -2.693,6.015 -6.015,6.015 z" | |
| 169 | + id="path62" | |
| 170 | + inkscape:connector-curvature="0" /></svg> | |
| 0 | 171 | \ No newline at end of file | ... | ... |
resources/images/Message.svg
0 → 100755
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |
| 3 | + | |
| 4 | +<svg | |
| 5 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| 6 | + xmlns:cc="http://creativecommons.org/ns#" | |
| 7 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| 8 | + xmlns:svg="http://www.w3.org/2000/svg" | |
| 9 | + xmlns="http://www.w3.org/2000/svg" | |
| 10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| 11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| 12 | + version="1.1" | |
| 13 | + id="Layer_1" | |
| 14 | + x="0px" | |
| 15 | + y="0px" | |
| 16 | + viewBox="0 0 195.689 195.688" | |
| 17 | + xml:space="preserve" | |
| 18 | + inkscape:version="0.48.4 r9939" | |
| 19 | + width="100%" | |
| 20 | + height="100%" | |
| 21 | + sodipodi:docname="Message.svg"><metadata | |
| 22 | + id="metadata113"><rdf:RDF><cc:Work | |
| 23 | + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | |
| 24 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs | |
| 25 | + id="defs111" /><sodipodi:namedview | |
| 26 | + pagecolor="#ffffff" | |
| 27 | + bordercolor="#666666" | |
| 28 | + borderopacity="1" | |
| 29 | + objecttolerance="10" | |
| 30 | + gridtolerance="10" | |
| 31 | + guidetolerance="10" | |
| 32 | + inkscape:pageopacity="0" | |
| 33 | + inkscape:pageshadow="2" | |
| 34 | + inkscape:window-width="1365" | |
| 35 | + inkscape:window-height="1008" | |
| 36 | + id="namedview109" | |
| 37 | + showgrid="false" | |
| 38 | + inkscape:zoom="6.342955" | |
| 39 | + inkscape:cx="93.708537" | |
| 40 | + inkscape:cy="72.329172" | |
| 41 | + inkscape:window-x="325" | |
| 42 | + inkscape:window-y="44" | |
| 43 | + inkscape:window-maximized="0" | |
| 44 | + inkscape:current-layer="Layer_1" | |
| 45 | + fit-margin-top="0" | |
| 46 | + fit-margin-left="0" | |
| 47 | + fit-margin-right="0" | |
| 48 | + fit-margin-bottom="0" /><g | |
| 49 | + id="g3" | |
| 50 | + transform="translate(-199.56101,-322.811)"><linearGradient | |
| 51 | + id="SVGID_1_" | |
| 52 | + gradientUnits="userSpaceOnUse" | |
| 53 | + x1="297.405" | |
| 54 | + y1="323.75299" | |
| 55 | + x2="297.405" | |
| 56 | + y2="517.51898"><stop | |
| 57 | + offset="0" | |
| 58 | + style="stop-color:#FFFFFF;stop-opacity:0.7" | |
| 59 | + id="stop6" /><stop | |
| 60 | + offset="0.9987" | |
| 61 | + style="stop-color:#D8D9D8;stop-opacity:0.7" | |
| 62 | + id="stop8" /></linearGradient><path | |
| 63 | + style="fill:url(#SVGID_1_);fill-rule:evenodd" | |
| 64 | + d="m 209.185,517.998 c -5.031,0 -9.124,-4.093 -9.124,-9.123 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.44 c 5.031,0 9.124,4.093 9.124,9.124 v 176.44 c 0,5.03 -4.093,9.123 -9.124,9.123 h -176.44 z" | |
| 65 | + id="path10" | |
| 66 | + inkscape:connector-curvature="0" /><path | |
| 67 | + style="fill:#d8d8d7" | |
| 68 | + d="m 385.625,323.811 c 4.755,0 8.624,3.868 8.624,8.624 v 176.441 c 0,4.755 -3.868,8.623 -8.624,8.623 h -176.44 c -4.755,0 -8.624,-3.868 -8.624,-8.623 V 332.434 c 0,-4.755 3.868,-8.624 8.624,-8.624 h 176.44 m 0,-0.999 h -176.44 c -5.315,0 -9.624,4.309 -9.624,9.624 v 176.441 c 0,5.315 4.309,9.623 9.624,9.623 h 176.441 c 5.315,0 9.624,-4.309 9.624,-9.623 V 332.434 c -10e-4,-5.314 -4.31,-9.623 -9.625,-9.623 l 0,0 z" | |
| 69 | + id="path12" | |
| 70 | + inkscape:connector-curvature="0" /></g><g | |
| 71 | + id="g14" | |
| 72 | + transform="translate(-199.56101,-322.811)"><linearGradient | |
| 73 | + id="SVGID_2_" | |
| 74 | + gradientUnits="userSpaceOnUse" | |
| 75 | + x1="296.19089" | |
| 76 | + y1="369.73291" | |
| 77 | + x2="296.19089" | |
| 78 | + y2="474.21371"><stop | |
| 79 | + offset="0" | |
| 80 | + style="stop-color:#329AC8" | |
| 81 | + id="stop17" /><stop | |
| 82 | + offset="1" | |
| 83 | + style="stop-color:#2884BC" | |
| 84 | + id="stop19" /></linearGradient><path | |
| 85 | + style="fill:url(#SVGID_2_);fill-rule:evenodd" | |
| 86 | + d="m 307.517,451.043 -0.539,-0.029 h -62.729 c -5.151,0 -9.342,-4.19 -9.342,-9.342 v -62.597 c 0,-5.151 4.191,-9.342 9.342,-9.342 h 103.884 c 5.151,0 9.342,4.191 9.342,9.342 v 62.597 c 0,5.151 -4.19,9.342 -9.342,9.342 h -13.09 l -0.145,0.091 -27.908,25.471 0.527,-25.533 z" | |
| 87 | + id="path21" | |
| 88 | + inkscape:connector-curvature="0" /><path | |
| 89 | + style="fill:#327eab" | |
| 90 | + d="m 348.133,370.233 c 4.876,0 8.842,3.967 8.842,8.842 v 62.597 c 0,4.875 -3.966,8.842 -8.842,8.842 h -12.938 l -0.407,0.007 -0.286,0.261 -26.987,24.637 0.491,-23.859 -10e-4,-0.44 -0.294,-0.299 -0.314,-0.308 h -0.42 -62.728 c -4.875,0 -8.842,-3.966 -8.842,-8.842 v -62.597 c 0,-4.875 3.966,-8.842 8.842,-8.842 h 103.884 m 0,-0.999 H 244.249 c -5.436,0 -9.842,4.406 -9.842,9.842 v 62.597 c 0,5.436 4.406,9.842 9.842,9.842 h 62.728 c 0.016,0 0.029,0.013 0.028,0.029 l -0.538,26.121 c 0,0.017 0.014,0.029 0.029,0.029 0.007,0 0.013,-0.002 0.019,-0.008 l 28.66,-26.165 c 0.005,-0.005 0.012,-0.007 0.019,-0.007 h 12.938 c 5.436,0 9.842,-4.406 9.842,-9.842 v -62.597 c 0.001,-5.435 -4.406,-9.841 -9.841,-9.841 l 0,0 z" | |
| 91 | + id="path23" | |
| 92 | + inkscape:connector-curvature="0" /></g><g | |
| 93 | + id="g25" | |
| 94 | + transform="translate(-199.56101,-322.811)"><g | |
| 95 | + id="g27"><polygon | |
| 96 | + style="fill:#266583;fill-rule:evenodd" | |
| 97 | + points="306.996,452.599 306.984,452.599 306.466,477.73 306.479,477.719 " | |
| 98 | + id="polygon29" /></g><g | |
| 99 | + id="g31"><path | |
| 100 | + style="fill:#266583;fill-rule:evenodd" | |
| 101 | + d="m 348.133,369.233 -103.884,0 c -5.436,0 -9.842,4.406 -9.842,9.842 l 0,0 c 0,0.035 0.051,0.038 0.054,0.003 0.527,-4.888 4.687,-8.404 9.749,-8.404 l 103.912,0 c 8.6778,-0.3713 9.36903,6.45678 9.842,11.47667 0.36195,-7.49834 0.68242,-13.28604 -9.831,-12.91767 z" | |
| 102 | + id="path33" | |
| 103 | + inkscape:connector-curvature="0" | |
| 104 | + sodipodi:nodetypes="cscccsccc" /></g></g><g | |
| 105 | + id="g35" | |
| 106 | + transform="translate(-199.56101,-322.811)"><g | |
| 107 | + id="g37"><path | |
| 108 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 109 | + d="m 348.161,451.514 -12.967,0 c -0.007,0 -0.014,0.003 -0.019,0.007 l -28.687,26.19 -0.021,1.024 28.709,-26.209 c 0.005,-0.005 0.012,-0.007 0.019,-0.007 l 12.938,0 c 6.67403,-0.41947 9.842,-5.49 9.842,-10.819 0,5.42 -4.394,9.814 -9.814,9.814 z" | |
| 110 | + id="path39" | |
| 111 | + inkscape:connector-curvature="0" | |
| 112 | + sodipodi:nodetypes="ssccccsccs" /></g><g | |
| 113 | + id="g41"><path | |
| 114 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 115 | + d="M 307.006,451.514 H 244.22 c -5.42,0 -9.813,-4.394 -9.813,-9.813 v 0.977 c 0,5.436 4.406,9.842 9.842,9.842 h 62.737 l 0.02,-1.006 z" | |
| 116 | + id="path43" | |
| 117 | + inkscape:connector-curvature="0" /></g></g><g | |
| 118 | + id="g45" | |
| 119 | + transform="translate(-199.56101,-322.811)"><g | |
| 120 | + id="g47"><path | |
| 121 | + style="fill:#2f7496" | |
| 122 | + d="m 263.841,407.883 c 0.411,-1.172 1.001,-2.194 1.771,-3.066 0.77,-0.873 1.715,-1.558 2.836,-2.054 1.121,-0.496 2.383,-0.744 3.786,-0.744 1.42,0 2.686,0.248 3.799,0.744 1.112,0.496 2.053,1.181 2.823,2.054 0.77,0.872 1.36,1.895 1.771,3.066 0.411,1.173 0.616,2.443 0.616,3.812 0,1.334 -0.206,2.579 -0.616,3.734 -0.41,1.155 -1.001,2.16 -1.771,3.016 -0.77,0.856 -1.711,1.527 -2.823,2.015 -1.113,0.488 -2.379,0.732 -3.799,0.732 -1.403,0 -2.666,-0.244 -3.786,-0.732 -1.121,-0.487 -2.066,-1.158 -2.836,-2.015 -0.77,-0.855 -1.36,-1.86 -1.771,-3.016 -0.411,-1.156 -0.616,-2.4 -0.616,-3.734 0,-1.369 0.206,-2.639 0.616,-3.812 z m 3.684,6.057 c 0.18,0.728 0.466,1.383 0.86,1.964 0.393,0.582 0.907,1.049 1.54,1.399 0.633,0.351 1.403,0.525 2.31,0.525 0.907,0 1.677,-0.175 2.31,-0.525 0.633,-0.351 1.146,-0.817 1.54,-1.399 0.393,-0.581 0.68,-1.236 0.86,-1.964 0.18,-0.727 0.27,-1.476 0.27,-2.245 0,-0.805 -0.09,-1.583 -0.27,-2.336 -0.18,-0.753 -0.467,-1.425 -0.86,-2.015 -0.394,-0.591 -0.907,-1.062 -1.54,-1.412 -0.633,-0.351 -1.403,-0.526 -2.31,-0.526 -0.907,0 -1.677,0.176 -2.31,0.526 -0.633,0.351 -1.147,0.821 -1.54,1.412 -0.394,0.59 -0.68,1.262 -0.86,2.015 -0.18,0.753 -0.27,1.531 -0.27,2.336 0,0.77 0.09,1.519 0.27,2.245 z" | |
| 123 | + id="path49" | |
| 124 | + inkscape:connector-curvature="0" /></g><g | |
| 125 | + id="g51"><path | |
| 126 | + style="fill:#2f7496" | |
| 127 | + d="m 289.642,402.455 c 0.012,0 0.023,0.008 0.027,0.019 l 4.28,12.583 H 294 l 4.049,-12.583 c 0.004,-0.012 0.015,-0.02 0.027,-0.02 h 5.623 c 0.016,0 0.028,0.013 0.028,0.028 v 18.269 c 0,0.016 -0.013,0.028 -0.028,0.028 h -3.716 c -0.016,0 -0.028,-0.013 -0.028,-0.028 v -12.96 h -0.051 l -4.485,12.969 c -0.004,0.011 -0.015,0.019 -0.027,0.019 h -3.065 c -0.012,0 -0.023,-0.008 -0.027,-0.019 l -4.485,-12.84 h -0.051 v 12.831 c 0,0.016 -0.013,0.028 -0.028,0.028 h -3.717 c -0.016,0 -0.028,-0.013 -0.028,-0.028 v -18.269 c 0,-0.016 0.013,-0.028 0.028,-0.028 h 5.623 z" | |
| 128 | + id="path53" | |
| 129 | + inkscape:connector-curvature="0" /></g><g | |
| 130 | + id="g55"><path | |
| 131 | + style="fill:#2f7496" | |
| 132 | + d="m 318.128,420.64 c -0.873,0.368 -1.754,0.553 -2.644,0.553 -1.403,0 -2.666,-0.244 -3.786,-0.732 -1.121,-0.487 -2.066,-1.158 -2.836,-2.015 -0.77,-0.855 -1.36,-1.86 -1.771,-3.016 -0.411,-1.156 -0.616,-2.4 -0.616,-3.734 0,-1.369 0.205,-2.64 0.616,-3.812 0.411,-1.172 1.001,-2.194 1.771,-3.066 0.77,-0.873 1.715,-1.558 2.836,-2.054 1.121,-0.496 2.383,-0.744 3.786,-0.744 0.941,0 1.852,0.141 2.733,0.423 0.881,0.282 1.677,0.698 2.387,1.245 0.71,0.548 1.296,1.224 1.758,2.028 0.457,0.795 0.738,1.709 0.843,2.738 0.002,0.017 -0.012,0.033 -0.029,0.033 h -3.796 c -0.013,0 -0.024,-0.009 -0.027,-0.022 -0.241,-1.016 -0.701,-1.779 -1.381,-2.288 -0.685,-0.514 -1.515,-0.771 -2.49,-0.771 -0.907,0 -1.677,0.176 -2.31,0.526 -0.633,0.351 -1.147,0.821 -1.54,1.412 -0.394,0.59 -0.68,1.262 -0.86,2.015 -0.18,0.753 -0.27,1.531 -0.27,2.336 0,0.77 0.09,1.519 0.27,2.245 0.18,0.728 0.466,1.383 0.86,1.964 0.393,0.582 0.907,1.049 1.54,1.399 0.633,0.351 1.403,0.525 2.31,0.525 1.334,0 2.365,-0.337 3.093,-1.014 0.721,-0.67 1.143,-1.638 1.267,-2.905 0.002,-0.017 -0.012,-0.034 -0.029,-0.034 h -3.995 c -0.016,0 -0.028,-0.013 -0.028,-0.028 v -2.946 c 0,-0.016 0.013,-0.028 0.028,-0.028 h 7.644 c 0.016,0 0.028,0.013 0.028,0.028 v 9.85 c 0,0.016 -0.013,0.028 -0.028,0.028 h -2.515 c -0.014,0 -0.025,-0.01 -0.028,-0.023 l -0.406,-2.056 c -0.716,0.926 -1.512,1.572 -2.385,1.94 z" | |
| 133 | + id="path57" | |
| 134 | + inkscape:connector-curvature="0" /></g><g | |
| 135 | + id="g59"><path | |
| 136 | + style="fill:#2f7496" | |
| 137 | + d="m 330.577,416.857 v 3.896 c 0,0.016 -0.013,0.028 -0.028,0.028 h -3.973 c -0.016,0 -0.028,-0.013 -0.028,-0.028 v -3.896 c 0,-0.016 0.013,-0.028 0.028,-0.028 h 3.973 c 0.015,-0.001 0.028,0.012 0.028,0.028 z m -1.155,-1.569 h -1.773 c -0.014,0 -0.026,-0.011 -0.028,-0.025 l -0.972,-7.879 c 0,-0.001 0,-0.002 0,-0.004 v -4.898 c 0,-0.016 0.013,-0.028 0.028,-0.028 h 3.742 c 0.016,0 0.028,0.013 0.028,0.028 v 4.897 c 0,10e-4 0,0.002 0,0.004 l -0.998,7.879 c 0,0.015 -0.013,0.026 -0.027,0.026 z" | |
| 138 | + id="path61" | |
| 139 | + inkscape:connector-curvature="0" /></g></g><g | |
| 140 | + id="g63" | |
| 141 | + transform="translate(-199.56101,-322.811)"><g | |
| 142 | + id="g65"><linearGradient | |
| 143 | + id="SVGID_3_" | |
| 144 | + gradientUnits="userSpaceOnUse" | |
| 145 | + x1="272.23489" | |
| 146 | + y1="401.85071" | |
| 147 | + x2="272.23489" | |
| 148 | + y2="419.34131"><stop | |
| 149 | + offset="0" | |
| 150 | + style="stop-color:#E2EEF4" | |
| 151 | + id="stop68" /><stop | |
| 152 | + offset="1" | |
| 153 | + style="stop-color:#CDE5F3" | |
| 154 | + id="stop70" /></linearGradient><path | |
| 155 | + style="fill:url(#SVGID_3_)" | |
| 156 | + d="m 272.235,419.826 c -1.362,0 -2.603,-0.239 -3.686,-0.711 -1.084,-0.471 -2.009,-1.128 -2.75,-1.953 -0.745,-0.828 -1.324,-1.814 -1.722,-2.932 -0.399,-1.123 -0.601,-2.351 -0.601,-3.651 0,-1.334 0.203,-2.589 0.602,-3.73 0.398,-1.136 0.978,-2.14 1.723,-2.983 0.743,-0.842 1.668,-1.512 2.75,-1.991 1.083,-0.479 2.323,-0.723 3.685,-0.723 1.378,0 2.622,0.243 3.697,0.723 1.074,0.479 1.995,1.149 2.737,1.991 0.745,0.843 1.324,1.847 1.723,2.983 0.399,1.141 0.602,2.396 0.602,3.73 0,1.299 -0.203,2.527 -0.602,3.651 -0.398,1.118 -0.977,2.104 -1.722,2.932 -0.741,0.825 -1.662,1.482 -2.738,1.953 -1.076,0.471 -2.32,0.711 -3.698,0.711 z m 0,-15.786 c -0.945,0 -1.763,0.188 -2.431,0.558 -0.666,0.369 -1.214,0.871 -1.627,1.492 -0.408,0.61 -0.709,1.315 -0.895,2.095 -0.184,0.769 -0.276,1.574 -0.276,2.394 0,0.787 0.093,1.562 0.277,2.305 0.187,0.755 0.488,1.443 0.896,2.044 0.414,0.612 0.96,1.11 1.626,1.478 0.667,0.369 1.485,0.557 2.431,0.557 0.946,0 1.764,-0.188 2.431,-0.557 0.664,-0.368 1.211,-0.865 1.626,-1.478 0.408,-0.604 0.709,-1.292 0.896,-2.044 0.184,-0.743 0.277,-1.519 0.277,-2.305 0,-0.82 -0.093,-1.625 -0.276,-2.394 -0.186,-0.777 -0.487,-1.482 -0.895,-2.095 -0.415,-0.622 -0.962,-1.124 -1.627,-1.492 -0.67,-0.371 -1.488,-0.558 -2.433,-0.558 z" | |
| 157 | + id="path72" | |
| 158 | + inkscape:connector-curvature="0" /><path | |
| 159 | + style="fill:#f5fbfd" | |
| 160 | + d="m 272.235,401.402 c 1.343,0 2.552,0.236 3.595,0.701 1.041,0.465 1.934,1.113 2.652,1.928 0.723,0.819 1.286,1.795 1.674,2.901 0.39,1.115 0.588,2.342 0.588,3.647 0,1.27 -0.198,2.47 -0.587,3.567 -0.387,1.087 -0.949,2.046 -1.672,2.849 -0.717,0.798 -1.61,1.434 -2.652,1.891 -1.044,0.458 -2.254,0.69 -3.598,0.69 -1.328,0 -2.534,-0.232 -3.587,-0.691 -1.05,-0.457 -1.947,-1.093 -2.664,-1.891 -0.723,-0.803 -1.285,-1.761 -1.672,-2.849 -0.389,-1.096 -0.587,-2.296 -0.587,-3.567 0,-1.306 0.198,-2.534 0.588,-3.647 0.387,-1.106 0.951,-2.082 1.674,-2.901 0.718,-0.815 1.615,-1.463 2.664,-1.927 1.051,-0.465 2.257,-0.701 3.584,-0.701 m 0,15.811 c 0.989,0 1.848,-0.198 2.552,-0.588 0.699,-0.387 1.275,-0.911 1.712,-1.557 0.425,-0.628 0.738,-1.343 0.931,-2.124 0.189,-0.762 0.284,-1.558 0.284,-2.365 0,-0.84 -0.095,-1.665 -0.283,-2.452 -0.192,-0.806 -0.505,-1.538 -0.93,-2.176 -0.437,-0.655 -1.014,-1.184 -1.714,-1.572 -0.706,-0.391 -1.565,-0.589 -2.552,-0.589 -0.988,0 -1.847,0.198 -2.552,0.589 -0.702,0.388 -1.278,0.917 -1.714,1.572 -0.424,0.635 -0.737,1.367 -0.93,2.176 -0.188,0.787 -0.283,1.612 -0.283,2.452 0,0.807 0.096,1.603 0.284,2.365 0.194,0.784 0.507,1.499 0.931,2.124 0.436,0.646 1.012,1.169 1.712,1.557 0.704,0.39 1.562,0.588 2.552,0.588 m 0,-16.311 c -1.403,0 -2.666,0.248 -3.786,0.744 -1.121,0.496 -2.066,1.181 -2.836,2.054 -0.77,0.872 -1.36,1.895 -1.771,3.066 -0.411,1.173 -0.616,2.443 -0.616,3.812 0,1.334 0.205,2.579 0.616,3.734 0.411,1.155 1.001,2.16 1.771,3.016 0.77,0.856 1.715,1.527 2.836,2.015 1.121,0.488 2.383,0.732 3.786,0.732 1.42,0 2.686,-0.244 3.799,-0.732 1.112,-0.487 2.053,-1.158 2.823,-2.015 0.77,-0.855 1.36,-1.86 1.771,-3.016 0.411,-1.156 0.616,-2.4 0.616,-3.734 0,-1.369 -0.206,-2.64 -0.616,-3.812 -0.411,-1.172 -1.001,-2.194 -1.771,-3.066 -0.77,-0.873 -1.711,-1.558 -2.823,-2.054 -1.113,-0.496 -2.379,-0.744 -3.799,-0.744 l 0,0 z m 0,15.811 c -0.907,0 -1.677,-0.175 -2.31,-0.525 -0.633,-0.351 -1.147,-0.817 -1.54,-1.399 -0.394,-0.581 -0.68,-1.236 -0.86,-1.964 -0.18,-0.727 -0.27,-1.476 -0.27,-2.245 0,-0.805 0.09,-1.583 0.27,-2.336 0.18,-0.753 0.466,-1.425 0.86,-2.015 0.393,-0.591 0.907,-1.062 1.54,-1.412 0.633,-0.351 1.403,-0.526 2.31,-0.526 0.907,0 1.677,0.176 2.31,0.526 0.633,0.351 1.146,0.821 1.54,1.412 0.393,0.59 0.68,1.262 0.86,2.015 0.18,0.753 0.27,1.531 0.27,2.336 0,0.77 -0.09,1.519 -0.27,2.245 -0.18,0.728 -0.467,1.383 -0.86,1.964 -0.394,0.582 -0.907,1.049 -1.54,1.399 -0.633,0.35 -1.403,0.525 -2.31,0.525 l 0,0 z" | |
| 161 | + id="path74" | |
| 162 | + inkscape:connector-curvature="0" /></g><g | |
| 163 | + id="g76"><linearGradient | |
| 164 | + id="SVGID_4_" | |
| 165 | + gradientUnits="userSpaceOnUse" | |
| 166 | + x1="293.85941" | |
| 167 | + y1="401.86169" | |
| 168 | + x2="293.85941" | |
| 169 | + y2="419.33069"><stop | |
| 170 | + offset="0" | |
| 171 | + style="stop-color:#E2EEF4" | |
| 172 | + id="stop79" /><stop | |
| 173 | + offset="1" | |
| 174 | + style="stop-color:#CDE5F3" | |
| 175 | + id="stop81" /></linearGradient><polygon | |
| 176 | + style="fill:url(#SVGID_4_)" | |
| 177 | + points="299.668,406.595 295.234,419.415 292.484,419.415 287.993,406.555 287.565,406.555 287.514,406.805 287.514,419.415 284.24,419.415 284.24,401.588 289.483,401.588 293.77,414.191 294.131,414.191 294.238,414.018 298.238,401.588 303.479,401.588 303.479,419.415 300.205,419.415 300.205,406.426 299.777,406.426 " | |
| 178 | + id="polygon83" /><path | |
| 179 | + style="fill:#f5fbfd" | |
| 180 | + d="m 303.228,401.839 v 17.326 h -2.773 v -12.488 -0.5 h -0.5 -0.051 -0.356 l -0.116,0.337 -4.375,12.652 h -2.395 l -4.375,-12.524 -0.117,-0.335 h -0.355 -0.051 -0.5 v 0.5 12.359 h -2.773 V 401.84 h 4.814 l 4.171,12.264 0.115,0.339 h 0.358 0.051 0.364 l 0.112,-0.347 3.944,-12.256 h 4.808 m 0.472,-0.501 h -5.623 c -0.012,0 -0.023,0.008 -0.027,0.02 L 294,413.941 h -0.051 l -4.28,-12.583 c -0.004,-0.012 -0.015,-0.019 -0.027,-0.019 h -5.624 c -0.016,0 -0.028,0.013 -0.028,0.028 v 18.269 c 0,0.016 0.013,0.028 0.028,0.028 h 3.717 c 0.016,0 0.028,-0.013 0.028,-0.028 v -12.831 h 0.051 l 4.485,12.84 c 0.004,0.011 0.015,0.019 0.027,0.019 h 3.065 c 0.012,0 0.023,-0.008 0.027,-0.019 l 4.485,-12.969 h 0.051 v 12.96 c 0,0.016 0.013,0.028 0.028,0.028 h 3.716 c 0.016,0 0.028,-0.013 0.028,-0.028 v -18.269 c 0.002,-0.016 -0.01,-0.028 -0.026,-0.028 l 0,0 z" | |
| 181 | + id="path85" | |
| 182 | + inkscape:connector-curvature="0" /></g><g | |
| 183 | + id="g87"><linearGradient | |
| 184 | + id="SVGID_5_" | |
| 185 | + gradientUnits="userSpaceOnUse" | |
| 186 | + x1="314.98441" | |
| 187 | + y1="401.85071" | |
| 188 | + x2="314.98441" | |
| 189 | + y2="419.34131"><stop | |
| 190 | + offset="0" | |
| 191 | + style="stop-color:#E2EEF4" | |
| 192 | + id="stop90" /><stop | |
| 193 | + offset="1" | |
| 194 | + style="stop-color:#CDE5F3" | |
| 195 | + id="stop92" /></linearGradient><path | |
| 196 | + style="fill:url(#SVGID_5_)" | |
| 197 | + d="m 315.484,419.826 c -1.362,0 -2.603,-0.239 -3.687,-0.711 -1.084,-0.471 -2.009,-1.128 -2.75,-1.953 -0.744,-0.826 -1.323,-1.813 -1.722,-2.933 -0.398,-1.123 -0.601,-2.351 -0.601,-3.65 0,-1.334 0.202,-2.589 0.602,-3.73 0.398,-1.137 0.979,-2.141 1.723,-2.983 0.742,-0.842 1.667,-1.512 2.75,-1.991 1.083,-0.479 2.323,-0.723 3.685,-0.723 0.912,0 1.806,0.138 2.657,0.411 0.847,0.271 1.624,0.676 2.312,1.205 0.681,0.525 1.25,1.183 1.693,1.955 0.401,0.698 0.664,1.503 0.783,2.397 h -3.374 c -0.265,-0.985 -0.746,-1.746 -1.431,-2.26 -0.726,-0.544 -1.614,-0.82 -2.641,-0.82 -0.945,0 -1.763,0.188 -2.431,0.558 -0.667,0.369 -1.214,0.871 -1.627,1.493 -0.408,0.609 -0.709,1.314 -0.896,2.095 -0.184,0.769 -0.276,1.574 -0.276,2.394 0,0.787 0.093,1.562 0.276,2.305 0.188,0.755 0.488,1.443 0.896,2.044 0.413,0.612 0.96,1.109 1.626,1.478 0.667,0.369 1.484,0.557 2.431,0.557 1.395,0 2.492,-0.364 3.263,-1.081 0.764,-0.71 1.217,-1.741 1.347,-3.063 l 0.011,-0.109 -0.081,-0.106 -0.074,-0.083 -0.134,-0.01 h -3.773 v -2.503 h 7.201 v 9.407 h -2.111 l -0.477,-2.416 -0.336,0.433 c -0.689,0.886 -1.459,1.512 -2.287,1.86 -0.839,0.353 -1.695,0.533 -2.547,0.533 z" | |
| 198 | + id="path94" | |
| 199 | + inkscape:connector-curvature="0" /><path | |
| 200 | + style="fill:#f5fbfd" | |
| 201 | + d="m 315.485,401.402 c 0.886,0 1.754,0.134 2.581,0.399 0.819,0.262 1.571,0.654 2.234,1.165 0.655,0.505 1.203,1.138 1.63,1.882 0.342,0.596 0.58,1.274 0.709,2.022 h -2.895 c -0.289,-0.953 -0.782,-1.695 -1.469,-2.21 -0.77,-0.578 -1.708,-0.871 -2.79,-0.871 -0.988,0 -1.847,0.198 -2.552,0.589 -0.702,0.388 -1.278,0.917 -1.714,1.572 -0.424,0.635 -0.737,1.367 -0.93,2.176 -0.188,0.787 -0.283,1.612 -0.283,2.452 0,0.807 0.096,1.603 0.284,2.365 0.194,0.784 0.507,1.499 0.931,2.124 0.436,0.646 1.012,1.169 1.712,1.557 0.704,0.39 1.563,0.588 2.552,0.588 1.46,0 2.615,-0.386 3.433,-1.147 0.809,-0.752 1.288,-1.836 1.425,-3.223 l 0.013,-0.244 -0.149,-0.164 -0.17,-0.174 h -0.221 -3.523 v -2.003 h 6.701 v 8.907 h -1.656 l -0.331,-1.676 -0.212,-1.075 -0.673,0.865 c -0.663,0.852 -1.398,1.452 -2.187,1.784 -0.807,0.341 -1.631,0.513 -2.449,0.513 -1.328,0 -2.534,-0.232 -3.587,-0.691 -1.05,-0.457 -1.947,-1.093 -2.664,-1.891 -0.723,-0.803 -1.285,-1.761 -1.672,-2.849 -0.389,-1.096 -0.587,-2.296 -0.587,-3.567 0,-1.306 0.198,-2.534 0.588,-3.647 0.387,-1.106 0.951,-2.082 1.674,-2.901 0.718,-0.815 1.615,-1.463 2.664,-1.927 1.05,-0.464 2.256,-0.7 3.583,-0.7 m 0,-0.5 c -1.403,0 -2.666,0.248 -3.786,0.744 -1.121,0.496 -2.066,1.181 -2.836,2.054 -0.77,0.872 -1.36,1.895 -1.771,3.066 -0.411,1.173 -0.616,2.443 -0.616,3.812 0,1.334 0.205,2.579 0.616,3.734 0.411,1.155 1.001,2.16 1.771,3.016 0.77,0.856 1.715,1.527 2.836,2.015 1.121,0.488 2.383,0.732 3.786,0.732 0.889,0 1.771,-0.185 2.644,-0.553 0.873,-0.367 1.668,-1.014 2.387,-1.938 l 0.406,2.056 c 0.003,0.013 0.014,0.023 0.028,0.023 h 2.515 c 0.016,0 0.028,-0.013 0.028,-0.028 v -9.85 c 0,-0.016 -0.013,-0.028 -0.028,-0.028 h -7.644 c -0.016,0 -0.028,0.013 -0.028,0.028 v 2.946 c 0,0.016 0.013,0.028 0.028,0.028 h 3.995 c 0.017,0 0.031,0.016 0.029,0.034 -0.124,1.267 -0.547,2.235 -1.267,2.905 -0.728,0.677 -1.758,1.014 -3.093,1.014 -0.907,0 -1.677,-0.175 -2.31,-0.525 -0.633,-0.351 -1.147,-0.817 -1.54,-1.399 -0.394,-0.581 -0.68,-1.236 -0.86,-1.964 -0.18,-0.727 -0.27,-1.476 -0.27,-2.245 0,-0.805 0.09,-1.583 0.27,-2.336 0.18,-0.753 0.466,-1.425 0.86,-2.015 0.393,-0.591 0.907,-1.062 1.54,-1.412 0.633,-0.351 1.403,-0.526 2.31,-0.526 0.975,0 1.805,0.257 2.49,0.771 0.679,0.509 1.139,1.272 1.381,2.288 0.003,0.012 0.014,0.022 0.027,0.022 h 3.796 c 0.017,0 0.031,-0.016 0.029,-0.033 -0.105,-1.029 -0.386,-1.943 -0.843,-2.738 -0.462,-0.805 -1.048,-1.48 -1.758,-2.028 -0.71,-0.547 -1.506,-0.963 -2.387,-1.245 -0.881,-0.282 -1.794,-0.425 -2.735,-0.425 l 0,0 z" | |
| 202 | + id="path96" | |
| 203 | + inkscape:connector-curvature="0" /></g><g | |
| 204 | + id="g98"><linearGradient | |
| 205 | + id="SVGID_6_" | |
| 206 | + gradientUnits="userSpaceOnUse" | |
| 207 | + x1="328.56149" | |
| 208 | + y1="401.86169" | |
| 209 | + x2="328.56149" | |
| 210 | + y2="419.33069"><stop | |
| 211 | + offset="0" | |
| 212 | + style="stop-color:#E2EEF4" | |
| 213 | + id="stop101" /><stop | |
| 214 | + offset="1" | |
| 215 | + style="stop-color:#CDE5F3" | |
| 216 | + id="stop103" /></linearGradient><path | |
| 217 | + style="fill:url(#SVGID_6_)" | |
| 218 | + d="m 326.797,419.415 v -3.453 h 3.529 v 3.453 h -3.529 z m 1.048,-5.494 -0.947,-7.684 0.002,-4.649 h 3.299 v 4.676 l -0.972,7.657 h -1.382 z" | |
| 219 | + id="path105" | |
| 220 | + inkscape:connector-curvature="0" /><path | |
| 221 | + style="fill:#f5fbfd" | |
| 222 | + d="m 329.948,401.839 v 4.396 l -0.942,7.437 h -0.94 l -0.917,-7.436 v -4.397 h 2.799 m 0.129,14.373 v 2.953 h -3.03 v -2.953 h 3.03 m 0.343,-14.873 h -3.742 c -0.016,0 -0.028,0.013 -0.028,0.028 v 4.898 c 0,0.001 0,0.002 0,0.003 l 0.972,7.879 c 0.002,0.014 0.014,0.025 0.028,0.025 h 1.773 c 0.014,0 0.026,-0.011 0.028,-0.025 l 0.998,-7.879 c 0,-10e-4 0,-0.002 0,-0.004 v -4.897 c -0.001,-0.016 -0.014,-0.028 -0.029,-0.028 l 0,0 z m 0.128,14.373 h -3.973 c -0.016,0 -0.028,0.013 -0.028,0.028 v 3.896 c 0,0.016 0.013,0.028 0.028,0.028 h 3.973 c 0.016,0 0.028,-0.013 0.028,-0.028 v -3.896 c 10e-4,-0.016 -0.012,-0.028 -0.028,-0.028 l 0,0 z" | |
| 223 | + id="path107" | |
| 224 | + inkscape:connector-curvature="0" /></g></g></svg> | |
| 0 | 225 | \ No newline at end of file | ... | ... |
resources/images/Phone.svg
0 → 100755
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |
| 3 | + | |
| 4 | +<svg | |
| 5 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| 6 | + xmlns:cc="http://creativecommons.org/ns#" | |
| 7 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| 8 | + xmlns:svg="http://www.w3.org/2000/svg" | |
| 9 | + xmlns="http://www.w3.org/2000/svg" | |
| 10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| 11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| 12 | + version="1.1" | |
| 13 | + id="Layer_1" | |
| 14 | + x="0px" | |
| 15 | + y="0px" | |
| 16 | + viewBox="0 0 195.689 195.688" | |
| 17 | + xml:space="preserve" | |
| 18 | + inkscape:version="0.48.4 r9939" | |
| 19 | + width="100%" | |
| 20 | + height="100%" | |
| 21 | + sodipodi:docname="Phone.svg"><metadata | |
| 22 | + id="metadata203"><rdf:RDF><cc:Work | |
| 23 | + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | |
| 24 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs | |
| 25 | + id="defs201" /><sodipodi:namedview | |
| 26 | + pagecolor="#ffffff" | |
| 27 | + bordercolor="#666666" | |
| 28 | + borderopacity="1" | |
| 29 | + objecttolerance="10" | |
| 30 | + gridtolerance="10" | |
| 31 | + guidetolerance="10" | |
| 32 | + inkscape:pageopacity="0" | |
| 33 | + inkscape:pageshadow="2" | |
| 34 | + inkscape:window-width="919" | |
| 35 | + inkscape:window-height="776" | |
| 36 | + id="namedview199" | |
| 37 | + showgrid="false" | |
| 38 | + inkscape:zoom="25.37182" | |
| 39 | + inkscape:cx="42.537767" | |
| 40 | + inkscape:cy="132.91916" | |
| 41 | + inkscape:window-x="237" | |
| 42 | + inkscape:window-y="230" | |
| 43 | + inkscape:window-maximized="0" | |
| 44 | + inkscape:current-layer="Layer_1" | |
| 45 | + fit-margin-top="0" | |
| 46 | + fit-margin-left="0" | |
| 47 | + fit-margin-right="0" | |
| 48 | + fit-margin-bottom="0" /><g | |
| 49 | + id="g3" | |
| 50 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 51 | + id="SVGID_1_" | |
| 52 | + gradientUnits="userSpaceOnUse" | |
| 53 | + x1="297.405" | |
| 54 | + y1="324.43469" | |
| 55 | + x2="297.405" | |
| 56 | + y2="518.20068"><stop | |
| 57 | + offset="0" | |
| 58 | + style="stop-color:#FFFFFF;stop-opacity:0.7" | |
| 59 | + id="stop6" /><stop | |
| 60 | + offset="0.9987" | |
| 61 | + style="stop-color:#D8D9D8;stop-opacity:0.7" | |
| 62 | + id="stop8" /></linearGradient><path | |
| 63 | + style="fill:url(#SVGID_1_);fill-rule:evenodd" | |
| 64 | + d="m 209.185,518.68 c -5.031,0 -9.124,-4.093 -9.124,-9.123 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.44 c 5.031,0 9.124,4.093 9.124,9.124 v 176.44 c 0,5.03 -4.093,9.123 -9.124,9.123 h -176.44 z" | |
| 65 | + id="path10" | |
| 66 | + inkscape:connector-curvature="0" /><path | |
| 67 | + style="fill:#d8d8d7" | |
| 68 | + d="m 385.625,324.492 c 4.755,0 8.624,3.868 8.624,8.624 v 176.441 c 0,4.755 -3.868,8.623 -8.624,8.623 h -176.44 c -4.755,0 -8.624,-3.868 -8.624,-8.623 V 333.116 c 0,-4.755 3.868,-8.624 8.624,-8.624 h 176.44 m 0,-1 h -176.44 c -5.315,0 -9.624,4.309 -9.624,9.624 v 176.441 c 0,5.315 4.309,9.623 9.624,9.623 h 176.441 c 5.315,0 9.624,-4.308 9.624,-9.623 V 333.116 c -10e-4,-5.315 -4.31,-9.624 -9.625,-9.624 l 0,0 z" | |
| 69 | + id="path12" | |
| 70 | + inkscape:connector-curvature="0" /></g><g | |
| 71 | + id="g14" | |
| 72 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 73 | + id="SVGID_2_" | |
| 74 | + gradientUnits="userSpaceOnUse" | |
| 75 | + x1="297.5188" | |
| 76 | + y1="379.46899" | |
| 77 | + x2="297.5188" | |
| 78 | + y2="476.5372"><stop | |
| 79 | + offset="0" | |
| 80 | + style="stop-color:#2D8F57" | |
| 81 | + id="stop17" /><stop | |
| 82 | + offset="1" | |
| 83 | + style="stop-color:#247746" | |
| 84 | + id="stop19" /></linearGradient><path | |
| 85 | + style="fill:url(#SVGID_2_);fill-rule:evenodd" | |
| 86 | + d="m 323.719,412.993 v -18.74 H 271.4 v 18.74 H 240.862 V 392.51 l 0.011,-0.25 v -1.15 c 0,-7.968 4.717,-11.841 14.421,-11.841 h 84.879 c 9.554,0 14.003,4.035 14.003,12.698 v 2.287 h -0.103 v 18.74 h -30.354 z" | |
| 87 | + id="path21" | |
| 88 | + inkscape:connector-curvature="0" /><path | |
| 89 | + style="fill:#247746" | |
| 90 | + d="m 340.172,379.518 c 9.383,0 13.753,3.956 13.753,12.448 v 2.037 h -0.102 v 0.5 18.24 h -29.855 v -18.24 -0.5 h -0.5 -51.82 -0.5 v 0.5 18.24 H 241.11 V 392.76 h 0.012 v -0.5 -1.15 c 0,-7.799 4.635,-11.591 14.171,-11.591 h 84.879 m 0,-0.501 c -21.886,0 -63.476,0 -84.878,0 -10.194,0 -14.671,4.359 -14.671,12.091 0,0.439 0,0.816 0,1.15 h -0.012 v 20.984 h 31.038 v -18.74 h 51.82 v 18.74 h 30.855 v -18.74 h 0.102 c 0,0 0,-1.02 0,-2.537 0,-7.571 -3.316,-12.948 -14.254,-12.948 l 0,0 z" | |
| 91 | + id="path23" | |
| 92 | + inkscape:connector-curvature="0" /></g><g | |
| 93 | + id="g25" | |
| 94 | + transform="translate(-199.56101,-323.492)"><g | |
| 95 | + id="g27"><path | |
| 96 | + style="fill:#96baa4;fill-rule:evenodd" | |
| 97 | + d="m 240.623,392.26 h -0.012 v 1 h 0.012 c 0,-0.294 0,-0.628 0,-1 z" | |
| 98 | + id="path29" | |
| 99 | + inkscape:connector-curvature="0" /></g><g | |
| 100 | + id="g31"><path | |
| 101 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 102 | + d="m 340.172,379.018 c -21.886,0 -63.476,0 -84.878,0 -10.56705,0.0408 -15.02572,4.86892 -14.671,13.091 0,-7.732 4.477,-11.901 14.671,-11.901 21.403,0 62.993,-2.1e-4 84.878,0 9.26381,0.32125 14.05593,7.72823 14.253,11.759 10e-4,-7.572 -3.315,-12.949 -14.253,-12.949 z" | |
| 103 | + id="path33" | |
| 104 | + inkscape:connector-curvature="0" | |
| 105 | + sodipodi:nodetypes="sccsccs" /></g></g><g | |
| 106 | + id="g35" | |
| 107 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 108 | + id="SVGID_3_" | |
| 109 | + gradientUnits="userSpaceOnUse" | |
| 110 | + x1="297.4675" | |
| 111 | + y1="379.59189" | |
| 112 | + x2="297.4675" | |
| 113 | + y2="477.47699"><stop | |
| 114 | + offset="0" | |
| 115 | + style="stop-color:#2D8F57" | |
| 116 | + id="stop38" /><stop | |
| 117 | + offset="1" | |
| 118 | + style="stop-color:#247746" | |
| 119 | + id="stop40" /></linearGradient><path | |
| 120 | + style="fill:url(#SVGID_3_);fill-rule:evenodd" | |
| 121 | + d="m 240.862,477.046 c 0.036,-21.582 4.705,-41.18 13.878,-58.254 h 21.99 v -20.309 h 11.143 v 10.237 h 19.348 v -10.237 h 11.473 v 20.309 h 21.113 c 6.505,12.096 14.218,31.972 14.267,58.254 H 240.862 z" | |
| 122 | + id="path42" | |
| 123 | + inkscape:connector-curvature="0" /><path | |
| 124 | + style="fill:#247746" | |
| 125 | + d="m 318.443,398.734 v 19.808 0.5 h 0.5 20.714 c 6.456,12.045 14.069,31.742 14.165,57.754 h -112.71 c 0.071,-21.386 4.706,-40.813 13.777,-57.754 h 21.59 0.5 v -0.5 -19.808 h 10.643 v 9.737 0.5 h 0.5 18.848 0.5 v -0.5 -9.737 h 10.973 m 0.5,-0.5 h -11.972 v 10.237 H 288.123 V 398.234 H 276.48 v 20.308 c 0,0 -11.825,0 -21.889,0 -7.057,13.092 -13.979,32.586 -13.979,58.754 43.235,0 77.889,0 113.712,0 0,-25.693 -7.176,-45.427 -14.367,-58.754 -9.858,0 -21.013,0 -21.013,0 v -20.308 l -0.001,0 z" | |
| 126 | + id="path44" | |
| 127 | + inkscape:connector-curvature="0" /></g><g | |
| 128 | + id="g46" | |
| 129 | + transform="translate(-199.56101,-323.492)"><path | |
| 130 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 131 | + d="m 272.181,429.65 h 13.338 v 7.738 h -13.338 v -7.738 z" | |
| 132 | + id="path48" | |
| 133 | + inkscape:connector-curvature="0" /></g><g | |
| 134 | + id="g50" | |
| 135 | + transform="translate(-199.56101,-323.492)"><path | |
| 136 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 137 | + d="m 290.07,429.65 h 13.338 v 7.738 H 290.07 v -7.738 z" | |
| 138 | + id="path52" | |
| 139 | + inkscape:connector-curvature="0" /></g><g | |
| 140 | + id="g54" | |
| 141 | + transform="translate(-199.56101,-323.492)"><path | |
| 142 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 143 | + d="m 307.959,429.65 h 13.338 v 7.738 h -13.338 v -7.738 z" | |
| 144 | + id="path56" | |
| 145 | + inkscape:connector-curvature="0" /></g><g | |
| 146 | + id="g58" | |
| 147 | + transform="translate(-199.56101,-323.492)"><path | |
| 148 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 149 | + d="m 272.181,441.099 h 13.338 v 7.738 h -13.338 v -7.738 z" | |
| 150 | + id="path60" | |
| 151 | + inkscape:connector-curvature="0" /></g><g | |
| 152 | + id="g62" | |
| 153 | + transform="translate(-199.56101,-323.492)"><path | |
| 154 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 155 | + d="m 290.07,441.099 h 13.338 v 7.738 H 290.07 v -7.738 z" | |
| 156 | + id="path64" | |
| 157 | + inkscape:connector-curvature="0" /></g><g | |
| 158 | + id="g66" | |
| 159 | + transform="translate(-199.56101,-323.492)"><path | |
| 160 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 161 | + d="m 307.959,441.099 h 13.338 v 7.738 h -13.338 v -7.738 z" | |
| 162 | + id="path68" | |
| 163 | + inkscape:connector-curvature="0" /></g><g | |
| 164 | + id="g70" | |
| 165 | + transform="translate(-199.56101,-323.492)"><path | |
| 166 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 167 | + d="m 272.181,452.548 h 13.338 v 7.738 h -13.338 v -7.738 z" | |
| 168 | + id="path72" | |
| 169 | + inkscape:connector-curvature="0" /></g><g | |
| 170 | + id="g74" | |
| 171 | + transform="translate(-199.56101,-323.492)"><path | |
| 172 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 173 | + d="m 290.07,452.548 h 13.338 v 7.738 H 290.07 v -7.738 z" | |
| 174 | + id="path76" | |
| 175 | + inkscape:connector-curvature="0" /></g><g | |
| 176 | + id="g78" | |
| 177 | + transform="translate(-199.56101,-323.492)"><path | |
| 178 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 179 | + d="m 307.959,452.548 h 13.338 v 7.738 h -13.338 v -7.738 z" | |
| 180 | + id="path80" | |
| 181 | + inkscape:connector-curvature="0" /></g><g | |
| 182 | + id="g82" | |
| 183 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 184 | + id="SVGID_4_" | |
| 185 | + gradientUnits="userSpaceOnUse" | |
| 186 | + x1="278.8501" | |
| 187 | + y1="429.478" | |
| 188 | + x2="278.8501" | |
| 189 | + y2="455.63269"><stop | |
| 190 | + offset="0" | |
| 191 | + style="stop-color:#ADCBB8" | |
| 192 | + id="stop85" /><stop | |
| 193 | + offset="1" | |
| 194 | + style="stop-color:#96BAA4" | |
| 195 | + id="stop87" /></linearGradient><rect | |
| 196 | + x="272.681" | |
| 197 | + y="429.14999" | |
| 198 | + style="fill:url(#SVGID_4_);fill-rule:evenodd" | |
| 199 | + width="12.338" | |
| 200 | + height="6.7379999" | |
| 201 | + id="rect89" /><path | |
| 202 | + style="fill:#c3dccb" | |
| 203 | + d="m 284.519,429.65 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 204 | + id="path91" | |
| 205 | + inkscape:connector-curvature="0" /></g><g | |
| 206 | + id="g93" | |
| 207 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 208 | + id="SVGID_5_" | |
| 209 | + gradientUnits="userSpaceOnUse" | |
| 210 | + x1="296.73929" | |
| 211 | + y1="429.478" | |
| 212 | + x2="296.73929" | |
| 213 | + y2="455.63269"><stop | |
| 214 | + offset="0" | |
| 215 | + style="stop-color:#ADCBB8" | |
| 216 | + id="stop96" /><stop | |
| 217 | + offset="1" | |
| 218 | + style="stop-color:#96BAA4" | |
| 219 | + id="stop98" /></linearGradient><rect | |
| 220 | + x="290.57001" | |
| 221 | + y="429.14999" | |
| 222 | + style="fill:url(#SVGID_5_);fill-rule:evenodd" | |
| 223 | + width="12.338" | |
| 224 | + height="6.7379999" | |
| 225 | + id="rect100" /><path | |
| 226 | + style="fill:#c3dccb" | |
| 227 | + d="m 302.408,429.65 v 5.738 H 291.07 v -5.738 h 11.338 m 1,-1 H 290.07 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 228 | + id="path102" | |
| 229 | + inkscape:connector-curvature="0" /></g><g | |
| 230 | + id="g104" | |
| 231 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 232 | + id="SVGID_6_" | |
| 233 | + gradientUnits="userSpaceOnUse" | |
| 234 | + x1="314.6279" | |
| 235 | + y1="429.478" | |
| 236 | + x2="314.6279" | |
| 237 | + y2="455.63269"><stop | |
| 238 | + offset="0" | |
| 239 | + style="stop-color:#ADCBB8" | |
| 240 | + id="stop107" /><stop | |
| 241 | + offset="1" | |
| 242 | + style="stop-color:#96BAA4" | |
| 243 | + id="stop109" /></linearGradient><rect | |
| 244 | + x="308.45901" | |
| 245 | + y="429.14999" | |
| 246 | + style="fill:url(#SVGID_6_);fill-rule:evenodd" | |
| 247 | + width="12.338" | |
| 248 | + height="6.7379999" | |
| 249 | + id="rect111" /><path | |
| 250 | + style="fill:#c3dccb" | |
| 251 | + d="m 320.297,429.65 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 252 | + id="path113" | |
| 253 | + inkscape:connector-curvature="0" /></g><g | |
| 254 | + id="g115" | |
| 255 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 256 | + id="SVGID_7_" | |
| 257 | + gradientUnits="userSpaceOnUse" | |
| 258 | + x1="278.8501" | |
| 259 | + y1="430.95789" | |
| 260 | + x2="278.8501" | |
| 261 | + y2="457.11221"><stop | |
| 262 | + offset="0" | |
| 263 | + style="stop-color:#ADCBB8" | |
| 264 | + id="stop118" /><stop | |
| 265 | + offset="1" | |
| 266 | + style="stop-color:#96BAA4" | |
| 267 | + id="stop120" /></linearGradient><rect | |
| 268 | + x="272.681" | |
| 269 | + y="440.60001" | |
| 270 | + style="fill:url(#SVGID_7_);fill-rule:evenodd" | |
| 271 | + width="12.338" | |
| 272 | + height="6.7379999" | |
| 273 | + id="rect122" /><path | |
| 274 | + style="fill:#c3dccb" | |
| 275 | + d="m 284.519,441.099 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 276 | + id="path124" | |
| 277 | + inkscape:connector-curvature="0" /></g><g | |
| 278 | + id="g126" | |
| 279 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 280 | + id="SVGID_8_" | |
| 281 | + gradientUnits="userSpaceOnUse" | |
| 282 | + x1="296.73929" | |
| 283 | + y1="430.95789" | |
| 284 | + x2="296.73929" | |
| 285 | + y2="457.11221"><stop | |
| 286 | + offset="0" | |
| 287 | + style="stop-color:#ADCBB8" | |
| 288 | + id="stop129" /><stop | |
| 289 | + offset="1" | |
| 290 | + style="stop-color:#96BAA4" | |
| 291 | + id="stop131" /></linearGradient><rect | |
| 292 | + x="290.57001" | |
| 293 | + y="440.60001" | |
| 294 | + style="fill:url(#SVGID_8_);fill-rule:evenodd" | |
| 295 | + width="12.338" | |
| 296 | + height="6.7379999" | |
| 297 | + id="rect133" /><path | |
| 298 | + style="fill:#c3dccb" | |
| 299 | + d="m 302.408,441.099 v 5.738 H 291.07 v -5.738 h 11.338 m 1,-1 H 290.07 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 300 | + id="path135" | |
| 301 | + inkscape:connector-curvature="0" /></g><g | |
| 302 | + id="g137" | |
| 303 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 304 | + id="SVGID_9_" | |
| 305 | + gradientUnits="userSpaceOnUse" | |
| 306 | + x1="314.6279" | |
| 307 | + y1="430.95789" | |
| 308 | + x2="314.6279" | |
| 309 | + y2="457.11221"><stop | |
| 310 | + offset="0" | |
| 311 | + style="stop-color:#ADCBB8" | |
| 312 | + id="stop140" /><stop | |
| 313 | + offset="1" | |
| 314 | + style="stop-color:#96BAA4" | |
| 315 | + id="stop142" /></linearGradient><rect | |
| 316 | + x="308.45901" | |
| 317 | + y="440.60001" | |
| 318 | + style="fill:url(#SVGID_9_);fill-rule:evenodd" | |
| 319 | + width="12.338" | |
| 320 | + height="6.7379999" | |
| 321 | + id="rect144" /><path | |
| 322 | + style="fill:#c3dccb" | |
| 323 | + d="m 320.297,441.099 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 324 | + id="path146" | |
| 325 | + inkscape:connector-curvature="0" /></g><g | |
| 326 | + id="g148" | |
| 327 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 328 | + id="SVGID_10_" | |
| 329 | + gradientUnits="userSpaceOnUse" | |
| 330 | + x1="278.8501" | |
| 331 | + y1="432.43359" | |
| 332 | + x2="278.8501" | |
| 333 | + y2="458.5921"><stop | |
| 334 | + offset="0" | |
| 335 | + style="stop-color:#ADCBB8" | |
| 336 | + id="stop151" /><stop | |
| 337 | + offset="1" | |
| 338 | + style="stop-color:#96BAA4" | |
| 339 | + id="stop153" /></linearGradient><rect | |
| 340 | + x="272.681" | |
| 341 | + y="452.048" | |
| 342 | + style="fill:url(#SVGID_10_);fill-rule:evenodd" | |
| 343 | + width="12.338" | |
| 344 | + height="6.7389998" | |
| 345 | + id="rect155" /><path | |
| 346 | + style="fill:#c3dccb" | |
| 347 | + d="m 284.519,452.548 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 348 | + id="path157" | |
| 349 | + inkscape:connector-curvature="0" /></g><g | |
| 350 | + id="g159" | |
| 351 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 352 | + id="SVGID_11_" | |
| 353 | + gradientUnits="userSpaceOnUse" | |
| 354 | + x1="296.73929" | |
| 355 | + y1="432.43359" | |
| 356 | + x2="296.73929" | |
| 357 | + y2="458.5921"><stop | |
| 358 | + offset="0" | |
| 359 | + style="stop-color:#ADCBB8" | |
| 360 | + id="stop162" /><stop | |
| 361 | + offset="1" | |
| 362 | + style="stop-color:#96BAA4" | |
| 363 | + id="stop164" /></linearGradient><rect | |
| 364 | + x="290.57001" | |
| 365 | + y="452.048" | |
| 366 | + style="fill:url(#SVGID_11_);fill-rule:evenodd" | |
| 367 | + width="12.338" | |
| 368 | + height="6.7389998" | |
| 369 | + id="rect166" /><path | |
| 370 | + style="fill:#c3dccb" | |
| 371 | + d="m 302.408,452.548 v 5.738 H 291.07 v -5.738 h 11.338 m 1,-1 H 290.07 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 372 | + id="path168" | |
| 373 | + inkscape:connector-curvature="0" /></g><g | |
| 374 | + id="g170" | |
| 375 | + transform="translate(-199.56101,-323.492)"><linearGradient | |
| 376 | + id="SVGID_12_" | |
| 377 | + gradientUnits="userSpaceOnUse" | |
| 378 | + x1="314.6279" | |
| 379 | + y1="432.43359" | |
| 380 | + x2="314.6279" | |
| 381 | + y2="458.5921"><stop | |
| 382 | + offset="0" | |
| 383 | + style="stop-color:#ADCBB8" | |
| 384 | + id="stop173" /><stop | |
| 385 | + offset="1" | |
| 386 | + style="stop-color:#96BAA4" | |
| 387 | + id="stop175" /></linearGradient><rect | |
| 388 | + x="308.45901" | |
| 389 | + y="452.048" | |
| 390 | + style="fill:url(#SVGID_12_);fill-rule:evenodd" | |
| 391 | + width="12.338" | |
| 392 | + height="6.7389998" | |
| 393 | + id="rect177" /><path | |
| 394 | + style="fill:#c3dccb" | |
| 395 | + d="m 320.297,452.548 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z" | |
| 396 | + id="path179" | |
| 397 | + inkscape:connector-curvature="0" /></g><rect | |
| 398 | + x="41.050991" | |
| 399 | + y="153.80399" | |
| 400 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 401 | + width="113.712" | |
| 402 | + height="1.527" | |
| 403 | + id="rect181" /><rect | |
| 404 | + x="41.050991" | |
| 405 | + y="89.236" | |
| 406 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 407 | + width="31.038" | |
| 408 | + height="1.166" | |
| 409 | + id="rect183" /><rect | |
| 410 | + x="71.567986" | |
| 411 | + y="70.518013" | |
| 412 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 413 | + width="52.827999" | |
| 414 | + height="1.166" | |
| 415 | + id="rect185" /><rect | |
| 416 | + x="76.918999" | |
| 417 | + y="74.742012" | |
| 418 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 419 | + width="11.643" | |
| 420 | + height="1.166" | |
| 421 | + id="rect187" /><polygon | |
| 422 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 423 | + points="277.05,418.542 277.05,419.708 254.005,419.708 254.591,418.542 " | |
| 424 | + id="polygon189" | |
| 425 | + transform="translate(-199.56101,-323.492)" /><rect | |
| 426 | + x="107.41" | |
| 427 | + y="74.742012" | |
| 428 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 429 | + width="11.972" | |
| 430 | + height="1.166" | |
| 431 | + id="rect191" /><polygon | |
| 432 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 433 | + points="339.956,418.542 340.577,419.708 318.43,419.708 318.43,418.542 " | |
| 434 | + id="polygon193" | |
| 435 | + transform="translate(-199.56101,-323.492)" /><rect | |
| 436 | + x="88.053001" | |
| 437 | + y="84.978004" | |
| 438 | + style="fill:#1e6035;fill-rule:evenodd" | |
| 439 | + width="19.858999" | |
| 440 | + height="1.166" | |
| 441 | + id="rect195" /><rect | |
| 442 | + x="123.90798" | |
| 443 | + y="89.13401" | |
| 444 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 445 | + width="30.855" | |
| 446 | + height="1.166" | |
| 447 | + id="rect197" /></svg> | |
| 0 | 448 | \ No newline at end of file | ... | ... |
resources/images/Settings.svg
0 → 100755
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |
| 3 | + | |
| 4 | +<svg | |
| 5 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| 6 | + xmlns:cc="http://creativecommons.org/ns#" | |
| 7 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| 8 | + xmlns:svg="http://www.w3.org/2000/svg" | |
| 9 | + xmlns="http://www.w3.org/2000/svg" | |
| 10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| 11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| 12 | + version="1.1" | |
| 13 | + id="Layer_1" | |
| 14 | + x="0px" | |
| 15 | + y="0px" | |
| 16 | + viewBox="0 0 198.205 197.727" | |
| 17 | + xml:space="preserve" | |
| 18 | + inkscape:version="0.48.4 r9939" | |
| 19 | + width="100%" | |
| 20 | + height="100%" | |
| 21 | + sodipodi:docname="Settings.svg"><metadata | |
| 22 | + id="metadata198"><rdf:RDF><cc:Work | |
| 23 | + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | |
| 24 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs | |
| 25 | + id="defs196" /><sodipodi:namedview | |
| 26 | + pagecolor="#ffffff" | |
| 27 | + bordercolor="#666666" | |
| 28 | + borderopacity="1" | |
| 29 | + objecttolerance="10" | |
| 30 | + gridtolerance="10" | |
| 31 | + guidetolerance="10" | |
| 32 | + inkscape:pageopacity="0" | |
| 33 | + inkscape:pageshadow="2" | |
| 34 | + inkscape:window-width="1855" | |
| 35 | + inkscape:window-height="1056" | |
| 36 | + id="namedview194" | |
| 37 | + showgrid="false" | |
| 38 | + inkscape:zoom="8.970293" | |
| 39 | + inkscape:cx="106.85199" | |
| 40 | + inkscape:cy="108.17733" | |
| 41 | + inkscape:window-x="65" | |
| 42 | + inkscape:window-y="24" | |
| 43 | + inkscape:window-maximized="1" | |
| 44 | + inkscape:current-layer="Layer_1" | |
| 45 | + fit-margin-top="0" | |
| 46 | + fit-margin-left="0" | |
| 47 | + fit-margin-right="0" | |
| 48 | + fit-margin-bottom="0" /><g | |
| 49 | + id="g3" | |
| 50 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 51 | + id="SVGID_1_" | |
| 52 | + gradientUnits="userSpaceOnUse" | |
| 53 | + x1="297.9707" | |
| 54 | + y1="323.84149" | |
| 55 | + x2="297.9707" | |
| 56 | + y2="518.87842"><stop | |
| 57 | + offset="0" | |
| 58 | + style="stop-color:#FFFFFF;stop-opacity:0.7" | |
| 59 | + id="stop6" /><stop | |
| 60 | + offset="0.9987" | |
| 61 | + style="stop-color:#D8D9D8;stop-opacity:0.7" | |
| 62 | + id="stop8" /></linearGradient><path | |
| 63 | + style="fill:url(#SVGID_1_);fill-rule:evenodd" | |
| 64 | + d="m 209.538,519.703 c -5.608,0 -10.17,-4.562 -10.17,-10.17 V 333.146 c 0,-5.608 4.562,-10.17 10.17,-10.17 h 176.865 c 5.607,0 10.17,4.562 10.17,10.17 v 176.387 c 0,5.607 -4.562,10.17 -10.17,10.17 H 209.538 z" | |
| 65 | + id="path10" | |
| 66 | + inkscape:connector-curvature="0" /><path | |
| 67 | + style="fill:#d8d8d7" | |
| 68 | + d="m 386.404,323.477 c 5.332,0 9.67,4.338 9.67,9.67 v 176.387 c 0,5.332 -4.338,9.67 -9.67,9.67 H 209.538 c -5.332,0 -9.67,-4.338 -9.67,-9.67 V 333.147 c 0,-5.332 4.338,-9.67 9.67,-9.67 h 176.866 m 0,-1 H 209.538 c -5.893,0 -10.67,4.777 -10.67,10.67 v 176.387 c 0,5.893 4.777,10.67 10.67,10.67 h 176.865 c 5.893,0 10.67,-4.777 10.67,-10.67 V 333.147 c 0.001,-5.893 -4.777,-10.67 -10.669,-10.67 l 0,0 z" | |
| 69 | + id="path12" | |
| 70 | + inkscape:connector-curvature="0" /></g><g | |
| 71 | + id="g14" | |
| 72 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 73 | + id="SVGID_2_" | |
| 74 | + gradientUnits="userSpaceOnUse" | |
| 75 | + x1="245.7205" | |
| 76 | + y1="365.71552" | |
| 77 | + x2="245.7205" | |
| 78 | + y2="468.46078"><stop | |
| 79 | + offset="0.0061" | |
| 80 | + style="stop-color:#EE4748" | |
| 81 | + id="stop17" /><stop | |
| 82 | + offset="1" | |
| 83 | + style="stop-color:#E33C3B" | |
| 84 | + id="stop19" /></linearGradient><path | |
| 85 | + style="fill:url(#SVGID_2_);fill-rule:evenodd" | |
| 86 | + d="m 235.816,397.952 c -3.191,0 -5.788,-2.596 -5.788,-5.787 v -19.809 c 0,-3.191 2.596,-5.788 5.788,-5.788 h 19.809 c 3.191,0 5.787,2.596 5.787,5.788 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 87 | + id="path21" | |
| 88 | + inkscape:connector-curvature="0" /><path | |
| 89 | + style="fill:#ce3737" | |
| 90 | + d="m 255.625,367.069 c 2.915,0 5.287,2.372 5.287,5.287 l 0,19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 l -19.809,0 c -2.915,0 -5.287,-2.372 -5.287,-5.287 l 0,-19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 l 19.809,0 m 0,-1 -19.809,0 c -3.472,0 -6.287,2.815 -6.287,6.287 l 0,19.809 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 3.472,0 6.287,-2.92648 6.287,-6.287 l 0,-19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 z" | |
| 91 | + id="path23" | |
| 92 | + inkscape:connector-curvature="0" | |
| 93 | + sodipodi:nodetypes="csssssssccssssssscc" /></g><g | |
| 94 | + id="g25" | |
| 95 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 96 | + id="SVGID_3_" | |
| 97 | + gradientUnits="userSpaceOnUse" | |
| 98 | + x1="281.9429" | |
| 99 | + y1="365.71552" | |
| 100 | + x2="281.9429" | |
| 101 | + y2="468.46078"><stop | |
| 102 | + offset="0.0061" | |
| 103 | + style="stop-color:#EE4748" | |
| 104 | + id="stop28" /><stop | |
| 105 | + offset="1" | |
| 106 | + style="stop-color:#E33C3B" | |
| 107 | + id="stop30" /></linearGradient><path | |
| 108 | + style="fill:url(#SVGID_3_);fill-rule:evenodd" | |
| 109 | + d="m 272.039,397.952 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.788 5.787,-5.788 h 19.809 c 3.191,0 5.787,2.596 5.787,5.788 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 110 | + id="path32" | |
| 111 | + inkscape:connector-curvature="0" /><path | |
| 112 | + style="fill:#ce3737" | |
| 113 | + d="m 291.847,367.069 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.814,-6.287 -6.287,-6.287 l 0,0 z" | |
| 114 | + id="path34" | |
| 115 | + inkscape:connector-curvature="0" /></g><g | |
| 116 | + id="g36" | |
| 117 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 118 | + id="SVGID_4_" | |
| 119 | + gradientUnits="userSpaceOnUse" | |
| 120 | + x1="317.79349" | |
| 121 | + y1="365.71552" | |
| 122 | + x2="317.79349" | |
| 123 | + y2="468.46078"><stop | |
| 124 | + offset="0.0061" | |
| 125 | + style="stop-color:#EE4748" | |
| 126 | + id="stop39" /><stop | |
| 127 | + offset="1" | |
| 128 | + style="stop-color:#E33C3B" | |
| 129 | + id="stop41" /></linearGradient><path | |
| 130 | + style="fill:url(#SVGID_4_);fill-rule:evenodd" | |
| 131 | + d="m 307.889,397.952 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.788 5.787,-5.788 h 19.809 c 3.191,0 5.788,2.596 5.788,5.788 v 19.809 c 0,3.191 -2.597,5.787 -5.788,5.787 h -19.809 z" | |
| 132 | + id="path43" | |
| 133 | + inkscape:connector-curvature="0" /><path | |
| 134 | + style="fill:#ce3737" | |
| 135 | + d="m 327.698,367.069 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z" | |
| 136 | + id="path45" | |
| 137 | + inkscape:connector-curvature="0" /></g><g | |
| 138 | + id="g47" | |
| 139 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 140 | + id="SVGID_5_" | |
| 141 | + gradientUnits="userSpaceOnUse" | |
| 142 | + x1="354.01559" | |
| 143 | + y1="365.71552" | |
| 144 | + x2="354.01559" | |
| 145 | + y2="468.46078"><stop | |
| 146 | + offset="0.0061" | |
| 147 | + style="stop-color:#EE4748" | |
| 148 | + id="stop50" /><stop | |
| 149 | + offset="1" | |
| 150 | + style="stop-color:#E33C3B" | |
| 151 | + id="stop52" /></linearGradient><path | |
| 152 | + style="fill:url(#SVGID_5_);fill-rule:evenodd" | |
| 153 | + d="m 344.111,397.952 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.788 5.787,-5.788 h 19.809 c 3.191,0 5.787,2.596 5.787,5.788 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 154 | + id="path54" | |
| 155 | + inkscape:connector-curvature="0" /><path | |
| 156 | + style="fill:#ce3737" | |
| 157 | + d="m 363.92,367.069 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z" | |
| 158 | + id="path56" | |
| 159 | + inkscape:connector-curvature="0" /></g><g | |
| 160 | + id="g58" | |
| 161 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 162 | + id="SVGID_6_" | |
| 163 | + gradientUnits="userSpaceOnUse" | |
| 164 | + x1="245.7205" | |
| 165 | + y1="366.86359" | |
| 166 | + x2="245.7205" | |
| 167 | + y2="469.60889"><stop | |
| 168 | + offset="0.0061" | |
| 169 | + style="stop-color:#EE4748" | |
| 170 | + id="stop61" /><stop | |
| 171 | + offset="1" | |
| 172 | + style="stop-color:#E33C3B" | |
| 173 | + id="stop63" /></linearGradient><path | |
| 174 | + style="fill:url(#SVGID_6_);fill-rule:evenodd" | |
| 175 | + d="m 235.816,435.128 c -3.191,0 -5.788,-2.596 -5.788,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.788,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 176 | + id="path65" | |
| 177 | + inkscape:connector-curvature="0" /><path | |
| 178 | + style="fill:#ce3737" | |
| 179 | + d="m 255.625,404.244 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z" | |
| 180 | + id="path67" | |
| 181 | + inkscape:connector-curvature="0" /></g><g | |
| 182 | + id="g69" | |
| 183 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 184 | + id="SVGID_7_" | |
| 185 | + gradientUnits="userSpaceOnUse" | |
| 186 | + x1="281.9429" | |
| 187 | + y1="366.86359" | |
| 188 | + x2="281.9429" | |
| 189 | + y2="469.60889"><stop | |
| 190 | + offset="0.0061" | |
| 191 | + style="stop-color:#EE4748" | |
| 192 | + id="stop72" /><stop | |
| 193 | + offset="1" | |
| 194 | + style="stop-color:#E33C3B" | |
| 195 | + id="stop74" /></linearGradient><path | |
| 196 | + style="fill:url(#SVGID_7_);fill-rule:evenodd" | |
| 197 | + d="m 272.039,435.128 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 198 | + id="path76" | |
| 199 | + inkscape:connector-curvature="0" /><path | |
| 200 | + style="fill:#ce3737" | |
| 201 | + d="m 291.847,404.244 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.814,-6.287 -6.287,-6.287 l 0,0 z" | |
| 202 | + id="path78" | |
| 203 | + inkscape:connector-curvature="0" /></g><g | |
| 204 | + id="g80" | |
| 205 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 206 | + id="SVGID_8_" | |
| 207 | + gradientUnits="userSpaceOnUse" | |
| 208 | + x1="317.79349" | |
| 209 | + y1="366.85529" | |
| 210 | + x2="317.79349" | |
| 211 | + y2="469.599"><stop | |
| 212 | + offset="0.0061" | |
| 213 | + style="stop-color:#EE4748" | |
| 214 | + id="stop83" /><stop | |
| 215 | + offset="1" | |
| 216 | + style="stop-color:#E33C3B" | |
| 217 | + id="stop85" /></linearGradient><path | |
| 218 | + style="fill:url(#SVGID_8_);fill-rule:evenodd" | |
| 219 | + d="m 307.889,434.837 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.788,2.596 5.788,5.787 v 19.809 c 0,3.191 -2.597,5.787 -5.788,5.787 h -19.809 z" | |
| 220 | + id="path87" | |
| 221 | + inkscape:connector-curvature="0" /><path | |
| 222 | + style="fill:#ce3737" | |
| 223 | + d="m 327.698,403.954 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z" | |
| 224 | + id="path89" | |
| 225 | + inkscape:connector-curvature="0" /></g><g | |
| 226 | + id="g91" | |
| 227 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 228 | + id="SVGID_9_" | |
| 229 | + gradientUnits="userSpaceOnUse" | |
| 230 | + x1="354.01559" | |
| 231 | + y1="366.85529" | |
| 232 | + x2="354.01559" | |
| 233 | + y2="469.599"><stop | |
| 234 | + offset="0.0061" | |
| 235 | + style="stop-color:#EE4748" | |
| 236 | + id="stop94" /><stop | |
| 237 | + offset="1" | |
| 238 | + style="stop-color:#E33C3B" | |
| 239 | + id="stop96" /></linearGradient><path | |
| 240 | + style="fill:url(#SVGID_9_);fill-rule:evenodd" | |
| 241 | + d="m 344.111,434.837 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 242 | + id="path98" | |
| 243 | + inkscape:connector-curvature="0" /><path | |
| 244 | + style="fill:#ce3737" | |
| 245 | + d="m 363.92,403.954 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z" | |
| 246 | + id="path100" | |
| 247 | + inkscape:connector-curvature="0" /></g><g | |
| 248 | + id="g102" | |
| 249 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 250 | + id="SVGID_10_" | |
| 251 | + gradientUnits="userSpaceOnUse" | |
| 252 | + x1="245.7205" | |
| 253 | + y1="367.98279" | |
| 254 | + x2="245.7205" | |
| 255 | + y2="470.72681"><stop | |
| 256 | + offset="0.0061" | |
| 257 | + style="stop-color:#EE4748" | |
| 258 | + id="stop105" /><stop | |
| 259 | + offset="1" | |
| 260 | + style="stop-color:#E33C3B" | |
| 261 | + id="stop107" /></linearGradient><path | |
| 262 | + style="fill:url(#SVGID_10_);fill-rule:evenodd" | |
| 263 | + d="m 235.816,471.35 c -3.191,0 -5.788,-2.596 -5.788,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.788,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 264 | + id="path109" | |
| 265 | + inkscape:connector-curvature="0" /><path | |
| 266 | + style="fill:#ce3737" | |
| 267 | + d="m 255.625,440.467 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z" | |
| 268 | + id="path111" | |
| 269 | + inkscape:connector-curvature="0" /></g><g | |
| 270 | + id="g113" | |
| 271 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 272 | + id="SVGID_11_" | |
| 273 | + gradientUnits="userSpaceOnUse" | |
| 274 | + x1="281.9429" | |
| 275 | + y1="367.98279" | |
| 276 | + x2="281.9429" | |
| 277 | + y2="470.72681"><stop | |
| 278 | + offset="0.0061" | |
| 279 | + style="stop-color:#EE4748" | |
| 280 | + id="stop116" /><stop | |
| 281 | + offset="1" | |
| 282 | + style="stop-color:#E33C3B" | |
| 283 | + id="stop118" /></linearGradient><path | |
| 284 | + style="fill:url(#SVGID_11_);fill-rule:evenodd" | |
| 285 | + d="m 272.039,471.35 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 286 | + id="path120" | |
| 287 | + inkscape:connector-curvature="0" /><path | |
| 288 | + style="fill:#ce3737" | |
| 289 | + d="m 291.847,440.467 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.814,-6.287 -6.287,-6.287 l 0,0 z" | |
| 290 | + id="path122" | |
| 291 | + inkscape:connector-curvature="0" /></g><g | |
| 292 | + id="g124" | |
| 293 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 294 | + id="SVGID_12_" | |
| 295 | + gradientUnits="userSpaceOnUse" | |
| 296 | + x1="317.79349" | |
| 297 | + y1="367.98279" | |
| 298 | + x2="317.79349" | |
| 299 | + y2="470.72681"><stop | |
| 300 | + offset="0.0061" | |
| 301 | + style="stop-color:#EE4748" | |
| 302 | + id="stop127" /><stop | |
| 303 | + offset="1" | |
| 304 | + style="stop-color:#E33C3B" | |
| 305 | + id="stop129" /></linearGradient><path | |
| 306 | + style="fill:url(#SVGID_12_);fill-rule:evenodd" | |
| 307 | + d="m 307.889,471.35 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.788,2.596 5.788,5.787 v 19.809 c 0,3.191 -2.597,5.787 -5.788,5.787 h -19.809 z" | |
| 308 | + id="path131" | |
| 309 | + inkscape:connector-curvature="0" /><path | |
| 310 | + style="fill:#ce3737" | |
| 311 | + d="m 327.698,440.467 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z" | |
| 312 | + id="path133" | |
| 313 | + inkscape:connector-curvature="0" /></g><g | |
| 314 | + id="g135" | |
| 315 | + transform="translate(-198.86801,-322.477)"><linearGradient | |
| 316 | + id="SVGID_13_" | |
| 317 | + gradientUnits="userSpaceOnUse" | |
| 318 | + x1="354.01559" | |
| 319 | + y1="367.98279" | |
| 320 | + x2="354.01559" | |
| 321 | + y2="470.72681"><stop | |
| 322 | + offset="0.0061" | |
| 323 | + style="stop-color:#EE4748" | |
| 324 | + id="stop138" /><stop | |
| 325 | + offset="1" | |
| 326 | + style="stop-color:#E33C3B" | |
| 327 | + id="stop140" /></linearGradient><path | |
| 328 | + style="fill:url(#SVGID_13_);fill-rule:evenodd" | |
| 329 | + d="m 344.111,471.35 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z" | |
| 330 | + id="path142" | |
| 331 | + inkscape:connector-curvature="0" /><path | |
| 332 | + style="fill:#ce3737" | |
| 333 | + d="m 363.92,440.467 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z" | |
| 334 | + id="path144" | |
| 335 | + inkscape:connector-curvature="0" /></g><path | |
| 336 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 337 | + d="m 56.756991,75.017 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.26011,-0.22453 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z" | |
| 338 | + id="path146" | |
| 339 | + inkscape:connector-curvature="0" | |
| 340 | + sodipodi:nodetypes="sscssccs" /><path | |
| 341 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 342 | + d="m 92.978991,75.017 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.14863,0.10991 6.287,-3.99363 6.287,-8.082 0,3.472 -2.814,6.287 -6.287,6.287 z" | |
| 343 | + id="path148" | |
| 344 | + inkscape:connector-curvature="0" | |
| 345 | + sodipodi:nodetypes="sscssccs" /><path | |
| 346 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 347 | + d="m 128.82999,74.915 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.03715,-0.11305 6.287,-3.993628 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z" | |
| 348 | + id="path150" | |
| 349 | + inkscape:connector-curvature="0" | |
| 350 | + sodipodi:nodetypes="sscssccs" /><path | |
| 351 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 352 | + d="m 165.05199,74.915 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.03715,-0.0016 6.287,-3.993628 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z" | |
| 353 | + id="path152" | |
| 354 | + inkscape:connector-curvature="0" | |
| 355 | + sodipodi:nodetypes="sscssccs" /><path | |
| 356 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 357 | + d="m 56.756991,112.192 h -19.809 c -3.472,0 -6.287,-2.815 -6.287,-6.287 v 1.795 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -1.795 c 0,3.473 -2.815,6.287 -6.287,6.287 z" | |
| 358 | + id="path154" | |
| 359 | + inkscape:connector-curvature="0" /><path | |
| 360 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 361 | + d="m 92.978991,112.192 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.14863,-0.002 6.287,-3.99363 6.287,-8.082 0,3.473 -2.814,6.287 -6.287,6.287 z" | |
| 362 | + id="path156" | |
| 363 | + inkscape:connector-curvature="0" | |
| 364 | + sodipodi:nodetypes="sscssccs" /><path | |
| 365 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 366 | + d="m 128.82999,111.902 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.03715,-0.11305 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z" | |
| 367 | + id="path158" | |
| 368 | + inkscape:connector-curvature="0" | |
| 369 | + sodipodi:nodetypes="sscssccs" /><path | |
| 370 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 371 | + d="m 165.05199,111.902 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.03715,-0.002 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z" | |
| 372 | + id="path160" | |
| 373 | + inkscape:connector-curvature="0" | |
| 374 | + sodipodi:nodetypes="sscssccs" /><path | |
| 375 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 376 | + d="m 56.756991,148.415 h -19.809 c -3.472,0 -6.287,-2.815 -6.287,-6.287 v 1.795 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -1.795 c 0,3.472 -2.815,6.287 -6.287,6.287 z" | |
| 377 | + id="path162" | |
| 378 | + inkscape:connector-curvature="0" /><path | |
| 379 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 380 | + d="m 92.978991,148.415 h -19.809 c -3.472,0 -6.287,-2.815 -6.287,-6.287 v 1.795 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -1.795 c 0,3.472 -2.814,6.287 -6.287,6.287 z" | |
| 381 | + id="path164" | |
| 382 | + inkscape:connector-curvature="0" /><path | |
| 383 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 384 | + d="m 128.82999,148.415 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.26011,0.10991 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z" | |
| 385 | + id="path166" | |
| 386 | + inkscape:connector-curvature="0" | |
| 387 | + sodipodi:nodetypes="sscssccs" /><path | |
| 388 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 389 | + d="m 165.05199,148.415 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.37159,0.10991 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z" | |
| 390 | + id="path168" | |
| 391 | + inkscape:connector-curvature="0" | |
| 392 | + sodipodi:nodetypes="sscssccs" /><path | |
| 393 | + style="fill:#c02829;fill-rule:evenodd" | |
| 394 | + d="m 145.24299,118.785 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.47975,0.11305 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 395 | + id="path170" | |
| 396 | + inkscape:connector-curvature="0" | |
| 397 | + sodipodi:nodetypes="sscssccs" /><path | |
| 398 | + style="fill:#c02829;fill-rule:evenodd" | |
| 399 | + d="m 109.02099,118.785 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -5.14863,0.11305 -6.39848,3.21328 -6.287,8.082 0.66887,-3.24904 2.815,-6.287 6.287,-6.287 z" | |
| 400 | + id="path172" | |
| 401 | + inkscape:connector-curvature="0" | |
| 402 | + sodipodi:nodetypes="sscssccs" /><path | |
| 403 | + style="fill:#c02829;fill-rule:evenodd" | |
| 404 | + d="m 73.169991,118.887 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -5.037149,0.002 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 405 | + id="path174" | |
| 406 | + inkscape:connector-curvature="0" | |
| 407 | + sodipodi:nodetypes="sscssccs" /><path | |
| 408 | + style="fill:#c02829;fill-rule:evenodd" | |
| 409 | + d="m 36.947991,118.887 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.59123,0.11305 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 410 | + id="path176" | |
| 411 | + inkscape:connector-curvature="0" | |
| 412 | + sodipodi:nodetypes="sscssccs" /><path | |
| 413 | + style="fill:#c02829;fill-rule:evenodd" | |
| 414 | + d="m 145.24299,81.609 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 0.17873,-4.285788 -2.33849,-8.090395 -6.287,-8.082 l -19.809,0 c -5.37159,0.0016 -6.287,3.993628 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 415 | + id="path178" | |
| 416 | + inkscape:connector-curvature="0" | |
| 417 | + sodipodi:nodetypes="ssccccs" /><path | |
| 418 | + style="fill:#c02829;fill-rule:evenodd" | |
| 419 | + d="m 109.02099,81.609 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.92567,0.002 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 420 | + id="path180" | |
| 421 | + inkscape:connector-curvature="0" | |
| 422 | + sodipodi:nodetypes="sscssccs" /><path | |
| 423 | + style="fill:#c02829;fill-rule:evenodd" | |
| 424 | + d="m 73.169991,81.9 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.81419,0.22453 -6.287,3.99363 -6.287,8.082 1.114791,-3.583479 2.815,-6.287 6.287,-6.287 z" | |
| 425 | + id="path182" | |
| 426 | + inkscape:connector-curvature="0" | |
| 427 | + sodipodi:nodetypes="sscssccs" /><path | |
| 428 | + style="fill:#c02829;fill-rule:evenodd" | |
| 429 | + d="m 36.947991,81.9 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.92567,0.11305 -6.287,3.993628 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 430 | + id="path184" | |
| 431 | + inkscape:connector-curvature="0" | |
| 432 | + sodipodi:nodetypes="sscssccs" /><path | |
| 433 | + style="fill:#c02829;fill-rule:evenodd" | |
| 434 | + d="m 145.24299,45.387 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.81419,0.002 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 435 | + id="path186" | |
| 436 | + inkscape:connector-curvature="0" | |
| 437 | + sodipodi:nodetypes="sscssccs" /><path | |
| 438 | + style="fill:#c02829;fill-rule:evenodd" | |
| 439 | + d="m 109.02099,45.387 19.809,0 c 6.54822,0.694817 6.287,9.093427 6.287,4.492 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -5.48307,0.0016 -6.287,3.993628 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 440 | + id="path188" | |
| 441 | + inkscape:connector-curvature="0" | |
| 442 | + sodipodi:nodetypes="sccsccs" /><path | |
| 443 | + style="fill:#c02829;fill-rule:evenodd" | |
| 444 | + d="m 73.169991,45.387 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -5.37159,0.11305 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 445 | + id="path190" | |
| 446 | + inkscape:connector-curvature="0" | |
| 447 | + sodipodi:nodetypes="sscssccs" /><path | |
| 448 | + style="fill:#c02829;fill-rule:evenodd" | |
| 449 | + d="m 36.947991,45.387 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.81419,0.22453 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z" | |
| 450 | + id="path192" | |
| 451 | + inkscape:connector-curvature="0" | |
| 452 | + sodipodi:nodetypes="sscssccs" /></svg> | |
| 0 | 453 | \ No newline at end of file | ... | ... |
resources/images/World.svg
0 → 100755
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |
| 3 | + | |
| 4 | +<svg | |
| 5 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| 6 | + xmlns:cc="http://creativecommons.org/ns#" | |
| 7 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| 8 | + xmlns:svg="http://www.w3.org/2000/svg" | |
| 9 | + xmlns="http://www.w3.org/2000/svg" | |
| 10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| 11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| 12 | + version="1.1" | |
| 13 | + id="Layer_1" | |
| 14 | + x="0px" | |
| 15 | + y="0px" | |
| 16 | + viewBox="0 0 195.687 195.688" | |
| 17 | + xml:space="preserve" | |
| 18 | + inkscape:version="0.48.4 r9939" | |
| 19 | + width="100%" | |
| 20 | + height="100%" | |
| 21 | + sodipodi:docname="World.svg"><metadata | |
| 22 | + id="metadata129"><rdf:RDF><cc:Work | |
| 23 | + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | |
| 24 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs | |
| 25 | + id="defs127" /><sodipodi:namedview | |
| 26 | + pagecolor="#ffffff" | |
| 27 | + bordercolor="#666666" | |
| 28 | + borderopacity="1" | |
| 29 | + objecttolerance="10" | |
| 30 | + gridtolerance="10" | |
| 31 | + guidetolerance="10" | |
| 32 | + inkscape:pageopacity="0" | |
| 33 | + inkscape:pageshadow="2" | |
| 34 | + inkscape:window-width="1199" | |
| 35 | + inkscape:window-height="896" | |
| 36 | + id="namedview125" | |
| 37 | + showgrid="false" | |
| 38 | + inkscape:zoom="6.342955" | |
| 39 | + inkscape:cx="97.837987" | |
| 40 | + inkscape:cy="98.236009" | |
| 41 | + inkscape:window-x="75" | |
| 42 | + inkscape:window-y="34" | |
| 43 | + inkscape:window-maximized="0" | |
| 44 | + inkscape:current-layer="Layer_1" | |
| 45 | + fit-margin-top="0" | |
| 46 | + fit-margin-left="0" | |
| 47 | + fit-margin-right="0" | |
| 48 | + fit-margin-bottom="0" /><g | |
| 49 | + id="g3" | |
| 50 | + transform="translate(-199.80201,-323.493)"><linearGradient | |
| 51 | + id="SVGID_1_" | |
| 52 | + gradientUnits="userSpaceOnUse" | |
| 53 | + x1="297.64529" | |
| 54 | + y1="324.43469" | |
| 55 | + x2="297.64529" | |
| 56 | + y2="518.20172"><stop | |
| 57 | + offset="0" | |
| 58 | + style="stop-color:#FFFFFF;stop-opacity:0.7" | |
| 59 | + id="stop6" /><stop | |
| 60 | + offset="0.9987" | |
| 61 | + style="stop-color:#D8D9D8;stop-opacity:0.7" | |
| 62 | + id="stop8" /></linearGradient><path | |
| 63 | + style="fill:url(#SVGID_1_);fill-rule:evenodd" | |
| 64 | + d="m 209.425,518.681 c -5.031,0 -9.124,-4.093 -9.124,-9.124 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.44 c 5.031,0 9.124,4.093 9.124,9.124 v 176.44 c 0,5.031 -4.093,9.124 -9.124,9.124 h -176.44 z" | |
| 65 | + id="path10" | |
| 66 | + inkscape:connector-curvature="0" /><path | |
| 67 | + style="fill:#d8d8d7" | |
| 68 | + d="m 385.865,324.493 c 4.755,0 8.623,3.868 8.623,8.624 v 176.441 c 0,4.755 -3.868,8.623 -8.623,8.623 h -176.44 c -4.755,0 -8.623,-3.868 -8.623,-8.623 V 333.116 c 0,-4.755 3.868,-8.624 8.623,-8.624 h 176.44 m 0,-0.999 h -176.44 c -5.315,0 -9.623,4.309 -9.623,9.624 v 176.441 c 0,5.315 4.309,9.623 9.623,9.623 h 176.441 c 5.315,0 9.623,-4.309 9.623,-9.623 V 333.116 c 0,-5.315 -4.309,-9.623 -9.624,-9.623 l 0,0 z" | |
| 69 | + id="path12" | |
| 70 | + inkscape:connector-curvature="0" /></g><g | |
| 71 | + id="g14" | |
| 72 | + transform="translate(-199.80201,-323.493)"><linearGradient | |
| 73 | + id="SVGID_2_" | |
| 74 | + gradientUnits="userSpaceOnUse" | |
| 75 | + x1="295.34409" | |
| 76 | + y1="366.51251" | |
| 77 | + x2="295.34409" | |
| 78 | + y2="477.05319"><stop | |
| 79 | + offset="0" | |
| 80 | + style="stop-color:#537FAF" | |
| 81 | + id="stop17" /><stop | |
| 82 | + offset="1" | |
| 83 | + style="stop-color:#436997" | |
| 84 | + id="stop19" /></linearGradient><path | |
| 85 | + style="fill:url(#SVGID_2_);fill-rule:evenodd" | |
| 86 | + d="m 295.344,365.432 c 30.647,0 55.492,24.845 55.492,55.492 0,30.647 -24.845,55.492 -55.492,55.492 -30.647,0 -55.492,-24.845 -55.492,-55.492 0,-30.647 24.845,-55.492 55.492,-55.492 z" | |
| 87 | + id="path21" | |
| 88 | + inkscape:connector-curvature="0" /></g><g | |
| 89 | + id="g23" | |
| 90 | + transform="translate(-199.80201,-323.493)"><path | |
| 91 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 92 | + d="m 336.697,448.9 c -1.4466,-17.74544 -6.79574,8.99663 -17.693,-19.639 -0.105,-0.613 -0.158,-1.2 -0.187,-1.775 -0.053,0.99 -0.003,2.033 0.187,3.145 8.478,23.495 15.228,8.439 17.693,18.269 z" | |
| 93 | + id="path25" | |
| 94 | + inkscape:connector-curvature="0" | |
| 95 | + sodipodi:nodetypes="ccccc" /><path | |
| 96 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 97 | + d="m 322.35931,469.75845 c 11.4669,-11.09759 23.42214,-27.18821 22.63386,-47.49545 -0.009,-0.23982 5.82483,-0.446 5.82183,-0.686 0.33349,21.63904 -14.73709,38.28161 -28.45569,48.18145 z" | |
| 98 | + id="path27" | |
| 99 | + inkscape:connector-curvature="0" | |
| 100 | + sodipodi:nodetypes="cscc" /></g><path | |
| 101 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 102 | + d="m 142.99999,70.832 c -0.788,3.617 -1.577,7.235 -2.365,10.852 -4.961,-1.349 -8.753,1.731 -13.289,3.095 -0.653,-2.785 -1.305,-5.572 -1.958,-8.357 -0.113,-0.024 -0.223,-0.043 -0.338,-0.074 0.765,3.266 1.531,6.534 2.296,9.801 4.537,-1.363 8.328,-4.444 13.289,-3.095 0.788,-3.617 1.577,-7.235 2.365,-10.852 0.387,-0.052 0.774,-0.104 1.161,-0.156 -0.238,-0.431 -0.502,-0.844 -0.75,-1.268 -0.137,0.017 -0.274,0.035 -0.411,0.054 z" | |
| 103 | + id="path29" | |
| 104 | + inkscape:connector-curvature="0" /><g | |
| 105 | + id="g31" | |
| 106 | + transform="translate(-199.80201,-323.493)"><path | |
| 107 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 108 | + d="m 329.068,380.749 c -0.243,-1.017 -0.486,-2.033 -0.729,-3.05 -0.135,-0.1 -0.264,-0.207 -0.4,-0.306 0.303,1.267 0.606,2.535 0.909,3.802 0.072,-0.148 0.146,-0.297 0.22,-0.446 z" | |
| 109 | + id="path33" | |
| 110 | + inkscape:connector-curvature="0" /><path | |
| 111 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 112 | + d="m 327.22,389.512 c -0.489,-0.227 -0.978,-0.455 -1.468,-0.682 -0.183,0.371 -0.367,0.742 -0.55,1.114 0.673,0.313 1.345,0.625 2.018,0.938 3.634,-0.915 5.053,-5.373 4.871,-9.558 -0.155,3.741 -1.633,7.372 -4.871,8.188 z" | |
| 113 | + id="path35" | |
| 114 | + inkscape:connector-curvature="0" /></g><path | |
| 115 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 116 | + d="m 123.30399,61.978 c -0.543,-0.236 -1.087,-0.471 -1.63,-0.707 -0.179,0.379 -0.358,0.758 -0.537,1.136 0.722,0.313 1.445,0.627 2.167,0.94 0.365,-1.137 0.73,-2.275 1.095,-3.413 -0.129,-0.055 -0.257,-0.111 -0.386,-0.166 -0.236,0.737 -0.473,1.474 -0.709,2.21 z" | |
| 117 | + id="path37" | |
| 118 | + inkscape:connector-curvature="0" /><g | |
| 119 | + id="g39" | |
| 120 | + transform="translate(-199.80201,-323.493)"><path | |
| 121 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 122 | + d="m 272.087,393.816 c 0.93,-5.339 1.861,-10.68 2.792,-16.019 -0.025,-0.167 -0.072,-0.388 -0.129,-0.63 -0.93,5.334 -1.859,10.669 -2.789,16.003 0.037,0.217 0.085,0.431 0.126,0.646 z" | |
| 123 | + id="path41" | |
| 124 | + inkscape:connector-curvature="0" /><path | |
| 125 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 126 | + d="m 260.998,417.547 c 0,0.424 0.044,0.842 0.117,1.256 0.455,-0.442 0.911,-0.885 1.366,-1.327 1.956,0 13.993,0.484 15.897,1.198 0,-0.465 -0.021,-0.926 -0.05,-1.385 -2.041,-0.705 -13.906,-1.182 -15.847,-1.182 -0.495,0.479 -0.989,0.96 -1.483,1.44 z" | |
| 127 | + id="path43" | |
| 128 | + inkscape:connector-curvature="0" /><path | |
| 129 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 130 | + d="m 271.142,443.257 c -0.062,0.322 -0.109,0.664 -0.134,1.038 5.203,13.429 12.196,14.9 12.423,28.805 0.219,-15.067 -6.933,-16.306 -12.289,-29.843 z" | |
| 131 | + id="path45" | |
| 132 | + inkscape:connector-curvature="0" /><path | |
| 133 | + style="fill:#3d5e86;fill-rule:evenodd" | |
| 134 | + d="m 276.572,434.507 c -0.064,-0.093 -8.841,-3.054 -12.462,-5.359 -7.139,-4.544 -14.035,-13.956 -20.542,-26.81 -0.1,0.258 -0.211,0.51 -0.306,0.77 6.597,13.166 13.598,22.794 20.849,27.409 3.571,2.273 12.138,5.178 12.438,5.348 0.136,-0.364 0.169,-0.795 0.023,-1.358 z" | |
| 135 | + id="path49" | |
| 136 | + inkscape:connector-curvature="0" /></g><g | |
| 137 | + id="g51" | |
| 138 | + transform="translate(-217.32904,-322.54707)"><linearGradient | |
| 139 | + id="SVGID_3_" | |
| 140 | + gradientUnits="userSpaceOnUse" | |
| 141 | + x1="334.81161" | |
| 142 | + y1="368.34589" | |
| 143 | + x2="334.81161" | |
| 144 | + y2="475.01251" | |
| 145 | + gradientTransform="translate(17.527034,-0.89641334)"><stop | |
| 146 | + offset="0" | |
| 147 | + style="stop-color:#D1DBE8" | |
| 148 | + id="stop54" /><stop | |
| 149 | + offset="1" | |
| 150 | + style="stop-color:#C4CDDC" | |
| 151 | + id="stop56" /></linearGradient><path | |
| 152 | + style="fill:url(#SVGID_3_);fill-rule:evenodd" | |
| 153 | + d="m 368.20538,422.0761 c 0,-4.224 -0.33035,-10.38051 -1.22335,-14.33451 -9.023,1.521 -33.199,4.524 -30.451,20.622 8.53,23.641 15.312,8.248 17.739,18.45 0.38,4.725 -6.01,12.864 -10.126,19.052 14.62,-9.993 24.06135,-24.74349 24.06135,-43.78949 z" | |
| 154 | + id="path58" | |
| 155 | + inkscape:connector-curvature="0" | |
| 156 | + sodipodi:nodetypes="sccccs" /></g><g | |
| 157 | + id="g60" | |
| 158 | + transform="translate(-199.80201,-323.493)"><linearGradient | |
| 159 | + id="SVGID_4_" | |
| 160 | + gradientUnits="userSpaceOnUse" | |
| 161 | + x1="334.4075" | |
| 162 | + y1="368.34589" | |
| 163 | + x2="334.4075" | |
| 164 | + y2="475.01251"><stop | |
| 165 | + offset="0" | |
| 166 | + style="stop-color:#D1DBE8" | |
| 167 | + id="stop63" /><stop | |
| 168 | + offset="1" | |
| 169 | + style="stop-color:#C4CDDC" | |
| 170 | + id="stop65" /></linearGradient><path | |
| 171 | + style="fill:url(#SVGID_4_);fill-rule:evenodd" | |
| 172 | + d="m 340.438,405.177 c 0.788,-3.617 1.577,-7.235 2.365,-10.852 0.387,-0.052 0.774,-0.104 1.161,-0.156 -2.168,-3.931 -4.798,-7.569 -7.818,-10.845 -1.648,5.677 -4.173,17.083 -11.293,15.147 0.765,3.266 1.531,6.534 2.296,9.801 4.536,-1.364 8.327,-4.444 13.289,-3.095 z" | |
| 173 | + id="path67" | |
| 174 | + inkscape:connector-curvature="0" /></g><g | |
| 175 | + id="g69" | |
| 176 | + transform="translate(-199.80201,-323.493)"><linearGradient | |
| 177 | + id="SVGID_5_" | |
| 178 | + gradientUnits="userSpaceOnUse" | |
| 179 | + x1="328.65619" | |
| 180 | + y1="368.34589" | |
| 181 | + x2="328.65619" | |
| 182 | + y2="475.01251"><stop | |
| 183 | + offset="0" | |
| 184 | + style="stop-color:#D1DBE8" | |
| 185 | + id="stop72" /><stop | |
| 186 | + offset="1" | |
| 187 | + style="stop-color:#C4CDDC" | |
| 188 | + id="stop74" /></linearGradient><path | |
| 189 | + style="fill:url(#SVGID_5_);fill-rule:evenodd" | |
| 190 | + d="m 329.068,380.749 c -1.288,2.608 -2.577,5.217 -3.865,7.824 0.673,0.313 1.345,0.625 2.018,0.938 3.816,-0.96 5.194,-5.829 4.836,-10.184 -1.319,-1.165 -2.692,-2.267 -4.118,-3.304 0.376,1.576 0.752,3.151 1.129,4.726 z" | |
| 191 | + id="path76" | |
| 192 | + inkscape:connector-curvature="0" /></g><linearGradient | |
| 193 | + id="SVGID_6_" | |
| 194 | + gradientUnits="userSpaceOnUse" | |
| 195 | + x1="322.56961" | |
| 196 | + y1="368.34589" | |
| 197 | + x2="322.56961" | |
| 198 | + y2="475.01251" | |
| 199 | + gradientTransform="translate(-199.80201,-323.493)"><stop | |
| 200 | + offset="0" | |
| 201 | + style="stop-color:#D1DBE8" | |
| 202 | + id="stop79" /><stop | |
| 203 | + offset="1" | |
| 204 | + style="stop-color:#C4CDDC" | |
| 205 | + id="stop81" /></linearGradient><path | |
| 206 | + style="fill:url(#SVGID_6_);fill-rule:evenodd" | |
| 207 | + d="m 122.55399,58.04 c -0.472,1 -0.945,1.999 -1.417,2.999 0.722,0.313 1.445,0.627 2.168,0.94 0.365,-1.137 0.73,-2.275 1.095,-3.413 -0.603,-0.26 -1.206,-0.52 -1.809,-0.78 -0.013,0.084 -0.025,0.169 -0.037,0.254 z" | |
| 208 | + id="path83" | |
| 209 | + inkscape:connector-curvature="0" /><g | |
| 210 | + id="g85" | |
| 211 | + transform="translate(-199.80201,-323.493)"><linearGradient | |
| 212 | + id="SVGID_7_" | |
| 213 | + gradientUnits="userSpaceOnUse" | |
| 214 | + x1="272.83749" | |
| 215 | + y1="368.69739" | |
| 216 | + x2="272.83749" | |
| 217 | + y2="474.75171"><stop | |
| 218 | + offset="0" | |
| 219 | + style="stop-color:#D1DBE8" | |
| 220 | + id="stop88" /><stop | |
| 221 | + offset="1" | |
| 222 | + style="stop-color:#C4CDDC" | |
| 223 | + id="stop90" /></linearGradient><path | |
| 224 | + style="fill:url(#SVGID_7_);fill-rule:evenodd" | |
| 225 | + d="m 289.565,475.865 c -1.934,-0.202 -3.929,-0.524 -5.938,-0.96 0.533,-10.776 -2.327,-14.988 -5.941,-20.313 -2.057,-3.029 -4.387,-6.462 -6.424,-11.704 0.232,-3.271 1.997,-4.275 3.555,-5.163 1.275,-0.727 2.479,-1.413 1.998,-3.28 -0.096,-0.164 -0.096,-0.164 -1.222,-0.578 -2.546,-0.935 -8.511,-3.123 -11.348,-4.93 -6.877,-4.377 -13.845,-13.534 -20.711,-27.213 5.141,-13.864 15.829,-25.245 29.361,-31.274 0.786,2.477 1.591,5.021 1.737,6.015 l -1.458,8.292 -1.458,8.372 c 0.583,3.561 1.838,6.961 3.052,10.25 1.614,4.371 3.281,8.887 3.357,13.59 -2.776,-0.693 -14.013,-1.111 -15.644,-1.111 h -0.102 l -1.631,1.585 v 0.105 c 0,6.491 8.881,11.957 14.996,12.867 0.383,0.058 0.781,0.086 1.182,0.086 1.528,0 3.001,-0.416 4.425,-0.817 1.436,-0.405 2.92,-0.824 4.474,-0.824 0.413,0 0.824,0.03 1.22,0.089 13.326,1.986 15.562,6.703 15.026,14.712 -2.567,9.616 -8.209,22.441 -11.942,30.928 l -0.564,1.276 z" | |
| 226 | + id="path92" | |
| 227 | + inkscape:connector-curvature="0" /><path | |
| 228 | + style="fill:#f5fbfd" | |
| 229 | + d="m 272.741,370.792 c 0.736,2.319 1.466,4.644 1.632,5.632 l -2.904,16.661 -0.015,0.084 0.014,0.084 c 0.587,3.499 1.847,6.911 3.065,10.21 1.57,4.253 3.191,8.644 3.335,13.193 -3.276,-0.657 -13.81,-1.05 -15.387,-1.05 h -0.203 l -0.146,0.141 -0.837,0.813 -0.646,0.627 -0.152,0.147 v 0.211 c 0,4.531 5.786,11.712 15.208,13.115 0.395,0.059 0.806,0.089 1.22,0.089 1.563,0 3.053,-0.42 4.493,-0.827 1.419,-0.4 2.886,-0.814 4.405,-0.814 0.401,0 0.799,0.029 1.183,0.086 6.37,0.949 10.356,2.524 12.543,4.956 1.889,2.101 2.57,4.926 2.274,9.443 -2.575,9.637 -8.198,22.421 -11.921,30.884 l -0.492,1.119 c -1.796,-0.194 -3.65,-0.493 -5.523,-0.892 0.49,-10.702 -2.377,-14.926 -5.995,-20.255 -2.042,-3.008 -4.355,-6.415 -6.378,-11.602 0.24,-3.093 1.931,-4.057 3.425,-4.908 1.301,-0.741 2.646,-1.507 2.116,-3.56 l -0.022,-0.087 -0.051,-0.074 c -0.104,-0.149 -0.104,-0.149 -1.306,-0.59 -2.321,-0.852 -8.485,-3.114 -11.299,-4.905 -6.822,-4.343 -13.743,-13.431 -20.573,-27.018 5.101,-13.665 15.618,-24.897 28.937,-30.913 m 0.307,-0.685 c -13.74,6.037 -24.57,17.472 -29.787,31.631 6.597,13.166 13.598,22.794 20.849,27.409 3.621,2.305 12.398,5.266 12.462,5.359 0.955,3.699 -5.15,2.093 -5.564,8.419 5.597,14.445 13.27,15.045 12.359,32.179 2.078,0.457 4.195,0.811 6.354,1.028 3.832,-8.726 9.872,-22.225 12.598,-32.457 0.557,-8.315 -1.871,-12.984 -15.239,-14.975 -0.427,-0.064 -0.846,-0.092 -1.257,-0.092 -3.144,0 -5.88,1.641 -8.898,1.641 -0.377,0 -0.759,-0.026 -1.146,-0.083 -6.077,-0.905 -14.782,-6.232 -14.782,-12.62 0.494,-0.48 0.989,-0.96 1.483,-1.44 1.956,0 13.993,0.484 15.897,1.198 0,-8.417 -5.042,-15.941 -6.416,-24.133 0.972,-5.58 1.945,-11.162 2.918,-16.743 -0.154,-1.05 -1.001,-3.704 -1.831,-6.321 l 0,0 z" | |
| 230 | + id="path94" | |
| 231 | + inkscape:connector-curvature="0" /></g><g | |
| 232 | + id="g96" | |
| 233 | + transform="translate(-199.80201,-323.493)"><linearGradient | |
| 234 | + id="SVGID_8_" | |
| 235 | + gradientUnits="userSpaceOnUse" | |
| 236 | + x1="272.82639" | |
| 237 | + y1="368.33749" | |
| 238 | + x2="272.82639" | |
| 239 | + y2="475.51071"><stop | |
| 240 | + offset="0" | |
| 241 | + style="stop-color:#D1DBE8" | |
| 242 | + id="stop99" /><stop | |
| 243 | + offset="1" | |
| 244 | + style="stop-color:#C4CDDC" | |
| 245 | + id="stop101" /></linearGradient><path | |
| 246 | + style="fill:url(#SVGID_8_);fill-rule:evenodd" | |
| 247 | + d="m 287.081,428.701 c -4.097,-0.61 -7.409,2.046 -11.301,1.466 -6.077,-0.905 -14.782,-6.232 -14.782,-12.62 0.494,-0.48 0.989,-0.96 1.483,-1.44 1.956,0 13.993,0.484 15.897,1.198 0,-8.417 -5.042,-15.941 -6.416,-24.133 0.972,-5.58 1.945,-11.162 2.918,-16.743 -0.154,-1.05 -1.001,-3.704 -1.831,-6.321 -13.74,6.037 -24.57,17.472 -29.787,31.631 6.597,13.166 13.598,22.794 20.849,27.409 3.621,2.305 12.398,5.266 12.462,5.359 0.955,3.699 -5.15,2.093 -5.564,8.419 5.597,14.445 13.187,15.646 12.276,32.78 2.078,0.457 4.047,0.713 6.206,0.93 2.76103,-10.7429 8.89487,-23.77947 12.829,-32.96 0.556,-8.315 -1.871,-12.984 -15.239,-14.975 z" | |
| 248 | + id="path103" | |
| 249 | + inkscape:connector-curvature="0" | |
| 250 | + sodipodi:nodetypes="cccccccccccccccc" /></g><path | |
| 251 | + style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10" | |
| 252 | + d="m 143.92999,71.247 c -2.151,-3.9 -5.028,-7.893 -8.025,-11.143" | |
| 253 | + id="path105" | |
| 254 | + inkscape:connector-curvature="0" /><path | |
| 255 | + style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10" | |
| 256 | + d="m 132.77899,56.97 c -1.308,-1.156 -3.383,-3.07 -4.992,-4.109" | |
| 257 | + id="path107" | |
| 258 | + inkscape:connector-curvature="0" /><path | |
| 259 | + style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10" | |
| 260 | + d="m 73.432991,46.99 c -14.161,6.084 -24.626,17.909 -29.827,32.251" | |
| 261 | + id="path109" | |
| 262 | + inkscape:connector-curvature="0" /><g | |
| 263 | + id="g111" | |
| 264 | + transform="translate(-199.80201,-323.493)"><path | |
| 265 | + style="fill:#e1dfe2;fill-rule:evenodd" | |
| 266 | + d="m 295.344,476.415 c -30.44,0 -55.144,-24.514 -55.476,-54.876 -0.002,0.206 -0.016,0.409 -0.016,0.616 0,30.647 24.844,55.492 55.492,55.492 30.647,0 57.06855,-24.52869 55.492,-55.492 -0.0105,-0.2067 -0.013,-0.41 -0.016,-0.616 -0.48966,30.20434 -25.035,54.876 -55.476,54.876 z" | |
| 267 | + id="path113" | |
| 268 | + inkscape:connector-curvature="0" | |
| 269 | + sodipodi:nodetypes="scssscs" /></g><path | |
| 270 | + style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10" | |
| 271 | + d="M 90.267991,152.213" | |
| 272 | + id="path115" | |
| 273 | + inkscape:connector-curvature="0" /><path | |
| 274 | + style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10" | |
| 275 | + d="M 83.481991,151.099" | |
| 276 | + id="path117" | |
| 277 | + inkscape:connector-curvature="0" /><g | |
| 278 | + id="g121" | |
| 279 | + transform="translate(-199.80201,-323.493)"><path | |
| 280 | + style="fill:#37577e;fill-rule:evenodd" | |
| 281 | + d="m 295.344,366.659 c 30.441,0 54.98834,24.98797 55.476,54.878 0.002,-0.205 0.0107,-0.40807 0.016,-0.614 0.78828,-30.647 -24.845,-55.492 -55.492,-55.492 -30.647,0 -55.492,24.845 -55.492,55.492 0,0.206 0.013,0.408 0.016,0.614 0.331,-30.363 25.035,-54.878 55.476,-54.878 z" | |
| 282 | + id="path123" | |
| 283 | + inkscape:connector-curvature="0" | |
| 284 | + sodipodi:nodetypes="scssscs" /></g></svg> | |
| 0 | 285 | \ No newline at end of file | ... | ... |
shared/dali-demo-strings.h
| ... | ... | @@ -100,6 +100,7 @@ extern "C" |
| 100 | 100 | #define DALI_DEMO_STR_TITLE_IMAGE_VIEW "Image View" |
| 101 | 101 | #define DALI_DEMO_STR_TITLE_IMAGE_VIEW_PIXEL_AREA "Image View Pixel Area" |
| 102 | 102 | #define DALI_DEMO_STR_TITLE_IMAGE_VIEW_ALPHA_BLENDING "Image View Alpha Blending" |
| 103 | +#define DALI_DEMO_STR_TITLE_IMAGE_VIEW_SVG "Image View SVG" | |
| 103 | 104 | #define DALI_DEMO_STR_TITLE_SUPER_BLUR_BLOOM "Super Blur and Bloom" |
| 104 | 105 | |
| 105 | 106 | #endif | ... | ... |