Merge branch 'master' of ssh://git.code.sf.net/p/free-cad/code
|
@ -467,6 +467,8 @@ class _ArchWindowTaskPanel:
|
|||
t = WindowPartTypes[0]
|
||||
else:
|
||||
t = str(getattr(self,"field"+str(i+1)).text())
|
||||
if t in WindowPartTypes:
|
||||
t = t + "_" # avoiding part names similar to types
|
||||
if t == "":
|
||||
if not(i in [1,5]):
|
||||
ok = False
|
||||
|
|
|
@ -409,7 +409,17 @@ def select(objs=None):
|
|||
def loadSvgPatterns():
|
||||
"loads the default Draft SVG patterns and custom patters if available"
|
||||
import importSVG
|
||||
FreeCAD.svgpatterns = importSVG.getContents(Draft_rc.qt_resource_data,'pattern',True)
|
||||
from PyQt4 import QtCore
|
||||
FreeCAD.svgpatterns = {}
|
||||
# getting default patterns
|
||||
patfiles = QtCore.QDir(":/patterns").entryList()
|
||||
for fn in patfiles:
|
||||
f = QtCore.QFile(":/patterns/"+str(fn))
|
||||
f.open(QtCore.QIODevice.ReadOnly)
|
||||
p = importSVG.getContents(str(f.readAll()),'pattern',True)
|
||||
if p:
|
||||
FreeCAD.svgpatterns.update(p)
|
||||
# looking for user patterns
|
||||
altpat = getParam("patternFile")
|
||||
if os.path.isdir(altpat):
|
||||
for f in os.listdir(altpat):
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Resource object code
|
||||
#
|
||||
# Created: Fri Jul 5 22:03:19 2013
|
||||
# Created: Sat Jul 6 16:32:11 2013
|
||||
# by: The Resource Compiler for PyQt (Qt v4.8.4)
|
||||
#
|
||||
# WARNING! All changes made in this file will be lost!
|
||||
|
@ -10,35 +10,113 @@
|
|||
from PyQt4 import QtCore
|
||||
|
||||
qt_resource_data = "\
|
||||
\x00\x00\x01\x60\
|
||||
\x00\x00\x0a\xed\
|
||||
\x3c\
|
||||
\x73\x76\x67\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x3e\x0a\x20\x20\
|
||||
\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x70\x61\x74\x74\x65\x72\x6e\x55\x6e\x69\x74\x73\x3d\
|
||||
\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\
|
||||
\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x30\x22\x0a\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x2e\x31\x22\x0a\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x2e\x31\x22\x3e\
|
||||
\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\
|
||||
\x6f\x6e\x65\x3b\x20\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\
|
||||
\x30\x30\x30\x3b\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\
|
||||
\x68\x3a\x2e\x30\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x69\x64\x3d\x22\x67\x33\x33\x38\x39\x22\x3e\x0a\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x30\x2c\x30\x2e\x30\x35\
|
||||
\x20\x6c\x2e\x31\x32\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x39\x31\
|
||||
\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\
|
||||
\x20\x20\x20\x20\x3c\x2f\x70\x61\x74\x74\x65\x72\x6e\x3e\x0a\x20\
|
||||
\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\
|
||||
\x00\x00\x01\xaa\
|
||||
\x3c\
|
||||
\x73\x76\x67\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x3e\x0a\x20\x20\
|
||||
\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x69\x64\x3d\x22\x63\x72\x6f\x73\x73\x22\x0a\x20\x20\x20\
|
||||
\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\
|
||||
\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\
|
||||
\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\
|
||||
\x6e\x6f\x22\x3f\x3e\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\
|
||||
\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\
|
||||
\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\
|
||||
\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\
|
||||
\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\
|
||||
\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\
|
||||
\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\
|
||||
\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\
|
||||
\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\
|
||||
\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\
|
||||
\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\
|
||||
\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\
|
||||
\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\
|
||||
\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\
|
||||
\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\
|
||||
\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\
|
||||
\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\
|
||||
\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\
|
||||
\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\
|
||||
\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\
|
||||
\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\
|
||||
\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\
|
||||
\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\
|
||||
\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\
|
||||
\x73\x76\x67\x33\x34\x34\x38\x22\x0a\x20\x20\x20\x76\x65\x72\x73\
|
||||
\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\
|
||||
\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\
|
||||
\x2e\x34\x38\x2e\x33\x2e\x31\x20\x72\x39\x38\x38\x36\x22\x0a\x20\
|
||||
\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x22\x0a\x20\x20\x20\
|
||||
\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x22\x0a\x20\x20\x20\x73\
|
||||
\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\
|
||||
\x22\x6c\x69\x6e\x65\x2e\x73\x76\x67\x22\x3e\x0a\x20\x20\x3c\x6d\
|
||||
\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\
|
||||
\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x34\x35\x37\x22\x3e\x0a\
|
||||
\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\
|
||||
\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\
|
||||
\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\
|
||||
\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\
|
||||
\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\
|
||||
\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\
|
||||
\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\
|
||||
\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\
|
||||
\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\
|
||||
\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\
|
||||
\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\
|
||||
\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\
|
||||
\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\
|
||||
\x74\x61\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\
|
||||
\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x70\
|
||||
\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\
|
||||
\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\
|
||||
\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\
|
||||
\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\
|
||||
\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\
|
||||
\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\
|
||||
\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\
|
||||
\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\
|
||||
\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\
|
||||
\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\
|
||||
\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x22\x0a\x20\x20\
|
||||
\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\
|
||||
\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\
|
||||
\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\
|
||||
\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x32\x30\x22\x0a\x20\x20\x20\
|
||||
\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\
|
||||
\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x35\x37\x22\x0a\
|
||||
\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\
|
||||
\x65\x77\x33\x34\x35\x35\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\
|
||||
\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\
|
||||
\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\
|
||||
\x22\x33\x2e\x35\x38\x38\x31\x31\x38\x33\x22\x0a\x20\x20\x20\x20\
|
||||
\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x35\x30\
|
||||
\x2e\x39\x31\x39\x32\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\
|
||||
\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x33\x32\x2e\x33\x39\
|
||||
\x33\x31\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\
|
||||
\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\
|
||||
\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\
|
||||
\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\
|
||||
\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\
|
||||
\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\
|
||||
\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\
|
||||
\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\x76\x67\x33\
|
||||
\x34\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\
|
||||
\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x34\x35\
|
||||
\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x65\x6d\x70\x73\x70\x61\
|
||||
\x63\x69\x6e\x67\x3d\x22\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x76\x69\x73\x69\x62\x6c\x65\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x65\x6e\x61\x62\x6c\x65\x64\x3d\x22\x74\
|
||||
\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6e\x61\x70\
|
||||
\x76\x69\x73\x69\x62\x6c\x65\x67\x72\x69\x64\x6c\x69\x6e\x65\x73\
|
||||
\x6f\x6e\x6c\x79\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x38\x70\x78\
|
||||
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\
|
||||
\x79\x3d\x22\x38\x70\x78\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\
|
||||
\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\
|
||||
\x77\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\
|
||||
\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x35\x30\x22\x3e\x0a\x20\
|
||||
\x20\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x70\x61\x74\x74\x65\x72\x6e\x55\x6e\x69\x74\x73\
|
||||
\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\
|
||||
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x30\x22\x0a\x20\
|
||||
|
@ -50,48 +128,198 @@ qt_resource_data = "\
|
|||
\x6e\x6f\x6e\x65\x3b\x20\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\
|
||||
\x30\x30\x30\x30\x3b\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\
|
||||
\x74\x68\x3a\x2e\x30\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x69\x64\x3d\x22\x67\x33\x33\x38\x32\x22\x3e\x0a\x20\x20\
|
||||
\x20\x20\x69\x64\x3d\x22\x67\x33\x33\x38\x39\x22\x3e\x0a\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x30\x2c\x30\x20\x6c\
|
||||
\x2e\x31\x32\x2c\x2e\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x38\x34\
|
||||
\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\
|
||||
\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\
|
||||
\x22\x4d\x2e\x31\x32\x2c\x30\x20\x6c\x2d\x2e\x31\x32\x2c\x2e\x31\
|
||||
\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\
|
||||
\x3d\x22\x70\x61\x74\x68\x33\x33\x38\x36\x22\x20\x2f\x3e\x0a\x20\
|
||||
\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\
|
||||
\x70\x61\x74\x74\x65\x72\x6e\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\
|
||||
\x73\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\
|
||||
\x00\x00\x01\xae\
|
||||
\x3c\
|
||||
\x73\x76\x67\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x3e\x20\x20\x20\
|
||||
\x20\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x71\x75\x61\x72\x65\
|
||||
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x70\x61\x74\x74\x65\x72\x6e\
|
||||
\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\
|
||||
\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\
|
||||
\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x30\x22\
|
||||
\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x2e\
|
||||
\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\
|
||||
\x3d\x22\x2e\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\
|
||||
\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x20\x73\x74\x72\x6f\x6b\
|
||||
\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x20\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x77\x69\x64\x74\x68\x3a\x2e\x30\x30\x35\x22\x0a\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x33\x39\x34\
|
||||
\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
|
||||
\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\
|
||||
\x30\x2c\x30\x2e\x30\x35\x20\x6c\x2e\x31\x32\x2c\x30\x22\x0a\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\
|
||||
\x74\x68\x33\x33\x39\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x64\x3d\x22\x4d\x30\x2e\x30\x35\x2c\x30\x20\x6c\
|
||||
\x30\x2c\x2e\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x39\x38\x22\x20\
|
||||
\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\
|
||||
\x20\x20\x3c\x2f\x70\x61\x74\x74\x65\x72\x6e\x3e\x0a\x20\x20\x3c\
|
||||
\x2f\x64\x65\x66\x73\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x30\x2c\x30\x2e\x30\
|
||||
\x35\x20\x6c\x2e\x31\x32\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x39\
|
||||
\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\
|
||||
\x0a\x20\x20\x20\x20\x3c\x2f\x70\x61\x74\x74\x65\x72\x6e\x3e\x0a\
|
||||
\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x70\x61\x74\
|
||||
\x68\x0a\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\
|
||||
\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\
|
||||
\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\
|
||||
\x64\x74\x68\x3a\x31\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\
|
||||
\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\
|
||||
\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\
|
||||
\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\
|
||||
\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2c\
|
||||
\x35\x36\x20\x36\x34\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x64\
|
||||
\x3d\x22\x70\x61\x74\x68\x33\x34\x36\x31\x22\x0a\x20\x20\x20\x20\
|
||||
\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\
|
||||
\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\
|
||||
\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\
|
||||
\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\
|
||||
\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\
|
||||
\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\
|
||||
\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\
|
||||
\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\
|
||||
\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\
|
||||
\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\
|
||||
\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2c\x34\x30\x20\x36\x34\
|
||||
\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\
|
||||
\x68\x33\x34\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\
|
||||
\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\
|
||||
\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\
|
||||
\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x73\x74\x79\
|
||||
\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\
|
||||
\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\
|
||||
\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x70\x78\x3b\x73\x74\
|
||||
\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\
|
||||
\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\
|
||||
\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\
|
||||
\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x64\
|
||||
\x3d\x22\x6d\x20\x30\x2c\x32\x34\x20\x36\x34\x2c\x30\x22\x0a\x20\
|
||||
\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x36\x35\
|
||||
\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\
|
||||
\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\
|
||||
\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\
|
||||
\x74\x68\x0a\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\
|
||||
\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\
|
||||
\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\
|
||||
\x69\x64\x74\x68\x3a\x31\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\
|
||||
\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\
|
||||
\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\
|
||||
\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\
|
||||
\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\
|
||||
\x2c\x38\x20\x36\x34\x2c\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x64\
|
||||
\x3d\x22\x70\x61\x74\x68\x33\x34\x36\x37\x22\x0a\x20\x20\x20\x20\
|
||||
\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\
|
||||
\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\
|
||||
\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\
|
||||
\x00\x00\x04\x2e\
|
||||
\x00\
|
||||
\x00\x13\x35\x78\x9c\xd5\x58\xcb\x6e\xe3\x36\x14\xdd\xe7\x2b\x04\
|
||||
\x66\xd9\x58\x6f\x2b\x92\xc6\xf2\x6c\x82\x01\xba\x28\x0a\x74\x26\
|
||||
\xe8\x9a\x96\x68\x5b\x13\x89\x14\x48\xfa\x35\x5f\xdf\x4b\x8a\x7a\
|
||||
\xd8\xd2\xa0\xed\x6a\x6c\x01\x01\xc2\x73\x0f\x2f\x79\xee\x4b\x4a\
|
||||
\x56\x9f\xcf\x75\x65\x1d\x09\x17\x25\xa3\x19\xf2\x6c\x17\x59\x84\
|
||||
\xe6\xac\x28\xe9\x2e\x43\xef\xdf\xbe\x2c\x62\x64\x09\x89\x69\x81\
|
||||
\x2b\x46\x49\x86\x28\x43\x9f\xd7\x4f\x2b\x71\xdc\x3d\x59\x96\x05\
|
||||
\x9b\xa9\x48\x8b\x3c\x43\x7b\x29\x9b\xd4\x71\x9a\x03\xaf\x6c\xc6\
|
||||
\x77\x4e\x91\x3b\xa4\x22\x35\xa1\x52\x38\x9e\xed\x39\x68\xa0\xe7\
|
||||
\x03\x3d\xe7\x04\xcb\xf2\x48\x72\x56\xd7\x8c\x0a\xbd\x93\x8a\xe7\
|
||||
\x11\x99\x17\xdb\x9e\x7d\x3a\x9d\xec\x53\xa0\x49\x5e\x92\x24\x8e\
|
||||
\xeb\x3b\xbe\xbf\x00\xc6\x42\x5c\xa8\xc4\xe7\xc5\xf5\x56\xb8\xe3\
|
||||
\xdc\x56\xdf\x75\x5d\x07\x6c\x03\xf3\xbf\xb1\x52\x01\x51\x69\xe0\
|
||||
\xa7\xa7\x77\x80\x2d\xd8\x81\xe7\x64\x0b\xfb\x88\x4d\x89\x74\xde\
|
||||
\xbe\xbd\xf5\xc6\x85\x6b\x17\xb2\x18\xb9\x29\xe9\x87\xc8\x71\x43\
|
||||
\xae\x4e\xed\xc0\x36\x02\xb8\x26\xa2\xc1\x39\x11\x4e\x87\xeb\xfd\
|
||||
\x65\x91\x21\xb8\x52\xb0\x0c\x7d\xbd\x1e\xa5\xcd\x6b\x09\x86\x9d\
|
||||
\xf6\x16\xd7\x0e\x63\x3b\xb0\x3d\x8b\x27\x71\x1c\x69\xd2\xa9\x2c\
|
||||
\xe4\x3e\x43\x51\xa8\x57\x7b\x52\xee\xf6\xb2\x5f\x76\xb7\x4e\x0b\
|
||||
\x96\xab\x6b\x64\x28\xe7\x4c\x08\x5b\x45\x62\x0d\x84\x55\x4d\x24\
|
||||
\x2e\xb0\xc4\x8a\xdc\xde\xa8\x43\x82\xe5\xd2\xd7\x1c\x60\x41\x4e\
|
||||
\xd2\xbf\xde\xbe\xb4\x2b\x58\xe7\x79\xfa\x37\xe3\x1f\x66\x09\x8f\
|
||||
\x22\xe0\x0d\x3b\xc0\xc9\x68\xdd\xc3\xab\x22\x4f\x21\x8a\x35\x96\
|
||||
\xeb\xb2\xc6\x3b\xa2\x12\xf0\x1b\x44\x6d\xe5\x0c\x86\x2b\xb2\xbc\
|
||||
\x34\x64\x70\xda\xba\xe5\xa4\x4d\xc7\x6c\x4d\x16\x79\x5d\xaa\x4d\
|
||||
\xce\x57\x59\x56\xd5\xef\xea\x10\x64\x39\xfd\x3d\x1d\x73\x51\x23\
|
||||
\xc3\x19\xe9\x58\x39\x9d\x50\xbd\xea\x03\xa5\xa2\x54\x1c\x4b\x72\
|
||||
\x6a\x7d\x34\xe0\x31\x67\x15\xe3\x19\x7a\xde\xea\x07\xb5\x86\x0d\
|
||||
\xe3\x05\xe1\x9d\x29\xd2\xcf\x95\x89\x41\xc6\xe1\x6e\x90\x4d\x03\
|
||||
\xb3\xcd\x77\x92\x4b\xc9\x2a\xc2\x31\x55\x7a\x3c\xd7\x58\x76\x1c\
|
||||
\x72\x38\x87\x1f\xca\x82\xcc\x19\xfa\xc2\x50\xd7\xeb\x0f\x9a\xb5\
|
||||
\x8a\x3d\x2e\xd8\x29\x43\xfe\xad\xf1\x54\x52\x30\x2c\x4c\xf9\x78\
|
||||
\x89\x3f\xd9\x6e\x18\x5d\x49\x79\xee\xf2\x15\x0d\x75\xd2\x07\x0a\
|
||||
\x0a\xa5\xdb\x2a\xf6\xec\xa4\xc4\x64\x48\xf2\x03\xb9\xf5\xf7\x83\
|
||||
\xb1\x3a\x43\x4b\xdb\x7d\x0d\x83\x68\xb9\xbc\x35\xe7\xe7\x0c\x41\
|
||||
\x77\x25\x61\xb8\x7c\x85\x71\x30\x31\x83\xc2\xc0\xb7\xfd\x20\xf0\
|
||||
\xe3\x89\xd1\x5c\xf5\x3c\x13\x04\x63\x9a\x8b\x8f\x31\xd5\xf8\x5c\
|
||||
\xd6\xe5\x0f\x52\x0c\xb9\x1a\x4e\x3d\x70\x0e\x43\x6f\x51\xe1\x0b\
|
||||
\xe1\x43\xbb\x9a\x82\xea\x69\x4a\x74\x57\xb8\xaa\x1e\x33\x74\xbe\
|
||||
\x28\x0c\x75\xa0\x8a\x89\x02\x82\x28\xf2\x7b\x90\xd4\x8d\x9a\x0b\
|
||||
\x7a\x36\x2f\x7b\xf4\x58\x8a\x72\x53\x91\xab\x18\x02\x97\x62\x00\
|
||||
\x8b\x1b\x54\x50\xdc\x18\xbe\xf2\x5e\x95\x14\xba\x85\x56\x97\x5b\
|
||||
\x5a\x7b\x0a\x84\x27\x6e\xce\xb7\xe8\xa5\x45\xdb\xb6\x59\x39\xd3\
|
||||
\x4e\xd0\x78\x41\xb6\x62\x48\xbe\x5a\x41\x20\xc2\x2e\x10\x0d\x96\
|
||||
\x92\x70\x3a\x56\xab\x07\x4d\x7f\x96\x21\xbc\xd3\x52\xc2\x7c\x3e\
|
||||
\x08\xc2\xbf\xaa\x89\xf8\x27\x7d\x17\xc3\x35\x47\xe9\xb3\xac\xcb\
|
||||
\x78\x61\xaa\xd4\xf6\x7a\xa4\xab\x4a\x80\xfa\x76\xdf\x0d\xb3\x43\
|
||||
\xc8\x8b\x0a\xe1\x16\xa6\x42\x4a\xe1\x4d\xf7\x09\x10\xce\x3e\x48\
|
||||
\xfa\xec\xea\xa7\x5b\xb7\xf5\x9f\xda\xae\x3b\x24\xc0\x64\x2b\x08\
|
||||
\x62\x7f\x3c\xcc\x40\xc2\x7e\x3c\x9c\x80\xf3\x87\xfb\xe2\x5a\x95\
|
||||
\xed\xf9\x2f\xf0\x83\xc6\x46\xe5\x41\x6d\x00\x27\xe1\x68\x22\xfd\
|
||||
\xc4\x8d\xf2\x00\x8e\x16\xff\xe2\x29\xba\x9a\x6d\xbb\x6e\xaa\x99\
|
||||
\xd8\xb6\xe9\x53\x99\xd1\xbf\x0d\xe7\x4c\x62\x71\x13\x8a\xab\x48\
|
||||
\x78\xcd\xb9\x03\x54\x35\x41\x75\xa7\x9b\x83\x94\x63\xec\x3b\x2b\
|
||||
\x69\x0a\x73\x97\xf0\x0e\x35\x23\x28\xed\xd2\xa3\x34\x59\x51\x08\
|
||||
\x9a\xdc\x17\xf3\x26\x1a\x84\xf8\x49\x12\x4f\xda\x8c\x51\x38\x4b\
|
||||
\x32\xbe\x80\x86\x3b\x62\x79\xe0\x44\xa5\xdf\xd4\xe4\x2f\x97\x12\
|
||||
\xc6\x5a\x4a\x18\xdf\x48\x09\xe0\xcc\x07\x93\xe2\x45\x90\x11\x95\
|
||||
\x1b\x2f\x9a\x8a\x99\xbc\x24\xee\x5c\x4c\xe0\xeb\xbc\x04\xfe\x54\
|
||||
\x4a\xf8\x60\x52\x20\x2f\x4a\xca\x5c\x56\xa2\x07\x93\x02\xc5\x15\
|
||||
\xf8\x2a\x37\x93\xd6\x07\x31\x8f\xd6\xfa\x20\x26\x8c\xd5\x00\x98\
|
||||
\x11\x33\xfd\x1e\xbb\x73\x31\xea\x75\x05\x82\xa6\x52\xa2\x38\x78\
|
||||
\x30\x29\xba\x5f\x74\x72\xa6\x5a\xa6\x9f\x96\xf7\xad\x45\x8f\x31\
|
||||
\xdd\x35\x53\x2d\xaf\x0f\xa6\x45\xbf\x2a\x67\x5f\x2f\xd1\xf4\xb3\
|
||||
\xfd\xce\xb5\xa8\x71\x3c\xdf\xfa\x51\x32\xfd\x4b\xe1\xde\xb5\xfc\
|
||||
\x6c\x26\x47\xc9\xa3\xf5\xbe\xfa\x12\x6b\x3f\x64\xa6\x5a\xfe\x4f\
|
||||
\xef\xaf\xd4\x3f\x24\xd6\x4f\xff\x00\x3d\xa0\xd3\x03\
|
||||
\x00\x00\x03\xd9\
|
||||
\x00\
|
||||
\x00\x0e\x64\x78\x9c\xd5\x56\xc9\x8e\xdb\x38\x10\xbd\xf7\x57\x08\
|
||||
\xec\xe3\xd8\x12\xb5\x58\x92\x15\xcb\xb9\x34\x02\xcc\x21\x18\x60\
|
||||
\x92\x46\xce\xb4\x44\xdb\x4a\x4b\xa4\x86\xa4\xbc\xe4\xeb\xa7\xa8\
|
||||
\x85\x92\x37\x60\xe6\x16\x0b\x68\xa0\xf9\xea\xb1\x8a\xaf\xb6\xee\
|
||||
\xd5\xe7\x53\x55\x5a\x07\x2a\x64\xc1\x59\x8a\x5c\x1b\x23\x8b\xb2\
|
||||
\x8c\xe7\x05\xdb\xa5\xe8\xfd\xfb\x97\x79\x8c\x2c\xa9\x08\xcb\x49\
|
||||
\xc9\x19\x4d\x11\xe3\xe8\xf3\xfa\x65\x25\x0f\xbb\x17\xcb\xb2\xe0\
|
||||
\x32\x93\x49\x9e\xa5\x68\xaf\x54\x9d\x38\x4e\xdd\x88\xd2\xe6\x62\
|
||||
\xe7\xe4\x99\x43\x4b\x5a\x51\xa6\xa4\xe3\xda\xae\x83\x46\x7a\x36\
|
||||
\xd2\x33\x41\x89\x2a\x0e\x34\xe3\x55\xc5\x99\x6c\x6f\x32\xf9\x3a\
|
||||
\x21\x8b\x7c\x6b\xd8\xc7\xe3\xd1\x3e\xfa\x2d\xc9\x5d\x2e\x97\x0e\
|
||||
\xf6\x1c\xcf\x9b\x03\x63\x2e\xcf\x4c\x91\xd3\xfc\xf2\x2a\xbc\xf1\
|
||||
\xde\x55\x0f\x63\xec\x80\x6d\x64\xfe\x37\x56\x22\x21\x2b\x35\xfc\
|
||||
\x18\xfa\x00\xd8\x92\x37\x22\xa3\x5b\xb8\x47\x6d\x46\x95\xf3\xf6\
|
||||
\xfd\xcd\x18\xe7\xd8\xce\x55\x3e\x71\x53\xb0\x0f\x99\x91\x9a\x5e\
|
||||
\x44\x1d\xc0\x2e\x03\xa4\xa2\xb2\x26\x19\x95\xce\x80\xb7\xf7\x8b\
|
||||
\x3c\x45\xf0\x24\x3f\x8a\x83\xf6\x3c\x29\x9b\xdb\x11\x7a\x76\x62\
|
||||
\x2c\xd8\x0e\x62\xdb\xb7\x5d\x4b\x2c\xe3\x38\x6c\x49\xc7\x22\x57\
|
||||
\xfb\x14\x85\x9d\x8f\x3d\x2d\x76\x7b\x65\x8e\xc3\xab\x93\x9c\x67\
|
||||
\xfa\x19\x10\xf0\x9f\x86\x08\x6a\xeb\x54\xac\x81\xb1\xaa\xa8\x22\
|
||||
\x39\x51\x44\xb3\xbb\x27\x0d\x88\x1f\x2d\x83\x96\x03\x2c\x28\x4a\
|
||||
\xf2\xf7\xdb\x97\xee\x04\xe7\x2c\x4b\x7e\x70\xf1\xd1\x1f\xe1\xd3\
|
||||
\x04\xb2\xe1\x0d\x84\x46\x6b\x03\xaf\xf2\x2c\x81\x34\x56\x44\xad\
|
||||
\x8b\x8a\xec\xa8\xae\xc0\x1f\x90\xb6\x95\x33\x1a\x2e\xc8\xea\x5c\
|
||||
\xd3\xd1\x69\xe7\x56\xd0\xae\x1e\x77\x9b\x32\xcf\xaa\x42\x5f\x72\
|
||||
\xbe\xa9\xa2\x2c\xff\xd4\x41\x90\xe5\x98\x77\x3a\xfd\x43\x7b\x19\
|
||||
\xce\x44\xc7\xca\x19\x84\xb6\x27\x93\x29\x9d\xa6\xfc\x50\xd0\x63\
|
||||
\xe7\xa3\x06\x8f\x19\x2f\xb9\x48\xd1\xeb\xb6\xfd\x50\x67\xd8\x70\
|
||||
\x91\x53\x31\x98\xc2\xf6\xbb\x30\x71\x28\x39\xbc\x0d\xca\xd9\xc3\
|
||||
\x7c\xf3\x93\x66\x4a\xf1\x92\x0a\xc2\xb4\x1e\x17\xf7\x96\x9d\x80\
|
||||
\x22\xde\xc3\x9b\x22\xa7\xf7\x0c\xa6\x33\xf4\xf3\x4c\xa0\xbb\x56\
|
||||
\xb9\x27\x39\x3f\xa6\xc8\xbb\x36\x1e\x0b\x06\x86\x79\xdf\x3f\xee\
|
||||
\xd2\xbb\xb9\xde\x33\x86\x9e\x72\xf1\x22\x42\x63\x9f\x98\x44\x41\
|
||||
\xa3\x0c\xce\xe5\x9e\x1f\xb5\x98\x14\x29\xd1\xd0\x6b\x7f\xbf\x38\
|
||||
\xaf\x52\x14\xd9\x5e\x80\xa3\xc8\x0f\xae\xcd\xd9\x29\x45\x7e\x68\
|
||||
\x87\x9e\x1f\x45\xf1\x8d\x11\xf4\xf9\xbe\xed\x2f\x22\xdf\x7d\x24\
|
||||
\xe5\x74\x27\x05\xbd\xe9\x5e\x76\x7a\x53\x45\x4e\x45\x55\xfc\xa2\
|
||||
\xf9\x58\xa9\x31\x6a\x23\x04\xec\xbc\x79\x49\xce\x54\x8c\xd3\xda\
|
||||
\xb7\x93\xa1\x69\xc9\x43\xdb\xea\x6e\x4c\xd1\xe9\xac\x31\x34\x80\
|
||||
\x3a\x23\x1a\x80\x54\x85\x06\xa4\x55\xad\xd7\x42\xbb\x9a\x17\x06\
|
||||
\x3d\x14\xb2\xd8\x94\xf4\x22\x83\xc0\x65\x04\xc0\xfc\x0a\x95\x8c\
|
||||
\xd4\x3d\x5f\x7b\x2f\x0b\x06\xb3\xc2\xca\xf3\x35\xad\x8b\x02\xe9\
|
||||
\x89\xeb\xd3\x35\x7a\xee\xd0\x6e\x68\x56\xce\xed\x1c\xb4\x78\x4e\
|
||||
\xb7\x72\x2c\xbd\x3e\x41\x22\xc2\x21\x11\x35\x51\x8a\x0a\x36\x55\
|
||||
\xdb\xed\x19\x13\xac\x67\xbc\xb3\x42\xc1\x7e\x6e\x24\x15\xdf\xf4\
|
||||
\x46\xfc\x8b\xbd\xcb\x91\x34\xa9\x9f\x65\x9d\xa7\x87\xbe\x49\x6d\
|
||||
\xd7\x20\x43\x53\x02\x64\xa6\x7d\x37\xae\x0e\xa9\xce\x3a\x87\x5b\
|
||||
\x58\x0a\x09\x83\xbf\x74\x9f\x00\x11\xfc\x83\x26\xaf\xb8\xfd\x86\
|
||||
\x73\xd7\xfe\x89\x8d\xf1\x58\x81\xbe\x5c\xbe\x6f\xf6\xdf\x20\x72\
|
||||
\x3f\xdd\x4d\xc0\xf9\x8a\x67\xd8\xc6\x0b\xab\xb4\x5d\x6f\x86\xd1\
|
||||
\xd4\xaa\x5d\xe8\x1b\xe0\x25\x9c\x6c\xa4\x47\x7e\xc0\xcb\x0c\x5b\
|
||||
\x25\x9e\xd9\xa6\xbb\x6f\xfc\xc4\x17\x9b\x6d\x37\xec\xb4\x3e\xb5\
|
||||
\x5d\xf9\x74\x65\xda\xdf\xc6\x28\x37\xa9\xb8\xca\xc4\x45\x22\xdc\
|
||||
\xfa\x34\x00\xba\x9b\xa0\xbb\x93\x4d\xa3\xd4\x14\xfb\xc9\x0b\x96\
|
||||
\xc0\xd6\xa5\x62\x40\xfb\x05\x94\x0c\xd5\xd1\x7f\x44\x2c\x3c\x5b\
|
||||
\x84\x56\x18\x98\xb4\x18\x21\x41\x78\x3b\x66\x9c\x41\x2c\xc5\xc5\
|
||||
\x1c\x06\xee\x40\x54\x23\xa8\xae\x7e\xdf\x93\xbf\x81\x94\x00\x3f\
|
||||
\x90\xe2\x3f\x9d\x14\x2f\x78\x20\x65\xf1\x54\x52\xbe\x82\x94\x58\
|
||||
\x2b\x89\x6f\x95\x44\x4f\xa6\x24\x86\xd1\x8f\x67\x61\x70\xad\x24\
|
||||
\x76\x9f\x6d\x52\x3c\xe8\x2c\x28\xcc\x3d\x29\xcf\x36\x29\x01\x7e\
|
||||
\x28\xe5\xb9\x26\xa5\xb2\x16\xe1\x43\x29\xff\x67\x54\x56\xfa\xdf\
|
||||
\xf7\xf5\xcb\xbf\xca\xa1\x4f\xfa\
|
||||
\x00\x00\x03\xdc\
|
||||
\x00\
|
||||
\x00\x0d\x76\x78\x9c\xd5\x56\x4d\x8f\xe3\x36\x0c\xbd\xcf\xaf\x30\
|
||||
|
@ -156,150 +384,114 @@ qt_resource_data = "\
|
|||
\x55\x25\xfd\x64\x52\xa0\xb9\x92\xd8\xd4\x66\x76\xf5\x41\xcc\x67\
|
||||
\xbb\xfa\x20\x66\x99\x99\x01\xf0\x40\xcc\xfc\x4f\xd4\x3f\x88\x59\
|
||||
\x9b\x3f\xb4\x9b\xa7\xbf\x01\x1e\x88\x0a\xce\
|
||||
\x00\x00\x08\xd6\
|
||||
\x3c\
|
||||
\x73\x76\x67\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x3e\x0a\x20\x20\
|
||||
\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x69\x64\x3d\x22\x63\x6f\x6e\x63\x72\x65\x74\x65\x22\x0a\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x70\x61\x74\x74\x65\x72\x6e\x55\x6e\
|
||||
\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\
|
||||
\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x30\
|
||||
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x30\x22\x0a\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x2e\x35\x22\
|
||||
\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\
|
||||
\x2e\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\
|
||||
\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x20\x73\x74\x72\x6f\x6b\x65\x3a\
|
||||
\x23\x30\x30\x30\x30\x30\x30\x3b\x20\x73\x74\x72\x6f\x6b\x65\x2d\
|
||||
\x77\x69\x64\x74\x68\x3a\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x73\x63\
|
||||
\x61\x6c\x65\x28\x2e\x30\x31\x29\x22\x0a\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x34\x30\x31\x22\x3e\x0a\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\
|
||||
\x6d\x20\x35\x2e\x33\x35\x37\x31\x34\x32\x38\x2c\x33\x2e\x35\x32\
|
||||
\x32\x38\x39\x34\x36\x20\x61\x20\x31\x2e\x33\x33\x39\x32\x38\x35\
|
||||
\x37\x2c\x31\x2e\x33\x33\x39\x32\x38\x35\x37\x20\x30\x20\x31\x20\
|
||||
\x31\x20\x2d\x32\x2e\x36\x37\x38\x35\x37\x31\x35\x2c\x30\x20\x31\
|
||||
\x2e\x33\x33\x39\x32\x38\x35\x37\x2c\x31\x2e\x33\x33\x39\x32\x38\
|
||||
\x35\x37\x20\x30\x20\x31\x20\x31\x20\x32\x2e\x36\x37\x38\x35\x37\
|
||||
\x31\x35\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x20\x31\x34\x2e\
|
||||
\x31\x30\x37\x31\x34\x33\x2c\x36\x2e\x38\x32\x36\x34\x36\x36\x31\
|
||||
\x20\x61\x20\x33\x2e\x32\x31\x34\x32\x38\x35\x36\x2c\x33\x2e\x32\
|
||||
\x31\x34\x32\x38\x35\x36\x20\x30\x20\x31\x20\x31\x20\x2d\x36\x2e\
|
||||
\x34\x32\x38\x35\x37\x31\x31\x2c\x30\x20\x33\x2e\x32\x31\x34\x32\
|
||||
\x38\x35\x36\x2c\x33\x2e\x32\x31\x34\x32\x38\x35\x36\x20\x30\x20\
|
||||
\x31\x20\x31\x20\x36\x2e\x34\x32\x38\x35\x37\x31\x31\x2c\x30\x20\
|
||||
\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\
|
||||
\x74\x68\x20\x64\x3d\x22\x6d\x20\x31\x34\x2e\x38\x32\x31\x34\x32\
|
||||
\x38\x2c\x33\x30\x2e\x39\x33\x33\x36\x30\x39\x20\x61\x20\x30\x2e\
|
||||
\x37\x31\x34\x32\x38\x35\x37\x33\x2c\x30\x2e\x37\x31\x34\x32\x38\
|
||||
\x35\x37\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x34\x32\x38\
|
||||
\x35\x37\x31\x2c\x30\x20\x30\x2e\x37\x31\x34\x32\x38\x35\x37\x33\
|
||||
\x2c\x30\x2e\x37\x31\x34\x32\x38\x35\x37\x33\x20\x30\x20\x31\x20\
|
||||
\x31\x20\x31\x2e\x34\x32\x38\x35\x37\x31\x2c\x30\x20\x7a\x22\x2f\
|
||||
\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\
|
||||
\x64\x3d\x22\x6d\x20\x32\x38\x2e\x35\x37\x31\x34\x32\x38\x2c\x31\
|
||||
\x36\x2e\x32\x30\x31\x34\x36\x36\x20\x61\x20\x32\x2e\x32\x33\x32\
|
||||
\x31\x34\x32\x39\x2c\x32\x2e\x32\x33\x32\x31\x34\x32\x39\x20\x30\
|
||||
\x20\x31\x20\x31\x20\x2d\x34\x2e\x34\x36\x34\x32\x38\x36\x2c\x30\
|
||||
\x20\x32\x2e\x32\x33\x32\x31\x34\x32\x39\x2c\x32\x2e\x32\x33\x32\
|
||||
\x31\x34\x32\x39\x20\x30\x20\x31\x20\x31\x20\x34\x2e\x34\x36\x34\
|
||||
\x32\x38\x36\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x20\x36\x2e\
|
||||
\x32\x35\x30\x30\x30\x30\x32\x2c\x32\x30\x2e\x30\x38\x35\x33\x39\
|
||||
\x34\x20\x61\x20\x30\x2e\x34\x39\x31\x30\x37\x31\x34\x33\x2c\x30\
|
||||
\x2e\x34\x39\x31\x30\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\
|
||||
\x2d\x30\x2e\x39\x38\x32\x31\x34\x32\x39\x2c\x30\x20\x30\x2e\x34\
|
||||
\x39\x31\x30\x37\x31\x34\x33\x2c\x30\x2e\x34\x39\x31\x30\x37\x31\
|
||||
\x34\x33\x20\x30\x20\x31\x20\x31\x20\x30\x2e\x39\x38\x32\x31\x34\
|
||||
\x32\x39\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x20\x33\x34\x2e\
|
||||
\x37\x33\x32\x31\x34\x34\x2c\x32\x37\x2e\x35\x32\x37\x37\x32\x35\
|
||||
\x20\x61\x20\x30\x2e\x32\x36\x37\x38\x35\x37\x31\x33\x2c\x30\x2e\
|
||||
\x34\x33\x33\x34\x30\x31\x39\x37\x20\x30\x20\x31\x20\x31\x20\x2d\
|
||||
\x30\x2e\x35\x33\x35\x37\x31\x34\x2c\x30\x20\x30\x2e\x32\x36\x37\
|
||||
\x38\x35\x37\x31\x33\x2c\x30\x2e\x34\x33\x33\x34\x30\x31\x39\x37\
|
||||
\x20\x30\x20\x31\x20\x31\x20\x30\x2e\x35\x33\x35\x37\x31\x34\x2c\
|
||||
\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\
|
||||
\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x20\x34\x30\x2e\x31\x37\x38\
|
||||
\x35\x37\x32\x2c\x39\x2e\x33\x37\x31\x31\x30\x38\x31\x20\x61\x20\
|
||||
\x30\x2e\x31\x33\x33\x39\x32\x38\x35\x37\x2c\x30\x2e\x32\x32\x33\
|
||||
\x32\x31\x34\x32\x38\x20\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x32\
|
||||
\x36\x37\x38\x35\x37\x2c\x30\x20\x30\x2e\x31\x33\x33\x39\x32\x38\
|
||||
\x35\x37\x2c\x30\x2e\x32\x32\x33\x32\x31\x34\x32\x38\x20\x30\x20\
|
||||
\x31\x20\x31\x20\x30\x2e\x32\x36\x37\x38\x35\x37\x2c\x30\x20\x7a\
|
||||
\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\
|
||||
\x68\x20\x64\x3d\x22\x6d\x20\x34\x30\x2e\x39\x38\x32\x31\x34\x34\
|
||||
\x2c\x33\x38\x2e\x37\x34\x36\x31\x30\x39\x20\x61\x20\x30\x2e\x32\
|
||||
\x32\x33\x32\x31\x34\x32\x38\x2c\x30\x2e\x32\x32\x33\x32\x31\x34\
|
||||
\x32\x38\x20\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x34\x34\x36\x34\
|
||||
\x32\x38\x2c\x30\x20\x30\x2e\x32\x32\x33\x32\x31\x34\x32\x38\x2c\
|
||||
\x30\x2e\x32\x32\x33\x32\x31\x34\x32\x38\x20\x30\x20\x31\x20\x31\
|
||||
\x20\x30\x2e\x34\x34\x36\x34\x32\x38\x2c\x30\x20\x7a\x22\x2f\x3e\
|
||||
\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\
|
||||
\x3d\x22\x6d\x20\x33\x31\x2e\x31\x36\x30\x37\x31\x35\x2c\x34\x30\
|
||||
\x2e\x35\x37\x36\x34\x36\x36\x20\x61\x20\x33\x2e\x39\x32\x38\x35\
|
||||
\x37\x31\x35\x2c\x33\x2e\x39\x32\x38\x35\x37\x31\x35\x20\x30\x20\
|
||||
\x31\x20\x31\x20\x2d\x37\x2e\x38\x35\x37\x31\x34\x33\x2c\x30\x20\
|
||||
\x33\x2e\x39\x32\x38\x35\x37\x31\x35\x2c\x33\x2e\x39\x32\x38\x35\
|
||||
\x37\x31\x35\x20\x30\x20\x31\x20\x31\x20\x37\x2e\x38\x35\x37\x31\
|
||||
\x34\x33\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\
|
||||
\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x20\x32\x32\x2e\
|
||||
\x32\x33\x32\x31\x34\x33\x2c\x33\x38\x2e\x32\x35\x35\x30\x33\x35\
|
||||
\x20\x61\x20\x31\x2e\x36\x30\x37\x31\x34\x32\x38\x2c\x31\x2e\x36\
|
||||
\x30\x37\x31\x34\x32\x38\x20\x30\x20\x31\x20\x31\x20\x2d\x33\x2e\
|
||||
\x32\x31\x34\x32\x38\x36\x2c\x30\x20\x31\x2e\x36\x30\x37\x31\x34\
|
||||
\x32\x38\x2c\x31\x2e\x36\x30\x37\x31\x34\x32\x38\x20\x30\x20\x31\
|
||||
\x20\x31\x20\x33\x2e\x32\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\
|
||||
\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
|
||||
\x20\x64\x3d\x22\x6d\x20\x34\x31\x2e\x39\x36\x34\x32\x38\x37\x2c\
|
||||
\x31\x31\x2e\x36\x34\x37\x38\x39\x35\x20\x61\x20\x30\x2e\x38\x39\
|
||||
\x32\x38\x35\x37\x31\x33\x2c\x30\x2e\x38\x39\x32\x38\x35\x37\x31\
|
||||
\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x37\x38\x35\x37\x31\
|
||||
\x34\x2c\x30\x20\x30\x2e\x38\x39\x32\x38\x35\x37\x31\x33\x2c\x30\
|
||||
\x2e\x38\x39\x32\x38\x35\x37\x31\x33\x20\x30\x20\x31\x20\x31\x20\
|
||||
\x31\x2e\x37\x38\x35\x37\x31\x34\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\
|
||||
\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
|
||||
\x22\x6d\x20\x33\x36\x2e\x30\x37\x31\x34\x33\x2c\x32\x35\x2e\x37\
|
||||
\x35\x35\x30\x33\x37\x20\x61\x20\x30\x2e\x33\x35\x37\x31\x34\x32\
|
||||
\x38\x37\x2c\x30\x2e\x33\x35\x37\x31\x34\x32\x38\x37\x20\x30\x20\
|
||||
\x31\x20\x31\x20\x2d\x30\x2e\x37\x31\x34\x32\x38\x36\x2c\x30\x20\
|
||||
\x30\x2e\x33\x35\x37\x31\x34\x32\x38\x37\x2c\x30\x2e\x33\x35\x37\
|
||||
\x31\x34\x32\x38\x37\x20\x30\x20\x31\x20\x31\x20\x30\x2e\x37\x31\
|
||||
\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\
|
||||
\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x20\x36\
|
||||
\x2e\x32\x35\x2c\x34\x32\x2e\x39\x38\x37\x31\x37\x39\x20\x61\x20\
|
||||
\x30\x2e\x36\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\x30\x20\x31\x20\
|
||||
\x31\x20\x2d\x31\x2e\x32\x35\x2c\x30\x20\x30\x2e\x36\x32\x35\x2c\
|
||||
\x30\x2e\x36\x32\x35\x20\x30\x20\x31\x20\x31\x20\x31\x2e\x32\x35\
|
||||
\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\
|
||||
\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x20\x31\x37\x2e\x33\x32\
|
||||
\x31\x34\x32\x38\x2c\x31\x39\x2e\x39\x35\x31\x34\x36\x36\x20\x61\
|
||||
\x20\x31\x2e\x33\x33\x39\x32\x38\x35\x37\x2c\x31\x2e\x33\x33\x39\
|
||||
\x32\x38\x35\x37\x20\x30\x20\x31\x20\x31\x20\x2d\x32\x2e\x36\x37\
|
||||
\x38\x35\x37\x31\x2c\x30\x20\x31\x2e\x33\x33\x39\x32\x38\x35\x37\
|
||||
\x2c\x31\x2e\x33\x33\x39\x32\x38\x35\x37\x20\x30\x20\x31\x20\x31\
|
||||
\x20\x32\x2e\x36\x37\x38\x35\x37\x31\x2c\x30\x20\x7a\x22\x2f\x3e\
|
||||
\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\
|
||||
\x3d\x22\x6d\x20\x31\x31\x2e\x39\x36\x34\x32\x38\x36\x2c\x31\x38\
|
||||
\x2e\x31\x36\x35\x37\x35\x32\x20\x61\x20\x30\x2e\x34\x34\x36\x34\
|
||||
\x32\x38\x35\x37\x2c\x30\x2e\x34\x34\x36\x34\x32\x38\x35\x37\x20\
|
||||
\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x38\x39\x32\x38\x35\x37\x2c\
|
||||
\x30\x20\x30\x2e\x34\x34\x36\x34\x32\x38\x35\x37\x2c\x30\x2e\x34\
|
||||
\x34\x36\x34\x32\x38\x35\x37\x20\x30\x20\x31\x20\x31\x20\x30\x2e\
|
||||
\x38\x39\x32\x38\x35\x37\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\
|
||||
\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\
|
||||
\x20\x31\x36\x2e\x36\x30\x37\x31\x34\x33\x2c\x37\x2e\x38\x39\x37\
|
||||
\x38\x39\x34\x39\x20\x61\x20\x30\x2e\x35\x33\x35\x37\x31\x34\x32\
|
||||
\x37\x2c\x30\x2e\x35\x33\x35\x37\x31\x34\x32\x37\x20\x30\x20\x31\
|
||||
\x20\x31\x20\x2d\x31\x2e\x30\x37\x31\x34\x32\x39\x2c\x30\x20\x30\
|
||||
\x2e\x35\x33\x35\x37\x31\x34\x32\x37\x2c\x30\x2e\x35\x33\x35\x37\
|
||||
\x31\x34\x32\x37\x20\x30\x20\x31\x20\x31\x20\x31\x2e\x30\x37\x31\
|
||||
\x34\x32\x39\x2c\x30\x20\x7a\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\
|
||||
\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x70\x61\x74\x74\
|
||||
\x65\x72\x6e\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x3c\
|
||||
\x2f\x73\x76\x67\x3e\
|
||||
\x00\x00\x06\x9d\
|
||||
\x00\
|
||||
\x00\x1d\xe0\x78\x9c\xbd\x59\x5d\xaf\x9b\x38\x10\x7d\xef\xaf\x40\
|
||||
\xf4\xa5\xab\x25\xc6\x5f\x80\xc9\x26\xb7\x2f\xd5\x4a\xfb\xb4\xd2\
|
||||
\xb6\xd5\x3e\x73\xc1\x37\x61\x9b\x40\x04\xe4\x26\xe9\xaf\xdf\xb1\
|
||||
\xc1\x40\x08\x64\x91\xb2\x4a\xaa\x56\xf6\xf8\x80\x8f\x67\xe6\x0c\
|
||||
\x63\x75\xf5\xf9\xbc\xdf\x59\xef\xb2\x28\xd3\x3c\x5b\xdb\x04\x61\
|
||||
\xdb\x92\x59\x9c\x27\x69\xb6\x59\xdb\xdf\xbf\xfd\xbe\x10\xb6\x55\
|
||||
\x56\x51\x96\x44\xbb\x3c\x93\x6b\x3b\xcb\xed\xcf\x2f\x1f\x56\xe5\
|
||||
\xfb\xe6\x83\x65\x59\xf0\x70\x56\x2e\x93\x78\x6d\x6f\xab\xea\xb0\
|
||||
\x74\xdd\xc3\xb1\xd8\xa1\xbc\xd8\xb8\x49\xec\xca\x9d\xdc\xcb\xac\
|
||||
\x2a\x5d\x82\x88\x6b\x77\xf0\xb8\x83\xc7\x85\x8c\xaa\xf4\x5d\xc6\
|
||||
\xf9\x7e\x9f\x67\xa5\x7e\x32\x2b\x3f\xf6\xc0\x45\xf2\xd6\xa2\x4f\
|
||||
\xa7\x13\x3a\x31\x0d\x22\x61\x18\xba\x98\xba\x94\x2e\x00\xb1\x28\
|
||||
\x2f\x59\x15\x9d\x17\xd7\x8f\x02\xc7\xb1\x47\x29\xc6\xd8\x85\xb5\
|
||||
\x0e\x39\x0f\xb5\x2c\xc1\x2b\x07\xf8\xdb\xc2\x8d\x01\x95\xf9\xb1\
|
||||
\x88\xe5\x1b\x3c\x27\x51\x26\x2b\xf7\xcb\xb7\x2f\xed\xe2\x02\xa3\
|
||||
\xa4\x4a\x7a\xaf\x49\xb3\x1f\x65\x1c\x1d\xe4\xd5\xae\xc6\x58\x7b\
|
||||
\x20\xda\xcb\xf2\x10\xc5\xb2\x74\x8d\x5d\x3f\x9f\x26\x6b\x1b\x28\
|
||||
\x31\x21\xb0\x9e\xf7\xc2\x46\x6a\x40\x83\x5e\xb6\x2b\x18\x71\x81\
|
||||
\x18\x22\x56\x11\x0a\xe1\x6b\xd0\x29\x4d\xaa\xed\xda\xf6\xb9\x9e\
|
||||
\x6d\x65\xba\xd9\x56\xed\xd4\xb0\x5e\x26\x79\xac\x68\xac\xed\x38\
|
||||
\xcf\x20\x4a\x95\x44\xca\x19\x2f\x80\x59\xed\x65\x15\x25\x51\x15\
|
||||
\x29\x7c\x4d\xca\x58\x58\x48\xb1\xc6\x00\x0a\xc2\xb2\xfc\xeb\xcb\
|
||||
\xef\xf5\x0c\xe6\x71\xbc\xfc\x3b\x2f\x7e\x34\x53\xf8\x29\x40\xf4\
|
||||
\x9a\x1f\x61\x73\xfb\xa5\x35\xaf\x92\x78\x09\x8e\xdc\x47\xd5\x4b\
|
||||
\xba\x8f\x36\x52\xc5\xe0\x57\x70\xdc\xca\xed\x16\xae\xc0\xd5\xe5\
|
||||
\x20\xbb\x97\xd6\xaf\x2d\x64\x1d\x91\xd1\xb4\x4c\xe2\x7d\xaa\x1e\
|
||||
\x72\xbf\x56\xe9\x6e\xf7\x87\xda\xc4\xb6\xdc\x96\xa7\xdb\x10\x6d\
|
||||
\x8e\xe1\xf6\xce\xb1\x72\xcd\x41\xf5\xac\xf5\x95\x72\x54\xf2\x9e\
|
||||
\xca\x53\xfd\x8e\x03\xbc\x31\xce\x77\x79\xb1\xb6\x3f\xbe\xe9\x9f\
|
||||
\x5d\x2f\xbc\xe6\x45\x22\x0b\xb3\xe4\xeb\xdf\xd5\x52\x0e\x41\x07\
|
||||
\x6e\x10\xd0\xc6\x9c\xbf\xfe\x23\xe3\xaa\xca\x77\xb2\x88\x32\x75\
|
||||
\x1e\x82\x9b\x95\x4d\x01\x61\x1c\xb3\x1f\xd3\x44\x8e\x2d\xb4\xb9\
|
||||
\xa1\xe8\xb5\x1b\x8d\xae\x96\xdb\x28\xc9\x4f\x6b\x9b\x0e\x17\x4f\
|
||||
\x69\x06\x0b\x8b\x26\x83\x88\x8a\xf6\x38\xc2\x64\x15\xc1\x5e\x60\
|
||||
\x77\x79\xd2\x3a\x8a\x85\x44\x34\xf6\x72\x9b\x9f\xd4\x61\xd6\x76\
|
||||
\x55\x1c\xe5\xf0\x7d\x65\x16\x1d\x16\x59\x9e\x48\x10\xe9\x5b\xb4\
|
||||
\x2b\x6f\x00\x3f\xf3\x7c\xbf\xb6\x3d\x84\x03\xce\x7c\xcf\x1b\x2e\
|
||||
\xc7\x67\x58\x04\x05\x10\xcc\x04\xbf\x59\x04\x07\xf8\x08\x33\xee\
|
||||
\x13\x41\x26\x4e\x72\x1e\xf1\x51\xb3\x34\xe6\xbe\x66\x69\x1f\x9d\
|
||||
\xd3\x7d\xfa\x53\x26\x5d\x28\xbb\x5d\x8f\x45\x01\x65\x71\xb1\x8b\
|
||||
\x2e\xb2\xe8\x04\xdd\xe4\x5b\x0b\x53\x3e\x31\x79\xad\xd2\x75\x6d\
|
||||
\x9f\x2f\xca\x66\x1b\xa3\x72\x99\x32\x80\xe8\x68\x6b\x94\xfb\x83\
|
||||
\xaa\x1c\xba\x7a\x7b\xad\xf5\x3d\x2d\xd3\xd7\x9d\xbc\x72\x31\x60\
|
||||
\xb3\x08\x8c\xc9\xc0\xaa\x3c\xde\xe0\xd5\xdb\x77\x69\x06\x62\xca\
|
||||
\x76\x97\x21\xac\xde\x05\xdc\x23\x0e\xe7\xa1\xf5\x52\x5b\x6b\x55\
|
||||
\xad\xdc\x5b\xa1\x68\x7b\x22\xdf\xca\x2e\x37\xd4\x0c\x1c\x41\x8d\
|
||||
\x23\x0e\x51\x55\xc9\x22\xeb\x9f\xd6\x94\xa2\x76\xbb\x06\xf3\x3d\
|
||||
\x4b\x2b\xc8\x8f\x63\x29\x8b\xaf\xaa\x6c\xfe\x99\x7d\x2f\x3b\x50\
|
||||
\x2f\x82\x96\x75\xe9\x4f\x9a\x3c\x46\x9d\xa3\x4c\xde\x82\xa9\x2d\
|
||||
\x08\x9b\xae\xba\x94\xd5\x45\x79\xf1\x0d\xea\xc6\x32\x83\xcf\xe1\
|
||||
\x6f\x60\x29\xf2\x1f\x72\xf9\x11\xeb\x9f\x99\xd7\x0a\x59\xf6\x5e\
|
||||
\x0c\x31\x04\x41\x96\xaa\x80\x41\xc8\xe3\x68\x27\x3f\x21\x4c\x7e\
|
||||
\xe9\xad\xeb\x70\x32\x8e\x49\xbf\x18\xc2\x01\xb7\xfd\xe2\xa6\x6a\
|
||||
\xad\xe5\x21\xe6\x05\x84\x53\xe1\x30\xe4\x51\x2a\x42\xee\x5b\x91\
|
||||
\x45\x10\x83\x4c\x10\x5e\xe0\xb4\x23\x0b\x5b\x04\xfe\x2c\x28\xf2\
|
||||
\x03\x98\x12\xcf\xc1\x77\x60\x7d\xd4\x4f\xbb\xbf\xab\xa2\xa6\x98\
|
||||
\x30\xf5\x09\xe9\x4a\xe5\x14\x3f\xc2\x11\xc1\x40\x90\x39\x3e\x12\
|
||||
\xd4\xe7\xbe\x4f\x80\x1f\x43\x54\x71\xf6\x7c\xa7\x1d\x19\x7e\x3e\
|
||||
\x52\xd3\x80\x10\xd8\x79\x1a\xd6\x47\x4d\xf2\x13\xf3\xf8\x09\x5a\
|
||||
\xfb\x0f\xa3\x90\x31\x1f\x87\xc0\x0f\x23\xed\x53\x2f\x60\x4e\x37\
|
||||
\x34\x0c\x49\xb3\x37\x6c\x7d\x0f\xd7\x83\x4d\x31\x0c\xf1\x0c\x86\
|
||||
\x54\xa0\x26\xc2\xc4\x47\x14\x13\x70\x21\x30\xa4\x88\x32\xc5\x3b\
|
||||
\x74\xda\x91\xe1\xc7\x11\xf7\x01\xee\xc3\xc6\xd3\xa8\x1e\x68\x92\
|
||||
\x1d\x9d\xc1\x0e\x28\x79\x2a\xdb\xa9\x43\x31\xc2\xc2\x63\x21\xd7\
|
||||
\xfe\xe3\x61\x13\xf6\x6e\x68\xf8\x81\x9f\x45\x4d\x0a\xdf\x05\xf6\
|
||||
\x71\x93\x1c\xf9\x0c\x8e\x8c\xa3\x40\x1d\x9e\x3b\x34\x00\x91\x04\
|
||||
\x01\xf5\x34\x47\x5a\xe7\xb8\xde\x9a\x29\xb5\x85\x41\xc7\xd1\xd3\
|
||||
\xba\xd2\x14\xa7\x71\x3d\xd8\x24\xc3\x39\x2a\xe1\x18\x11\xb5\x07\
|
||||
\x75\x42\xc4\x20\xab\xb1\x20\x9a\x21\x31\xfa\x04\x12\x75\xfc\x44\
|
||||
\xc7\xb0\xa6\xa5\x19\x4e\xe3\x7a\xb0\x49\x86\x73\x74\xc2\x9b\x68\
|
||||
\x70\x87\x09\x14\xc0\x47\xb2\xd1\x89\xd9\x6e\x94\x21\xd7\x39\x56\
|
||||
\xfb\x70\x12\xd7\x83\x4d\x30\x0c\xf1\x1c\x9d\x30\x68\x7c\x7d\xac\
|
||||
\x4a\x16\x70\xf5\x02\xbf\xd6\x09\x43\xda\x31\x60\x6d\x47\x86\x5f\
|
||||
\x80\xd4\x54\x65\xde\x1d\x54\x0f\x34\xc9\x6e\x8e\x4e\x68\x23\x40\
|
||||
\xa6\xfc\x47\x3d\x0f\x33\x4f\xd7\x69\xc5\x58\x6b\xdb\x8c\x0c\xbb\
|
||||
\xa6\xe2\xf9\xba\x4c\x4f\xa1\x7a\xa0\x49\x76\x73\x14\xc2\x09\x0a\
|
||||
\x55\x0c\xe0\x43\x00\x5b\xf0\x40\x84\xb5\x42\x44\xed\x0c\x95\xf9\
|
||||
\x66\xd8\x55\x41\x2d\x8a\x5a\x21\xd3\xb8\x1e\x6c\x92\xe1\x1c\x85\
|
||||
\x30\xe8\xcd\x74\x1c\xa8\x87\x02\xe5\xbe\x40\x13\x6c\x3e\x7e\x2a\
|
||||
\xf1\xcd\xb0\x4b\xbf\xc0\xf8\xe6\x1e\xae\x07\x9b\x24\x38\x47\x20\
|
||||
\xaa\x10\x3a\x9c\x82\x4a\x02\x12\xd4\xda\xf0\xc1\xa2\xff\xed\x7c\
|
||||
\xa6\x2c\x23\x2b\xcd\xc2\x14\x01\x32\x27\xff\x49\x80\x1a\x89\x91\
|
||||
\x10\x85\x5e\xf3\x9d\x98\xd1\x09\xcc\x6a\x04\xee\xb1\x9b\x93\xff\
|
||||
\xa4\xc9\x30\xdf\x21\x02\x74\xea\x05\x1e\xad\xbf\x13\x5a\xfb\xba\
|
||||
\x72\x99\x61\x17\x40\xd1\x14\xb5\xbb\xb8\x1e\x6c\x92\xe1\x1c\x0d\
|
||||
\xc0\xd7\xd5\xaf\x53\x0c\x34\x1f\x82\x04\x78\x1d\xc5\xba\xc2\x53\
|
||||
\xb5\xb3\x19\x76\xf1\xd4\x6a\xac\x3f\x64\xd3\xb8\x1e\x6c\x92\xa1\
|
||||
\x7f\x75\xed\xdc\x98\x0b\x67\xd3\xd4\xd6\xad\xb3\xea\x8a\xf5\x68\
|
||||
\xd3\x75\xca\x1b\x8e\x43\xd3\xf1\xf7\xba\x4a\xb8\x19\x17\xe9\xf9\
|
||||
\x13\xf4\x20\x1e\x87\x0b\x05\x75\x30\xfc\x59\x74\x53\x70\x2e\x5c\
|
||||
\x83\x38\x55\x7d\x19\x08\x0a\x8a\x25\x0f\x4c\x03\x7a\xd3\xd8\x0e\
|
||||
\xfa\xda\xab\xb6\x16\xb7\xdd\xf1\x95\x57\xcd\xc9\x80\x1d\x6f\x8f\
|
||||
\xfc\xfc\x86\xb5\xbb\x67\xe5\x59\x06\x97\xe7\xbc\x58\xc0\x8d\xeb\
|
||||
\x3d\xaa\x8e\x85\x54\xcd\xbf\xf1\xf9\x14\x77\xff\x9a\xfb\x53\x9b\
|
||||
\xd9\x47\xb9\x8b\x1b\xee\xcf\x6c\x74\x1f\x63\x4f\x30\xbe\x66\x7f\
|
||||
\xb7\x09\x66\xa6\xbb\x65\xd3\x2d\xf0\x0d\x66\xb4\x01\x7e\x94\x35\
|
||||
\xbd\x66\xfd\x1f\xcd\xb1\xd7\xf5\xbc\xde\xdd\xe6\x78\x04\x38\xde\
|
||||
\x1c\x3f\xca\x7f\xa0\xd5\x27\x37\xce\x8f\xb2\x1f\xa8\xf5\xc9\x4d\
|
||||
\xf5\xa3\xec\xc5\x0d\xfb\x67\x36\xdc\x0f\xb2\x27\x03\xbd\x3e\xb1\
|
||||
\x19\x7f\x94\xf9\x40\xb3\x77\x1b\x75\x66\x3a\x70\x36\xdd\xa6\xdf\
|
||||
\x60\x46\x9b\xf4\x47\x59\x0f\x94\xfa\xe4\x06\xfe\x51\xf6\x03\xa5\
|
||||
\xde\x6b\xee\x99\x69\xd9\xd9\x74\x63\x7f\x83\x19\x6d\xea\x1f\x25\
|
||||
\x2d\x6e\x8b\xfb\xff\xd7\xf0\x3f\x48\x8e\x0e\xf4\xf7\xc4\xcb\xc0\
|
||||
\xa3\xcc\x07\xfa\x7b\xf2\x45\xe1\x51\xf6\x03\x1d\xde\xbf\x44\x78\
|
||||
\xed\xdd\xc0\xbb\x73\x85\xb8\x45\x8d\x5e\x20\xe6\x31\xd7\x77\x89\
|
||||
\x95\xfa\x8f\xb3\x97\x0f\xff\x02\x89\x44\xf7\x33\
|
||||
\x00\x00\xce\xfd\
|
||||
\x3c\
|
||||
\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\
|
||||
|
@ -53441,92 +53633,92 @@ qt_resource_struct = "\
|
|||
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x38\x00\x00\x00\x21\
|
||||
\x00\x00\x00\x38\x00\x02\x00\x00\x00\x05\x00\x00\x00\x1c\
|
||||
\x00\x00\x00\x1a\x00\x02\x00\x00\x00\x17\x00\x00\x00\x05\
|
||||
\x00\x00\x01\xb4\x00\x01\x00\x00\x00\x01\x00\x04\x07\x01\
|
||||
\x00\x00\x03\x00\x00\x01\x00\x00\x00\x01\x00\x08\x8d\xc4\
|
||||
\x00\x00\x02\xde\x00\x01\x00\x00\x00\x01\x00\x08\x50\xd6\
|
||||
\x00\x00\x02\x68\x00\x01\x00\x00\x00\x01\x00\x06\x54\x1b\
|
||||
\x00\x00\x03\x3e\x00\x01\x00\x00\x00\x01\x00\x09\x08\xd8\
|
||||
\x00\x00\x01\x06\x00\x01\x00\x00\x00\x01\x00\x01\xaf\xc8\
|
||||
\x00\x00\x01\x7c\x00\x01\x00\x00\x00\x01\x00\x02\xf2\x43\
|
||||
\x00\x00\x02\x4c\x00\x01\x00\x00\x00\x01\x00\x06\x17\x08\
|
||||
\x00\x00\x02\x8a\x00\x00\x00\x00\x00\x01\x00\x06\x90\x01\
|
||||
\x00\x00\x03\x5a\x00\x00\x00\x00\x00\x01\x00\x09\x46\x01\
|
||||
\x00\x00\x01\xd6\x00\x01\x00\x00\x00\x01\x00\x04\x44\xcb\
|
||||
\x00\x00\x00\xea\x00\x00\x00\x00\x00\x01\x00\x00\xe0\x7f\
|
||||
\x00\x00\x01\x60\x00\x01\x00\x00\x00\x01\x00\x02\xb5\xdc\
|
||||
\x00\x00\x02\x30\x00\x01\x00\x00\x00\x01\x00\x05\xd9\x2b\
|
||||
\x00\x00\x02\xc2\x00\x00\x00\x00\x00\x01\x00\x07\x9c\xd3\
|
||||
\x00\x00\x03\x22\x00\x01\x00\x00\x00\x01\x00\x08\xcb\xab\
|
||||
\x00\x00\x02\xa6\x00\x01\x00\x00\x00\x01\x00\x07\x5f\x4e\
|
||||
\x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x11\x7e\
|
||||
\x00\x00\x01\x22\x00\x01\x00\x00\x00\x01\x00\x01\xec\x1e\
|
||||
\x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x03\x31\x8e\
|
||||
\x00\x00\x02\x14\x00\x00\x00\x00\x00\x01\x00\x05\x0d\xd0\
|
||||
\x00\x00\x01\x3e\x00\x00\x00\x00\x00\x01\x00\x02\x2b\x1d\
|
||||
\x00\x00\x01\xf2\x00\x00\x00\x00\x00\x01\x00\x04\x83\x3b\
|
||||
\x00\x00\x01\xb4\x00\x01\x00\x00\x00\x01\x00\x04\x13\x04\
|
||||
\x00\x00\x03\x00\x00\x01\x00\x00\x00\x01\x00\x08\x99\xc7\
|
||||
\x00\x00\x02\xde\x00\x01\x00\x00\x00\x01\x00\x08\x5c\xd9\
|
||||
\x00\x00\x02\x68\x00\x01\x00\x00\x00\x01\x00\x06\x60\x1e\
|
||||
\x00\x00\x03\x3e\x00\x01\x00\x00\x00\x01\x00\x09\x14\xdb\
|
||||
\x00\x00\x01\x06\x00\x01\x00\x00\x00\x01\x00\x01\xbb\xcb\
|
||||
\x00\x00\x01\x7c\x00\x01\x00\x00\x00\x01\x00\x02\xfe\x46\
|
||||
\x00\x00\x02\x4c\x00\x01\x00\x00\x00\x01\x00\x06\x23\x0b\
|
||||
\x00\x00\x02\x8a\x00\x00\x00\x00\x00\x01\x00\x06\x9c\x04\
|
||||
\x00\x00\x03\x5a\x00\x00\x00\x00\x00\x01\x00\x09\x52\x04\
|
||||
\x00\x00\x01\xd6\x00\x01\x00\x00\x00\x01\x00\x04\x50\xce\
|
||||
\x00\x00\x00\xea\x00\x00\x00\x00\x00\x01\x00\x00\xec\x82\
|
||||
\x00\x00\x01\x60\x00\x01\x00\x00\x00\x01\x00\x02\xc1\xdf\
|
||||
\x00\x00\x02\x30\x00\x01\x00\x00\x00\x01\x00\x05\xe5\x2e\
|
||||
\x00\x00\x02\xc2\x00\x00\x00\x00\x00\x01\x00\x07\xa8\xd6\
|
||||
\x00\x00\x03\x22\x00\x01\x00\x00\x00\x01\x00\x08\xd7\xae\
|
||||
\x00\x00\x02\xa6\x00\x01\x00\x00\x00\x01\x00\x07\x6b\x51\
|
||||
\x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x1d\x81\
|
||||
\x00\x00\x01\x22\x00\x01\x00\x00\x00\x01\x00\x01\xf8\x21\
|
||||
\x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x03\x3d\x91\
|
||||
\x00\x00\x02\x14\x00\x00\x00\x00\x00\x01\x00\x05\x19\xd3\
|
||||
\x00\x00\x01\x3e\x00\x00\x00\x00\x00\x01\x00\x02\x37\x20\
|
||||
\x00\x00\x01\xf2\x00\x00\x00\x00\x00\x01\x00\x04\x8f\x3e\
|
||||
\x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
|
||||
\x00\x00\x00\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x08\xa4\
|
||||
\x00\x00\x00\x64\x00\x00\x00\x00\x00\x01\x00\x00\x01\x64\
|
||||
\x00\x00\x00\x96\x00\x01\x00\x00\x00\x01\x00\x00\x04\xc4\
|
||||
\x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x03\x12\
|
||||
\x00\x00\x06\xce\x00\x01\x00\x00\x00\x01\x00\x0a\xfb\x31\
|
||||
\x00\x00\x04\x7c\x00\x00\x00\x00\x00\x01\x00\x0a\x58\x1a\
|
||||
\x00\x00\x09\x34\x00\x01\x00\x00\x00\x01\x00\x0b\xd2\x27\
|
||||
\x00\x00\x0b\xc4\x00\x01\x00\x00\x00\x01\x00\x0c\xae\x32\
|
||||
\x00\x00\x05\x86\x00\x01\x00\x00\x00\x01\x00\x0a\x97\xc5\
|
||||
\x00\x00\x07\x16\x00\x00\x00\x00\x00\x01\x00\x0b\x18\x7b\
|
||||
\x00\x00\x08\x2a\x00\x01\x00\x00\x00\x01\x00\x0b\x81\x29\
|
||||
\x00\x00\x0b\x26\x00\x01\x00\x00\x00\x01\x00\x0c\x84\xef\
|
||||
\x00\x00\x07\x8a\x00\x00\x00\x00\x00\x01\x00\x0b\x42\x4a\
|
||||
\x00\x00\x09\xce\x00\x01\x00\x00\x00\x01\x00\x0c\x12\xc8\
|
||||
\x00\x00\x0c\x14\x00\x01\x00\x00\x00\x01\x00\x0c\xca\x56\
|
||||
\x00\x00\x04\xc2\x00\x01\x00\x00\x00\x01\x00\x0a\x71\x3c\
|
||||
\x00\x00\x08\xdc\x00\x00\x00\x00\x00\x01\x00\x0b\xaf\xcd\
|
||||
\x00\x00\x08\x50\x00\x01\x00\x00\x00\x01\x00\x0b\x86\xed\
|
||||
\x00\x00\x06\xf0\x00\x00\x00\x00\x00\x01\x00\x0b\x05\xe5\
|
||||
\x00\x00\x04\xe6\x00\x01\x00\x00\x00\x01\x00\x0a\x76\xbb\
|
||||
\x00\x00\x07\x5e\x00\x01\x00\x00\x00\x01\x00\x0b\x31\x40\
|
||||
\x00\x00\x04\x9e\x00\x01\x00\x00\x00\x01\x00\x0a\x66\xd0\
|
||||
\x00\x00\x0b\x4e\x00\x00\x00\x00\x00\x01\x00\x0c\x90\x5e\
|
||||
\x00\x00\x03\xfc\x00\x01\x00\x00\x00\x01\x00\x0a\x32\x88\
|
||||
\x00\x00\x05\xd6\x00\x01\x00\x00\x00\x01\x00\x0a\xb2\xe4\
|
||||
\x00\x00\x0a\xde\x00\x01\x00\x00\x00\x01\x00\x0c\x6d\xc0\
|
||||
\x00\x00\x0b\x00\x00\x01\x00\x00\x00\x01\x00\x0c\x7b\x5b\
|
||||
\x00\x00\x05\xb4\x00\x00\x00\x00\x00\x01\x00\x0a\xa0\xcb\
|
||||
\x00\x00\x03\xca\x00\x01\x00\x00\x00\x01\x00\x0a\x2a\xcf\
|
||||
\x00\x00\x08\xba\x00\x01\x00\x00\x00\x01\x00\x0b\xa8\x79\
|
||||
\x00\x00\x0a\x28\x00\x00\x00\x00\x00\x01\x00\x0c\x23\x10\
|
||||
\x00\x00\x06\x2a\x00\x01\x00\x00\x00\x01\x00\x0a\xc4\x54\
|
||||
\x00\x00\x0a\x4c\x00\x00\x00\x00\x00\x01\x00\x0c\x39\xc3\
|
||||
\x00\x00\x07\xe4\x00\x00\x00\x00\x00\x01\x00\x0b\x59\xfd\
|
||||
\x00\x00\x05\x38\x00\x01\x00\x00\x00\x01\x00\x0a\x86\xbb\
|
||||
\x00\x00\x0b\xe4\x00\x00\x00\x00\x00\x01\x00\x0c\xb8\xe0\
|
||||
\x00\x00\x06\x84\x00\x00\x00\x00\x00\x01\x00\x0a\xdb\x93\
|
||||
\x00\x00\x04\x28\x00\x00\x00\x00\x00\x01\x00\x0a\x3a\x8f\
|
||||
\x00\x00\x0c\x44\x00\x00\x00\x00\x00\x01\x00\x0c\xd6\x2f\
|
||||
\x00\x00\x0a\x94\x00\x00\x00\x00\x00\x01\x00\x0c\x57\x4a\
|
||||
\x00\x00\x04\x4c\x00\x01\x00\x00\x00\x01\x00\x0a\x4f\xaf\
|
||||
\x00\x00\x0a\xbc\x00\x01\x00\x00\x00\x01\x00\x0c\x66\x71\
|
||||
\x00\x00\x09\x56\x00\x01\x00\x00\x00\x01\x00\x0b\xda\xd0\
|
||||
\x00\x00\x0b\x74\x00\x01\x00\x00\x00\x01\x00\x0c\x98\xeb\
|
||||
\x00\x00\x06\xac\x00\x01\x00\x00\x00\x01\x00\x0a\xed\xd2\
|
||||
\x00\x00\x07\xbc\x00\x01\x00\x00\x00\x01\x00\x0b\x50\x4c\
|
||||
\x00\x00\x09\xac\x00\x00\x00\x00\x00\x01\x00\x0b\xfe\x37\
|
||||
\x00\x00\x05\x5c\x00\x01\x00\x00\x00\x01\x00\x0a\x8d\x84\
|
||||
\x00\x00\x08\x0a\x00\x00\x00\x00\x00\x01\x00\x0b\x6b\xb5\
|
||||
\x00\x00\x06\x0a\x00\x01\x00\x00\x00\x01\x00\x0a\xbe\xd5\
|
||||
\x00\x00\x09\xf8\x00\x01\x00\x00\x00\x01\x00\x0c\x19\x3d\
|
||||
\x00\x00\x08\x92\x00\x01\x00\x00\x00\x01\x00\x0b\x9d\x07\
|
||||
\x00\x00\x09\x0c\x00\x01\x00\x00\x00\x01\x00\x0b\xc2\x51\
|
||||
\x00\x00\x0b\x9a\x00\x01\x00\x00\x00\x01\x00\x0c\xa3\xb0\
|
||||
\x00\x00\x0a\x70\x00\x01\x00\x00\x00\x01\x00\x0c\x4c\x9a\
|
||||
\x00\x00\x05\x08\x00\x01\x00\x00\x00\x01\x00\x0a\x7e\x99\
|
||||
\x00\x00\x08\x72\x00\x00\x00\x00\x00\x01\x00\x0b\x8d\x35\
|
||||
\x00\x00\x06\x58\x00\x00\x00\x00\x00\x01\x00\x0a\xcc\x39\
|
||||
\x00\x00\x07\x3e\x00\x01\x00\x00\x00\x01\x00\x0b\x27\xcc\
|
||||
\x00\x00\x09\x7a\x00\x00\x00\x00\x00\x01\x00\x0b\xe2\x21\
|
||||
\x00\x00\x03\x76\x00\x01\x00\x00\x00\x01\x00\x0a\x10\x52\
|
||||
\x00\x00\x03\xa2\x00\x01\x00\x00\x00\x01\x00\x0a\x1a\x0b\
|
||||
\x00\x00\x00\xb0\x00\x01\x00\x00\x00\x01\x00\x00\x16\xe0\
|
||||
\x00\x00\x00\x64\x00\x01\x00\x00\x00\x01\x00\x00\x0a\xf1\
|
||||
\x00\x00\x00\x96\x00\x01\x00\x00\x00\x01\x00\x00\x13\x00\
|
||||
\x00\x00\x00\x7c\x00\x01\x00\x00\x00\x01\x00\x00\x0f\x23\
|
||||
\x00\x00\x06\xce\x00\x01\x00\x00\x00\x01\x00\x0b\x07\x34\
|
||||
\x00\x00\x04\x7c\x00\x00\x00\x00\x00\x01\x00\x0a\x64\x1d\
|
||||
\x00\x00\x09\x34\x00\x01\x00\x00\x00\x01\x00\x0b\xde\x2a\
|
||||
\x00\x00\x0b\xc4\x00\x01\x00\x00\x00\x01\x00\x0c\xba\x35\
|
||||
\x00\x00\x05\x86\x00\x01\x00\x00\x00\x01\x00\x0a\xa3\xc8\
|
||||
\x00\x00\x07\x16\x00\x00\x00\x00\x00\x01\x00\x0b\x24\x7e\
|
||||
\x00\x00\x08\x2a\x00\x01\x00\x00\x00\x01\x00\x0b\x8d\x2c\
|
||||
\x00\x00\x0b\x26\x00\x01\x00\x00\x00\x01\x00\x0c\x90\xf2\
|
||||
\x00\x00\x07\x8a\x00\x00\x00\x00\x00\x01\x00\x0b\x4e\x4d\
|
||||
\x00\x00\x09\xce\x00\x01\x00\x00\x00\x01\x00\x0c\x1e\xcb\
|
||||
\x00\x00\x0c\x14\x00\x01\x00\x00\x00\x01\x00\x0c\xd6\x59\
|
||||
\x00\x00\x04\xc2\x00\x01\x00\x00\x00\x01\x00\x0a\x7d\x3f\
|
||||
\x00\x00\x08\xdc\x00\x00\x00\x00\x00\x01\x00\x0b\xbb\xd0\
|
||||
\x00\x00\x08\x50\x00\x01\x00\x00\x00\x01\x00\x0b\x92\xf0\
|
||||
\x00\x00\x06\xf0\x00\x00\x00\x00\x00\x01\x00\x0b\x11\xe8\
|
||||
\x00\x00\x04\xe6\x00\x01\x00\x00\x00\x01\x00\x0a\x82\xbe\
|
||||
\x00\x00\x07\x5e\x00\x01\x00\x00\x00\x01\x00\x0b\x3d\x43\
|
||||
\x00\x00\x04\x9e\x00\x01\x00\x00\x00\x01\x00\x0a\x72\xd3\
|
||||
\x00\x00\x0b\x4e\x00\x00\x00\x00\x00\x01\x00\x0c\x9c\x61\
|
||||
\x00\x00\x03\xfc\x00\x01\x00\x00\x00\x01\x00\x0a\x3e\x8b\
|
||||
\x00\x00\x05\xd6\x00\x01\x00\x00\x00\x01\x00\x0a\xbe\xe7\
|
||||
\x00\x00\x0a\xde\x00\x01\x00\x00\x00\x01\x00\x0c\x79\xc3\
|
||||
\x00\x00\x0b\x00\x00\x01\x00\x00\x00\x01\x00\x0c\x87\x5e\
|
||||
\x00\x00\x05\xb4\x00\x00\x00\x00\x00\x01\x00\x0a\xac\xce\
|
||||
\x00\x00\x03\xca\x00\x01\x00\x00\x00\x01\x00\x0a\x36\xd2\
|
||||
\x00\x00\x08\xba\x00\x01\x00\x00\x00\x01\x00\x0b\xb4\x7c\
|
||||
\x00\x00\x0a\x28\x00\x00\x00\x00\x00\x01\x00\x0c\x2f\x13\
|
||||
\x00\x00\x06\x2a\x00\x01\x00\x00\x00\x01\x00\x0a\xd0\x57\
|
||||
\x00\x00\x0a\x4c\x00\x00\x00\x00\x00\x01\x00\x0c\x45\xc6\
|
||||
\x00\x00\x07\xe4\x00\x00\x00\x00\x00\x01\x00\x0b\x66\x00\
|
||||
\x00\x00\x05\x38\x00\x01\x00\x00\x00\x01\x00\x0a\x92\xbe\
|
||||
\x00\x00\x0b\xe4\x00\x00\x00\x00\x00\x01\x00\x0c\xc4\xe3\
|
||||
\x00\x00\x06\x84\x00\x00\x00\x00\x00\x01\x00\x0a\xe7\x96\
|
||||
\x00\x00\x04\x28\x00\x00\x00\x00\x00\x01\x00\x0a\x46\x92\
|
||||
\x00\x00\x0c\x44\x00\x00\x00\x00\x00\x01\x00\x0c\xe2\x32\
|
||||
\x00\x00\x0a\x94\x00\x00\x00\x00\x00\x01\x00\x0c\x63\x4d\
|
||||
\x00\x00\x04\x4c\x00\x01\x00\x00\x00\x01\x00\x0a\x5b\xb2\
|
||||
\x00\x00\x0a\xbc\x00\x01\x00\x00\x00\x01\x00\x0c\x72\x74\
|
||||
\x00\x00\x09\x56\x00\x01\x00\x00\x00\x01\x00\x0b\xe6\xd3\
|
||||
\x00\x00\x0b\x74\x00\x01\x00\x00\x00\x01\x00\x0c\xa4\xee\
|
||||
\x00\x00\x06\xac\x00\x01\x00\x00\x00\x01\x00\x0a\xf9\xd5\
|
||||
\x00\x00\x07\xbc\x00\x01\x00\x00\x00\x01\x00\x0b\x5c\x4f\
|
||||
\x00\x00\x09\xac\x00\x00\x00\x00\x00\x01\x00\x0c\x0a\x3a\
|
||||
\x00\x00\x05\x5c\x00\x01\x00\x00\x00\x01\x00\x0a\x99\x87\
|
||||
\x00\x00\x08\x0a\x00\x00\x00\x00\x00\x01\x00\x0b\x77\xb8\
|
||||
\x00\x00\x06\x0a\x00\x01\x00\x00\x00\x01\x00\x0a\xca\xd8\
|
||||
\x00\x00\x09\xf8\x00\x01\x00\x00\x00\x01\x00\x0c\x25\x40\
|
||||
\x00\x00\x08\x92\x00\x01\x00\x00\x00\x01\x00\x0b\xa9\x0a\
|
||||
\x00\x00\x09\x0c\x00\x01\x00\x00\x00\x01\x00\x0b\xce\x54\
|
||||
\x00\x00\x0b\x9a\x00\x01\x00\x00\x00\x01\x00\x0c\xaf\xb3\
|
||||
\x00\x00\x0a\x70\x00\x01\x00\x00\x00\x01\x00\x0c\x58\x9d\
|
||||
\x00\x00\x05\x08\x00\x01\x00\x00\x00\x01\x00\x0a\x8a\x9c\
|
||||
\x00\x00\x08\x72\x00\x00\x00\x00\x00\x01\x00\x0b\x99\x38\
|
||||
\x00\x00\x06\x58\x00\x00\x00\x00\x00\x01\x00\x0a\xd8\x3c\
|
||||
\x00\x00\x07\x3e\x00\x01\x00\x00\x00\x01\x00\x0b\x33\xcf\
|
||||
\x00\x00\x09\x7a\x00\x00\x00\x00\x00\x01\x00\x0b\xee\x24\
|
||||
\x00\x00\x03\x76\x00\x01\x00\x00\x00\x01\x00\x0a\x1c\x55\
|
||||
\x00\x00\x03\xa2\x00\x01\x00\x00\x00\x01\x00\x0a\x26\x0e\
|
||||
"
|
||||
|
||||
def qInitResources():
|
||||
|
|
|
@ -1,5 +1,62 @@
|
|||
<svg>
|
||||
<defs>
|
||||
<?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"
|
||||
id="svg3880"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
width="64"
|
||||
height="64"
|
||||
sodipodi:docname="concrete.svg">
|
||||
<metadata
|
||||
id="metadata3920">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1057"
|
||||
id="namedview3918"
|
||||
showgrid="true"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:zoom="5.0743655"
|
||||
inkscape:cx="58.310384"
|
||||
inkscape:cy="6.0346181"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3880">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3922"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="8px"
|
||||
spacingy="8px" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3882">
|
||||
<pattern
|
||||
id="concrete"
|
||||
patternUnits="userSpaceOnUse"
|
||||
|
@ -11,23 +68,124 @@
|
|||
style="fill:none; stroke:#000000; stroke-width:.5"
|
||||
transform="scale(.01)"
|
||||
id="g3401">
|
||||
<path d="m 5.3571428,3.5228946 a 1.3392857,1.3392857 0 1 1 -2.6785715,0 1.3392857,1.3392857 0 1 1 2.6785715,0 z"/>
|
||||
<path d="m 14.107143,6.8264661 a 3.2142856,3.2142856 0 1 1 -6.4285711,0 3.2142856,3.2142856 0 1 1 6.4285711,0 z"/>
|
||||
<path d="m 14.821428,30.933609 a 0.71428573,0.71428573 0 1 1 -1.428571,0 0.71428573,0.71428573 0 1 1 1.428571,0 z"/>
|
||||
<path d="m 28.571428,16.201466 a 2.2321429,2.2321429 0 1 1 -4.464286,0 2.2321429,2.2321429 0 1 1 4.464286,0 z"/>
|
||||
<path d="m 6.2500002,20.085394 a 0.49107143,0.49107143 0 1 1 -0.9821429,0 0.49107143,0.49107143 0 1 1 0.9821429,0 z"/>
|
||||
<path d="m 34.732144,27.527725 a 0.26785713,0.43340197 0 1 1 -0.535714,0 0.26785713,0.43340197 0 1 1 0.535714,0 z"/>
|
||||
<path d="m 40.178572,9.3711081 a 0.13392857,0.22321428 0 1 1 -0.267857,0 0.13392857,0.22321428 0 1 1 0.267857,0 z"/>
|
||||
<path d="m 40.982144,38.746109 a 0.22321428,0.22321428 0 1 1 -0.446428,0 0.22321428,0.22321428 0 1 1 0.446428,0 z"/>
|
||||
<path d="m 31.160715,40.576466 a 3.9285715,3.9285715 0 1 1 -7.857143,0 3.9285715,3.9285715 0 1 1 7.857143,0 z"/>
|
||||
<path d="m 22.232143,38.255035 a 1.6071428,1.6071428 0 1 1 -3.214286,0 1.6071428,1.6071428 0 1 1 3.214286,0 z"/>
|
||||
<path d="m 41.964287,11.647895 a 0.89285713,0.89285713 0 1 1 -1.785714,0 0.89285713,0.89285713 0 1 1 1.785714,0 z"/>
|
||||
<path d="m 36.07143,25.755037 a 0.35714287,0.35714287 0 1 1 -0.714286,0 0.35714287,0.35714287 0 1 1 0.714286,0 z"/>
|
||||
<path d="m 6.25,42.987179 a 0.625,0.625 0 1 1 -1.25,0 0.625,0.625 0 1 1 1.25,0 z"/>
|
||||
<path d="m 17.321428,19.951466 a 1.3392857,1.3392857 0 1 1 -2.678571,0 1.3392857,1.3392857 0 1 1 2.678571,0 z"/>
|
||||
<path d="m 11.964286,18.165752 a 0.44642857,0.44642857 0 1 1 -0.892857,0 0.44642857,0.44642857 0 1 1 0.892857,0 z"/>
|
||||
<path d="m 16.607143,7.8978949 a 0.53571427,0.53571427 0 1 1 -1.071429,0 0.53571427,0.53571427 0 1 1 1.071429,0 z"/>
|
||||
<path
|
||||
d="m 5.3571428,3.5228946 a 1.3392857,1.3392857 0 1 1 -2.6785715,0 1.3392857,1.3392857 0 1 1 2.6785715,0 z"
|
||||
id="path3886" />
|
||||
<path
|
||||
d="m 14.107143,6.8264661 a 3.2142856,3.2142856 0 1 1 -6.4285711,0 3.2142856,3.2142856 0 1 1 6.4285711,0 z"
|
||||
id="path3888" />
|
||||
<path
|
||||
d="m 14.821428,30.933609 a 0.71428573,0.71428573 0 1 1 -1.428571,0 0.71428573,0.71428573 0 1 1 1.428571,0 z"
|
||||
id="path3890" />
|
||||
<path
|
||||
d="m 28.571428,16.201466 a 2.2321429,2.2321429 0 1 1 -4.464286,0 2.2321429,2.2321429 0 1 1 4.464286,0 z"
|
||||
id="path3892" />
|
||||
<path
|
||||
d="m 6.2500002,20.085394 a 0.49107143,0.49107143 0 1 1 -0.9821429,0 0.49107143,0.49107143 0 1 1 0.9821429,0 z"
|
||||
id="path3894" />
|
||||
<path
|
||||
d="m 34.732144,27.527725 a 0.26785713,0.43340197 0 1 1 -0.535714,0 0.26785713,0.43340197 0 1 1 0.535714,0 z"
|
||||
id="path3896" />
|
||||
<path
|
||||
d="m 40.178572,9.3711081 a 0.13392857,0.22321428 0 1 1 -0.267857,0 0.13392857,0.22321428 0 1 1 0.267857,0 z"
|
||||
id="path3898" />
|
||||
<path
|
||||
d="m 40.982144,38.746109 a 0.22321428,0.22321428 0 1 1 -0.446428,0 0.22321428,0.22321428 0 1 1 0.446428,0 z"
|
||||
id="path3900" />
|
||||
<path
|
||||
d="m 31.160715,40.576466 a 3.9285715,3.9285715 0 1 1 -7.857143,0 3.9285715,3.9285715 0 1 1 7.857143,0 z"
|
||||
id="path3902" />
|
||||
<path
|
||||
d="m 22.232143,38.255035 a 1.6071428,1.6071428 0 1 1 -3.214286,0 1.6071428,1.6071428 0 1 1 3.214286,0 z"
|
||||
id="path3904" />
|
||||
<path
|
||||
d="m 41.964287,11.647895 a 0.89285713,0.89285713 0 1 1 -1.785714,0 0.89285713,0.89285713 0 1 1 1.785714,0 z"
|
||||
id="path3906" />
|
||||
<path
|
||||
d="m 36.07143,25.755037 a 0.35714287,0.35714287 0 1 1 -0.714286,0 0.35714287,0.35714287 0 1 1 0.714286,0 z"
|
||||
id="path3908" />
|
||||
<path
|
||||
d="m 6.25,42.987179 a 0.625,0.625 0 1 1 -1.25,0 0.625,0.625 0 1 1 1.25,0 z"
|
||||
id="path3910" />
|
||||
<path
|
||||
d="m 17.321428,19.951466 a 1.3392857,1.3392857 0 1 1 -2.678571,0 1.3392857,1.3392857 0 1 1 2.678571,0 z"
|
||||
id="path3912" />
|
||||
<path
|
||||
d="m 11.964286,18.165752 a 0.44642857,0.44642857 0 1 1 -0.892857,0 0.44642857,0.44642857 0 1 1 0.892857,0 z"
|
||||
id="path3914" />
|
||||
<path
|
||||
d="m 16.607143,7.8978949 a 0.53571427,0.53571427 0 1 1 -1.071429,0 0.53571427,0.53571427 0 1 1 1.071429,0 z"
|
||||
id="path3916" />
|
||||
</g>
|
||||
</pattern>
|
||||
</defs>
|
||||
</svg>
|
||||
<g
|
||||
id="g4092"
|
||||
transform="matrix(1.4548802,0,0,-1.4548802,-0.3104243,65.764647)"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5">
|
||||
<path
|
||||
id="path4094"
|
||||
d="m 5.3571428,3.5228946 a 1.3392857,1.3392857 0 1 1 -2.6785715,0 1.3392857,1.3392857 0 1 1 2.6785715,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4096"
|
||||
d="m 14.107143,6.8264661 a 3.2142856,3.2142856 0 1 1 -6.4285711,0 3.2142856,3.2142856 0 1 1 6.4285711,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4098"
|
||||
d="m 14.821428,30.933609 a 0.71428573,0.71428573 0 1 1 -1.428571,0 0.71428573,0.71428573 0 1 1 1.428571,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4100"
|
||||
d="m 28.571428,16.201466 a 2.232143,2.232143 0 1 1 -4.464286,0 2.232143,2.232143 0 1 1 4.464286,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4102"
|
||||
d="m 6.2500002,20.085394 a 0.49107145,0.49107145 0 1 1 -0.9821429,0 0.49107145,0.49107145 0 1 1 0.9821429,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4104"
|
||||
d="m 34.732144,27.527725 a 0.26785713,0.43340197 0 1 1 -0.535714,0 0.26785713,0.43340197 0 1 1 0.535714,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4106"
|
||||
d="m 40.178572,9.3711081 a 0.13392857,0.22321428 0 1 1 -0.267857,0 0.13392857,0.22321428 0 1 1 0.267857,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4108"
|
||||
d="m 40.982144,38.746109 a 0.22321428,0.22321428 0 1 1 -0.446428,0 0.22321428,0.22321428 0 1 1 0.446428,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4110"
|
||||
d="m 31.160715,40.576466 a 3.9285715,3.9285715 0 1 1 -7.857143,0 3.9285715,3.9285715 0 1 1 7.857143,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4112"
|
||||
d="m 22.232143,38.255035 a 1.607143,1.607143 0 1 1 -3.214286,0 1.607143,1.607143 0 1 1 3.214286,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4114"
|
||||
d="m 41.964287,11.647895 a 0.89285713,0.89285713 0 1 1 -1.785714,0 0.89285713,0.89285713 0 1 1 1.785714,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4116"
|
||||
d="m 36.07143,25.755037 a 0.357143,0.357143 0 1 1 -0.714286,0 0.357143,0.357143 0 1 1 0.714286,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4118"
|
||||
d="m 6.25,42.987179 a 0.625,0.625 0 1 1 -1.25,0 0.625,0.625 0 1 1 1.25,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4120"
|
||||
d="m 17.321428,19.951466 a 1.3392857,1.3392857 0 1 1 -2.678571,0 1.3392857,1.3392857 0 1 1 2.678571,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4122"
|
||||
d="m 11.964286,18.165752 a 0.44642857,0.44642857 0 1 1 -0.892857,0 0.44642857,0.44642857 0 1 1 0.892857,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4124"
|
||||
d="m 16.607143,7.8978949 a 0.5357145,0.5357145 0 1 1 -1.071429,0 0.5357145,0.5357145 0 1 1 1.071429,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 7.5 KiB |
|
@ -1,5 +1,61 @@
|
|||
<svg>
|
||||
<defs>
|
||||
<?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"
|
||||
id="svg3542"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
width="64"
|
||||
height="64"
|
||||
sodipodi:docname="cross.svg">
|
||||
<metadata
|
||||
id="metadata3552">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1057"
|
||||
id="namedview3550"
|
||||
showgrid="true"
|
||||
inkscape:zoom="5.0743655"
|
||||
inkscape:cx="-0.94457999"
|
||||
inkscape:cy="32.233289"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3542">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3662"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="8px"
|
||||
spacingy="8px" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3544">
|
||||
<pattern
|
||||
id="cross"
|
||||
patternUnits="userSpaceOnUse"
|
||||
|
@ -19,4 +75,74 @@
|
|||
</g>
|
||||
</pattern>
|
||||
</defs>
|
||||
</svg>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 64,0 0,64"
|
||||
id="path2998"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 48,0 0,48"
|
||||
id="path3000"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 16,64 64,16"
|
||||
id="path3002"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 32,0 0,32"
|
||||
id="path3004"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 16,0 0,16"
|
||||
id="path3006"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 64,32 32,64"
|
||||
id="path3008"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 64,48 48,64"
|
||||
id="path3010"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0,0 64,64"
|
||||
id="path3683"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 16,0 64,48"
|
||||
id="path3685"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 32,0 64,32"
|
||||
id="path3687"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 48,0 64,16"
|
||||
id="path3689"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0,16 48,64"
|
||||
id="path3691"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0,32 32,64"
|
||||
id="path3693"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0,48 16,64"
|
||||
id="path3695"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 426 B After Width: | Height: | Size: 4.8 KiB |
|
@ -1,5 +1,61 @@
|
|||
<svg>
|
||||
<defs>
|
||||
<?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"
|
||||
id="svg3448"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
width="64"
|
||||
height="64"
|
||||
sodipodi:docname="line.svg">
|
||||
<metadata
|
||||
id="metadata3457">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1057"
|
||||
id="namedview3455"
|
||||
showgrid="true"
|
||||
inkscape:zoom="3.5881183"
|
||||
inkscape:cx="50.919261"
|
||||
inkscape:cy="32.393148"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3448">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3459"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="8px"
|
||||
spacingy="8px" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3450">
|
||||
<pattern
|
||||
id="line"
|
||||
patternUnits="userSpaceOnUse"
|
||||
|
@ -16,4 +72,24 @@
|
|||
</g>
|
||||
</pattern>
|
||||
</defs>
|
||||
</svg>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 0,56 64,0"
|
||||
id="path3461"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 0,40 64,0"
|
||||
id="path3463"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 0,24 64,0"
|
||||
id="path3465"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0,8 64,8"
|
||||
id="path3467"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 2.7 KiB |
|
@ -1,5 +1,61 @@
|
|||
<svg>
|
||||
<defs>
|
||||
<?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"
|
||||
id="svg3784"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
width="64"
|
||||
height="64"
|
||||
sodipodi:docname="square.svg">
|
||||
<metadata
|
||||
id="metadata3794">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1057"
|
||||
id="namedview3792"
|
||||
showgrid="true"
|
||||
inkscape:zoom="7.2407734"
|
||||
inkscape:cx="36.623778"
|
||||
inkscape:cy="33.357312"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3784">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3796"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="8px"
|
||||
spacingy="8px" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3786">
|
||||
<pattern
|
||||
id="square"
|
||||
patternUnits="userSpaceOnUse"
|
||||
|
@ -19,4 +75,44 @@
|
|||
</g>
|
||||
</pattern>
|
||||
</defs>
|
||||
</svg>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 0,56 64,0"
|
||||
id="path3461"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 0,40 64,0"
|
||||
id="path3463"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 0,24 64,0"
|
||||
id="path3465"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0,8 64,8"
|
||||
id="path3467"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8,0 8,64"
|
||||
id="path3811"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 24,0 0,64"
|
||||
id="path3813"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 40,0 0,64"
|
||||
id="path3815"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 56,0 0,64"
|
||||
id="path3817"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 430 B After Width: | Height: | Size: 3.6 KiB |