Merge branch 'master' of ssh://git.code.sf.net/p/free-cad/code
This commit is contained in:
commit
5b372f70c8
|
@ -53,6 +53,8 @@ def getDefaultColor(objectType):
|
|||
c = p.GetUnsigned("StructureColor",2847259391)
|
||||
elif objectType == "WindowGlass":
|
||||
c = p.GetUnsigned("WindowGlassColor",1772731135)
|
||||
elif objectType == "Rebar":
|
||||
c = p.GetUnsigned("RebarColor",3111475967)
|
||||
else:
|
||||
c = p.GetUnsigned("WindowsColor",810781695)
|
||||
r = float((c>>24)&0xFF)/255.0
|
||||
|
|
|
@ -31,9 +31,10 @@ __author__ = "Yorik van Havre"
|
|||
__url__ = "http://www.freecadweb.org"
|
||||
|
||||
|
||||
def makeRebar(baseobj,sketch,diameter=6,amount=1,offset=30,name="Rebar"):
|
||||
def makeRebar(baseobj,sketch,diameter=None,amount=1,offset=None,name="Rebar"):
|
||||
"""makeRebar(baseobj,sketch,[diameter,amount,offset,name]): adds a Reinforcement Bar object
|
||||
to the given structural object, using the given sketch as profile."""
|
||||
p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Arch")
|
||||
obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython",name)
|
||||
_Rebar(obj)
|
||||
_ViewProviderRebar(obj.ViewObject)
|
||||
|
@ -49,9 +50,18 @@ def makeRebar(baseobj,sketch,diameter=6,amount=1,offset=30,name="Rebar"):
|
|||
a = baseobj.Armatures
|
||||
a.append(obj)
|
||||
baseobj.Armatures = a
|
||||
obj.Diameter = diameter
|
||||
if diameter:
|
||||
obj.Diameter = diameter
|
||||
else:
|
||||
obj.Diameter = p.GetFloat("RebarDiameter",6)
|
||||
obj.Amount = amount
|
||||
obj.Offset = offset
|
||||
if offset:
|
||||
obj.OffsetStart = offset
|
||||
obj.OffsetEnd = offset
|
||||
else:
|
||||
obj.OffsetStart = p.GetFloat("RebarOffset",30)
|
||||
obj.OffsetEnd = p.GetFloat("RebarOffset",30)
|
||||
obj.ViewObject.ShapeColor = ArchCommands.getDefaultColor("Rebar")
|
||||
return obj
|
||||
|
||||
|
||||
|
@ -115,10 +125,11 @@ class _Rebar(ArchComponent.Component):
|
|||
|
||||
def __init__(self,obj):
|
||||
ArchComponent.Component.__init__(self,obj)
|
||||
obj.addProperty("App::PropertyDistance","Diameter","Arch","The diameter of the bar").Diameter = 6
|
||||
obj.addProperty("App::PropertyDistance","Offset","Arch","The distance between the border of the beam and the bars (concrete cover).").Offset = 30
|
||||
obj.addProperty("App::PropertyInteger","Amount","Arch","The amount of bars").Amount = 1
|
||||
obj.addProperty("App::PropertyFloat","Rounding","Arch","The fillet to apply to the angle of the base profile. This value is multiplied by the bar diameter.").Rounding = 0
|
||||
obj.addProperty("App::PropertyDistance","Diameter","Arch","The diameter of the bar")
|
||||
obj.addProperty("App::PropertyDistance","OffsetStart","Arch","The distance between the border of the beam and the fist bar (concrete cover).")
|
||||
obj.addProperty("App::PropertyDistance","OffsetEnd","Arch","The distance between the border of the beam and the last bar (concrete cover).")
|
||||
obj.addProperty("App::PropertyInteger","Amount","Arch","The amount of bars")
|
||||
obj.addProperty("App::PropertyFloat","Rounding","Arch","The fillet to apply to the angle of the base profile. This value is multiplied by the bar diameter.")
|
||||
self.Type = "Component"
|
||||
|
||||
def getBaseAndAxis(self,obj):
|
||||
|
@ -164,7 +175,7 @@ class _Rebar(ArchComponent.Component):
|
|||
#print axis
|
||||
size = (ArchCommands.projectToVector(father.Shape.copy(),axis)).Length
|
||||
#print size
|
||||
if obj.Offset > size/2:
|
||||
if (obj.OffsetStart+obj.OffsetEnd) > size:
|
||||
return
|
||||
|
||||
# all tests ok!
|
||||
|
@ -184,11 +195,11 @@ class _Rebar(ArchComponent.Component):
|
|||
bar.translate(offset)
|
||||
shapes.append(bar)
|
||||
else:
|
||||
if obj.Offset:
|
||||
baseoffset = DraftVecUtils.scaleTo(axis,obj.Offset)
|
||||
if obj.OffsetStart:
|
||||
baseoffset = DraftVecUtils.scaleTo(axis,obj.OffsetStart)
|
||||
else:
|
||||
baseoffset = None
|
||||
interval = size - 2 * obj.Offset
|
||||
interval = size - (obj.OffsetStart + obj.OffsetEnd)
|
||||
interval = interval / (obj.Amount - 1)
|
||||
interval = DraftVecUtils.scaleTo(axis,interval)
|
||||
for i in range(obj.Amount):
|
||||
|
|
|
@ -48,11 +48,11 @@ def makeWall(baseobj=None,length=None,width=None,height=None,align="Center",face
|
|||
if width:
|
||||
obj.Width = width
|
||||
else:
|
||||
width = p.GetFloat("WallWidth",200)
|
||||
obj.Width = p.GetFloat("WallWidth",200)
|
||||
if height:
|
||||
obj.Height = height
|
||||
else:
|
||||
p.GetFloat("WallHeight",3000)
|
||||
obj.Height = p.GetFloat("WallHeight",3000)
|
||||
obj.Align = align
|
||||
if obj.Base:
|
||||
if Draft.getType(obj.Base) != "Space":
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Resource object code
|
||||
#
|
||||
# Created: Mon Oct 7 13:42:59 2013
|
||||
# Created: Sun Oct 13 16:04:47 2013
|
||||
# by: The Resource Compiler for PyQt (Qt v4.8.5)
|
||||
#
|
||||
# WARNING! All changes made in this file will be lost!
|
||||
|
@ -27568,143 +27568,151 @@ qt_resource_data = "\
|
|||
\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\
|
||||
\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\
|
||||
\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\
|
||||
\x00\x00\x08\x6e\
|
||||
\x00\x00\x08\xee\
|
||||
\x00\
|
||||
\x00\x4d\x6d\x78\x9c\xed\x5c\xeb\x73\xd3\x38\x10\xff\xce\x5f\xa1\
|
||||
\xc9\x67\x20\x8f\x3e\x68\x3a\x6e\x18\xa0\x14\xb8\x81\xbb\x72\xed\
|
||||
\x71\x1f\x6f\x14\x7b\x13\xeb\x90\x2d\x9f\x24\x37\x09\x7f\xfd\xad\
|
||||
\x64\xe7\x61\xc7\x71\x1a\xe7\x45\x4a\x32\x30\xb5\x25\x79\x77\xb5\
|
||||
\xfe\xed\x4b\x96\xed\xbc\x1e\x06\x9c\x3c\x80\x54\x4c\x84\x57\xb5\
|
||||
\xe6\xcb\x46\x8d\x40\xe8\x0a\x8f\x85\xfd\xab\xda\x5f\xf7\x37\x2f\
|
||||
\x2e\x6a\xaf\x3b\xcf\x9c\x98\x4d\x07\x9d\xe2\xa0\xce\x33\xe2\xb8\
|
||||
\x9c\x2a\xd5\xf9\x10\xb3\xcb\xcb\x6b\x46\xb9\xe8\xe3\x5f\xde\xbf\
|
||||
\x03\xad\xf1\x62\xf5\x46\xba\xbe\x53\x4f\xc6\xe0\xe0\x01\xf3\xfa\
|
||||
\xa0\x89\x3d\xbf\xaa\x7d\xfd\xdb\x9e\xd6\x48\x48\x03\xb8\xaa\x95\
|
||||
\xd1\x30\xac\x88\x13\x49\x11\x81\xd4\xa3\xf4\x82\x3e\x88\x00\xb4\
|
||||
\x1c\xd9\x4e\xe2\x48\x70\xb5\x3d\x22\xce\xb0\xd3\x70\xea\xc3\xf4\
|
||||
\x64\x64\x4e\x46\xe9\x09\x4a\xa0\xfd\xce\xd9\xab\x33\xa7\x9e\x1c\
|
||||
\x26\xcd\x3e\xb0\xbe\xaf\x3b\xe7\xad\xb6\x53\x4f\x8f\x2d\xcd\xfa\
|
||||
\x98\xa8\x53\x1f\x33\x2f\x92\x64\xc0\x42\x4f\x0c\xee\x99\xe6\x90\
|
||||
\x0a\xa3\xb4\x44\xd9\x3b\x1f\x20\x04\x49\x39\x51\xe9\x5c\x9c\x7a\
|
||||
\xda\x31\x4f\x92\xd3\x91\x88\xa7\xba\xf9\xf6\x56\x0c\x3f\xdb\xa6\
|
||||
\x94\x62\x8e\xa5\x8a\xa8\x8b\x84\x6a\xe9\x04\xc2\x38\xe8\x82\xec\
|
||||
\x9c\x3b\xf5\xf4\x28\x11\x7f\x96\xc3\x1c\x89\x80\xca\x3e\x0b\x73\
|
||||
\x14\xda\xa5\x14\x98\x86\x60\xaa\xc9\xd9\x7b\xf9\x41\x8a\x38\x42\
|
||||
\x99\xc7\x77\xb3\x3f\x3e\x4f\x86\xcf\x31\xd7\x53\x65\xcd\xe8\xeb\
|
||||
\x1a\x7a\x34\xe6\xba\x50\x5f\xf3\xe2\x94\x6a\x2d\xe5\x83\x80\xd5\
|
||||
\xcc\xa5\x3c\x69\xfd\xa7\x35\x65\x39\x9d\x4b\x01\xa1\x8f\x73\x84\
|
||||
\x7c\x21\xd9\x0f\x11\xea\x02\x52\x79\x62\xf3\xda\xf9\x4c\xbb\xc0\
|
||||
\xc7\x94\xb8\x39\xc9\x5c\x5e\xa0\x1e\x18\xea\xcc\x80\x89\x8a\xfe\
|
||||
\xa6\x9c\xe7\xd4\x52\xac\x9b\xa4\x31\x11\x64\x46\xd2\x7a\x56\xd4\
|
||||
\x39\xc9\x0d\xb0\x40\xce\x4d\xfa\xce\x36\x97\xca\x8c\x63\x01\x87\
|
||||
\x6a\xf4\x0f\x39\xd1\x01\x21\xd5\xf9\xaa\x2f\x2f\x3f\x4e\xe8\x39\
|
||||
\x75\xdb\xb8\x6c\x02\xf3\xb8\x67\x3f\xe0\x23\x0b\xf1\xb6\x28\xed\
|
||||
\x21\x4c\xae\x6a\x8d\xbc\x9e\x70\x44\xa6\x65\x6c\xf5\xa7\x8d\x8c\
|
||||
\xd1\x4f\x7a\x53\x83\x6f\x35\x32\xb6\x3f\x15\x2b\x4f\x70\x81\xa6\
|
||||
\x13\xc5\xad\xa0\xe9\xe5\x18\x69\x36\xaa\x82\xc4\x4c\xf3\x72\x9b\
|
||||
\x30\xc9\x0a\x6f\x7d\xf7\xad\x84\xde\xb5\x88\xbb\x1c\xee\x22\x16\
|
||||
\xce\xfa\x02\xd3\x1b\x61\xaf\x67\x7b\x15\xf6\x76\xc5\x70\x89\x05\
|
||||
\x04\x74\xc8\x82\x38\xc8\xcd\x2f\xa1\xd0\x69\xe3\xef\x65\xfb\xa2\
|
||||
\x3d\xf9\xbd\xba\x68\x39\xf5\xb4\x73\x65\x4c\x3d\x50\x1e\x43\x31\
|
||||
\xa3\x56\xa3\xf1\xb2\x91\xfd\x55\xe7\x63\x54\xf0\x3e\x34\x11\x6b\
|
||||
\x21\x78\xdd\x19\x2b\xb7\x37\x11\xa3\xe7\x23\x6f\x62\x21\xbb\x5b\
|
||||
\xaa\xfd\xe5\xdc\xbe\x08\xaf\x9e\x86\xea\x5d\x21\xa6\x08\xee\x17\
|
||||
\x15\xd1\xfe\xd1\x5a\xed\xcf\x0e\xf7\x93\x03\x80\xfb\x49\x63\x8f\
|
||||
\x78\x4f\x6e\xe3\xaf\x04\xf8\x76\x45\xc0\xbf\x13\x5c\xc8\x7d\xe0\
|
||||
\xdd\x32\x7e\x1b\x6b\x8d\x21\x3e\x8f\x76\xd7\xf4\x75\x93\xbe\xd2\
|
||||
\x69\x09\xc1\xef\x59\x54\x3c\xb3\x7b\x9f\x29\x82\xff\xb4\x0f\xc4\
|
||||
\x4b\x93\x41\x4b\x98\xf4\xf0\x7f\x08\x03\x62\x90\x42\x44\xf7\x5f\
|
||||
\x4c\xcc\xf3\xe9\xe1\x0a\x50\xb1\x34\xf3\xe0\x30\x6d\xb9\xdc\x40\
|
||||
\x82\xd7\x69\x35\x4f\x4d\x21\xe0\xe5\xba\xfa\x12\x20\x4c\x3a\x93\
|
||||
\xc3\x6c\x77\x17\x8d\x2c\xe9\xb5\x47\xd9\x94\x62\x8e\xd5\x56\x0c\
|
||||
\xca\xde\xad\x43\xb5\x27\xa7\x9e\xa4\xe4\x93\x7c\x3d\xd3\xbd\x6e\
|
||||
\xf6\xbe\x56\xee\x5e\xd1\x6a\xef\xb4\x8c\x5d\x1d\x4b\xd8\x5b\xfa\
|
||||
\xbe\x24\xe5\x3a\x26\xf0\x1b\x4f\xe0\xab\x56\x79\x9f\x21\xec\xff\
|
||||
\xfc\x19\xfc\xe9\x01\xa4\x34\xcd\x3d\x65\x34\x13\x6b\x4f\x6e\xe5\
|
||||
\xa1\xba\xe1\x4a\xa8\x2f\x4f\x75\x0f\xbc\x6c\x3d\x3b\x82\x7e\x39\
|
||||
\xe8\x7f\xb9\xda\xb5\x59\xee\x0b\x0f\xbd\x78\x3d\x3f\x0c\xd0\xef\
|
||||
\x19\xf5\xbf\x5e\x05\xdb\x6c\x3e\xd1\x12\x76\xd9\xfa\xfc\x7a\x45\
|
||||
\xec\x04\x31\xbb\xad\x64\x9b\x67\x8d\xc5\x95\x6c\xf3\xbc\x5d\x52\
|
||||
\xc9\x36\x2f\xce\xf7\x54\xc9\x4e\x74\x75\x2c\x67\x17\x3f\x8c\x9a\
|
||||
\xf5\xcf\x15\xcc\xb8\x3c\xa7\x29\x4b\xd8\xcc\x83\xcf\xfd\xd5\xb3\
|
||||
\xe5\x41\xf7\x58\xcf\x6e\xba\x9e\x2d\x4f\x03\x16\xe3\xe4\x46\xe2\
|
||||
\x80\xc4\x07\xfe\xcc\x3e\xbf\xbc\x6e\x59\xc5\xd3\x9e\x9c\x2c\x76\
|
||||
\xb4\xa7\x67\x25\x7e\xf6\x7c\x5f\x6e\x36\x31\xe5\x83\xf6\xb1\x95\
|
||||
\x12\x98\xaa\xae\xef\x83\xa1\xf9\xf3\x43\xba\xdc\x43\xae\x02\xe9\
|
||||
\x76\x09\xa4\x9b\x17\x27\x65\xab\xe0\x8d\x93\xbd\x82\xda\xde\xaa\
|
||||
\x83\x46\xf6\x96\xb3\x87\xcc\x3e\x83\x47\x23\xd0\x07\xf7\x7b\x51\
|
||||
\xe5\xe8\x9a\x0e\x53\x34\x2e\x79\x9e\x5b\x96\x42\x7f\xea\x61\xf6\
|
||||
\x9c\x64\xd1\x96\x1c\x78\xcf\xc9\xc0\x87\x90\xb4\x88\x62\x01\xe3\
|
||||
\x54\x92\x01\xe5\x5c\x11\x8a\x39\x74\x17\xf0\x12\x34\xc5\x30\xc4\
|
||||
\x54\xda\x8c\xc4\xc4\x9b\x49\x12\x87\x1e\x48\x3e\x32\x7d\xea\x3b\
|
||||
\x68\xa4\xa3\xc8\x80\x71\x8e\xe3\xc9\xbf\x82\x85\xe0\x11\x8c\xdb\
|
||||
\x82\x88\x10\x9e\x13\x1a\x7a\x36\x5f\xd7\x03\x91\x52\x4e\x87\xba\
|
||||
\x02\x23\x17\x0e\xa9\x9e\xa1\x2f\xf6\x21\xbf\xa1\x14\x29\xb7\x2e\
|
||||
\x55\x30\x23\xa6\x99\x6a\x24\x94\x62\x58\xbb\x56\xe7\xbc\x82\xa5\
|
||||
\x18\x85\x98\x67\x46\x77\xa9\x08\x4f\xd2\x52\xb2\x9d\x19\x5a\x33\
|
||||
\xe3\x2a\xec\x72\x9b\x56\x8b\x8f\xdb\xe7\xf6\xe9\xe6\x1d\x61\x41\
|
||||
\x24\xa4\xde\xf4\x0e\xb7\xcd\xed\x6f\x6b\x6f\xc5\x27\x2c\x09\xb7\
|
||||
\x65\x3e\xc1\x12\x4f\xdc\x02\x5a\xad\xc7\x54\x84\x93\xc2\x02\xbb\
|
||||
\x1b\xf7\x49\x00\x4a\xd1\xbe\xb5\x1c\xc6\x21\xd5\xad\xb1\x7c\xa3\
|
||||
\xe9\x1e\x36\xad\x51\x61\x97\x3c\xd1\xf3\xc5\x20\x27\xc0\x4e\x8c\
|
||||
\x95\xf5\xdc\x6b\xc3\xf5\x49\x1a\xe9\xfa\xc8\x3d\xdb\x06\x72\x37\
|
||||
\x1b\xcb\x26\xb0\x4c\xc2\x0c\xe5\x03\x3a\x52\x26\x30\x25\xc8\xc5\
|
||||
\xd0\x34\x60\xda\xb7\x11\x09\x63\x14\xc8\x90\x72\x12\x8d\xb4\x2f\
|
||||
\x30\x2c\x50\xa9\x40\x3e\x27\xf0\x80\x31\x82\xf5\xc8\xa7\x9e\xfb\
|
||||
\x47\x04\xe1\x9d\x0f\x48\xc8\xb0\x09\x15\xaa\x82\x83\xb7\x0d\xc4\
|
||||
\xdf\x08\xe9\x42\x56\x92\x9d\x20\xbe\x67\xf8\xe2\x4c\x6f\x2d\xe7\
|
||||
\xdb\x94\xf1\x11\xfd\x05\xe8\x3f\xd9\x8a\xdf\x5e\x63\x39\xf4\x9d\
|
||||
\x04\xaa\x11\xe9\x36\x58\x2a\xbb\x06\x0a\xd4\xf5\x89\x51\x6b\xba\
|
||||
\xfe\x49\xf4\x28\xda\x4a\x86\x65\x03\x36\xa6\x86\x68\x55\x21\x84\
|
||||
\x1a\x4d\x6c\x64\x79\xed\xc6\x4f\xbb\x76\xe6\x08\x5b\x2b\xc6\xd3\
|
||||
\xcc\xa9\x36\x50\x7d\x34\xb7\x82\xd8\x25\x6b\x55\xab\x7a\x6c\xbc\
|
||||
\x3a\x34\xaf\x24\x4c\x4a\x88\x89\xa7\xa6\x8a\xa8\xb8\xab\x25\x75\
|
||||
\xcd\x4a\xa3\xc2\xa1\xe8\xb6\xe5\x80\x61\x42\x6f\x72\x7b\xa2\x7c\
|
||||
\x1a\x4d\x1d\x3d\x42\xc2\x1b\x11\x9f\x3e\x40\x5a\xa6\x4c\x08\x8f\
|
||||
\x89\x6c\xc7\x73\xdf\x01\xba\x6b\x44\xe3\x84\xdf\xae\x32\x95\x31\
|
||||
\xe3\x3f\x26\x7c\x8f\x56\x50\x64\x05\x2b\xbc\x4f\xb2\x82\x15\xbc\
|
||||
\xda\xb0\x15\x24\xee\xda\x5c\x3d\xb5\x04\xc3\x90\x0d\x67\x73\x16\
|
||||
\x93\xde\x7c\xba\x26\xc9\x9b\x44\xdb\x40\xf3\xad\x65\x39\x91\x03\
|
||||
\xd9\x6e\x80\xdd\x6a\xb8\x4e\x44\xf8\xdd\xf2\x3c\x82\x7a\x01\xa8\
|
||||
\x57\x48\x46\x8a\x56\x67\xab\x6e\xaa\x78\x3f\x74\x79\xec\x01\xe1\
|
||||
\x4c\xe9\x4b\xb2\x87\xe5\xd9\xcf\x2c\x84\xf7\x1e\xd3\x73\x86\xc9\
|
||||
\xb1\x03\x4c\x47\x65\xb3\x7c\x63\xd2\x99\x80\xbe\x50\xa9\x5f\xf5\
|
||||
\xec\x2c\x89\xb0\x95\x00\xc1\x24\x87\x69\x06\xb6\x44\x86\x54\x0b\
|
||||
\x3d\x29\x82\xe2\xe5\x86\xc5\xaa\x78\xbc\xb2\xeb\x15\x20\xcf\xa9\
|
||||
\x0b\xbe\xe0\x1e\xc8\xfb\x85\xf7\x10\x67\x63\x9f\xf2\x3d\xc7\x83\
|
||||
\xb7\x31\xe3\xe6\x6d\xd4\xf7\x1c\x02\x9c\xe1\xad\x14\xc3\x91\x69\
|
||||
\xbf\xe1\x62\x70\x0f\x32\x60\x58\x1f\xd9\xf3\x58\x86\x4c\xf9\xd3\
|
||||
\x91\x3b\x0b\x72\xdf\x59\x74\xf4\x01\xc5\x3e\x60\xcd\x67\xd3\x4b\
|
||||
\x22\xd8\x62\xfc\x58\xc0\x9b\xec\x0c\x63\x84\x0f\x6a\x1f\x4f\x69\
|
||||
\x96\xba\x81\x75\xea\xaa\x12\x47\x80\xe1\xd7\x56\x39\x18\x8c\xa9\
|
||||
\x26\x41\x8c\xcd\xb9\x8c\x35\xd1\xc9\x1a\xe6\xf1\x48\x13\xde\x9b\
|
||||
\x45\xbe\x51\x5f\x70\x8a\x4f\xd2\x26\xb7\xb7\x8c\x3d\x09\xd7\x8f\
|
||||
\x5b\xc6\x6e\x5d\x13\x09\xe6\x29\x0b\x9e\x6c\xfc\x55\xed\x69\xea\
|
||||
\xb0\xb6\x0b\x7a\xb5\x95\xd4\x7a\x49\x72\x52\x66\xba\x33\x0b\xc7\
|
||||
\x2c\xec\x09\x19\xd8\x4d\x2a\xc4\x8b\x4d\x2f\x29\x51\xeb\x0a\xf8\
|
||||
\x5d\xb2\x6c\x9d\x70\x00\xb9\x8f\xf5\x6b\x23\xc0\xb7\x3f\xbf\x1c\
|
||||
\xd7\xb0\x17\x43\xf6\x62\xbd\xa0\x59\x75\x07\xfe\x3b\x94\x92\x4a\
|
||||
\xc0\x00\x61\x22\x94\xa9\xff\xdc\xef\x21\x42\x83\x48\x83\xd0\xfd\
|
||||
\x6d\xf4\x2a\x9f\xcf\x71\xa3\xd7\x3a\x1b\xbd\xaa\x6c\x08\x5f\xc3\
|
||||
\xf5\x45\xe0\xb2\x9e\xa9\x50\x8c\x17\x0a\x68\x38\x22\x9a\x05\x90\
|
||||
\xec\x96\x7d\x60\x30\xb0\x79\x4c\x06\x7b\xe3\xfc\x85\x46\x11\x67\
|
||||
\xd8\x8d\xa5\x8d\x8b\x38\x35\xa3\xd6\xf0\x57\x65\x6f\xfd\xef\x65\
|
||||
\x1b\x39\xda\x9e\xc9\x17\xef\xc7\xf3\xfe\x25\x3c\x63\xc6\xec\xc7\
|
||||
\x19\xc0\xdc\xc7\x46\x1e\x69\xf0\x53\x73\xff\x96\x52\xca\x1b\x7b\
|
||||
\xd1\x8c\x56\x34\xf4\x39\x33\x4f\x8d\xbc\x55\x64\xe4\x63\x13\x3f\
|
||||
\x2d\x32\xf1\xbc\x81\x17\x08\x97\x37\xee\xd5\xf3\xc0\x99\x41\x33\
|
||||
\x23\xd2\x88\x34\xde\x9d\x9e\x7e\x4d\xe8\xaa\x76\x5e\x23\xc9\x67\
|
||||
\x81\xae\x6a\xcd\x66\xcd\x94\xf6\x4e\xc4\x86\x01\x8d\x7a\x71\x68\
|
||||
\x97\xb7\x3b\xff\xdd\xda\xf3\x1b\x29\x82\x2f\x68\xb7\x77\x22\x96\
|
||||
\x2e\xa0\xe4\xd9\x51\xe6\xcb\x50\x68\xb5\x22\x48\x38\x2a\x2b\xc9\
|
||||
\x6c\x4b\x22\xe5\xcc\xd7\xa3\x66\x36\xb4\x4d\xbf\x18\x65\x6e\xe9\
|
||||
\x50\x63\xa6\xa2\x3a\x5f\x6f\x63\xe5\x8f\xfb\xc7\x8d\xcf\x12\x15\
|
||||
\x53\xcc\x64\x0c\x95\x7a\xf2\x45\x29\xf5\xd2\x37\xda\xb6\xad\x56\
|
||||
\x03\x79\xc6\xe5\x92\xe4\xb6\xd7\x15\x4a\x33\x2f\xf2\x22\x91\x0c\
|
||||
\xb5\xcd\x89\x95\x26\xa5\xc5\x1a\x9a\xf6\xee\x44\x98\x71\x71\x5b\
|
||||
\x2c\xcc\xb4\x77\x27\xc2\x64\x62\x57\xb1\x44\xb9\x21\xeb\x8b\x95\
|
||||
\x6d\xb0\x5f\x38\x93\xa0\xac\x41\x28\x6b\x3a\xe9\x96\x34\xf3\x54\
|
||||
\x08\xcf\x9d\x7a\xcc\x3a\xcf\xfe\x07\xb7\xee\x27\xe9\
|
||||
\x00\x58\xae\x78\x9c\xed\x5c\xdb\x72\xdb\x36\x10\x7d\xcf\x57\x60\
|
||||
\xf4\x9c\x5a\x17\x5f\xe5\xa1\xd5\x49\xe2\x38\x71\x27\x69\x9c\xda\
|
||||
\x4d\x1f\x3b\x10\xb9\x12\xd1\x90\x04\x0b\x80\x96\xd4\xaf\xef\x02\
|
||||
\xa4\x2e\xa4\x28\xca\xa2\x2e\xb4\x6c\x79\xda\x09\x49\x40\xbb\x8b\
|
||||
\xe5\xd9\xc5\x59\x10\xa4\xf5\xeb\xd0\xf7\xc8\x23\x08\xc9\x78\x70\
|
||||
\x55\x6b\x1e\x35\x6a\x04\x02\x9b\x3b\x2c\xe8\x5f\xd5\xfe\x7c\xb8\
|
||||
\xf9\xe5\xa2\xf6\x6b\xe7\x8d\x15\xb1\x69\xa7\x13\xec\xd4\x79\x43\
|
||||
\x2c\xdb\xa3\x52\x76\x3e\x45\xec\xf2\xf2\x9a\x51\x8f\xf7\xf1\x5f\
|
||||
\xaf\x7f\x0f\x4a\xe1\x8f\xe5\x3b\x61\xbb\x56\x3d\xee\x83\x9d\x07\
|
||||
\xcc\xe9\x83\x22\xe6\xfc\xaa\xf6\xfd\x2f\x73\x5a\x23\x01\xf5\xe1\
|
||||
\xaa\x56\x24\x43\xab\x22\x56\x28\x78\x08\x42\x8d\x92\x1f\xf4\x81\
|
||||
\xfb\xa0\xc4\xc8\x34\x12\x4b\x80\xad\xcc\x11\xb1\x86\x9d\x86\x55\
|
||||
\x1f\x26\x27\x23\x7d\x32\x4a\x4e\xd0\x02\xe5\x76\x4e\xcf\x4f\xad\
|
||||
\x7a\x7c\x18\x5f\x76\x81\xf5\x5d\xd5\x39\x6b\xb5\xad\x7a\x72\x6c\
|
||||
\x64\xd6\xc7\x42\xad\xfa\x58\x79\x9e\x25\x03\x16\x38\x7c\xf0\xc0\
|
||||
\x94\x07\x89\x31\x52\x09\xb4\xbd\xf3\x09\x02\x10\xd4\x23\x32\x19\
|
||||
\x8b\x55\x4f\x1a\xe6\x45\x7a\x74\xc4\xa3\xa9\x6f\x7e\xbc\xe7\xc3\
|
||||
\x2f\xe6\x52\x22\x31\xa3\x52\x86\xd4\x46\x41\xb5\x64\x00\x41\xe4\
|
||||
\x77\x41\x74\xce\xac\x7a\x72\x14\x9b\x3f\xab\x61\x4e\x84\x4f\x45\
|
||||
\x9f\x05\x19\x09\xed\x42\x09\x4c\x81\x3f\xf5\xe4\xec\xbd\xfc\x24\
|
||||
\x78\x14\xa2\xcd\xe3\xbb\xd9\x1f\x9f\xc7\xdd\xe7\x94\xab\xa9\xb3\
|
||||
\x66\xfc\x75\x0d\x3d\x1a\x79\x2a\xd7\x5f\xf3\xe6\x14\x7a\x2d\xd1\
|
||||
\x83\x80\x55\xcc\xa6\x5e\x7c\xf5\xef\xd6\x54\xe5\x74\x2c\x39\x82\
|
||||
\x3e\xcf\x09\x72\xb9\x60\xff\xf1\x40\xe5\x88\xca\x0a\x9b\xf7\xce\
|
||||
\x17\xda\x05\x6f\x2c\xc9\xd3\x27\xa9\x9f\xe7\xb8\x07\x86\x2a\xd5\
|
||||
\x61\xe2\xa2\xbf\xa8\xe7\x65\xdc\x92\xef\x9b\xf8\x62\x6c\xc8\x8c\
|
||||
\xa5\xf5\xb4\xa9\x73\x96\x6b\x60\x81\x98\x1b\xf4\xbd\xb9\x5c\x68\
|
||||
\x33\xf6\x05\xec\xaa\x30\x3f\x64\x4c\x07\x84\x54\xe7\xbb\xba\xbc\
|
||||
\xfc\x3c\x91\x67\xd5\xcd\xc5\x65\x03\x98\xc7\x3d\xfb\x0f\x3e\xb3\
|
||||
\x00\x6f\x8b\x54\x0e\xc2\xe4\xaa\xd6\xc8\xfa\x09\x7b\xa4\xae\x8c\
|
||||
\xa3\xfe\xa4\x91\x0a\xfa\x49\x6b\x12\xf0\xad\x46\x2a\xf6\xa7\x66\
|
||||
\x65\x05\x2e\xf0\x74\xec\xb8\x15\x3c\xbd\x1c\x23\xcd\x46\x59\x90\
|
||||
\xe8\x61\x5e\x6e\x13\x26\x69\xe3\x4d\xee\xbe\x13\xd0\xbb\xe6\x51\
|
||||
\xd7\x83\xfb\x90\x05\xb3\xb9\x40\xb7\x86\xd8\xea\x98\x56\x89\xad\
|
||||
\x5d\x3e\x5c\x12\x01\x3e\x1d\x32\x3f\xf2\x33\xe3\x8b\x25\x74\xda\
|
||||
\xf8\x77\xd4\xbe\x68\x4f\xfe\xce\x2f\x5a\x56\x3d\x69\x5c\x19\x53\
|
||||
\x8f\xd4\x8b\x20\x5f\x51\xab\xd1\x38\x6a\xa4\xff\xca\xeb\xd1\x2e\
|
||||
\xf8\x18\xe8\x19\x6b\x21\x78\xed\x99\x28\x37\x37\x11\x67\xcf\x27\
|
||||
\xde\xc4\x5c\x75\x77\x54\xb9\xcb\xb5\x7d\xe5\x4e\x3d\x99\xaa\x77\
|
||||
\x85\x98\x3c\xb8\x5f\x94\x44\xfb\x67\x13\xb5\xcf\x1d\xee\xc7\x7b\
|
||||
\x00\xf7\xe3\x46\x85\x78\x8f\x6f\xe3\x6b\x02\x7c\xbb\x24\xe0\x3f\
|
||||
\x70\x8f\x8b\x2a\xf0\x6e\x14\xbf\x8f\x94\xc2\x29\x3e\x8b\x76\x5b\
|
||||
\xb7\x75\xe3\xb6\xc2\x61\x71\xee\x3d\xb0\x30\x7f\x64\x0f\x2e\x93\
|
||||
\x04\xff\x53\x2e\x10\x27\x21\x83\x46\x30\xe9\xe1\xff\x01\x0c\x88\
|
||||
\x46\x0a\xe1\xdd\x7f\x90\x98\x67\xe9\xe1\x0a\x50\x31\x32\xb3\xe0\
|
||||
\xd0\xd7\x32\xdc\x40\x80\xd3\x69\x35\x4f\x74\x21\xe0\x64\x9a\xfa\
|
||||
\x02\x20\x88\x1b\xe3\xc3\x74\x73\x17\x83\x2c\x6e\x35\x47\x69\x4a\
|
||||
\x31\xa7\x6a\x2b\x01\x65\xee\xd6\xbe\xc6\x93\x55\x8f\x29\xf9\x84\
|
||||
\xaf\xa7\x9a\xd7\x65\xef\x6b\x71\xf7\x92\x51\x7b\xaf\x44\x64\xab\
|
||||
\x48\x40\x65\xf4\x7d\x09\xe5\x3a\x10\xf8\x8d\x13\xf8\xb2\x55\xde\
|
||||
\x17\x08\xfa\xcf\x9f\xc1\x9f\xec\x01\xa5\x69\x56\xc4\x68\x26\xd1\
|
||||
\x1e\xdf\xca\x7d\x4d\xc3\xa5\x50\x5f\x4c\x75\xf7\xbc\x6c\x3d\x3d\
|
||||
\x80\x7e\x39\xe8\x5f\x5d\xed\xda\x2c\xce\x85\xfb\x5e\xbc\x9e\xed\
|
||||
\x07\xe8\x2b\x46\xfd\xeb\xab\x60\x9b\xcd\x17\x5a\xc2\x2e\x5b\x9f\
|
||||
\x5f\xaf\x88\x9d\x20\x66\xb7\x95\x6c\xf3\xb4\xb1\xb8\x92\x6d\x9e\
|
||||
\xb5\x0b\x2a\xd9\xe6\xc5\x59\x45\x95\xec\xc4\x57\x87\x72\x76\xf1\
|
||||
\xc3\xa8\xd9\xd9\xa7\x4c\x18\x17\xe7\xf7\xc5\x61\xfc\x07\x74\xa9\
|
||||
\xa8\xae\x9e\x2d\xe6\x62\x87\x7a\x76\xe3\xf5\x6c\xd9\x25\xfa\x6b\
|
||||
\x86\x1d\x14\x6c\x15\x2a\x1b\xa0\x39\xc5\xc3\x5b\x46\x73\x8e\xda\
|
||||
\xed\x59\xee\xd1\xde\x0a\xcb\x39\xab\x84\xe2\x98\x38\x9f\xde\xc4\
|
||||
\xfd\xcc\xc1\xa5\x10\x5f\x76\x8d\xfe\x5b\xaf\x87\xe3\x7b\xe6\x78\
|
||||
\x3f\x7f\xfe\x78\x3f\xae\x86\xd3\x1b\xc0\x8f\xef\xe1\x2b\x82\x7b\
|
||||
\x31\x22\xf6\x98\xcf\x17\x53\x85\x95\x58\xf4\xc5\x69\x01\x8b\x6e\
|
||||
\x9e\x17\xb0\xe8\x76\xa3\x22\x12\x6d\xe0\x7c\x20\xd0\x8b\x09\xf4\
|
||||
\xd9\x7a\x04\xba\x18\x5d\x45\x2b\x9e\x7a\xe7\x60\x75\x04\xba\x78\
|
||||
\xd5\xea\x40\xa0\x37\x4d\xa0\xcb\xd6\x59\x37\x02\x3b\xc4\x8b\x08\
|
||||
\xcf\x39\xc9\x16\x2f\xfc\xaf\x92\x64\x8f\x8f\x17\xe7\xd8\x93\xd3\
|
||||
\x82\x14\x7b\x56\xd5\x3a\x45\x1c\xca\x7b\x9d\x63\x4b\x31\x86\xb2\
|
||||
\xa9\xef\x93\x96\xf9\xfc\x21\x5d\x9c\x21\x57\x81\x74\xbb\x00\xd2\
|
||||
\xcd\x8b\xe3\xa2\x6d\x24\x8d\xe3\x4a\x41\x6d\x6e\xd5\x5e\x23\x7b\
|
||||
\xcb\xec\x21\xb5\x51\xf7\xc9\x08\x74\xc1\xfe\x99\x57\xa3\xd9\xba\
|
||||
\x61\xf9\x72\x44\xe1\x1a\xf4\x6d\x8f\xa8\x64\x19\xda\x88\x03\xe7\
|
||||
\x2d\x19\xb8\x10\x90\x16\x91\xcc\x67\x1e\x15\x64\x40\x3d\x4f\x12\
|
||||
\x2a\x80\x74\x01\x7f\x82\xa1\x18\x04\x60\x2b\xdd\x53\xe1\xb4\x29\
|
||||
\x48\x14\x38\x20\xbc\x91\x6e\x93\x3f\x41\xa1\x1c\x49\x06\xcc\xf3\
|
||||
\xb0\x3f\xf9\x87\xb3\x00\x1c\x82\xf3\x36\x27\x3c\x80\xb7\x84\x06\
|
||||
\x8e\x59\xf0\x56\x03\x9e\x48\x4e\xba\xda\x1c\x67\x2e\xec\x52\x7e\
|
||||
\x89\x7b\x71\x0e\xf9\x0d\xad\x48\xb4\x75\xa9\x84\x19\x33\xf5\x50\
|
||||
\x43\x2e\x25\xc3\x42\xb1\xbc\xe6\x15\x22\x45\x3b\x44\x6f\xba\xba\
|
||||
\x4f\x4c\x78\x91\x91\x92\x6e\x4c\xc9\x9a\xe9\x57\xe2\x35\x91\xe9\
|
||||
\xe3\x96\xa7\xbd\x28\x72\x7b\xf3\x81\x30\x3f\xe4\x22\xbb\xc2\xb2\
|
||||
\xf6\x2b\x22\x9b\x7b\x41\xa4\xbd\x95\x9c\xb0\x64\xba\x2d\xca\x09\
|
||||
\x46\x78\x9c\x16\x30\x6a\x1d\x26\x43\x1c\x14\x71\xa0\x1b\xf5\x89\
|
||||
\x0f\x52\xd2\xbe\x89\x1c\xe6\x41\xe2\x5b\x1d\xf9\xda\xd3\x3d\xbc\
|
||||
\xb4\xc6\x23\xaa\x82\x2d\x71\x2e\x1f\x64\x0c\xd8\x49\xb0\xb2\x9e\
|
||||
\x7d\xad\xb5\xbe\xc8\x20\x5d\x1f\xb9\xa7\xdb\x40\xee\x66\xe7\xb2\
|
||||
\x09\x2c\xe3\x69\x86\x7a\x03\x3a\x92\x7a\x62\x8a\x91\x8b\x53\xd3\
|
||||
\x80\x29\xd7\xcc\x48\x38\x47\x81\x08\xa8\x47\xc2\x91\x72\x39\x4e\
|
||||
\x0b\x54\x48\x10\x6f\x09\x3c\xe2\x1c\xc1\x7a\xe4\xb6\x67\x7f\x0b\
|
||||
\x21\xb8\x77\x01\x05\x69\x35\x81\x44\x57\x78\xe0\x6c\x03\xf1\x37\
|
||||
\x5c\xd8\x90\xb6\x64\x27\x88\xef\x69\xbd\x38\xd2\x3b\xa3\xf9\x2e\
|
||||
\x51\x7c\x40\x7f\x0e\xfa\x8f\xb7\x92\xb7\xd7\xd8\x4f\xf0\x41\x00\
|
||||
\x55\x88\x74\x33\x59\x4a\xb3\x89\x00\xa8\xed\x12\xed\xd6\x64\x03\
|
||||
\x01\x51\xa3\x70\x2b\x0c\xcb\x4c\xd8\x48\x0d\x31\xaa\x02\x08\x14\
|
||||
\x86\xd8\xc8\xe8\xda\x4d\x9e\xb6\xcd\xc8\x11\xb6\xc6\x8c\x97\xc9\
|
||||
\xa9\x36\x50\x7d\x34\xb7\x82\xd8\x25\x6b\x55\xab\x66\x6c\xfc\x75\
|
||||
\xa0\xdf\xe9\x9d\x94\x10\x93\x4c\x4d\x25\x91\x51\x57\x09\x6a\xeb\
|
||||
\x95\x46\x89\x5d\x31\x6d\x8b\x01\x43\x42\xaf\xb9\x3d\x91\x2e\x0d\
|
||||
\xa7\x89\x1e\x21\xe1\x8c\x88\x4b\x1f\x21\x29\x53\x26\x82\xc7\x42\
|
||||
\xb6\x93\xb9\xef\x01\xd3\x35\xa2\x71\xa2\x6f\x57\x4c\x65\xac\xf8\
|
||||
\xdb\x44\xef\x21\x0a\xf2\xa2\x60\x85\x17\xb2\x57\x88\x82\x25\x0f\
|
||||
\xc4\x56\x8e\x82\x38\x5d\xeb\x5f\x4f\x23\x41\x2b\x64\xc3\x59\xce\
|
||||
\xa2\xe9\xcd\xed\x35\x89\x5f\xc5\xdf\x06\x9a\xef\x8c\xca\x89\x1d\
|
||||
\xa8\x76\x03\xea\x56\xc3\x75\x6c\xc2\xef\x46\xe7\x01\xd4\x0b\x40\
|
||||
\xbd\x02\x19\xc9\x5b\x9d\x2d\xbb\x2b\xf9\xe3\xd0\xf6\x22\x07\x88\
|
||||
\xc7\xa4\xba\x24\x15\x2c\xcf\x7e\x61\x01\x7c\x74\x98\x9a\x0b\x4c\
|
||||
\x0f\x1b\x40\x37\x94\x0e\xcb\x77\x9a\xce\xf8\xf4\x17\x99\xe4\x55\
|
||||
\xc7\x8c\x92\x70\x53\x09\x10\x24\x39\x4c\x31\x30\x25\x32\x24\x5e\
|
||||
\xe8\x09\xee\xe7\x2f\x37\x2c\x76\xc5\xd3\x9d\x5d\x2f\x01\x79\x8f\
|
||||
\xda\xe0\x72\xcf\x01\xf1\xb0\xf0\x1e\xe2\x68\xcc\x53\xbe\xb7\x78\
|
||||
\xf0\x3e\x62\x9e\xfe\x9c\xcb\x47\x0f\x7c\x1c\xe1\x9d\xe0\xc3\x91\
|
||||
\xbe\x7e\xe3\xf1\xc1\x03\x08\x9f\x61\x7d\x64\xce\x23\x11\x30\xe9\
|
||||
\x4e\x7b\xee\x6c\x92\xfb\xc9\xc2\x43\x0e\xc8\xcf\x01\x6b\x3e\x9b\
|
||||
\x2e\xbb\xa5\xe3\xd6\x00\x5e\xb3\x33\x9c\x23\x5c\x90\x55\x3c\xa5\
|
||||
\x59\x9a\x06\xd6\xa9\xab\x0a\x12\x01\x4e\xbf\xa6\xca\xc1\xc9\x98\
|
||||
\x2a\xe2\x47\x78\x39\xc3\x58\x63\x9f\xac\x11\x1e\x4f\x0c\xe1\xca\
|
||||
\x22\xf2\x9d\xfc\x8a\x43\x7c\x91\x31\xb9\xbd\x65\xec\xc9\x74\xfd\
|
||||
\xb4\x65\xec\xd6\x35\x11\xa0\x9f\xb2\xe0\xc9\xc6\xbf\x75\x34\xa5\
|
||||
\x0e\x6b\xa7\xa0\xf3\xad\x50\xeb\x25\xe4\xa4\x28\x74\x67\x16\x8e\
|
||||
\x59\xd0\xe3\xc2\x37\x9b\x54\x88\x13\xe9\x56\x52\xe0\xd6\x15\xf0\
|
||||
\xbb\x64\xd9\x3a\xd6\x00\xa2\x8a\xf5\x6b\x6d\xc0\x8f\x3f\xbe\x1e\
|
||||
\xd6\xb0\x17\x43\xf6\x62\xbd\x49\xb3\xec\x2b\xac\x1f\xd0\x4a\x2a\
|
||||
\x00\x27\x08\x3d\x43\xe9\xfa\xcf\xfe\x19\x20\x34\x88\xd0\x08\xad\
|
||||
\x6e\xa3\x57\xf1\x78\x0e\x1b\xbd\xd6\xd9\xe8\x55\x66\xeb\xf5\x1a\
|
||||
\xa9\x2f\x04\x9b\xf5\x74\x85\xa2\xb3\x90\x4f\x83\x11\x51\xcc\x87\
|
||||
\xf8\x75\xb3\x47\x06\x03\xc3\x63\x52\xd8\x1b\xf3\x17\x1a\x86\x1e\
|
||||
\xc3\x66\x2c\x6d\x6c\xc4\xa9\xee\xb5\x46\xbe\x2a\xfa\x6c\x56\x25\
|
||||
\x7b\xb6\x31\xf6\x34\x5f\x7c\x18\x8f\xfb\x55\x64\xc6\x54\xd8\x8f\
|
||||
\x19\xc0\xdc\xd7\xfa\x9e\x18\xf0\xd3\x70\xff\x91\x48\xca\x06\x7b\
|
||||
\xde\x88\x56\x0c\xf4\xb9\x30\x4f\x82\xbc\x95\x17\xe4\xe3\x10\x3f\
|
||||
\xc9\x0b\xf1\x6c\x80\xe7\x18\x97\x0d\xee\xd5\x79\xe0\x4c\xa7\x99\
|
||||
\x1e\xc9\x8c\x34\x7e\xbd\x33\xf9\x1c\xe7\x55\xed\xac\x46\xe2\xef\
|
||||
\x6a\x5e\xd5\x9a\xcd\x9a\x2e\xed\xad\x90\x0d\x7d\x1a\xf6\xa2\xc0\
|
||||
\x2c\x6f\x77\xfe\xbd\x33\xe7\x37\x82\xfb\x5f\x31\x6e\xef\x79\x24\
|
||||
\x6c\x40\xcb\xd3\xbd\xf4\xa7\x55\x31\x6a\xb9\x1f\x6b\x94\xc6\x92\
|
||||
\xd9\x2b\xb1\x95\x33\x9f\x5f\x9d\xd9\xd0\x36\xfd\xe4\xaa\xbe\xa5\
|
||||
\x43\x85\x4c\x45\x76\xbe\xdf\x45\xd2\x1d\xb7\x8f\x2f\xbe\x89\x5d\
|
||||
\x4c\x91\xc9\x68\x29\xf5\xf8\x93\xac\xf2\xc8\xd5\xde\x36\x57\x8d\
|
||||
\x07\xb2\x8a\x8b\x2d\xc9\x6c\xaf\xcb\xb5\x66\xde\xe4\x45\x26\x69\
|
||||
\x69\x9b\x33\x2b\x21\xa5\xf9\x1e\x9a\xb6\xee\xc4\x98\x71\x71\x9b\
|
||||
\x6f\xcc\xb4\x75\x27\xc6\xa4\xe6\xae\x7c\x8b\x32\x5d\xd6\x37\x2b\
|
||||
\x7d\xc1\x7c\x22\x58\x80\x34\x01\x21\x4d\xe8\x24\x5b\xd2\xf4\x53\
|
||||
\x21\x3c\xb7\xea\x11\xeb\xbc\xf9\x1f\x65\x89\x34\x4c\
|
||||
\x00\x00\x08\x61\
|
||||
\x00\
|
||||
\x00\x3a\xf2\x78\x9c\xed\x5b\xdb\x8e\xdb\xc8\x11\x7d\x9f\xaf\x60\
|
||||
|
@ -34365,44 +34373,44 @@ qt_resource_struct = "\
|
|||
\x00\x00\x01\x14\x00\x00\x00\x00\x00\x01\x00\x02\x52\xbc\
|
||||
\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x01\x00\x01\xbc\xaa\
|
||||
\x00\x00\x02\x3e\x00\x00\x00\x00\x00\x01\x00\x05\x84\xf1\
|
||||
\x00\x00\x05\x00\x00\x01\x00\x00\x00\x01\x00\x07\x49\xa9\
|
||||
\x00\x00\x07\xec\x00\x01\x00\x00\x00\x01\x00\x08\x03\x87\
|
||||
\x00\x00\x07\xcc\x00\x00\x00\x00\x00\x01\x00\x07\xef\xc5\
|
||||
\x00\x00\x08\x80\x00\x00\x00\x00\x00\x01\x00\x08\x1d\x67\
|
||||
\x00\x00\x07\x9e\x00\x01\x00\x00\x00\x01\x00\x07\xe8\xe4\
|
||||
\x00\x00\x03\x02\x00\x01\x00\x00\x00\x01\x00\x06\xc7\xd4\
|
||||
\x00\x00\x03\x30\x00\x01\x00\x00\x00\x01\x00\x06\xce\xa9\
|
||||
\x00\x00\x03\xc0\x00\x01\x00\x00\x00\x01\x00\x06\xed\xe7\
|
||||
\x00\x00\x07\x2e\x00\x01\x00\x00\x00\x01\x00\x07\xd2\xec\
|
||||
\x00\x00\x06\x92\x00\x01\x00\x00\x00\x01\x00\x07\xa5\xa2\
|
||||
\x00\x00\x03\xee\x00\x00\x00\x00\x00\x01\x00\x06\xf7\x3f\
|
||||
\x00\x00\x05\xb4\x00\x01\x00\x00\x00\x01\x00\x07\x65\x72\
|
||||
\x00\x00\x03\x54\x00\x01\x00\x00\x00\x01\x00\x06\xd7\x4c\
|
||||
\x00\x00\x04\x1a\x00\x00\x00\x00\x00\x01\x00\x07\x09\x0e\
|
||||
\x00\x00\x04\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x41\xe1\
|
||||
\x00\x00\x07\x7c\x00\x01\x00\x00\x00\x01\x00\x07\xdf\xeb\
|
||||
\x00\x00\x05\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x6c\x35\
|
||||
\x00\x00\x08\x44\x00\x01\x00\x00\x00\x01\x00\x08\x13\xb4\
|
||||
\x00\x00\x03\x76\x00\x01\x00\x00\x00\x01\x00\x06\xe0\x3a\
|
||||
\x00\x00\x08\xba\x00\x01\x00\x00\x00\x01\x00\x08\x2b\xd6\
|
||||
\x00\x00\x04\x6c\x00\x01\x00\x00\x00\x01\x00\x07\x20\x3e\
|
||||
\x00\x00\x07\x0e\x00\x01\x00\x00\x00\x01\x00\x07\xca\x7e\
|
||||
\x00\x00\x05\x86\x00\x01\x00\x00\x00\x01\x00\x07\x60\x22\
|
||||
\x00\x00\x06\x36\x00\x01\x00\x00\x00\x01\x00\x07\x89\x62\
|
||||
\x00\x00\x08\xde\x00\x00\x00\x00\x00\x01\x00\x08\x36\x05\
|
||||
\x00\x00\x02\xda\x00\x01\x00\x00\x00\x01\x00\x06\xbf\x6f\
|
||||
\x00\x00\x04\x4a\x00\x01\x00\x00\x00\x01\x00\x07\x18\x7c\
|
||||
\x00\x00\x08\x16\x00\x01\x00\x00\x00\x01\x00\x08\x0b\xcc\
|
||||
\x00\x00\x06\x0c\x00\x00\x00\x00\x00\x01\x00\x07\x77\x5f\
|
||||
\x00\x00\x07\x52\x00\x01\x00\x00\x00\x01\x00\x07\xd8\x03\
|
||||
\x00\x00\x05\x5a\x00\x01\x00\x00\x00\x01\x00\x07\x57\xa8\
|
||||
\x00\x00\x06\xc4\x00\x01\x00\x00\x00\x01\x00\x07\xad\xe4\
|
||||
\x00\x00\x04\xb4\x00\x01\x00\x00\x00\x01\x00\x07\x38\xe2\
|
||||
\x00\x00\x03\xa0\x00\x01\x00\x00\x00\x01\x00\x06\xe7\xcf\
|
||||
\x00\x00\x06\x58\x00\x00\x00\x00\x00\x01\x00\x07\x94\x2d\
|
||||
\x00\x00\x06\xe4\x00\x00\x00\x00\x00\x01\x00\x07\xb8\x1e\
|
||||
\x00\x00\x04\x96\x00\x00\x00\x00\x00\x01\x00\x07\x29\xe6\
|
||||
\x00\x00\x05\x26\x00\x01\x00\x00\x00\x01\x00\x07\x50\x58\
|
||||
\x00\x00\x05\x00\x00\x01\x00\x00\x00\x01\x00\x07\x4a\x29\
|
||||
\x00\x00\x07\xec\x00\x01\x00\x00\x00\x01\x00\x08\x04\x07\
|
||||
\x00\x00\x07\xcc\x00\x00\x00\x00\x00\x01\x00\x07\xf0\x45\
|
||||
\x00\x00\x08\x80\x00\x00\x00\x00\x00\x01\x00\x08\x1d\xe7\
|
||||
\x00\x00\x07\x9e\x00\x01\x00\x00\x00\x01\x00\x07\xe9\x64\
|
||||
\x00\x00\x03\x02\x00\x01\x00\x00\x00\x01\x00\x06\xc8\x54\
|
||||
\x00\x00\x03\x30\x00\x01\x00\x00\x00\x01\x00\x06\xcf\x29\
|
||||
\x00\x00\x03\xc0\x00\x01\x00\x00\x00\x01\x00\x06\xee\x67\
|
||||
\x00\x00\x07\x2e\x00\x01\x00\x00\x00\x01\x00\x07\xd3\x6c\
|
||||
\x00\x00\x06\x92\x00\x01\x00\x00\x00\x01\x00\x07\xa6\x22\
|
||||
\x00\x00\x03\xee\x00\x00\x00\x00\x00\x01\x00\x06\xf7\xbf\
|
||||
\x00\x00\x05\xb4\x00\x01\x00\x00\x00\x01\x00\x07\x65\xf2\
|
||||
\x00\x00\x03\x54\x00\x01\x00\x00\x00\x01\x00\x06\xd7\xcc\
|
||||
\x00\x00\x04\x1a\x00\x00\x00\x00\x00\x01\x00\x07\x09\x8e\
|
||||
\x00\x00\x04\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x42\x61\
|
||||
\x00\x00\x07\x7c\x00\x01\x00\x00\x00\x01\x00\x07\xe0\x6b\
|
||||
\x00\x00\x05\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x6c\xb5\
|
||||
\x00\x00\x08\x44\x00\x01\x00\x00\x00\x01\x00\x08\x14\x34\
|
||||
\x00\x00\x03\x76\x00\x01\x00\x00\x00\x01\x00\x06\xe0\xba\
|
||||
\x00\x00\x08\xba\x00\x01\x00\x00\x00\x01\x00\x08\x2c\x56\
|
||||
\x00\x00\x04\x6c\x00\x01\x00\x00\x00\x01\x00\x07\x20\xbe\
|
||||
\x00\x00\x07\x0e\x00\x01\x00\x00\x00\x01\x00\x07\xca\xfe\
|
||||
\x00\x00\x05\x86\x00\x01\x00\x00\x00\x01\x00\x07\x60\xa2\
|
||||
\x00\x00\x06\x36\x00\x01\x00\x00\x00\x01\x00\x07\x89\xe2\
|
||||
\x00\x00\x08\xde\x00\x00\x00\x00\x00\x01\x00\x08\x36\x85\
|
||||
\x00\x00\x02\xda\x00\x01\x00\x00\x00\x01\x00\x06\xbf\xef\
|
||||
\x00\x00\x04\x4a\x00\x01\x00\x00\x00\x01\x00\x07\x18\xfc\
|
||||
\x00\x00\x08\x16\x00\x01\x00\x00\x00\x01\x00\x08\x0c\x4c\
|
||||
\x00\x00\x06\x0c\x00\x00\x00\x00\x00\x01\x00\x07\x77\xdf\
|
||||
\x00\x00\x07\x52\x00\x01\x00\x00\x00\x01\x00\x07\xd8\x83\
|
||||
\x00\x00\x05\x5a\x00\x01\x00\x00\x00\x01\x00\x07\x58\x28\
|
||||
\x00\x00\x06\xc4\x00\x01\x00\x00\x00\x01\x00\x07\xae\x64\
|
||||
\x00\x00\x04\xb4\x00\x01\x00\x00\x00\x01\x00\x07\x39\x62\
|
||||
\x00\x00\x03\xa0\x00\x01\x00\x00\x00\x01\x00\x06\xe8\x4f\
|
||||
\x00\x00\x06\x58\x00\x00\x00\x00\x00\x01\x00\x07\x94\xad\
|
||||
\x00\x00\x06\xe4\x00\x00\x00\x00\x00\x01\x00\x07\xb8\x9e\
|
||||
\x00\x00\x04\x96\x00\x00\x00\x00\x00\x01\x00\x07\x2a\x66\
|
||||
\x00\x00\x05\x26\x00\x01\x00\x00\x00\x01\x00\x07\x50\xd8\
|
||||
\x00\x00\x02\xb2\x00\x01\x00\x00\x00\x01\x00\x06\xb6\xfd\
|
||||
"
|
||||
|
||||
|
|
|
@ -243,6 +243,100 @@
|
|||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_16">
|
||||
<property name="text">
|
||||
<string>Rebar</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_5">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_18">
|
||||
<property name="text">
|
||||
<string>Diameter</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="Gui::PrefDoubleSpinBox" name="gui::prefdoublespinbox_8">
|
||||
<property name="maximum">
|
||||
<double>999.990000000000009</double>
|
||||
</property>
|
||||
<property name="value">
|
||||
<double>6.000000000000000</double>
|
||||
</property>
|
||||
<property name="prefEntry" stdset="0">
|
||||
<cstring>RebarDiameter</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Arch</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_19">
|
||||
<property name="text">
|
||||
<string>Offset</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="Gui::PrefDoubleSpinBox" name="gui::prefdoublespinbox_7">
|
||||
<property name="maximum">
|
||||
<double>999.990000000000009</double>
|
||||
</property>
|
||||
<property name="value">
|
||||
<double>30.000000000000000</double>
|
||||
</property>
|
||||
<property name="prefEntry" stdset="0">
|
||||
<cstring>RebarOffset</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Arch</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_17">
|
||||
<property name="text">
|
||||
<string>Color:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="Gui::PrefColorButton" name="gui::prefcolorbutton_5">
|
||||
<property name="color">
|
||||
<color>
|
||||
<red>185</red>
|
||||
<green>117</green>
|
||||
<blue>90</blue>
|
||||
</color>
|
||||
</property>
|
||||
<property name="prefEntry" stdset="0">
|
||||
<cstring>RebarColor</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Arch</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
||||
<item>
|
||||
|
|
Loading…
Reference in New Issue
Block a user