Commit e6ffc87d authored by dogmaphobic's avatar dogmaphobic

Contrast and Gadget tweaks

parent da099c28
......@@ -341,7 +341,9 @@
<file alias="compassNeedle.svg">src/ui/flightdisplay/components/compassNeedle.svg</file>
<file alias="crossHair.svg">src/ui/flightdisplay/components/crossHair.svg</file>
<file alias="rollDial.svg">src/ui/flightdisplay/components/rollDial.svg</file>
<file alias="rollDialWhite.svg">src/ui/flightdisplay/components/rollDialWhite.svg</file>
<file alias="rollPointer.svg">src/ui/flightdisplay/components/rollPointer.svg</file>
<file alias="rollPointerWhite.svg">src/ui/flightdisplay/components/rollPointerWhite.svg</file>
</qresource>
<qresource prefix="/AutoPilotPlugins/PX4">
<file alias="ParameterFactMetaData.xml">src/AutoPilotPlugins/PX4/ParameterFactMetaData.xml</file>
......
......@@ -57,14 +57,16 @@ Rectangle {
//mapTypeMenu.update();
}
/*
Rectangle {
id: windowBackground
anchors.fill: parent
anchors.centerIn: parent
visible: !attitudeWidget.visible //&& !mapBackground.visible
visible: !attitudeWidget.visible && !mapBackground.visible
color: Qt.hsla(0.25, 0.5, 0.45)
z: 0
}
*/
/*
Menu {
......@@ -292,20 +294,31 @@ Rectangle {
QGCAttitudeWidget {
id: attitudeWidget
anchors.centerIn: parent
rollAngle: roll
pitchAngle: pitch
backgroundOpacity: 1.0 // mapBackground.visible ? 0.25 : 1.0
z: 10
anchors.centerIn: parent
rollAngle: roll
pitchAngle: pitch
useWhite: true // !mapBackground.visible
backgroundOpacity: 1.0 // mapBackground.visible ? 0.25 : 1.0
z: 10
}
QGCPitchWidget {
id: pitchWidget
anchors.verticalCenter: parent.verticalCenter
opacity: 0.5
pitchAngle: pitch
rollAngle: roll
z: 20
color: Qt.rgba(0,0,0,0) // mapBackground.visible ? Qt.rgba(0,0,0,0.5) : Qt.rgba(0,0,0,0)
opacity: 0.75 // mapBackground.visible ? 1 : 0.75
z: 25 // mapBackground.visible ? 20 : 25
}
Image {
anchors.centerIn: parent
source: "/qml/crossHair.svg"
mipmap: true
width: 260
fillMode: Image.PreserveAspectFit
z: 20 // mapBackground.visible ? 25 : 20
}
QGCAltitudeWidget {
......@@ -327,30 +340,30 @@ Rectangle {
QGCCurrentSpeed {
id: currentSpeed
anchors.left: parent.left
width: 80
width: 75
airspeed: flightDisplay.airSpeed
groundspeed: flightDisplay.groundSpeed
showAirSpeed: true
showGroundSpeed: true
visible: currentSpeed.showGroundSpeed || currentSpeed.showAirSpeed
visible: (currentSpeed.showGroundSpeed || currentSpeed.showAirSpeed)
z: 50
}
QGCCurrentAltitude {
id: currentAltitude
anchors.right: parent.right
width: 80
altitude: flightDisplay.altitudeWGS84
vertZ: flightDisplay.climbRate
showAltitude: true
showClimbRate: true
visible: (currentAltitude.showAltitude || currentAltitude.showClimbRate)
z: 60
anchors.right: parent.right
width: 75
altitude: flightDisplay.altitudeWGS84
vertZ: flightDisplay.climbRate
showAltitude: true
showClimbRate: true
visible: (currentAltitude.showAltitude || currentAltitude.showClimbRate)
z: 60
}
QGCCompass {
id: compassIndicator
y: root.height * 0.65
y: root.height * 0.7
anchors.horizontalCenter: parent.horizontalCenter
heading: isNaN(flightDisplay.heading) ? 0 : flightDisplay.heading
z: 70
......
......@@ -34,8 +34,8 @@ import QtQuick 2.4
Rectangle {
id: root
property real altitude: 50
property real _reticleSpacing: 29
property real _reticleHeight: 1
property real _reticleSpacing: 16
property real _reticleHeight: 2
property real _reticleSlot: _reticleSpacing + _reticleHeight
property var _speedArray: []
property int _currentCenter: 0
......@@ -75,26 +75,26 @@ Rectangle {
GradientStop { position: 1.0; color: Qt.rgba(0,0,0,0.65) }
}
Column{
id: col
width: parent.width
anchors.verticalCenter: parent.verticalCenter
spacing: _reticleSpacing
Repeater {
model: _speedArray
anchors.left: parent.left
Rectangle {
property int _alt: modelData
width: (_alt % 10 === 0) ? 15 : 30
anchors.left: parent.left
width: (_alt % 10 === 0) ? 10 : 15
height: _reticleHeight
color: Qt.rgba(1,1,1,0.35)
Text {
visible: (_alt % 10 === 0)
anchors.horizontalCenter: parent.horizontalCenter
anchors.horizontalCenterOffset: 25
x: 20
anchors.verticalCenter: parent.verticalCenter
antialiasing: true
font.weight: _alt < 0 ? Font.Light : Font.DemiBold
text: _alt < 0 ? -_alt : _alt
color: _alt < 0 ? "#ef2526" : "white"
font.weight: Font.DemiBold
text: _alt
color: _alt < 0 ? "#f8983a" : "white"
style: Text.Outline
styleColor: Qt.rgba(0,0,0,0.25)
}
......
......@@ -35,6 +35,7 @@ Item {
property real pitchAngle: 0
property real backgroundOpacity: 1
property bool displayBackground: true
property bool useWhite: true
anchors.fill: parent
......@@ -94,9 +95,9 @@ Item {
Image {
id: rollDial
anchors { bottom: root.verticalCenter; horizontalCenter: parent.horizontalCenter}
source: "/qml/rollDial.svg"
source: useWhite ? "/qml/rollDialWhite.svg" : "/qml/rollDial.svg"
mipmap: true
width: 250
width: 260
fillMode: Image.PreserveAspectFit
transform: Rotation {
origin.x: rollDial.width / 2
......@@ -108,18 +109,10 @@ Item {
Image {
id: pointer
anchors { bottom: root.verticalCenter; horizontalCenter: parent.horizontalCenter}
source: "/qml/rollPointer.svg"
source: useWhite ? "/qml/rollPointerWhite.svg" : "/qml/rollPointer.svg"
smooth: true
width: rollDial.width
fillMode: Image.PreserveAspectFit
}
Image {
anchors.centerIn: parent
source: "/qml/crossHair.svg"
mipmap: true
width: rollDial.width
fillMode: Image.PreserveAspectFit
}
}
......@@ -31,7 +31,7 @@ import QtQuick 2.4
Item {
id: root
width: parent.width * 0.25 > 150 ? parent.width * 0.25 : 150
width: 120
height: width
property real heading : 0
Image {
......@@ -60,8 +60,8 @@ Item {
anchors.centerIn: compass
width: 40
height: 25
border.color: Qt.rgba(1,1,1,0.25)
color: Qt.rgba(1,1,1,0.1)
border.color: Qt.rgba(1,1,1,0.15)
color: Qt.rgba(0,0,0,0.25)
Text {
text: heading.toFixed(0)
font.weight: Font.DemiBold
......
......@@ -45,14 +45,14 @@ Rectangle {
anchors.centerIn: parent
spacing: 4
Text {
text: 'h: ' + altitude.toFixed(1)
text: 'h: ' + altitude.toFixed(0)
font.weight: Font.DemiBold
color: "white"
anchors.right: parent.right
visible: showAltitude
}
Text {
text: 'vZ: ' + vertZ.toFixed(1)
text: 'vZ: ' + vertZ.toFixed(0)
color: "white"
font.weight: showAltitude ? Font.Normal : Font.DemiBold
anchors.right: parent.right
......
......@@ -45,14 +45,14 @@ Rectangle {
anchors.centerIn: parent
spacing: 4
Text {
text: 'GS: ' + groundspeed.toFixed(1)
text: 'GS: ' + groundspeed.toFixed(0)
font.weight: Font.DemiBold
color: "white"
anchors.right: parent.right
visible: showGroundSpeed
}
Text {
text: 'AS: ' + airspeed.toFixed(1)
text: 'AS: ' + airspeed.toFixed(0)
color: "white"
anchors.right: parent.right
font.weight: showAirSpeed ? Font.Normal : Font.DemiBold
......
......@@ -62,17 +62,19 @@ Rectangle {
Plugin {
id: mapPlugin
name: "osm"
name: "google"
}
Map {
id: map
property real lon: (longitude > -180.1 && longitude < 180.1) ? longitude : 0
property real lat: (latitude > -180.1 && latitude < 180.1) ? latitude : 0
plugin: mapPlugin
width: 1
height: 1
zoomLevel: zoomLevel
anchors.centerIn: parent
center: map.visible ? QtPositioning.coordinate(latitude, longitude) : QtPositioning.coordinate(0,0)
center: map.visible ? QtPositioning.coordinate(lat, lon) : QtPositioning.coordinate(0,0)
transform: Rotation {
origin.x: map.width / 2
origin.y: map.height / 2
......
......@@ -33,26 +33,27 @@ Rectangle {
property real pitchAngle: 0
property real rollAngle: 0
property real _reticleHeight: 1
property real _reticleSpacing: 20
property real _reticleSpacing: 17
property real _reticleSlot: _reticleSpacing + _reticleHeight
height: 130
width: parent.width
height: 110
width: 120
radius: 8
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
clip: true
color: Qt.rgba(0,0,0,0)
Item {
height: parent.height
width: parent.width
Column{
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenter: parent.verticalCenter
spacing: _reticleSpacing
Repeater {
model: 36
Rectangle {
property int _pitch: -(modelData * 5 - 90)
anchors.horizontalCenter: parent.horizontalCenter
width: ((modelData * 5 - 90) % 10) === 0 ? 50 : 30
width: (_pitch % 10) === 0 ? 50 : 30
height: _reticleHeight
color: "white"
antialiasing: true
......@@ -63,9 +64,9 @@ Rectangle {
anchors.verticalCenter: parent.verticalCenter
smooth: true
font.weight: Font.DemiBold
text: -(modelData * 5 - 90)
text: _pitch
color: "white"
visible: ((modelData * 5 - 90) % 10) === 0
visible: (_pitch != 0) && ((_pitch % 10) === 0)
}
Text {
anchors.horizontalCenter: parent.horizontalCenter
......@@ -73,9 +74,9 @@ Rectangle {
anchors.verticalCenter: parent.verticalCenter
smooth: true
font.weight: Font.DemiBold
text: -(modelData * 5 - 90)
text: _pitch
color: "white"
visible: ((modelData * 5 - 90) % 10) === 0
visible: (_pitch != 0) && ((_pitch % 10) === 0)
}
}
}
......
......@@ -28,16 +28,19 @@ This file is part of the QGROUNDCONTROL project
*/
import QtQuick 2.4
import QGroundControl.ScreenTools 1.0
Rectangle {
id: root
property ScreenTools screenTools: ScreenTools { }
property real speed: 0
property real _reticleSpacing: 14
property real _reticleHeight: 1
property real _reticleSpacing: 10
property real _reticleHeight: 2
property real _reticleSlot: _reticleSpacing + _reticleHeight
anchors.verticalCenter: parent.verticalCenter
z:10
height: parent.height * 0.75 > 280 ? 280 : parent.height * 0.75
clip: true
smooth: true
......@@ -49,6 +52,7 @@ Rectangle {
GradientStop { position: 1.0; color: Qt.rgba(0,0,0,0.65) }
}
Column{
id: col
width: parent.width
anchors.verticalCenter: parent.verticalCenter
spacing: _reticleSpacing
......@@ -56,19 +60,19 @@ Rectangle {
model: 40
Rectangle {
property int _speed: -(index - 20)
width: (_speed % 5 === 0) ? 15 : 30
width: (_speed % 5 === 0) ? 10 : 15
anchors.right: parent.right
height: _reticleHeight
color: Qt.rgba(1,1,1,0.35)
Text {
visible: (_speed % 5 === 0)
anchors.horizontalCenter: parent.horizontalCenter
anchors.horizontalCenterOffset: -25
anchors.horizontalCenterOffset: -30
anchors.verticalCenter: parent.verticalCenter
antialiasing: true
font.weight: _speed < 0 ? Font.Light : Font.DemiBold
text: _speed < 0 ? -_speed : _speed
color: _speed < 0 ? "#ef2526" : "white"
font.weight: Font.DemiBold
text: _speed
color: _speed < 0 ? "#f8983a" : "white"
style: Text.Outline
styleColor: Qt.rgba(0,0,0,0.25)
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 288 158.4" enable-background="new 0 0 288 158.4" xml:space="preserve">
<g id="Layer_2">
<polygon opacity="0.5" fill="#FFFFFF" points="272.25,9 144,149.4 15.75,9 "/>
</g>
<g id="Layer_1">
<polygon opacity="0.75" fill="none" stroke="#000000" stroke-width="12" stroke-linejoin="round" stroke-miterlimit="10" points="
279,7.2 144,151.2 9,7.2 "/>
</g>
<polygon points="279,7.2 144,151.2 9,7.2 "/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 288 36" enable-background="new 0 0 288 36" xml:space="preserve">
<rect fill="none" width="288" height="36"/>
<line fill="none" stroke="#D32027" stroke-width="2" stroke-miterlimit="10" x1="0" y1="18" x2="72" y2="18"/>
<line fill="none" stroke="#D32027" stroke-width="2" stroke-miterlimit="10" x1="288" y1="18" x2="216" y2="18"/>
<polyline fill="none" stroke="#D32027" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" points="194.488,31.07
144,18 93.512,31.07 "/>
viewBox="0 288 288 36" enable-background="new 0 288 288 36" xml:space="preserve">
<rect y="288" fill="none" width="288" height="36"/>
<line fill="none" stroke="#7D1317" stroke-width="4" stroke-miterlimit="10" x1="0" y1="306" x2="72" y2="306"/>
<line fill="none" stroke="#7D1317" stroke-width="4" stroke-miterlimit="10" x1="288" y1="306" x2="216" y2="306"/>
<polyline fill="none" stroke="#7D1317" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10" points="194.488,319.07
144,306 93.512,319.07 "/>
</svg>
......@@ -3,36 +3,30 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 288 159.854" enable-background="new 0 0 288 159.854" xml:space="preserve">
<g id="Layer_1">
<text transform="matrix(1 0 0 1 136.0895 12.201)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2222">00</text>
<text transform="matrix(0.9659 -0.2588 0.2588 0.9659 98.1424 19.2784)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2218">15</text>
<text transform="matrix(0.866 -0.5 0.5 0.866 63.3229 35.9389)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2219">30</text>
<text transform="matrix(0.7071 -0.7071 0.7071 0.7071 33.9995 61.0398)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2221">45</text>
<text transform="matrix(0.5 -0.866 0.866 0.5 12.1723 92.8793)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2219">60</text>
<text transform="matrix(0.9659 0.2588 -0.2588 0.9659 174.5744 15.1842)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2218">15</text>
<text transform="matrix(0.866 0.5 -0.5 0.866 210.9767 28.0287)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2219">30</text>
<text transform="matrix(0.7071 0.7071 -0.7071 0.7071 242.8152 49.8557)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2221">45</text>
<text transform="matrix(0.5 0.866 -0.866 0.5 267.9185 79.1788)" fill="#E0E0E0" font-family="'Arial-BoldMT'" font-size="14.2219">60</text>
<text transform="matrix(1 0 0 1 136.0895 12.201)" font-family="'Arial-BoldMT'" font-size="14.2222">00</text>
<text transform="matrix(0.9659 -0.2588 0.2588 0.9659 98.1424 19.2784)" font-family="'Arial-BoldMT'" font-size="14.2218">15</text>
<text transform="matrix(0.866 -0.5 0.5 0.866 63.3229 35.9389)" font-family="'Arial-BoldMT'" font-size="14.2219">30</text>
<text transform="matrix(0.7071 -0.7071 0.7071 0.7071 33.9995 61.0398)" font-family="'Arial-BoldMT'" font-size="14.2221">45</text>
<text transform="matrix(0.5 -0.866 0.866 0.5 12.1723 92.8793)" font-family="'Arial-BoldMT'" font-size="14.2219">60</text>
<text transform="matrix(0.9659 0.2588 -0.2588 0.9659 174.5744 15.1842)" font-family="'Arial-BoldMT'" font-size="14.2218">15</text>
<text transform="matrix(0.866 0.5 -0.5 0.866 210.9767 28.0287)" font-family="'Arial-BoldMT'" font-size="14.2219">30</text>
<text transform="matrix(0.7071 0.7071 -0.7071 0.7071 242.8152 49.8557)" font-family="'Arial-BoldMT'" font-size="14.2221">45</text>
<text transform="matrix(0.5 0.866 -0.866 0.5 267.9185 79.1788)" font-family="'Arial-BoldMT'" font-size="14.2219">60</text>
</g>
<g id="Layer_3">
<rect id="rect5769" y="153.455" fill="none" width="288" height="6.4"/>
</g>
<g id="Layer_2">
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="144.1" y1="23.855" x2="144.1" y2="16.355"/>
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="108.9" y1="28.455" x2="107" y2="21.255"/>
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="76.1" y1="41.955" x2="72.4" y2="35.455"/>
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="47.9" y1="63.555" x2="42.7" y2="58.355"/>
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="26.3" y1="91.755" x2="19.8" y2="88.055"/>
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="179.3" y1="28.455" x2="181.2" y2="21.255"/>
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="212.1" y1="42.155" x2="215.8" y2="35.655"/>
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="240.3" y1="63.755" x2="245.5" y2="58.555"/>
<line fill="none" stroke="#E0E0E0" stroke-width="4" x1="261.9" y1="91.955" x2="268.4" y2="88.255"/>
<path fill="none" stroke="#E0E0E0" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel" d="M262.4,92.955
<line fill="none" stroke="#000000" stroke-width="4" x1="144.1" y1="23.855" x2="144.1" y2="16.355"/>
<line fill="none" stroke="#000000" stroke-width="4" x1="108.9" y1="28.455" x2="107" y2="21.255"/>
<line fill="none" stroke="#000000" stroke-width="4" x1="76.1" y1="41.955" x2="72.4" y2="35.455"/>
<line fill="none" stroke="#000000" stroke-width="4" x1="47.9" y1="63.555" x2="42.7" y2="58.355"/>
<line fill="none" stroke="#000000" stroke-width="4" x1="26.3" y1="91.755" x2="19.8" y2="88.055"/>
<line fill="none" stroke="#000000" stroke-width="4" x1="179.3" y1="28.455" x2="181.2" y2="21.255"/>
<line fill="none" stroke="#000000" stroke-width="4" x1="212.1" y1="42.155" x2="215.8" y2="35.655"/>
<line fill="none" stroke="#000000" stroke-width="4" x1="240.3" y1="63.755" x2="245.5" y2="58.555"/>
<line fill="none" stroke="#000000" stroke-width="4" x1="261.9" y1="91.955" x2="268.4" y2="88.255"/>
<path fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel" d="M262.4,92.955
c-11.6-20.6-28.6-37.9-48.9-50s-44.1-19.1-69.5-19.1s-49.2,6.9-69.4,19s-37.2,29.3-48.9,50"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 288 159.854" enable-background="new 0 0 288 159.854" xml:space="preserve">
<g id="Layer_1">
<g enable-background="new ">
<path fill="#FFFFFF" d="M139.992,1.979c0.986,0,1.757,0.353,2.312,1.056c0.662,0.834,0.993,2.216,0.993,4.146
c0,1.926-0.333,3.31-1,4.152c-0.551,0.694-1.32,1.042-2.306,1.042c-0.991,0-1.79-0.381-2.396-1.143s-0.91-2.119-0.91-4.073
c0-1.916,0.333-3.296,1-4.139C138.237,2.326,139.006,1.979,139.992,1.979z M139.992,3.597c-0.236,0-0.447,0.075-0.632,0.226
c-0.186,0.151-0.329,0.421-0.431,0.81c-0.134,0.505-0.202,1.354-0.202,2.549s0.061,2.015,0.181,2.462
c0.121,0.446,0.272,0.744,0.455,0.892c0.183,0.148,0.392,0.223,0.628,0.223c0.236,0,0.447-0.075,0.632-0.226
s0.329-0.42,0.431-0.81c0.134-0.5,0.201-1.347,0.201-2.541s-0.06-2.016-0.18-2.462c-0.121-0.447-0.272-0.745-0.455-0.896
C140.438,3.672,140.228,3.597,139.992,3.597z"/>
<path fill="#FFFFFF" d="M147.902,1.979c0.985,0,1.757,0.353,2.312,1.056c0.662,0.834,0.993,2.216,0.993,4.146
c0,1.926-0.334,3.31-1,4.152c-0.552,0.694-1.32,1.042-2.306,1.042c-0.991,0-1.79-0.381-2.396-1.143s-0.909-2.119-0.909-4.073
c0-1.916,0.333-3.296,1-4.139C146.147,2.326,146.916,1.979,147.902,1.979z M147.902,3.597c-0.236,0-0.447,0.075-0.632,0.226
c-0.186,0.151-0.329,0.421-0.431,0.81c-0.135,0.505-0.202,1.354-0.202,2.549s0.061,2.015,0.181,2.462
c0.121,0.446,0.272,0.744,0.455,0.892c0.183,0.148,0.393,0.223,0.629,0.223c0.235,0,0.446-0.075,0.632-0.226
c0.185-0.15,0.328-0.42,0.431-0.81c0.134-0.5,0.201-1.347,0.201-2.541s-0.061-2.016-0.181-2.462
c-0.12-0.447-0.272-0.745-0.455-0.896C148.348,3.672,148.138,3.597,147.902,3.597z"/>
</g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M103.549,17.83l-1.886,0.505l-1.903-7.103c-0.516,0.828-1.2,1.522-2.051,2.081l-0.459-1.711
c0.449-0.293,0.901-0.74,1.357-1.345c0.457-0.604,0.712-1.234,0.766-1.891l1.53-0.41L103.549,17.83z"/>
<path fill="#FFFFFF" d="M105.715,14.539l1.826-0.697c0.167,0.41,0.416,0.704,0.746,0.882c0.331,0.177,0.668,0.22,1.013,0.128
c0.393-0.105,0.684-0.354,0.87-0.748c0.188-0.392,0.195-0.91,0.022-1.554c-0.161-0.604-0.418-1.02-0.771-1.25
c-0.351-0.229-0.743-0.286-1.177-0.17c-0.541,0.146-0.962,0.515-1.264,1.108l-1.589,0.188l-0.404-5.376l4.982-1.335l0.473,1.764
l-3.555,0.952l0.152,1.749c0.364-0.322,0.766-0.543,1.204-0.66c0.836-0.225,1.626-0.109,2.37,0.342
c0.744,0.453,1.247,1.165,1.507,2.134c0.217,0.811,0.175,1.595-0.124,2.355c-0.406,1.04-1.178,1.711-2.314,2.015
c-0.907,0.243-1.713,0.197-2.416-0.136C106.564,15.895,106.047,15.332,105.715,14.539z"/>
</g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M62.435,33.332l1.521-1.143c0.293,0.387,0.617,0.624,0.974,0.713c0.355,0.089,0.696,0.039,1.021-0.148
c0.349-0.201,0.566-0.504,0.652-0.905c0.086-0.402-0.002-0.828-0.261-1.277c-0.245-0.425-0.554-0.695-0.926-0.812
c-0.372-0.117-0.723-0.08-1.052,0.11c-0.217,0.125-0.451,0.316-0.702,0.575l-0.609-1.485c0.464-0.252,0.756-0.552,0.875-0.902
c0.119-0.349,0.077-0.698-0.124-1.047c-0.171-0.296-0.396-0.481-0.674-0.557c-0.278-0.074-0.564-0.027-0.857,0.142
c-0.287,0.167-0.477,0.409-0.564,0.728c-0.09,0.319-0.045,0.684,0.133,1.094l-1.71,0.634c-0.199-0.595-0.282-1.116-0.247-1.561
c0.033-0.444,0.193-0.871,0.479-1.279c0.286-0.407,0.671-0.752,1.156-1.032c0.83-0.479,1.647-0.599,2.454-0.359
c0.664,0.194,1.152,0.565,1.467,1.11c0.447,0.773,0.381,1.635-0.199,2.585c0.568-0.183,1.111-0.175,1.632,0.028
c0.521,0.202,0.935,0.569,1.242,1.103c0.446,0.773,0.546,1.597,0.295,2.468s-0.797,1.55-1.639,2.037
c-0.798,0.461-1.593,0.612-2.382,0.457C63.599,34.45,62.948,34.025,62.435,33.332z"/>
<path fill="#FFFFFF" d="M68.441,21.181c0.854-0.493,1.697-0.574,2.53-0.242c0.99,0.391,1.967,1.422,2.933,3.094
c0.963,1.668,1.366,3.032,1.21,4.096c-0.129,0.877-0.621,1.562-1.475,2.055c-0.858,0.496-1.74,0.565-2.646,0.208
s-1.848-1.38-2.824-3.073c-0.958-1.659-1.359-3.021-1.203-4.084C67.095,22.358,67.587,21.674,68.441,21.181z M69.251,22.582
c-0.205,0.118-0.35,0.288-0.435,0.511s-0.075,0.528,0.031,0.916c0.136,0.505,0.503,1.273,1.1,2.309
c0.597,1.034,1.06,1.714,1.388,2.041c0.328,0.326,0.607,0.509,0.84,0.545c0.232,0.037,0.451-0.003,0.655-0.122
c0.204-0.118,0.35-0.289,0.435-0.511s0.074-0.528-0.031-0.917c-0.135-0.5-0.5-1.267-1.097-2.301
c-0.597-1.035-1.06-1.715-1.388-2.042c-0.327-0.326-0.607-0.509-0.842-0.548C69.674,22.424,69.455,22.464,69.251,22.582z"/>
</g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M37.132,57.907l-1.449-1.449l-2.945,2.946l-1.208-1.208l-1.448-7.694l1.158-1.159l4.566,4.566l0.895-0.894
l1.213,1.212l-0.895,0.894l1.449,1.449L37.132,57.907z M34.471,55.246l-2.46-2.46l0.805,4.115L34.471,55.246z"/>
<path fill="#FFFFFF" d="M38.188,53.149l1.232-1.518c0.351,0.272,0.714,0.402,1.088,0.391s0.688-0.143,0.94-0.395
c0.288-0.289,0.414-0.649,0.38-1.083c-0.034-0.434-0.286-0.885-0.759-1.357c-0.441-0.442-0.871-0.675-1.291-0.698
c-0.418-0.023-0.787,0.125-1.104,0.442c-0.396,0.396-0.575,0.926-0.54,1.591l-1.281,0.958l-3.041-4.454l3.648-3.648l1.293,1.292
l-2.604,2.603l1.007,1.438c0.154-0.461,0.392-0.853,0.712-1.173c0.612-0.612,1.354-0.908,2.225-0.889
c0.871,0.02,1.662,0.385,2.371,1.095c0.593,0.592,0.95,1.293,1.07,2.102c0.168,1.104-0.164,2.071-0.996,2.902
c-0.664,0.665-1.385,1.028-2.16,1.09C39.602,53.899,38.873,53.669,38.188,53.149z"/>
</g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M9.122,82.787l-0.764,1.74c-0.36-0.154-0.669-0.194-0.926-0.118c-0.258,0.076-0.465,0.248-0.619,0.517
c-0.207,0.357-0.22,0.751-0.042,1.183c0.18,0.432,0.757,0.973,1.733,1.622c-0.254-0.708-0.2-1.375,0.16-2
c0.408-0.706,1.025-1.155,1.854-1.348c0.828-0.192,1.667-0.044,2.517,0.447c0.902,0.521,1.473,1.203,1.713,2.048
c0.239,0.843,0.12,1.681-0.359,2.511c-0.514,0.89-1.282,1.422-2.305,1.596c-1.023,0.174-2.322-0.193-3.897-1.103
c-1.616-0.933-2.607-1.905-2.977-2.914c-0.368-1.009-0.277-1.991,0.273-2.945c0.387-0.67,0.894-1.116,1.522-1.338
C7.634,82.461,8.339,82.496,9.122,82.787z M10.597,88.747c0.55,0.317,1.047,0.436,1.491,0.355
c0.444-0.081,0.761-0.283,0.948-0.607c0.181-0.312,0.208-0.644,0.084-0.994s-0.465-0.686-1.021-1.007
c-0.574-0.331-1.059-0.46-1.455-0.391c-0.396,0.071-0.691,0.274-0.886,0.611c-0.188,0.325-0.219,0.673-0.093,1.044
C9.789,88.13,10.1,88.459,10.597,88.747z"/>
<path fill="#FFFFFF" d="M9.227,77.539c0.493-0.854,1.183-1.346,2.07-1.475c1.053-0.156,2.414,0.248,4.087,1.213
c1.667,0.963,2.699,1.943,3.096,2.942c0.325,0.824,0.242,1.664-0.25,2.518c-0.496,0.858-1.225,1.359-2.188,1.503
s-2.291-0.272-3.982-1.249c-1.66-0.958-2.688-1.937-3.084-2.935C8.649,79.232,8.733,78.393,9.227,77.539z M10.628,78.348
c-0.118,0.205-0.158,0.424-0.121,0.66c0.038,0.236,0.199,0.495,0.485,0.777c0.37,0.369,1.072,0.852,2.106,1.449
s1.775,0.955,2.223,1.074c0.446,0.119,0.78,0.137,0.999,0.052c0.221-0.084,0.39-0.228,0.507-0.433
c0.118-0.205,0.159-0.425,0.121-0.66s-0.199-0.495-0.486-0.778c-0.365-0.366-1.064-0.848-2.1-1.445
c-1.034-0.597-1.775-0.956-2.223-1.074c-0.445-0.119-0.78-0.137-1.002-0.054C10.915,78,10.746,78.144,10.628,78.348z"/>
</g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M179.98,16.633l-1.885-0.505l1.903-7.103c-0.861,0.459-1.801,0.718-2.817,0.775l0.458-1.71
c0.535-0.029,1.151-0.191,1.849-0.486c0.696-0.295,1.233-0.713,1.608-1.255l1.529,0.41L179.98,16.633z"/>
<path fill="#FFFFFF" d="M183.502,14.866l1.93,0.309c-0.06,0.439,0.009,0.818,0.207,1.137c0.196,0.318,0.468,0.525,0.812,0.617
c0.394,0.105,0.77,0.034,1.129-0.212c0.357-0.246,0.623-0.691,0.796-1.335c0.162-0.604,0.147-1.094-0.042-1.468
s-0.502-0.619-0.936-0.735c-0.541-0.146-1.09-0.036-1.647,0.328l-1.47-0.632l2.337-4.858l4.983,1.335l-0.473,1.764l-3.555-0.952
l-0.742,1.59c0.476-0.096,0.934-0.087,1.372,0.03c0.836,0.225,1.463,0.719,1.882,1.481c0.418,0.765,0.497,1.632,0.237,2.602
c-0.217,0.811-0.645,1.469-1.284,1.979c-0.872,0.696-1.876,0.893-3.012,0.588c-0.908-0.243-1.583-0.686-2.024-1.326
C183.56,16.466,183.394,15.719,183.502,14.866z"/>
</g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M212.79,25.957l1.751,0.745c-0.188,0.447-0.232,0.848-0.131,1.2c0.1,0.353,0.314,0.622,0.639,0.81
c0.348,0.201,0.719,0.238,1.109,0.112c0.392-0.127,0.717-0.415,0.977-0.864c0.245-0.426,0.325-0.828,0.24-1.209
c-0.085-0.38-0.291-0.665-0.62-0.854c-0.217-0.125-0.5-0.232-0.849-0.322l0.98-1.27c0.451,0.275,0.857,0.379,1.219,0.307
c0.363-0.072,0.644-0.281,0.846-0.631c0.17-0.296,0.219-0.584,0.145-0.862c-0.074-0.277-0.258-0.502-0.551-0.671
c-0.288-0.166-0.593-0.208-0.913-0.126s-0.614,0.303-0.88,0.662l-1.404-1.163c0.416-0.471,0.824-0.803,1.228-0.995
c0.402-0.193,0.852-0.268,1.349-0.225c0.496,0.044,0.986,0.206,1.471,0.485c0.83,0.479,1.343,1.129,1.539,1.947
c0.163,0.67,0.087,1.279-0.228,1.824c-0.446,0.773-1.227,1.146-2.339,1.12c0.442,0.399,0.707,0.875,0.791,1.427
c0.086,0.552-0.025,1.095-0.334,1.627c-0.446,0.774-1.109,1.271-1.99,1.49c-0.879,0.218-1.74,0.085-2.582-0.401
c-0.799-0.461-1.327-1.072-1.588-1.834C212.404,27.523,212.446,26.747,212.79,25.957z"/>
<path fill="#FFFFFF" d="M226.316,25.083c0.854,0.493,1.346,1.183,1.476,2.07c0.156,1.053-0.248,2.414-1.214,4.087
c-0.963,1.667-1.942,2.699-2.941,3.096c-0.824,0.325-1.664,0.242-2.518-0.25c-0.857-0.496-1.359-1.225-1.504-2.188
s0.272-2.291,1.25-3.982c0.957-1.66,1.936-2.688,2.935-3.084C224.624,24.506,225.463,24.59,226.316,25.083z M225.508,26.484
c-0.205-0.118-0.424-0.158-0.66-0.121c-0.235,0.038-0.494,0.199-0.777,0.485c-0.368,0.37-0.852,1.072-1.449,2.106
c-0.597,1.034-0.955,1.775-1.074,2.223c-0.118,0.446-0.137,0.78-0.051,0.999c0.084,0.221,0.228,0.39,0.432,0.507
c0.205,0.118,0.426,0.159,0.66,0.121c0.236-0.038,0.495-0.199,0.778-0.486c0.366-0.365,0.848-1.064,1.444-2.1
c0.598-1.034,0.956-1.775,1.074-2.223c0.119-0.445,0.138-0.78,0.055-1.002C225.855,26.771,225.713,26.603,225.508,26.484z"/>
</g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M245.948,52.988l1.448-1.449l-2.945-2.945l1.207-1.208l7.694-1.448l1.159,1.158l-4.566,4.566l0.894,0.895
l-1.212,1.213l-0.895-0.895l-1.449,1.449L245.948,52.988z M248.609,50.327l2.461-2.46l-4.115,0.805L248.609,50.327z"/>
<path fill="#FFFFFF" d="M250.706,54.044l1.518,1.232c-0.272,0.351-0.401,0.714-0.391,1.088s0.144,0.688,0.396,0.94
c0.288,0.288,0.648,0.414,1.083,0.38c0.434-0.034,0.886-0.286,1.356-0.759c0.442-0.441,0.676-0.871,0.698-1.291
c0.022-0.418-0.125-0.787-0.442-1.104c-0.396-0.396-0.926-0.575-1.591-0.54l-0.958-1.281l4.455-3.041l3.648,3.648l-1.293,1.293
l-2.602-2.604l-1.438,1.007c0.461,0.154,0.853,0.392,1.173,0.712c0.612,0.612,0.908,1.354,0.889,2.225
c-0.02,0.871-0.385,1.662-1.094,2.371c-0.593,0.593-1.294,0.95-2.102,1.07c-1.104,0.168-2.072-0.164-2.902-0.996
c-0.665-0.664-1.028-1.385-1.091-2.16C249.956,55.458,250.186,54.729,250.706,54.044z"/>
</g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M278.184,81.583l-1.125-1.531c0.313-0.235,0.502-0.482,0.564-0.743c0.064-0.262,0.018-0.526-0.137-0.796
c-0.207-0.356-0.541-0.564-1.004-0.627c-0.464-0.061-1.221,0.17-2.271,0.691c0.74,0.133,1.291,0.514,1.652,1.139
c0.406,0.705,0.486,1.465,0.24,2.278c-0.247,0.813-0.796,1.466-1.646,1.956c-0.901,0.521-1.778,0.674-2.629,0.459
c-0.851-0.214-1.516-0.736-1.995-1.566c-0.514-0.89-0.591-1.82-0.229-2.793c0.36-0.973,1.328-1.914,2.903-2.824
c1.616-0.934,2.953-1.307,4.012-1.121s1.863,0.756,2.414,1.709c0.387,0.67,0.52,1.332,0.397,1.988
C279.21,80.458,278.828,81.05,278.184,81.583z M272.285,79.88c-0.55,0.318-0.9,0.689-1.053,1.113
c-0.153,0.426-0.136,0.801,0.052,1.125c0.181,0.312,0.453,0.503,0.818,0.57c0.364,0.067,0.825-0.06,1.383-0.381
c0.573-0.332,0.929-0.687,1.065-1.064c0.137-0.379,0.108-0.736-0.086-1.074c-0.188-0.324-0.474-0.525-0.857-0.603
C273.223,79.49,272.782,79.593,272.285,79.88z"/>
<path fill="#FFFFFF" d="M282.677,84.297c0.493,0.854,0.574,1.697,0.242,2.53c-0.391,0.99-1.422,1.967-3.094,2.933
c-1.668,0.963-3.032,1.366-4.096,1.21c-0.877-0.129-1.562-0.621-2.056-1.475c-0.495-0.858-0.564-1.74-0.208-2.646
s1.38-1.848,3.073-2.824c1.658-0.958,3.021-1.359,4.084-1.203C281.499,82.951,282.184,83.443,282.677,84.297z M281.275,85.107
c-0.118-0.205-0.288-0.35-0.512-0.435c-0.223-0.085-0.527-0.075-0.915,0.031c-0.505,0.136-1.273,0.503-2.309,1.1
c-1.034,0.597-1.714,1.06-2.041,1.388c-0.326,0.328-0.509,0.607-0.545,0.84c-0.037,0.232,0.003,0.451,0.122,0.655
c0.117,0.204,0.288,0.35,0.511,0.435s0.528,0.074,0.917-0.031c0.5-0.135,1.266-0.5,2.301-1.097
c1.034-0.597,1.715-1.06,2.041-1.388c0.326-0.327,0.51-0.607,0.549-0.842C281.434,85.53,281.394,85.311,281.275,85.107z"/>
</g>
</g>
<g id="Layer_3">
<rect id="rect5769" y="153.455" fill="none" width="288" height="6.4"/>
</g>
<g id="Layer_2">
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="144.1" y1="23.855" x2="144.1" y2="16.355"/>
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="108.9" y1="28.455" x2="107" y2="21.255"/>
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="76.1" y1="41.955" x2="72.4" y2="35.455"/>
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="47.9" y1="63.555" x2="42.7" y2="58.355"/>
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="26.3" y1="91.755" x2="19.8" y2="88.055"/>
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="179.3" y1="28.455" x2="181.2" y2="21.255"/>
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="212.1" y1="42.155" x2="215.8" y2="35.655"/>
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="240.3" y1="63.755" x2="245.5" y2="58.555"/>
<line fill="none" stroke="#FFFFFF" stroke-width="4" x1="261.9" y1="91.955" x2="268.4" y2="88.255"/>
<path fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel" d="M262.4,92.955
c-11.6-20.6-28.6-37.9-48.9-50s-44.1-19.1-69.5-19.1s-49.2,6.9-69.4,19s-37.2,29.3-48.9,50"/>
</g>
</svg>
......@@ -2,18 +2,15 @@
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 288 288 129.6" enable-background="new 0 288 288 129.6" xml:space="preserve">
<g id="svg5772" sodipodi:docname="rollPointer.svg" inkscape:version="0.48.2 r9819" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
<g id="svg5772" inkscape:version="0.48.2 r9819" sodipodi:docname="rollPointer.svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
<sodipodi:namedview inkscape:window-x="0" inkscape:window-width="1920" inkscape:window-height="1152" inkscape:pageopacity="0.0" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:current-layer="layer5" inkscape:window-y="22" inkscape:window-maximized="1" inkscape:showpageshadow="false" inkscape:guide-bbox="true" id="base" showguides="true" inkscape:zoom="3" borderopacity="1.0" inkscape:cy="66.806039" bordercolor="#666666" pagecolor="#ffffff" showgrid="true" inkscape:cx="74.271777">
<inkscape:grid type="xygrid" snapvisiblegridlinesonly="true" id="grid5780" empspacing="5" visible="true" enabled="true">
<sodipodi:namedview id="base" inkscape:current-layer="layer5" inkscape:showpageshadow="false" inkscape:document-units="px" inkscape:window-width="1920" inkscape:window-y="22" inkscape:window-maximized="1" inkscape:guide-bbox="true" inkscape:window-height="1152" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-x="0" pagecolor="#ffffff" inkscape:zoom="3" inkscape:cx="74.271777" inkscape:cy="66.806039" bordercolor="#666666" showgrid="true" showguides="true" borderopacity="1.0">
<inkscape:grid type="xygrid" id="grid5780" snapvisiblegridlinesonly="true" empspacing="5" enabled="true" visible="true">
</inkscape:grid>
</sodipodi:namedview>
<rect id="rect5782" y="405.5" fill="none" width="288" height="12.1"/>
<path id="path6692" inkscape:connector-curvature="0" fill="#9F0022" d="M137.9,312.4C144,288,144,288,144,288l6.1,24.4l0,0H137.9z
"/>
</g>
<g id="Layer_2">
<path id="path6692_1_" inkscape:connector-curvature="0" opacity="0.5" fill="none" stroke="#FFFFFF" d="M137.7,312.8
c6.3-25.2,6.3-25.2,6.3-25.2l6.3,25.2l0,0H137.7z"/>
<path id="path6692_1_" inkscape:connector-curvature="0" d="M135,313.2c9-25.2,9-25.2,9-25.2l9,25.2l0,0H135z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 288 288 129.6" enable-background="new 0 288 288 129.6" xml:space="preserve">
<g id="svg5772" sodipodi:docname="rollPointer.svg" inkscape:version="0.48.2 r9819" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<sodipodi:namedview inkscape:window-height="1152" inkscape:window-width="1920" inkscape:document-units="px" inkscape:showpageshadow="false" inkscape:current-layer="layer5" inkscape:window-x="0" inkscape:guide-bbox="true" inkscape:pageshadow="2" inkscape:window-maximized="1" inkscape:pageopacity="0.0" inkscape:window-y="22" bordercolor="#666666" borderopacity="1.0" inkscape:cy="66.806039" showguides="true" inkscape:cx="74.271777" id="base" pagecolor="#ffffff" inkscape:zoom="3" showgrid="true">
<inkscape:grid type="xygrid" snapvisiblegridlinesonly="true" visible="true" enabled="true" empspacing="5" id="grid5780">
</inkscape:grid>
</sodipodi:namedview>
<rect id="rect5782" y="405.5" fill="none" width="288" height="12.1"/>
</g>
<g id="Layer_2">
<path id="path6692_1_" inkscape:connector-curvature="0" fill="#FFFFFF" d="M135,313.2c9-25.2,9-25.2,9-25.2l9,25.2l0,0H135z"/>
</g>
</svg>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment