Commit 701e260b authored by Dan Pascu's avatar Dan Pascu

Added session information panel into the chat window

parent 4e0aa19e
This diff is collapsed.
This diff is collapsed.
# Copyright (c) 2014 AG Projects. See LICENSE for details.
#
__all__ = ['SlidingStackedWidget']
from PyQt4.QtCore import QEasingCurve, QParallelAnimationGroup, QPropertyAnimation, QPoint, pyqtSignal
from PyQt4.QtGui import QStackedWidget
from blink.widgets.util import QtDynamicProperty
class SlidingStackedWidget(QStackedWidget):
animationEasingCurve = QtDynamicProperty('animationEasingCurve', int)
animationDuration = QtDynamicProperty('animationDuration', int)
verticalMode = QtDynamicProperty('verticalMode', bool)
wrap = QtDynamicProperty('wrap', bool)
animationFinished = pyqtSignal()
LeftToRight, RightToLeft, TopToBottom, BottomToTop, Automatic = range(5)
def __init__(self, parent=None):
super(SlidingStackedWidget, self).__init__(parent)
self.animationEasingCurve = QEasingCurve.Linear
self.animationDuration = 250
self.verticalMode = False
self.wrap = False
self._active = False
self._animation_group = QParallelAnimationGroup()
self._animation_group.finished.connect(self._SH_AnimationGroupFinished)
def slideInNext(self):
next_index = self.currentIndex() + 1
if self.wrap or next_index < self.count():
self.slideInIndex(next_index % self.count(), direction=self.BottomToTop if self.verticalMode else self.RightToLeft)
def slideInPrev(self):
previous_index = self.currentIndex() - 1
if self.wrap or previous_index >= 0:
self.slideInIndex(previous_index % self.count(), direction=self.TopToBottom if self.verticalMode else self.LeftToRight)
def slideInIndex(self, index, direction=Automatic):
self.slideInWidget(self.widget(index), direction)
def slideInWidget(self, widget, direction=Automatic):
if self.indexOf(widget) == -1 or widget is self.currentWidget():
return
if self._active:
return
self._active = True
prev_widget = self.currentWidget()
next_widget = widget
if direction == self.Automatic:
if self.indexOf(prev_widget) < self.indexOf(next_widget):
direction = self.BottomToTop if self.verticalMode else self.RightToLeft
else:
direction = self.TopToBottom if self.verticalMode else self.LeftToRight
width = self.frameRect().width()
height = self.frameRect().height()
# the following is important, to ensure that the new widget has correct geometry information when sliding in the first time
next_widget.setGeometry(0, 0, width, height)
if direction in (self.TopToBottom, self.BottomToTop):
offset = QPoint(0, height if direction==self.TopToBottom else -height)
elif direction in (self.LeftToRight, self.RightToLeft):
offset = QPoint(width if direction==self.LeftToRight else -width, 0)
# re-position the next widget outside of the display area
prev_widget_position = prev_widget.pos()
next_widget_position = next_widget.pos()
next_widget.move(next_widget_position - offset)
next_widget.show()
next_widget.raise_()
prev_widget_animation = QPropertyAnimation(prev_widget, "pos")
prev_widget_animation.setDuration(self.animationDuration)
prev_widget_animation.setEasingCurve(QEasingCurve(self.animationEasingCurve))
prev_widget_animation.setStartValue(prev_widget_position)
prev_widget_animation.setEndValue(prev_widget_position + offset)
next_widget_animation = QPropertyAnimation(next_widget, "pos")
next_widget_animation.setDuration(self.animationDuration)
next_widget_animation.setEasingCurve(QEasingCurve(self.animationEasingCurve))
next_widget_animation.setStartValue(next_widget_position - offset)
next_widget_animation.setEndValue(next_widget_position)
self._animation_group.clear()
self._animation_group.addAnimation(prev_widget_animation)
self._animation_group.addAnimation(next_widget_animation)
self._animation_group.start()
def _SH_AnimationGroupFinished(self):
prev_widget_animation = self._animation_group.animationAt(0)
next_widget_animation = self._animation_group.animationAt(1)
prev_widget = prev_widget_animation.targetObject()
next_widget = next_widget_animation.targetObject()
self.setCurrentWidget(next_widget)
prev_widget.hide() # this may have been done already by QStackedWidget when changing the current widget above -Dan
prev_widget.move(prev_widget_animation.startValue()) # move the outshifted widget back to its original position
self._animation_group.clear()
self._active = False
self.animationFinished.emit()
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
id="svg7357"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="downloads16-arrow.svg"
enable-background="new">
<defs
id="defs7359">
<filter
inkscape:collect="always"
id="filter3767">
<feBlend
inkscape:collect="always"
mode="multiply"
in2="BackgroundImage"
id="feBlend3769" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="44.4375"
inkscape:cx="4.3656821"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="g4409"
showgrid="true"
inkscape:window-width="1301"
inkscape:window-height="921"
inkscape:window-x="179"
inkscape:window-y="0"
inkscape:window-maximized="0"
showguides="true"
inkscape:guide-bbox="true">
<inkscape:grid
type="xygrid"
id="grid7365"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingy="0.5px"
spacingx="0.5px" />
<sodipodi:guide
orientation="0,1"
position="2,8"
id="guide3773" />
</sodipodi:namedview>
<metadata
id="metadata7362">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Downloads arrow"
inkscape:groupmode="layer"
id="g4409"
transform="translate(0,-1036.3622)"
style="display:inline;filter:url(#filter3767)">
<rect
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6"
id="rect4417"
width="2.9999068"
height="10"
x="6.5000467"
y="1036.8622"
ry="0"
rx="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:1.6"
d="M 14,1042.8622 8.0000001,1051.8621 2,1042.8622 z"
id="path4415"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
id="svg7357"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="info16-letter.svg"
enable-background="new">
<defs
id="defs7359">
<filter
inkscape:collect="always"
id="filter3767">
<feBlend
inkscape:collect="always"
mode="multiply"
in2="BackgroundImage"
id="feBlend3769" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="44.4375"
inkscape:cx="6.9669334"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="g3890"
showgrid="true"
inkscape:window-width="1301"
inkscape:window-height="921"
inkscape:window-x="206"
inkscape:window-y="104"
inkscape:window-maximized="0"
showguides="true"
inkscape:guide-bbox="true">
<inkscape:grid
type="xygrid"
id="grid7365"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingy="0.5px"
spacingx="0.5px" />
</sodipodi:namedview>
<metadata
id="metadata7362">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline;filter:url(#filter3767)"
transform="translate(0,-1036.3622)"
id="g3890"
inkscape:groupmode="layer"
inkscape:label="Info">
<text
transform="scale(1.0445226,0.95737516)"
sodipodi:linespacing="125%"
id="text3894"
y="1099.1454"
x="3.746093"
style="font-size:23.57173729000000151px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;opacity:0.97000001999999996;fill:#ffffff;fill-opacity:1;stroke:none;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L Bold"
xml:space="preserve"><tspan
y="1099.1454"
x="3.746093"
id="tspan3896"
sodipodi:role="line">i</tspan></text>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="12"
height="12"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="lock-blue-12.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="74.666667"
inkscape:cx="4.3794643"
inkscape:cy="6"
inkscape:document-units="px"
inkscape:current-layer="g7515"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1578"
inkscape:window-height="1106"
inkscape:window-x="131"
inkscape:window-y="42"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
<sodipodi:guide
orientation="0,1"
position="-1,6"
id="guide2987" />
<sodipodi:guide
orientation="1,0"
position="6,6.5"
id="guide2989" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(0,-1040.3622)"
id="g7515"
inkscape:groupmode="layer"
inkscape:label="Lock blue">
<path
style="fill:none;stroke:#0055aa;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
id="path7517"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1046.8622"
x="2.5"
height="4"
width="7"
id="rect7519"
style="fill:#0076ee;fill-opacity:1;fill-rule:nonzero;stroke:#0055aa;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="12"
height="12"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="lock-green-12.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="74.666667"
inkscape:cx="4.3794643"
inkscape:cy="6"
inkscape:document-units="px"
inkscape:current-layer="g5403"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1578"
inkscape:window-height="1106"
inkscape:window-x="131"
inkscape:window-y="42"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
<sodipodi:guide
orientation="0,1"
position="-1,6"
id="guide2987" />
<sodipodi:guide
orientation="1,0"
position="6,6.5"
id="guide2989" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(0,-1040.3622)"
id="g5403"
inkscape:groupmode="layer"
inkscape:label="Lock green">
<path
style="fill:none;stroke:#008000;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
id="path5405"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1046.8622"
x="2.5"
height="4"
width="7"
id="rect5407"
style="fill:#00c000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.60000000000000009" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="12"
height="12"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="lock-grey-12.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="74.666667"
inkscape:cx="4.3794643"
inkscape:cy="6"
inkscape:document-units="px"
inkscape:current-layer="g3874"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1578"
inkscape:window-height="1106"
inkscape:window-x="131"
inkscape:window-y="42"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
<sodipodi:guide
orientation="0,1"
position="-1,6"
id="guide2987" />
<sodipodi:guide
orientation="1,0"
position="6,6.5"
id="guide2989" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lock grey"
inkscape:groupmode="layer"
id="g3874"
transform="translate(0,-1040.3622)"
style="display:inline">
<path
sodipodi:nodetypes="csaasc"
inkscape:connector-curvature="0"
id="path3876"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
style="fill:none;stroke:#333333;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<rect
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6"
id="rect3878"
width="7"
height="4"
x="2.5"
y="1046.8622" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="12"
height="12"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="lock-orange-12.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="74.666667"
inkscape:cx="4.3794643"
inkscape:cy="6"
inkscape:document-units="px"
inkscape:current-layer="g6866"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1578"
inkscape:window-height="1106"
inkscape:window-x="131"
inkscape:window-y="42"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
<sodipodi:guide
orientation="0,1"
position="-1,6"
id="guide2987" />
<sodipodi:guide
orientation="1,0"
position="6,6.5"
id="guide2989" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lock orange"
inkscape:groupmode="layer"
id="g6866"
transform="translate(0,-1040.3622)"
style="display:inline">
<path
sodipodi:nodetypes="csaasc"
inkscape:connector-curvature="0"
id="path6868"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
style="fill:none;stroke:#aa5500;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<rect
style="fill:#ee7600;fill-opacity:1;fill-rule:nonzero;stroke:#aa5500;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.60000000000000009"
id="rect6870"
width="7"
height="4"
x="2.5"
y="1046.8622" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="12"
height="12"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="lock-red-12.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="74.666667"
inkscape:cx="4.3794643"
inkscape:cy="6"
inkscape:document-units="px"
inkscape:current-layer="g7033"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1578"
inkscape:window-height="1106"
inkscape:window-x="131"
inkscape:window-y="42"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
<sodipodi:guide
orientation="0,1"
position="-1,6"
id="guide2987" />
<sodipodi:guide
orientation="1,0"
position="6,6.5"
id="guide2989" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(0,-1040.3622)"
id="g7033"
inkscape:groupmode="layer"
inkscape:label="Lock red">
<path
style="fill:none;stroke:#800000;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
id="path7035"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1046.8622"
x="2.5"
height="4"
width="7"
id="rect7037"
style="fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#800000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="16"
id="Layer_1"
version="1.1"
viewBox="0 0 16 16"
width="16"
x="0px"
xml:space="preserve"
y="0px"
inkscape:version="0.48.4 r9939"
sodipodi:docname="people.svg"
inkscape:label="Layer"><metadata
id="metadata19"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs17" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1575"
inkscape:window-height="1099"
id="namedview15"
showgrid="true"
inkscape:zoom="54.6875"
inkscape:cx="5.7691429"
inkscape:cy="8"
inkscape:window-x="133"
inkscape:window-y="24"
inkscape:window-maximized="0"
inkscape:current-layer="layer1"><inkscape:grid
type="xygrid"
id="grid3018"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" /></sodipodi:namedview><g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="Person"
style="display:inline"><path
d="m 13.364029,12.379035 c -0.644604,-0.216591 -1.697842,-0.283234 -2.158273,-0.455398 -0.322303,-0.122179 -0.834533,-0.249912 -0.995685,-0.44429 -0.166905,-0.188823 -0.166905,-1.5605687 -0.166905,-1.5605687 0,0 0.402877,-0.3609857 0.569783,-0.7664005 0.166907,-0.4054147 0.27626,-1.5050329 0.27626,-1.5050329 0,0 0.03453,0.011107 0.08633,0.011107 0.120864,0 0.339569,-0.07775 0.443166,-0.5886844 0.126618,-0.6275598 0.368345,-0.9552238 0.305036,-1.4161749 -0.04605,-0.3110031 -0.184173,-0.3609858 -0.264748,-0.3609858 -0.04029,0 -0.06907,0.011107 -0.06907,0.011107 0,0 0.328058,-0.4665047 0.328058,-2.054842 C 11.717988,1.6161056 10.411512,0.00555364 8.0000018,4.0000001e-8 5.5827357,0.00554704 4.2820167,1.6161056 4.2820167,3.2488719 c 0,1.5827837 0.3280576,2.054842 0.3280576,2.054842 0,0 -0.028776,-0.011107 -0.069064,-0.011107 -0.086331,0 -0.2244605,0.049983 -0.2647483,0.3609858 -0.06331,0.4609511 0.1726619,0.7941687 0.3050361,1.4161749 0.1035968,0.5109337 0.3223022,0.5886844 0.4431654,0.5886844 0.051798,0 0.086331,-0.011107 0.086331,-0.011107 0,0 0.1093525,1.1051718 0.276259,1.5050329 0.1669064,0.4054148 0.5697836,0.7664005 0.5697836,0.7664005 0,0 0,1.3717456 -0.1669065,1.5605686 C 5.6230213,11.668171 5.1165472,11.801458 4.794245,11.923637 4.3338133,12.095801 3.2805757,12.162444 2.6359714,12.379035 1.991367,12.595627 2.5e-8,13.500867 2.5e-8,16 H 16 c 0,-2.499133 -1.985612,-3.404373 -2.635971,-3.620965 z"
id="path9-4"
inkscape:connector-curvature="0"
style="fill:#f0f0f0;fill-opacity:1" /></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
id="svg4157"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="arrows.svg">
<defs
id="defs4159" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="52.9375"
inkscape:cx="4.9492326"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="g4922"
showgrid="true"
inkscape:window-width="1687"
inkscape:window-height="1057"
inkscape:window-x="15"
inkscape:window-y="1"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid4165"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
</sodipodi:namedview>
<metadata
id="metadata4162">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(0,-1036.3622)"
id="g4922"
inkscape:groupmode="layer"
inkscape:label="Up arrow light">
<path
inkscape:connector-curvature="0"
id="path4924"
d="m 2.7,1047.6622 5.2999994,-5.6 5.3000006,5.6"
style="fill:none;stroke:#727272;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4926"
d="m 2.7000001,1046.6622 5.2999992,-5.6 5.3000007,5.6"
style="fill:none;stroke:#c6c6c6;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<g
inkscape:label="Down arrow light "
inkscape:groupmode="layer"
id="g5036"
transform="translate(0,-1036.3622)"
style="display:none">
<path
style="fill:none;stroke:#727272;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2.7,1043.0622 5.2999994,5.6 5.3000006,-5.6"
id="path5038"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#c6c6c6;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2.7000001,1042.0622 5.2999992,5.6 5.3000007,-5.6"
id="path5040"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:label="Left arrow light"
inkscape:groupmode="layer"
id="g5042"
transform="translate(0,-1036.3622)"
style="display:none">
<path
style="fill:none;stroke:#727272;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 9.8,1050.1622 -5.6,-5.3 5.6,-5.3"
id="path5044"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#c6c6c6;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 9.8,1049.1622 -5.6,-5.3 5.6,-5.3"
id="path5046"
inkscape:connector-curvature="0" />
</g>
<g
style="display:none"
transform="translate(0,-1036.3622)"
id="g5054"
inkscape:groupmode="layer"
inkscape:label="Right arrow light">
<path
inkscape:connector-curvature="0"
id="path5056"
d="m 6.2,1050.1622 5.6,-5.3 -5.6,-5.3"
style="fill:none;stroke:#727272;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path5058"
d="m 6.2,1049.1622 5.6,-5.3 -5.6,-5.3"
style="fill:none;stroke:#c6c6c6;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<g
inkscape:label="Up arrow light #2"
inkscape:groupmode="layer"
id="g4751"
transform="translate(0,-1036.3622)"
style="display:none">
<path
style="fill:none;stroke:#727272;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2.6999999,1047.9122 5.299999,-5.6 5.3000001,5.6"
id="path4753"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#c6c6c6;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2.7000004,1046.4122 5.2999994,-5.6 5.3000002,5.6"
id="path4755"
inkscape:connector-curvature="0" />
</g>
</svg>
This diff is collapsed.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
id="svg7357"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="info.svg"
enable-background="new">
<defs
id="defs7359">
<filter
inkscape:collect="always"
id="filter3767">
<feBlend
inkscape:collect="always"
mode="multiply"
in2="BackgroundImage"
id="feBlend3769" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="44.4375"
inkscape:cx="8"
inkscape:cy="7.0998594"
inkscape:document-units="px"
inkscape:current-layer="g3890"
showgrid="true"
inkscape:window-width="1301"
inkscape:window-height="921"
inkscape:window-x="179"
inkscape:window-y="0"
inkscape:window-maximized="0"
showguides="true"
inkscape:guide-bbox="true">
<inkscape:grid
type="xygrid"
id="grid7365"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingy="0.5px"
spacingx="0.5px" />
</sodipodi:namedview>
<metadata
id="metadata7362">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Info"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)"
style="display:none;filter:url(#filter3767)">
<path
sodipodi:type="arc"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path7367"
sodipodi:cx="7.5"
sodipodi:cy="8.5"
sodipodi:rx="5.5"
sodipodi:ry="5.5"
d="m 13,8.5 a 5.5,5.5 0 1 1 -11,0 5.5,5.5 0 1 1 11,0 z"
transform="matrix(1.0909091,0,0,1.0909091,-0.18181825,1035.0895)" />
<text
xml:space="preserve"
style="font-size:11.98871613px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;opacity:0.97000002;fill:#000000;fill-opacity:1;stroke:none;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L Bold"
x="6.0098729"
y="1048.5763"
id="text3763"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3765"
x="6.0098729"
y="1048.5763">i</tspan></text>
</g>
<g
style="display:none;filter:url(#filter3767)"
transform="translate(0,-1036.3622)"
id="g3759"
inkscape:groupmode="layer"
inkscape:label="Info 2">
<path
transform="matrix(1.4545455,0,0,1.4545455,-2.9090913,1031.9986)"
d="m 13,8.5 a 5.5,5.5 0 1 1 -11,0 5.5,5.5 0 1 1 11,0 z"
sodipodi:ry="5.5"
sodipodi:rx="5.5"
sodipodi:cy="8.5"
sodipodi:cx="7.5"
id="path3761"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text3764"
y="1061.6149"
x="5.4226074"
style="font-size:14.97957802px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;opacity:0.97000002;fill:#000000;fill-opacity:1;stroke:none;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L Bold"
xml:space="preserve"
transform="scale(1.0114781,0.98865214)"><tspan
y="1061.6149"
x="5.4226074"
id="tspan3766"
sodipodi:role="line">i</tspan></text>
</g>
<g
inkscape:label="Info 3"
inkscape:groupmode="layer"
id="g3768"
transform="translate(0,-1036.3622)"
style="display:none;filter:url(#filter3767)">
<path
sodipodi:type="arc"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3770"
sodipodi:cx="7.5"
sodipodi:cy="8.5"
sodipodi:rx="5.5"
sodipodi:ry="5.5"
d="m 13,8.5 a 5.5,5.5 0 1 1 -11,0 5.5,5.5 0 1 1 11,0 z"
transform="matrix(1.2727273,0,0,1.2727273,-1.5454547,1033.544)" />
<text
xml:space="preserve"
style="font-size:14.61857033px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;opacity:0.97000002;fill:#000000;fill-opacity:1;stroke:none;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L Bold"
x="5.2919226"
y="1087.5747"
id="text3772"
sodipodi:linespacing="125%"
transform="scale(1.0364567,0.96482565)"><tspan
sodipodi:role="line"
id="tspan3774"
x="5.2919226"
y="1087.5747">i</tspan></text>
</g>
<g
style="display:inline;filter:url(#filter3767)"
transform="translate(0,-1036.3622)"
id="g3890"
inkscape:groupmode="layer"
inkscape:label="Info letter">
<text
transform="scale(1.0445226,0.95737516)"
sodipodi:linespacing="125%"
id="text3894"
y="1099.1454"
x="3.746093"
style="font-size:23.57173729000000151px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;opacity:0.97000001999999996;fill:#ffffff;fill-opacity:1;stroke:none;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L Bold"
xml:space="preserve"><tspan
y="1099.1454"
x="3.746093"
id="tspan3896"
sodipodi:role="line">i</tspan></text>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
height="32"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="lock.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="28"
inkscape:cx="16"
inkscape:cy="16"
inkscape:document-units="px"
inkscape:current-layer="g3874"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1578"
inkscape:window-height="1106"
inkscape:window-x="131"
inkscape:window-y="42"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:none"
transform="translate(0,-1020.3622)"
id="g3974"
inkscape:groupmode="layer"
inkscape:label="Lock grey open">
<path
style="fill:none;stroke:#333333;stroke-width:3.36001468;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 21.740024,1037.4822 0,-8.9348 c 0,-1.5781 -1.490612,-3.1601 -2.943602,-3.8825 -1.670034,-0.8302 -3.92281,-0.8302 -5.592844,0 -1.45299,0.7224 -2.943602,2.3044 -2.943602,3.8825"
id="path3976"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaac" />
<rect
y="1037.7622"
x="6.1999588"
height="11.200047"
width="19.600082"
id="rect3978"
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:2.80001187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
<g
inkscape:label="Lock grey"
inkscape:groupmode="layer"
id="g3874"
transform="translate(0,-1020.3622)"
style="display:inline">
<path
sodipodi:nodetypes="csaasc"
inkscape:connector-curvature="0"
id="path3876"
d="m 21.740024,1037.4822 0,-8.9348 c 0,-1.5781 -1.490612,-3.1601 -2.943602,-3.8825 -1.670034,-0.8302 -3.92281,-0.8302 -5.592844,0 -1.45299,0.7224 -2.943602,2.3044 -2.943602,3.8825 l 0,8.9348"
style="fill:none;stroke:#333333;stroke-width:3.36001468;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<rect
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:2.79999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6"
id="rect3878"
width="19.600082"
height="11.200047"
x="6.1999588"
y="1037.7622" />
</g>
<g
style="display:none"
transform="translate(0,-1020.3622)"
id="g5403"
inkscape:groupmode="layer"
inkscape:label="Lock green">
<path
style="fill:none;stroke:#008000;stroke-width:3.36001468;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 21.740024,1037.4822 0,-8.9348 c 0,-1.5781 -1.490612,-3.1601 -2.943602,-3.8825 -1.670034,-0.8302 -3.92281,-0.8302 -5.592844,0 -1.45299,0.7224 -2.943602,2.3044 -2.943602,3.8825 l 0,8.9348"
id="path5405"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1037.7622"
x="6.1999588"
height="11.200047"
width="19.600082"
id="rect5407"
style="fill:#00c000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:2.80001187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
<g
style="display:none"
transform="translate(0,-1020.3622)"
id="g7515"
inkscape:groupmode="layer"
inkscape:label="Lock blue">
<path
style="fill:none;stroke:#0055aa;stroke-width:3.36001468;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 21.740024,1037.4822 0,-8.9348 c 0,-1.5781 -1.490612,-3.1601 -2.943602,-3.8825 -1.670034,-0.8302 -3.92281,-0.8302 -5.592844,0 -1.45299,0.7224 -2.943602,2.3044 -2.943602,3.8825 l 0,8.9348"
id="path7517"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1037.7622"
x="6.1999588"
height="11.200047"
width="19.600082"
id="rect7519"
style="fill:#0076ee;fill-opacity:1;fill-rule:nonzero;stroke:#0055aa;stroke-width:2.80001187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
<g
inkscape:label="Lock orange"
inkscape:groupmode="layer"
id="g6866"
transform="translate(0,-1020.3622)"
style="display:none">
<path
sodipodi:nodetypes="csaasc"
inkscape:connector-curvature="0"
id="path6868"
d="m 21.740024,1037.4822 0,-8.9348 c 0,-1.5781 -1.490612,-3.1601 -2.943602,-3.8825 -1.670034,-0.8302 -3.92281,-0.8302 -5.592844,0 -1.45299,0.7224 -2.943602,2.3044 -2.943602,3.8825 l 0,8.9348"
style="fill:none;stroke:#aa5500;stroke-width:3.36001468;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<rect
style="fill:#ee7600;fill-opacity:1;fill-rule:nonzero;stroke:#aa5500;stroke-width:2.80001187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6"
id="rect6870"
width="19.600082"
height="11.200047"
x="6.1999588"
y="1037.7622" />
</g>
<g
style="display:none"
transform="translate(0,-1020.3622)"
id="g7033"
inkscape:groupmode="layer"
inkscape:label="Lock red">
<path
style="fill:none;stroke:#800000;stroke-width:3.36001468;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 21.740024,1037.4822 0,-8.9348 c 0,-1.5781 -1.490612,-3.1601 -2.943602,-3.8825 -1.670034,-0.8302 -3.92281,-0.8302 -5.592844,0 -1.45299,0.7224 -2.943602,2.3044 -2.943602,3.8825 l 0,8.9348"
id="path7035"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1037.7622"
x="6.1999588"
height="11.200047"
width="19.600082"
id="rect7037"
style="fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#800000;stroke-width:2.80001187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
<g
style="display:none"
transform="translate(0,-1020.3622)"
id="g7832"
inkscape:groupmode="layer"
inkscape:label="Lock grey copy">
<g
id="g3961"
transform="matrix(2.6666761,0,0,2.6666761,-5.66e-5,-1753.9469)">
<path
sodipodi:nodetypes="csaasc"
inkscape:connector-curvature="0"
id="path7834"
d="m 8.6,1046.7622 0,-4.191 c 0,-0.5636 -0.6751873,-1.1286 -1.3333336,-1.3866 -0.7564579,-0.2965 -1.7768752,-0.2965 -2.5333329,0 C 4.0751872,1041.4426 3.4,1042.0076 3.4,1042.5712 l 0,4.191"
style="fill:none;stroke:#333333;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<rect
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6"
id="rect7836"
width="9"
height="5"
x="1.5"
y="1046.8622" />
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="12"
height="12"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="lock12.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="74.666667"
inkscape:cx="6"
inkscape:cy="6"
inkscape:document-units="px"
inkscape:current-layer="g3874"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1578"
inkscape:window-height="1106"
inkscape:window-x="131"
inkscape:window-y="42"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
<sodipodi:guide
orientation="0,1"
position="-1,6"
id="guide2987" />
<sodipodi:guide
orientation="1,0"
position="6,6.5"
id="guide2989" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:none"
transform="translate(0,-1040.3622)"
id="g3974"
inkscape:groupmode="layer"
inkscape:label="Lock grey open">
<path
style="fill:none;stroke:#333333;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866"
id="path3976"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaac" />
<rect
y="1046.8622"
x="2.5"
height="4"
width="7"
id="rect3978"
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
<g
inkscape:label="Lock grey"
inkscape:groupmode="layer"
id="g3874"
transform="translate(0,-1040.3622)"
style="display:inline">
<path
sodipodi:nodetypes="csaasc"
inkscape:connector-curvature="0"
id="path3876"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
style="fill:none;stroke:#333333;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<rect
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6"
id="rect3878"
width="7"
height="4"
x="2.5"
y="1046.8622" />
</g>
<g
style="display:none"
transform="translate(0,-1040.3622)"
id="g5403"
inkscape:groupmode="layer"
inkscape:label="Lock green">
<path
style="fill:none;stroke:#008000;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
id="path5405"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1046.8622"
x="2.5"
height="4"
width="7"
id="rect5407"
style="fill:#00c000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
<g
style="display:none"
transform="translate(0,-1040.3622)"
id="g7515"
inkscape:groupmode="layer"
inkscape:label="Lock blue">
<path
style="fill:none;stroke:#0055aa;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
id="path7517"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1046.8622"
x="2.5"
height="4"
width="7"
id="rect7519"
style="fill:#0076ee;fill-opacity:1;fill-rule:nonzero;stroke:#0055aa;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
<g
inkscape:label="Lock orange"
inkscape:groupmode="layer"
id="g6866"
transform="translate(0,-1040.3622)"
style="display:none">
<path
sodipodi:nodetypes="csaasc"
inkscape:connector-curvature="0"
id="path6868"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
style="fill:none;stroke:#aa5500;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<rect
style="fill:#ee7600;fill-opacity:1;fill-rule:nonzero;stroke:#aa5500;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6"
id="rect6870"
width="7"
height="4"
x="2.5"
y="1046.8622" />
</g>
<g
style="display:none"
transform="translate(0,-1040.3622)"
id="g7033"
inkscape:groupmode="layer"
inkscape:label="Lock red">
<path
style="fill:none;stroke:#800000;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 8.0500001,1046.7622 0,-3.191 c 0,-0.5636 -0.5323592,-1.1286 -1.0512822,-1.3866 -0.596438,-0.2965 -1.4009978,-0.2965 -1.9974358,0 -0.518923,0.258 -1.0512821,0.823 -1.0512821,1.3866 l 0,3.191"
id="path7035"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1046.8622"
x="2.5"
height="4"
width="7"
id="rect7037"
style="fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#800000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
<g
style="display:none"
transform="translate(0,-1040.3622)"
id="g7832"
inkscape:groupmode="layer"
inkscape:label="Lock grey copy">
<path
style="fill:none;stroke:#333333;stroke-width:1.20000017;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 8.6,1046.7622 0,-4.191 c 0,-0.5636 -0.6751873,-1.1286 -1.3333336,-1.3866 -0.7564579,-0.2965 -1.7768752,-0.2965 -2.5333329,0 C 4.0751872,1041.4426 3.4,1042.0076 3.4,1042.5712 l 0,4.191"
id="path7834"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csaasc" />
<rect
y="1046.8622"
x="1.5"
height="5"
width="9"
id="rect7836"
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
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="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="16"
id="Layer_1"
version="1.1"
viewBox="0 0 16 16"
width="16"
x="0px"
xml:space="preserve"
y="0px"
inkscape:version="0.48.4 r9939"
sodipodi:docname="people.svg"
inkscape:label="Layer"><metadata
id="metadata19"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs17" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1575"
inkscape:window-height="1099"
id="namedview15"
showgrid="true"
inkscape:zoom="54.6875"
inkscape:cx="7.9817143"
inkscape:cy="8"
inkscape:window-x="133"
inkscape:window-y="24"
inkscape:window-maximized="0"
inkscape:current-layer="layer1"><inkscape:grid
type="xygrid"
id="grid3018"
empspacing="10"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" /></sodipodi:namedview><g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="Person"
style="display:inline"><path
d="m 13.364029,12.379035 c -0.644604,-0.216591 -1.697842,-0.283234 -2.158273,-0.455398 -0.322303,-0.122179 -0.834533,-0.249912 -0.995685,-0.44429 -0.166905,-0.188823 -0.166905,-1.5605687 -0.166905,-1.5605687 0,0 0.402877,-0.3609857 0.569783,-0.7664005 0.166907,-0.4054147 0.27626,-1.5050329 0.27626,-1.5050329 0,0 0.03453,0.011107 0.08633,0.011107 0.120864,0 0.339569,-0.07775 0.443166,-0.5886844 0.126618,-0.6275598 0.368345,-0.9552238 0.305036,-1.4161749 -0.04605,-0.3110031 -0.184173,-0.3609858 -0.264748,-0.3609858 -0.04029,0 -0.06907,0.011107 -0.06907,0.011107 0,0 0.328058,-0.4665047 0.328058,-2.054842 C 11.717988,1.6161056 10.411512,0.00555364 8.0000018,4.0000001e-8 5.5827357,0.00554704 4.2820167,1.6161056 4.2820167,3.2488719 c 0,1.5827837 0.3280576,2.054842 0.3280576,2.054842 0,0 -0.028776,-0.011107 -0.069064,-0.011107 -0.086331,0 -0.2244605,0.049983 -0.2647483,0.3609858 -0.06331,0.4609511 0.1726619,0.7941687 0.3050361,1.4161749 0.1035968,0.5109337 0.3223022,0.5886844 0.4431654,0.5886844 0.051798,0 0.086331,-0.011107 0.086331,-0.011107 0,0 0.1093525,1.1051718 0.276259,1.5050329 0.1669064,0.4054148 0.5697836,0.7664005 0.5697836,0.7664005 0,0 0,1.3717456 -0.1669065,1.5605686 C 5.6230213,11.668171 5.1165472,11.801458 4.794245,11.923637 4.3338133,12.095801 3.2805757,12.162444 2.6359714,12.379035 1.991367,12.595627 2.5e-8,13.500867 2.5e-8,16 H 16 c 0,-2.499133 -1.985612,-3.404373 -2.635971,-3.620965 z"
id="path9-4"
inkscape:connector-curvature="0"
style="fill:#f0f0f0;fill-opacity:1" /></g><g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Person 2"
style="display:none"><path
sodipodi:type="arc"
style="fill:#f0f0f0;fill-opacity:1;fill-rule:nonzero;stroke:#f0f0f0;stroke-width:0.26457518;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6;display:inline"
id="path5460"
sodipodi:cx="2.5"
sodipodi:cy="4.25"
sodipodi:rx="1.5"
sodipodi:ry="1.75"
d="m 1,4.2499999 a 1.5,1.75 0 0 1 3,1e-7 l -1.5,0 z"
transform="matrix(4.9999999,0,0,2.8571428,-4.4999998,3.357143)"
sodipodi:start="3.1415927"
sodipodi:end="6.2831853" /><path
sodipodi:type="arc"
style="fill:#f0f0f0;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
id="path4906"
sodipodi:cx="6"
sodipodi:cy="2.5"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 8.5,2.5 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z"
transform="matrix(1.8,0,0,1.8,-2.8,0)" /><rect
style="fill:#f0f0f0;fill-opacity:1;fill-rule:nonzero;stroke:#f0f0f0;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6;display:inline"
id="rect5512"
width="3"
height="7"
x="6.5"
y="4.5"
rx="0.66666669"
ry="0.32408535" /></g><g
style="display:none"
inkscape:label="Person 3"
id="g4045"
inkscape:groupmode="layer"><path
sodipodi:end="6.2831853"
sodipodi:start="3.1415927"
transform="matrix(4.9999999,0,0,2.8571428,-4.4999998,3.357143)"
d="m 1,4.2499999 a 1.5,1.75 0 0 1 3,1e-7 l -1.5,0 z"
sodipodi:ry="1.75"
sodipodi:rx="1.5"
sodipodi:cy="4.25"
sodipodi:cx="2.5"
id="path4047"
style="fill:#f0f0f0;fill-opacity:1;fill-rule:nonzero;stroke:#f0f0f0;stroke-width:0.26457518;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.6;display:inline"
sodipodi:type="arc" /><path
transform="matrix(1.8,0,0,1.8,-2.8,0)"
d="m 8.5,2.5 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z"
sodipodi:ry="2.5"
sodipodi:rx="2.5"
sodipodi:cy="2.5"
sodipodi:cx="6"
id="path4049"
style="fill:#f0f0f0;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
sodipodi:type="arc" /></g></svg>
\ No newline at end of file
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