diff options
author | deepa-chaudhari | 2015-10-20 17:43:05 +0530 |
---|---|---|
committer | deepa-chaudhari | 2015-10-20 17:43:05 +0530 |
commit | 24380b7be6c7985dcff6dc1a65118db4d3442bdd (patch) | |
tree | f6716cfe7e92e032ea0b1eb0122275d8f3c00c01 | |
parent | 4a239fb5ce4710f9005466c2b8577b35273827ab (diff) | |
download | OsdagLive-24380b7be6c7985dcff6dc1a65118db4d3442bdd.tar.gz OsdagLive-24380b7be6c7985dcff6dc1a65118db4d3442bdd.tar.bz2 OsdagLive-24380b7be6c7985dcff6dc1a65118db4d3442bdd.zip |
2d drawing2D
-rw-r--r-- | Connections/Shear/Finplate/ResourceFiles/icons.qrc | 2 | ||||
-rw-r--r-- | Connections/Shear/Finplate/ResourceFiles/images/colF2.png | bin | 0 -> 6246 bytes | |||
-rw-r--r-- | Connections/Shear/Finplate/ResourceFiles/images/colW3.png | bin | 0 -> 6482 bytes | |||
-rw-r--r-- | Connections/Shear/Finplate/drawing_2D.py | 789 | ||||
-rw-r--r-- | Connections/Shear/Finplate/fin.log | 8239 | ||||
-rw-r--r-- | Connections/Shear/Finplate/finPlate.ui | 7 | ||||
-rw-r--r-- | Connections/Shear/Finplate/finPlateMain.py | 37 | ||||
-rw-r--r-- | Connections/Shear/Finplate/icons_rc.py | 5807 | ||||
-rw-r--r-- | Connections/Shear/Finplate/ui_finPlate.py | 14 | ||||
-rw-r--r-- | finfront.svg | 2 | ||||
-rw-r--r-- | saveINPUT.txt | 10 | ||||
-rw-r--r-- | test.svg | 2 | ||||
-rw-r--r-- | utilities/__init__.py | 2 |
13 files changed, 4210 insertions, 10701 deletions
diff --git a/Connections/Shear/Finplate/ResourceFiles/icons.qrc b/Connections/Shear/Finplate/ResourceFiles/icons.qrc index 89acb9f..a1f386d 100644 --- a/Connections/Shear/Finplate/ResourceFiles/icons.qrc +++ b/Connections/Shear/Finplate/ResourceFiles/icons.qrc @@ -16,5 +16,7 @@ <file>images/X-Y.png</file> <file>images/Z-X.png</file> <file>images/Z-Y.png</file> + <file>images/colF2.png</file> + <file>images/colW3.png</file> </qresource> </RCC> diff --git a/Connections/Shear/Finplate/ResourceFiles/images/colF2.png b/Connections/Shear/Finplate/ResourceFiles/images/colF2.png Binary files differnew file mode 100644 index 0000000..2a21750 --- /dev/null +++ b/Connections/Shear/Finplate/ResourceFiles/images/colF2.png diff --git a/Connections/Shear/Finplate/ResourceFiles/images/colW3.png b/Connections/Shear/Finplate/ResourceFiles/images/colW3.png Binary files differnew file mode 100644 index 0000000..6e04994 --- /dev/null +++ b/Connections/Shear/Finplate/ResourceFiles/images/colW3.png diff --git a/Connections/Shear/Finplate/drawing_2D.py b/Connections/Shear/Finplate/drawing_2D.py index 0b1ee80..83fb8a7 100644 --- a/Connections/Shear/Finplate/drawing_2D.py +++ b/Connections/Shear/Finplate/drawing_2D.py @@ -7,152 +7,769 @@ import svgwrite from svgwrite import mm from PyQt4.QtCore import QString import numpy as np +from numpy import math class Fin2DCreatorFront(object): def __init__(self, inputObj,ouputObj,dictBeamdata,dictColumndata): - - beam_T = float(dictBeamdata[QString("T")]) - D = int (dictBeamdata[QString("D")]) - col_B = int(dictColumndata[QString("B")]) - col_tw = float(dictColumndata[QString("tw")]) - col_R1 = float(dictColumndata[QString("R1")]) + self.beam_T = float(dictBeamdata[QString("T")]) + self.col_T = float(dictColumndata[QString("T")]) + self.D_beam = int (dictBeamdata[QString("D")]) + self.D_col = int (dictColumndata[QString("D")]) + self.col_B = int(dictColumndata[QString("B")]) + self.col_tw = float(dictColumndata[QString("tw")]) + self.col_Designation = dictColumndata[QString("Designation")] + self.beam_Designation = dictBeamdata[QString("Designation")] + beam_R1 = float(dictBeamdata[QString("R1")]) + self.R1 = beam_R1 plate_ht= ouputObj['Plate']['height'] plate_width = ouputObj['Plate']['width'] weld_len = ouputObj['Plate']['height'] weld_thick = ouputObj['Weld']['thickness'] self.bolt_dia = inputObj["Bolt"]["Diameter (mm)"] + self.connectivity = inputObj['Member']['Connectivity'] self.pitch = ouputObj['Bolt']["pitch"] self.gauge = ouputObj['Bolt']["gauge"] self.end_dist = ouputObj['Bolt']["enddist"] self.edge_dist = ouputObj['Bolt']["edge"] self.no_of_rows = ouputObj['Bolt']["numofrow"] self.no_of_col = ouputObj['Bolt']["numofcol"] + self.plate_thick = inputObj['Plate']["Thickness (mm)"] self.col_L = 1000 self.beam_L = 500 + print inputObj - self.A2 =(col_B,(self.col_L-D)/2) - self.B = (col_B,0) + + self.A2 =(self.col_B,(self.col_L-self.D_beam)/2) + self.B = (self.col_B,0) self.A = (0,0) self.D = (0,self.col_L) - self.C = (col_B,self.col_L) - self.B2 = (col_B,(D + self.col_L)/2) + self.C = (self.col_B,self.col_L) + self.B2 = (self.col_B,(self.D_beam + self.col_L)/2) - ptEx = (col_B-col_tw)/2 + ptEx = (self.col_B-self.col_tw)/2 ptEy = 0.0 self.E = (ptEx,ptEy) - ptHx = (col_B-col_tw)/2 + + ptHx = (self.col_B-self.col_tw)/2 ptHy = self.col_L self.H = (ptHx,ptHy) - ptFx = (col_B + col_tw)/2 + + ptFx = (self.col_B + self.col_tw)/2 ptFy = 0 self.F = (ptFx,ptFy) - ptGx = (col_B + col_tw)/2 + + ptGx = (self.col_B + self.col_tw)/2 ptGy = self.col_L self.G = (ptGx,ptGy) #Draw rectangle for finPlate PRSU - ptPx = (col_B + col_tw)/2 - ptPy = ((self.col_L - D)/2) + (beam_T + col_R1 + 3) + ptPx = (self.col_B + self.col_tw)/2 + ptPy = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) self.P = (ptPx,ptPy) self.ptP = np.array([ptPx,ptPy]) + self.U = self.ptP + plate_ht* np.array([0,1]) + + ptRx = (self.col_B + self.col_tw)/2 + plate_width + ptRy = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.R = (ptRx,ptRy) + + ptSx = ptRx + ptSy = ptPy + plate_ht + self.S = (ptSx,ptSy) + self.plate_ht = plate_ht self.plate_width = plate_width self.weld_thick = weld_thick self.weld_len = weld_len # Draw Rectangle for weld - ptCx1 = ((col_B + col_tw)/2 + 20) - ptCy1 = ((self.col_L - D)/2) + (beam_T + col_R1 + 3) - self.C1 =(ptCx1,ptCy1) - ptAx1 = ptCx1 - ptAy1 = ((self.col_L - D)/2) - self.A1 = (ptAx1,ptAy1) + ptC1x = ((self.col_B + self.col_tw)/2 + 20) + ptC1y = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.C1 =(ptC1x,ptC1y) - ptAx3 = ptCx1 + self.beam_L - ptAy3 = ptAy1 - self.A3 = (ptAx3,ptAy3) + ptA1x = ((self.col_B + self.col_tw)/2 + 20) + ptA1y = ((self.col_L - self.D_beam)/2) + self.A1 = (ptA1x,ptA1y) - ptBx3 = ptAx3 - ptBy3 = ((self.col_L + D)/2 ) - self.B3 = (ptBx3,ptBy3) + ptA3x = ((self.col_B + self.col_tw)/2 + 20) + self.beam_L + ptA3y = ((self.col_L - self.D_beam)/2) + self.A3 = (ptA3x,ptA3y) - ptBx1 = ptCx1 - ptBy1 = ptBy3 - self.B1 = (ptBx1,ptBy1) + ptB3x = ((self.col_B + self.col_tw)/2 + 20) + self.beam_L + ptB3y = ((self.col_L + self.D_beam)/2 ) + self.B3 = (ptB3x,ptB3y) - ptC2x= ptCx1 - ptC2y = ptCy1 + plate_ht + ptB1x = ((self.col_B + self.col_tw)/2 + 20) + ptB1y = ((self.col_L + self.D_beam)/2 ) + self.B1 = (ptB1x,ptB1y) + + ptC2x= ((self.col_B + self.col_tw)/2 + 20) + ptC2y = ptC1y + plate_ht self.C2 = (ptC2x,ptC2y) - ptAx5 = ptAx1 - ptAy5 = ptAy1 + beam_T - self.A5 = ptAx5,ptAy5 + ptA5x = ((self.col_B + self.col_tw)/2 + 20) + ptA5y = ((self.col_L - self.D_beam)/2) + self.beam_T + self.A5 = ptA5x,ptA5y - ptAx4 = ptAx3 - ptAy4 = ptAy3 + beam_T - self.A4 = (ptAx4,ptAy4) + ptA4x = ((self.col_B + self.col_tw)/2 + 20) + self.beam_L + ptA4y = ((self.col_L - self.D_beam)/2) + self.beam_T + self.A4 = (ptA4x,ptA4y) - ptBx4 = ptBx3 - ptBy4 = ptBy3 - beam_T - self.B4 = (ptBx4,ptBy4) + ptB4x = ((self.col_B + self.col_tw)/2 + 20) + self.beam_L + ptB4y = ((self.col_L + self.D_beam)/2 ) - self.beam_T + self.B4 = (ptB4x,ptB4y) - ptBx5 = ((col_B + col_tw)/2) + 20 - ptBy5 = ptBy3 - beam_T + ptBx5 = ((self.col_B + self.col_tw)/2) + 20 + ptBy5 = ((self.col_L + self.D_beam)/2 ) - self.beam_T self.B5 = (ptBx5,ptBy5) - ptP1x = ((col_B + col_tw)/2 + self.edge_dist) - ptP1y = ((self.col_L - D)/2 +(col_tw + col_R1 + 3)+ self.end_dist) + ptP1x = ((self.col_B + self.col_tw)/2 + self.edge_dist) + ptP1y = ((self.col_L - self.D_beam)/2 +(self.col_tw + self.R1 + 3)+ self.end_dist) self.P1 = (ptP1x,ptP1y) - ptP2x = ptP1x - ptP2y = ptP1y + self.pitch - self.P2 = (ptP1x,ptP1y) + + #### Column flange points for column flange beam web connectivity ##### + + fromPlate_pt = self.D_col + 20 # 20 mm clear distance between colume and beam + ptFAx = 0 + ptFAy = 0 + self.FA = (ptFAx,ptFAy) + + ptFEx = self.col_T + ptFEy = 0.0 + self.FE =(ptFEx,ptFEy) + + ptFFx = self.D_col - self.col_T + ptFFy = 0.0 + self.FF =(ptFFx,ptFFy) + + ptFBx = self.D_col + ptFBy = 0.0 + self.FB =(ptFBx,ptFBy) + + ptFCx = self.D_col + ptFCy = self.col_L + self.FC = (ptFBx,ptFCy) + + ptFGx = self.D_col - self.col_T + ptFGy = self.col_L + self.FG =(ptFGx,ptFGy) + + ptFHx = self.col_T + ptFHy = self.col_L + self.FH =(ptFHx,ptFHy) + + ptFDx = 0.0 + ptFDy = self.col_L + self.FD =(ptFDx,ptFDy) - ptP3x = ptP1x - ptP3y = ptP2y + self.pitch - self.P3 = (ptP1x,ptP1y) - # points for diamension + ptFPx = self.D_col + ptFPy = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.FP = (ptFPx,ptFPy) + self.ptFP = np.array([ptFPx,ptFPy]) + + ptFUx = self.D_col + ptFUy = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.plate_ht + self.FU = (ptFUx,ptFUy) + + ptFC1x = ptFPx + 20 + ptFC1y = ptFPy + self.FC1 = (ptFC1x,ptFC1y) + + #FC1 + ptFC1x = fromPlate_pt + ptFC1y = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.FC1 = (ptFC1x, ptFC1y) + #FC2 + ptFC2x = fromPlate_pt + ptFC2y = ((self.col_L - self.D_beam)/2) +( self.beam_T + beam_R1 + 3) + self.plate_ht + self.FC2 = (ptFC2x, ptFC2y) + #FA1 + ptFA1x = fromPlate_pt + ptFA1y = (self.col_L - self.D_beam)/2 + self.FA1 = ptFA1x, ptFA1y + + #FA4 + ptFA4x = fromPlate_pt + ptFA4y = (self.col_L - self.D_beam)/2 + self.beam_T + self.FA4 = ptFA4x, ptFA4y + + #FA2 + ptFA2x = ptFC1x + self.beam_L + ptFA2y = ptFA1y + self.FA2 = ptFA2x, ptFA2y + + #FA3 + ptFA3x = fromPlate_pt + self.beam_L + ptFA3y = (((self.col_L - self.D_beam)/2 ) + self.beam_T) + self.FA3 = ptFA3x, ptFA3y + + #FB3 + ptFB3x = fromPlate_pt + self.beam_L + ptFB3y = ((self.col_L - self.D_beam)/2 + self.D_beam) - self.beam_T + self.FB3 = (ptFB3x, ptFB3y) + + + #FB2 + ptFB2x = fromPlate_pt + self.beam_L + ptFB2y = (self.col_L -self.D_beam)/2 + self.D_beam + self.FB2 = ptFB2x, ptFB2y + + #FB1 + ptFB1x = self.D_col + 20 + ptFB1y = (self.col_L - self.D_beam)/2 + self.D_beam + self.FB1 = ptFB1x, ptFB1y + + #FB4 + ptFB4x = fromPlate_pt + ptFB4y = ((self.col_L - self.D_beam)/2 + self.D_beam) - self.beam_T + self.FB4 = ptFB4x, ptFB4y + + # points for diamension + + + def callBWBWfront(self): + pass + + def saveToSvg(self): - dwg = svgwrite.Drawing('finfront.svg', profile='tiny') - dwg.add(dwg.polyline(points=[(self.A2),(self.B),(self.A),(self.D),(self.C) ,(self.B2)], stroke='blue', fill='none', stroke_width=2.5)) - dwg.add(dwg.line((self.E),(self.H)).stroke('blue',width = 2.5,linecap = 'square')) - dwg.add(dwg.line((self.F),(self.G)).stroke('blue',width = 2.5,linecap = 'square')) - dwg.add(dwg.rect(insert=(self.P), size=(self.plate_width, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.5)) - dwg.add(dwg.rect(insert=(self.P), size=(self.weld_thick, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.0)) - #C1,A1,A3,B3,B1,C2 - dwg.add(dwg.polyline(points=[(self.C1),(self.A1),(self.A3),(self.B3),(self.B1),(self.C2)],stroke = 'blue',fill= 'none',stroke_width =2.5)) - #C1,C2 - dwg.add(dwg.line((self.C1),(self.C2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) - #A2,B2 - dwg.add(dwg.line((self.A2),(self.B2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) - dwg.add(dwg.line((self.A5),(self.A4)).stroke('blue',width = 2.5,linecap = 'square')) - dwg.add(dwg.line((self.B5),(self.B4)).stroke('blue',width = 2.5,linecap = 'square')) - nr = self.no_of_rows - nc = self.no_of_col - bolt_r = self.bolt_dia/2 - for i in range(1,(nr+1)): - for j in range (1,(nc+1)): - pt = self.ptP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ - (i-1) * self.pitch * np.array([0,1]) + (j-1) * self.gauge * np.array([1,0]) - dwg.add(dwg.circle(center=(pt), r = bolt_r, stroke='blue',fill ='black',stroke_width=1.5)) - ptA = pt - (bolt_r + 4) * np.array([0,1]) - ptB = pt + (bolt_r + 4) * np.array([0,1]) - #dwg.add(dwg.line((ptA),(ptB)).stroke('blue',width = 2.0,linecap = 'square')) - ptC = pt - (bolt_r + 4) * np.array([1,0]) - PtD = pt + (bolt_r + 4) * np.array([1,0]) - dwg.add(dwg.line((ptC),(PtD)).stroke('blue',width = 2.0,linecap = 'square')) - ptE = self.ptP + self.edge_dist * np.array([1,0]) +(j-1) * self.gauge * np.array([1,0]) - ptF = ptE + self.plate_ht * np.array([0,1]) - dwg.add(dwg.line((ptE),(ptF)).stroke('blue',width = 1.5,linecap = 'square').dasharray(dasharray = ([20, 5, 1, 5]))) + ''' It returns the svg drawing depending upon connectivity + CFBW = Column Flange Beam Web + CWBW = Column Web Beam Web + BWBW = Beam Web Beam Web + ''' + if self.connectivity == 'Column flange-Beam web': + self.callCFBWfront() + + elif self.connectivity == 'Column web-Beam web': + self.callCWBWfront() + + else: + self.callBWBWfront() + + def callCFBWfront(self): + + dwg = svgwrite.Drawing('finfront.svg', profile='full') + smarker = dwg.marker(insert=(-2.5,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-10,0), (0,-3)], fill='black')) + + emarker = dwg.marker(insert=(2.5,0), size=(10,10), orient="auto") + emarker.add(dwg.polyline([(2.5,0), (0,3), (10,0), (0,-3)], fill='black')) + dwg.add(dwg.polyline(points = [(self.FA),(self.FB),(self.FC),(self.FD),(self.FA)],stroke = 'blue',fill = 'none',stroke_width = 2.5)) + dwg.add(dwg.line((self.FE),(self.FH)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.line((self.FF),(self.FG)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.polyline(points=[(self.FC1),(self.FA1),(self.FA2),(self.FB2),(self.FB1),(self.FC2)],stroke = 'blue',fill= 'none',stroke_width =2.5)) + dwg.add(dwg.line((self.FC1),(self.FC2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) + dwg.add(dwg.line((self.FA4),(self.FA3)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.line((self.FB4),(self.FB3)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.rect(insert=(self.FP), size=(self.plate_width, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.5)) + dwg.add(dwg.rect(insert=(self.FP), size=(self.plate_width, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.5)) + dwg.add(dwg.rect(insert=(self.FP), size=(self.weld_thick, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.0)) + nr = self.no_of_rows + nc = self.no_of_col + bolt_r = self.bolt_dia/2 + ptList = [] + + for i in range(1,(nr+1)): + colList = [] + for j in range (1,(nc+1)): + pt = self.ptFP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (i-1) * self.pitch * np.array([0,1]) + (j-1) * self.gauge * np.array([1,0]) + dwg.add(dwg.circle(center=(pt), r = bolt_r, stroke='blue',fill = 'none',stroke_width=1.5)) + ptC = pt - (bolt_r + 4) * np.array([1,0]) + PtD = pt + (bolt_r + 4) * np.array([1,0]) + dwg.add(dwg.line((ptC),(PtD)).stroke('red',width = 2.0,linecap = 'square')) + ptE = self.ptFP + self.edge_dist * np.array([1,0]) +(j-1) * self.gauge * np.array([1,0]) + ptF = ptE + self.plate_ht * np.array([0,1]) + dwg.add(dwg.line((ptE),(ptF)).stroke('blue',width = 1.5,linecap = 'square').dasharray(dasharray = ([20, 5, 1, 5]))) + colList.append(pt) + ptList.append(colList) + + pitchPts =[] + for row in ptList: + if len(row) > 0: + pitchPts.append(row[0]) + params = {"offset": self.D_col + self.edge_dist + 50, "textoffset": 105, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[0]), np.array(pitchPts[len( pitchPts)-1]), str(len(pitchPts)-1)+ u' \u0040'+ str(self.pitch) + "mm c/c", params) + + # End Distance from the starting point of plate Information + edgPtx = (self.D_col) + self.edge_dist + edgPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + edgPt = (edgPtx,edgPty) + params = {"offset": self.D_col + self.edge_dist + 50, "textoffset": 75, "lineori": "left", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[0]), np.array([edgPtx,edgPty]), str(self.end_dist) + "mm", params) + + # End Distance from plate end point. + edgPt1x = edgPtx + edgPt1y = edgPty + self.plate_ht + edgPt1 = (edgPt1x,edgPt1y) + params = {"offset": self.D_col + self.edge_dist + 50, "textoffset": 75, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[len( pitchPts)-1]), np.array([edgPt1x,edgPt1y]), str(self.end_dist) + "mm", params) + + # Edge Distance information + pt1A = self.ptFP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (self.no_of_col)* self.gauge * np.array([1,0]) + pt1B = self.ptFP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (self.no_of_col)* self.gauge * np.array([1,0]) + self.edge_dist * np.array([0,1]) + offset = self.end_dist + self.beam_T + self.R1 +3 + params = {"offset": self.D_col + self.edge_dist + 50, "textoffset": 75, "lineori": "left", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, pt1A, pt1B, str(self.edge_dist) + "mm", params) + + # Draws faint line to show dimensions + ptA = self.FP + ptBx = -30 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + ptB = (ptBx,ptBy) + self.drawFaintLine(ptA, ptB, dwg) + + pt1 = np.array(pitchPts[0]) + ptBx = -30 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.end_dist + pt2 = (ptBx,ptBy) + self.drawFaintLine(pt1, pt2, dwg) + + ptOne = np.array(pitchPts[len( pitchPts)-1]) + ptBx = -30 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + (self.plate_ht -self.end_dist) + ptTwo = (ptBx,ptBy) + self.drawFaintLine(ptOne, ptTwo, dwg) + + ptOne = self.FU + ptBx = -30 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.plate_ht + ptTwo = (ptBx,ptBy) + self.drawFaintLine(ptOne, ptTwo, dwg) + + # Beam Information + beam_ptx = self.D_col + 20 + (self.beam_L* 3/4) + beam_py = ((self.col_L - self.D_beam)/2) + self.D_beam + beam_pt = np.array([beam_ptx,beam_py]) + theta = 45 + offset = (self.D_beam * 3)/8 + textUp = "Beam " + self.beam_Designation + textDown = "" + self.drawOrientedArrow(dwg, beam_pt, theta, "SE", offset, textUp, textDown) + + # Column Designation + ptx = self.D_col /2 + pty = 0 + pt = np.array([ptx,pty]) + theta = 30 + offset = self.col_L /10 + textUp = "Column " + self.col_Designation + textDown = "" + self.drawOrientedArrow(dwg, pt, theta, "NW", offset, textUp,textDown) + + # Weld Information + weldPtx = (self.D_col) + weldPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + weldPt = np.array([weldPtx,weldPty]) + theta = 45 + offset = self.col_B + textUp = " z " + str(self.weld_thick) + " mm" + textDown = u"\u25C1" + self.drawOrientedArrow(dwg, weldPt, theta, "NW", offset, textUp, textDown) + + # Bolt Information + bltPtx = self.FP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) +(self.no_of_col-1) * self.gauge * np.array([1,0]) + theta = 45 + offset = (self.D_beam * 3)/8 + textUp = str(self.no_of_rows) + " nos " + str(self.bolt_dia) + u'\u00d8' + " holes" + textDown = "for M20 bolts (grade 8.8)" + self.drawOrientedArrow(dwg, bltPtx, theta, "NE", offset, textUp,textDown) + + # Plate Information + pltPtx = self.D_col + self.plate_width /2 + pltPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.plate_ht + pltPt = np.array([pltPtx,pltPty]) + theta = 45 + offset = (self.D_beam)/2 + textUp = "PLT. " + str(self.plate_ht) +"X" + str(self.plate_width) +"X" + str(self.plate_thick) + textDown = "" + self.drawOrientedArrow(dwg, pltPt, theta, "SE", offset, textUp, textDown) + + dwg.save() + print"Saved CFBWfront" + + + + def callCWBWfront(self): + + dwg = svgwrite.Drawing('finfront.svg', profile='full') + smarker = dwg.marker(insert=(-2.5,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-10,0), (0,-3)], fill='black')) + + emarker = dwg.marker(insert=(2.5,0), size=(10,10), orient="auto") + emarker.add(dwg.polyline([(2.5,0), (0,3), (10,0), (0,-3)], fill='black')) + + dwg.add(dwg.polyline(points=[(self.A2),(self.B),(self.A),(self.D),(self.C) ,(self.B2)], stroke='blue', fill='none', stroke_width=2.5)) + dwg.add(dwg.line((self.E),(self.H)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.line((self.F),(self.G)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.rect(insert=(self.P), size=(self.plate_width, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.5)) + dwg.add(dwg.rect(insert=(self.P), size=(self.weld_thick, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.0)) + #C1,A1,A3,B3,B1,C2 + dwg.add(dwg.polyline(points=[(self.C1),(self.A1),(self.A3),(self.B3),(self.B1),(self.C2)],stroke = 'blue',fill= 'none',stroke_width =2.5)) + #C1,C2 + dwg.add(dwg.line((self.C1),(self.C2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) + #A2,B2 + dwg.add(dwg.line((self.A2),(self.B2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) + dwg.add(dwg.line((self.A5),(self.A4)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.line((self.B5),(self.B4)).stroke('blue',width = 2.5,linecap = 'square')) + nr = self.no_of_rows + nc = self.no_of_col + bolt_r = self.bolt_dia/2 + ptList = [] + + for i in range(1,(nr+1)): + colList = [] + for j in range (1,(nc+1)): + pt = self.ptP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (i-1) * self.pitch * np.array([0,1]) + (j-1) * self.gauge * np.array([1,0]) + dwg.add(dwg.circle(center=(pt), r = bolt_r, stroke='blue',fill = 'none',stroke_width=1.5)) + ptC = pt - (bolt_r + 4) * np.array([1,0]) + PtD = pt + (bolt_r + 4) * np.array([1,0]) + dwg.add(dwg.line((ptC),(PtD)).stroke('red',width = 2.0,linecap = 'square')) + ptE = self.ptP + self.edge_dist * np.array([1,0]) +(j-1) * self.gauge * np.array([1,0]) + ptF = ptE + self.plate_ht * np.array([0,1]) + dwg.add(dwg.line((ptE),(ptF)).stroke('blue',width = 1.5,linecap = 'square').dasharray(dasharray = ([20, 5, 1, 5]))) + colList.append(pt) + ptList.append(colList) + + pitchPts =[] + for row in ptList: + if len(row) > 0: + pitchPts.append(row[0]) + +# for i in range (len( pitchPts)-1): +# params = {"offset": self.col_B + 10, "textoffset": 35, "lineori": "right", "endlinedim":10} +# self.draw_dimension_outerArrow(dwg, np.array(pitchPts[i]), np.array(pitchPts[i + 1]), str(self.pitch) + "mm", params) + params = {"offset": self.col_B + 30, "textoffset": 105, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[0]), np.array(pitchPts[len( pitchPts)-1]), str(len(pitchPts)-1)+ u' \u0040'+ str(self.pitch) + "mm c/c", params) + + # End Distance from the starting point of plate Information + edgPtx = (self.col_B + self.col_tw)/2 + self.edge_dist + edgPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + edgPt = (edgPtx,edgPty) + params = {"offset": self.col_B + 30, "textoffset": 75, "lineori": "left", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[0]), np.array([edgPtx,edgPty]), str(self.end_dist) + "mm", params) + + # Draw Faint line for dimenssions + ptOne = self.P + ptTwox = -45 + ptTwoy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + ptTwo = (ptTwox,ptTwoy) + self.drawFaintLine(ptOne, ptTwo, dwg) + + pt1 = np.array(pitchPts[0]) + ptTwox = -45 + ptTwoy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.end_dist + pt2 = (ptTwox,ptTwoy) + self.drawFaintLine(pt1, pt2, dwg) + + ptA = np.array(pitchPts[len( pitchPts)-1]) + ptBx = -45 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + (self.plate_ht -self.end_dist) + ptB = (ptBx,ptBy) + self.drawFaintLine(ptA, ptB, dwg) + + ptOne = self.U + ptBx = -45 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.plate_ht + ptTwo = (ptBx,ptBy) + self.drawFaintLine(ptOne, ptTwo, dwg) + + # End Distance from plate end point. + edgPt1x = edgPtx + edgPt1y = edgPty + self.plate_ht + edgPt1 = (edgPt1x,edgPt1y) + params = {"offset": self.col_B + 30, "textoffset": 75, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[len( pitchPts)-1]), np.array([edgPt1x,edgPt1y]), str(self.end_dist) + "mm", params) + + # Gauge Distance Information + gaugePts = ptList[0] + for i in range (len( gaugePts)-1): + offset_dist = self.D_beam + 300 + params = {"offset": offset_dist, "textoffset": 35, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(gaugePts[i]), np.array(gaugePts[i + 1]), str(int(self.gauge)) + "mm", params) + + if len(ptList[(len(ptList)-1)]) > 1: + ptA = self.ptP + self.edge_dist * np.array([1,0]) + self.plate_ht * np.array([0,1]) + ptB = ptA + (self.D_beam + 80)* np.array([0,1]) + self.drawFaintLine(ptA, ptB, dwg) + + ptC = self.ptP + self.edge_dist * np.array([1,0]) + self.plate_ht * np.array([0,1]) +self.gauge * np.array([1,0]) + ptD = ptC + (self.D_beam + 80)* np.array([0,1]) + self.drawFaintLine(ptC, ptD, dwg) + + # End Distance Information + boltPt = self.ptFP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (self.no_of_col-1) * self.gauge * np.array([1,0]) + endPtx = (self.col_B + self.col_tw)/2 + self.plate_width + engPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.end_dist + params = {"offset": 1, "textoffset": 50, "lineori": "left", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array([endPtx,engPty]),boltPt, str(int(self.edge_dist)) + "mm", params) + + # Plate Width Information + pltPtx = (self.col_B + self.col_tw)/2 + self.plate_width /2 + pltPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.plate_ht + pltPt = np.array([pltPtx,pltPty]) + theta = 45 + offset = (self.D_beam)/2 + textUp = "PLT. " + str(int(self.plate_ht)) +"X" + str(int(self.plate_width)) +"X" + str(int(self.plate_thick)) + textDown = "" + self.drawOrientedArrow(dwg, pltPt, theta, "SE", offset, textUp, textDown) + + dwg.defs.add(emarker) + dwg.defs.add(smarker) + +# params["lineori"] = "left" +# params["offset"] = self.col_B + 80 +# params["textoffset"] = 60 +# self.draw_dimension_outerArrow(dwg, np.array(self.S), np.array(self.R), str(self.plate_ht) + "mm", params) + + params = {"offset": 20, "textoffset": 10, "lineori": "right", "endlinedim":10,"arrowlen":50} + ptA = (np.array(self.B1) + np.array(self.B3)) * 0.5 + ptB = (np.array(self.B5) + np.array(self.B4)) * 0.5 + #self.draw_dimension_innerArrow(dwg, ptA, ptB, str(self.beam_T), params) + + # Column Designation + ptx = self.col_B /2 + pty = 0 + pt = np.array([ptx,pty]) + theta = 30 + offset = self.col_L /10 + textUp = "Column " + self.col_Designation + textDown = "" + self.drawOrientedArrow(dwg, pt, theta, "NW", offset, textUp,textDown) + + # Bolt Information + bltPtx = self.ptP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) +(self.no_of_col-1) * self.gauge * np.array([1,0]) + theta = 45 + offset = (self.D_beam * 3)/8 + textUp = str(self.no_of_rows) + " nos " + str(self.bolt_dia) + u'\u00d8' + " holes" + textDown = "for M20 bolts (grade 8.8)" + self.drawOrientedArrow(dwg, bltPtx, theta, "NE", offset, textUp,textDown) + + # Beam Information + beam_ptx = self.col_B + 20 + (self.beam_L/2) + beam_py = ((self.col_L - self.D_beam)/2) + self.D_beam + beam_pt = np.array([beam_ptx,beam_py]) + theta = 45 + offset = (self.D_beam * 3)/8 + textUp = "Beam " + self.beam_Designation + textDown = "" + self.drawOrientedArrow(dwg, beam_pt, theta, "SE", offset, textUp, textDown) + + # Weld Information + weldPtx = (self.col_B + self.col_tw)/2 + weldPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + weldPt = np.array([weldPtx,weldPty]) + theta = 45 + offset = self.col_B + textUp = " z " + str(self.weld_thick) + " mm" + textDown = "" + + self.drawOrientedArrow(dwg, weldPt, theta, "NW", offset, textUp, textDown) + + + dwg.save() + print"Saved" + + + #,dimelinePt1,dimelinePt2,orient,s_arrow,e_arrow + def draw_dimension_outerArrow(self, dwg, pt1, pt2, text, params): + ''' + :param dwg + :type + :param: pt1 + :type NumPy Array + :param pt2 + :type NumPy Array + :param text + :type + + params["offset"] : offset of the dimension line + params["textoffset"]: offset of text from dimension line + params["lineori"]: "right"/"left" + params["endlinedim"]:dimension line at the end of the outer arrow. + ''' + #defParams = {"offset": 10, "textoffset": 10, "lineori": "right"}defParams = {} + + + smarker = dwg.marker(insert=(-8,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-8,0), (0,-3)], fill='black')) + emarker = dwg.marker(insert=(8,0), size=(10,10), orient="auto") + emarker.add(dwg.polyline([(2.5,0), (0,3), (8,0), (0,-3)], fill='black')) + + dwg.defs.add(emarker) + dwg.defs.add(smarker) - dwg.save() - print"Saved" + lineVec = pt2 - pt1 # [a, b] + normalVec = np.array([-lineVec[1], lineVec[0]]) # [-b, a] + normalUnitVec = self.normalize(normalVec) + if(params["lineori"] == "left"): + normalUnitVec = -normalUnitVec + # Q1 = pt1 + params["offset"] * normalUnitVec + # Q2 = pt2 + params["offset"] * normalUnitVec + Q1 = pt1 + params["offset"] * normalUnitVec + Q2 = pt2 + params["offset"] * normalUnitVec + line = dwg.add(dwg.line(Q1, Q2).stroke('black', width = 2.5, linecap = 'square')) + line['marker-start'] = smarker.get_funciri() + line['marker-end'] = emarker.get_funciri() + + Q12mid = 0.5 * (Q1 + Q2) + txtPt = Q12mid + params["textoffset"] * normalUnitVec + dwg.add(dwg.text(text, insert=(txtPt), fill='black',)) + + L1 = Q1 + params["endlinedim"] * normalUnitVec + L2 = Q1 + params["endlinedim"]* (-normalUnitVec) + dwg.add(dwg.line(L1,L2).stroke('black',width = 2.5,linecap = 'square')) + L3 = Q2 + params["endlinedim"] * normalUnitVec + L4 = Q2 + params["endlinedim"]* (-normalUnitVec) + dwg.add(dwg.line(L3,L4).stroke('black',width = 2.5,linecap = 'square')) + + def normalize(self, vec): + a = vec[0] + b = vec[1] + mag = math.sqrt(a * a + b * b) + return vec / mag + + def draw_dimension_innerArrow(self, dwg, ptA, ptB, text, params): + + smarker = dwg.marker(insert=(-8,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-8,0), (0,-3)], fill='black')) + emarker = dwg.marker(insert=(8,0), size=(10,10), orient="auto") + emarker.add(dwg.polyline([(2.5,0), (0,3), (8,0), (0,-3)], fill='black')) + + dwg.defs.add(emarker) + dwg.defs.add(smarker) + + u = ptB - ptA # [a, b] + uUnit = self.normalize(u) + + vUnit = np.array([-uUnit[1], uUnit[0]]) # [-b, a] + + A1 = ptA + params["endlinedim"] * vUnit + A2 = ptA - params["endlinedim"]* (-vUnit) + dwg.add(dwg.line(A1,A2).stroke('black',width = 2.5,linecap = 'square')) + B1 = ptB + params["endlinedim"] * vUnit + B2 = ptB - params["endlinedim"]* (-vUnit) + dwg.add(dwg.line(B1,B2).stroke('black',width = 2.5,linecap = 'square')) + A3 = ptA - params["arrowlen"]* uUnit + B3 = ptB + params["arrowlen"]* uUnit + + line = dwg.add(dwg.line(A3, ptA).stroke('black', width = 2.5, linecap = 'square')) + line['marker-end'] = emarker.get_funciri() + line = dwg.add(dwg.line(B3, ptB).stroke('black', width = 2.5, linecap = 'square')) + + line['marker-end'] = emarker.get_funciri() + txtPt = A3 + params["textoffset"] * vUnit + dwg.add(dwg.text(text, insert=(txtPt), fill='black',)) + + pass + + def drawArrow(self,line,s_arrow,e_arrow): + line['marker-start'] = s_arrow.get_funciri() + line['marker-end'] = e_arrow.get_funciri() + + def drawStartArrow(self,line,s_arrow): + line['marker-start'] = s_arrow.get_funciri() + + def drawEndArrow(self,line,e_arrow): + line['marker-end'] = e_arrow.get_funciri() + + + def drawOrientedArrow(self, dwg, pt, theta, orientation, offset, textUp,textDown): + ''' + Drawing an arrow on given direction + ''' + #Right Up. + theta = math.radians(theta) + charWidth = 10 + xVec = np.array([1, 0]) + yVec = np.array([0, 1]) + + p1 = pt + lengthA = offset / math.sin(theta) + + arrowVec = None + if(orientation == "NE"): + arrowVec = np.array([-math.cos(theta), math.sin(theta)]) + elif(orientation == "NW"): + arrowVec = np.array([math.cos(theta), math.sin(theta)]) + elif(orientation == "SE"): + arrowVec = np.array([-math.cos(theta), -math.sin(theta)]) + elif(orientation == "SW"): + arrowVec = np.array([math.cos(theta), -math.sin(theta)]) + + p2 = p1 - lengthA * arrowVec + + text = textDown if len(textDown) > len(textUp) else textUp + lengthB = len(text) * charWidth + + labelVec = None + if(orientation == "NE"): + labelVec = -xVec + elif(orientation == "NW"): + labelVec = xVec + elif(orientation == "SE"): + labelVec = -xVec + elif(orientation == "SW"): + labelVec = xVec + + + p3 = p2 + lengthB * (-labelVec) + +# if case == "weld": +# pt = lengthB /2 (-labelVec) + + txtOffset = 15 + offsetVec = - yVec + + txtPtUp = None + if(orientation == "NE"): + txtPtUp = p2 + 0.1 * lengthB * (-labelVec) + txtOffset * offsetVec + txtPtDwn = p2 -0.1 * lengthB * (labelVec) - txtOffset * offsetVec + elif(orientation == "NW"): + txtPtUp = p3 + 0.1 * lengthB * labelVec + txtOffset * offsetVec + txtPtDwn = p3 - 0.1 * lengthB * labelVec - txtOffset * offsetVec + elif(orientation == "SE"): + txtPtUp = p2 + 0.1 * lengthB * (-labelVec) + txtOffset * offsetVec + txtPtDwn = p2 - 0.1 * lengthB * (labelVec) - txtOffset * offsetVec + elif(orientation == "SW"): + txtPtUp = p3 + 0.1 * lengthB * labelVec + txtOffset * offsetVec + txtPtDwn = p3 - 0.1 * lengthB * labelVec - txtOffset * offsetVec + + #line = dwg.add(dwg.line(p1, p2, p3).stroke('black', width = 2.5, linecap = 'square')) + line = dwg.add(dwg.polyline(points=[p1, p2, p3], fill= 'none', stroke='black', stroke_width = 2.5)) + smarker = self.addSMarker(dwg) + line['marker-start'] = smarker.get_funciri() + + dwg.add(dwg.text(textUp, insert=(txtPtUp), fill='black',font_family = "sans-serif",font_size = 12)) + dwg.add(dwg.text(textDown, insert=(txtPtDwn), fill='black',font_family = "sans-serif",font_size = 16)) + + def addSMarker(self, dwg): + ''' + Draws start arrow to given line + ''' + smarker = dwg.marker(insert=(-8,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-8,0), (0,-3)], fill='black')) + dwg.defs.add(smarker) + return smarker + + def drawFaintLine(self,ptOne,ptTwo,dwg): + ''' + Draw faint line to show dimensions. + ''' + dwg.add(dwg.line(ptOne,ptTwo).stroke('#D8D8D8',width = 2.5,linecap = 'square')) + + diff --git a/Connections/Shear/Finplate/fin.log b/Connections/Shear/Finplate/fin.log index 2cfbd93..6b8c338 100644 --- a/Connections/Shear/Finplate/fin.log +++ b/Connections/Shear/Finplate/fin.log @@ -1,8897 +1,950 @@ <link rel="stylesheet" type="text/css" href="./Connections/Shear/Finplate/log.css"/> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:15:26</span> + <span class="DATE">Thu, 01 Oct 2015 15:37:28</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:15:26</span> + <span class="DATE">Thu, 01 Oct 2015 15:37:28</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:15:26</span> + <span class="DATE">Thu, 01 Oct 2015 15:37:28</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:15:26</span> + <span class="DATE">Thu, 01 Oct 2015 15:37:28</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:15:38</span> + <span class="DATE">Thu, 01 Oct 2015 15:39:26</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:15:38</span> + <span class="DATE">Thu, 01 Oct 2015 15:39:26</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:15:38</span> + <span class="DATE">Thu, 01 Oct 2015 15:39:26</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:15:38</span> + <span class="DATE">Thu, 01 Oct 2015 15:39:26</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:15:43</span> + <span class="DATE">Thu, 01 Oct 2015 15:40:31</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:15:43</span> + <span class="DATE">Thu, 01 Oct 2015 15:40:31</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:15:43</span> + <span class="DATE">Mon, 12 Oct 2015 16:22:07</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:15:43</span> + <span class="DATE">Mon, 12 Oct 2015 16:22:07</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:16:28</span> + <span class="DATE">Mon, 12 Oct 2015 16:22:07</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:16:28</span> + <span class="DATE">Mon, 12 Oct 2015 16:22:07</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:23:49</span> + <span class="DATE">Mon, 12 Oct 2015 17:37:55</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:23:49</span> + <span class="DATE">Mon, 12 Oct 2015 17:37:55</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:23:49</span> + <span class="DATE">Mon, 12 Oct 2015 17:37:55</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:23:49</span> + <span class="DATE">Mon, 12 Oct 2015 17:37:55</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:24:01</span> + <span class="DATE">Mon, 12 Oct 2015 17:39:46</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:24:01</span> + <span class="DATE">Mon, 12 Oct 2015 17:39:46</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:25:45</span> + <span class="DATE">Mon, 12 Oct 2015 17:39:46</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:25:45</span> + <span class="DATE">Mon, 12 Oct 2015 17:39:46</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:26:02</span> + <span class="DATE">Mon, 12 Oct 2015 17:40:35</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:26:02</span> + <span class="DATE">Mon, 12 Oct 2015 17:40:35</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:26:02</span> + <span class="DATE">Mon, 12 Oct 2015 17:40:35</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:26:02</span> + <span class="DATE">Mon, 12 Oct 2015 17:40:35</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:39:03</span> + <span class="DATE">Mon, 12 Oct 2015 17:41:15</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:39:03</span> + <span class="DATE">Mon, 12 Oct 2015 17:41:15</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:39:03</span> + <span class="DATE">Mon, 12 Oct 2015 17:41:15</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:39:03</span> + <span class="DATE">Mon, 12 Oct 2015 17:41:15</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 16:39:34</span> + <span class="DATE">Mon, 12 Oct 2015 17:41:19</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 16:39:34</span> + <span class="DATE">Mon, 12 Oct 2015 17:41:19</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:04:15</span> + <span class="DATE">Mon, 12 Oct 2015 17:42:10</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:04:15</span> + <span class="DATE">Mon, 12 Oct 2015 17:42:10</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:04:15</span> + <span class="DATE">Mon, 12 Oct 2015 17:42:10</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:04:15</span> + <span class="DATE">Mon, 12 Oct 2015 17:42:10</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:05:35</span> + <span class="DATE">Mon, 12 Oct 2015 17:42:14</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:05:35</span> + <span class="DATE">Mon, 12 Oct 2015 17:42:14</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:05:35</span> + <span class="DATE">Mon, 12 Oct 2015 17:43:50</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:05:35</span> + <span class="DATE">Mon, 12 Oct 2015 17:43:50</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:06:58</span> + <span class="DATE">Mon, 12 Oct 2015 17:43:50</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:06:58</span> + <span class="DATE">Mon, 12 Oct 2015 17:43:50</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:06:58</span> + <span class="DATE">Mon, 12 Oct 2015 17:43:53</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:06:58</span> + <span class="DATE">Mon, 12 Oct 2015 17:43:53</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:08:06</span> + <span class="DATE">Mon, 12 Oct 2015 17:46:15</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:08:06</span> + <span class="DATE">Mon, 12 Oct 2015 17:46:15</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:08:06</span> + <span class="DATE">Mon, 12 Oct 2015 17:46:15</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:08:06</span> + <span class="DATE">Mon, 12 Oct 2015 17:46:15</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:09:28</span> + <span class="DATE">Mon, 12 Oct 2015 17:47:24</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:09:28</span> + <span class="DATE">Mon, 12 Oct 2015 17:47:24</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:09:28</span> + <span class="DATE">Mon, 12 Oct 2015 17:47:24</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:09:28</span> + <span class="DATE">Mon, 12 Oct 2015 17:47:24</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:11:12</span> + <span class="DATE">Mon, 12 Oct 2015 17:48:27</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:11:12</span> + <span class="DATE">Mon, 12 Oct 2015 17:48:27</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:11:12</span> + <span class="DATE">Mon, 12 Oct 2015 17:48:27</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:11:12</span> + <span class="DATE">Mon, 12 Oct 2015 17:48:27</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:11:44</span> + <span class="DATE">Mon, 12 Oct 2015 17:48:32</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:11:44</span> + <span class="DATE">Mon, 12 Oct 2015 17:48:32</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:11:44</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:05</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:11:44</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:05</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:14:51</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:05</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:14:51</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:05</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:14:51</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:12</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:14:51</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:12</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:15:48</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:12</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:15:48</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:12</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:15:48</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:16</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:15:48</span> + <span class="DATE">Mon, 12 Oct 2015 17:51:16</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:39:50</span> + <span class="DATE">Mon, 12 Oct 2015 17:52:27</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:39:50</span> + <span class="DATE">Mon, 12 Oct 2015 17:52:27</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:39:50</span> + <span class="DATE">Mon, 12 Oct 2015 17:52:27</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:39:50</span> + <span class="DATE">Mon, 12 Oct 2015 17:52:27</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:41:15</span> + <span class="DATE">Mon, 12 Oct 2015 17:52:31</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:41:15</span> + <span class="DATE">Mon, 12 Oct 2015 17:52:31</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:41:15</span> + <span class="DATE">Mon, 12 Oct 2015 17:54:27</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:41:15</span> + <span class="DATE">Mon, 12 Oct 2015 17:54:27</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:48:29</span> + <span class="DATE">Mon, 12 Oct 2015 17:54:27</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:48:29</span> + <span class="DATE">Mon, 12 Oct 2015 17:54:27</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Tue, 07 Jul 2015 17:48:29</span> + <span class="DATE">Mon, 12 Oct 2015 17:54:30</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Tue, 07 Jul 2015 17:48:29</span> + <span class="DATE">Mon, 12 Oct 2015 17:54:30</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 10:03:54</span> + <span class="DATE">Mon, 12 Oct 2015 18:08:42</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 10:03:54</span> + <span class="DATE">Mon, 12 Oct 2015 18:08:42</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 10:03:54</span> + <span class="DATE">Mon, 12 Oct 2015 18:08:42</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 10:03:54</span> + <span class="DATE">Mon, 12 Oct 2015 18:08:42</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 10:43:43</span> + <span class="DATE">Mon, 12 Oct 2015 18:08:45</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 10:43:43</span> + <span class="DATE">Mon, 12 Oct 2015 18:08:45</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 10:43:43</span> + <span class="DATE">Mon, 12 Oct 2015 18:14:00</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 10:43:43</span> + <span class="DATE">Mon, 12 Oct 2015 18:14:00</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 10:44:33</span> + <span class="DATE">Mon, 12 Oct 2015 18:14:00</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 10:44:33</span> + <span class="DATE">Mon, 12 Oct 2015 18:14:00</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 11:26:05</span> + <span class="DATE">Mon, 12 Oct 2015 18:14:04</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 11:26:05</span> + <span class="DATE">Mon, 12 Oct 2015 18:14:04</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 11:52:27</span> + <span class="DATE">Mon, 12 Oct 2015 18:28:12</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 11:52:27</span> + <span class="DATE">Mon, 12 Oct 2015 18:28:12</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 11:52:27</span> + <span class="DATE">Mon, 12 Oct 2015 18:28:12</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 11:52:27</span> + <span class="DATE">Mon, 12 Oct 2015 18:28:12</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 11:55:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:28:16</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 11:55:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:28:16</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 11:55:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:31:01</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 11:55:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:31:01</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:05:32</span> + <span class="DATE">Mon, 12 Oct 2015 18:31:01</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:05:32</span> + <span class="DATE">Mon, 12 Oct 2015 18:31:01</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:05:32</span> + <span class="DATE">Mon, 12 Oct 2015 18:31:05</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:05:32</span> + <span class="DATE">Mon, 12 Oct 2015 18:31:05</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:09:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:32:12</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:09:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:32:12</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:09:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:32:12</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:09:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:32:12</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:09:52</span> + <span class="DATE">Mon, 12 Oct 2015 18:32:15</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:09:52</span> + <span class="DATE">Mon, 12 Oct 2015 18:32:15</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:09:52</span> + <span class="DATE">Mon, 12 Oct 2015 18:33:07</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:09:52</span> + <span class="DATE">Mon, 12 Oct 2015 18:33:07</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:10:52</span> + <span class="DATE">Mon, 12 Oct 2015 18:33:07</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:10:52</span> + <span class="DATE">Mon, 12 Oct 2015 18:33:07</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:10:52</span> + <span class="DATE">Mon, 12 Oct 2015 18:33:12</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:10:52</span> + <span class="DATE">Mon, 12 Oct 2015 18:33:12</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:12:42</span> + <span class="DATE">Mon, 12 Oct 2015 18:35:16</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:12:42</span> + <span class="DATE">Mon, 12 Oct 2015 18:35:16</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:12:42</span> + <span class="DATE">Mon, 12 Oct 2015 18:35:16</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:12:42</span> + <span class="DATE">Mon, 12 Oct 2015 18:35:16</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:12:59</span> + <span class="DATE">Mon, 12 Oct 2015 18:35:19</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:12:59</span> + <span class="DATE">Mon, 12 Oct 2015 18:35:19</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:12:59</span> + <span class="DATE">Mon, 12 Oct 2015 18:38:33</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:12:59</span> + <span class="DATE">Mon, 12 Oct 2015 18:38:33</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:13:40</span> + <span class="DATE">Mon, 12 Oct 2015 18:38:33</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:13:40</span> + <span class="DATE">Mon, 12 Oct 2015 18:38:33</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:13:40</span> + <span class="DATE">Mon, 12 Oct 2015 18:38:37</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:13:40</span> + <span class="DATE">Mon, 12 Oct 2015 18:38:37</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:14:29</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:15</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:14:29</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:15</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:14:29</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:15</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:14:29</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:15</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:17:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:17</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:17:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:17</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:17:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:53</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:17:10</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:53</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:17:41</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:53</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:17:41</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:53</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 12:17:41</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:56</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 12:17:41</span> + <span class="DATE">Mon, 12 Oct 2015 18:39:56</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 14:31:35</span> + <span class="DATE">Tue, 20 Oct 2015 17:38:46</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 14:31:35</span> + <span class="DATE">Tue, 20 Oct 2015 17:38:46</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 14:31:35</span> + <span class="DATE">Tue, 20 Oct 2015 17:38:46</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 14:31:35</span> + <span class="DATE">Tue, 20 Oct 2015 17:38:46</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 14:31:51</span> + <span class="DATE">Tue, 20 Oct 2015 17:38:50</span> <span class="LEVEL">INFO</span> <span class="MSG">: Overall finplate connection design is safe </span> </div> <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 14:31:51</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 14:31:51</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 14:31:51</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 14:47:10</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 14:47:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 14:47:10</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 14:47:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 14:51:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 14:51:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 14:51:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 14:51:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 15:37:59</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 15:37:59</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 15:37:59</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 15:37:59</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:31:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:31:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:31:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:31:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:49:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:49:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:49:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:49:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:50:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:50:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:50:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:50:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:52:18</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:52:18</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:52:18</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:52:18</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:58:41</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:58:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:58:41</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:58:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:59:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:59:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 17:59:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 17:59:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 18:00:14</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 18:00:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 18:00:14</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 18:00:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 18:01:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 18:01:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 08 Jul 2015 18:01:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 08 Jul 2015 18:01:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 10:21:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 10:21:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 10:21:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 10:21:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:17:57</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:17:57</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:17:57</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:17:57</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:33:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:33:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:33:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:33:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:35:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:35:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:35:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:35:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:38:46</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:38:46</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:38:46</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:38:46</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:39:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:39:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:39:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:39:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:40:32</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:40:32</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:40:32</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:40:32</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:51:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:51:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:51:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:51:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:51:57</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:51:57</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:51:57</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:51:57</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:52:38</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:52:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:52:38</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:52:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:59:34</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:59:34</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 11:59:34</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 11:59:34</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:01:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:01:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:01:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:01:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:03:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:03:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:03:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:03:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:03:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:03:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:03:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:03:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:08:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:08:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:08:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:08:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:08:41</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:08:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:08:41</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:08:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:11:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:11:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:11:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:11:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:11:23</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:11:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:11:23</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:11:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:12:32</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:12:32</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:12:32</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:12:32</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:12:55</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:12:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:12:55</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:12:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:14:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:14:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:14:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:14:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:33:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:33:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:33:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:33:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:34:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:34:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 12:34:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 12:34:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:07:08</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:07:08</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:07:08</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:07:08</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:07:59</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:07:59</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:07:59</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:07:59</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:15:34</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:15:34</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:15:34</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:15:34</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:17:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:17:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:17:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:17:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:18:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:18:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:18:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:18:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:18:11</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:18:11</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:18:11</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:18:11</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:18:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:18:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:18:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:18:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:19:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:19:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:19:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:19:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:46:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:46:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:46:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:46:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:46:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:46:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:46:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:46:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:47:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:47:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:47:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:47:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:47:49</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:47:49</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:47:49</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:47:49</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:52:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:52:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:52:32</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:52:32</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:53:04</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:53:04</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:53:04</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:53:04</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:55:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:55:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:55:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:55:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:56:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:56:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:56:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:56:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:56:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:56:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:56:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:56:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:58:53</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:58:53</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 15:58:53</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 15:58:53</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:00:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:00:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:00:32</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:00:32</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:02:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:02:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:02:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:02:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:07:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:07:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:07:08</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:07:08</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:08:28</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:08:28</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:08:28</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:08:28</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:09:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:09:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:09:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:09:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:10:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:10:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:10:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:10:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:11:53</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:11:53</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:11:53</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:11:53</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:14:18</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:14:18</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:14:18</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:14:18</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:14:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:14:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:14:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:14:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:16:18</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:16:18</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:16:18</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:16:18</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:21:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:21:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:21:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:21:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:23:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:23:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:23:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:23:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:25:57</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:25:57</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:25:57</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:25:57</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:28:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:28:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:28:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:28:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:28:03</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:28:03</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:28:03</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:28:03</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:33:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:33:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:33:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:33:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:34:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:34:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:34:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:34:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:35:40</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:35:40</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:35:40</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:35:40</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:36:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:36:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:36:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:36:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:36:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:36:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:36:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:36:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:37:30</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:37:30</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:37:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:37:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:40:10</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:40:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:40:10</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:40:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:41:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:41:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:41:20</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:41:20</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:42:10</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:42:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:42:10</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:42:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:43:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:43:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:43:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:43:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:44:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:44:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:44:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:44:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:46:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:46:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:46:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:46:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:47:42</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:47:42</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:47:42</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:47:42</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:50:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:50:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:50:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:50:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:50:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:50:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:50:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:50:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:51:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:51:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:51:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:51:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:52:38</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:52:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:52:38</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:52:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:56:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:56:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:56:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:56:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:57:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:57:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:57:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:57:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:58:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:58:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 16:58:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 16:58:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:11:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:11:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:11:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:11:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:12:23</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:12:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:12:23</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:12:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:20:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:20:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:20:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:20:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:21:37</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:21:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:21:37</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:21:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:55:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:55:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:55:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:55:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:57:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:57:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 09 Jul 2015 17:57:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 09 Jul 2015 17:57:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:47:20</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:47:20</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:47:20</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:47:20</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:48:37</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:48:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:48:37</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:48:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:49:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:49:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:49:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:49:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:50:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:50:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:50:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:50:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:53:04</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:53:04</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:53:04</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:53:04</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:53:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:53:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:53:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:53:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:54:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:54:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:54:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:54:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:59:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:59:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 10:59:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 10:59:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:01:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:01:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:01:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:01:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:01:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:01:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:01:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:01:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:02:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:02:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:02:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:02:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:03:27</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:03:27</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:03:27</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:03:27</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:04:00</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:04:00</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:04:00</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:04:00</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:05:55</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:05:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:05:55</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:05:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:07:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:07:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:07:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:07:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:08:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:08:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:08:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:08:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:09:09</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:09:09</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:09:09</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:09:09</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:10:28</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:10:28</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:10:28</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:10:28</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:11:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:11:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:11:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:11:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:13:03</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:13:03</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:13:03</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:13:03</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:15:30</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:15:30</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:15:30</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:15:30</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:23:11</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:23:11</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:23:11</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:23:11</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:29:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:29:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:29:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:29:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:30:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:30:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:30:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:30:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:33:40</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:33:40</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:33:40</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:33:40</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:36:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:36:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:36:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:36:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:44:49</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:44:49</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:44:49</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:44:49</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:45:52</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:45:52</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:45:52</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:45:52</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:48:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:48:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:48:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:48:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:55:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:55:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:55:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:55:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:56:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:56:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:56:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:56:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:57:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:57:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:57:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:57:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:58:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:58:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:58:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:58:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:58:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:58:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 11:58:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 11:58:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:00:23</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:00:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:00:23</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:00:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:02:08</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:02:08</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:02:08</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:02:08</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:03:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:03:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:03:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:03:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:04:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:04:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:04:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:04:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:04:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:04:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:04:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:04:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:05:45</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:05:45</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:05:45</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:05:45</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:07:41</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:07:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:07:41</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:07:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:08:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:08:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:08:17</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:08:17</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:09:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:09:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:09:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:09:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:10:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:10:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:10:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:10:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:11:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:11:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:11:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:11:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:20:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:20:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:20:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:20:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:25:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:25:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:25:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:25:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:26:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:26:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:26:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:26:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:32:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:32:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:32:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:32:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:33:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:33:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:33:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:33:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:36:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:36:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:36:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:36:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:38:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:38:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:38:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:38:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:38:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:38:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:38:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:38:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:39:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:39:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:39:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:39:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:39:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:39:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:39:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:39:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:40:41</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:40:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 12:40:41</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 12:40:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:34:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:34:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:34:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:34:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:45:42</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:45:42</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:45:42</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:45:42</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:46:50</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:46:50</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:46:50</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:46:50</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:47:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:47:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:47:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:47:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:48:14</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:48:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:48:14</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:48:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:52:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:52:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:52:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:52:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:52:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:52:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 14:52:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 14:52:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 15:16:15</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 15:16:15</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 15:16:15</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 15:16:15</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 15:35:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 15:35:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 15:35:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 15:35:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 15:56:55</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 15:56:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 15:56:55</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 15:56:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 15:57:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 15:57:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 15:57:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 15:57:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:00:20</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:00:20</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:00:20</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:00:20</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:00:40</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:00:40</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:00:40</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:00:40</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:03:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:03:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:03:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:03:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:03:30</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:03:30</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:03:30</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:03:30</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:03:36</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:03:36</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:03:36</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:03:36</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:26:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:26:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:26:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:26:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:27:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:27:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:27:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:27:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:28:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:28:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:28:24</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:28:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:29:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:29:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:29:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:29:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:31:50</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:31:50</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:31:50</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:31:50</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:32:14</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:32:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:32:14</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:32:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:32:51</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:32:51</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:32:51</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:32:51</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:52:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:52:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:52:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:52:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:53:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:53:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 16:53:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 16:53:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 17:37:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 17:37:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 17:37:58</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 17:37:58</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 17:44:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 17:44:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Fri, 10 Jul 2015 17:44:44</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Fri, 10 Jul 2015 17:44:44</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 10:08:14</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 10:08:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 10:08:15</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 10:08:15</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 12:02:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 12:02:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 12:02:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 12:02:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:08:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:08:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:08:05</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:08:05</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:12:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:12:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:12:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:12:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:12:38</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:12:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:12:38</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:12:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:13:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:13:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:13:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:13:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Mon, 13 Jul 2015 17:14:03</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Minimum required plate height is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Mon, 13 Jul 2015 17:14:03</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Plate height required should be more than 410.00 mm </span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Mon, 13 Jul 2015 17:14:03</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 328.00 mm </span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:14:03</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Increase the plate thickness</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Mon, 13 Jul 2015 17:14:03</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:14:03</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:14:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:14:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:14:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:14:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Mon, 13 Jul 2015 17:15:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Mon, 13 Jul 2015 17:15:07</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Mon, 13 Jul 2015 17:15:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:15:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:15:51</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:15:51</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Mon, 13 Jul 2015 17:15:51</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Mon, 13 Jul 2015 17:15:51</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 15:48:46</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 15:48:46</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 15:48:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 15:48:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 15:51:23</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 15:51:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 15:51:23</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 15:51:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:23:09</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:23:09</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:23:09</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:23:09</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:24:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:24:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:24:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:24:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:24:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:24:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:24:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:24:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:24:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:24:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:24:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:24:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:34:55</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:34:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:34:55</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:34:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:35:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:35:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:35:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:35:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:35:10</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:35:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:35:10</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:35:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Tue, 14 Jul 2015 17:35:19</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Tue, 14 Jul 2015 17:35:19</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 100.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Tue, 14 Jul 2015 17:35:19</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:35:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:35:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:35:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:35:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:35:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:40:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:40:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:40:16</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:40:16</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:40:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:40:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Tue, 14 Jul 2015 17:40:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Tue, 14 Jul 2015 17:40:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:16:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:16:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:16:49</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:16:49</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:17:36</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:17:36</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:17:36</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:17:36</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 11:18:11</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 11:18:11</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 5.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 11:18:11</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:18:11</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:18:17</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:18:17</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:18:17</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:18:17</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:19:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:19:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:19:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:19:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:19:52</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:19:52</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:19:53</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:19:53</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:20:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:20:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 11:20:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 11:20:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 161.40 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate moment capacity is less than the moment demand</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Re-design with increased plate dimensions</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 15.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 12:21:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:21</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 12:21:21</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 233.80 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:21</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 12:21:21</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 7.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:21</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 12:21:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:26</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 12:21:26</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 281.60 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 12:21:26</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 12:21:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 12:21:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 12:21:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 12:21:33</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 12:21:33</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 12:21:53</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 12:21:53</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 12:21:53</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 12:21:53</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:02:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:02:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:02:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:02:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:02:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:02:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:02:54</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:02:54</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:08:43</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:08:43</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 5.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:08:43</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:08:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:08:52</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:08:52</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:08:52</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:08:52</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 18.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:11:36</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 38.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:12:00</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:24:14</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:24:14</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 5.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:24:14</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:24:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:24:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:24:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:24:22</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:24:22</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 12.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:34:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 12.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:34:41</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:55</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 16:34:55</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 5.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 16:34:55</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:34:55</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:35:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:35:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 16:35:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 16:35:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 17:41:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 17:41:07</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 4.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 17:41:07</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 17:41:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 17:41:15</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 17:41:15</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 17:41:15</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 17:41:15</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 17:41:50</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Wed, 15 Jul 2015 17:41:50</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 6.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Wed, 15 Jul 2015 17:41:50</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 17:41:50</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 17:41:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 17:41:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Wed, 15 Jul 2015 17:41:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Wed, 15 Jul 2015 17:41:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 10:37:26</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 10:37:26</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 5.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 10:37:26</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 10:37:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 10:37:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 10:37:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 10:37:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 10:37:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 10:37:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 10:37:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 10:37:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 10:37:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:04:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:04:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:04:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:04:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:05:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:05:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:05:26</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:05:26</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:06:34</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:06:34</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:06:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:06:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:24:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:24:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:24:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:24:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:26:34</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:26:34</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:26:34</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:26:34</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:29:01</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:29:01</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:29:01</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:29:01</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:31:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:31:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:31:21</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:31:21</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:53:40</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:53:40</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:53:40</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:53:40</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:54:29</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:54:29</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 11:54:29</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 11:54:29</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 12:00:25</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 12:00:25</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 281.60 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 12:00:25</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:00:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 12:00:46</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 12:00:46</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 281.60 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 12:00:46</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 12:00:46</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 6.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 12:00:46</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:00:46</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 12:00:49</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 12:00:49</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 281.60 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 12:00:49</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:00:49</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 12:01:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:01:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 12:01:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:01:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 12:39:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:39:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 12:39:25</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:39:25</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 12:40:11</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:40:11</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 12:40:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 12:40:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 14:18:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 14:18:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 14:18:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 14:18:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:11:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:11:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:11:43</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:11:43</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:12:04</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:12:04</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:12:04</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:12:04</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:33:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:33:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:33:48</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:33:48</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 15:48:15</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Chosen web plate thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 15:48:15</span> - <span class="LEVEL">WARNING</span> - <span class="MSG"> : Minimum required thickness 8.90 mm</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 15:48:15</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate height provided is less than the minimum required </span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 15:48:15</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Plate height required should be more than 320.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 15:48:15</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:48:15</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 15:48:23</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Chosen web plate thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 15:48:23</span> - <span class="LEVEL">WARNING</span> - <span class="MSG"> : Minimum required thickness 8.90 mm</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 15:48:23</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate height provided is less than the minimum required </span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 15:48:23</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Plate height required should be more than 320.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 15:48:23</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:48:23</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 15:48:36</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 15:48:36</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 4.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 15:48:36</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:48:36</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:48:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:48:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:48:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:48:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:48:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:48:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:48:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:48:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:52:37</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:52:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:52:37</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:52:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:58:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:58:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 15:58:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 15:58:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:01:14</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:01:14</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:01:15</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:01:15</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:09:32</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:09:32</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:09:32</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:09:32</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:12:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:12:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:12:06</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:12:06</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:15:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:15:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:15:39</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:15:39</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:16:00</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:16:00</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:16:00</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:16:00</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:16:20</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:16:20</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:16:20</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:16:20</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:16:30</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:16:30</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:16:36</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:16:36</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:16:36</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:16:36</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:19:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:19:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:19:19</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:19:19</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:19:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:19:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:19:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:19:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:20:37</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:20:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:20:37</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:20:37</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:21:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:21:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:21:02</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:21:02</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:22:15</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:22:15</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:23:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:23:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:23:35</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:23:35</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:24:38</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:24:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:24:38</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:24:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:24:56</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:24:56</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:25:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:25:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 16:25:07</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 16:25:07</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:07:11</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:07:11</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:07:11</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:07:11</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:07:24</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:07:24</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 6.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:07:24</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:07:24</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:07:30</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:07:30</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:07:30</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:07:30</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:07:46</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:07:46</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:07:47</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:07:47</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:08:04</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:08:04</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 5.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:08:04</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:08:04</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:08:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:08:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:08:12</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:08:12</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 15.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:09:45</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 15.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:09:53</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 15.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:09:57</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 12.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:10:10</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 25.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:10:20</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 46.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 25.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:10:38</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Height of plate is more than the clear depth of the beam</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Maximum plate height allowed is 94.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Bolt strength is insufficient to carry the shear force</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Increase bolt diameter and/or bolt grade</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Plate width provided is less than the minimum required</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum plate width required is 150.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 6.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:10:49</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:11:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:11:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:11:13</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:11:13</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:11:27</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Weld thickness is not sufficient</span> - </div> - - <div class="LOG WARNING"> - <span class="DATE">Thu, 16 Jul 2015 17:11:27</span> - <span class="LEVEL">WARNING</span> - <span class="MSG">: Minimum weld thickness is required is 6.00 mm </span> - </div> - - <div class="LOG ERROR"> - <span class="DATE">Thu, 16 Jul 2015 17:11:27</span> - <span class="LEVEL">ERROR</span> - <span class="MSG">: Design is not safe - </span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:11:27</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:11:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:11:31</span> - <span class="LEVEL">DEBUG</span> - <span class="MSG"> :=========End Of design===========</span> - </div> - - <div class="LOG INFO"> - <span class="DATE">Thu, 16 Jul 2015 17:11:31</span> - <span class="LEVEL">INFO</span> - <span class="MSG">: Overall finplate connection design is safe -</span> - </div> - - <div class="LOG DEBUG"> - <span class="DATE">Thu, 16 Jul 2015 17:11:31</span> + <span class="DATE">Tue, 20 Oct 2015 17:38:50</span> <span class="LEVEL">DEBUG</span> <span class="MSG"> :=========End Of design===========</span> </div> diff --git a/Connections/Shear/Finplate/finPlate.ui b/Connections/Shear/Finplate/finPlate.ui index 97ea6f2..d27e2c0 100644 --- a/Connections/Shear/Finplate/finPlate.ui +++ b/Connections/Shear/Finplate/finPlate.ui @@ -691,7 +691,7 @@ <string>000.0</string> </property> </widget> - <widget class="QLabel" name="label_3"> + <widget class="QLabel" name="lbl_ISsection"> <property name="geometry"> <rect> <x>6</x> @@ -742,6 +742,11 @@ <string>Column web-Beam web</string> </property> </item> + <item> + <property name="text"> + <string>Beam-Beam</string> + </property> + </item> </widget> <widget class="QLineEdit" name="txtFu"> <property name="geometry"> diff --git a/Connections/Shear/Finplate/finPlateMain.py b/Connections/Shear/Finplate/finPlateMain.py index 063fc73..d42cf3b 100644 --- a/Connections/Shear/Finplate/finPlateMain.py +++ b/Connections/Shear/Finplate/finPlateMain.py @@ -45,6 +45,8 @@ class MainController(QtGui.QMainWindow): self.ui = Ui_MainWindow() self.ui.setupUi(self) + self.ui.comboConnLoc.currentIndexChanged[str].connect(self.setimage_connection) + #self.ui.comboConnLoc.currentIndexChanged[str].connect(self.changeColtoBeamSection) self.ui.combo_Beam.addItems(get_beamcombolist()) self.ui.comboColSec.addItems(get_columncombolist()) @@ -58,7 +60,7 @@ class MainController(QtGui.QMainWindow): self.ui.comboType.setCurrentIndex(0) - self.ui.comboConnLoc.currentIndexChanged[str].connect(self.setimage_connection) + self.retrieve_prevstate() self.ui.btnInput.clicked.connect(lambda: self.dockbtn_clicked(self.ui.inputDock)) self.ui.btnOutput.clicked.connect(lambda: self.dockbtn_clicked(self.ui.outputDock)) @@ -143,6 +145,16 @@ class MainController(QtGui.QMainWindow): self.fuse_model = None self.disableViewButtons() + def changeColtoBeamSection(self): + if self.ui.comboConnLoc.currentText() == "Beam-Beam": + self.ui.lbl_ISsection.setText("Beam section") + self.ui.comboColSec.clear() + self.ui.comboColSec.addItems(get_beamcombolist()) + else: + self.ui.lbl_ISsection.setText("Column section") + self.ui.comboColSec.clear() + self.ui.comboColSec.addItems(get_beamcombolist()) + def showFontDialogue(self): font, ok = QtGui.QFontDialog.getFont() @@ -152,7 +164,7 @@ class MainController(QtGui.QMainWindow): self.ui.textEdit.setFont(font) def callZoomin(self): - self.display.ZoomFactor(2) + self.display.ZoomFactor(1.5) def callZoomout(self): self.display.ZoomFactor(0.5) @@ -294,15 +306,15 @@ class MainController(QtGui.QMainWindow): loc = self.ui.comboConnLoc.currentText() if loc == "Column flange-Beam web": - pixmap = QtGui.QPixmap(":/newPrefix/images/beam2.jpg") - pixmap.scaledToHeight(50) - pixmap.scaledToWidth(60) + pixmap = QtGui.QPixmap(":/newPrefix/images/colF2.png") + pixmap.scaledToHeight(600) + pixmap.scaledToWidth(55) self.ui.lbl_connectivity.setPixmap(pixmap) #self.ui.lbl_connectivity.show() elif(loc == "Column web-Beam web"): - picmap = QtGui.QPixmap(":/newPrefix/images/beam.jpg") - picmap.scaledToHeight(50) - picmap.scaledToWidth(60) + picmap = QtGui.QPixmap(":/newPrefix/images/colW3.png") + picmap.scaledToHeight(60) + picmap.scaledToWidth(55) self.ui.lbl_connectivity.setPixmap(picmap) else: self.ui.lbl_connectivity.hide() @@ -695,7 +707,7 @@ class MainController(QtGui.QMainWindow): # background gradient display.set_bg_gradient_color(23,1,32,23,1,32) - #display_2d.set_bg_gradient_color(255,255,255,255,255,255) + #display.set_bg_gradient_color(255,255,255,255,255,255) # display black trihedron display.display_trihedron() display.View.SetProj(1, 1, 1) @@ -716,6 +728,7 @@ class MainController(QtGui.QMainWindow): self.display.SetModeShaded() display.DisableAntiAliasing() self.display.set_bg_gradient_color(23,1,32,23,1,32) + #self.display.set_bg_gradient_color(186,195,201,255,255,255) self.display.View_Front() self.display.View_Iso() self.display.FitAll() @@ -1003,7 +1016,10 @@ class MainController(QtGui.QMainWindow): final_model = cadlist[0] for model in cadlist[1:]: final_model = BRepAlgoAPI_Fuse(model,final_model).Shape() - return final_model + return final_model + + + # Export to IGS,STEP,STL,BREP def save3DcadImages(self): @@ -1145,6 +1161,7 @@ class MainController(QtGui.QMainWindow): def call2D_Drawing(self): uiObj = self.getuser_inputs() + resultObj = finConn(uiObj) dictbeamdata = self.fetchBeamPara() dictcoldata = self.fetchColumnPara() diff --git a/Connections/Shear/Finplate/icons_rc.py b/Connections/Shear/Finplate/icons_rc.py index 6b093ff..9a81679 100644 --- a/Connections/Shear/Finplate/icons_rc.py +++ b/Connections/Shear/Finplate/icons_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Wed Jun 17 12:21:53 2015 +# Created: Thu Oct 1 12:21:41 2015 # by: The Resource Compiler for PyQt (Qt v4.8.6) # # WARNING! All changes made in this file will be lost! @@ -10,6 +10,701 @@ from PyQt4 import QtCore qt_resource_data = "\ +\x00\x00\x2b\x43\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\x48\x00\x00\x00\x48\ +\x00\x46\xc9\x6b\x3e\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ +\x80\x00\x00\x00\x80\x00\x30\xe1\x31\x9a\x00\x00\x00\x06\x62\x4b\ +\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x2a\x6c\ +\x49\x44\x41\x54\x78\xda\xed\x7d\x07\x7c\x24\x57\x99\xe7\xbf\xaa\ +\x5b\x52\xab\x25\xb5\x72\xce\xa3\xd1\xe4\x64\x7b\x12\x66\xc6\xf6\ +\x18\x1b\x63\x1b\x0c\xac\x81\x73\x20\x18\xf0\x01\xb7\xbb\x2c\x9c\ +\x59\xdf\x62\x0e\x6e\x59\x96\x70\x7b\x07\x4b\xd8\x65\xd7\xec\xc2\ +\x82\xb1\x0d\x06\x6c\xd6\x01\xe3\x88\xc7\x01\x33\xe3\x09\x9e\x64\ +\x4f\x92\x34\xca\x39\xb7\xd4\x6a\xb5\x3a\xd4\x7e\xdf\xab\xaa\x56\ +\x55\x75\x55\x4b\x13\x3c\x92\x66\xf4\xe6\xf7\x4d\x57\x57\x57\xb7\ +\xaa\xde\xf7\x7f\x5f\x7e\xef\x49\x58\x6c\x4e\x2d\x8d\xa8\x86\xa8\ +\x42\xa3\x12\x22\x8f\xc3\xb5\x23\x1a\xb5\x10\x75\x68\xaf\xd1\x85\ +\xf0\x90\xd2\x22\x9f\x45\xcb\x20\xda\x48\xb4\x4d\x7b\x5d\xa1\xd1\ +\x99\xb6\x08\xd1\x71\x8d\x76\x13\xfd\x91\x68\xdf\x42\x01\xc5\xc5\ +\xd2\xea\x88\xfe\x86\x68\x27\x51\x90\x48\x79\x8b\x69\x8c\xe8\x29\ +\xa2\x4f\x13\x95\x2f\x76\xff\xdc\xb4\x7c\xa2\x2f\x10\x1d\x38\x0f\ +\x0c\x9f\x89\x5e\x21\xfa\xa4\x26\x7d\x16\xdb\x5b\xdc\x2e\x23\xfa\ +\xe5\x79\x1a\xe9\x67\x22\x19\xfe\x95\x68\xf9\xa2\x0d\x70\xee\xdb\ +\x95\x44\x5f\x25\xba\xea\x8c\xc4\x45\x7e\x01\xaa\xaa\xab\x51\x56\ +\x5e\x81\xbc\xbc\x3c\xf8\x7c\x3e\xea\x31\x09\x69\x69\x69\x98\x0a\ +\x4d\xf1\xa1\x68\xc3\xc3\x43\x18\x1e\x1a\x46\x67\x47\x3b\x5a\x5b\ +\x5b\xe8\xfd\xf0\x99\xde\xef\xa3\xda\xfd\x1e\x5a\x04\xc0\xd9\xb5\ +\xf5\x44\xdf\x3b\x1d\xc6\xe7\xe5\xe7\x63\xe3\xc6\xcd\x58\xbb\x7e\ +\x03\xd6\x11\xd5\x2f\x5b\x8e\x8c\x8c\x0c\x62\xb2\x64\x21\x4c\x1f\ +\xc3\xf2\x5e\xfb\x7c\xcc\xef\xc7\x91\xc3\x87\x71\xec\xe8\x9b\xd8\ +\xbb\x77\x0f\x76\xed\xfa\x93\x38\x77\x1a\xed\x21\xa2\x2f\x13\x35\ +\x2d\x02\xe0\xf4\x5a\x36\xd1\xb7\x89\xee\x20\x72\xcf\x74\xf1\x52\ +\x62\xf2\xd5\xd7\xbc\x13\x3b\x76\xbc\x43\x1c\xc7\x99\x09\x1b\x66\ +\x9f\x26\x08\xac\x9f\x1f\x78\x7d\x3f\xfe\xf0\xfc\x73\x78\xec\xb1\ +\x47\xd1\xda\xd2\x32\x9b\x67\x99\xd4\x9e\xe5\xeb\x44\xa1\x45\x00\ +\xcc\xdc\x6e\x26\xba\x97\xa8\x20\x29\x42\xb2\x73\x70\xfd\xbb\x6f\ +\xc2\x4d\xef\xbf\x19\xb5\xb5\x4b\x1c\x99\x9b\xe2\x76\x23\x25\x85\ +\xc8\xed\x82\x4b\x26\x72\xc9\x1a\x43\x01\x99\x8f\xd9\xa7\x8b\x29\ +\xe2\x55\x51\x14\x88\x7f\xa4\xd1\x63\x7c\x1c\x53\xdf\x3b\x81\xe4\ +\xf0\xa1\x83\xf8\xe5\x2f\x1e\xc4\x23\x0f\xff\x06\x13\x13\x13\x33\ +\x3d\x57\x8b\x06\xe8\x97\x16\x01\xe0\x3c\xea\x99\xf1\xb7\x24\xbb\ +\xa8\x9c\xf4\xf8\x6d\x1f\xfd\x04\xae\xbb\xe1\x46\xa4\x79\x3c\x71\ +\xc6\xc8\xcc\x18\x59\x86\x27\x2d\x15\xe9\x9e\x34\xa4\xa5\xa6\x20\ +\x95\x18\x2f\x49\x67\xdf\x35\xb1\x58\x8c\x48\x51\x01\xa2\x20\x41\ +\x52\x8c\xf9\x47\xf1\xeb\x5f\x3d\x84\x7f\xfa\xc1\xf7\xd1\xdf\xdf\ +\x3f\xd3\xcf\xb1\x4a\xfb\xe2\xb9\x96\x06\x0b\x1d\x00\x6c\xdd\x3f\ +\xac\x45\xec\x6c\x1b\x1b\x70\x1f\xb9\xe3\x93\xb8\xf6\xfa\x77\xc3\ +\xed\x76\x1b\x46\xb9\x8c\x0c\x62\x78\x66\x46\x3a\x32\xd2\x09\x10\ +\xf2\x5b\xdc\x15\xba\x74\x60\x24\x00\x26\x89\xc3\x06\xe5\xcf\xef\ +\xfb\x99\x06\x84\xbe\x64\xbf\x72\x90\xbe\xf3\x01\xfa\x8d\xa6\x45\ +\x00\x00\x1f\xd3\x46\xbe\x6d\x78\x36\x23\x23\x13\xb7\x7f\xec\x13\ +\xb8\xf9\xbf\xdd\x46\x8c\x4f\x31\x88\x76\x17\x7c\x99\x19\xc8\xce\ +\xca\x80\xdb\xe5\x9a\x93\x1b\x57\x8c\x9d\x6f\x50\x3b\x13\x81\x80\ +\x00\xc1\xbf\xfe\xcb\x0f\x11\x0a\x39\x0e\xf4\x11\x4d\xda\x3d\x73\ +\x31\x03\xe0\x5b\x9a\x38\xb4\x6d\xdb\xae\xd8\x81\xff\xf1\x57\x77\ +\xa1\xb0\xa8\x38\x3e\xd2\x98\xf1\x79\x39\x3e\xc1\xf8\x73\x21\xde\ +\xcf\x65\x93\x65\xb3\x1d\xd2\xd8\xd0\x80\xbb\x3e\xff\x39\xec\xd9\ +\xf3\x9a\xd3\x57\x38\xd4\xfc\x79\xa2\x1f\x9e\xed\xdf\x76\x2d\x30\ +\xc6\xf3\xfd\xfe\x82\xe8\x33\x4e\xa3\xfe\x73\x77\xdf\x83\x8f\x7d\ +\xf2\x33\xf0\xd2\x31\xe3\xdb\x45\xfa\xbd\x20\xd7\x87\xd2\xa2\x7c\ +\xa1\xe7\xe7\x63\x33\xaa\x05\x35\xfe\x90\x8f\xdb\x6e\xff\x30\x3d\ +\x8f\x17\xbb\x77\xed\x42\x34\x9a\x90\x42\x90\x89\x6e\xd0\xa4\xdf\ +\x1f\x2e\x16\x09\xe0\xd2\xfc\xe3\x0f\x38\xb9\x74\x5f\xfa\xdb\x6f\ +\xa0\xb8\xb4\x5c\x3c\x14\x77\x26\x8f\xf6\xe2\x82\x5c\x52\x01\x67\ +\x87\xf3\xe0\xe4\x14\x02\x13\x41\x84\xa6\xc2\x98\x98\x9c\x44\x34\ +\x12\x15\x62\x9c\x3d\x05\x06\x95\xc7\x93\x4a\xb6\x84\x17\x1e\x32\ +\x20\xcf\x56\x20\xbb\xdd\x32\x49\x04\x39\x6e\xa4\xbe\xf9\xe6\x11\ +\x7c\xe2\xe3\x77\xa0\xa5\xb9\x39\x99\x71\xf8\x3f\x2f\x74\x00\x24\ +\x65\xfe\x8e\x6b\xdf\x85\xbf\xf8\xfc\xdd\x22\x42\xc7\x1d\xc7\xc6\ +\x5e\x79\x71\x81\x30\xf0\x4e\x9f\xd9\x21\xf4\xf6\x0d\xa2\x67\x70\ +\x18\x03\x83\x23\x18\xf6\x8f\x93\x3e\x9e\xd2\x2c\x79\x8d\x74\xd7\ +\x4f\x99\xb6\xf0\xf9\x95\xc1\xc0\x6a\xa6\x20\x3f\x07\x15\xf4\xf7\ +\x2b\x4a\x8b\xe8\x9e\x4e\x5f\xea\xb0\xd4\x62\x70\xb1\x61\xca\xff\ +\xfc\xe4\x2d\x30\x08\x5e\x79\xf9\xa5\x73\x0e\x82\x85\x02\x80\xdf\ +\x38\x31\xff\xb6\x8f\x7e\x12\x1f\xba\xfd\xa3\x71\xfd\x99\xe5\xf5\ +\xa2\xbc\xb4\xf0\xb4\x0c\xbc\x40\x30\x88\x96\xf6\x1e\xb4\x75\xf5\ +\x62\x70\x78\x34\x6e\xad\xeb\xcc\x9d\x0a\x87\x31\x49\x46\x19\x8b\ +\xe2\x49\x06\x43\xdc\x8c\x53\xa5\x00\x8f\xd8\xd4\x94\x14\x72\x29\ +\xe5\x78\x3c\x80\xff\xe3\xfb\x29\x2e\xcc\x43\x7d\x4d\x05\x96\x2d\ +\xa9\x12\xde\xc6\xac\x19\xc3\x21\x67\x92\x28\x6a\xcc\x41\x22\x77\ +\x32\x8a\x2f\xfe\xaf\xbb\x71\x1f\x79\x0b\x0e\xed\xff\x12\xdd\x73\ +\x21\x02\xe0\xff\x13\xfd\x75\xa2\xe1\xe4\xc2\x9d\x7f\xfe\x57\x78\ +\xd7\x8d\xef\x8d\xbb\x53\x85\xf9\xb9\x24\xf2\xf3\x30\x5b\x1b\xaf\ +\xb3\x67\x00\xa7\x5a\x3b\xd1\xd5\x37\x10\x67\x78\x84\x98\x3c\x34\ +\xea\xc7\x88\x7f\x0c\xfe\xf1\x71\x02\xc7\xa4\x9d\x0e\xb6\x1f\xb9\ +\x04\x3a\xaf\xc7\x23\x28\x23\x3d\x1d\x5e\x22\xbe\x37\x45\x03\x43\ +\x5d\x55\x19\xd6\xad\xaa\x47\x25\x01\x74\xb6\x2d\x95\x40\x20\xa4\ +\x81\x16\x4c\xfa\xfb\xaf\xfd\x9d\xf0\x14\x1c\xda\x5f\x9e\xae\x61\ +\x38\xdf\x01\xc0\xe9\xd2\x1f\x27\x32\x5f\xc6\xe7\xff\xe6\x2b\xb8\ +\x7c\xdb\x95\xa2\x63\xf9\x7d\x79\x49\x21\x72\xb3\xb3\x66\xc9\xf8\ +\x7e\x1c\x6f\x6a\x85\x7f\x2c\x20\x98\x13\x26\x9d\xde\x33\x30\x80\ +\xee\xfe\x01\x8c\x12\xe3\x63\xca\xf4\x08\x9f\x42\x0a\x26\xa4\x0c\ +\x04\xa5\x74\x84\x91\x86\xa8\x64\x8e\x30\xbb\x95\x30\x52\x95\x10\ +\x59\x63\x41\x78\x95\x00\x5d\x1d\x99\xbe\x4f\xba\x37\xb6\x0d\x72\ +\xb2\x7c\xf4\x9a\x21\x2c\x37\xfe\x65\x96\x0a\x6f\xdf\xb8\x16\x15\ +\x25\x45\xb3\x03\x41\x8a\x5b\xa8\x12\x1d\x04\x3f\xba\xf7\x5e\x7c\ +\xe5\xcb\x5f\x72\xf2\x0e\xde\x7d\x3a\x2e\xe2\x7c\x06\xc0\x16\xa8\ +\x95\x34\x09\x31\xfd\x4f\x7f\xf6\x2e\xbc\xe3\xba\x1b\x45\x87\x70\ +\x88\xb6\xaa\xbc\x58\xf8\xf6\x33\xb5\x91\xd1\x31\xbc\x71\xb2\x59\ +\x8c\x6e\x66\xfc\x38\x19\x76\xcd\xed\x9d\xe8\xec\xed\x43\x34\x16\ +\x53\x6d\x00\xa4\x63\x50\x2e\xc0\xb0\x94\x8f\x51\x39\x07\x53\x92\ +\xe7\xb4\x6e\x3a\x3d\x16\x40\xb6\x32\x82\x5c\x65\x08\xf9\xb1\x3e\ +\xa4\x12\x6c\x74\xbd\x9e\x97\x93\x8d\xbc\xec\x9c\xb8\x7a\x62\x1b\ +\xe1\xca\x2d\x1b\x84\xdd\x30\x53\xe3\xb0\x74\xba\x66\xe3\xcc\x20\ +\x09\x46\xe8\x9a\x8d\xb3\x0d\x16\xcd\x57\x00\x70\xe1\xc6\x41\xa8\ +\xb5\x78\xa6\x76\xcb\x47\x3e\x89\xf7\x7d\xf0\x16\xd1\x11\x1c\xa3\ +\xaf\xad\x2a\x45\x86\x37\xb9\xb1\x17\x8d\xc6\xd0\xd0\xdc\x8e\xd6\ +\xce\x1e\xc1\xf8\x20\x59\xf2\xc7\x9a\x9a\x05\xe3\x79\xb0\x87\x09\ +\x63\x3d\x72\x19\x51\x39\xc6\xe4\xec\x73\xfa\x20\x39\xb1\x41\x94\ +\xc6\x3a\x51\x14\xeb\x21\x4b\x36\x26\xee\x3b\xcf\xe7\x43\x61\x5e\ +\x9e\x50\x19\x0c\x8c\x4b\xd7\x2e\xc7\xa6\x75\x2b\x67\x8c\x46\xb2\ +\x2a\x10\x51\x4b\x0d\x04\x77\x7f\xe1\x2e\x27\x9b\x80\xfb\x6e\x2b\ +\x66\x11\x36\x9e\xaf\x00\x78\x42\x13\x65\xa6\x76\xd5\x35\xd7\xe1\ +\x53\x7f\xf9\x05\x4d\xec\x4b\xa8\xad\x2c\x43\x56\xa6\x37\xe9\x0f\ +\x8d\x07\x26\x70\xe4\xc4\x29\x4c\x90\x2e\x8f\x90\xa8\x6f\x68\x69\ +\xc3\x89\xe6\x56\x11\xa7\x0f\xd1\xf8\x6c\x75\x2d\x41\x97\x5c\x89\ +\x98\x94\x68\x34\x96\xe7\x7a\xb0\xb1\x26\x07\x2b\x4a\x33\x51\x57\ +\xe4\x45\x49\xb6\x07\x99\x1e\xb3\x40\xea\x19\x9d\x44\xef\x68\x08\ +\x8d\x7d\x01\x1c\x6c\xf5\xe3\x60\xfb\x28\x02\xa1\x44\x9b\x81\x55\ +\x45\x45\xb4\x15\x95\xb1\x16\xa1\x26\x58\x6d\x15\x93\xbf\x9f\x97\ +\xad\x02\xae\x30\x2f\x07\xef\xba\x6a\x0b\x3d\x4f\x72\x49\xc6\x86\ +\xa1\x97\x41\xa0\x19\x86\x1f\xfa\xe0\x07\x9c\xbc\x83\x59\x79\x06\ +\xf3\x11\x00\x1c\xe2\x4d\x80\x75\xdd\xb2\x15\xf8\x3f\xdf\xfc\x0e\ +\x89\x4f\x35\x9e\x5f\x5d\x5e\x32\xa3\xce\xef\x1d\x1c\x12\x23\x9f\ +\x25\xc0\x30\x19\x76\xbb\x0f\xbd\x21\x00\xc1\x23\xbe\xc5\x55\x87\ +\x4e\xb9\xca\xc4\x78\x17\x81\x6a\xdb\xb2\x3c\xbc\xff\xd2\x12\x5c\ +\xb7\xa6\x10\x35\x05\xde\xd3\xbe\xf9\x48\x54\xc1\xbe\x96\x11\xfc\ +\xfe\x70\x1f\x1e\xde\xdb\x8d\xe6\x81\x89\x04\x20\x54\x46\x9b\x51\ +\x45\x40\x60\x89\x90\x4e\x06\x63\x45\x71\xb1\xf0\x22\x98\xae\xdd\ +\xbe\x09\x55\x65\xc5\x49\xff\x06\xc7\x1d\x74\x10\xb0\x8b\x78\xed\ +\x35\x57\x3b\xc5\x09\xae\xc2\x0c\x59\xc4\xf9\x06\x00\x7e\x72\xae\ +\xa4\xcd\x31\x9e\xcc\x24\x23\xea\xeb\xdf\xfe\x67\xe4\x17\x14\x0a\ +\xe6\x97\x14\xe5\xa3\xa4\x30\x3f\xe9\x0f\xb1\x4b\xd7\xd9\xdd\x27\ +\x0c\xba\x93\x34\xe2\x0f\x1e\x3b\x29\xc4\x7f\x9f\x54\x8c\x93\xee\ +\x55\xa4\xdb\xd3\xe2\xd7\x16\x64\xa5\xe2\xbf\x5f\x51\x85\x5b\xb6\ +\x94\xa3\xd8\x97\x76\x4e\x1f\xe8\x40\xdb\x28\x7e\xf2\x4a\x1b\x1e\ +\x3f\xd0\x8b\xa9\x48\x6c\xda\x56\x20\x83\x71\x45\xe4\x0d\xb2\x15\ +\x86\x85\xb1\x58\x46\x20\xc8\xce\xcc\x14\xcf\xb7\x6d\xd3\x3a\xac\ +\xaa\xaf\x4d\xfa\xbb\x1c\xe3\xf0\x68\x86\x21\x07\x8b\xae\xbf\xee\ +\x9d\x76\xf9\x83\x16\xa8\xd5\xcd\xa1\x85\x12\x0a\x66\x8b\x7f\x63\ +\x82\xd1\xf7\xb9\xbb\x51\x57\xbf\x5c\x24\x4e\x58\x44\x56\xce\x30\ +\x42\xda\x89\xf9\xdd\xfd\x83\x82\xe1\xaf\xd1\xa8\x3f\xd6\xd4\x42\ +\x42\xd7\x85\xa3\xae\x75\x68\x76\xd7\xc7\x2d\xf9\xfc\xcc\x54\xdc\ +\x75\xdd\x12\xfc\xbf\x0f\xad\x12\xa2\xde\xed\x92\x10\x22\x26\x9d\ +\x4b\xca\xcd\x48\xc1\x3b\x56\x16\xe0\x03\x9b\xca\x30\x39\x15\xc3\ +\xb1\xee\x31\x61\x77\x44\xa4\x54\xf4\xb8\x2a\xc4\x7d\xb1\x9d\x30\ +\x46\x2e\x27\xdf\x2f\xbb\x8f\x6d\x9d\xbd\xc2\xf2\x2f\x2a\xc8\x75\ +\x7c\xc6\x70\x38\x4c\x36\x01\xc7\x09\x24\x14\x15\x15\x8b\x20\xd8\ +\x4b\x2f\xbe\x98\x60\x82\x68\xaf\x3b\x17\x82\x04\x78\xbb\x66\xf5\ +\x9b\x4f\x5e\x79\x35\xee\xfc\x8b\xbb\xc4\xc8\x60\x11\xb9\xa2\xae\ +\x3a\x69\x68\xb7\x83\x5c\xbc\xbe\x81\x21\x11\xbc\x79\x71\xf7\x7e\ +\x72\xef\x06\x11\x40\x06\x8e\xa4\x5c\x42\xee\x5c\xa6\x8a\x7a\x7a\ +\xea\x5b\xb7\x56\xe0\xce\x2b\xab\xe0\x4d\x75\xbd\x75\xbd\xa2\x24\ +\x9e\x6a\xee\x9f\xc0\xb7\x9e\x6c\xc0\xc1\xb6\xe9\x12\x31\x5f\x6c\ +\x04\x6b\x23\xaf\x93\x93\x39\x25\xa4\x40\x79\xb1\x9a\xc4\xda\x7a\ +\xc9\x6a\xac\x5d\x51\x97\x34\x62\x98\x4b\x1e\x84\xac\x45\x0c\xdf\ +\x73\xe3\xf5\x76\x09\x24\xae\x2c\x5a\x03\x87\xf2\xb2\xf9\x04\x80\ +\xbd\xd6\xd1\x9f\x99\x99\x85\x6f\x7c\xf7\x5e\x64\xf9\xb2\x85\xd5\ +\xbb\xb4\xa6\x22\xa9\x91\xd4\xd3\x37\x88\xfe\xa1\x61\x4c\x4d\x45\ +\xf0\xec\xab\xbb\xd1\x3f\x38\x4c\x3e\x51\x0e\x0e\xbb\x2f\x15\x23\ +\x4e\xb8\x5e\x64\xd8\x7d\xe9\x3d\xf5\x58\x5a\x9c\xe9\xfc\xf4\xd2\ +\x99\x76\x93\x32\x23\x00\xf4\xf6\xe8\xbe\x6e\xfc\x07\xa9\x86\xc9\ +\xb0\xaa\x16\x3c\x4a\x10\xeb\xc3\xfb\x08\xaa\x01\xf8\x32\x32\x50\ +\x51\x52\x22\x40\x70\xf9\x65\x6b\xb1\xb2\xbe\xc6\xd9\xed\x24\x35\ +\xe0\xd3\x32\x9c\x9c\x45\x7c\xc7\x8e\x2b\xed\x54\x01\x87\xd1\x6f\ +\x9d\xcf\x2a\xe0\xbd\x44\x77\x25\xb8\x7c\x1f\xfb\x14\xea\x97\xaf\ +\x52\xc5\x75\x6e\x36\x59\xca\xb9\x8e\xc5\xd5\xec\xdb\x33\xc3\xb9\ +\x1c\xeb\xd9\x3f\xee\x46\x1f\x19\x80\xcc\xfc\x43\xee\x8d\x24\xf2\ +\xd5\x24\x0d\x1b\x78\xf7\xbc\xbb\x1e\x39\x24\xfa\xa7\xc8\x30\x64\ +\x9d\xac\x92\x42\xef\x0d\x14\xb1\x92\x76\x5d\xd4\x81\x8c\xbf\x63\ +\xa4\x84\xdf\x9c\xbe\x76\x49\x51\x06\x36\xd6\xe6\x08\x49\xc0\x5e\ +\x43\x84\xee\xb1\x5f\x2e\x41\x7e\xac\x1f\x4a\x38\x20\x24\x98\x8f\ +\xa4\x01\x4b\xb4\x82\xbc\x6c\x01\x0a\xbb\xe7\xe6\x20\x16\xbb\x87\ +\x1c\x0f\xe1\x2c\x62\x88\x5c\xdc\xdd\xbb\x77\x59\xbb\x92\x25\x00\ +\x57\x1c\xf7\xce\x57\x09\xc0\x13\x35\x36\x18\x4f\x54\x54\xd5\xe0\ +\x7f\x7f\xe3\x1f\x45\xd0\x84\x83\x20\x6c\x14\x39\xc5\xf7\x27\xa7\ +\xa6\x84\xde\xe7\xf2\xab\x17\x76\xef\x45\x53\x6b\x87\x81\xf9\x6e\ +\xf1\x94\x37\x5d\x52\x8a\x3f\xbb\xac\xc4\xf2\xc4\x92\xf9\xbd\x34\ +\x5b\x19\x29\x39\x0f\x71\x65\x16\xaa\xc0\x10\x69\x1c\x0b\x46\xf0\ +\xfd\xe7\x9b\xd1\xd8\x33\x2e\xae\xe3\xa8\xe2\x25\xe1\x3d\x42\x12\ +\x14\xe4\xe6\x0a\x57\x91\xed\x81\x9b\xae\xdd\x8e\xac\x0c\xaf\x43\ +\x08\x5a\x16\x6e\x24\xc7\x11\xb8\xa8\x64\xeb\xe6\x4d\x76\x95\x45\ +\x0c\x80\xf7\xcf\x47\x09\x70\xa3\xdd\xe8\xbf\xed\xe3\x9f\x41\x59\ +\x45\xa5\x30\xfc\x38\xcc\xcb\xc1\x1e\xbb\xc1\xcf\x11\x3c\x16\xfd\ +\x6c\xed\x1f\x3e\xde\x40\x3e\x7f\x23\x02\x52\x06\x0e\xa4\x6c\x45\ +\x94\x5c\x46\x2e\xfa\x7b\xff\x65\x65\xb8\x66\x75\xe1\xf4\x48\x8c\ +\x8f\xcc\x58\xe2\x28\x8d\xda\x8c\x5c\x72\xeb\x13\xce\xdb\x51\x24\ +\xe6\xf0\x7d\x87\x6b\x22\x6a\xa1\xe0\x86\x2a\x1f\x1a\xfb\x83\x18\ +\x09\x86\x05\x60\x07\xe5\x42\x14\x45\xbb\x31\x35\x19\x20\xbf\x3f\ +\x55\x8c\xf0\x5e\xb2\x6b\xea\x6a\x2a\x04\xf8\xac\x7d\xc0\xc0\x87\ +\xb0\x91\xdc\x48\xa5\xeb\x39\x1b\xba\x73\xe7\x0b\xd6\x2e\x5d\xa1\ +\xa9\x82\xc1\xf9\x06\x80\x1f\x10\x2d\xb5\x8e\xfe\x0f\x7e\xf8\x13\ +\xf1\xc0\x47\x55\x79\x89\xe3\x97\x87\x47\xc7\x10\x22\x09\xd0\x4b\ +\xc6\xde\xf3\x7f\xda\x23\x7c\xfc\x03\x69\x5b\x30\xe5\xf2\x70\xd2\ +\x00\x37\xac\x2f\xc6\xe5\x4b\xf3\x30\x15\xd3\x3a\x3d\x66\x61\xa8\ +\xf1\xbc\x7e\xcc\x9f\xc7\xac\xe7\x66\x41\x09\xdf\x89\x25\xfe\x86\ +\xe9\x58\x05\x03\x5b\x01\x6b\xca\x7d\x38\x35\x38\x81\x51\x92\x08\ +\xac\x0e\x46\xe5\x3c\x94\x44\x3b\x11\xa0\x11\x9d\x9d\x95\x25\xec\ +\x1a\x6e\x25\x85\x79\x0e\x5e\x41\x24\x1e\x25\x5c\xb3\x66\x2d\x1e\ +\x7c\xe0\x7e\xbb\x8a\x63\x76\x7f\x9e\x9c\x4f\x00\x58\xae\x45\xac\ +\x12\x74\x7f\x49\x99\x1a\x05\xe6\x84\x89\xd7\x21\x8d\xca\x05\x1a\ +\x9c\xb1\x0b\x47\x22\x78\xec\xb9\x97\xc4\xfb\x37\x53\x37\xc0\xef\ +\xce\x13\xa6\xfe\xe6\x25\xb9\x78\x7b\x7d\x5e\x22\xa3\xad\x0c\x37\ +\x82\xc2\x8e\x61\xa7\x43\x4e\x60\x88\xc5\x12\xef\xc1\x20\x81\x78\ +\x10\xaf\x2c\xcd\xc2\xf1\xbe\x00\x82\xa4\xd7\x43\x72\x3a\xa2\xc4\ +\x9e\xbc\xe8\x00\x82\x64\xd4\xe5\xfa\x7c\x64\xd7\x0c\xa3\xba\xbc\ +\x58\x48\x85\x04\x2d\xa3\x95\x1d\xa7\x09\x09\xe0\x12\x52\xc3\x41\ +\x0a\xf0\x80\x0b\xcf\x17\x00\x70\x9a\x77\x9b\xf1\x44\x5e\x7e\x21\ +\x3e\xf4\x91\x3b\x45\xa9\x36\x3f\x4c\x65\x79\x71\x5c\x8d\x9a\x88\ +\x1e\x78\xd4\x3f\x2e\x44\xff\xee\x83\x47\xd0\xd2\xd9\x8d\x2e\x77\ +\x39\xda\xd2\x96\x0a\xb1\x5f\x91\xef\xc5\x35\xab\x0a\x11\x56\x8c\ +\xa3\x19\x89\x0c\xd3\x3f\x57\x0c\xd7\x28\x0e\xcc\x55\x92\x30\xdd\ +\xf1\xbc\x95\xf1\x36\x40\xd0\x24\x01\x07\x90\xab\xf3\xd2\x71\xac\ +\x37\x80\x28\xfd\x2d\xbf\x2b\x17\x39\xd1\x41\xb8\xc3\x63\xc2\xfe\ +\xe1\x64\xd0\xc8\xd8\x38\x6a\xab\xca\x6c\xd5\x21\x4b\x81\x4c\x21\ +\x05\x64\xd4\xd7\xd7\xe3\x3f\x7e\xf2\x63\x11\x2f\x30\x26\x16\x89\ +\x4e\x69\x36\xd7\xbc\x00\x00\x87\x7c\x4d\xa9\xb0\x6b\x6e\x7c\x1f\ +\x96\x6a\x96\x3f\xd7\xf1\x89\x22\x0a\xb5\xe4\xc6\x44\x3c\xda\x43\ +\xf4\x70\x1c\xe2\x7d\xfa\xe5\xdd\x98\x22\xb1\x79\xd8\xbb\x19\x31\ +\xd9\x85\xb4\x34\x17\x6e\x58\x5b\x24\xc4\x21\x7b\x59\x61\x4e\xf9\ +\x52\x67\x33\x18\xd4\x57\x65\xfa\x9c\xf1\x73\xeb\x35\x31\x1b\xb2\ +\x9e\x8f\x3a\x5c\x17\xb5\x39\x8e\x3a\x5c\x63\x78\xe5\x70\xb4\x2f\ +\xdd\x8d\xe6\xa1\xa0\xd0\xf7\xa3\x04\x82\xb2\x70\x1b\x82\x93\x41\ +\x91\x44\x9a\x08\x86\x50\x94\x9f\x63\xdb\x2f\x3c\x28\xb8\x4e\x82\ +\x6b\x08\x78\xee\x43\x57\x67\x27\x0e\x1f\x4a\x98\x66\xc8\x3a\xe4\ +\xa7\x46\x9d\x30\x97\x81\x1f\x53\xb6\x8f\x13\x24\x9b\x2f\xbf\x52\ +\x7b\x10\x09\x39\xd9\x3e\x31\x12\x6c\x2d\xff\x50\x58\x20\xfd\x8f\ +\xfb\x0f\x89\xeb\x9b\x3c\x2b\x11\x71\xa5\x8a\xd1\xbf\xa9\x26\x17\ +\x0a\x31\x3f\xc0\xa1\x57\xc9\x60\xed\xeb\x95\x22\x92\xd1\xba\x37\ +\x78\x02\x92\x8d\x67\x90\xe0\x0d\x48\xf6\x26\xbe\xa3\xf5\xaf\x4c\ +\x7f\xa6\x18\x3e\x50\x0c\xef\x15\xc5\x74\x6d\x71\xb6\x47\x48\xb0\ +\x0e\x02\x41\x50\xca\x24\xa9\xb6\x04\xb5\xa1\x46\xf4\x0f\x0d\x91\ +\x0d\x50\x88\x83\x6f\x36\xe0\x9a\x2b\x36\xdb\xf6\x8b\x3f\x30\x11\ +\x2f\x85\xbb\xf5\xb6\xdb\x71\xff\xcf\xef\xb3\x5e\xc2\x12\x97\xd7\ +\x27\xe8\x9c\x6b\x00\xbc\x2f\x21\xe1\x43\x23\x3f\xcb\x97\x23\x18\ +\x9a\xed\xcb\x12\x80\xb0\xe3\x3f\x57\xe8\x30\x2f\x07\x86\x86\x85\ +\xcb\x37\x21\x7b\xd1\xe3\xa9\x14\xcc\xe7\x58\x7e\x81\x2f\x15\x13\ +\x3a\xf3\x05\xd3\x15\x0b\x00\x8c\x4c\x57\x2c\x20\x50\xec\x5d\x44\ +\x58\x3f\x9f\xc9\xf5\xb3\x01\x86\x62\x05\x83\x0e\x04\x25\x01\x0c\ +\x6b\xca\xb3\xd0\x33\x16\x42\x84\x9e\xa3\xdd\xb3\x14\x15\x53\x2d\ +\x18\xf2\xfb\x51\x90\x97\x87\xc1\x11\x3f\x7a\xfb\x87\x50\x54\x90\ +\x68\x10\x4e\x91\x1a\xe0\xb2\x35\xce\x13\xf0\x24\xd7\xea\x9a\x1a\ +\xbb\xb9\x88\x9c\x69\xfd\xd1\x5c\xab\x00\x36\x46\x4c\xf3\xf8\xae\ +\xb9\xe1\xbd\xa8\xa8\xae\x15\x9d\x5f\x5e\x52\x20\x44\x99\x5d\xf4\ +\x23\x12\x56\xab\x72\x5f\x20\xab\x7f\x60\x78\x04\x0d\xde\xd5\x18\ +\x4f\xcd\x15\x76\xc3\x86\xaa\x6c\x21\x19\x22\x5c\xde\xc5\x31\x77\ +\xf1\x6a\x3c\xb6\x9e\x33\xbe\x37\x9c\x83\xf5\x1a\xb5\xdc\xc6\xf4\ +\x5e\xa7\x18\x12\x7f\x2b\x66\xfc\x8c\xdf\x2b\x89\xef\xe3\xc7\xd0\ +\xde\x4f\x1f\xab\x60\x95\x30\x34\x11\x16\x6a\x4d\x56\xa2\xc8\x0d\ +\x0f\xc6\xeb\x1e\x23\x64\xf8\x56\x94\x15\xd9\x47\xc5\xa8\x79\x3d\ +\x6a\x52\x6b\x70\x60\x00\xaf\xbd\xb6\xdb\xce\x1b\x78\x70\x2e\x25\ +\x40\x35\x6c\xd6\xe0\x59\xb5\xf6\x52\x31\xfa\x39\xb0\x91\x41\x62\ +\x4c\xb1\x19\xfe\xfa\x29\xce\xef\x1f\x3f\xd5\x8a\x49\xd9\x83\x5e\ +\x6d\xf4\x17\xd2\xe8\x67\xa9\x11\x8c\xc6\xb4\x51\xae\x4c\x8f\x76\ +\xc9\x22\xfa\x25\xbb\xd1\x6f\x90\x16\xb3\x09\x0e\x25\x13\xfb\xb0\ +\x88\xf8\x84\x51\x6f\x91\x0a\x16\x35\xc0\xbe\x61\x71\x76\x1a\x5a\ +\x46\x82\x64\xc8\xc5\xd0\x91\x5e\x87\xea\x60\x23\xd9\x3c\xa3\x64\ +\x03\xe4\xa3\xab\x6f\x10\x41\xb2\x07\x38\x35\x6c\x6d\x5c\xc7\x98\ +\x9f\x93\x2d\x7e\xeb\x1d\xd7\x5c\x8b\x1f\x7c\xff\x7b\x76\x6a\x80\ +\x07\x7f\x74\xae\x00\xb0\xcd\x7a\xa2\xb4\xa2\x0a\x99\xbe\x6c\xc1\ +\x74\xb5\xc8\x43\xb2\x15\xff\x62\xd6\x2d\x31\xfb\xcd\x86\x26\x71\ +\x6d\x57\x7a\x35\x14\x02\x0c\x33\x6f\x70\x32\x82\xc3\xbd\xe3\xa2\ +\x68\x23\xd3\xe3\x42\x46\x5a\x0a\xf8\x23\x33\x00\x0c\x4c\x97\x2c\ +\x0c\xd5\xcf\x29\x06\x15\xa0\xdf\x84\x34\x8b\x18\xbf\xe2\x04\x02\ +\xc5\x86\xe1\x16\x30\x58\x81\xa0\x19\x76\xc5\x3e\x0f\x3a\x86\x83\ +\x22\x97\xd1\x97\x56\x8e\xd2\x50\x3b\xc6\x03\x01\x11\x26\xe6\x94\ +\x77\x7d\x6d\xa5\x8d\x8a\x8c\x89\x52\x76\xae\x23\xbc\xe4\xd2\xcb\ +\x48\xad\xfa\xac\xeb\x13\x64\x6a\x79\x97\xd7\xe6\x0a\x00\x5b\x13\ +\xf4\xff\xb2\x95\xda\x88\x57\x0b\x29\x63\xb1\x98\x63\xd8\x53\x21\ +\x00\xbc\x71\x52\x4d\x6e\xf5\x78\xab\xc5\xe8\x67\x62\x37\x6a\x24\ +\x14\xc1\x08\xa9\x08\x8c\xf3\xb9\x20\xd2\x53\x19\x08\x6e\x91\xf5\ +\xe3\xe3\x34\xb7\x6c\x60\xb6\x26\x25\x14\xed\x58\x51\xcc\x76\x83\ +\x62\x33\xda\xa5\x99\xc2\xbc\x4e\x3a\xdf\x00\x08\xeb\x68\x4f\x02\ +\x00\x9f\x37\x05\x92\x7f\x12\x0a\x75\x47\x37\x3d\x2b\x03\x60\x64\ +\xcc\x2f\x82\x43\x5d\x3d\xfd\xa8\xab\xb6\x5f\x6f\x8a\xa5\x40\x2a\ +\x0d\x00\xb2\x86\xf1\xb6\xb7\x5d\x8e\x67\x9f\x79\xda\x6e\x10\xce\ +\x1f\x00\x54\xd7\x2d\x8b\x8b\x7c\x76\x71\x38\xa9\x93\x20\x79\x65\ +\xb5\x02\x78\x88\x8d\xa0\x81\x21\x8c\xa6\xe4\x62\x32\x25\x43\x65\ +\x8a\x98\xe7\x2d\xa9\x93\xa6\x24\x49\x7b\x0f\x52\x07\x0a\x89\x4a\ +\xd2\xde\x04\x0c\x3e\xef\x72\x49\x48\xe7\x02\xcb\x14\x19\x9e\x14\ +\x17\x91\xac\x4d\xc9\x32\x72\x58\x99\x7d\xca\x44\xb1\xbc\x51\x1c\ +\xbc\x00\xc5\x01\x04\x33\xbd\x8a\xfe\x70\x63\x9c\xa4\xdb\x88\xa7\ +\x10\x21\x39\x4d\x54\x35\x71\x5f\x0d\xfb\xc7\x30\x35\x15\x16\x41\ +\x1f\x6b\xe3\x09\x2e\x39\x8a\x9a\xf1\xdc\xb4\x69\xb3\x1d\x00\xb6\ +\xce\xa5\x0d\xb0\xc6\x7a\xa2\xa2\xb2\x56\x3c\x94\x88\x62\xa5\xa4\ +\x98\x4a\xb3\xf5\x96\xc2\xc6\x10\x31\xab\xa9\xad\x43\x35\x70\xd2\ +\x8a\xb5\xd1\x6f\x64\xba\xe1\xbd\xe9\x58\x7d\x25\xff\x01\xe3\x91\ +\x28\xc6\xd9\x4e\xe0\xda\x3d\xfa\x4e\x1a\x49\x95\x34\x02\x02\x4b\ +\x87\x54\x02\x08\x17\x86\x24\xc8\x7c\xdd\x45\x54\x1c\x50\xa0\xd8\ +\xa9\x02\x0b\xc3\x67\xcb\xfc\x98\x62\x3a\xe7\x49\x25\x00\x4c\xa9\ +\x75\x86\x43\xf4\xcc\xa5\xc1\x36\xb2\x81\x82\xc8\x24\x63\xb0\x7f\ +\x68\xc4\xb6\x3a\x8a\xa3\x87\xfa\x80\x5a\xb9\x6a\xb5\xdd\x4d\xaf\ +\x98\x2b\x00\x70\x85\x83\x29\xb6\xeb\x49\x4f\x47\x4e\x7e\x81\x78\ +\x5e\x5e\xa4\x41\x71\xf0\xfd\xdd\x34\xfa\x19\x00\xad\x1d\x5d\x2a\ +\x00\xbc\x25\xc9\x01\x20\x1b\xfc\x7f\xe3\x71\x9c\xd4\xf7\xd4\x55\ +\xa2\x7a\x07\x9a\xeb\xc8\x31\x88\x54\x06\x85\x5b\x22\xd0\x49\xe2\ +\xef\x4a\xc9\x04\x81\x92\xe4\xa4\x62\xb1\x0d\x66\x3b\xf2\x0d\xc7\ +\x6e\x02\x27\xe7\x35\xf8\xcd\x30\x49\x01\x06\x00\xcf\x66\xe2\xb9\ +\x06\x3c\x93\xa9\xd8\xc6\x1d\x8c\x72\x84\x91\xa4\x03\x7b\x52\x6b\ +\xd7\xad\x73\x02\x80\x6b\x2e\x00\xb0\xd4\x7a\xa2\xa0\xa8\x34\xce\ +\x74\x0e\xff\x3a\x02\x80\xa4\x03\xf3\xad\xb3\xb7\x9f\x0b\xac\x11\ +\x48\xcb\x99\x06\x40\x9c\xf9\x66\x10\xd4\xe5\xa5\x63\x5b\xa5\xcf\ +\xcc\x7c\xa3\x0d\x60\x17\x00\xb2\x49\x19\xab\x40\x50\x69\xd6\x45\ +\x20\xc9\xbc\x00\x13\x38\xcc\xcc\x7f\xe8\xcd\xfe\x04\xc0\xf0\xa4\ +\xd1\x08\x49\xad\xd1\x74\xf2\x9c\x87\xd5\xe9\x6c\x7c\xfb\xfe\xf1\ +\x80\x63\x7f\x85\xc2\x11\x21\x4d\xd9\x08\xcc\xcd\xcd\xb5\xae\x5e\ +\xc6\xbc\xaf\x99\x0b\x00\x24\xd4\xfa\xe7\x17\x16\xc7\x1f\x82\x73\ +\xff\x31\x3b\xfd\xcf\x93\x3e\x5d\x2e\x21\xda\xd8\x06\x08\xa4\x64\ +\x23\xa6\xa5\x7b\x13\x46\xbd\x61\xb4\x6f\xab\xf2\xe1\x67\x37\xd6\ +\x63\x21\xb5\x07\x18\x00\x16\x8f\x42\x76\x4b\xc2\xa0\x0b\xa6\x66\ +\x21\x2c\xa7\x88\x7e\xe0\x32\xb0\x40\x60\xd2\xb6\xbf\x44\x50\x88\ +\x24\x80\x22\x12\x69\x12\xaa\xab\x6b\xec\x96\xaf\xab\x90\xe7\x03\ +\x00\x7c\x39\xb9\xf1\xb9\x79\x6c\xd0\x98\x67\xde\x2a\xf1\xd0\x30\ +\x1b\x81\x3c\x6f\x4f\xc4\x01\x52\x7d\xd3\xcc\xd6\xc9\x65\x7d\xaf\ +\x8b\xce\x85\xd5\xc2\x56\x52\x60\x7a\xae\x89\x94\x2c\x11\x0d\x8d\ +\x91\x6b\xc0\x99\x50\x4e\x02\xd9\xf5\x99\xf1\x7c\x79\x45\xa5\xdd\ +\x9f\xaa\x99\x8b\xde\x49\x58\xc5\x8b\x17\x73\xd0\xa7\x58\xbb\xd9\ +\xcd\xb3\x79\x18\x76\xff\x58\xff\x73\xe9\x97\x30\x72\x52\x32\x13\ +\x01\x60\x62\xbe\x6b\x5a\x12\x2c\xb0\x16\xa1\x9b\x8e\x48\x5a\xe4\ +\x91\x89\x27\x98\x1a\xa4\x9b\xf0\x7c\xa0\xce\x5a\x66\xc9\xa8\x1b\ +\x7c\x09\x00\x88\x4c\x03\x20\x37\xcf\xb6\xc2\x38\x67\x2e\x54\x40\ +\xa6\xf5\x44\xba\x37\x33\x1e\x03\xe0\x07\x62\x64\x5b\x9b\xac\x4d\ +\xff\xe6\x00\x87\xd0\x6f\x29\x1e\x33\xc3\x75\x57\x50\x96\x13\x8d\ +\xbe\x05\xd6\xa2\xd6\xc0\x14\x0c\x12\x80\x19\xef\x56\x93\x3d\x1c\ +\x2b\x11\x8b\x4c\x85\xa7\xa8\xcf\x12\xe7\x33\xa8\x00\x50\x55\x48\ +\x6e\x6e\xde\xbc\x01\x80\x6d\x74\xcf\x68\xc8\xd8\x19\x35\x5c\x02\ +\xcd\x31\x80\x61\x4d\x02\x44\x49\x0f\x26\x02\x40\x36\xbc\x37\x18\ +\x87\x0b\x12\x00\xd6\x68\xa5\x12\x7f\x16\x91\xf5\xd4\x18\x2c\x52\ +\xde\x9c\x1b\x71\x08\x9b\x8b\xb5\x0c\x14\xe7\x3e\x98\x0b\x00\xd4\ +\x24\xa8\x00\x96\x00\xd0\xad\x5d\x97\xed\xc3\x88\xf9\x80\xda\xb2\ +\x29\xa6\x11\x61\x02\x81\xcd\xf1\x02\x54\x01\x1c\xe9\x14\xb1\x00\ +\x01\x6a\x1e\xea\x06\x40\x5b\xbc\x14\xee\x17\x5e\xd3\xc0\xae\xcf\ +\x58\x45\x28\x5a\x74\xd3\xe5\x50\x50\x3b\x2f\x24\x80\xa4\xa7\x7d\ +\x09\xe5\x4e\x16\xad\xfe\xb0\x92\x51\x3c\xc6\x99\x2f\x27\x7a\x01\ +\x46\x10\x2c\xb4\x66\xbc\xe7\x78\x77\xc8\x6a\x86\xc8\x06\x00\xdc\ +\x79\x76\xfd\xa6\xc4\xa6\x25\xab\xa3\x67\x3d\x07\x8f\xd7\x61\x3d\ +\xc1\x2b\x66\xea\x36\x00\x5b\xae\x76\x33\x7f\x84\x21\x2c\x4b\xe6\ +\x9c\x7e\x9c\xf9\x36\xb1\x00\x59\x32\xe7\xfd\x17\x22\x00\xa4\x69\ +\x9e\x9b\x40\xa0\xf5\x81\x2e\x0f\xf5\x55\x48\x6c\xf3\x26\x9a\x0d\ +\x10\x89\x46\x6c\xed\xcd\xb9\x00\x40\xc4\x4e\x59\xe9\x0f\x10\x8d\ +\x45\xe1\x52\x64\x5b\x83\x86\xf3\xfc\xb9\xbe\x2c\xad\x2b\x62\x66\ +\x9d\x6f\x07\x00\x1d\x20\x0b\x15\x00\xb6\xa3\x56\xa6\xfe\x51\xbb\ +\x50\x4c\x0e\xd5\xd6\x35\xb6\xb5\x01\xe2\xb6\x95\xe4\x2c\x02\xe6\ +\xe0\xf1\x26\x13\x4e\x4c\x4e\xc4\x1f\x80\xf5\x99\xdb\x46\x30\xb1\ +\xc5\xcb\x12\x40\xaf\x10\x4e\x8b\x4e\x1a\x18\x0f\x7b\x3b\x40\x5e\ +\xc0\x12\xc0\x34\xfa\x15\x93\xdc\x4f\x89\x4c\x6a\x23\xdc\x15\x5f\ +\x2b\x21\xe6\x60\x37\xe9\xfd\xea\xb7\x5f\xae\x7e\x7c\x2e\x00\xd0\ +\x63\x3d\x31\x21\x66\xc6\xaa\x0f\xca\x16\x6d\x5a\x6a\xe2\xc3\x84\ +\x42\xaa\xcf\xcb\x33\x60\x04\xfa\xa7\xc6\xcc\x8c\x4f\x66\x0c\x2e\ +\x44\x00\x28\x76\x4a\x50\x15\xfc\xe9\x53\xe3\x9a\x04\x98\x5e\x16\ +\xcf\xde\x73\x9a\x36\xa8\x87\x86\x86\xec\xfe\xd2\xc0\xbc\x00\x80\ +\x7f\x74\x38\x2e\xaa\x78\x92\x87\xdd\x3c\x00\x9e\xfe\xc5\x48\xd7\ +\x13\x1f\x19\x93\x7e\x43\xc6\x4f\x72\x96\x00\x32\x2e\x10\x00\x4c\ +\x03\xc1\x1b\xf2\x8b\xd1\x2f\x96\xa6\xd3\x52\xe4\x76\x46\x20\x57\ +\x18\xeb\x00\xe8\xea\xec\xb0\xb5\xc7\xe6\x85\x11\x38\x3c\xd0\x1f\ +\xbf\xd1\x49\x6d\x51\xc6\x04\x1b\x80\x8c\x43\xae\x74\xe1\x29\x62\ +\x39\x64\x07\x44\xc6\x47\xd5\x1a\x0e\x59\x32\x67\xf8\x2c\xd2\xa0\ +\x27\x14\xc5\xce\xde\x80\xa5\xec\xcb\xe2\x4e\x59\x53\x7d\xb3\x9e\ +\x35\x8c\x24\xba\x1a\xb3\xa8\x15\x80\x7d\xf1\x28\x87\xb4\xed\xeb\ +\x61\x90\x1a\x0a\x20\x35\x12\x42\x46\x66\x86\x78\x94\x64\xc9\x33\ +\x4e\x04\xe9\x9f\xb5\xb5\xb6\xce\x1b\x00\x34\x5a\x4f\x0c\xf6\xf7\ +\xc4\xe3\x00\x4e\x00\x10\x0a\x6b\x22\x48\xcc\xcf\x44\x4d\x45\x29\ +\x46\x8e\x9e\x24\x29\x30\x8c\xf1\xac\x82\xa4\x21\xe1\x67\x7a\x02\ +\x78\xa6\x6f\x62\x86\x94\xb1\x31\x55\x0c\x4b\x1d\xa1\x64\x0f\x12\ +\x38\x30\x77\xc6\x54\xaf\xa2\x32\x57\xdd\x5d\x62\x3a\xf7\xcf\xe7\ +\xf4\xf7\x56\xd7\x55\x99\x8e\x0a\x66\x07\x06\xc4\x29\x9f\xb6\x9a\ +\x48\xba\x27\x09\x00\x84\x6a\x20\x15\x3b\x11\xc0\xe0\xe0\x80\xdd\ +\x25\x2d\xf2\x1c\x01\xc0\xe4\x09\x04\xe9\x06\x03\x6c\x07\xd0\x3f\ +\x9e\xf8\xc0\x06\x8d\x1d\xf9\xc7\x27\xc4\x6a\x9c\x2b\x96\x54\x8b\ +\xef\xe5\x8d\x76\x26\xcf\x07\x58\x3d\x04\x53\xd2\x48\x36\x27\x8f\ +\x5c\x76\x24\x27\x5e\x6f\x47\xc6\xdf\x72\x25\x21\xdb\x9c\x85\x83\ +\x0d\xe3\x20\xd5\x72\xfd\x6a\x2d\x04\x4b\x41\x15\x00\x69\xb6\x7d\ +\xc5\xff\x38\xb3\xca\xe0\x68\x38\x79\xc2\x8e\x0f\xbc\x14\x4f\x68\ +\x2e\x00\xc0\xa5\x2d\x6f\x58\x4f\xb6\x37\x37\x6a\x09\x8c\xb0\x98\ +\xce\x64\x97\xdc\xe0\xa9\x60\xfc\xd0\x6b\x97\xab\x25\x05\xf9\x23\ +\x9d\xb6\x62\xdf\x39\x41\x34\x9b\xf3\xb2\xf9\x75\x26\x06\xcb\x06\ +\xb0\xb8\x0c\xbf\x61\x04\x90\xd3\x6f\x9d\x01\xe5\x0f\x77\x8a\x88\ +\x68\x5e\xb6\x4f\xbc\xb2\x2b\x68\xd7\x57\xea\xfc\x41\x15\x08\xbc\ +\x45\x8d\x03\x00\xe6\xcc\x44\xda\x67\x3d\xd1\xd5\xde\x1c\xdf\x5e\ +\x85\x45\xbd\x2d\x00\xc6\xc6\x45\x1a\xb4\xac\xb8\x10\x45\xf9\xb9\ +\xc8\x1e\xed\x85\x9b\xdd\x41\xc9\x1a\x19\x4c\x32\xfa\x9d\xa4\x80\ +\x4b\x76\x96\x02\x09\xa3\x5d\x9e\x4e\x35\x9b\x80\x20\x27\x8e\xf6\ +\xd3\x1d\xfd\x4e\xc4\xf3\x01\xc6\x07\x90\x1e\x1a\x17\x93\x66\xb8\ +\x36\x22\x2d\x2d\x45\x9b\x3c\x93\xd8\x57\x2a\x30\xd4\xbc\xca\x11\ +\x7b\x00\xec\x9b\x4b\x00\x24\xcc\x54\x68\x3f\x75\x32\x3e\xd7\x7d\ +\x3c\x10\x14\xaf\x76\xd4\x3f\x3c\x22\x2c\xdf\xb7\x5d\xba\x16\xbc\ +\x34\x73\x69\x6f\x83\xa5\x08\x04\x86\xd8\x00\x66\x27\x11\xec\xea\ +\x08\x5c\x86\x91\xeb\xd6\xce\x71\x45\xb1\xdb\xc0\x54\x3e\x76\x6b\ +\x60\x70\x5b\x01\x63\xa3\x62\x92\x32\xdd\xc9\xa5\x9d\x7e\xa6\x92\ +\xde\x93\xa2\xaf\x4a\x0b\x0b\x84\x24\xe4\x35\x89\x9d\xfa\x49\x14\ +\xd6\x6a\x8b\x5d\xef\xdb\xb7\xc7\x8e\x07\x7f\x9c\x4b\x00\x24\x2c\ +\x06\xd5\xd3\xd5\x8e\xc9\x89\x09\x01\x02\xb5\xcc\x29\x66\x4b\x3d\ +\xbd\x83\x02\x00\x57\x6c\xba\x44\x7c\xaf\xac\xeb\xb8\xbd\x2b\x28\ +\x9d\xc1\xa8\x73\x59\x44\xbd\xdb\xc0\x7c\xd7\x0c\xfa\x3d\x41\x52\ +\xd8\xfd\xa6\x3c\xc3\x7d\x58\xc0\x6b\x90\x6a\x32\x3d\x7b\x49\x4f\ +\xa3\xc8\x8a\x96\x14\x14\xc4\xf5\xbf\x5d\x1f\xf1\xa3\x7b\xb4\xda\ +\xca\x46\xd2\xff\x43\x83\x83\x76\xc1\xb8\xdd\x73\x09\x00\xb6\x4a\ +\x5a\xcc\x89\x8b\x18\x9a\x4e\x1c\x89\x2f\xde\xcc\x75\xed\x36\x93\ +\x82\xc5\xbc\x38\x2e\x79\xe6\x25\xd4\xd6\xaf\xac\x47\xc6\xc4\x28\ +\x0a\xfa\x5b\x9c\x63\x02\x92\x74\x7a\x52\xc0\x65\x61\x7a\xc2\x75\ +\xb2\x99\x64\x3b\x15\x60\x90\x08\x67\xa2\xeb\xa5\xc4\x60\x56\x59\ +\xe7\x51\xa4\x44\xa6\x50\x5e\x5c\x24\xb6\xbf\x61\x11\xaf\xcf\x9d\ +\xb4\x92\x58\x3a\x57\x53\x05\x3b\x77\xfe\xc1\x49\x02\x87\xe6\x12\ +\x00\xdc\x12\x0a\xd5\x4f\xbe\x71\xd0\x60\xf0\x05\x1c\xbd\x81\xd6\ +\xce\x5e\x31\x02\x6e\xdc\xf1\x76\xf1\xbd\xda\xa6\x7d\xe6\x5c\x80\ +\x0d\x10\xf4\x90\xa9\x20\x97\xe1\x98\xeb\x0c\xb8\xda\x88\xcf\xb9\ +\x25\xf5\x58\xbf\x46\x9c\xd3\x3e\xe3\xf3\xf1\x63\xeb\xe7\xb2\xf6\ +\x5d\x2b\xc9\xd3\xbf\xa9\xff\xae\xcd\xdf\x97\x74\x55\x23\xd9\x25\ +\xb3\xd4\xd1\x5f\x7d\xea\x80\x78\x5b\x5b\x59\x2e\x9e\x85\xa3\x80\ +\x4e\xfd\xc3\x6b\x09\xc5\x34\xfd\xff\xc2\xf3\xcf\x26\xed\xfb\xb9\ +\x4c\x07\xf3\x76\x6f\xa6\xbd\x7f\x5a\x1a\x8f\x61\x32\x38\x01\x4f\ +\xba\x57\x18\x7c\x85\x79\xd9\xb6\x1b\x3c\xb5\x75\xf4\x60\x59\x6d\ +\xa5\x58\x38\x6a\x45\x5d\x0d\x8e\x37\xb5\xa0\xb0\xe7\x14\xfa\xcb\ +\x97\x3a\x26\x85\x52\x89\x51\x29\x2e\x4b\xf2\xc8\x65\x53\x3b\x20\ +\x3b\xc5\x04\x24\xfb\x60\x90\xdd\x94\x2f\xa3\xdf\x1f\xb3\xd4\xfa\ +\xf3\x6b\xd4\x10\x0b\xe0\xb5\x01\x78\x2a\x97\x62\x89\x5a\x2a\xfa\ +\xf0\x54\x50\xde\x76\x04\x69\x53\x41\x94\x97\x14\x21\xd3\x9b\x1e\ +\xdf\x04\x4b\xb1\x99\x3d\xc5\x61\xe1\x74\xd6\xff\xf4\xaf\xb9\xb9\ +\x59\xa8\x00\x87\xbe\xc7\x5c\x4b\x80\x17\x39\x16\x6d\xf2\x0f\x23\ +\x11\x1c\x3f\xbc\x3f\xbe\x71\xc3\x28\xdb\x02\xb0\x59\x09\x83\x3e\ +\x6b\x6a\xed\x14\x31\x81\x5b\xde\x73\xad\xf8\xee\xd2\xa3\x7f\x12\ +\x23\x25\xce\x30\x19\xa6\x39\x01\x5e\x02\x80\x37\xc5\x42\x6e\x79\ +\xfa\xbc\xdb\x42\xe2\x1a\x97\xf6\x99\x2b\xf9\x75\x6e\xed\x9a\x64\ +\xbf\x6d\x3d\x97\x6a\x3e\x9f\x90\xc2\xd6\xee\x3f\x35\x14\x44\xcd\ +\xc9\x7d\x42\x52\xac\xac\xab\xd5\x76\x12\x49\x75\xdc\x8a\x3c\x3b\ +\x2b\x53\x75\xff\xa8\x0f\x1f\xff\xcf\x47\xec\xfa\x9d\x5d\x82\xf8\ +\xa2\x91\x73\x39\x3d\x9c\xef\xb7\x8a\xc8\xb4\xd2\x81\x7f\x64\x08\ +\xeb\x36\x6d\xd7\x52\xc0\x51\xb1\xf1\x93\x9d\x9b\xc3\x8b\x43\xd5\ +\x54\x94\xa0\x38\x3f\x4f\xac\x9d\xd3\xd5\xda\x06\x29\x16\xc5\x70\ +\x49\xb5\xad\xee\xce\xe4\x39\x82\xa9\xbc\x76\x8e\x2a\x09\x52\xe8\ +\xbc\xfa\x4a\x24\x6b\xef\xe3\x9f\xc9\x62\x1e\x40\xfc\xbc\xfe\xea\ +\x92\xb4\xf3\xb3\x20\xc9\x72\x2c\x59\xce\x1b\x3e\xe7\x29\xe2\x13\ +\x51\xc3\x0c\x12\x43\x60\x6f\xe5\xbe\xe7\xe0\x1b\x1d\xc0\x8a\x25\ +\x35\x28\x2e\xc8\x17\x40\xd0\x03\x3c\x56\x12\x46\x71\x71\x81\xb8\ +\x66\x2a\x14\xc2\x37\xbe\xfa\x15\x84\x42\x09\xc9\x57\xde\x5a\xe6\ +\xb5\xf9\x00\x00\x6e\xbc\x98\xdd\xa7\x4c\x51\xc1\xc0\x38\x4a\xab\ +\x6a\x91\x9d\x5b\x20\x7c\x7e\xde\x89\x8b\x1f\x38\x21\x3d\xcc\xeb\ +\xfe\x87\xa6\x50\x59\x5a\x84\xe5\x4b\xaa\xf0\xe2\x6b\xaf\xc3\xd3\ +\xd7\x81\xe1\xe2\x4a\x84\x32\xb3\x13\x0c\x3b\x0f\xef\x1b\x98\xe6\ +\x12\x53\xbf\x52\xdd\xea\xcc\x1f\x33\xd1\x39\xd9\x70\x6c\x3a\xa7\ +\xbd\x17\x33\x86\x24\xf5\x55\x27\x49\x3f\x86\x7a\x2c\x69\xaf\xfc\ +\x3e\x7e\x0d\xa6\xaf\x33\xbe\x6a\x34\x1e\xa1\x67\xd1\xc5\xb9\x21\ +\xa4\x5c\xd4\x7e\x02\xb5\xc7\xf6\x8a\xc9\xb2\x1b\xd7\xac\xd2\x32\ +\x7f\x2e\xc7\x80\x34\x47\x07\xf5\xe5\xf3\x9f\xfa\xdd\xe3\xa4\xff\ +\x9f\xb1\xb3\xfe\xef\xe0\x6e\x9e\x2f\x00\xe8\x26\x7a\x17\x2c\x73\ +\x05\xc6\x46\x86\xb1\x6a\xc3\x66\x21\x03\xb9\xae\x8d\xa5\x80\x5d\ +\xe3\x2d\x5f\x78\xad\xdc\x82\xdc\x1c\x94\x95\x14\x62\xd7\xfe\xc3\ +\xc8\xeb\x6d\x43\x6f\xcd\x72\x44\x79\xb7\x2e\x43\xa0\x27\x4a\x9d\ +\x57\xe9\x75\x1b\x98\x2c\x5b\x98\x6a\x78\x6f\x07\x04\x23\x18\x64\ +\x2b\xc1\xe6\x9c\x81\xf1\x3a\x20\x24\x18\x98\x0f\x71\x8e\x25\x41\ +\xdb\x64\x44\x98\x05\xd3\x00\x50\xe0\xf5\x0f\x63\xdd\x2b\x8f\xc3\ +\x45\x40\xbf\x62\xe3\x25\x42\xaf\x0b\xa3\xd1\x21\xbd\xcd\xe0\x28\ +\xd7\x46\x3f\x0f\x9c\xbf\xff\xca\x17\x31\x36\xe6\xb7\xd3\xfd\xf7\ +\x9b\x32\x86\xf3\x20\xf9\xc9\xc9\x6d\xd3\x8e\x60\x63\xa3\xc3\xa8\ +\xa8\xae\x83\x2f\x27\x4f\x64\x00\xc5\x02\x88\x29\xf6\xf6\x6a\xff\ +\xe0\x08\x6a\x2a\xcb\x84\x24\xe0\x08\x62\x4b\xe3\x29\xf8\x06\x7a\ +\xd0\x53\xb7\xda\xe4\x77\x47\x89\xb2\x48\xdf\xe6\xb1\x1a\xd0\x45\ +\xbc\xae\x06\xe2\xa2\x5e\xb2\xa8\x00\x69\x5a\x15\xd8\x1e\xb3\x28\ +\x87\x41\xcc\x43\x23\xa3\xa8\x87\x45\xf4\xc3\xa4\x16\x06\xc3\x51\ +\xf4\x4d\xc5\x4c\x99\x41\xf7\x64\x10\x1b\x5e\x78\x04\x9e\x60\x00\ +\x97\xac\x5a\x2e\x5c\x3f\xeb\xba\x15\xd6\xc6\x7b\x27\xf0\x5c\x41\ +\xbe\xea\xb9\xa7\x9e\xc0\x53\x4f\x3e\x61\x77\xd9\x1d\xda\xa0\x9b\ +\x57\x00\xe0\x98\xf4\x6d\x50\x57\xaf\x32\xd9\x02\x2b\x37\xa8\xe6\ +\x01\xaf\x08\xa6\x8b\xb6\x04\x83\x90\x0c\x47\xce\x11\xd4\x54\x96\ +\x62\xed\xb2\x3a\xb1\x37\x80\xbf\xbd\x0d\x19\xa3\x83\xe8\xaf\x59\ +\x66\x02\x81\x9f\xbe\x50\xeb\x4d\x81\x37\x2e\xd2\x8d\x52\x40\xb6\ +\x8c\x70\xd9\xf2\x6a\x50\x03\xc9\x46\x3a\x19\xa6\xd3\xaa\x00\x89\ +\xc7\xf2\xf4\x7b\x66\xfb\xc1\xf1\xf0\x74\x35\x0f\xbd\xb8\xc2\x53\ +\x58\xff\x87\x47\xe1\x1b\xee\x43\x6d\x45\x19\xd6\xad\x58\x16\xaf\ +\x88\x52\xb4\x0d\xeb\xac\xc4\xb5\x01\xa5\x45\x6a\x70\x28\x1a\x8d\ +\xe0\x6b\x5f\xb9\xc7\x6e\xf4\xb3\xd1\xfd\xad\x84\x9a\x81\x79\x00\ +\x00\x11\xfc\x83\x65\xd1\x28\x96\x02\x79\x45\xa5\xc8\x2b\x2c\x8e\ +\x17\x3b\xf0\xca\xd8\x76\x3d\x30\x16\x98\x88\x6f\x24\xb1\x79\xfd\ +\x6a\xec\x39\xf4\x26\x62\x5d\x1d\xc8\x18\x19\x40\xff\x92\x65\xf1\ +\x59\x42\x31\xa2\x51\xea\xec\xba\x74\x37\xd2\xe2\x23\x5e\x4a\x94\ +\x00\x09\xa3\x5d\xb6\x18\x6e\xfa\x79\x98\x8d\xba\xf8\xe8\x47\xe2\ +\xb1\x3e\xfa\xa1\x9e\xe7\x7f\xaf\x11\xf3\xc5\x34\x75\x8d\xff\x82\ +\xf9\xcf\x3c\x8c\x9c\xfe\x4e\x94\x90\xc1\xb7\x9d\x44\xbf\x28\xfb\ +\x26\x90\x8b\x05\x33\x1c\x4c\x7f\x2e\x92\xe1\xb8\x00\xb7\x47\x7e\ +\xf5\x20\x5e\x7c\xe1\x39\xa7\xd1\xdf\x3a\x1f\x01\x00\x2d\x3b\x98\ +\x20\x05\x7a\x3b\x5b\xb1\xfa\xd2\xad\x02\xe1\x5c\x29\x94\x9e\x9e\ +\x26\x42\xa1\x76\x8d\x17\x8c\xe0\x65\xd3\x0b\xf2\x72\xb0\x65\xc3\ +\x6a\xbc\xfe\xc6\x09\x0d\x04\x24\x09\x96\x2c\x8f\x27\x6f\xd8\xfa\ +\x19\x24\x40\x2d\xf1\x90\xbf\x6c\xb2\xec\x2d\xd6\xbf\x6c\xb1\xfa\ +\xe3\x8c\x96\xa7\x45\xbc\x64\x05\x01\xcc\x40\x80\xfe\x6a\xfe\x8c\ +\xf5\xfd\x4b\x63\x53\x18\x30\xec\x20\xe2\xa2\xe7\x5b\xff\xd4\xaf\ +\x91\xd3\xd7\x29\xf6\x3f\xbc\xfa\x6d\x1b\xc5\x73\xf3\xaa\x5f\x0c\ +\x00\xa7\xc6\x51\xbf\x02\xad\x4c\x6e\xa0\xbf\x0f\xdf\xfc\xea\x97\ +\x11\x0e\x4f\xd9\x8d\xfe\xbf\xb3\xfb\xfe\x7c\x01\x00\x63\xf9\x94\ +\x06\x82\x78\x9b\x0a\xf1\x46\x4f\x61\x54\xd5\x2d\xd7\xaa\x85\xc2\ +\x22\x10\xa2\xaf\xd3\x60\xa5\xf6\xae\x3e\xa1\x0b\x79\x44\xc4\x41\ +\xd0\xd9\x8e\xdc\xae\x36\x0c\xd6\xd4\x21\xca\x2b\x67\xf1\xe4\x4a\ +\xfa\x81\x56\xea\xfc\xd2\x54\x37\xf2\xdd\x46\x66\xc3\x2c\x15\xec\ +\x5c\x3b\xc9\xce\xdd\x33\xe8\x7d\x23\x08\x60\x91\x02\x6c\xb3\x90\ +\xc5\xff\x0c\x31\x7f\x24\xa2\xc4\x0b\x49\xd2\xc9\xe8\xbd\xe4\xb1\ +\x07\xe1\x1b\xec\x13\x23\xff\xda\xb7\x6f\x11\xc5\x1c\x53\xf4\xbc\ +\x5c\x0a\xe7\xe4\xf3\x33\x40\x38\x38\xa4\x1b\x86\xff\xf8\x0f\x5f\ +\x47\x53\xe3\x49\x6b\xdf\x32\x7a\xfe\x0c\x36\x4b\xc5\xcf\x17\x00\ +\x70\x75\xc7\x55\xda\xe8\xe7\x65\x4b\x32\xcd\x52\xa0\x1d\x15\xb5\ +\x4b\x91\x95\x9d\x2b\xc4\x20\xaf\x0e\x9e\xee\xb1\xdf\xd7\x87\x7d\ +\xe1\x8e\x9e\x3e\xe4\x64\x65\x89\xcd\x19\xaf\xdc\x72\x29\x1a\x5b\ +\xdb\xe1\x6f\x6d\x45\x51\xc3\x31\xf8\x4b\xca\x11\xca\x56\xd7\x14\ +\xe0\x31\x72\x82\x0c\xb0\x20\x75\x5e\x15\xc7\x08\xac\xc6\xa0\x0e\ +\x06\x13\xb3\x65\x33\x10\x12\x98\xee\xa0\x06\xa0\x2e\x3f\xfb\xca\ +\x44\x04\xaf\x04\xc2\xe2\x58\x17\xfb\x05\x8d\x27\xb0\xfe\xf1\x5f\ +\xc1\x43\xee\x6f\x5d\x75\x05\xae\xb9\x7c\x33\x5c\x04\x4a\xae\x8c\ +\xe2\x95\xd0\x9c\x1a\xf3\x9c\x55\x1e\x2f\xa6\xcd\x6f\x5e\x78\xfe\ +\x69\x3c\xf4\xc0\xcf\xec\x2e\xfd\x37\xa2\x9f\xe0\x34\xab\xdc\xce\ +\x47\xe3\xdd\xc1\x78\xab\xd3\x8d\x33\x5d\xc8\xcc\xbf\xf5\xd3\x7f\ +\x8d\x34\x8f\x1a\x06\xcd\xcf\xf5\x89\xbd\x75\x9c\x1a\x8f\x88\xed\ +\x9b\xd7\x0b\xc3\x90\xb7\x8a\xbb\xff\xd1\xa7\xf0\xf4\x4b\xbb\x10\ +\xa3\xf3\xed\x97\x6e\x41\xf3\x15\x3b\x10\xe3\x82\x09\xcd\x45\xe4\ +\x0e\x5f\x4f\x76\xc1\x26\x52\x0b\xc5\x7a\x54\x2e\x59\x38\x38\x11\ +\x79\x8e\x25\x60\xbd\x34\xd2\xf7\x07\xc3\x38\x10\x54\x6b\x1a\xd5\ +\x30\xb0\x02\x37\x79\x2c\x4b\x89\x69\x65\x47\x0f\x8b\x67\xda\xb2\ +\x7e\x8d\x28\x74\xe1\x6c\xde\x58\x20\x88\xb1\xf1\x89\xa4\x7d\xc2\ +\x7d\xc0\x9b\x68\xf0\x77\xfb\x7b\x7b\xf0\xd9\x4f\xdd\x81\x40\x60\ +\xdc\x7a\x19\x47\x5a\xb9\x7a\x66\xd4\xe9\x77\xe6\x42\x02\xf0\xea\ +\xcf\xbf\x23\xfa\x3c\x07\xae\x66\xf3\x85\x65\x2b\xd7\xe0\xf2\xed\ +\x3b\x10\x08\x86\xe2\xaa\x20\x8d\xc4\xb7\xcb\x61\xef\x20\xb6\x95\ +\x5b\x3a\x7b\xe2\x91\xb1\x0d\x2b\xeb\x85\xab\x78\xe4\x78\x23\xbc\ +\xad\xcd\x28\x3e\x7a\x04\x21\x5e\x77\xb7\xa8\x48\xd8\x05\x5c\x58\ +\xda\x4d\xcc\xda\x1f\x8e\xe1\x04\x31\x87\xed\x04\x0f\xef\xf4\xe9\ +\x52\x2d\xfb\x44\x3b\xc0\x40\x16\xfd\xce\x77\xd4\x4d\x7c\x3e\x40\ +\xd2\xe5\x69\x62\xfa\x4b\xe4\xe3\x77\x45\x62\xd3\xab\xcd\x11\x08\ +\x4a\x0f\xbd\x8e\x75\xbf\x7d\x08\x39\xdd\x9d\x22\x71\x73\xe3\x8e\ +\x6d\x62\xf4\x8b\x25\x60\x46\xc7\x84\x3b\x9b\xac\xf9\xe8\x3b\xba\ +\xde\x9f\x22\x15\xf1\xb7\xf7\x7c\x01\xbd\x3d\xdd\x76\x97\x7e\x14\ +\x86\x85\xa1\xe7\x83\x04\x60\x65\xfe\x3c\x6c\x16\x89\x70\x6a\x6b\ +\x36\x6c\xc4\xc7\xff\xfc\x2e\xd2\xed\x3e\xb1\x32\x48\xab\xc6\x58\ +\x9e\xf6\xc4\x01\x20\xa7\xf8\x80\xde\x78\xb3\x89\x2b\xb6\x6c\x10\ +\xa2\x92\x13\x4c\x0f\x3c\xfa\x34\x5e\xd9\xab\x56\xc8\x8c\x15\x97\ +\xa0\xf9\xca\x1d\x18\x58\xbd\xca\xb6\xba\x87\x17\x8b\x2a\x21\x89\ +\x50\xc4\x3b\x72\xd0\x71\x96\xc6\x7c\x63\xaf\xf1\x22\xcf\x63\x5c\ +\xa8\x42\xd4\x47\x8c\xee\x21\x8a\x88\x51\xae\x8d\x76\x6d\xc4\x4b\ +\x64\xcc\x15\x1f\x38\x88\x9a\x57\x5e\x82\x77\x78\x48\x8c\xdc\x4b\ +\x57\x2f\xc7\xc6\xb5\xab\x44\x75\x0f\x1b\x7b\x6c\xc8\xf2\xaa\x1e\ +\xc9\x1a\x97\xcc\xb3\xcb\x27\x16\xcc\xa0\xfb\xf8\xfe\xb7\xbf\x85\ +\x9d\xcf\x3d\x6d\x77\xa9\xe3\x3e\x41\x73\x05\x80\xe5\x9a\x35\x5a\ +\x72\x26\xcc\xe7\x68\x20\xc7\x02\x0e\x1f\x6f\x42\x6b\x47\x8f\x96\ +\xf9\x72\x09\x31\x38\xd3\x56\xf1\x5c\x1d\x23\x36\x6b\x2e\x2d\x12\ +\x2e\xe5\xc9\x96\x36\x3c\xf4\xc4\x73\x22\x8b\xc8\x2d\x50\x50\x80\ +\xae\x8d\x1b\xd1\xbd\xf1\x32\x44\x38\x99\x62\x2d\x0c\xb1\xd6\xf1\ +\x49\x86\xc5\x03\x63\xd3\x4c\x86\x0d\xe3\x3d\x03\x83\x28\xd9\xbb\ +\x1f\x65\xfb\xf7\xc1\xa3\xcd\xce\xe1\xd1\xbe\xed\xb2\xf5\x22\x74\ +\xcb\x76\xcb\x88\x7f\x1c\x7d\x83\x23\x8e\x6b\x23\xea\x8d\x6b\x00\ +\x58\xa2\xb1\x27\xc4\x00\x7a\xf8\x97\xf7\xe3\x17\x3f\xb7\x55\xef\ +\xfc\x60\x1b\x92\x89\xfe\xf3\x0d\x80\xa4\xcc\x2f\x24\xe3\xac\xac\ +\xb2\x5a\x58\xbe\x7d\x24\x16\xdb\x5a\x9a\x6c\x99\xcf\x31\x71\x1e\ +\x01\xcf\xbd\xb2\x47\xec\xad\x27\x40\x40\xcc\xcf\xcd\xc9\xb2\x5d\ +\x2b\xcf\xda\x96\x54\x95\x61\xd3\xfa\x95\x6a\x29\x15\xe9\xda\xa3\ +\x0d\xcd\x78\x72\xe7\xab\x38\x74\xac\x41\x0d\xb6\x50\xc7\x8e\xd6\ +\x54\x63\x70\xc5\x72\x0c\xad\x5a\x81\x40\x45\x29\x94\x14\xb7\xb9\ +\xf0\xd3\xb0\x50\x83\x9e\xce\x35\x32\x5e\x26\xe3\x2d\xa3\xad\x13\ +\xf9\x47\x8f\x23\xff\xd8\x09\x64\xb7\xb7\xc7\x43\xb5\x5c\xcd\xbc\ +\x99\x74\x7d\x41\x5e\xae\xd0\xf5\x93\x93\x21\xb1\x75\x7d\x60\x62\ +\x72\xc6\x7b\xe7\xb5\x7f\x8b\x0b\xf3\x35\xe6\x03\xcf\x3e\xf5\x04\ +\xfe\xed\x9f\xbf\x6b\x77\x29\xff\x18\x2f\x02\xb9\x7f\x36\x8c\x91\ +\xe6\x92\xf9\xde\x8c\x2c\x5c\x7f\xf3\x47\xb0\x72\xcd\x7a\xb1\xc4\ +\x39\x33\x98\xfd\xda\x9e\x8e\x56\x78\xb3\xf3\xc5\x16\x71\x46\xe6\ +\xb3\x0b\xe8\xd5\x62\x01\xbf\x79\x72\x27\xda\xbb\xd5\x8d\x91\xf8\ +\x7d\xb6\x2f\x53\xb5\x88\x67\x68\x7c\x2d\xef\xc5\xb7\x66\xf9\x92\ +\xf8\x5a\x04\x7d\x03\xc3\x78\x79\xef\x01\xec\x7a\xfd\x88\xc8\x2c\ +\xc6\xd3\xd3\x04\xaa\x40\x59\x09\x02\x25\xc5\x98\x2c\x2e\x44\x28\ +\xc7\x47\xc6\x63\x8a\x09\x00\xae\x89\x10\xd2\x46\xfd\x48\xef\xed\ +\x83\x97\xee\x27\xa3\xbb\x07\xb2\x61\x24\xb3\x4b\xba\x66\x59\x1d\ +\x56\xd7\xd7\x09\xf0\x2a\xda\x5e\x07\x5d\xbd\xfd\x42\xa5\xcd\xa6\ +\xf1\x73\x73\x6c\x40\x15\xfb\x12\x76\xbf\xfa\x32\xbe\x47\x2e\x1f\ +\xef\x1d\xec\x10\xf0\xb9\x6f\xb6\xcc\x91\xe6\x92\xf9\x1f\xfc\xf8\ +\x67\x51\x59\x55\x6d\x62\x7e\x86\xd7\x23\x2c\x7c\xce\x00\x06\xc8\ +\x18\xe2\xf7\x46\xe6\x73\xc4\x8b\x3f\x9b\xa0\x51\xf3\x9b\xdf\xbf\ +\x20\x7c\x7f\x61\xf9\x13\x63\xd9\xa0\x62\x31\x39\x9b\xc6\x12\x63\ +\xd9\x92\x4a\xac\x5c\x5a\x2d\x00\xa6\x17\x53\x32\x63\x78\xe3\x29\ +\x5e\x88\xba\xa5\xa3\x3b\xbe\x26\xd1\x6c\x1b\x6f\x05\x5f\x4e\x60\ +\xa9\xae\x28\x43\x5d\x55\x85\xc8\xcf\x8b\x30\x2e\xdb\x0a\x81\x09\ +\xf4\xf4\x0f\x62\x70\xd8\xef\x38\x99\x23\x31\xc6\x9f\x29\xa4\xa0\ +\xbe\x36\xc2\xce\xe7\x9e\xc2\xbf\xff\xf0\x7b\x4e\xea\x82\x53\xbd\ +\xf7\x9c\xce\xfd\x4a\xf3\x91\xf9\x5e\x7a\x65\x91\x27\x82\x21\x91\ +\x88\x38\x36\x32\x9f\xa7\x89\xb1\x9b\x34\x30\x32\x8a\x97\x77\x1f\ +\xa0\x4e\x1d\x8a\x8b\x59\x06\x80\x5e\x35\x33\xdb\x56\x5a\x94\x47\ +\xea\xa1\x5c\x6c\x49\x9b\xaa\x4d\xa7\x8a\x89\x02\x4b\x45\x80\x90\ +\x8d\x33\x5e\x91\x93\xfd\x72\xb1\x44\x8d\x56\x6d\xcb\xde\x06\x4f\ +\x57\xe7\x45\x99\x59\x9f\x73\xad\x7e\xaa\xb6\xcc\x9d\x5e\x9e\xc5\ +\xf5\x8b\xfd\x24\x61\x58\xca\xcc\x64\xdd\x9b\x5c\x59\x5e\xfd\x9c\ +\x54\x05\x3f\xb7\xa4\x95\xb4\x3d\xfe\xc8\xaf\xf0\xd0\xfd\x8e\x2e\ +\xfd\xac\x8c\xbe\xf3\x05\x80\xb3\x66\x3e\x4f\x79\xe2\xfd\x70\xd5\ +\xd2\x27\x45\x74\xb2\x91\xf9\xbc\x5c\xdc\xc0\xd0\xa8\xd8\x2c\xb2\ +\xb1\xb5\x23\xae\x47\xf5\x9c\x39\x83\x60\x26\xe3\xd0\xae\xb1\x7b\ +\xc5\x3b\x73\x15\xe6\xe7\xa8\x5e\x46\xaa\x3b\x3e\x5f\x41\x7d\x8d\ +\x4d\xbf\x17\xe7\x62\xf1\x63\xbe\x4f\x66\x32\xa7\xa9\x59\xbc\x0f\ +\x12\x40\x67\xa3\xdf\xad\x8d\x9f\x95\xcb\xe1\xb8\xbc\x4b\xcc\x12\ +\xa7\xbf\xf9\xd3\x7b\x7f\x80\x17\x13\xf3\xfb\xc6\x34\xef\x2d\x50\ +\x27\xdd\xcc\x39\x00\xce\x19\xf3\x59\xa7\xf3\x88\x74\x69\x3a\x97\ +\x2b\x84\xac\xcc\xef\xa5\x91\x35\x40\xa3\x93\x57\xca\x0a\x93\x4f\ +\xac\x07\x8b\x78\x04\xb1\x34\xf0\x70\xc0\xe7\x2c\xa6\x88\xf3\x88\ +\x56\xef\xd3\x23\xb6\xae\xe7\x7b\x93\xc4\xde\x7d\x8a\x08\xec\xf0\ +\x08\x67\x50\x72\x15\x33\xaf\xdf\xcb\xab\x79\x9e\x69\xe3\x00\x56\ +\x4e\x76\x16\xa9\xb2\xf4\xf8\xa8\x1f\x1e\x1c\xc0\x3f\x7d\xe7\x9b\ +\x68\x3a\x79\xfc\x9c\x33\xff\xad\x00\xc0\x39\x67\x3e\xaf\x1b\xc8\ +\x46\x13\xcf\x19\xe4\x42\x07\x16\xc1\x76\xcc\x7f\xfa\xe1\x9f\x93\ +\x07\xd1\x81\x77\xbe\xff\x76\x94\x55\x2d\x89\x77\x20\x1b\x7d\xfc\ +\x9b\x6e\xf7\xbc\x58\x0e\x29\x49\x52\xc7\x23\x42\xd8\x1c\xdf\xd0\ +\xf5\xfd\xeb\x7b\x77\x8b\x91\x3f\x3e\xe6\x7f\x4b\x98\x7f\xae\x01\ +\xf0\x96\x31\x9f\xc5\x2a\xcf\x16\xe2\x51\xe6\x17\x3e\x73\x22\xf3\ +\x9b\x8e\x1f\xd1\x54\x80\x8c\xf5\x5b\xb6\x63\xeb\x8e\xeb\x49\x7c\ +\x4f\xeb\x4f\xfe\x2d\xf1\x9b\x6e\xd7\xbc\x62\x3c\xe7\x35\x7c\xe4\ +\xed\xb0\x7a\xd3\xd7\xfb\x09\x8c\x8f\xe1\xd7\x0f\xfc\x04\xaf\xbe\ +\xf4\x42\xb2\xaf\x7e\x9b\xe8\xee\xb3\xfd\xfb\xd2\x42\x61\x3e\xbf\ +\xb2\x41\xc6\x2a\xa0\x95\xac\x73\x06\x80\x95\xf9\xd6\xfc\xc1\xb6\ +\x77\xbe\x17\xf5\xab\xd6\xc7\x41\x20\x49\xea\xaa\x19\x29\x29\x2e\ +\x2d\xad\x3c\x37\xa9\x10\x56\x4f\xcc\x78\x61\xa7\xb8\x5d\xf1\xfb\ +\x63\x7b\x62\xd7\xcb\x2f\xe0\xb7\xbf\xbc\x0f\xe3\xe3\x8e\xde\x07\ +\x67\xf7\x3e\x93\x2c\xc1\x73\xbe\x01\x70\xde\x98\xcf\x06\x15\x5b\ +\xe2\xec\x9a\x35\xb7\x75\xe1\xc9\x5f\xff\xd4\x96\xf9\xa6\x50\x70\ +\x75\x1d\xb6\x5e\xf5\x2e\x54\xd4\xd6\xc7\x41\xa0\xaf\x39\xc8\xe9\ +\x54\x97\xf0\xad\xcf\x4f\x75\x3c\x1b\x94\xec\xc9\xf0\xf3\x72\x49\ +\xbb\x11\x98\x87\xf6\xef\xc1\xef\x7e\xfb\x10\x3a\xda\x5a\x92\xfd\ +\x04\x2f\xae\xc1\xe5\x73\xaf\x9d\xab\x7b\x92\x16\x1a\xf3\x27\x26\ +\x27\x85\xe1\xd5\x78\xe2\x38\xee\xfd\xce\xd7\x66\x7d\xa3\x0c\x84\ +\xcd\x57\xbe\x13\xd5\x75\x2b\xe2\x20\xd0\x49\xd6\x17\xa1\x94\xa5\ +\x73\x2a\x18\x19\x5c\xec\xca\x8a\x8d\x1c\x53\xd4\x99\xbc\xc6\xbf\ +\xcd\x13\x3b\xde\x38\xb4\x1f\xbf\x7f\xf4\xd7\x33\x31\x9e\x1b\xef\ +\xfe\x7d\x27\x2c\x9b\x3f\xcf\x25\x00\xe6\x8c\xf9\x4c\x93\x93\x53\ +\xf8\xf1\xf7\xbe\x8e\xde\xae\xf6\xd3\xba\xe9\xfc\xa2\x12\xac\xdf\ +\xbc\x1d\x2b\xd6\x5d\x26\x66\x20\xc5\x81\xa0\x89\x66\x49\x5f\x8d\ +\x54\xd2\xd7\x24\x55\x4c\x7b\x40\x19\x0f\x75\x9d\xad\x8b\x75\x66\ +\x30\xab\x16\x96\x2c\x2c\xda\xf5\x98\xbd\x09\x70\xf4\x6f\xcc\x3f\ +\x82\x3d\x7f\x7a\x09\xaf\xee\x7c\x0e\x43\x83\xfd\x33\xdd\xf2\x88\ +\x96\x39\xbd\xef\xad\x90\x4a\xd2\x42\x65\x3e\x97\x88\x3d\x49\xfa\ +\xff\xd8\xc1\xbd\xd6\x5b\xe8\x99\x4d\xc2\xc9\x45\x23\xb3\x66\xe9\ +\x4a\x2c\x5b\xb3\x01\x75\xcb\xd7\xc2\xe3\xf5\x26\x80\xc0\x28\xa2\ +\x8d\x12\x43\x4d\x08\x26\xfb\x7c\x7a\x01\x47\x9d\xc6\xfd\xa3\x38\ +\x7a\xe4\x75\x1c\xd8\xbb\x0b\x4d\x27\x8e\xce\x98\xf8\x31\x04\x77\ +\x98\xf9\xbd\x6f\x95\x5a\x72\x2f\x54\xe6\x4f\x85\x23\x4e\x6b\x1f\ +\x7e\x11\x6a\x21\x04\x6f\x96\xb7\xd4\xe9\x21\x78\x1a\x1a\xdb\x0f\ +\x4c\x3c\x39\xb3\xa4\xac\x12\x95\x4b\x96\xa1\xac\xb2\x16\x95\xb5\ +\x4b\x91\x91\x99\x69\x18\xf5\xd6\x8d\xa4\x0c\xbb\x8d\xd9\x7e\x0e\ +\xe1\xbf\x77\xb4\x37\xa3\xb5\xe9\x24\xf9\xf0\xc7\xd0\xdd\xd1\x76\ +\x3a\x7d\xbc\x4f\x63\xfc\xab\x6f\xb5\x5d\xe2\x5e\xb8\xcc\x57\xd0\ +\xdf\xd3\x69\x77\x8f\xcc\xfc\x27\xa1\xce\x80\xfd\x30\xd1\x97\x93\ +\x01\x41\x88\x74\x1a\x8d\xdd\x1d\xad\x82\xe2\xee\x99\x37\x03\xf9\ +\x85\x25\xc8\x2d\x28\x84\x8f\x3c\x0a\x2f\x01\xc2\xe3\xf1\xaa\x2b\ +\x75\xf0\xfe\x86\xf4\x9d\x89\x89\x71\x21\x09\x82\xf4\x3a\x11\x18\ +\x87\x7f\x64\x18\x83\xfd\xbd\x18\xe8\xeb\xc6\x64\x30\x78\x26\xfc\ +\xe0\x42\x85\xaf\x12\x3d\x76\xbe\x3c\x12\x69\xa1\x32\xbf\xed\xd4\ +\x09\x3c\xf6\xc0\x8f\xec\xee\xb3\xc4\x22\x32\xd9\xf1\xe7\x92\x73\ +\xde\xaa\x7e\xeb\x3c\x8d\x03\x3d\xad\x49\xac\x67\xce\xf7\x1f\x96\ +\x16\x22\xf3\x87\x06\x7a\xf1\x9f\xf7\xfd\x0b\x8d\xba\x04\x5f\x99\ +\x57\x1e\xd9\x9e\xe4\x39\xd6\x6b\x96\x34\x47\xcf\x0a\xe6\x98\xe9\ +\xec\xd2\x3d\x40\x74\x2f\x6c\xea\xf5\xe7\x13\x00\x16\x0a\xf3\xa1\ +\x8d\xf4\xd9\x88\x4f\x96\x0a\x57\x69\x3e\x35\xcf\x4d\xac\x39\x4f\ +\xfd\xcd\x01\xfd\xdf\x69\x2e\xdd\xab\xf3\x41\xf4\x48\x17\x10\xf3\ +\xf9\x3e\x77\x9c\x85\x57\xb3\x4d\x53\x11\x5c\xa5\xbc\x06\x67\xbf\ +\x78\xc6\xb8\xc6\xf0\xdd\x1a\xf1\xfd\x75\xce\x37\xdd\x23\x5d\x20\ +\xcc\x6f\xd1\x98\x77\xae\xdc\x25\x97\x66\x38\xd6\x68\x54\xa2\x91\ +\xc7\x60\x67\x44\x30\xbd\xc0\xc5\xb8\x76\xdc\xa1\xdd\x0b\x53\x13\ +\x16\x40\x93\x2e\x00\xe6\xf7\x68\xe2\xfc\x04\x16\xdb\x39\x01\xc0\ +\x22\xf3\x2f\x62\x00\x2c\x32\xff\x22\x06\x40\xb1\x16\x88\x58\x64\ +\xfe\x45\xd4\x64\x83\xd1\xf3\xe8\x22\xf3\x2f\x5e\x00\x7c\xc6\x2e\ +\x4a\xb6\xc8\xfc\x8b\x47\x05\x34\x5b\x83\x21\x8b\xcc\xbf\x78\x24\ +\xc0\x16\xbb\x48\xd8\x4d\xb7\xde\xb9\xc8\xfc\x8b\x04\x00\x09\xa2\ +\x9f\x57\xe4\x58\xba\x6c\xc5\x22\xf3\x2f\x12\x00\xe4\x58\x4f\xd6\ +\xd6\x2d\x5b\x64\xfe\x45\x04\x80\x84\x3d\xda\xb8\x86\x6d\x91\xf9\ +\x17\x0f\x00\x46\xac\x27\x79\xa5\xce\x45\xe6\x5f\x3c\x00\x48\xd8\ +\x50\xe6\xd0\xeb\x7b\x10\xe3\xbd\xe9\x16\x99\x7f\x51\x00\x80\x8b\ +\x28\x4c\xab\x0b\xf1\x36\x6e\x3f\xfc\xee\x3f\x88\x75\x78\x16\x99\ +\x7f\x61\x37\x8e\x00\xf2\xa2\x34\x45\x56\x6f\xa0\xbb\xab\x13\xed\ +\x6d\x2d\xb8\xfe\x86\x1b\x91\x4e\x92\x60\x91\xf9\x17\x2e\x00\xb8\ +\x71\x15\xea\x27\x38\xfe\x63\xfc\xb0\xa5\xf9\x14\x9a\x9b\x9b\x70\ +\xd3\x7b\x6e\x12\x33\x5a\x16\x99\x7f\xe1\x02\x80\x4b\x58\x0f\x43\ +\xad\x95\x33\xcd\x93\x6a\x6a\x6c\x44\x63\x63\x03\x6e\xba\xe9\x26\ +\x31\x3d\x7b\x91\xf9\x17\x26\x00\x04\xaf\x89\x8e\x42\x5d\x56\xd4\ +\x04\x82\x86\x93\x27\x71\xf4\xd8\x51\x6c\xbf\xea\x6a\x31\x4d\x7b\ +\x91\xf9\x17\x26\x00\xb8\x1d\x73\x02\x41\x63\x43\x03\x4e\x1c\x3b\ +\x8e\xcd\x97\x6f\x17\x8c\x5e\x64\xfe\x85\x09\x80\xa4\x20\x60\x7b\ +\xa0\xb1\xe1\x24\x36\x5c\xb6\x55\x6c\xd7\xb2\xc8\xfc\x0b\x13\x00\ +\x49\x41\xd0\xde\xd6\x4a\xc6\x61\x13\x56\xad\xbf\x0c\x93\x64\x10\ +\x2e\x32\xff\xc2\x04\x40\x52\x10\x74\x77\xb6\xe3\x54\xc3\x09\xd4\ +\x2c\x5d\x81\x68\x4c\x32\x31\xbf\xbb\xa3\x05\x4f\x3c\xf8\xef\x8b\ +\xcc\x5f\x20\x6d\x36\x13\x43\x6e\x86\x3a\x4b\x35\xa1\x4e\x9e\x17\ +\x64\x5a\xba\x72\x1d\x7c\x39\xf9\x04\x84\x28\xba\xda\x4e\xa1\xa3\ +\xb9\xc1\xe9\x77\x16\x99\xbf\x80\xdb\xcd\x5a\xc0\x48\x39\x43\xe2\ +\xa5\xac\x97\x2f\x76\xe3\xc5\x09\x82\xf6\x45\xe6\x5f\x38\xed\x3a\ +\xa2\xfe\xd3\x60\xfe\x2e\xa8\xd5\xc6\x8b\xed\x02\x6a\xf9\x44\xbc\ +\x4c\xf5\x58\x12\xc6\x73\x8d\xe1\xa7\x31\x7f\xf6\x24\x5a\x6c\x67\ +\x61\x04\x3a\x35\xde\xa5\x90\x27\x54\xf2\xba\xf4\x7a\x51\x09\xd7\ +\x16\xf0\x44\xc8\xd7\x16\xbb\x76\x61\xb4\xff\x02\x38\x04\x9c\x57\ +\x51\x7e\x39\x70\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\ +\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x30\x2d\x30\x32\x2d\ +\x31\x30\x54\x30\x32\x3a\x30\x38\x3a\x34\x37\x2d\x30\x36\x3a\x30\ +\x30\x48\x3f\xeb\x77\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\ +\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\x30\x31\ +\x2d\x31\x37\x54\x31\x30\x3a\x34\x33\x3a\x32\x34\x2d\x30\x36\x3a\ +\x30\x30\x25\x20\xe2\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ \x00\x00\x27\xbc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -648,6 +1343,1109 @@ qt_resource_data = "\ \x42\x33\x57\xae\x5c\x89\x0d\x1b\x36\x00\x78\x78\xc4\xb9\x5b\x68\ \x3a\x11\x91\x69\x4b\xfa\x5f\x5f\xdd\xb6\x9d\x4d\x12\x53\x9f\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x15\x5b\ +\xff\ +\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ +\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x06\x10\x0f\x0f\x0f\x0f\ +\x0f\x0f\x0f\x0f\x0f\x10\x0f\x0e\x0f\x10\x0f\x0f\x10\x10\x0f\x0e\ +\x0d\x0f\x15\x10\x15\x14\x14\x10\x14\x15\x17\x1c\x26\x1e\x17\x19\ +\x24\x19\x15\x14\x1f\x2f\x20\x23\x27\x29\x2c\x2c\x2c\x15\x1e\x31\ +\x35\x30\x2a\x35\x26\x2b\x2c\x29\x01\x09\x0a\x0a\x0e\x0c\x0e\x18\ +\x0f\x0f\x1a\x29\x1e\x1c\x1c\x29\x29\x29\x35\x29\x29\x29\x2e\x2d\ +\x29\x34\x2d\x2c\x2f\x2a\x29\x29\x29\x2d\x35\x29\x29\x29\x29\x29\ +\x29\x2c\x35\x29\x29\x29\x2d\x31\x35\x35\x29\x36\x29\x29\x29\x32\ +\x29\x29\x2c\x29\x29\x2c\x29\x2c\x29\xff\xc0\x00\x11\x08\x00\xcc\ +\x00\xf7\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1c\ +\x00\x00\x01\x05\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x01\x02\x03\x05\x06\x04\x07\x08\xff\xc4\x00\x51\x10\x00\ +\x01\x03\x02\x01\x03\x0e\x08\x0a\x08\x04\x07\x01\x00\x00\x00\x01\ +\x00\x02\x03\x04\x11\x12\x06\x21\x31\x05\x13\x23\x32\x41\x51\x53\ +\x71\x72\x73\x93\xb1\xb2\xd2\x07\x22\x33\x61\x74\x91\xa1\xc1\x42\ +\x52\x62\x81\x82\x92\xa2\xb3\xc2\xd1\x14\x15\x24\x34\x44\x83\xa3\ +\xc3\x43\x63\x75\x84\x54\x64\xa4\xb4\xd3\xe1\xf0\x16\xff\xc4\x00\ +\x1a\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x01\x02\x03\x04\x06\x05\xff\xc4\x00\x2a\x11\x01\x01\ +\x00\x02\x01\x02\x03\x08\x02\x03\x00\x00\x00\x00\x00\x00\x00\x01\ +\x02\x11\x03\x12\x31\x04\x32\x51\x05\x13\x21\x22\x35\x41\x71\xb1\ +\x14\xc1\x61\x72\xb2\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\ +\x00\x3f\x00\xb2\x86\x77\x96\xb4\x99\x25\xda\xb7\xfc\x59\x34\xd8\ +\x7c\xa4\xfd\x79\xfc\x24\xbd\x2c\x9d\xe4\xc8\x07\x88\xce\x4b\x7a\ +\x82\x7e\x15\xe8\xd4\x78\xf7\x46\xba\xfe\x12\x5e\x96\x4e\xf2\x35\ +\xe7\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\x50\xdd\xf5\x1a\xf3\xf8\ +\x49\x7a\x59\x3b\xc8\xd7\x9f\xc2\x4b\xd2\xc9\xde\x45\x91\x85\x35\ +\x0d\xd1\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x79\xfc\x24\xbd\x2c\x9d\ +\xe4\x61\x46\x14\xd4\x37\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\x35\xe7\ +\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\x50\xea\xa3\x5e\x7f\x09\x2f\ +\x4b\x27\x79\x1a\xf3\xf8\x49\x7a\x59\x3b\xc8\xc2\x8c\x29\xa8\x6e\ +\x8d\x79\xfc\x24\xbd\x2c\x9d\xe4\x6b\xcf\xe1\x25\xe9\x64\xef\x23\ +\x0a\x30\xa6\xa1\xba\x35\xd7\xf0\x92\xf4\xb2\x77\x91\xaf\x3f\x84\ +\x97\xa5\x93\xbc\x8c\x28\xc2\x9a\x86\xe8\xd7\x9f\xc2\x4b\xd2\xc9\ +\xde\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\x30\xa3\x0a\x6a\x1b\xa3\x5e\ +\x7f\x09\x2f\x4b\x27\x79\x1a\xf3\xf8\x49\x7a\x59\x3b\xc8\xc2\x8c\ +\x29\xa8\x75\x5f\x51\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x79\xfc\x24\ +\xbd\x2c\x9d\xe4\x61\x46\x14\xd4\x37\x7d\x46\xba\xfe\x12\x5e\x96\ +\x4e\xf2\x35\xe7\xf0\x92\xf4\xb2\x77\x91\x64\x61\x4d\x43\x74\x6b\ +\xcf\xe1\x25\xe9\x64\xef\x23\x5d\x7f\x09\x2f\x4b\x27\x79\x18\x51\ +\x85\x35\x0d\xd1\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x75\xfc\x24\xbd\ +\x2c\x9d\xe4\x61\x46\x14\xd4\x37\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\ +\x35\xe7\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\xa6\x1b\xa4\xd7\x9f\ +\xc2\x4b\xd2\xc9\xde\x42\x52\x12\x26\xa1\xd5\x4b\x03\x7c\x46\x72\ +\x1b\xd9\x09\xf8\x52\xc2\x36\x36\x72\x1b\xd9\x0b\x18\xfc\xa6\xaa\ +\x1a\xdf\x8f\x19\xc7\x10\x79\xbc\x4d\xcc\x73\x66\x16\x23\x36\x75\ +\x2e\x5a\x6a\x63\x72\xec\xd9\x61\x46\x15\x8f\x6e\x56\x54\x8e\x00\ +\xf1\xc4\xf1\xd5\x22\x78\xcb\x1a\x80\x5a\x0c\x70\x1b\xb9\xad\xd1\ +\x23\x6d\x72\x05\xf6\xc7\x7d\x4e\xb8\xbe\xef\x26\xb7\x0a\x30\xaa\ +\x69\x75\x6a\x66\xc4\xf9\x70\x42\x70\x34\xba\xd7\x90\x12\x90\xea\ +\xe4\xdc\x1c\x3f\x5a\x4f\xc9\x5e\xb8\x9e\xef\x25\xd6\x14\x61\x54\ +\xbf\xaf\x66\xe0\xe1\xfa\xf2\x77\x51\xfa\xf6\x6e\x0e\x1f\xae\xfe\ +\xea\x75\x43\xdd\xe4\xba\xc2\x8c\x2b\x31\x57\x94\x15\x03\x5e\x2d\ +\x31\xc7\xad\xc5\x8c\x00\xdd\x70\x38\xd9\xe7\x39\x75\x8f\xc1\x1a\ +\x15\x73\x72\xd2\xa8\x69\xd6\x0f\x1c\x4f\x1d\x4f\x53\xae\x2f\xba\ +\xad\xc6\x14\x61\x58\xc6\xe5\xcc\xfb\xb1\x40\x78\xb5\xc6\xfb\xca\ +\x99\xb9\x7a\xfd\xda\x66\x1e\x29\x9c\x3a\xd8\x55\xeb\x89\xee\xf2\ +\x6b\x70\xa3\x0a\xcb\xb7\x2f\x5b\xf0\xa9\x9d\xf4\x65\x6b\xba\xda\ +\x15\xae\xa2\x65\x14\x75\x6e\x7b\x1b\x1c\x8c\x73\x1a\x1e\x71\xe0\ +\x20\x82\x6d\x98\x82\x52\x65\x2a\x5c\x2c\x59\xe1\x46\x15\x2e\x14\ +\x61\x5a\x65\x16\x14\x61\x52\xe1\x46\x14\x11\x61\x46\x15\x2e\x14\ +\x61\x41\x16\x14\x61\x52\xe1\x46\x14\x11\x59\x18\x54\xb8\x51\x85\ +\x04\x58\x51\x65\x2e\x14\x61\x41\x16\x14\x61\x52\xe1\x46\x04\x34\ +\x8b\x0a\x30\xa9\x70\x23\x02\x1a\x47\x85\x09\xf8\x50\xa2\x96\x99\ +\xbe\x2c\x7c\x96\x75\x05\xe6\xb3\xff\x00\x81\xcc\x5b\xd5\xad\xaf\ +\x4e\xa5\x1e\x2c\x7c\x96\x75\x05\xe6\x55\x43\xc8\xf3\x72\x0f\x51\ +\x8d\x73\xcd\xdb\x8b\xee\x8d\x35\xda\x59\xce\x45\xf7\x8d\x4e\x4d\ +\x93\xe0\xf3\x91\x7d\xe3\x57\x37\x66\x96\xac\xfe\xc9\x3f\x34\xee\ +\xca\x61\x39\xcf\x19\x4e\xa9\xfd\xd2\x7e\x65\xfd\x92\x98\x4a\x05\ +\x42\x44\xb7\x41\xc1\x5b\xa2\xa7\xd1\xc7\x66\x65\x42\xaf\xaa\xff\ +\x00\x89\xf4\x71\xd5\x32\xa1\x40\x24\x4a\x91\x00\xb4\xd9\x00\x36\ +\x79\xf9\x96\x7d\xe2\xcc\x95\xa9\xf0\x7c\x36\x6a\x8e\x66\x3e\xd9\ +\x5a\xc7\xbb\x19\xf9\x6b\x6b\x85\x18\x54\x96\x46\x15\xd9\xe6\x47\ +\x85\x18\x54\x98\x51\x85\x04\x76\x46\x15\x25\x92\x61\x40\xcc\x28\ +\xc2\xa4\xb2\x4b\x20\x66\x14\x61\x52\x61\x49\x64\x0c\xc2\x92\xca\ +\x5b\x22\xc8\x23\xb2\x2c\xa4\xb2\x2c\x82\x3b\x22\xca\x4b\x22\xc8\ +\x23\xb2\x13\xec\x95\x14\xb4\xcd\xf1\x23\xe4\xb3\xa8\x2f\x31\xaf\ +\x16\x74\x7e\x6f\xd2\x07\xaa\x46\xfe\x4b\xd4\x69\x9b\xe2\x47\xc8\ +\x67\x64\x2f\x31\xd5\x51\x69\x07\x3b\x56\x3f\xaa\x7f\x25\xcf\x37\ +\x5e\x3f\xbb\x95\x47\x2e\xe7\x2e\x2f\xbc\x6a\x90\xa8\xe6\xd1\xf4\ +\xa3\xed\xb5\x73\x76\x69\xa7\xfd\xd6\x7e\x66\x4e\xc1\x51\xa9\x25\ +\xfd\xda\x6e\x66\x4e\xc1\x51\x37\x40\x40\xa9\x52\x5d\x08\x38\xab\ +\x3f\x89\xf4\x71\xd5\x32\xa1\x57\xd5\x5f\xc4\x7a\x3b\x7f\xbc\xa8\ +\x06\x84\x0a\x91\x16\x7d\xae\x22\x95\xc0\xe8\x2d\x8d\xee\x07\x3d\ +\xb4\xd9\x26\x17\xf0\x52\x8e\x36\x10\x80\x2b\x5b\xe0\xe9\xbb\x35\ +\x4f\x35\x17\x6d\xcb\x24\x43\xb7\x9a\x38\xdc\x47\xe1\x57\x59\x29\ +\xab\xec\xa3\x7c\xae\x95\xb8\x84\x8c\x8d\xa3\x5b\x92\x2c\xc5\xae\ +\x71\x37\xc4\x46\xfa\xb3\xbb\x39\x4d\xc7\xa6\x61\x46\x15\x9a\x6f\ +\x84\x2a\x53\xf0\x26\xf9\x8d\x39\xfe\xe2\x95\xb9\x79\x48\x7e\x0c\ +\xe3\xe8\x46\x7a\x9e\x57\x5e\xa8\xe1\xd1\x5a\x0c\x28\xc2\xa9\x1b\ +\x96\xb4\x87\x76\x61\xfc\x97\x9e\xab\xa9\x46\x57\xd1\xf0\x8f\x1c\ +\x70\x54\x77\x13\x70\xe9\xbe\x8b\x6c\x28\xc2\xab\x06\x55\xd1\x70\ +\xe0\x71\xc7\x33\x7a\xd8\x9c\x32\x9e\x88\xff\x00\x15\x10\xe3\x25\ +\xbd\x61\x36\x9d\x35\x63\x85\x18\x57\x13\x72\x86\x8c\xff\x00\x17\ +\x4d\xf3\xcd\x18\xeb\x2a\x56\xea\xc5\x31\xd1\x53\x4e\x78\xa7\x8b\ +\xf3\x57\x66\xab\xa3\x0a\x30\xa6\x36\xb6\x23\xa2\x68\x8f\x14\x8c\ +\x3e\xf5\x2b\x5c\x0e\x82\x0f\x11\x05\x0d\x1b\x85\x18\x54\x81\x87\ +\x78\xfa\x92\xeb\x67\x78\xfa\x91\x11\x61\x4b\x85\x3f\x0a\x30\xa0\ +\x8f\x0a\x30\xa9\x30\xa3\x0a\x06\x61\x42\x93\x0a\x11\x45\x3b\x76\ +\x36\x72\x19\xd9\x0b\xcc\x35\x70\x5a\x67\x0d\xea\xaa\xc1\xfd\x59\ +\x3f\x25\xea\x54\xe3\x63\x67\x21\x9d\x90\xbc\xc3\x28\x85\xa7\x93\ +\xcd\x59\x54\x3e\xd4\xa5\x63\x37\x5c\x15\xca\x39\xf6\xa7\x8d\xbd\ +\xa0\xa4\x51\xd4\xed\x1d\xff\x00\xdb\xab\x9b\xab\x4e\xef\xdd\xe6\ +\xe6\xa4\xec\x95\xcf\x19\xcc\x38\x87\x52\xe8\x1e\x42\x5e\x6d\xfd\ +\x92\xb9\x60\x3e\x2b\x79\x2d\xea\x41\x2d\xd0\x91\x08\x38\xea\xff\ +\x00\xc7\xf4\x71\xfd\xe5\x42\xdd\x03\xe6\x57\xd5\x5a\x67\xf4\x76\ +\xff\x00\x79\x67\x66\xf2\x6e\xe4\x1e\xca\xb3\xe2\x25\xd7\x8b\x05\ +\x84\x8f\x60\xde\x12\x3d\xa0\x6e\xe8\xbd\x82\xed\xd4\xe8\xe7\x99\ +\xae\x73\x26\xc4\x31\x90\x3f\x6e\xa6\x8d\xd9\x9a\x2f\xe2\x48\xf0\ +\xed\x37\xce\xb2\x45\x82\xe7\x30\xd2\x77\x06\xfa\x9a\x9c\x67\x3c\ +\x43\xde\xbf\x53\x0f\x65\xe7\xc9\x9c\xe3\x99\xc9\x7d\x75\xbf\xee\ +\x31\xd7\xa6\xd9\xba\x99\x5d\xf0\x5b\x52\xee\x44\x94\x72\xf5\x38\ +\xa6\x54\xd2\xd7\x44\x03\xa5\x6d\x64\x6d\x2e\x6b\x03\xa4\xa7\x84\ +\x30\xb9\xda\x1b\x8b\x45\xca\xc9\x6b\x4d\xf8\xad\xf5\x05\x6d\x93\ +\x14\xec\x75\x4d\x8b\x18\x47\xe8\xd5\xae\xb3\x9a\xd2\x2e\x29\xa4\ +\x20\xd8\x8d\x20\xe7\x4f\x19\xec\x8e\x5f\x09\xc3\x9f\x3e\x5c\x93\ +\x29\x8c\xde\xba\x6c\xbf\xf5\x4c\x79\x26\x57\x5a\x59\x9f\xd2\x37\ +\x4b\x8f\x2a\x06\x3b\xb2\x54\x64\x4b\xba\xc8\xcf\x2a\x8e\x43\xd4\ +\xae\x98\x73\x0e\x20\x9c\xbf\x29\xb5\x09\x0e\xdd\x86\x98\xf1\xd2\ +\xca\xd4\xc2\xf1\xbb\x0d\x27\xda\x8f\xdc\xb4\x20\xa5\xbf\x9d\x06\ +\x77\x5e\x67\x03\x4f\xf4\x6a\x9c\xdf\x72\x70\x95\x9c\x07\xd5\xac\ +\x79\x5a\x02\x98\x61\x69\xd2\xd6\x9e\x36\x82\x82\x90\x16\xf0\x15\ +\x1f\x46\x7c\x5d\x6e\x41\x6b\x37\x62\xac\x1f\x3c\x4e\xeb\x2a\xe0\ +\xd1\x44\x74\xc5\x17\x46\xcf\xc9\x27\xea\xf8\xb8\x28\xfe\x66\x81\ +\xd4\x82\x94\xc7\x0e\xeb\x6a\x87\x1c\x50\xbb\xf0\x94\xdd\x6a\x9f\ +\x7e\x51\xc7\x4c\xd3\xd4\xc5\x79\xfa\xbe\x3f\x8b\x6e\x27\x3c\x75\ +\x14\x9f\xab\xe3\xf9\x63\xf9\xb2\xf7\x90\x52\x88\xe0\xdc\x98\x8e\ +\x3a\x57\x8e\xa0\x13\xda\xf8\xc6\x8a\xb0\xdf\xa1\x33\x3f\x18\x56\ +\xdf\xab\x59\xbf\x27\x48\xe3\xd7\x74\x87\x53\x1b\xf1\xe4\xfe\x99\ +\xeb\x62\x0a\xf6\xd5\x91\xa3\x54\x00\xfe\x7c\xec\xfe\xe2\x95\x9a\ +\xa1\x3f\xc1\xd5\x10\x7f\xde\x4d\xde\x2b\xa4\xea\x50\xe1\x1d\xf3\ +\xb6\x23\xf8\x13\x0e\xa3\x83\xf0\xc7\xcf\x1b\x4f\x51\x08\x68\xac\ +\xd5\x1a\xdf\x83\x5b\x7f\xf7\x4e\x77\x5b\x4a\xe5\xd5\x0c\xaa\xae\ +\xa7\x2d\x69\xa9\x37\x70\x24\x12\xf8\xde\xdd\x36\xdd\x8d\x4c\xed\ +\x41\x07\x81\x3c\x70\x9e\xfa\xe4\xd5\x0d\x43\x0d\x86\x67\x06\xc3\ +\x9a\x29\x4e\x66\x39\xa7\x33\x09\xdf\x2a\xed\x35\x1b\x2c\x88\xa8\ +\xaf\x95\xb2\x49\x58\x5c\x62\x73\x62\x30\x17\x32\x28\xcb\xaf\x88\ +\x97\x00\xd0\x0e\x1b\x61\xce\x7e\x64\x2d\x4d\x2c\x21\x91\xb1\x83\ +\x30\x6b\x18\xd1\xc4\xd6\x81\xee\x48\xba\xb8\x5f\x8a\x4a\x61\xb1\ +\xb3\x9b\x67\x64\x2f\x2f\xca\x71\x6a\x89\x7d\x32\x6f\x6b\x64\x3e\ +\xf5\xea\x94\xcd\xd8\xe3\xe4\x33\xb2\x17\x97\x65\x68\xb5\x54\xfe\ +\x96\x7d\xb0\x93\xef\x59\xc9\xbc\x3b\xaa\x54\x55\x3b\x47\x72\x4a\ +\x91\x47\x55\xb4\x7f\x21\xdd\x45\x73\x75\x6a\x23\xf2\x4f\xe4\x3b\ +\xa9\x72\x53\xed\x19\xc8\x67\x64\x2e\xba\x7f\x26\xee\x49\xea\x5c\ +\x54\x9e\x4e\x3e\x6e\x3e\xc8\x41\x30\x48\x26\x6d\xf0\xe2\x6e\x2f\ +\x8b\x88\x62\xdf\xd1\xa5\x0b\x8c\x17\xeb\xf7\xb7\x8b\xb4\x07\x36\ +\x6f\x17\x17\xc4\xbe\x9f\x94\x81\xd5\x5a\x66\xf4\x71\xfd\xe5\x9d\ +\x9b\xc9\xbb\x90\x7b\x2b\x45\x53\xb6\x9b\xd1\xc7\x5c\xab\x39\x37\ +\x93\x77\x20\xf6\x55\xc7\xbc\x15\x70\x53\xba\x59\x5b\x13\x0b\x1a\ +\xe9\x25\x0c\x06\x47\x06\x30\x17\x3c\x36\xee\x71\xd0\x05\xee\x4e\ +\xe0\x05\x75\xd5\xea\x63\xe9\xa5\x7c\x72\x3a\x37\x16\x92\xdc\x70\ +\xbf\x5c\x8d\xc5\xa6\xce\xc2\xeb\x0b\x8b\x95\x5e\xe1\xe3\x5c\x12\ +\x0b\x5c\x48\x23\x70\xde\xeb\xa2\x39\x9c\xe2\x71\x12\x6c\x33\x68\ +\x16\xb9\x24\xe8\xf3\xaf\xa7\xf0\xd3\x97\xf9\x92\xef\xe5\xdd\xfd\ +\x57\x1b\xae\x94\x8a\xe3\x25\xbf\x79\x77\xa2\x57\xff\x00\xdb\x3d\ +\x53\xab\x7c\x96\xfd\xe1\xfe\x6a\x2a\xf3\xff\x00\x4e\xef\xcd\x7b\ +\xbd\xbb\xf4\xee\x6f\xf5\x67\x8f\xcd\x1a\x76\xe8\x1c\x49\x52\x04\ +\x2f\x89\x7a\x0a\x95\x35\x28\x40\xa8\x49\x74\x5d\x03\x81\x45\xd2\ +\x5d\x2a\x02\xe9\x52\x21\x02\xdd\x2a\x6a\x54\x0a\x84\x88\x40\xab\ +\x97\x55\x33\xc1\x28\xf8\xcc\x2d\xfa\xde\x2f\xbd\x74\xdd\x45\x52\ +\xcc\x41\x8d\xf8\xd3\xd2\xb3\xeb\x54\x46\xdf\x7a\x0f\x4b\x73\x73\ +\x9e\x33\xd6\x84\xfc\x3a\x50\xba\xed\xe7\xd1\x29\x9b\xb1\xc7\xc8\ +\x67\x64\x2f\x2e\xcb\x31\x6a\xba\x8f\x4a\x8c\xfa\xe9\x99\xf9\xaf\ +\x55\xa6\x1b\x1c\x7c\xdb\x3b\x21\x79\x6e\x5d\x36\xd5\x95\x1c\xfd\ +\x31\xf5\xd3\xc3\xf9\xac\xe4\xe9\x8f\x75\x0a\x8e\xa7\x68\xfe\x43\ +\xfb\x25\x48\xa3\xa8\xda\x3f\x90\xfe\xc9\x58\x74\x69\xe9\x3c\x99\ +\xe4\xae\x2a\x33\xb1\x45\xcd\xc7\xd8\x0b\xb2\x83\x69\xf4\x57\x0d\ +\x11\xd8\xa2\xe6\xe3\xec\x04\x1d\x0a\xbd\xa7\xf6\x8b\x5f\x77\x16\ +\x10\x47\x07\x6c\x67\x77\xcd\x6f\x9f\x42\xef\x5c\x46\x29\x35\xfb\ +\xd8\xe0\xbd\xf4\xf8\xbe\x4e\xd8\xad\x8b\x4d\xf3\x68\x40\xfa\x9d\ +\xb4\xbe\x8e\x3a\xe5\x59\xd9\xbc\x9b\xb9\xb3\xd9\x5a\x2a\x8d\xb4\ +\xbe\x8e\x3a\xe4\x59\xd9\xbc\x93\xb9\xb3\xd9\x57\x1e\xf0\x56\x53\ +\x52\xba\x69\x99\x13\x0b\x03\xe4\x95\xac\x69\x7b\x83\x1a\x0b\x9e\ +\x1a\x09\x3b\x83\x3d\xc9\xdc\x00\xae\xaa\xad\x4c\x92\x9a\x57\xc5\ +\x2e\x02\xe6\xb8\xb2\xf1\xbc\x48\xc7\x16\x9b\x3a\xce\x1a\x45\xca\ +\xaf\x7b\x7c\x6b\x83\x62\x1c\x48\x39\xb4\xdd\x74\x47\x33\x9c\x4e\ +\x23\x7b\x68\xcc\x00\x17\x24\x9b\x00\x37\xd7\xd3\xf8\x69\xcb\xfc\ +\xc9\x77\xf2\xee\xfe\xab\x8d\xd7\x4a\x45\x6f\x92\xfe\x5e\x5f\x35\ +\x0d\x7f\xdc\x2a\x85\x6f\x93\x1e\x5a\x7f\x40\xaf\xfb\xa0\x17\xb7\ +\xdb\xbf\x4f\xe6\xfc\x7f\x71\x9e\x3f\x34\x69\x90\x90\xe9\xf9\xd2\ +\xaf\x8a\x7a\x0a\x80\x52\x22\xe8\x1d\x74\x59\x71\xd6\xd1\x19\x1c\ +\xc3\x71\x61\xa6\xe0\x3a\xfe\x3b\x1d\xa0\x82\x0e\xd7\x75\x73\xc5\ +\x40\x58\xe7\xf8\xae\x7b\x6c\x03\x4d\xd8\x1c\x5a\x18\xd6\xda\xf7\ +\x04\x67\x07\x36\x8e\x24\x16\x89\x55\x4b\x63\x94\x60\xbe\xbb\x60\ +\xd6\x89\x08\x76\x22\x46\x26\x67\x6d\x89\xcf\x6c\x59\x80\xbe\x9c\ +\xe7\x32\xb0\xa6\xc5\x81\x98\xf6\xd8\x5b\x8b\x45\xf1\x5b\x3e\x8f\ +\x3a\x09\x90\x92\xe8\xba\x05\x45\xd1\x74\x20\x5b\xa2\xe9\x10\x81\ +\xc8\x89\xb7\x9a\x95\xbb\xf5\x94\x7e\xca\x86\x3b\xdc\x9a\xa6\xd4\ +\xd6\xde\xae\x84\x7f\xcd\xb0\xfd\x58\xe4\x7f\xe1\x48\x95\xe9\x21\ +\xa9\x14\xb6\x42\xe9\x5c\xa1\xb4\xcd\xd8\xe3\xe6\xd9\xd9\x0b\xcb\ +\xbc\x20\x0b\x56\x54\x72\xe8\xcf\xf4\xe2\x0b\xd5\xa9\x86\xc7\x1f\ +\x36\xce\xc8\x5e\x5b\xe1\x18\x5a\xb2\x6e\x2a\x23\xd8\x1e\xe5\x32\ +\x6b\x1e\xec\xca\x8e\x61\xe2\x3f\x92\xee\xa2\x9e\x9b\x2e\xd5\xdc\ +\x97\x75\x2c\x3a\x34\x7a\x98\x76\x36\xf2\x47\x52\xe2\xa1\xf2\x51\ +\xf3\x6c\xec\x85\xd7\xa9\x27\x63\x67\x25\xbd\x41\x71\xd0\xf9\x28\ +\xf9\x0d\xea\x41\xd0\x84\x89\x6e\x83\x96\x7d\xb4\x9c\xc0\xeb\x91\ +\x67\xa5\xf2\x47\x9b\x3d\x95\xa0\x9f\x6d\x27\x31\xef\x7a\xcf\xcb\ +\xe4\x8f\x36\x7b\x2a\xce\xe2\xb2\x9a\x95\xd3\x4c\xc8\x58\x58\x1f\ +\x24\xad\x63\x4c\x8e\xc0\xc0\x5c\xf0\xd0\x49\xdc\x19\xee\x4e\xe0\ +\x05\x75\x55\xea\x5c\x94\xd2\xc9\x14\xa6\x32\xe6\xb8\xb0\xba\x27\ +\xeb\x91\x92\xd3\x67\x59\xdb\xa2\xe5\x57\xb9\xbe\x35\xef\x62\x1c\ +\x48\x23\x70\xdd\x4f\x1c\xae\x71\x38\x8d\xec\x33\x68\x00\x5c\x92\ +\x6d\x6f\x3a\xfa\x7f\x0f\x39\x7f\x99\x2e\xfe\x5f\x8f\xea\xb8\xdd\ +\x69\x2a\xb7\xc9\x8f\x2b\x51\xfe\x9f\x5d\xd8\x6a\xa7\x57\x19\x31\ +\xe5\x2a\x7f\xd3\xeb\x3f\xb6\xbd\x7e\xdd\xfa\x7f\x2f\xe2\x7e\xe2\ +\x71\xf9\xa3\x4a\x74\x94\x5d\x23\x8e\x73\xc6\x51\x75\xf1\x8e\xe5\ +\x42\x4b\xa5\x40\x25\x48\x8b\xa0\x5b\xa5\xba\x6a\x10\x39\x09\x11\ +\x74\x0a\x84\x5d\x17\x40\xb7\x45\xd2\x21\x03\x97\x5e\xa0\xb6\xf5\ +\xf4\x43\x7a\x59\xdd\xea\xa4\x9f\xf3\x5c\x4a\xcf\x25\x1b\x7d\x52\ +\xa6\xf9\x31\x55\xbf\xfa\x6d\x67\xe3\x56\x25\xec\xf4\x4c\x28\x52\ +\xe1\x42\xde\xdc\xe1\x29\x5b\xb1\xc7\xcd\xc7\xd9\x0b\xcb\xfc\x26\ +\x36\xd5\x72\xf3\x34\x67\xfa\xae\x1e\xe5\xea\x94\xa3\x63\x8f\x9b\ +\x8f\xb2\x17\x97\xf8\x53\x6d\xaa\x9d\xe7\xa5\xa5\x3e\xa9\xe5\xfc\ +\x96\x6b\x51\x8f\x48\xfd\x07\x88\xf5\x25\x48\x56\x5b\x5f\x6a\x31\ +\xd8\xa3\xe4\x33\xb2\x17\x2d\x17\x93\x67\x24\x29\xf5\x14\xec\x31\ +\xf3\x6c\xec\x85\xcf\x45\xe4\xdb\xf3\xf5\x94\x1d\x17\x42\x44\x20\ +\xe6\x9b\x6e\xfe\x63\xf1\x3d\x67\xde\x2f\x19\xe6\xff\x00\x0a\xd0\ +\x4f\xb7\x7f\x30\x7a\xdc\xa8\xa3\xda\xb7\x92\x3a\x90\x54\x32\x9d\ +\xee\x26\xcd\x36\xb9\xce\x73\x0d\x3e\x75\x65\x43\x93\x15\x72\xb1\ +\xd2\x43\x18\x91\x98\xb0\x5c\x10\x33\x80\x09\xd2\x47\xc6\x5d\x54\ +\xf4\xaf\x93\x3d\x8e\x1c\xfb\x4d\x6d\xcf\x36\x24\x68\x27\xc5\xd1\ +\xbc\x55\x9d\x2d\x54\x90\x34\x35\x92\x4d\x1b\x45\xcd\x9d\x15\xc5\ +\xc9\xb9\xce\x1b\xbe\x77\xd7\xb6\xf8\xee\x6e\xae\xac\x6e\xbf\x0c\ +\xf4\xc5\x14\xda\x85\x58\xcd\xb5\x2c\xbf\x33\x4b\xba\xae\xa6\xd4\ +\x39\xdd\x0c\xb2\x89\x23\x7b\x35\xda\x69\xe0\x05\xf6\x63\x5a\xe7\ +\xe1\x20\xb8\xba\xd9\xbc\x53\xe7\xd0\xb4\x71\x65\x44\xe3\x44\xf0\ +\xbb\xcc\x6e\xd3\xda\x3d\x4b\xb1\x99\x55\x3f\xc2\x8a\x37\x8f\x33\ +\x81\xbf\xad\xa3\xad\x39\xfc\x7f\x3f\x3f\x15\xe2\xe4\xcb\x78\xdf\ +\xf1\x3f\x3f\x62\x63\x25\xdc\x73\xb6\x56\xbb\x3b\x48\x77\x24\x83\ +\xd4\x9c\x54\xae\xd5\xca\x77\xf9\x5a\x06\x13\xbf\xad\xc6\xe3\xf6\ +\x5c\x4a\x51\x57\xa9\xa7\x4c\x52\xc3\xc9\x7c\xf1\x01\xd4\x17\x89\ +\xa4\x28\x5d\x6c\x82\x81\xfe\x4e\xb2\x66\x1d\xec\x71\x4b\xda\xb9\ +\x53\x7e\xa1\x69\xda\x57\x46\x79\xd8\x4f\x5b\x48\x41\x5f\x74\x5d\ +\x77\xff\x00\xf9\xca\x8f\x81\x25\x24\xbc\x52\x3a\x33\xea\x20\xa8\ +\xdf\xa8\x35\x83\xf8\x52\xef\x3c\x52\x46\xf1\xed\x2d\x41\xc8\x95\ +\x2c\x94\xd3\x33\x6f\x4f\x50\xde\x38\x9c\xee\xc5\xd7\x3b\xaa\xd8\ +\x36\xc7\x0f\x2c\x3a\x3e\xd0\x08\x27\x45\xd4\x71\xce\xd7\x6d\x5c\ +\xd7\x72\x5c\x1d\xd4\xa4\xb2\x01\x2a\x44\x20\x5b\xa1\x22\x2e\x81\ +\xca\xe7\x22\x19\x7d\x51\x6f\xc9\xa3\xaa\x3e\xb9\xa9\x87\xe6\xa9\ +\x6e\xb4\x3e\x0f\x59\x7a\xe9\x8f\xc5\xa2\x03\xeb\xd4\x0f\xfc\x6a\ +\xc4\xaf\x40\xc2\x85\x21\x08\x5a\x60\xda\x56\xec\x71\xf3\x71\xf6\ +\x42\xf3\x1f\x0b\x0d\xb5\x4f\x1d\x14\x47\xd5\x3c\xeb\xd4\xa9\x06\ +\xc7\x1f\x37\x1f\x64\x2f\x31\xf0\xbc\xdd\x9d\xbe\x7a\x13\xec\x96\ +\x53\xef\x52\xb5\x18\x62\x84\x14\x2c\xb4\xb8\xd4\x43\xb0\xc7\xcd\ +\xb3\xb2\x14\x34\x9b\x41\xc6\xfe\xd9\x52\x6a\x19\xd8\x63\xe4\x37\ +\xb2\x14\x54\xbb\x5f\xa5\x27\xde\x39\x04\xe1\x2a\x6a\x5b\xa0\xe7\ +\x97\x6e\xee\x67\xf1\x15\x45\x16\xd5\xbc\x96\xf5\x2b\xc9\x8f\x8e\ +\x79\x93\xda\x2a\x8a\x2d\xab\x79\x2d\xea\x40\x3a\x30\x73\xe1\x17\ +\xdf\xb0\xba\x7b\x1c\xe6\xed\x5e\xf6\xf1\x3d\xe0\x7a\xae\x82\x91\ +\x04\xbf\xa6\x4b\xc2\x17\x0d\xe7\x86\x3c\x7b\x42\xd4\xe4\x6e\x48\ +\x1d\x52\x8a\x79\x31\xc1\x13\xa2\x91\xac\x1f\xb3\x93\x8a\xec\x0e\ +\xb9\x73\x5e\x08\xf5\x2c\x89\x5e\xab\xe0\x61\xbf\xb3\xd6\x7a\x4c\ +\x63\xfa\x2d\xfc\xd5\x89\x55\xb3\xf8\x2d\xaa\x6e\xd1\xf0\xbf\x93\ +\x3c\xec\x3e\xa7\xb0\x8f\x6a\xaf\x9f\x21\x35\x42\x3f\xf0\x65\x77\ +\x9d\x8e\xa5\x94\x7a\x9a\xe0\xef\x62\xf6\x5b\x22\xc9\xa4\xdb\xc1\ +\xea\xb5\x0e\xa9\x9e\x56\x09\x00\xff\x00\x36\x96\xa1\x8d\xfa\xd6\ +\x70\x55\xe2\x20\x0d\x83\x22\xbf\xf9\x52\xb5\xae\xf5\x78\xa5\x7d\ +\x12\x02\x8a\x7a\x46\x48\x2d\x23\x19\x20\xde\x91\xad\x78\xf6\xa6\ +\x8d\xbc\x08\x3e\x46\xff\x00\xc4\xb7\x89\xc6\x41\xd6\xe5\x2b\x35\ +\x6a\x66\x68\xa8\x7b\x79\xc6\x06\xfb\x9a\xbd\x96\x6c\x8e\xa0\x7e\ +\x9a\x38\x01\xdf\x8d\x82\x13\xeb\x8e\xc5\x70\x4d\xe0\xea\x89\xdb\ +\x5d\x7e\x2e\x44\xef\x70\xf5\x49\x88\x26\x97\x6f\x38\xa6\xca\xfa\ +\xc1\xb5\x9a\x39\x38\x9c\xe1\xef\x72\xed\x66\x5c\xd4\x8d\xbc\x2c\ +\x78\xfa\x0e\xed\x35\xab\x4f\x55\xe0\xa2\x17\x6d\x6a\x1d\xfc\xe8\ +\x21\x9b\xb3\x81\x55\xcf\xe0\x9a\x61\xe4\xe5\xa6\x77\x4f\x4c\x7e\ +\xc6\x20\x9a\x37\x15\xae\xca\xaa\x69\x3c\xbe\xa7\x44\xef\x39\x84\ +\x13\xf6\x09\x48\x35\x43\x51\xdd\xb6\xa7\x74\x07\x7d\x92\x4b\x05\ +\xbd\x60\x27\x4f\xe0\xe2\xbd\x9a\x23\x73\xf9\xaa\x88\x5f\xf7\xd8\ +\x4a\xae\x9b\x25\xeb\xa3\xdb\x41\x52\x38\xe9\x5f\x28\xfa\xd1\x1b\ +\x28\x2d\xa3\xa4\xd4\xb9\x3c\x9d\x5d\x4b\x3f\x98\xc9\x87\xda\xba\ +\x94\xe4\xcc\x4e\xf2\x7a\xa4\xce\x29\xa0\xb7\x67\x0a\xc8\xd4\x53\ +\x90\x6d\x23\x61\xbe\xf4\xb8\xa2\x77\xa9\xed\x29\xac\xa7\x23\x3b\ +\x62\x70\xf3\xc3\x23\x40\xfb\x2e\x08\xad\x79\xc8\xfa\x93\xe4\xe7\ +\xa2\x9b\x8a\x47\x46\x4f\xaf\x12\x86\x4c\x95\xd5\x06\xff\x00\x0b\ +\x8c\x6f\xc5\x2b\x1f\xd7\x85\x66\x45\x44\x8d\xf8\x75\x2c\xe3\x0f\ +\x78\xf5\xb9\xae\x0a\x78\x72\x82\x76\x1f\x16\xac\x5f\x79\xd6\x07\ +\xd8\x5a\x82\xce\x6d\x4f\xa8\x67\x94\xa4\xa9\x67\xf2\xb1\x8f\xb0\ +\x4a\xb0\xc8\xac\xa0\xa7\xa5\xac\x9d\xb5\x0e\x92\x27\x4b\x15\x14\ +\x31\xe2\x86\x51\xe3\xba\x69\x85\x8f\x8b\x71\x72\xe6\xe7\xd1\xea\ +\x5c\x10\x65\xbd\x7b\x06\x69\x43\x80\xf9\x6f\x68\xf6\xe2\x5d\x79\ +\x21\xa9\x52\xea\xd5\x7f\xeb\x3a\xa0\x45\x3d\x31\x89\x8c\x00\xe6\ +\x9e\x58\xae\xe6\x01\x60\x2e\x1a\x5c\x5c\x4d\xbe\x10\x1b\xa6\xd6\ +\x25\x7a\xc6\x14\x27\xd9\x0a\xb2\x6d\x20\xd8\xe3\xe6\xe3\xec\x85\ +\xe6\x9e\x18\x5b\xb2\xc4\x77\xe8\xa7\xf6\x3f\xff\x00\x6b\xd3\xe9\ +\x1b\xb1\x45\xcd\xc7\xd8\x0a\xa7\x29\x32\x36\x9b\x54\x70\xeb\xe6\ +\x56\xb9\x8c\x7c\x6d\x74\x4f\x0d\x38\x1f\x6c\x40\x87\x02\x0e\x81\ +\xb8\x95\x5e\x0c\x4f\xb4\xd8\x79\xce\xf7\x1a\xd2\xea\x2f\x83\xda\ +\xfa\xab\x3b\x5a\xfd\x1a\x33\x9f\x5c\xa9\xbb\x09\x1f\x26\x3d\xb9\ +\xf9\xc3\x47\x9d\x7a\xc6\xa2\x64\x7d\x1d\x15\x8c\x10\x34\x49\x6b\ +\x6b\xcf\xd9\x27\x3f\x4d\xd9\xdb\xc4\xdb\x0f\x32\xb8\xc2\xa6\x97\ +\x6c\x26\xa7\x78\x2b\x86\x28\xda\xc7\x55\x54\xbc\x80\x05\xd8\xd8\ +\x23\x6e\x8d\xc0\x58\xe3\xed\x51\x4d\xe0\xa1\x80\x6c\x35\x72\x37\ +\x3b\x8d\xa6\x89\x92\xe7\x2e\x24\xe7\x61\x66\xfa\xf4\x0c\x28\xc2\ +\x88\xf2\xda\x8f\x06\x75\xad\xda\x49\x4d\x2f\xd2\x92\x27\x1f\x98\ +\xb4\x8f\xb4\xaa\xea\x32\x43\x54\x23\xdb\x51\xca\xe1\xbf\x11\x8e\ +\x61\xea\x63\x8b\xbd\x8b\xd9\x70\xa5\xc2\x9a\x36\xf9\xf6\xb2\x99\ +\xf1\xca\x5b\x24\x72\xc6\x75\x97\x66\x96\x39\x22\x27\xc6\xde\x78\ +\x17\x59\xf8\xb6\xad\xe4\xb7\xa9\x7a\xbf\x85\x91\xb3\xd2\x7a\x3d\ +\x4f\xde\x46\xbc\xa2\x1d\xab\x79\x2d\xea\x51\xa3\x8a\x42\x6d\x9f\ +\x73\xa9\x5d\xe4\xee\x47\xd5\xea\x81\xfd\x9e\x3d\x8a\xf6\x75\x44\ +\x97\x64\x0d\x3b\xa3\x15\xae\xe3\xe6\x68\x27\x7e\xcb\xd5\xf2\x67\ +\xc1\x95\x25\x1e\x19\x24\x1f\xa5\x54\x0b\x11\x24\xad\x1a\xdc\x67\ +\xfc\xb8\xb3\x81\xc6\x6e\x77\x88\x41\xe6\xd9\x35\xe0\xee\xb2\xbb\ +\x0b\xcb\x7f\x46\xa7\x39\xf5\xe9\x9a\x6e\xf1\xbf\x1c\x79\x8b\xf8\ +\xcd\x9b\xe7\x2b\xd7\x72\x6b\x25\xe0\xd4\xe8\x4c\x50\x63\x38\x9d\ +\x8e\x47\xc8\x6e\xf9\x1f\x84\x36\xe6\xd6\x00\x58\x01\x60\x07\xbd\ +\x5d\xe1\x49\x85\x56\x51\xd9\x16\x52\xe1\x49\x85\x54\x47\x64\x59\ +\x4b\x85\x26\x14\x11\xd9\x16\x52\xe1\x46\x14\x11\x59\x16\x52\x61\ +\x4b\x85\x04\x58\x51\x85\x49\x85\x18\x50\x46\xe6\xdc\x58\xe7\x1b\ +\xc7\x38\xf5\x2a\xea\x9c\x9a\xa3\x97\x3c\x94\x74\xce\x3b\xe6\x08\ +\xc3\xbe\xb0\x17\x56\xd8\x51\x85\x06\x66\x6f\x07\xf4\x0e\xd1\x0b\ +\xe3\xe6\xe7\x9d\xbe\xc2\xe2\x3d\x8a\xbe\xa3\xc1\x7d\x3b\xb6\x95\ +\x15\x2d\xf3\x3f\x59\x95\xbd\x80\x7d\xab\x6b\x85\x18\x51\x5e\x63\ +\x5b\xe0\x73\x18\x2d\x6d\x4c\x20\x3a\xc0\xbb\xf4\x5c\x12\x35\xb7\ +\x17\x20\x87\x90\x4d\xaf\xa4\x59\x7a\x0e\xa6\xea\x64\x54\xd0\xc7\ +\x04\x2d\xc1\x14\x4d\x0d\x63\x74\x9b\x6e\x92\x77\x49\x37\x24\xee\ +\x92\x4a\xee\xc2\x8c\x28\x22\xb2\x14\xb8\x50\x88\x6d\x18\xd8\xa2\ +\xe6\xe3\xec\x05\x29\xcd\xa7\xcc\x3d\x79\x82\x6d\x1b\x76\x28\xb9\ +\xb8\xfb\x01\x53\xe5\x9c\x45\xd4\xad\x02\x57\x45\x7a\xba\x16\xe2\ +\x61\x00\x8c\x55\x51\xb2\xf9\xfe\x2e\x2c\x7c\x6c\x17\xcd\x75\x71\ +\x93\x2c\xa4\xbf\x0d\xaa\xee\xc8\xb2\x6d\x3d\x4b\x25\x18\xa3\x7b\ +\x5e\xd3\x7c\xed\x37\x1a\x54\xb8\x56\x25\x96\x6e\x24\xb2\xcd\xc3\ +\x2c\x8b\x27\xe1\x46\x15\x54\xcb\x22\xc9\xf8\x51\x85\x06\x37\x2e\ +\xf2\x3a\x7a\xf7\x42\xf8\x1f\x13\x4c\x51\xcc\xc2\xd9\x4b\xda\x1d\ +\x8c\xb0\x82\x1c\xd6\xba\xdb\x5d\xed\xd5\x55\x92\xde\x07\xe0\x80\ +\x31\xf5\xce\x15\x52\x00\x36\x26\xdc\x52\xb4\x81\xba\x0e\x79\x7e\ +\x7b\x0f\x92\xbd\x1f\x0a\x30\xa2\xa2\x8e\x20\xd0\x1a\xd0\x1a\xd6\ +\x80\x1a\xd6\x80\x1a\xd0\x34\x00\x06\x81\xe6\x4e\xb2\x7e\x14\x61\ +\x44\x32\xc8\xb2\x7e\x14\x61\x40\xcb\x22\xc9\xf8\x51\x85\x03\x2c\ +\x8b\x27\xe1\x46\x14\x0c\xb2\x2c\x9f\x85\x18\x50\x32\xc8\xb2\x7e\ +\x14\x61\x40\xcb\x22\xc9\xf8\x51\x85\x03\x2c\x8b\x27\xe1\x46\x14\ +\x0c\xb2\x2c\x9f\x85\x18\x50\x32\xc8\xb2\x7e\x14\x61\x40\xcb\x24\ +\x52\x61\x42\x94\x47\x47\xe4\xa2\xe6\xe3\xec\x85\x0e\xa9\xea\x4c\ +\x35\x4c\x11\xce\xc1\x23\x03\xda\xf0\xd2\x5c\xd1\x88\x5e\xdb\x52\ +\x2e\x33\x91\x6d\x06\xea\x6a\x3f\x25\x17\x37\x1f\x64\x29\x92\xcd\ +\xb5\x32\xb8\xdd\xcf\x85\x54\x53\xe4\xad\x2c\x73\x36\x78\xd8\xf6\ +\x3d\x8d\xc2\xd6\xb6\x69\x5b\x10\x17\x27\x68\x1d\x63\xa7\x41\xcd\ +\xe6\x56\xe8\x42\x49\x27\x63\x2c\xf2\xcb\xcd\x77\xa0\x84\x21\x56\ +\x42\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\ +\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\ +\x84\x02\x10\x84\x02\x10\x84\x1f\xff\xd9\ +\x00\x00\x15\x5b\ +\xff\ +\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ +\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x06\x10\x0f\x0f\x0f\x0f\ +\x0f\x0f\x0f\x0f\x0f\x10\x0f\x0e\x0f\x10\x0f\x0f\x10\x10\x0f\x0e\ +\x0d\x0f\x15\x10\x15\x14\x14\x10\x14\x15\x17\x1c\x26\x1e\x17\x19\ +\x24\x19\x15\x14\x1f\x2f\x20\x23\x27\x29\x2c\x2c\x2c\x15\x1e\x31\ +\x35\x30\x2a\x35\x26\x2b\x2c\x29\x01\x09\x0a\x0a\x0e\x0c\x0e\x18\ +\x0f\x0f\x1a\x29\x1e\x1c\x1c\x29\x29\x29\x35\x29\x29\x29\x2e\x2d\ +\x29\x34\x2d\x2c\x2f\x2a\x29\x29\x29\x2d\x35\x29\x29\x29\x29\x29\ +\x29\x2c\x35\x29\x29\x29\x2d\x31\x35\x35\x29\x36\x29\x29\x29\x32\ +\x29\x29\x2c\x29\x29\x2c\x29\x2c\x29\xff\xc0\x00\x11\x08\x00\xcc\ +\x00\xf7\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1c\ +\x00\x00\x01\x05\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x01\x02\x03\x05\x06\x04\x07\x08\xff\xc4\x00\x51\x10\x00\ +\x01\x03\x02\x01\x03\x0e\x08\x0a\x08\x04\x07\x01\x00\x00\x00\x01\ +\x00\x02\x03\x04\x11\x12\x06\x21\x31\x05\x13\x23\x32\x41\x51\x53\ +\x71\x72\x73\x93\xb1\xb2\xd2\x07\x22\x33\x61\x74\x91\xa1\xc1\x42\ +\x52\x62\x81\x82\x92\xa2\xb3\xc2\xd1\x14\x15\x24\x34\x44\x83\xa3\ +\xc3\x43\x63\x75\x84\x54\x64\xa4\xb4\xd3\xe1\xf0\x16\xff\xc4\x00\ +\x1a\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x01\x02\x03\x04\x06\x05\xff\xc4\x00\x2a\x11\x01\x01\ +\x00\x02\x01\x02\x03\x08\x02\x03\x00\x00\x00\x00\x00\x00\x00\x01\ +\x02\x11\x03\x12\x31\x04\x32\x51\x05\x13\x21\x22\x35\x41\x71\xb1\ +\x14\xc1\x61\x72\xb2\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\ +\x00\x3f\x00\xb2\x86\x77\x96\xb4\x99\x25\xda\xb7\xfc\x59\x34\xd8\ +\x7c\xa4\xfd\x79\xfc\x24\xbd\x2c\x9d\xe4\xc8\x07\x88\xce\x4b\x7a\ +\x82\x7e\x15\xe8\xd4\x78\xf7\x46\xba\xfe\x12\x5e\x96\x4e\xf2\x35\ +\xe7\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\x50\xdd\xf5\x1a\xf3\xf8\ +\x49\x7a\x59\x3b\xc8\xd7\x9f\xc2\x4b\xd2\xc9\xde\x45\x91\x85\x35\ +\x0d\xd1\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x79\xfc\x24\xbd\x2c\x9d\ +\xe4\x61\x46\x14\xd4\x37\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\x35\xe7\ +\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\x50\xea\xa3\x5e\x7f\x09\x2f\ +\x4b\x27\x79\x1a\xf3\xf8\x49\x7a\x59\x3b\xc8\xc2\x8c\x29\xa8\x6e\ +\x8d\x79\xfc\x24\xbd\x2c\x9d\xe4\x6b\xcf\xe1\x25\xe9\x64\xef\x23\ +\x0a\x30\xa6\xa1\xba\x35\xd7\xf0\x92\xf4\xb2\x77\x91\xaf\x3f\x84\ +\x97\xa5\x93\xbc\x8c\x28\xc2\x9a\x86\xe8\xd7\x9f\xc2\x4b\xd2\xc9\ +\xde\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\x30\xa3\x0a\x6a\x1b\xa3\x5e\ +\x7f\x09\x2f\x4b\x27\x79\x1a\xf3\xf8\x49\x7a\x59\x3b\xc8\xc2\x8c\ +\x29\xa8\x75\x5f\x51\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x79\xfc\x24\ +\xbd\x2c\x9d\xe4\x61\x46\x14\xd4\x37\x7d\x46\xba\xfe\x12\x5e\x96\ +\x4e\xf2\x35\xe7\xf0\x92\xf4\xb2\x77\x91\x64\x61\x4d\x43\x74\x6b\ +\xcf\xe1\x25\xe9\x64\xef\x23\x5d\x7f\x09\x2f\x4b\x27\x79\x18\x51\ +\x85\x35\x0d\xd1\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x75\xfc\x24\xbd\ +\x2c\x9d\xe4\x61\x46\x14\xd4\x37\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\ +\x35\xe7\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\xa6\x1b\xa4\xd7\x9f\ +\xc2\x4b\xd2\xc9\xde\x42\x52\x12\x26\xa1\xd5\x4b\x03\x7c\x46\x72\ +\x1b\xd9\x09\xf8\x52\xc2\x36\x36\x72\x1b\xd9\x0b\x18\xfc\xa6\xaa\ +\x1a\xdf\x8f\x19\xc7\x10\x79\xbc\x4d\xcc\x73\x66\x16\x23\x36\x75\ +\x2e\x5a\x6a\x63\x72\xec\xd9\x61\x46\x15\x8f\x6e\x56\x54\x8e\x00\ +\xf1\xc4\xf1\xd5\x22\x78\xcb\x1a\x80\x5a\x0c\x70\x1b\xb9\xad\xd1\ +\x23\x6d\x72\x05\xf6\xc7\x7d\x4e\xb8\xbe\xef\x26\xb7\x0a\x30\xaa\ +\x69\x75\x6a\x66\xc4\xf9\x70\x42\x70\x34\xba\xd7\x90\x12\x90\xea\ +\xe4\xdc\x1c\x3f\x5a\x4f\xc9\x5e\xb8\x9e\xef\x25\xd6\x14\x61\x54\ +\xbf\xaf\x66\xe0\xe1\xfa\xf2\x77\x51\xfa\xf6\x6e\x0e\x1f\xae\xfe\ +\xea\x75\x43\xdd\xe4\xba\xc2\x8c\x2b\x31\x57\x94\x15\x03\x5e\x2d\ +\x31\xc7\xad\xc5\x8c\x00\xdd\x70\x38\xd9\xe7\x39\x75\x8f\xc1\x1a\ +\x15\x73\x72\xd2\xa8\x69\xd6\x0f\x1c\x4f\x1d\x4f\x53\xae\x2f\xba\ +\xad\xc6\x14\x61\x58\xc6\xe5\xcc\xfb\xb1\x40\x78\xb5\xc6\xfb\xca\ +\x99\xb9\x7a\xfd\xda\x66\x1e\x29\x9c\x3a\xd8\x55\xeb\x89\xee\xf2\ +\x6b\x70\xa3\x0a\xcb\xb7\x2f\x5b\xf0\xa9\x9d\xf4\x65\x6b\xba\xda\ +\x15\xae\xa2\x65\x14\x75\x6e\x7b\x1b\x1c\x8c\x73\x1a\x1e\x71\xe0\ +\x20\x82\x6d\x98\x82\x52\x65\x2a\x5c\x2c\x59\xe1\x46\x15\x2e\x14\ +\x61\x5a\x65\x16\x14\x61\x52\xe1\x46\x14\x11\x61\x46\x15\x2e\x14\ +\x61\x41\x16\x14\x61\x52\xe1\x46\x14\x11\x59\x18\x54\xb8\x51\x85\ +\x04\x58\x51\x65\x2e\x14\x61\x41\x16\x14\x61\x52\xe1\x46\x04\x34\ +\x8b\x0a\x30\xa9\x70\x23\x02\x1a\x47\x85\x09\xf8\x50\xa2\x96\x99\ +\xbe\x2c\x7c\x96\x75\x05\xe6\xb3\xff\x00\x81\xcc\x5b\xd5\xad\xaf\ +\x4e\xa5\x1e\x2c\x7c\x96\x75\x05\xe6\x55\x43\xc8\xf3\x72\x0f\x51\ +\x8d\x73\xcd\xdb\x8b\xee\x8d\x35\xda\x59\xce\x45\xf7\x8d\x4e\x4d\ +\x93\xe0\xf3\x91\x7d\xe3\x57\x37\x66\x96\xac\xfe\xc9\x3f\x34\xee\ +\xca\x61\x39\xcf\x19\x4e\xa9\xfd\xd2\x7e\x65\xfd\x92\x98\x4a\x05\ +\x42\x44\xb7\x41\xc1\x5b\xa2\xa7\xd1\xc7\x66\x65\x42\xaf\xaa\xff\ +\x00\x89\xf4\x71\xd5\x32\xa1\x40\x24\x4a\x91\x00\xb4\xd9\x00\x36\ +\x79\xf9\x96\x7d\xe2\xcc\x95\xa9\xf0\x7c\x36\x6a\x8e\x66\x3e\xd9\ +\x5a\xc7\xbb\x19\xf9\x6b\x6b\x85\x18\x54\x96\x46\x15\xd9\xe6\x47\ +\x85\x18\x54\x98\x51\x85\x04\x76\x46\x15\x25\x92\x61\x40\xcc\x28\ +\xc2\xa4\xb2\x4b\x20\x66\x14\x61\x52\x61\x49\x64\x0c\xc2\x92\xca\ +\x5b\x22\xc8\x23\xb2\x2c\xa4\xb2\x2c\x82\x3b\x22\xca\x4b\x22\xc8\ +\x23\xb2\x13\xec\x95\x14\xb4\xcd\xf1\x23\xe4\xb3\xa8\x2f\x31\xaf\ +\x16\x74\x7e\x6f\xd2\x07\xaa\x46\xfe\x4b\xd4\x69\x9b\xe2\x47\xc8\ +\x67\x64\x2f\x31\xd5\x51\x69\x07\x3b\x56\x3f\xaa\x7f\x25\xcf\x37\ +\x5e\x3f\xbb\x95\x47\x2e\xe7\x2e\x2f\xbc\x6a\x90\xa8\xe6\xd1\xf4\ +\xa3\xed\xb5\x73\x76\x69\xa7\xfd\xd6\x7e\x66\x4e\xc1\x51\xa9\x25\ +\xfd\xda\x6e\x66\x4e\xc1\x51\x37\x40\x40\xa9\x52\x5d\x08\x38\xab\ +\x3f\x89\xf4\x71\xd5\x32\xa1\x57\xd5\x5f\xc4\x7a\x3b\x7f\xbc\xa8\ +\x06\x84\x0a\x91\x16\x7d\xae\x22\x95\xc0\xe8\x2d\x8d\xee\x07\x3d\ +\xb4\xd9\x26\x17\xf0\x52\x8e\x36\x10\x80\x2b\x5b\xe0\xe9\xbb\x35\ +\x4f\x35\x17\x6d\xcb\x24\x43\xb7\x9a\x38\xdc\x47\xe1\x57\x59\x29\ +\xab\xec\xa3\x7c\xae\x95\xb8\x84\x8c\x8d\xa3\x5b\x92\x2c\xc5\xae\ +\x71\x37\xc4\x46\xfa\xb3\xbb\x39\x4d\xc7\xa6\x61\x46\x15\x9a\x6f\ +\x84\x2a\x53\xf0\x26\xf9\x8d\x39\xfe\xe2\x95\xb9\x79\x48\x7e\x0c\ +\xe3\xe8\x46\x7a\x9e\x57\x5e\xa8\xe1\xd1\x5a\x0c\x28\xc2\xa9\x1b\ +\x96\xb4\x87\x76\x61\xfc\x97\x9e\xab\xa9\x46\x57\xd1\xf0\x8f\x1c\ +\x70\x54\x77\x13\x70\xe9\xbe\x8b\x6c\x28\xc2\xab\x06\x55\xd1\x70\ +\xe0\x71\xc7\x33\x7a\xd8\x9c\x32\x9e\x88\xff\x00\x15\x10\xe3\x25\ +\xbd\x61\x36\x9d\x35\x63\x85\x18\x57\x13\x72\x86\x8c\xff\x00\x17\ +\x4d\xf3\xcd\x18\xeb\x2a\x56\xea\xc5\x31\xd1\x53\x4e\x78\xa7\x8b\ +\xf3\x57\x66\xab\xa3\x0a\x30\xa6\x36\xb6\x23\xa2\x68\x8f\x14\x8c\ +\x3e\xf5\x2b\x5c\x0e\x82\x0f\x11\x05\x0d\x1b\x85\x18\x54\x81\x87\ +\x78\xfa\x92\xeb\x67\x78\xfa\x91\x11\x61\x4b\x85\x3f\x0a\x30\xa0\ +\x8f\x0a\x30\xa9\x30\xa3\x0a\x06\x61\x42\x93\x0a\x11\x45\x3b\x76\ +\x36\x72\x19\xd9\x0b\xcc\x35\x70\x5a\x67\x0d\xea\xaa\xc1\xfd\x59\ +\x3f\x25\xea\x54\xe3\x63\x67\x21\x9d\x90\xbc\xc3\x28\x85\xa7\x93\ +\xcd\x59\x54\x3e\xd4\xa5\x63\x37\x5c\x15\xca\x39\xf6\xa7\x8d\xbd\ +\xa0\xa4\x51\xd4\xed\x1d\xff\x00\xdb\xab\x9b\xab\x4e\xef\xdd\xe6\ +\xe6\xa4\xec\x95\xcf\x19\xcc\x38\x87\x52\xe8\x1e\x42\x5e\x6d\xfd\ +\x92\xb9\x60\x3e\x2b\x79\x2d\xea\x41\x2d\xd0\x91\x08\x38\xea\xff\ +\x00\xc7\xf4\x71\xfd\xe5\x42\xdd\x03\xe6\x57\xd5\x5a\x67\xf4\x76\ +\xff\x00\x79\x67\x66\xf2\x6e\xe4\x1e\xca\xb3\xe2\x25\xd7\x8b\x05\ +\x84\x8f\x60\xde\x12\x3d\xa0\x6e\xe8\xbd\x82\xed\xd4\xe8\xe7\x99\ +\xae\x73\x26\xc4\x31\x90\x3f\x6e\xa6\x8d\xd9\x9a\x2f\xe2\x48\xf0\ +\xed\x37\xce\xb2\x45\x82\xe7\x30\xd2\x77\x06\xfa\x9a\x9c\x67\x3c\ +\x43\xde\xbf\x53\x0f\x65\xe7\xc9\x9c\xe3\x99\xc9\x7d\x75\xbf\xee\ +\x31\xd7\xa6\xd9\xba\x99\x5d\xf0\x5b\x52\xee\x44\x94\x72\xf5\x38\ +\xa6\x54\xd2\xd7\x44\x03\xa5\x6d\x64\x6d\x2e\x6b\x03\xa4\xa7\x84\ +\x30\xb9\xda\x1b\x8b\x45\xca\xc9\x6b\x4d\xf8\xad\xf5\x05\x6d\x93\ +\x14\xec\x75\x4d\x8b\x18\x47\xe8\xd5\xae\xb3\x9a\xd2\x2e\x29\xa4\ +\x20\xd8\x8d\x20\xe7\x4f\x19\xec\x8e\x5f\x09\xc3\x9f\x3e\x5c\x93\ +\x29\x8c\xde\xba\x6c\xbf\xf5\x4c\x79\x26\x57\x5a\x59\x9f\xd2\x37\ +\x4b\x8f\x2a\x06\x3b\xb2\x54\x64\x4b\xba\xc8\xcf\x2a\x8e\x43\xd4\ +\xae\x98\x73\x0e\x20\x9c\xbf\x29\xb5\x09\x0e\xdd\x86\x98\xf1\xd2\ +\xca\xd4\xc2\xf1\xbb\x0d\x27\xda\x8f\xdc\xb4\x20\xa5\xbf\x9d\x06\ +\x77\x5e\x67\x03\x4f\xf4\x6a\x9c\xdf\x72\x70\x95\x9c\x07\xd5\xac\ +\x79\x5a\x02\x98\x61\x69\xd2\xd6\x9e\x36\x82\x82\x90\x16\xf0\x15\ +\x1f\x46\x7c\x5d\x6e\x41\x6b\x37\x62\xac\x1f\x3c\x4e\xeb\x2a\xe0\ +\xd1\x44\x74\xc5\x17\x46\xcf\xc9\x27\xea\xf8\xb8\x28\xfe\x66\x81\ +\xd4\x82\x94\xc7\x0e\xeb\x6a\x87\x1c\x50\xbb\xf0\x94\xdd\x6a\x9f\ +\x7e\x51\xc7\x4c\xd3\xd4\xc5\x79\xfa\xbe\x3f\x8b\x6e\x27\x3c\x75\ +\x14\x9f\xab\xe3\xf9\x63\xf9\xb2\xf7\x90\x52\x88\xe0\xdc\x98\x8e\ +\x3a\x57\x8e\xa0\x13\xda\xf8\xc6\x8a\xb0\xdf\xa1\x33\x3f\x18\x56\ +\xdf\xab\x59\xbf\x27\x48\xe3\xd7\x74\x87\x53\x1b\xf1\xe4\xfe\x99\ +\xeb\x62\x0a\xf6\xd5\x91\xa3\x54\x00\xfe\x7c\xec\xfe\xe2\x95\x9a\ +\xa1\x3f\xc1\xd5\x10\x7f\xde\x4d\xde\x2b\xa4\xea\x50\xe1\x1d\xf3\ +\xb6\x23\xf8\x13\x0e\xa3\x83\xf0\xc7\xcf\x1b\x4f\x51\x08\x68\xac\ +\xd5\x1a\xdf\x83\x5b\x7f\xf7\x4e\x77\x5b\x4a\xe5\xd5\x0c\xaa\xae\ +\xa7\x2d\x69\xa9\x37\x70\x24\x12\xf8\xde\xdd\x36\xdd\x8d\x4c\xed\ +\x41\x07\x81\x3c\x70\x9e\xfa\xe4\xd5\x0d\x43\x0d\x86\x67\x06\xc3\ +\x9a\x29\x4e\x66\x39\xa7\x33\x09\xdf\x2a\xed\x35\x1b\x2c\x88\xa8\ +\xaf\x95\xb2\x49\x58\x5c\x62\x73\x62\x30\x17\x32\x28\xcb\xaf\x88\ +\x97\x00\xd0\x0e\x1b\x61\xce\x7e\x64\x2d\x4d\x2c\x21\x91\xb1\x83\ +\x30\x6b\x18\xd1\xc4\xd6\x81\xee\x48\xba\xb8\x5f\x8a\x4a\x61\xb1\ +\xb3\x9b\x67\x64\x2f\x2f\xca\x71\x6a\x89\x7d\x32\x6f\x6b\x64\x3e\ +\xf5\xea\x94\xcd\xd8\xe3\xe4\x33\xb2\x17\x97\x65\x68\xb5\x54\xfe\ +\x96\x7d\xb0\x93\xef\x59\xc9\xbc\x3b\xaa\x54\x55\x3b\x47\x72\x4a\ +\x91\x47\x55\xb4\x7f\x21\xdd\x45\x73\x75\x6a\x23\xf2\x4f\xe4\x3b\ +\xa9\x72\x53\xed\x19\xc8\x67\x64\x2e\xba\x7f\x26\xee\x49\xea\x5c\ +\x54\x9e\x4e\x3e\x6e\x3e\xc8\x41\x30\x48\x26\x6d\xf0\xe2\x6e\x2f\ +\x8b\x88\x62\xdf\xd1\xa5\x0b\x8c\x17\xeb\xf7\xb7\x8b\xb4\x07\x36\ +\x6f\x17\x17\xc4\xbe\x9f\x94\x81\xd5\x5a\x66\xf4\x71\xfd\xe5\x9d\ +\x9b\xc9\xbb\x90\x7b\x2b\x45\x53\xb6\x9b\xd1\xc7\x5c\xab\x39\x37\ +\x93\x77\x20\xf6\x55\xc7\xbc\x15\x70\x53\xba\x59\x5b\x13\x0b\x1a\ +\xe9\x25\x0c\x06\x47\x06\x30\x17\x3c\x36\xee\x71\xd0\x05\xee\x4e\ +\xe0\x05\x75\xd5\xea\x63\xe9\xa5\x7c\x72\x3a\x37\x16\x92\xdc\x70\ +\xbf\x5c\x8d\xc5\xa6\xce\xc2\xeb\x0b\x8b\x95\x5e\xe1\xe3\x5c\x12\ +\x0b\x5c\x48\x23\x70\xde\xeb\xa2\x39\x9c\xe2\x71\x12\x6c\x33\x68\ +\x16\xb9\x24\xe8\xf3\xaf\xa7\xf0\xd3\x97\xf9\x92\xef\xe5\xdd\xfd\ +\x57\x1b\xae\x94\x8a\xe3\x25\xbf\x79\x77\xa2\x57\xff\x00\xdb\x3d\ +\x53\xab\x7c\x96\xfd\xe1\xfe\x6a\x2a\xf3\xff\x00\x4e\xef\xcd\x7b\ +\xbd\xbb\xf4\xee\x6f\xf5\x67\x8f\xcd\x1a\x76\xe8\x1c\x49\x52\x04\ +\x2f\x89\x7a\x0a\x95\x35\x28\x40\xa8\x49\x74\x5d\x03\x81\x45\xd2\ +\x5d\x2a\x02\xe9\x52\x21\x02\xdd\x2a\x6a\x54\x0a\x84\x88\x40\xab\ +\x97\x55\x33\xc1\x28\xf8\xcc\x2d\xfa\xde\x2f\xbd\x74\xdd\x45\x52\ +\xcc\x41\x8d\xf8\xd3\xd2\xb3\xeb\x54\x46\xdf\x7a\x0f\x4b\x73\x73\ +\x9e\x33\xd6\x84\xfc\x3a\x50\xba\xed\xe7\xd1\x29\x9b\xb1\xc7\xc8\ +\x67\x64\x2f\x2e\xcb\x31\x6a\xba\x8f\x4a\x8c\xfa\xe9\x99\xf9\xaf\ +\x55\xa6\x1b\x1c\x7c\xdb\x3b\x21\x79\x6e\x5d\x36\xd5\x95\x1c\xfd\ +\x31\xf5\xd3\xc3\xf9\xac\xe4\xe9\x8f\x75\x0a\x8e\xa7\x68\xfe\x43\ +\xfb\x25\x48\xa3\xa8\xda\x3f\x90\xfe\xc9\x58\x74\x69\xe9\x3c\x99\ +\xe4\xae\x2a\x33\xb1\x45\xcd\xc7\xd8\x0b\xb2\x83\x69\xf4\x57\x0d\ +\x11\xd8\xa2\xe6\xe3\xec\x04\x1d\x0a\xbd\xa7\xf6\x8b\x5f\x77\x16\ +\x10\x47\x07\x6c\x67\x77\xcd\x6f\x9f\x42\xef\x5c\x46\x29\x35\xfb\ +\xd8\xe0\xbd\xf4\xf8\xbe\x4e\xd8\xad\x8b\x4d\xf3\x68\x40\xfa\x9d\ +\xb4\xbe\x8e\x3a\xe5\x59\xd9\xbc\x9b\xb9\xb3\xd9\x5a\x2a\x8d\xb4\ +\xbe\x8e\x3a\xe4\x59\xd9\xbc\x93\xb9\xb3\xd9\x57\x1e\xf0\x56\x53\ +\x52\xba\x69\x99\x13\x0b\x03\xe4\x95\xac\x69\x7b\x83\x1a\x0b\x9e\ +\x1a\x09\x3b\x83\x3d\xc9\xdc\x00\xae\xaa\xad\x4c\x92\x9a\x57\xc5\ +\x2e\x02\xe6\xb8\xb2\xf1\xbc\x48\xc7\x16\x9b\x3a\xce\x1a\x45\xca\ +\xaf\x7b\x7c\x6b\x83\x62\x1c\x48\x39\xb4\xdd\x74\x47\x33\x9c\x4e\ +\x23\x7b\x68\xcc\x00\x17\x24\x9b\x00\x37\xd7\xd3\xf8\x69\xcb\xfc\ +\xc9\x77\xf2\xee\xfe\xab\x8d\xd7\x4a\x45\x6f\x92\xfe\x5e\x5f\x35\ +\x0d\x7f\xdc\x2a\x85\x6f\x93\x1e\x5a\x7f\x40\xaf\xfb\xa0\x17\xb7\ +\xdb\xbf\x4f\xe6\xfc\x7f\x71\x9e\x3f\x34\x69\x90\x90\xe9\xf9\xd2\ +\xaf\x8a\x7a\x0a\x80\x52\x22\xe8\x1d\x74\x59\x71\xd6\xd1\x19\x1c\ +\xc3\x71\x61\xa6\xe0\x3a\xfe\x3b\x1d\xa0\x82\x0e\xd7\x75\x73\xc5\ +\x40\x58\xe7\xf8\xae\x7b\x6c\x03\x4d\xd8\x1c\x5a\x18\xd6\xda\xf7\ +\x04\x67\x07\x36\x8e\x24\x16\x89\x55\x4b\x63\x94\x60\xbe\xbb\x60\ +\xd6\x89\x08\x76\x22\x46\x26\x67\x6d\x89\xcf\x6c\x59\x80\xbe\x9c\ +\xe7\x32\xb0\xa6\xc5\x81\x98\xf6\xd8\x5b\x8b\x45\xf1\x5b\x3e\x8f\ +\x3a\x09\x90\x92\xe8\xba\x05\x45\xd1\x74\x20\x5b\xa2\xe9\x10\x81\ +\xc8\x89\xb7\x9a\x95\xbb\xf5\x94\x7e\xca\x86\x3b\xdc\x9a\xa6\xd4\ +\xd6\xde\xae\x84\x7f\xcd\xb0\xfd\x58\xe4\x7f\xe1\x48\x95\xe9\x21\ +\xa9\x14\xb6\x42\xe9\x5c\xa1\xb4\xcd\xd8\xe3\xe6\xd9\xd9\x0b\xcb\ +\xbc\x20\x0b\x56\x54\x72\xe8\xcf\xf4\xe2\x0b\xd5\xa9\x86\xc7\x1f\ +\x36\xce\xc8\x5e\x5b\xe1\x18\x5a\xb2\x6e\x2a\x23\xd8\x1e\xe5\x32\ +\x6b\x1e\xec\xca\x8e\x61\xe2\x3f\x92\xee\xa2\x9e\x9b\x2e\xd5\xdc\ +\x97\x75\x2c\x3a\x34\x7a\x98\x76\x36\xf2\x47\x52\xe2\xa1\xf2\x51\ +\xf3\x6c\xec\x85\xd7\xa9\x27\x63\x67\x25\xbd\x41\x71\xd0\xf9\x28\ +\xf9\x0d\xea\x41\xd0\x84\x89\x6e\x83\x96\x7d\xb4\x9c\xc0\xeb\x91\ +\x67\xa5\xf2\x47\x9b\x3d\x95\xa0\x9f\x6d\x27\x31\xef\x7a\xcf\xcb\ +\xe4\x8f\x36\x7b\x2a\xce\xe2\xb2\x9a\x95\xd3\x4c\xc8\x58\x58\x1f\ +\x24\xad\x63\x4c\x8e\xc0\xc0\x5c\xf0\xd0\x49\xdc\x19\xee\x4e\xe0\ +\x05\x75\x55\xea\x5c\x94\xd2\xc9\x14\xa6\x32\xe6\xb8\xb0\xba\x27\ +\xeb\x91\x92\xd3\x67\x59\xdb\xa2\xe5\x57\xb9\xbe\x35\xef\x62\x1c\ +\x48\x23\x70\xdd\x4f\x1c\xae\x71\x38\x8d\xec\x33\x68\x00\x5c\x92\ +\x6d\x6f\x3a\xfa\x7f\x0f\x39\x7f\x99\x2e\xfe\x5f\x8f\xea\xb8\xdd\ +\x69\x2a\xb7\xc9\x8f\x2b\x51\xfe\x9f\x5d\xd8\x6a\xa7\x57\x19\x31\ +\xe5\x2a\x7f\xd3\xeb\x3f\xb6\xbd\x7e\xdd\xfa\x7f\x2f\xe2\x7e\xe2\ +\x71\xf9\xa3\x4a\x74\x94\x5d\x23\x8e\x73\xc6\x51\x75\xf1\x8e\xe5\ +\x42\x4b\xa5\x40\x25\x48\x8b\xa0\x5b\xa5\xba\x6a\x10\x39\x09\x11\ +\x74\x0a\x84\x5d\x17\x40\xb7\x45\xd2\x21\x03\x97\x5e\xa0\xb6\xf5\ +\xf4\x43\x7a\x59\xdd\xea\xa4\x9f\xf3\x5c\x4a\xcf\x25\x1b\x7d\x52\ +\xa6\xf9\x31\x55\xbf\xfa\x6d\x67\xe3\x56\x25\xec\xf4\x4c\x28\x52\ +\xe1\x42\xde\xdc\xe1\x29\x5b\xb1\xc7\xcd\xc7\xd9\x0b\xcb\xfc\x26\ +\x36\xd5\x72\xf3\x34\x67\xfa\xae\x1e\xe5\xea\x94\xa3\x63\x8f\x9b\ +\x8f\xb2\x17\x97\xf8\x53\x6d\xaa\x9d\xe7\xa5\xa5\x3e\xa9\xe5\xfc\ +\x96\x6b\x51\x8f\x48\xfd\x07\x88\xf5\x25\x48\x56\x5b\x5f\x6a\x31\ +\xd8\xa3\xe4\x33\xb2\x17\x2d\x17\x93\x67\x24\x29\xf5\x14\xec\x31\ +\xf3\x6c\xec\x85\xcf\x45\xe4\xdb\xf3\xf5\x94\x1d\x17\x42\x44\x20\ +\xe6\x9b\x6e\xfe\x63\xf1\x3d\x67\xde\x2f\x19\xe6\xff\x00\x0a\xd0\ +\x4f\xb7\x7f\x30\x7a\xdc\xa8\xa3\xda\xb7\x92\x3a\x90\x54\x32\x9d\ +\xee\x26\xcd\x36\xb9\xce\x73\x0d\x3e\x75\x65\x43\x93\x15\x72\xb1\ +\xd2\x43\x18\x91\x98\xb0\x5c\x10\x33\x80\x09\xd2\x47\xc6\x5d\x54\ +\xf4\xaf\x93\x3d\x8e\x1c\xfb\x4d\x6d\xcf\x36\x24\x68\x27\xc5\xd1\ +\xbc\x55\x9d\x2d\x54\x90\x34\x35\x92\x4d\x1b\x45\xcd\x9d\x15\xc5\ +\xc9\xb9\xce\x1b\xbe\x77\xd7\xb6\xf8\xee\x6e\xae\xac\x6e\xbf\x0c\ +\xf4\xc5\x14\xda\x85\x58\xcd\xb5\x2c\xbf\x33\x4b\xba\xae\xa6\xd4\ +\x39\xdd\x0c\xb2\x89\x23\x7b\x35\xda\x69\xe0\x05\xf6\x63\x5a\xe7\ +\xe1\x20\xb8\xba\xd9\xbc\x53\xe7\xd0\xb4\x71\x65\x44\xe3\x44\xf0\ +\xbb\xcc\x6e\xd3\xda\x3d\x4b\xb1\x99\x55\x3f\xc2\x8a\x37\x8f\x33\ +\x81\xbf\xad\xa3\xad\x39\xfc\x7f\x3f\x3f\x15\xe2\xe4\xcb\x78\xdf\ +\xf1\x3f\x3f\x62\x63\x25\xdc\x73\xb6\x56\xbb\x3b\x48\x77\x24\x83\ +\xd4\x9c\x54\xae\xd5\xca\x77\xf9\x5a\x06\x13\xbf\xad\xc6\xe3\xf6\ +\x5c\x4a\x51\x57\xa9\xa7\x4c\x52\xc3\xc9\x7c\xf1\x01\xd4\x17\x89\ +\xa4\x28\x5d\x6c\x82\x81\xfe\x4e\xb2\x66\x1d\xec\x71\x4b\xda\xb9\ +\x53\x7e\xa1\x69\xda\x57\x46\x79\xd8\x4f\x5b\x48\x41\x5f\x74\x5d\ +\x77\xff\x00\xf9\xca\x8f\x81\x25\x24\xbc\x52\x3a\x33\xea\x20\xa8\ +\xdf\xa8\x35\x83\xf8\x52\xef\x3c\x52\x46\xf1\xed\x2d\x41\xc8\x95\ +\x2c\x94\xd3\x33\x6f\x4f\x50\xde\x38\x9c\xee\xc5\xd7\x3b\xaa\xd8\ +\x36\xc7\x0f\x2c\x3a\x3e\xd0\x08\x27\x45\xd4\x71\xce\xd7\x6d\x5c\ +\xd7\x72\x5c\x1d\xd4\xa4\xb2\x01\x2a\x44\x20\x5b\xa1\x22\x2e\x81\ +\xca\xe7\x22\x19\x7d\x51\x6f\xc9\xa3\xaa\x3e\xb9\xa9\x87\xe6\xa9\ +\x6e\xb4\x3e\x0f\x59\x7a\xe9\x8f\xc5\xa2\x03\xeb\xd4\x0f\xfc\x6a\ +\xc4\xaf\x40\xc2\x85\x21\x08\x5a\x60\xda\x56\xec\x71\xf3\x71\xf6\ +\x42\xf3\x1f\x0b\x0d\xb5\x4f\x1d\x14\x47\xd5\x3c\xeb\xd4\xa9\x06\ +\xc7\x1f\x37\x1f\x64\x2f\x31\xf0\xbc\xdd\x9d\xbe\x7a\x13\xec\x96\ +\x53\xef\x52\xb5\x18\x62\x84\x14\x2c\xb4\xb8\xd4\x43\xb0\xc7\xcd\ +\xb3\xb2\x14\x34\x9b\x41\xc6\xfe\xd9\x52\x6a\x19\xd8\x63\xe4\x37\ +\xb2\x14\x54\xbb\x5f\xa5\x27\xde\x39\x04\xe1\x2a\x6a\x5b\xa0\xe7\ +\x97\x6e\xee\x67\xf1\x15\x45\x16\xd5\xbc\x96\xf5\x2b\xc9\x8f\x8e\ +\x79\x93\xda\x2a\x8a\x2d\xab\x79\x2d\xea\x40\x3a\x30\x73\xe1\x17\ +\xdf\xb0\xba\x7b\x1c\xe6\xed\x5e\xf6\xf1\x3d\xe0\x7a\xae\x82\x91\ +\x04\xbf\xa6\x4b\xc2\x17\x0d\xe7\x86\x3c\x7b\x42\xd4\xe4\x6e\x48\ +\x1d\x52\x8a\x79\x31\xc1\x13\xa2\x91\xac\x1f\xb3\x93\x8a\xec\x0e\ +\xb9\x73\x5e\x08\xf5\x2c\x89\x5e\xab\xe0\x61\xbf\xb3\xd6\x7a\x4c\ +\x63\xfa\x2d\xfc\xd5\x89\x55\xb3\xf8\x2d\xaa\x6e\xd1\xf0\xbf\x93\ +\x3c\xec\x3e\xa7\xb0\x8f\x6a\xaf\x9f\x21\x35\x42\x3f\xf0\x65\x77\ +\x9d\x8e\xa5\x94\x7a\x9a\xe0\xef\x62\xf6\x5b\x22\xc9\xa4\xdb\xc1\ +\xea\xb5\x0e\xa9\x9e\x56\x09\x00\xff\x00\x36\x96\xa1\x8d\xfa\xd6\ +\x70\x55\xe2\x20\x0d\x83\x22\xbf\xf9\x52\xb5\xae\xf5\x78\xa5\x7d\ +\x12\x02\x8a\x7a\x46\x48\x2d\x23\x19\x20\xde\x91\xad\x78\xf6\xa6\ +\x8d\xbc\x08\x3e\x46\xff\x00\xc4\xb7\x89\xc6\x41\xd6\xe5\x2b\x35\ +\x6a\x66\x68\xa8\x7b\x79\xc6\x06\xfb\x9a\xbd\x96\x6c\x8e\xa0\x7e\ +\x9a\x38\x01\xdf\x8d\x82\x13\xeb\x8e\xc5\x70\x4d\xe0\xea\x89\xdb\ +\x5d\x7e\x2e\x44\xef\x70\xf5\x49\x88\x26\x97\x6f\x38\xa6\xca\xfa\ +\xc1\xb5\x9a\x39\x38\x9c\xe1\xef\x72\xed\x66\x5c\xd4\x8d\xbc\x2c\ +\x78\xfa\x0e\xed\x35\xab\x4f\x55\xe0\xa2\x17\x6d\x6a\x1d\xfc\xe8\ +\x21\x9b\xb3\x81\x55\xcf\xe0\x9a\x61\xe4\xe5\xa6\x77\x4f\x4c\x7e\ +\xc6\x20\x9a\x37\x15\xae\xca\xaa\x69\x3c\xbe\xa7\x44\xef\x39\x84\ +\x13\xf6\x09\x48\x35\x43\x51\xdd\xb6\xa7\x74\x07\x7d\x92\x4b\x05\ +\xbd\x60\x27\x4f\xe0\xe2\xbd\x9a\x23\x73\xf9\xaa\x88\x5f\xf7\xd8\ +\x4a\xae\x9b\x25\xeb\xa3\xdb\x41\x52\x38\xe9\x5f\x28\xfa\xd1\x1b\ +\x28\x2d\xa3\xa4\xd4\xb9\x3c\x9d\x5d\x4b\x3f\x98\xc9\x87\xda\xba\ +\x94\xe4\xcc\x4e\xf2\x7a\xa4\xce\x29\xa0\xb7\x67\x0a\xc8\xd4\x53\ +\x90\x6d\x23\x61\xbe\xf4\xb8\xa2\x77\xa9\xed\x29\xac\xa7\x23\x3b\ +\x62\x70\xf3\xc3\x23\x40\xfb\x2e\x08\xad\x79\xc8\xfa\x93\xe4\xe7\ +\xa2\x9b\x8a\x47\x46\x4f\xaf\x12\x86\x4c\x95\xd5\x06\xff\x00\x0b\ +\x8c\x6f\xc5\x2b\x1f\xd7\x85\x66\x45\x44\x8d\xf8\x75\x2c\xe3\x0f\ +\x78\xf5\xb9\xae\x0a\x78\x72\x82\x76\x1f\x16\xac\x5f\x79\xd6\x07\ +\xd8\x5a\x82\xce\x6d\x4f\xa8\x67\x94\xa4\xa9\x67\xf2\xb1\x8f\xb0\ +\x4a\xb0\xc8\xac\xa0\xa7\xa5\xac\x9d\xb5\x0e\x92\x27\x4b\x15\x14\ +\x31\xe2\x86\x51\xe3\xba\x69\x85\x8f\x8b\x71\x72\xe6\xe7\xd1\xea\ +\x5c\x10\x65\xbd\x7b\x06\x69\x43\x80\xf9\x6f\x68\xf6\xe2\x5d\x79\ +\x21\xa9\x52\xea\xd5\x7f\xeb\x3a\xa0\x45\x3d\x31\x89\x8c\x00\xe6\ +\x9e\x58\xae\xe6\x01\x60\x2e\x1a\x5c\x5c\x4d\xbe\x10\x1b\xa6\xd6\ +\x25\x7a\xc6\x14\x27\xd9\x0a\xb2\x6d\x20\xd8\xe3\xe6\xe3\xec\x85\ +\xe6\x9e\x18\x5b\xb2\xc4\x77\xe8\xa7\xf6\x3f\xff\x00\x6b\xd3\xe9\ +\x1b\xb1\x45\xcd\xc7\xd8\x0a\xa7\x29\x32\x36\x9b\x54\x70\xeb\xe6\ +\x56\xb9\x8c\x7c\x6d\x74\x4f\x0d\x38\x1f\x6c\x40\x87\x02\x0e\x81\ +\xb8\x95\x5e\x0c\x4f\xb4\xd8\x79\xce\xf7\x1a\xd2\xea\x2f\x83\xda\ +\xfa\xab\x3b\x5a\xfd\x1a\x33\x9f\x5c\xa9\xbb\x09\x1f\x26\x3d\xb9\ +\xf9\xc3\x47\x9d\x7a\xc6\xa2\x64\x7d\x1d\x15\x8c\x10\x34\x49\x6b\ +\x6b\xcf\xd9\x27\x3f\x4d\xd9\xdb\xc4\xdb\x0f\x32\xb8\xc2\xa6\x97\ +\x6c\x26\xa7\x78\x2b\x86\x28\xda\xc7\x55\x54\xbc\x80\x05\xd8\xd8\ +\x23\x6e\x8d\xc0\x58\xe3\xed\x51\x4d\xe0\xa1\x80\x6c\x35\x72\x37\ +\x3b\x8d\xa6\x89\x92\xe7\x2e\x24\xe7\x61\x66\xfa\xf4\x0c\x28\xc2\ +\x88\xf2\xda\x8f\x06\x75\xad\xda\x49\x4d\x2f\xd2\x92\x27\x1f\x98\ +\xb4\x8f\xb4\xaa\xea\x32\x43\x54\x23\xdb\x51\xca\xe1\xbf\x11\x8e\ +\x61\xea\x63\x8b\xbd\x8b\xd9\x70\xa5\xc2\x9a\x36\xf9\xf6\xb2\x99\ +\xf1\xca\x5b\x24\x72\xc6\x75\x97\x66\x96\x39\x22\x27\xc6\xde\x78\ +\x17\x59\xf8\xb6\xad\xe4\xb7\xa9\x7a\xbf\x85\x91\xb3\xd2\x7a\x3d\ +\x4f\xde\x46\xbc\xa2\x1d\xab\x79\x2d\xea\x51\xa3\x8a\x42\x6d\x9f\ +\x73\xa9\x5d\xe4\xee\x47\xd5\xea\x81\xfd\x9e\x3d\x8a\xf6\x75\x44\ +\x97\x64\x0d\x3b\xa3\x15\xae\xe3\xe6\x68\x27\x7e\xcb\xd5\xf2\x67\ +\xc1\x95\x25\x1e\x19\x24\x1f\xa5\x54\x0b\x11\x24\xad\x1a\xdc\x67\ +\xfc\xb8\xb3\x81\xc6\x6e\x77\x88\x41\xe6\xd9\x35\xe0\xee\xb2\xbb\ +\x0b\xcb\x7f\x46\xa7\x39\xf5\xe9\x9a\x6e\xf1\xbf\x1c\x79\x8b\xf8\ +\xcd\x9b\xe7\x2b\xd7\x72\x6b\x25\xe0\xd4\xe8\x4c\x50\x63\x38\x9d\ +\x8e\x47\xc8\x6e\xf9\x1f\x84\x36\xe6\xd6\x00\x58\x01\x60\x07\xbd\ +\x5d\xe1\x49\x85\x56\x51\xd9\x16\x52\xe1\x49\x85\x54\x47\x64\x59\ +\x4b\x85\x26\x14\x11\xd9\x16\x52\xe1\x46\x14\x11\x59\x16\x52\x61\ +\x4b\x85\x04\x58\x51\x85\x49\x85\x18\x50\x46\xe6\xdc\x58\xe7\x1b\ +\xc7\x38\xf5\x2a\xea\x9c\x9a\xa3\x97\x3c\x94\x74\xce\x3b\xe6\x08\ +\xc3\xbe\xb0\x17\x56\xd8\x51\x85\x06\x66\x6f\x07\xf4\x0e\xd1\x0b\ +\xe3\xe6\xe7\x9d\xbe\xc2\xe2\x3d\x8a\xbe\xa3\xc1\x7d\x3b\xb6\x95\ +\x15\x2d\xf3\x3f\x59\x95\xbd\x80\x7d\xab\x6b\x85\x18\x51\x5e\x63\ +\x5b\xe0\x73\x18\x2d\x6d\x4c\x20\x3a\xc0\xbb\xf4\x5c\x12\x35\xb7\ +\x17\x20\x87\x90\x4d\xaf\xa4\x59\x7a\x0e\xa6\xea\x64\x54\xd0\xc7\ +\x04\x2d\xc1\x14\x4d\x0d\x63\x74\x9b\x6e\x92\x77\x49\x37\x24\xee\ +\x92\x4a\xee\xc2\x8c\x28\x22\xb2\x14\xb8\x50\x88\x6d\x18\xd8\xa2\ +\xe6\xe3\xec\x05\x29\xcd\xa7\xcc\x3d\x79\x82\x6d\x1b\x76\x28\xb9\ +\xb8\xfb\x01\x53\xe5\x9c\x45\xd4\xad\x02\x57\x45\x7a\xba\x16\xe2\ +\x61\x00\x8c\x55\x51\xb2\xf9\xfe\x2e\x2c\x7c\x6c\x17\xcd\x75\x71\ +\x93\x2c\xa4\xbf\x0d\xaa\xee\xc8\xb2\x6d\x3d\x4b\x25\x18\xa3\x7b\ +\x5e\xd3\x7c\xed\x37\x1a\x54\xb8\x56\x25\x96\x6e\x24\xb2\xcd\xc3\ +\x2c\x8b\x27\xe1\x46\x15\x54\xcb\x22\xc9\xf8\x51\x85\x06\x37\x2e\ +\xf2\x3a\x7a\xf7\x42\xf8\x1f\x13\x4c\x51\xcc\xc2\xd9\x4b\xda\x1d\ +\x8c\xb0\x82\x1c\xd6\xba\xdb\x5d\xed\xd5\x55\x92\xde\x07\xe0\x80\ +\x31\xf5\xce\x15\x52\x00\x36\x26\xdc\x52\xb4\x81\xba\x0e\x79\x7e\ +\x7b\x0f\x92\xbd\x1f\x0a\x30\xa2\xa2\x8e\x20\xd0\x1a\xd0\x1a\xd6\ +\x80\x1a\xd6\x80\x1a\xd0\x34\x00\x06\x81\xe6\x4e\xb2\x7e\x14\x61\ +\x44\x32\xc8\xb2\x7e\x14\x61\x40\xcb\x22\xc9\xf8\x51\x85\x03\x2c\ +\x8b\x27\xe1\x46\x14\x0c\xb2\x2c\x9f\x85\x18\x50\x32\xc8\xb2\x7e\ +\x14\x61\x40\xcb\x22\xc9\xf8\x51\x85\x03\x2c\x8b\x27\xe1\x46\x14\ +\x0c\xb2\x2c\x9f\x85\x18\x50\x32\xc8\xb2\x7e\x14\x61\x40\xcb\x24\ +\x52\x61\x42\x94\x47\x47\xe4\xa2\xe6\xe3\xec\x85\x0e\xa9\xea\x4c\ +\x35\x4c\x11\xce\xc1\x23\x03\xda\xf0\xd2\x5c\xd1\x88\x5e\xdb\x52\ +\x2e\x33\x91\x6d\x06\xea\x6a\x3f\x25\x17\x37\x1f\x64\x29\x92\xcd\ +\xb5\x32\xb8\xdd\xcf\x85\x54\x53\xe4\xad\x2c\x73\x36\x78\xd8\xf6\ +\x3d\x8d\xc2\xd6\xb6\x69\x5b\x10\x17\x27\x68\x1d\x63\xa7\x41\xcd\ +\xe6\x56\xe8\x42\x49\x27\x63\x2c\xf2\xcb\xcd\x77\xa0\x84\x21\x56\ +\x42\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\ +\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\ +\x84\x02\x10\x84\x02\x10\x84\x1f\xff\xd9\ +\x00\x00\x18\x66\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x02\x82\x00\x00\x02\x29\x08\x02\x00\x00\x00\xb9\x49\xce\x6f\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x18\x18\x49\x44\x41\x54\x78\x9c\xed\ +\xdd\x7f\xac\x9d\x75\x7d\xc0\xf1\xcf\xc3\x0f\x23\x94\xa2\x19\xa2\ +\x31\x1b\xdb\x44\xfe\x71\x35\x31\xa3\xc1\x29\xa9\xbf\x42\x0c\x41\ +\x91\x11\xaa\x26\xb2\x6c\xcd\x5c\x02\x9b\x04\xb6\x42\xe9\xa4\xd1\ +\x12\x3b\x6c\xb5\x04\x35\x24\xfc\xc1\x4c\xf4\x2f\xa3\xfc\x51\xca\ +\xd8\xa6\xeb\x92\xd6\x39\xd1\x41\x0c\x89\xba\x65\x44\x87\xb8\xd6\ +\xe1\x96\x2d\x2e\x28\x2d\xb5\xa5\xe3\xd9\x1f\x87\x7b\x38\x3d\xf7\ +\xde\x73\xcf\xbd\xe7\xc7\xe7\x79\x9e\xef\xeb\x15\x42\x4e\x6f\x6f\ +\x6f\xbf\xf7\xf4\xdc\xbe\xef\xe7\xdb\xef\x73\x4e\x55\xd7\x75\x00\ +\x00\x19\xce\xca\x5e\x00\x00\x94\x4b\x86\x01\x20\x8d\x0c\x03\x40\ +\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\ +\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\ +\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\ +\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x86\xa9\xa9\xaa\xaa\xae\xeb\xec\x55\x00\x6d\ +\xe2\x6f\x0d\x98\x8e\xaa\xaa\x86\xde\xe2\x8b\x0b\x58\x91\x0c\xc3\ +\xa4\xfa\x01\xde\x7e\xed\xb9\x7b\x1f\x7a\x6e\xe8\x67\x7d\x89\x01\ +\x23\xc8\x30\x4c\x64\xb0\xc1\x83\x6f\xef\xf7\xd8\x97\x18\x30\x82\ +\x7f\x1b\x86\xb5\xeb\x35\x78\x28\xc0\x31\xd0\x60\x80\xd1\x64\x18\ +\xd6\x62\xc5\x21\x78\xc7\xe6\x75\xbb\xf7\x1d\x9b\xf7\xb2\x80\xb6\ +\x91\x61\x58\xb5\x71\x1a\x3c\xef\x35\x01\xed\x24\xc3\xb0\x0a\x02\ +\x0c\x4c\x97\x0c\xc3\xb8\x34\x18\x98\x3a\x19\x86\xb1\x8c\x3e\x8d\ +\x25\xc0\xc0\xda\xc8\x30\xac\xc0\x10\x0c\xcc\x8e\x0c\xc3\x28\x1a\ +\x0c\xcc\x94\x0c\xc3\xb2\x96\xdc\x88\x16\x60\x60\x8a\x64\x18\x96\ +\x60\x08\x06\xe6\x43\x86\x61\xd8\xe8\x06\x0b\x30\x30\x45\x32\x0c\ +\x2f\x31\x04\x03\x73\x26\xc3\xf0\x22\x0d\x06\xe6\x4f\x86\x21\xc2\ +\x65\xc1\x63\xe8\xdd\x45\x5e\x30\x0a\xa6\x4b\x86\x29\xdd\x72\x43\ +\x70\x0c\xcc\xc1\x83\x2f\xd2\x50\x66\x92\xfb\xf7\x52\xff\x46\x8f\ +\x2a\xc3\x84\x64\x98\xa2\xad\xb8\x11\xbd\x58\x81\x49\x1e\xdc\x2a\ +\xf0\x1a\x8e\x30\x5d\x95\x6f\x66\x29\xd3\x1a\x02\x3c\xda\xe2\x24\ +\xf7\x82\xdd\xea\x2f\xb1\x71\xee\xa5\x56\x7f\x82\x90\xce\x34\x4c\ +\x89\xc6\x6c\xf0\xc1\x7b\x36\x46\xc4\x15\xb7\x3d\x3e\xce\xc7\x1c\ +\x7a\x75\xe1\x0e\x0c\xca\x53\xff\x4e\x05\x58\xcc\x34\x4c\x71\xc6\ +\x39\x8d\xd5\x6b\x6a\x2f\xc3\x43\xc6\xac\xf2\xa0\xd6\x7d\x95\x8d\ +\x79\x68\xbc\x03\xe3\x3e\xa4\x33\x0d\x53\x90\xa9\x5c\x92\x34\xd8\ +\xe6\x31\x93\xdc\xae\x63\x4d\x2e\xdc\x82\x79\x92\x61\x4a\x31\x8b\ +\xba\x0c\x8d\xcb\x6b\xa8\x72\xd3\x92\xec\xc2\x2d\x98\x33\x19\xa6\ +\x08\xf3\x79\x91\x86\x56\x0f\xca\x86\x60\x48\x21\xc3\x74\x5c\x56\ +\x5d\xda\x35\x28\x6b\x30\x64\x91\x61\xba\xac\x39\x2f\xd2\x30\xe1\ +\xa0\x3c\xd3\x24\xdb\x88\x86\x44\x32\x4c\x37\x35\x79\xbc\x5b\xc3\ +\xa0\x3c\xa3\xbd\xeb\x26\xdf\x4b\x50\x08\x19\xa6\x83\xda\x55\x97\ +\xac\x41\xb9\x5d\xf7\x12\x74\x95\x0c\xd3\x35\xad\xde\x62\x9d\xcf\ +\x21\x2f\x01\x86\xe6\x90\x61\xba\xa3\x63\x75\x99\xd1\x21\xaf\x8e\ +\xdd\x4b\xd0\x76\x32\x4c\x47\x74\xbe\x2e\x53\x19\x94\x5b\xbd\x55\ +\x00\x9d\x24\xc3\x74\xc1\x50\x6f\x7a\x3a\x13\xe0\xc5\x26\x19\x94\ +\xbb\xfa\x6d\x0a\xb4\x94\x0c\xd3\x7a\x43\x0d\x1e\x7a\xe1\x81\x12\ +\xea\x32\xfe\xa0\xac\xc1\xd0\x34\x32\x4c\x47\xf4\x53\xd4\xef\x50\ +\x99\x69\x59\x6e\x50\x16\x60\x68\x26\x19\xa6\x6b\xfa\xaf\x4e\xb8\ +\x7b\xdf\xb1\xc2\x1b\xa3\xc1\xd0\x7c\x32\x0c\xdd\x34\xba\xc1\x02\ +\x0c\x0d\x21\xc3\xd0\x35\x86\x60\x68\x11\x19\x86\x4e\xd1\x60\x68\ +\x17\x19\x86\xee\xe8\x35\xd8\x65\xc1\xd0\x22\x32\x0c\x5d\x60\x08\ +\x86\x96\x92\x61\x68\x3d\x0d\x86\xf6\x92\x61\x68\x31\x01\x86\xb6\ +\x93\x61\x68\x2b\x0d\x86\x0e\x90\x61\x68\x25\xa7\xb1\xa0\x1b\x64\ +\x98\x0e\xea\x25\xaa\xab\x29\x32\x04\x43\x97\xc8\x30\xb4\x89\x06\ +\x43\xc7\xc8\x30\xb4\xc6\x92\x1b\xd1\x02\x0c\xad\x26\xc3\xd0\x02\ +\x86\x60\xe8\x2a\x19\x86\x36\xd9\xfb\xd0\x73\xfd\x12\x3b\x8d\x05\ +\x1d\x20\xc3\xd0\x74\xfd\x51\xb8\xa7\x3f\x01\x87\x06\x43\xfb\xc9\ +\x30\xb4\x43\xef\x75\x94\x63\xa0\xca\x1a\x0c\x1d\x20\xc3\xd0\x32\ +\x07\xef\xd9\x38\x34\x1f\x03\xed\x25\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\ +\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\ +\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\ +\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\ +\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\ +\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\ +\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\ +\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\ +\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\ +\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\ +\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\ +\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\ +\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\ +\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x13\ +\xa9\xaa\xaa\x77\xa3\xae\xeb\xdc\x95\x40\x1b\xc9\x30\x30\x1d\xfd\ +\x1e\x87\x24\xc3\xd8\x64\x18\x58\xb5\xdd\xfb\x8e\xf5\x6e\xec\xda\ +\xb5\xab\xff\xc6\x9d\x3b\x77\xf6\x6f\x0f\x26\x39\x54\x19\x96\x27\ +\xc3\xc0\xea\x2c\xd9\xe0\x58\x3e\xc9\x61\x50\x86\xe5\xc9\x30\xb0\ +\x0a\xbd\x06\x0f\x05\x78\xb1\xa1\x77\x30\x28\xc3\x72\x64\x18\x18\ +\xcb\x72\x43\xf0\x38\x0c\xca\xb0\x1c\x19\x06\x56\x36\x49\x83\x87\ +\x18\x94\x61\x90\x0c\x03\xa3\x4c\x31\xc0\x4b\x32\x28\x53\x38\x19\ +\x06\x96\x35\xeb\x06\x0f\x19\x73\x50\x96\x64\xba\x44\x86\x81\xa5\ +\x8d\x79\x1a\x6b\x76\x5c\x0d\x45\x09\x64\x18\x18\x36\xe7\x21\x78\ +\x1c\xf6\xae\xe9\x2a\x19\x06\x4e\xd3\xc0\x06\x0f\x71\xc8\x8b\x2e\ +\x91\x61\xe0\x45\xcd\x0f\xf0\x92\x0c\xca\xb4\x9a\x0c\x03\x11\xad\ +\x6d\xf0\x10\x83\x32\xad\x23\xc3\x40\xfe\x69\xac\x19\x31\x28\xd3\ +\x7c\x32\x0c\x45\xeb\xc6\x10\x3c\x0e\x57\x43\xd1\x4c\x32\x0c\xe5\ +\x2a\xa7\xc1\x8b\xb9\x1a\x8a\x86\x90\x61\x28\x54\x57\x37\xa2\xd7\ +\xc0\xde\x35\x89\x64\x18\x8a\x53\xf2\x10\xbc\x22\x87\xbc\x98\x33\ +\x19\x86\xb2\x68\xf0\xaa\x18\x94\x99\x35\x19\x86\x52\x08\xf0\x84\ +\x0c\xca\xcc\x82\x0c\x43\x11\x34\x78\xea\x0c\xca\x4c\x85\x0c\x43\ +\xc7\x09\xf0\x1c\x18\x94\x59\x33\x19\x86\x52\xf4\xda\x20\xc6\x73\ +\x60\x50\x66\x7c\x32\x0c\x65\x19\xac\x82\x24\xcf\x81\xa7\x0d\x61\ +\x34\x19\x86\x22\x1c\x38\x70\xa0\x77\xe3\xca\x2b\xaf\xec\xbf\x71\ +\x68\x50\x53\xe5\x39\xf0\xb4\x21\x0c\x91\x61\x28\x4b\xbf\xc7\x71\ +\x7a\x92\xc3\xa0\x3c\x77\xf6\xae\x09\x19\x86\x92\x0d\x26\x39\x0c\ +\xca\xa9\x1c\xf2\x2a\x96\x0c\x03\x2f\x32\x28\x37\x87\x41\xb9\x1c\ +\x32\x0c\x2c\xc1\xa0\xdc\x1c\x06\xe5\x6e\x93\x61\x28\xc2\x60\x47\ +\x87\x12\x3b\x0e\x83\x72\x73\x18\x94\x3b\x46\x86\xa1\xe3\x76\x6c\ +\x5e\x17\x03\x4f\xe2\x11\x8b\x3a\xba\xda\x2a\x1b\x94\x9b\xc3\xd5\ +\x50\x1d\x20\xc3\x50\x84\x5e\x8c\x7b\x06\x93\x1c\x06\xe5\x0e\x71\ +\x35\x54\x1b\xc9\x30\x14\x67\x30\xc9\xb1\xfc\xa0\x3c\x61\x92\x63\ +\xf9\x41\x59\x92\xe7\xc0\xde\x75\x5b\xc8\x30\x94\xae\x5f\xe5\x11\ +\x53\x72\x4c\x75\x50\xb6\x77\x3d\x67\x0e\x79\x35\x99\x0c\x03\xa7\ +\x59\xf2\xf9\xb6\xc2\xde\x75\x87\x18\x94\x1b\x45\x86\x81\xa5\x8d\ +\xd8\x61\x76\xc8\xab\x33\x0c\xca\xe9\x64\x18\x18\xcb\x88\x71\xd6\ +\xa0\xdc\x19\x06\xe5\xf9\x93\x61\x60\xd5\x0c\xca\x25\x30\x28\xcf\ +\x87\x0c\x03\x93\x32\x28\x97\xc0\xa0\x3c\x23\x32\x0c\x4c\x93\x41\ +\xb9\x04\x9e\x36\x64\x8a\x64\x18\x98\x21\x83\x72\x09\x3c\x6d\xc8\ +\x24\x64\x18\x98\x93\x31\x07\x65\x4f\x1b\xd2\x6a\xf6\xae\x57\x4b\ +\x86\x81\x1c\xcb\x8d\xb3\x9e\x36\xa4\x33\x1c\xf2\x1a\x87\x0c\x03\ +\xf9\xec\x5d\x97\xc0\xa0\xbc\x24\x19\x06\x9a\xc5\x21\xaf\x12\x38\ +\xe4\xd5\x27\xc3\x40\xa3\x19\x94\x4b\x30\x62\x50\xee\x3c\x19\x06\ +\x5a\xc3\xa0\x4c\xf7\xc8\x30\xd0\x56\x06\xe5\xee\x29\x6d\x14\x0e\ +\x19\x06\xba\xc1\xd5\x50\x6d\xd7\xbf\x33\xf7\xec\xd9\x13\x11\x77\ +\xdc\x71\x47\xea\x72\xe6\x47\x86\x81\x0e\x72\x35\x54\xbb\x0c\x35\ +\xb8\x28\x32\x0c\x74\x9c\xbd\xeb\x86\xeb\xdd\x57\x05\x06\xb8\x47\ +\x86\x81\x82\x38\xe4\xd5\x28\x25\x0f\xc1\x7d\x32\x0c\x94\xcb\xa0\ +\x9c\x68\x44\x83\x7b\xff\x30\x5c\xc2\x45\xc3\x21\xc3\x00\x3d\x06\ +\xe5\x79\x1a\xb1\x11\x5d\xce\xe1\xac\x1e\x19\x06\x58\x82\x41\x79\ +\x46\x46\x6f\x44\x17\x35\x07\xf7\xc8\x30\xc0\x0a\x0c\xca\xd3\xb2\ +\xe2\x46\x74\x14\xd6\xe0\x90\x61\x80\xd5\x32\x28\xaf\xc1\x38\x43\ +\x70\x94\xd7\xe0\x90\x61\x80\x49\x78\xda\x90\x71\x18\x82\x47\x90\ +\x61\x80\xa9\xf1\xb4\x21\x8b\x8d\x73\x1a\xab\xd8\x06\x87\x0c\x03\ +\xcc\x88\xbd\x6b\xa7\xb1\xc6\x21\xc3\x00\x33\x57\xe0\x21\x2f\x1b\ +\xd1\x63\x92\x61\x80\x79\xeb\xfc\xa0\x6c\x23\x7a\x7c\x32\x0c\x90\ +\xa9\x63\x83\xb2\x8d\xe8\xd5\x92\x61\x80\x06\x69\xf5\xa0\x3c\x7a\ +\x23\xba\xe4\x27\x8e\x1e\x41\x86\x01\x1a\xaa\x45\x57\x43\x8d\x33\ +\x04\x97\xf6\x2c\x95\x63\x92\x61\x80\x76\x68\xec\xd5\x50\xe3\x9c\ +\xc6\x62\x39\x32\x0c\xd0\x3e\xcd\xd9\xbb\x1e\xe7\x34\xd6\x81\x03\ +\x07\x86\x3e\x14\x7d\x32\x0c\xd0\x6e\xe9\x87\xbc\x46\x34\x78\x0d\ +\xdf\x07\x94\x46\x86\x01\x3a\x65\xce\x83\xf2\x88\x8d\x68\x0d\x1e\ +\x87\x0c\x03\x74\xd6\x4c\x07\xe5\x25\xf7\x99\x35\x78\xb5\x64\x18\ +\xa0\x14\xb3\x1b\x94\x43\x80\xd7\x4a\x86\x01\x4a\x34\xdd\x41\x59\ +\x83\xd7\x4c\x86\x01\x98\x68\x50\x76\x1a\x6b\x12\x32\x0c\xc0\x69\ +\xc6\x1f\x94\x43\x83\x27\x26\xc3\x00\x8c\x32\x62\x50\x5e\xfc\x0e\ +\xac\x96\x0c\x03\x30\xae\xa1\x24\x0b\xf0\xe4\x64\x18\x80\xb5\xd0\ +\xe0\xa9\x90\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x61\xd8\xee\ +\x7d\xc7\x22\xe2\xe0\x3d\x1b\xb3\x17\x02\x74\x9f\x0c\x03\x40\x1a\ +\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\ +\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\ +\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\ +\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\ +\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\ +\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\xe0\x34\x57\x5e\ +\x79\x65\x44\x1c\x38\x70\x20\x7b\x21\x50\x04\x19\x06\x22\x22\x76\ +\xef\x3b\x36\xf8\xc3\x5e\x8c\x7b\x24\x19\x66\x47\x86\xa1\x74\xfd\ +\x00\xef\xda\xb5\xab\xff\xc6\x9d\x3b\x77\xf6\x6f\x4b\x32\xcc\x8e\ +\x0c\x43\xd1\x96\x6c\x70\x8c\x97\xe4\x50\x65\x98\x98\x0c\x43\xa3\ +\x5d\x71\xdb\xe3\x11\x71\xf0\x9e\x8d\xb3\xf8\xe0\xbd\x06\x0f\x05\ +\x78\xb1\xe5\x92\x1c\x06\x65\x98\x98\x0c\x43\x89\x96\x1b\x82\x57\ +\x34\xf4\xfe\x06\x65\x98\x90\x0c\x43\x71\xd6\xdc\xe0\xc5\x0c\xca\ +\x30\x21\x19\x86\xb2\x8c\xb9\x11\xbd\x06\x06\x65\xc6\x51\xd7\x75\ +\xf6\x12\x9a\x45\x86\xa1\x14\x53\x1c\x82\xc7\x61\x50\x86\x71\xc8\ +\x30\x14\x61\xce\x0d\x1e\x32\xe6\xa0\x2c\xc9\x14\x48\x86\xa1\xfb\ +\x66\xb7\x11\xbd\x36\xae\x86\x82\x3e\x19\x86\x2e\x1b\x7c\x6e\xac\ +\x5e\xf0\x9a\x13\xe3\x1e\x7b\xd7\x25\x18\xfa\x06\x8b\x41\x32\x0c\ +\x65\x19\x4c\x5d\x93\x93\x1c\x06\x65\xca\x20\xc3\xd0\x7d\x83\xd1\ +\x1a\xec\x59\x93\x93\x1c\x06\x65\xca\x20\xc3\x50\x96\x71\x92\x1c\ +\xcd\xab\xb2\x41\x99\xae\x92\x61\x28\xd7\x72\x49\x0e\x83\x32\xcc\ +\x8b\x0c\x03\x11\x8b\x8a\x65\x50\x86\xf9\x90\x61\x60\x09\x06\x65\ +\x98\x0f\x19\x86\x2e\xdb\xb1\x79\xdd\xee\x7d\xc7\x26\x1c\x0a\x3b\ +\x3f\x28\x4b\x32\x89\x64\x18\x3a\xae\x57\xe2\xc1\xb7\x4c\x58\xa0\ +\xee\x0d\xca\xf6\xae\x49\x24\xc3\xd0\x7d\x3b\x36\xaf\x1b\xfc\xe1\ +\x60\x95\x0d\xca\x61\xef\x9a\x54\x32\x0c\xc5\x19\xac\xb2\x41\x39\ +\x1c\xf2\x22\x95\x0c\x43\xd1\xc6\x1c\x94\x27\x4c\x72\x78\xda\x10\ +\x58\x86\x0c\x03\x2f\x59\x6e\x50\x9e\x7c\x28\xf4\xb4\x21\xb0\x24\ +\x19\x06\x96\x66\xef\x7a\x31\x83\x32\x53\x27\xc3\xc0\xca\x1c\xf2\ +\x5a\xcc\xd5\x50\x4c\x85\x0c\x03\xab\xd6\xbf\x08\xaa\xae\xeb\xaa\ +\xaa\x06\x7f\xca\xa0\x1c\xf6\xae\x59\x0d\x19\x06\x26\x52\xd7\xf5\ +\xe0\x0f\x07\xab\x6c\x50\x0e\x7b\xd7\xac\x44\x86\x81\x69\x1a\xac\ +\xb2\x41\x39\x1c\xf2\x62\x25\x32\x0c\x2d\x73\xc5\x6d\x8f\xc7\xa2\ +\x7f\xac\x6d\xa6\xf4\x41\xb9\x69\x49\x0e\x83\x32\x8b\xc8\x30\x30\ +\x27\xf3\x1f\x94\x5b\xb4\x77\x1d\xc5\x0c\xca\xbd\x3f\xfa\xa1\x6f\ +\xd1\x4a\x26\xc3\x40\x82\x31\x07\xe5\x72\xf6\xae\xa3\xb0\x41\x79\ +\xf0\x4f\xbc\xf0\x24\xcb\x30\x90\x6f\xb9\x41\xd9\x21\xaf\x9e\x2e\ +\x0d\xca\xbd\x4f\x6d\xf0\x33\x1a\xda\x1a\x29\xad\xca\x32\x0c\x34\ +\x8b\x43\x5e\x8b\x75\x6f\x50\x1e\xf1\x19\xf5\xff\xd0\x0b\xe9\xb1\ +\x0c\x03\xcd\x95\x7e\xc8\x2b\x9a\x57\xe5\xee\x3d\x6d\xc8\x72\x9f\ +\x51\x55\x55\x25\x94\x58\x86\x81\xd6\x30\x28\x2f\xe6\x69\x43\xda\ +\x4e\x86\x81\x56\x32\x28\x2f\xd6\x81\xbd\xeb\xde\xb2\xf7\xec\xd9\ +\x73\xc7\x1d\x77\x64\xaf\x65\x4e\x64\x18\xe8\x02\x83\xf2\x90\xd6\ +\x1d\xf2\xea\xaf\x70\xcf\x9e\x3d\xb9\x2b\x99\x33\x19\x06\xba\x66\ +\x3e\x57\x43\x85\xa7\x0d\x99\x9e\x62\x1b\x1c\x32\x0c\x74\xde\x8c\ +\xae\x86\x0a\x4f\x1b\x32\x0d\x25\x07\xb8\x47\x86\x81\x82\xd8\xbb\ +\x5e\x2c\x71\x50\xd6\xe0\x90\x61\xa0\x58\x0e\x79\x2d\x36\xcf\x41\ +\xb9\x7f\x1a\x6b\xf1\x4f\xf5\xce\x67\x95\x70\xb5\x52\xc8\x30\x40\ +\x8f\x41\x79\xb1\x19\x0d\xca\xa3\x87\xe0\xa2\x1a\x1c\x32\x0c\xb0\ +\x98\x41\x79\xb1\x69\x3d\x6d\xc8\x88\x06\xf7\x2f\x52\x2a\xa7\xc1\ +\x21\xc3\x00\x2b\x32\x28\x2f\x36\xc9\xd3\x86\x8c\x18\x82\xa3\xb0\ +\x06\x87\x0c\x03\xac\x4a\xfa\xa0\xdc\xa2\x24\xc7\xe9\x9f\xc5\x88\ +\x73\x58\xa5\x6d\x44\x0f\x92\x61\x80\xb5\xf3\x22\xca\x43\x46\xec\ +\x5d\x2f\xa9\xd8\x21\xb8\x4f\x86\x01\xa6\xc3\x8b\x28\x8f\x60\x23\ +\x7a\x39\x32\x0c\x30\x13\x5e\x44\xd9\x69\xac\x71\xc8\x30\xc0\xcc\ +\x15\x78\xc8\x6b\xc5\xcb\x82\x43\x83\x23\x42\x86\x01\xe6\x2c\xfd\ +\x90\x57\xcc\xb8\xca\x2e\x0b\x5e\x15\x19\x06\xc8\xd4\xb1\x41\xd9\ +\x46\xf4\x6a\xc9\x30\x40\x53\xb4\x7a\x50\x1e\x67\x08\x0e\x0d\x5e\ +\x44\x86\x01\x1a\xaa\x45\x83\xb2\x21\x78\xcd\x64\x18\xa0\x05\x9a\ +\xfc\x22\xca\x4e\x63\x4d\x42\x86\x01\xda\xa7\x21\x2f\xa2\xec\x34\ +\xd6\xe4\x64\x18\xa0\xdd\xd2\xf7\xae\x6d\x44\x4f\x42\x86\x01\xba\ +\x63\xfe\x87\xbc\x34\x78\x42\x32\x0c\xd0\x59\x33\x1d\x94\x87\xba\ +\xde\x63\x23\x7a\xb5\x64\x18\xa0\x08\xb3\x1b\x94\x7b\x0c\xc1\x6b\ +\x23\xc3\x00\x25\x9a\xee\xa0\xac\xc1\x6b\x26\xc3\x00\xa5\x9b\x64\ +\x50\x16\xe0\x09\xc9\x30\x00\xa7\x19\x73\x50\x5e\xee\x97\xb0\x2a\ +\x32\x0c\xc0\xb2\x46\x0c\xca\x4b\xbe\x03\xab\x25\xc3\x00\x8c\x6b\ +\x68\x50\xd6\xe0\xc9\xc9\x30\x00\x6b\xa1\xc1\x53\x21\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\ +\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\ +\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\ +\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\xd0\x68\x5b\xb7\x6e\x3d\ +\xe7\x9c\x73\x22\xe2\xd4\xa9\x53\xe7\x9d\x77\xde\xce\x9d\x3b\xb3\ +\x57\x34\x4d\x32\x0c\x40\xa3\xed\xdb\xb7\x6f\xdb\xb6\x6d\x27\x4e\ +\x9c\xf8\xf6\xb7\xbf\xfd\xd3\x9f\xfe\x54\x86\x01\x60\x4e\xbe\xf6\ +\xb5\xaf\x5d\x74\xd1\x45\xb7\xdc\x72\x4b\x44\x6c\xd9\xb2\x65\xc3\ +\x86\x0d\xd9\x2b\x9a\x32\x19\x06\xa0\xb9\xae\xba\xea\xaa\xa7\x9e\ +\x7a\x2a\x22\x76\xed\xda\x75\xf2\xe4\xc9\xbb\xee\xba\x2b\x7b\x45\ +\x53\x26\xc3\x00\x34\xda\x4d\x37\xdd\xb4\x7f\xff\xfe\x6f\x7e\xf3\ +\x9b\x37\xdf\x7c\x73\xf6\x5a\xa6\x4f\x86\x01\x68\xba\x2f\x7e\xf1\ +\x8b\x9b\x36\x6d\xba\xe6\x9a\x6b\xbe\xfa\xd5\xaf\xbe\xe7\x3d\xef\ +\xc9\x5e\xce\x34\xc9\x30\x00\x8d\xb6\x6d\xdb\xb6\x33\xcf\x3c\xf3\ +\xce\x3b\xef\x8c\x88\x47\x1e\x79\x44\x86\x01\x60\x7e\x1e\x7e\xf8\ +\xe1\x4f\x7d\xea\x53\xbd\xdb\xcf\x3c\xf3\x4c\xee\x62\xa6\x4e\x86\ +\x01\x68\xae\xbd\x7b\xf7\x3e\xf9\xe4\x93\x1f\xfa\xd0\x87\xce\x38\ +\xe3\x8c\xba\xae\x2f\xb9\xe4\x92\xec\x15\x4d\x99\x0c\x03\xd0\x5c\ +\xdb\xb7\x6f\xdf\xbe\x7d\x7b\xf6\x2a\x66\x48\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\xa0\xd1\xaa\xea\xd9\xba\x5e\x9f\xbd\x8a\x59\ +\x91\x61\x00\x9a\xab\xaa\x6e\x8d\xd8\x95\xbd\x8a\x19\x92\x61\x00\ +\x9a\xec\xfa\x88\xa8\xaa\xdf\xab\xeb\x2f\x65\xaf\x64\x26\x64\x18\ +\x80\x86\xaa\xaa\x1b\x23\xfe\x34\x22\x22\xae\x4d\x5e\xca\xcc\xc8\ +\x30\x00\x8d\xf5\x86\x88\xd7\x47\x3c\x1f\xb1\xae\xaa\x36\xd5\xf5\ +\x23\xd9\xeb\x99\x3e\x19\x06\xa0\xb1\xde\xb6\x70\xe3\x92\x88\xab\ +\x33\x17\x32\x33\x32\x0c\x40\x13\x55\xd5\x5d\x11\x9b\x07\xde\xb0\ +\xae\xaa\x2e\xaa\xeb\x9f\xa4\x2d\x68\x36\x64\x18\x80\x66\x7a\x67\ +\xc4\xb9\x03\x3f\x5c\x17\xd1\xb5\x67\xb2\x0c\x19\x06\xa0\x81\xaa\ +\xea\xa3\x11\x1f\x5c\x94\xe1\x37\xa5\x2d\x68\x66\x64\x18\x80\x06\ +\xfa\xad\x88\x73\x23\xce\x8f\xa8\x17\xde\xb2\x2e\x62\x5d\x55\x5d\ +\x5c\xd7\x4f\x65\xae\x6b\xda\x64\x18\x80\xc6\xa9\xeb\x3f\xa8\xaa\ +\x23\x0b\x3f\xaa\x22\x22\xe2\xbc\xba\xfe\x64\xc4\x27\xd3\xd6\x34\ +\x1b\x32\x0c\x4b\xbb\xe2\xb6\xc7\x7b\x37\x0e\xde\xb3\x31\x77\x25\ +\x50\xa6\xba\xfe\xf5\xaa\x7a\x30\xe2\xb2\x88\xe7\x22\xbe\x15\xf1\ +\x27\x11\x27\xb2\x17\x35\x7d\x32\x0c\xa7\xd9\xbd\xef\xd8\xd0\x5b\ +\xfa\x3d\x0e\x49\x8e\x88\xa5\xee\x22\x98\xbd\x7a\xe5\x77\x69\x27\ +\x19\x86\x17\xf5\xeb\x52\xd7\xa7\x7d\xc1\x57\x55\xd5\xbf\x3d\x98\ +\xe4\x28\xb2\xca\xcb\xdd\x4b\x30\x1b\xd5\xca\xef\xd2\x72\x32\x0c\ +\x11\x23\xeb\x32\xf8\x96\xc1\x24\x47\x79\x83\x72\xef\x5e\x12\x60\ +\x92\x74\xf3\x81\x27\xc3\x94\x6e\x55\xe3\x5d\xb1\x83\xb2\x21\x18\ +\x66\x44\x86\x29\xda\x84\x75\x29\x64\x50\xd6\x60\x1a\xa0\x36\x0d\ +\x43\xd7\x4c\x77\x8b\x75\xcc\x41\xb9\x5d\x49\x16\x60\x3a\x63\xc7\ +\x8e\x1d\xc7\x8f\x1f\xbf\xfc\xf2\xcb\x3f\xf0\x81\x0f\x44\xc4\xd6\ +\xad\x5b\x2f\xba\xe8\xa2\x5b\x6f\xbd\x35\x7b\x5d\x32\x4c\x91\xe6\ +\x50\x97\xe5\x06\xe5\x16\xed\x5d\x6b\x30\x83\xb6\x6f\xdf\x7e\xe2\ +\xc4\x89\x4b\x2f\xbd\x74\xcb\x96\x2d\x11\xb1\x6d\xdb\xb6\xf5\xeb\ +\xd7\xdf\x79\xe7\x9d\xd9\xeb\x1a\xd7\xa9\x53\xa7\x1e\x78\xe0\x81\ +\x0b\x2f\xbc\x30\x22\x3e\xff\xf9\xcf\x1f\x3c\x78\xf0\xea\xab\x1b\ +\xf1\x5a\x11\x32\x4c\x71\xe6\x5f\x97\x36\xee\x5d\x3b\x8d\xc5\x90\ +\x93\x27\x4f\x7e\xe5\x2b\x5f\x79\xdd\xeb\x5e\x17\x11\x0f\x3f\xfc\ +\xf0\xa3\x8f\x3e\xba\x61\xc3\x86\x79\xfd\xe6\xf5\xc0\xff\xd7\x68\ +\xef\xde\xbd\x3f\xff\xf9\xcf\x9f\x7c\xf2\xc9\x88\x78\xfa\xe9\xa7\ +\xdf\xf5\xae\x77\xed\xde\xbd\x7b\x1a\x6b\x9b\x94\x0c\x53\x96\xf4\ +\xba\x34\xff\x90\x97\x21\x98\x25\x7d\xee\x73\x9f\x3b\x7c\xf8\xf0\ +\xd1\xa3\x47\x23\xe2\xf8\xf1\xe3\x1b\x36\x6c\xb8\xff\xfe\xfb\x67\ +\xff\xdb\xf6\xbf\x40\xa6\xf0\x68\xbc\xff\xfe\xfb\xdf\xf7\xbe\xf7\ +\x5d\x73\xcd\x35\xeb\xd6\xad\xfb\xf2\x97\xbf\x3c\xf9\x07\x9c\x0a\ +\x19\xa6\x14\xcd\xac\xcb\x98\x83\xf2\xdc\x34\xf3\x5e\xa2\x21\xb6\ +\x6c\xd9\x72\xdf\x7d\xf7\x5d\x7c\xf1\xc5\x8f\x3d\xf6\xd8\xc6\x8d\ +\xf3\xff\x36\x71\x0a\x8f\xc9\x4d\x9b\x36\xed\xdd\xbb\xf7\xc3\x1f\ +\xfe\xf0\xe4\x1f\x6a\x5a\x64\x98\x22\xb4\xa2\x2e\x23\x06\xe5\xf9\ +\x48\xdf\x2a\xa0\xe1\xae\xbd\xf6\xda\x6f\x7c\xe3\x1b\x9f\xfe\xf4\ +\xa7\xdf\xfa\xd6\xb7\xde\x70\xc3\x0d\xd9\xcb\x59\x8b\x47\x1f\x7d\ +\xf4\xd2\x4b\x2f\xfd\xe1\x0f\x7f\x98\xbd\x90\x97\xc8\x30\x1d\xd7\ +\x8a\x00\x2f\xa9\xb7\xe0\xf9\xc4\xb8\xbd\xf7\x12\x73\xf6\xd9\xcf\ +\x7e\xf6\xcd\x6f\x7e\xf3\xdb\xdf\xfe\xf6\xec\x85\xac\xc5\xd6\xad\ +\x5b\x5f\xf9\xca\x57\xee\xdf\xbf\xff\x96\x5b\x6e\xb9\xf1\xc6\x1b\ +\xe7\xb2\xa9\xbe\x32\x19\xa6\xcb\xd4\x65\x1c\xee\x25\x56\xe5\x82\ +\x0b\x2e\xb8\xfe\xfa\xeb\xe7\xfe\xdb\x8e\x75\xdd\xf0\xe3\x0b\xdf\ +\xb6\xde\xb4\xf0\x0b\xd6\x47\xbc\x10\xf1\xf5\xba\xfe\xc2\x17\xbe\ +\x70\xe8\xd0\xa1\xef\x7d\xef\x7b\x11\x71\xef\xbd\xf7\xbe\xfb\xdd\ +\xef\xbe\xfb\xee\xbb\x6f\xbf\xfd\xf6\xd9\xae\x7a\x0c\x32\x4c\x47\ +\xf4\xfe\x25\x75\xf0\x58\x93\x2d\xd6\x15\x09\x30\x6b\x70\xf2\xe4\ +\xc9\x07\x1f\x7c\xf0\xba\xeb\xae\xcb\x5e\xc8\xb0\xc7\x07\xb6\x8e\ +\xee\x8b\x88\x88\x3f\x8b\xf8\x65\xc4\xb7\xea\x3a\x22\x3e\xf2\x91\ +\x8f\xd4\x75\xbd\x79\xf3\xe6\x7d\xfb\xf6\xdd\x76\xdb\x6d\x87\x0e\ +\x1d\x7a\xe2\x89\x27\x9a\x90\xe1\xca\x97\x1f\x6d\x37\x62\xdb\xb6\ +\x03\x0f\xef\xde\x67\x37\xf8\xed\x45\xef\x1b\x8e\x1d\x9b\xd7\x4d\ +\xf8\x91\x35\x98\xd5\xba\xec\xb2\xcb\xbe\xff\xfd\xef\x9f\x3a\x75\ +\xea\xac\xb3\xce\xba\xea\xaa\xab\x1e\x7a\xe8\xa1\x59\xff\x8e\x55\ +\xf5\x50\xc4\xc6\x88\x63\x11\xff\x18\x71\xe3\xe8\xc7\x6a\x2f\xc3\ +\x5f\x8a\xf8\xd5\x88\x77\x2e\xbc\xf1\xfa\x88\x1f\x34\xfb\x11\x6e\ +\x1a\xa6\xf5\x96\x3b\x6c\xac\x2e\x23\xd8\x2a\x60\x0d\xbe\xf3\x9d\ +\xef\x64\x2f\x61\x94\x8f\x47\x5c\x1e\xf1\x9b\x11\x67\x46\xfc\xc3\ +\x42\x89\xff\x37\x73\x45\x63\x91\x61\x3a\x45\x57\x56\x64\x08\xa6\ +\x85\xea\x88\x7a\xf4\x23\xf6\x8f\xaa\xea\x1d\x11\xaf\x88\x38\x19\ +\x71\x34\xe2\x27\x0b\x19\xfe\x9f\xc6\x3f\xce\x65\x18\x0a\xa2\xc1\ +\xcc\x48\xf5\x9a\x2a\xce\x8e\xf8\x60\x44\x44\xfd\x99\x29\x3e\xba\ +\xc6\xba\x52\xe0\x63\x55\xf5\xc6\x88\x97\x47\x1c\x8f\x78\x26\xe2\ +\x48\xc4\x63\x11\x7f\x38\xbd\x45\xcc\x94\x0c\x43\x11\x04\x98\xe9\ +\xaa\xae\xae\xe2\xec\x78\xe9\xbf\xeb\x22\xce\x49\x58\xc6\xfb\xab\ +\xea\xd2\x88\xd7\x46\xd4\x11\x47\x23\xfe\x2b\xe2\x48\xc4\xdf\x47\ +\x1c\x4a\x58\xcb\x1a\xc9\x30\x74\x9f\x06\x33\x45\xd5\x1d\x55\xbc\ +\x31\x62\x73\xc4\xf3\x11\xcf\x47\x9c\x5c\xb8\xf1\xb3\x88\xff\x8c\ +\x38\x1c\xd5\x05\x55\xfd\xb3\x79\x3c\xd2\x6e\xae\xaa\xb7\x44\xac\ +\x8f\xf8\x65\xc4\xb1\x88\x23\x11\xff\x1c\x71\x6f\xc4\x47\x17\xde\ +\x61\x63\x1b\x1e\xf0\x32\x0c\x1d\xe7\x34\x16\xd3\x55\xef\xa9\x23\ +\xa2\xda\x5d\xc5\x6f\x2c\x5c\x9c\x5b\x47\x7c\x37\x62\x73\xc4\xb3\ +\x11\xbf\x88\x78\x36\xaa\x4f\x56\x71\x38\xe2\x48\xc4\x8f\xa3\xfe\ +\xc1\x54\x1e\x7b\xc3\x1f\x64\x57\x55\x5d\x12\x71\x76\xc4\xd1\x88\ +\x9f\x45\x1c\x89\x78\x24\xe2\xdf\x5b\xf8\x38\x97\x61\xe8\x2c\x43\ +\x30\xb3\x53\xef\xa8\xab\x8f\x57\xf1\xea\x88\x0b\x22\x5e\x88\x88\ +\x88\xd7\x46\xbc\x26\xa2\x8e\xf8\xbf\x17\x63\xdc\xfb\xaf\xba\x77\ +\x21\xc9\x47\x22\x9e\x88\xfa\x17\x93\x3e\x1a\x7f\xbf\xaa\x36\x44\ +\x5c\x18\x71\x2a\xe2\x68\xc4\xd3\x11\x3f\x8a\xf8\xbb\x88\x53\xed\ +\x7c\x9c\xcb\x30\x74\x93\x06\x33\x6b\xf5\x5f\xd4\xd5\x7b\xab\x78\ +\x47\xc4\xab\x23\x22\xe2\xe9\x88\xf3\x23\xd6\x47\x9c\x1d\xf1\xb2\ +\x88\x0b\x22\xea\x88\x17\x22\x9e\x7b\x29\xc9\xf1\x6c\x54\x9f\x58\ +\xa8\xf2\x8f\xa2\xfe\xf1\xaa\x1f\x9c\x7f\x5e\x55\xbf\x1d\x71\x6e\ +\xc4\xf1\x88\x67\x23\x0e\x47\x3c\x1e\xf1\xdd\x36\x3f\xc8\x65\x18\ +\x3a\xc8\x46\x34\xf3\x51\xff\x6d\x1d\x11\xd5\x27\xaa\x88\x88\xfd\ +\x11\x11\xf1\x8a\x88\x37\x45\xac\x5f\x48\xf2\xcb\x23\xce\x8e\x38\ +\x3f\xe2\x85\x88\x3a\xe2\xf9\x81\x24\xff\x22\xaa\xcf\x54\x71\x24\ +\x5e\xac\xf2\xbf\x46\x7d\x7c\xd4\x23\xf6\x9a\xaa\xfa\x9d\x88\x5f\ +\x8b\x38\x23\xe2\x68\xc4\x7f\x47\x1c\x8e\x38\xd4\x86\x4b\x92\x46\ +\x93\x61\xe8\x14\x43\x30\xf3\x57\xdf\x59\x57\xb7\x56\xfd\xdb\xfd\ +\xb7\x57\x37\x54\xf1\xb6\x88\x57\x2d\x24\xf9\xfc\x88\xb3\x22\x5e\ +\x1e\xf1\xaa\x85\x2a\x1f\x3b\x7d\xfb\xfa\xe3\x0b\x55\x7e\x32\xea\ +\xff\xa8\xab\xaa\x8a\xf8\xab\xfe\x6f\xf2\xd7\x11\xef\x8d\xf8\x65\ +\xc4\x73\x11\x87\x23\x9e\x88\xf8\x7a\x27\x1e\xe4\x32\x0c\xdd\xa1\ +\xc1\x64\x59\xf2\x5a\xe1\xfa\x2f\x07\x92\x7c\x75\x15\x9b\x22\xde\ +\x30\x90\xe4\x97\x2d\x0c\xca\xbd\x43\x5e\x27\x4e\xdf\xbb\xde\xdb\ +\xeb\xfa\xef\x0e\x7e\xc0\x3f\x8e\xf8\x58\xc4\xe1\x88\x7f\x8a\xf8\ +\xb7\xae\x3c\xc8\x65\x18\xba\x40\x80\x69\xb8\xfa\x6f\x4e\x7f\x39\ +\xed\x5b\xaa\xd8\x14\xf1\x8a\x85\x2a\xaf\x8f\x38\x2b\xe2\xdc\x88\ +\x57\x2f\x0c\xca\xcf\x2e\xfd\x71\xfe\x25\xe2\x40\xc4\x73\x1d\x7a\ +\x9c\xcb\x30\xb4\x9e\x06\xd3\x3a\xf5\xbd\x03\x83\xf2\xe6\x2a\xde\ +\x16\xf1\xfa\x81\x41\xf9\xec\x88\x5f\x59\xfa\x17\x3e\xd4\xb9\xc7\ +\xb9\x0c\x43\xbb\x39\x8d\x45\xdb\xd5\xfb\x4e\x1f\x94\x6f\xaf\xe2\ +\x2d\x11\xef\xcf\x5a\xce\xbc\xc9\x30\xb4\x95\x21\x98\x4e\xaa\xef\ +\xae\x23\xa2\x5a\xe6\xd9\xa4\xbb\xf7\x68\xf7\x7a\xc3\xd0\x68\x43\ +\xaf\xa6\x7c\xf0\x9e\x8d\xbd\xd7\x1b\xee\xf3\x25\x4c\x57\x2d\xf9\ +\x52\xe2\xdd\x7b\xc0\xcb\x30\x34\xdd\x92\x7f\x19\x45\x17\xff\x3e\ +\x82\x21\x25\xbc\x82\xb8\x0c\x43\x9b\xf4\xff\x56\xf2\x95\x0b\xdd\ +\x20\xc3\x00\x90\xc6\x11\x2d\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\ +\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\ +\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\xf3\ +\xff\x80\xa6\x38\x32\x7b\x8b\x89\x7d\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x01\x3c\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ +\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\ +\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\xdc\x49\x44\x41\x54\x78\ +\x5e\xed\x9b\x31\x0a\xc5\x40\x14\x02\xbd\xff\xa1\x93\x1f\x08\xfe\ +\x5a\x30\x09\x16\x23\x8c\xd5\x16\xeb\xf4\x4f\x92\xce\x51\x8e\xe0\ +\xcd\x13\xdc\x35\x98\xeb\x5f\xe7\xcb\x20\x00\x01\x72\x0d\x26\x18\ +\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\x60\x82\ +\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\x0d\x26\ +\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\x60\ +\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\x0d\ +\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\ +\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\ +\x0d\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\ +\xd7\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\ +\x72\x0d\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\ +\x20\xd7\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\xe0\ +\x2f\x60\x91\x4f\xce\xe7\x7f\x8e\x88\xcd\xd9\x93\x86\x7d\xc7\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x23\xb4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -1222,54 +3020,1415 @@ qt_resource_data = "\ \x12\x44\x67\x34\x1a\x77\xc8\x1e\x82\x88\xc8\x02\xac\xfa\x3f\xda\ \x1e\x33\xf5\x9c\x7d\xbd\xea\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ -\x00\x00\x02\xe0\ +\x00\x00\x09\xba\ +\xff\ +\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ +\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x07\x08\x07\x06\x11\x08\ +\x07\x08\x16\x14\x15\x17\x16\x16\x1b\x13\x15\x11\x17\x1b\x20\x1f\ +\x1b\x17\x20\x1d\x1b\x19\x20\x1d\x1f\x1f\x24\x1f\x34\x2c\x1a\x26\ +\x31\x27\x1f\x17\x26\x37\x24\x31\x32\x2b\x3a\x3a\x3a\x23\x1f\x37\ +\x38\x37\x38\x37\x2d\x2e\x3a\x2b\x01\x0a\x0a\x0a\x0d\x0d\x0e\x1b\ +\x10\x10\x1a\x31\x25\x20\x25\x34\x37\x37\x34\x2c\x31\x36\x37\x32\ +\x34\x35\x37\x34\x34\x37\x37\x2c\x2c\x2c\x37\x34\x35\x37\x2f\x2c\ +\x2c\x34\x2c\x2c\x2c\x2c\x34\x2c\x2f\x2c\x34\x2c\x34\x34\x2c\x2c\ +\x2c\x2c\x2c\x2c\x34\x2c\x34\x2f\x34\xff\xc0\x00\x11\x08\x00\xa0\ +\x00\xa0\x03\x01\x11\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1b\ +\x00\x01\x00\x03\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x05\x06\x07\x04\x03\x02\x01\xff\xc4\x00\x40\x10\x00\x01\ +\x02\x04\x01\x08\x06\x07\x07\x02\x07\x00\x00\x00\x00\x00\x00\x01\ +\x02\x03\x04\x05\x11\x12\x06\x13\x15\x16\x21\x56\x93\x94\x31\x41\ +\x55\xa4\xd2\xd3\x14\x24\x51\x53\x61\x64\x71\x22\x32\x35\x75\x81\ +\x91\xb1\x33\x92\x23\x42\x43\x52\xa1\xd1\xf0\xff\xc4\x00\x18\x01\ +\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x03\x02\x04\x01\xff\xc4\x00\x25\x11\x01\x00\x02\x01\x03\x04\ +\x03\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01\x02\x03\x11\x12\ +\x51\x04\x13\x52\xa1\x14\x33\x71\x34\x31\x32\x21\xff\xda\x00\x0c\ +\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xdc\x40\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\ +\x47\x28\x6f\xac\x0e\xf4\x8c\xfe\x0c\xc4\x1c\x19\x9c\xfe\x1c\x58\ +\xe3\x62\xfe\x9e\xcb\xdb\x37\xd3\xf0\x03\x8b\xd5\x3e\x6f\xbe\x00\ +\xf5\x4f\x9b\xef\x80\x3d\x53\xe6\xfb\xe0\x0f\x54\xf9\xbe\xf8\x03\ +\xd5\x3e\x6f\xbe\x01\xfb\x28\xb4\xd9\xd7\x3d\x92\x75\x07\x3d\x59\ +\x64\x88\xd6\x4c\xc5\x55\x62\xed\x4b\x39\x33\x97\x62\xec\x72\x59\ +\x6d\xd0\xbe\xc0\x3a\x7d\x02\x17\xbd\x8d\xc7\x8d\xe3\x03\x86\x04\ +\xcd\x2a\x69\x98\xe4\xa7\x62\xc6\x4e\x85\x74\xbc\x69\x88\x88\x8b\ +\xd3\x65\x56\x39\x51\x16\xca\x8b\x6f\x8a\x01\xe9\xea\x9f\x37\xdf\ +\x00\x7a\xa7\xcd\xf7\xc0\x1e\xa9\xf3\x7d\xf0\x07\xaa\x7c\xdf\x7c\ +\x00\x9e\x89\x7d\xbe\x97\xdf\x00\xb5\x64\xe6\x7f\x57\xa5\x3d\x2f\ +\x16\x3c\xc4\x2c\x79\xcb\xe2\xc5\x81\xb7\xc5\x7d\xb7\xbd\xef\x70\ +\x24\x40\x00\x00\x00\x00\x00\x00\x00\x00\x02\x2f\x28\x64\xdd\x31\ +\x4f\x7c\x79\x68\x38\xa3\x43\x63\xd6\x0d\xad\x75\x75\xaf\x82\xff\ +\x00\xed\x72\xa3\x51\x53\xe8\xbd\x28\x8a\x81\x0b\x21\x98\xac\xd4\ +\x19\x01\xaa\x91\x20\xac\x1c\xeb\xed\xd0\xe4\x72\xb5\x21\x22\xa7\ +\x5b\x5c\x99\xe5\xb7\x5e\x0b\x2e\xcd\x8a\x16\xe0\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xca\x32\x62\xad\ +\x54\x93\x8b\x0a\x15\x22\x4a\x14\x45\x5a\x7c\x86\x3c\xf4\x45\x6d\ +\x91\x12\x2a\xa5\xac\xd5\xbf\xde\x5f\xd9\x0e\x9a\x62\xc7\xb3\x7d\ +\xe6\x52\xb5\xed\xbb\x6d\x61\x62\xd3\xf9\x5b\xd8\xf2\xbc\xc3\xfc\ +\xb1\xb7\xa7\xe6\x4d\x72\x71\x06\x9f\xca\xde\xc7\x95\xe6\x1f\xe5\ +\x8d\xbd\x3f\x32\x6b\x93\x88\x34\xfe\x56\xf6\x3c\xaf\x30\xff\x00\ +\x2c\x6d\xe9\xf9\x93\x5c\x9c\x41\xa7\xf2\xb7\xb1\xe5\x79\x87\xf9\ +\x63\x6f\x4f\xcc\x9a\xe4\xe2\x0d\x3f\x95\xbd\x8f\x2b\xcc\x3f\xcb\ +\x1b\x7a\x7e\x64\xd7\x27\x10\x69\xfc\xad\xec\x79\x5e\x61\xfe\x58\ +\xdb\xd3\xf3\x26\xb9\x38\x83\x4f\xe5\x6f\x63\xca\xf3\x0f\xf2\xc6\ +\xde\x9f\x99\x35\xc9\xc4\x1a\x7f\x2b\x7b\x1e\x57\x98\x7f\x96\x36\ +\xf4\xfc\xc9\xae\x4e\x20\xd3\xf9\x5b\xd8\xf2\xbc\xc3\xfc\xb1\xb7\ +\xa7\xe6\x4d\x72\x71\x06\x9f\xca\xde\xc7\x95\xe6\x1f\xe5\x8d\xbd\ +\x3f\x32\x6b\x93\x88\x34\xfe\x56\xf6\x3c\xaf\x30\xff\x00\x2c\x6d\ +\xe9\xf9\x93\x5c\x9c\x41\xa7\xf2\xb7\xb1\xe5\x79\x87\xf9\x63\x6f\ +\x4f\xcc\x9a\xe4\xe2\x17\x53\x99\x50\x00\x00\x00\x00\x01\x93\xe4\ +\x6f\xe2\x2c\xfc\xb6\x47\xf8\x71\xd3\x6f\xe7\x8f\xd4\xa3\xec\x9f\ +\xc5\xc4\xe6\x54\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x38\x00\ +\x00\x00\x00\x00\x06\x4f\x91\xbf\x88\xb3\xf2\xd9\x1f\xe1\xc7\x4d\ +\xbf\x9e\x3f\x52\x8f\xb2\x7f\x17\x13\x99\x50\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x2c\xe0\x00\x00\x00\x00\x00\x19\x3e\x46\xfe\x22\ +\xcf\xcb\x64\x7f\x87\x1d\x36\xfe\x78\xfd\x4a\x3e\xc9\xfc\x5c\x4e\ +\x65\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb3\x80\x00\x00\x00\ +\x00\x00\x63\x74\x0a\x9c\xad\x32\x76\x14\x49\xc7\x39\x11\xd4\xe9\ +\x14\x4c\x2d\x73\xb6\xd9\xcb\xd4\x9b\x0e\xca\xe3\xb5\xf0\x44\x57\ +\x94\x26\xd1\x5c\x93\x32\xb5\x53\xab\x92\x35\x28\xf9\x89\x47\x3d\ +\x56\xd7\x5c\x50\xde\x89\x6f\xaa\xa1\x1b\xe0\xbd\x23\x5b\x29\x5c\ +\x95\xb4\xe9\x05\x46\xb9\x23\x4d\x8f\x98\x9b\x73\xd1\x6d\x74\xc3\ +\x0d\xea\x96\xfa\xa2\x0a\x60\xbd\xe3\x5a\x96\xc9\x5a\xce\x92\xe5\ +\xd6\xda\x42\x7f\xa9\x13\x85\x13\xc2\x6f\xe2\xe5\xe1\x9e\xf5\x12\ +\x53\xd5\x19\x79\x09\x54\x99\x99\xc4\x8d\x5b\x74\x31\xca\xa9\x7f\ +\x6a\x22\x5d\x09\x53\x1d\xaf\x6d\xb0\xdc\xda\x22\x35\x94\x6e\xb6\ +\x52\x3d\xe4\x4e\x14\x4f\x09\x5f\x8b\x95\x9e\xed\x12\x52\x35\x19\ +\x79\xf9\x55\x99\x96\xc4\xad\x4b\xf4\xb1\xc8\xab\x6f\x62\x2a\x5d\ +\x49\x5f\x1d\xa9\x3b\x65\xa8\xb4\x4c\x6b\x08\xdd\x6d\xa4\x7b\xc8\ +\x9c\x28\x9e\x12\xbf\x17\x2f\x0c\x77\xa8\xea\xa7\x57\x24\x6a\x51\ +\xf3\x12\x8e\x7a\xad\xae\xb8\xa1\xbd\x12\xdf\x55\x43\x17\xc1\x7a\ +\x46\xb6\x6a\xb9\x2b\x69\xd2\x1f\x33\xb9\x43\x4e\x91\x99\x59\x79\ +\x97\x3d\x1c\x9d\x36\x86\xf5\x4f\xdd\x13\x69\xed\x3a\x7b\xda\x35\ +\x82\x72\x56\x27\x49\x78\xb3\x2a\xa9\x4f\x7a\x31\x8f\x88\xaa\xaa\ +\x88\x89\x9a\x89\xd3\xfd\xa7\xbf\x17\x23\xce\xed\x5d\xd5\x3a\xa4\ +\xad\x2d\x8d\x7c\xe2\xb9\x11\xca\xa8\x8a\xd6\x39\xdb\x7f\x44\xd8\ +\x4f\x1e\x2b\x64\xff\x00\x96\xad\x68\xaf\xfa\x8f\xd6\xca\x47\xbc\ +\x89\xc2\x89\xe1\x2b\xf1\x72\xb3\xdd\xa3\x44\x39\x94\x00\x00\x00\ +\x00\x00\x18\xdd\x02\x99\x2b\x54\x9d\x85\x0e\x71\xae\x54\x6d\x3a\ +\x45\x53\x0b\x9c\xdd\xb6\x72\x75\x2e\xd3\xb2\xb9\x2d\x4c\x11\x35\ +\xe5\x09\xac\x5b\x24\xc4\xad\x32\x14\x0a\x7d\x3e\x63\x3f\x2c\xc7\ +\x23\xad\x6f\xb5\x11\xeb\xff\x00\x0a\xa4\x6f\xd4\x5e\xf1\xa4\xa9\ +\x18\xeb\x13\xac\x3f\x6a\x34\x2a\x7d\x4a\x3e\x7e\x6a\x1b\xb1\x5a\ +\xd7\x6b\xdc\xdd\x9f\xa2\x8a\x67\xbd\x23\x48\x2d\x8e\xb6\x9d\x65\ +\xcc\x99\x29\x48\x45\xba\x43\x7f\x16\x27\x88\xdf\xcb\xcb\xcb\x3d\ +\x9a\x24\x6a\x14\xe9\x6a\x8c\xb2\x4b\xcd\x35\x55\xa8\xa8\xa9\x67\ +\x2a\x2d\xd3\xe2\x8b\x72\x34\xc9\x6a\x4e\xb5\x6e\xd5\x8b\x46\x92\ +\x8d\xd5\x3a\x47\xbb\x89\xc5\x89\xe2\x2d\xf2\xb2\xb3\xda\xa2\x4e\ +\x4e\x42\x5e\x4e\x53\xd1\x60\x35\x70\x6d\xd8\xe5\x55\xe9\xe9\xda\ +\xaa\x46\xf9\x2d\x6b\x6e\x9f\xf5\xa8\xac\x44\x68\x8c\xd5\x2a\x47\ +\xbb\x89\xc5\x89\xe2\x2d\xf2\xb2\xb1\xd9\xa3\xaa\x9d\x42\xa7\xd3\ +\x63\xe7\xe5\x61\xbb\x15\xad\x77\x3d\xce\xd9\xfa\xa9\x8b\xe7\xbd\ +\xe3\x49\x6a\xb8\xeb\x59\xd6\x1f\x33\xf9\x3f\x4e\x9f\x99\x59\x89\ +\x96\x3d\x5c\xb6\xbd\xa2\x3d\x3a\x3e\x08\xa2\x9d\x45\xe9\x1a\x41\ +\x6c\x75\x99\xd6\x5e\x2c\xc9\x4a\x43\x5e\x8e\x48\x4f\xd8\xb7\xdb\ +\x16\x22\xa7\xea\x98\xb6\x9a\xf9\x59\x79\x79\xda\xa3\xbe\xa7\x4c\ +\x95\xaa\x43\x6c\x39\xc6\xb9\x51\x16\xe9\x85\xce\x6e\xde\x8e\xa5\ +\xda\x4f\x1e\x4b\x63\xff\x00\xda\xb5\x6a\xc5\xbf\xd4\x76\xa9\xd2\ +\x3d\xdc\x4e\x2c\x4f\x11\x5f\x95\x95\x9e\xd5\x1a\x21\xcc\xa0\x00\ +\x00\x00\x00\x00\xc9\xf2\x37\xf1\x16\x7e\x5b\x23\xfc\x38\xe9\xb7\ +\xf3\xc7\xea\x51\xf6\x4f\xe2\xe2\x73\x2a\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x05\x9c\x00\x00\x00\x00\x00\x03\x1e\xc9\xa8\xb3\x10\ +\xe7\xe0\xb6\x4e\x13\x5c\xe7\x48\xd3\xda\x88\xe5\xb2\x2a\x2a\x3e\ +\xfb\x7a\x96\xc9\xb0\xe9\xb7\xd1\x1f\xa9\x47\xd9\x3f\x8b\xac\xbc\ +\x76\x47\x66\x26\x22\xa5\x95\x51\xc8\xe4\xb2\xb5\xc9\xd2\x8a\x9d\ +\x4a\x73\x2a\xf5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x38\x00\ +\x00\x00\x00\x00\x06\x41\x92\xb1\x19\x06\xb1\x2b\x16\x2b\xd1\xad\ +\x49\x3a\x7a\xb9\x5c\xb6\x44\x44\x6c\x4b\xaa\xaf\x51\xd3\x6f\xa2\ +\x3f\x52\x8f\xb2\x7f\x16\x79\xfa\xac\x09\xfa\xa4\x38\xb4\xb8\x2e\ +\xc6\xe4\x5c\x6a\xeb\x35\x1c\xc6\xb9\x1a\xe4\x54\x55\x45\xc4\xd4\ +\x73\x55\x16\xdd\x0e\x4f\x6e\xce\x75\x52\x27\x80\x00\x00\x00\x00\ +\x00\x00\x00\x00\x0b\x38\x00\x00\x00\x00\x00\x06\x51\x93\x59\x3c\ +\xfa\xd6\x69\x61\x4f\xac\x2c\x32\x14\xf5\x5f\xf0\xd8\xf4\x5b\xe7\ +\x6d\xb1\xc9\xb2\xca\xc4\x5b\xfc\x4e\x8a\x66\xac\x53\x6d\xab\xaa\ +\x76\xa4\xcc\xeb\x12\xb0\x6a\x2c\xff\x00\xa5\xfa\x4e\xb3\xc4\xc5\ +\x7b\xff\x00\x46\x1f\xde\xb6\x1c\x5f\x5b\x6c\x3d\xee\xe2\xf0\xf6\ +\x6c\xbf\x93\xa3\x54\x6a\xdb\xd3\x13\x83\x0c\x77\x71\x78\x7b\x79\ +\xb2\xfe\x46\xa8\xd5\xb7\xa6\x27\x06\x18\xee\xe2\xf0\xf6\x6c\xbf\ +\x91\xaa\x35\x6d\xe9\x89\xc1\x86\x3b\xb8\xbc\x3d\x9b\x2f\xe4\x6a\ +\x8d\x5b\x7a\x62\x70\x61\x8e\xee\x2f\x0f\x66\xcb\xf9\x1a\xa3\x56\ +\xde\x98\x9c\x18\x63\xbb\x8b\xc3\xd9\xb2\xfe\x46\xa8\xd5\xb7\xa6\ +\x27\x06\x18\xee\xe2\xf0\xf6\x6c\xbf\x91\xaa\x35\x6d\xe9\x89\xc1\ +\x86\x3b\xb8\xbc\x3d\x9b\x2f\xe4\x6a\x8d\x5b\x7a\x62\x70\x61\x8e\ +\xee\x2f\x0f\x66\xcb\xf9\x1a\xa3\x56\xde\x98\x9c\x18\x63\xbb\x8b\ +\xc3\xd9\xb2\xfe\x46\xa8\xd5\xb7\xa6\x27\x06\x18\xee\xe2\xf0\xf6\ +\x6c\xbf\x91\xaa\x35\x6d\xe9\x89\xc1\x86\x3b\xb8\xbc\x3d\x9b\x2f\ +\xe4\xb7\x9c\xca\x80\x00\x00\x00\x04\x0d\x6a\xad\x2d\x37\x25\x1a\ +\x9d\x4c\x9e\x6b\xa3\x39\xaf\x86\xab\x05\xe8\xab\x05\x56\xed\x57\ +\x39\x5a\xbf\x61\x51\x6f\x64\xd8\xaa\xa9\x64\xe8\x55\x40\xe1\x95\ +\x56\xd3\x6a\x2d\x9c\x85\x0e\xd0\xf3\x79\xb8\x8d\x63\x7f\xca\x8b\ +\x78\x6a\x88\x9d\x28\xcb\xc4\x4c\x29\xd4\xf5\xf6\x22\x28\x59\x64\ +\xe7\x25\x67\xa0\x24\xc4\x94\xcb\x22\x31\x6f\x67\x43\x72\x39\x16\ +\xdb\x17\x6a\x6c\x03\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x29\ +\xf9\x47\x48\x85\x39\x94\x2e\x99\x9c\xa2\xa4\xc3\x73\x10\x5a\xc7\ +\x2c\x36\x3e\xce\x47\xc6\x57\x27\xda\xe8\xfb\xcc\xff\x00\xc8\x07\ +\x06\x81\xa6\x6e\x93\x79\x68\x40\x34\x0d\x33\x74\x9b\xcb\x42\x01\ +\xa0\x69\x9b\xa4\xde\x5a\x10\x0d\x03\x4c\xdd\x26\xf2\xd0\x80\x68\ +\x0a\x66\xe9\x37\x96\x84\x04\x8b\x16\x3c\x38\x69\x0e\x1d\x2e\x32\ +\x22\x22\x22\x22\x31\x11\x11\x13\x62\x22\x25\xf6\x01\xf5\x8e\x67\ +\xb3\x63\x7f\x62\x7f\xd8\x1c\x53\x74\xb9\x59\xd8\xd9\xe9\xdc\x9b\ +\x58\x8e\xb2\x26\x28\x90\x21\xb9\x6c\x9d\x57\x50\x3c\x74\x0d\x33\ +\x74\x9b\xcb\x42\x01\xa0\x69\x9b\xa4\xde\x5a\x10\x0d\x03\x4c\xdd\ +\x26\xf2\xd0\x80\x68\x1a\x66\xe9\x37\x96\x84\x01\x28\x34\xbb\xed\ +\xc9\x26\xf2\xd0\x80\xb7\x64\xdc\xbc\x59\x4c\x9d\x94\x96\x98\x66\ +\x17\x32\x04\x26\xb9\xab\xd4\xe4\x63\x51\x53\xf7\x02\x44\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x0f\xff\xd9\ +\x00\x00\x0f\x3e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ -\x00\x00\x02\xa7\x49\x44\x41\x54\x78\x9c\x8d\x93\x4d\x48\x54\x51\ -\x18\x86\x9f\x3b\x1e\x1d\xa7\x71\x9c\xc9\x1f\xcc\x30\x1b\x49\x92\ -\x7e\xa0\xcc\xdc\x44\x45\x8b\xa0\x8d\x19\x2a\x6e\x62\x6a\x17\x35\ -\x54\x0b\x5d\xe9\xae\x9d\xb4\xa9\x85\x82\x41\xd0\xa2\xda\xd9\x18\ -\xe8\x2a\x08\x8a\x90\x20\x2a\xfa\x0f\x86\x0a\xad\x66\x94\x69\x9a\ -\x69\x9c\x99\xeb\xbd\xd7\x7b\xee\x3d\x2d\x46\x4b\x29\xa2\x77\xf7\ -\x9d\x73\xde\xe7\xfb\xbe\x17\x8e\xc6\xf0\x43\x05\x0c\x31\x72\xe4\ -\x32\x00\x17\xa7\x87\x11\xa2\x0f\x51\xde\x86\x10\x7e\x00\xa4\xd4\ -\x91\x76\x1c\x29\x63\x8c\x1e\x1f\x61\x8d\xb4\x15\x00\xd8\xf6\x20\ -\x8e\x3c\x89\xcf\xd7\x11\xae\xaf\xd6\x1a\x82\x3e\x0e\xb7\x35\x02\ -\xf0\x28\xbe\x40\x6a\xd1\x60\x2e\x9d\x57\x18\xc6\x73\x6c\x7b\x80\ -\xb1\xee\x99\x12\x60\xe8\x81\xea\x6f\x6f\x62\xe2\x45\x82\x70\x43\ -\x90\xce\xcd\x01\xc2\x4d\xf5\x00\xcc\x25\xd2\x00\xeb\xea\x89\xd7\ -\x0b\x60\x18\xb3\x2c\x5b\xa7\x19\xeb\x9e\x11\x28\x97\xcd\x8d\xb5\ -\xf4\x38\x2e\xcd\x4d\x75\x7c\x49\x66\x98\x78\xf2\x89\xb9\x74\x01\ -\x34\x0d\x94\x82\x57\x49\xc2\x75\xd5\x9c\xe8\xd8\x4a\x8f\xe3\x72\ -\xf7\xcd\x42\x0b\xca\xb9\x0a\x74\x96\x71\xe0\xf4\xa5\xbd\x2d\xf5\ -\xf8\xfd\x3e\x66\x13\x19\xa6\x5f\x7e\x25\xb7\xa8\xe7\x30\x8d\x3b\ -\x98\x46\x14\xcb\xba\x81\x2d\xbd\x39\xdd\x6c\x4e\x15\xac\xca\x3d\ -\xad\x9b\xd8\x54\x59\xc6\x87\xef\x7a\x23\xed\xfd\xcb\x02\xd7\x65\ -\xc9\x76\xd0\x80\xda\xda\x20\x47\x77\x38\xdc\x7f\x3f\x1f\xa2\x2a\ -\xf0\x96\x91\x23\x8f\x57\xb2\x7a\xcc\xf9\xa9\xc8\x5c\x32\x3d\x7a\ -\xcf\x75\x42\x87\x76\x37\xd3\xba\x21\xa9\x7d\xb4\xb4\x3e\x8d\xc1\ -\x7b\x0a\x05\x68\x6b\xa2\x5d\xad\xaf\x1c\x5b\x7b\x0a\x17\xa6\x6e\ -\x51\x51\x11\xe9\x3d\xbc\x8b\x6f\xa9\x2c\x33\xef\x12\x45\xf1\xc7\ -\xa3\x7f\xc9\x75\xc7\x91\x32\xa2\x9b\x36\xfe\x60\x00\x50\x7e\xf1\ -\xdf\xe6\x55\x39\x0e\x45\x4b\xa2\x94\x02\x29\x11\x9c\x9b\x2c\xa0\ -\xdc\xaa\x5f\x3b\x78\x3c\xb7\x19\xef\x39\xf5\x57\xb3\x52\x51\x1c\ -\x87\x82\x69\x53\xcc\xe5\x41\xb9\xba\x07\xa5\xe2\x48\x97\x6d\x3b\ -\x5b\x69\xdc\xd2\x00\x8e\xd3\x45\xf4\x6e\xe4\x0f\x73\x74\x32\x82\ -\x74\xba\xc2\x0d\x21\x8a\x96\x4d\x3a\x95\x05\x57\xc5\x05\x9a\x16\ -\x43\x39\xfb\x8a\xcb\xb6\xa6\x79\x2b\xc1\xe3\x09\x61\xdb\xa3\x9c\ -\x8d\x1d\xc3\xe3\x19\x5f\xd9\x3d\x8a\x2d\xbb\x70\x64\xc8\x0c\x04\ -\x59\xce\x2c\x52\xc8\xe5\x15\x5e\x6f\xac\x34\xf7\x99\x89\xa7\x58\ -\xe6\xfe\xea\xb6\xed\x00\xf8\x32\xdf\x48\x7d\xcf\xad\x69\xaf\x11\ -\x6e\xaa\x23\xeb\x0f\x21\xf5\x25\x96\x12\x49\xf0\x56\x3e\xe3\x7a\ -\x7f\x67\x29\x44\x21\x06\x70\x2b\x6e\xe6\x67\x3f\xb7\x88\xda\x1a\ -\xcc\xea\x1a\x2a\x02\x35\xb8\xa6\x51\x8a\xc5\xe7\x63\x5e\x81\x9b\ -\xd7\x91\xc9\x04\x78\xbd\xb3\x08\x31\x50\x42\xaf\xea\xdc\xe4\x41\ -\xa4\x7d\x15\xc3\xe8\x20\x18\xd2\x36\x7a\xcb\xf8\xe1\x0f\x95\xee\ -\xb2\x19\xb0\x2c\x30\x0d\x85\x6f\xc3\x73\xca\xc5\x00\xe3\xbd\x33\ -\xeb\x01\xbf\x41\xc3\x48\xd9\x87\xb4\xdb\x90\xd2\xbf\x32\xa1\x8e\ -\x28\x8f\x23\x44\x8c\x6b\xbd\xeb\xbe\xf3\x4f\x57\xf9\x31\xd1\xb0\ -\x87\x00\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x0f\x05\x49\x44\x41\x54\x78\xda\xed\x5d\x4d\x8f\x25\x55\ +\x19\x7e\xde\x53\xd5\x33\x3d\x03\x4c\xc3\xe0\x1f\x10\x91\x09\x8e\ +\x44\x18\x62\x94\x8d\x09\x19\x22\x31\x44\x25\xc6\x10\x09\x62\x5c\ +\x20\x02\x2a\x0b\x70\x65\xc2\xc6\xa8\x0b\x17\x46\x12\x12\x75\x12\ +\x16\x93\xb0\x70\x0b\xc4\x10\x4d\x98\x49\xc4\x64\x94\x88\xc8\xa2\ +\x51\xc1\x0f\x70\xe5\x47\xec\x61\x9a\x99\xe9\xe9\x7b\xeb\xbc\xaf\ +\x8b\x3a\xa7\xee\xa9\x53\x5f\xb7\xbe\xfa\xde\xee\x3e\xa7\x73\x52\ +\xf7\xa3\x6e\x77\xdf\x7a\x9e\xf7\x79\x9f\xf7\x9c\x53\x55\x40\x68\ +\xfb\xba\xd1\x90\xbf\x4c\x41\x51\x38\xa4\x7d\xc0\xa0\xc2\x63\x02\ +\x41\x41\xe5\xb6\xee\x63\x00\xb8\x80\x0b\xb2\x30\x02\xd4\x80\x1e\ +\xc8\xd0\x93\x0c\xfe\x8f\x47\x04\x71\xdf\xb3\x9f\x39\x8f\xf3\xb2\ +\x23\x04\x20\x10\x55\xfc\x9e\x00\xfc\x40\x4a\x30\x07\x09\x72\x44\ +\x00\x20\xf6\xb3\xf3\x12\x81\x06\x00\x9e\x2a\x1e\x87\xb6\x73\x2a\ +\x20\xee\x63\x00\x19\xf8\x4d\x44\xa0\x2e\xe0\x0b\x84\x1c\xc0\x6d\ +\x57\xde\xf3\xa0\x08\x03\x79\x01\xef\x47\x14\x94\x4b\x00\x51\x50\ +\x42\x20\xb6\xe0\x3b\x24\x10\x02\x61\x03\x1b\xd2\x9b\x00\x04\x22\ +\x49\x89\xe5\x02\xee\xf6\xa8\x82\x04\x81\x00\xc3\xa6\x02\xb1\xe0\ +\x1b\xe0\x45\x41\x31\x81\xb4\x21\x01\x03\xb0\xdb\x46\x12\x50\x07\ +\xf0\x7d\xd0\x63\xd3\x23\x87\x04\x2a\x90\x60\x14\x12\x88\x43\x02\ +\x0b\x3c\x2b\x28\x6d\x08\x90\x98\xae\x2d\x11\x0c\x19\x04\x40\x29\ +\x09\xa8\x23\xf8\x16\xf8\x95\xeb\x1f\x78\xe5\x7f\x01\xa6\x81\x9b\ +\x58\x9c\xc4\x64\x73\x01\x89\x00\xc2\x20\x61\x10\x33\x88\x35\x48\ +\x6b\x5c\x78\xfe\xbe\x63\x0a\x2a\x51\x50\x53\x02\x4d\x08\x34\x25\ +\xd0\x14\x40\x42\x20\xdd\x44\x02\x6a\x09\xbe\x8d\xf2\x15\x00\x07\ +\xae\x7f\xe0\x95\xff\x04\xb4\x16\x40\x02\x4b\x00\xd6\x50\x3a\xc1\ +\x85\x17\xee\xbf\x4d\x41\x6d\x13\xc8\xf6\x89\x25\x03\x00\x0d\x40\ +\x1b\x02\xb0\x4f\x02\xea\x08\xfe\xc1\xeb\x1f\x78\xe5\xdf\x76\xdf\ +\x1f\x7c\xf3\xf6\xca\xef\xf1\xf0\x27\x0f\x05\x30\x7b\xb4\x9f\x9d\ +\xbb\x0c\x88\x40\x44\xd2\xad\x66\xb0\xd6\xe0\x69\x82\xef\x9f\x7a\ +\x0d\xa4\x35\x88\xa7\xd8\x7c\xf1\xc1\x3b\x14\xd4\x16\x81\xb6\x08\ +\x74\x85\x40\x57\x00\x4c\x08\x34\x71\x48\x60\x7d\x41\x46\x02\xd5\ +\x12\xfc\x03\x6d\xc0\x0f\x6d\x00\x0f\x40\x04\x10\xa5\x5b\x10\xa0\ +\x08\xa4\x08\x14\x29\x7c\xe7\xa1\xdb\x00\x22\x80\x14\xd6\xee\x39\ +\x7d\x4e\x20\x47\x00\x5c\x03\xe0\x30\x80\x43\x00\x0e\x1a\xcc\x62\ +\xdf\x9f\x1d\xc5\x51\xaa\x54\x00\x43\x00\x37\xe7\xc7\xa5\x91\xff\ +\x8d\xdb\x1b\x5d\x84\x55\x80\xf5\xf5\xf5\x80\x66\x8b\x76\xfc\xf8\ +\x71\x00\xc0\xa9\xdf\x6e\xa5\x89\x80\x39\x53\x01\x4e\x34\x44\x6b\ +\x70\x92\x40\x6f\x4f\xf0\xc3\x67\x5f\x07\x71\x02\xd2\x09\x36\x5f\ +\x7a\xe8\x4e\x05\x75\x09\xc0\x45\x02\x5d\x36\x4a\xb0\x0d\x60\x4a\ +\xa0\xc4\xa8\x41\x96\x0e\x54\x0d\xf8\x6e\xf4\x97\x83\x1f\xda\x4e\ +\x4a\x81\x51\x81\x99\x2a\xa4\x68\x29\x7c\xfb\x2b\xb7\x64\xe8\xad\ +\xdd\x7d\xea\xac\x40\xae\x01\x70\x35\x80\xab\x00\xac\x96\xa8\x40\ +\x56\xa1\x51\xc5\x40\x8f\xeb\xf6\x0f\x18\xc3\xf7\xdf\x2e\xe0\x3f\ +\x7c\x47\xf0\x00\x7d\xda\xa9\x73\x46\x01\xac\x07\x60\x81\x30\x83\ +\x93\x04\x92\x24\xd0\xd3\x29\xf4\x64\x0a\xde\x9e\xe0\xc7\xcf\xbd\ +\x61\xcc\x21\x63\xf3\x57\x8f\x9d\x24\xd0\xfb\x04\xba\x08\xe0\x12\ +\x80\x2d\x02\x6d\x03\xb0\xc6\x90\x01\x70\xa6\x00\xce\xa4\x8e\x1b\ +\xfd\x31\x80\xb8\x2b\xf8\xa1\x8d\xec\x0d\x5c\x27\x4f\x84\x6f\x7d\ +\xe9\x78\xf6\xda\x91\xbb\x9e\x79\xd9\xa8\x80\xeb\x07\x56\x1c\x25\ +\x20\x00\xa4\x2a\x06\x87\x32\xf9\x77\xeb\xfc\xef\x3d\x76\x02\x2c\ +\xd2\xaa\x87\xd6\xaf\xd5\x1e\xdf\x2c\x99\xa7\xcf\x45\x04\x8f\x7e\ +\xf1\xe6\x19\x09\x4e\x3e\x7d\xc6\xa4\x81\x43\x00\x56\x05\x62\x53\ +\x41\x66\x06\x55\xc5\xc0\x90\x6b\xfe\x00\x00\xdf\x7d\xf4\x04\x58\ +\xd0\xba\x87\xd6\x97\x00\xcd\x5d\x84\x20\x48\x3b\x03\xf8\xda\x17\ +\x8e\x65\x48\x0a\xa4\xb6\x22\x88\x3d\xf9\x77\x15\xc0\x96\x7e\xf9\ +\x71\x89\x8e\x2d\x54\x01\xdd\xaa\x00\x7b\xdc\xc5\x4c\xef\x48\x59\ +\x47\xf1\x35\x6b\x1c\x8d\x09\xbc\x62\x08\xb0\x6d\x08\x60\xab\x01\ +\x8e\x9b\x52\x80\xcb\xc4\xf6\x89\x2a\x00\xd9\x5b\x01\x30\x03\xde\ +\x27\x40\x4e\x09\x0c\x46\x52\xc4\xea\xa0\x97\xff\x63\xb7\x12\x88\ +\x2b\xe0\x72\x55\x00\x00\xa0\xbb\x48\x80\x14\x19\x1d\x5a\xbb\xa6\ +\x0d\x9a\x59\x15\xe0\x75\x5d\xf0\x06\xf0\xbd\xd7\x8a\xd3\xdd\xfc\ +\xaf\x7c\x02\xb8\x24\x28\xcc\xeb\x33\x87\x28\x5f\x94\x07\xa8\x4d\ +\x01\x9c\x62\xc3\x6c\x94\x80\x0b\x0a\x50\x36\x53\x5b\xaa\x00\x65\ +\x24\x50\x33\x05\x68\x8e\xf2\xd0\xc6\x50\x80\x12\x02\xb0\xe9\x4e\ +\x0a\xd0\x52\x99\x02\x54\x19\xf0\x2e\x3b\x50\xe3\x03\x0a\xff\x48\ +\xc8\xf7\x3b\x4c\x80\x12\x05\x80\x89\x74\x71\xa3\xde\xe9\xc2\xa5\ +\x04\x28\x5b\xa8\x43\xf1\xbc\xb0\x26\x3d\x6b\xba\x50\x05\x74\xab\ +\x02\x12\x5d\xf4\x00\xd0\xe9\x88\x20\x9b\x2e\xae\x07\x30\xcf\x1b\ +\x02\xbb\x51\x01\x2a\xa5\x28\x28\xc0\x72\x28\x80\xb8\x2a\xe0\x46\ +\xbf\x14\xfc\x5a\xd9\x3a\x4d\xb4\x26\xc0\xb4\xa7\x02\x84\x2a\xa0\ +\x5b\x9b\x7a\x0a\x30\x9b\x0f\x98\xa9\x40\x4a\x02\xfb\x58\x5a\x95\ +\xec\xc3\x29\x40\x50\x81\x1d\x51\x00\xb8\x26\x90\xf3\x5e\xc0\x9a\ +\x42\xe1\x11\x08\x90\x70\x00\x63\x11\x2d\xd1\xf5\x04\xc8\xc0\x77\ +\xc8\x20\x0b\x53\x80\xd0\x46\x2f\x03\x0b\x04\xf0\xc1\xe7\x91\x14\ +\x60\x1a\xaa\x80\x85\x54\x01\x53\x2e\xf7\x00\x30\x6e\xdf\xe6\x7f\ +\x7f\x84\x30\x28\xc0\x1e\x57\x00\x70\xb9\x17\x18\x4d\x01\x92\x50\ +\x05\x2c\xc6\x03\xd4\x29\x80\xed\xe2\x6c\x47\x53\x00\x67\x99\xfa\ +\x5c\x2d\x54\x04\xc3\x56\x01\x3c\x53\x00\x3f\xfa\x61\x14\x00\xec\ +\x4d\x07\x2f\x34\x05\x84\x39\x82\xd1\x52\x40\xe9\xf4\x30\x66\x86\ +\x10\x63\xa4\x00\x0e\x1e\x60\x21\x8d\xcb\x08\xe0\x44\xbe\x78\x55\ +\x01\x46\x53\x00\x09\x55\xc0\x22\xaa\x00\x7b\xdc\xc5\x9b\x07\x16\ +\x13\xf6\xe2\x9e\x35\x94\x11\x65\x04\x0f\x10\xd6\x77\x2e\xa6\x89\ +\x34\xa7\x00\x37\x15\x8c\xa6\x00\x7d\x17\x78\x86\x2a\xa0\x63\x0a\ +\xa8\x20\x80\x7d\x6d\xd7\x10\x20\xb4\x81\x09\xe0\x02\x8e\xec\x04\ +\xe2\xd6\x4a\x1d\x08\xb0\x17\x08\xe0\x45\xfe\x28\x0a\x10\xf0\x5f\ +\x90\x07\xa8\x39\xfe\xd2\xb0\x5d\x2a\x05\x08\x55\x40\x37\xcf\x54\ +\xab\x00\xa8\x56\x83\x50\x05\xec\xf1\x2a\x00\x15\xf2\x3f\x9a\x09\ +\x94\x50\x05\x2c\x3f\x01\x64\x89\x09\x10\xda\xb8\x04\xe8\x22\xff\ +\xed\x3c\x40\xc0\x62\x31\x55\xc0\x1c\xc6\x4e\x7a\x98\xf5\xa0\x00\ +\xbb\x5c\x01\x0a\xef\x8d\x56\x06\x86\xb9\x80\x85\x54\x01\x52\x31\ +\x17\x50\x98\x17\xb0\xc8\x8b\x04\x0f\xb0\xaf\x14\xc0\x8f\xfa\xb1\ +\xca\x40\x1e\x88\xd1\xa1\x0d\xef\x01\xba\xe6\xff\xa0\x00\x7b\x45\ +\x01\xca\x06\x88\x02\x01\xf6\x2f\x01\x10\x66\x03\xf7\x50\x0a\x68\ +\x4b\x00\x60\x39\x87\x82\x43\x15\xd0\xb5\x0a\x58\x16\x05\x08\x98\ +\x2c\xd4\x04\x8e\xd5\x76\x6c\x1c\x20\x54\x01\x5d\x3d\x80\xb7\xfc\ +\x67\xde\x1e\x3c\xc0\xde\xf2\x00\x73\x4b\xbe\x8c\xa6\x00\x01\x8c\ +\x45\x56\x01\xf3\xe6\x7e\x0a\x55\xc0\x3e\x50\x00\x54\x03\x2f\xa3\ +\x55\x01\x3d\xbf\x48\xa8\x02\x3a\x56\x01\xcb\x63\x02\x03\x28\x4b\ +\x99\x02\x90\x9e\x86\x29\xbe\x1a\x2c\x5b\x0a\x08\x55\xc0\x08\x26\ +\x10\x5e\xde\x37\x8f\xdb\x40\xa5\xc2\x21\xde\xdf\x6d\xf4\x14\x70\ +\xe2\x47\x1b\xad\xf6\x27\xef\xb4\xf2\xa6\x1b\xd2\x53\xd3\xfb\xe8\ +\xf7\xf9\xa6\xd6\x74\xd6\xb4\xaf\x9c\x4d\xc7\xd1\x7f\x3b\xa6\xfa\ +\x14\x40\xce\x52\x30\x1a\x75\x55\x70\x08\x96\xc5\x78\x80\xa5\x51\ +\x80\x80\xc5\x52\x13\x80\x9c\x7d\xdb\x88\x5a\xf0\x00\xc1\x03\xf4\ +\x63\xe4\xd8\x39\x76\xaf\xb5\xc6\xe3\x21\xe3\xe2\x11\x14\x20\xb4\ +\x7e\x0a\x10\x02\x7a\xc9\x14\xa5\x27\x2e\x41\x01\x82\x02\x74\x1f\ +\x07\xe8\x54\x83\x53\xfd\x3e\x7b\x7d\xd2\x89\x5a\xee\x40\x73\xd8\ +\x02\xb7\xf6\xa7\x96\xe7\x06\xf6\x53\x00\xa9\xfe\x0e\x21\x55\x0c\ +\x4b\x1a\x1a\xa9\x3e\x8f\x77\x84\xd5\xa1\x8d\xa2\x1e\x43\x88\x65\ +\xdc\x0b\x64\x0a\xe0\x2f\x9c\x10\x54\x54\x08\x1a\x45\x01\xa8\xe6\ +\xa5\x1a\x22\x50\xf0\x00\xf9\x9c\x4b\xc3\x0c\x03\x08\x39\x1e\xa1\ +\x70\x2b\xa8\x9d\x52\x80\xa0\x02\x0b\x8d\x7e\x97\x04\x5d\x53\x71\ +\x2f\x13\x48\x01\xfc\xc5\x9b\xc3\x9e\x00\xc4\x6d\xc0\x0e\x6d\x49\ +\x89\x60\x64\x9f\x68\xc4\x14\xd0\x95\x18\x8a\x42\xc5\xd0\xc7\x03\ +\xd4\xdd\x01\x70\x67\xab\x80\xa0\x00\xcb\x5b\x05\x38\x91\xdf\x16\ +\xa7\x78\x90\x7f\x22\xb4\x1d\xab\xfd\xbb\x56\x0d\xe3\x55\x01\xa1\ +\xed\xea\x36\x8c\x02\x50\xf7\x9c\xe7\xbf\xfd\xee\x6b\x6f\xee\xe9\ +\x03\x7e\xd3\x27\x3e\x52\x1b\xc2\x6d\x3c\x40\xd9\x20\x50\xdb\x60\ +\x1d\x64\x1c\x20\xb4\x7d\xac\x00\x63\xb5\x9f\xde\xfb\x2f\xcf\x84\ +\x52\xb6\x75\xbb\x52\x0a\x44\x84\x28\x8a\xa0\x94\x42\x1c\xc7\x88\ +\xa2\x28\xb7\xad\xea\xee\x7e\xf6\xf3\x51\x14\xe5\x7e\xaf\x52\xaa\ +\xf4\xef\xba\xff\xd3\x3c\xed\x03\x5f\xfe\xcd\xee\xf6\x00\x41\x00\ +\xf6\xb9\x02\x54\x91\x9d\x5a\xae\xdb\x27\x8f\x32\xfb\x8d\x40\xca\ +\x3b\x20\xe2\x1f\x1f\x6f\x32\x5f\xaa\xc2\xde\x4b\xfe\xb9\x41\xa0\ +\x16\x07\x35\xac\x08\x0a\x0a\xb0\x3b\xda\xe9\xd3\xa7\x3b\x7d\xee\ +\xa9\xa7\x9e\x0a\x28\x07\x05\x08\x6d\x3c\x0f\xd0\xe0\x0e\x55\xc3\ +\x02\x80\x79\xd3\x95\xd6\x7a\x8f\x78\x80\xa6\xba\xbf\x62\xdd\x8f\ +\x34\x8c\x07\xf8\x6b\x02\x82\x02\x84\xb6\xa3\x1e\x60\xec\xc9\xa2\ +\x24\x49\xf6\x25\x40\x54\x26\x95\x34\xdc\xb9\x9a\x41\x01\x82\x02\ +\xb4\x64\x62\x21\xf2\xa9\xe5\x38\x40\x37\xe5\xd8\x2b\x1e\xa0\xed\ +\x79\x01\x22\x54\xba\x13\x51\x71\xee\x97\x82\x02\x84\xb6\x34\xe3\ +\x00\x43\x5b\x02\xde\xa7\xf7\xaf\x27\xd4\x17\x01\x83\x78\x00\x0a\ +\x23\xfa\xbb\xbc\x55\x5c\x2a\x74\x8e\x73\xc4\x5a\x8c\x03\xd0\x5c\ +\x91\x3e\x54\xce\x6f\xeb\x35\x76\x4d\x44\xb7\x3d\xbd\xc7\x5b\xfa\ +\x2d\xee\xed\x42\x21\x85\xa5\xc1\x99\x37\x90\x16\x0a\xe0\x58\x8b\ +\x10\x4c\x4b\x1f\xe9\xce\xc0\x50\x76\x71\x68\xe4\xaf\x2b\xef\x44\ +\x7e\x13\xa6\x59\x0a\x70\x77\xcc\x7d\x28\x5c\x21\x72\x09\x70\x97\ +\x22\xc0\x52\x22\xf5\x0d\x58\x95\x91\x21\x2e\x7b\x53\x20\x20\x10\ +\xa4\xcb\x4d\x68\x42\x1b\x1e\x7c\x1b\xf2\xe2\x44\x3e\x04\x60\x4e\ +\x7b\xee\x52\xf1\xe9\xfb\x34\x27\x68\xb1\x05\xdf\x82\xee\x93\x20\ +\x9d\x7b\x96\xd9\x3c\x75\xb6\x1a\x66\xde\x71\x82\x86\xfd\x68\xde\ +\xe3\xb0\x37\x59\x58\x6b\x6d\x72\x51\x0f\x40\x18\x04\x4e\xd1\x11\ +\x06\xc0\x06\x68\x36\xcf\x05\x90\x76\xd5\x52\x9c\xe6\x01\x05\x31\ +\x3f\xf9\x8c\x63\x15\x80\xd2\x7f\x82\x68\xf6\x4f\x85\x13\x05\x46\ +\x8e\x78\xf7\xb9\x73\x73\x60\x71\x22\xdf\xed\x7e\x9a\x98\xb3\x78\ +\x8c\x9b\x8c\x02\x89\x98\x55\x2b\x4e\x2a\x70\x89\x30\xd2\x01\xf0\ +\x23\xbe\x6b\x15\x20\xe6\xce\x9a\x6d\xba\xfb\xf7\x07\x53\x1e\x69\ +\x79\x5f\x57\xf1\xae\xff\x9e\x81\xad\x9d\xad\xe9\x62\xdf\x33\xfb\ +\xb5\xb8\x85\x78\x4e\x01\xb8\xec\x0e\x35\xc2\x20\x28\x27\xf2\x31\ +\xb2\x27\x90\x41\x47\x3e\x96\x86\x00\xad\x6e\xec\xeb\x3a\x7d\xce\ +\x47\xbd\x66\x80\x13\xe7\x31\x03\xda\x90\xc0\xca\xbf\x73\xb9\x18\ +\x34\xdc\x4a\x2a\xa7\x00\x25\x44\x10\x12\x36\x36\x80\xf3\x93\xce\ +\xf3\x5e\xa0\x4e\x86\x51\x80\x48\x45\xdd\x0e\x3b\x4b\x75\x27\x67\ +\x4b\x26\x09\x92\x98\xd9\x36\x67\x6b\xbf\x9f\xbf\xe6\x8e\xda\x7f\ +\x2f\x6a\x3a\x11\x20\x33\x7c\x62\x36\x56\xde\x4d\xe4\x8b\x89\x7a\ +\x9d\x98\x6d\xfa\x3a\x65\x04\xb0\x3d\x8f\xb9\xc1\xb8\x40\x86\xd2\ +\x14\xa0\xa0\x24\xb5\x19\x0c\x62\x4e\xbf\x28\x6b\x80\x94\x93\xff\ +\x07\x3a\xeb\xb3\x62\x51\xa4\x0c\x74\xa5\x08\x0b\x36\x33\xcf\xba\ +\x66\x30\x31\x08\x94\x6d\xad\xe1\x25\x33\xd1\x22\x22\xd9\xd6\xa6\ +\xa0\x3e\xcb\xc2\x33\x13\xed\x0f\x69\xd7\x12\xc0\xcb\xf9\x19\xe8\ +\x49\x0a\xbc\x7d\x2e\x46\xfe\x45\xb2\xad\x73\xcf\x00\x9f\x11\xb9\ +\x0b\xd0\x17\x4c\xa0\x11\x42\x30\x58\x14\x14\x13\xeb\x54\x4b\x92\ +\x04\x50\x2a\x25\x41\xd9\x24\xf5\x40\x04\xb0\x32\xc6\xde\x65\xb8\ +\x63\xd5\x6d\xda\x82\x35\x43\x93\x4e\xc1\x76\x7f\x88\x67\x91\x61\ +\xd3\xad\x4a\xa3\xce\x3d\x2f\x40\xd4\x30\x04\xc8\xe4\x99\x75\x3d\ +\x01\x72\xf5\x3d\x17\x73\x7f\x0e\x7c\xf3\xba\xe6\x59\xaa\x28\xde\ +\x3d\x92\x09\x54\x29\x0d\xbe\x02\x64\x9f\xb6\x2a\x40\x5a\x03\x4a\ +\xf0\xd6\xef\xd6\x71\xd3\xc7\x6f\x36\x57\x85\x70\xa7\x22\x69\x58\ +\x05\x30\x07\xc8\x27\x40\x57\x4f\xa0\x93\x14\x7c\x2d\x3a\x8b\x74\ +\x0b\x7a\xc4\x11\x48\x66\x04\x60\x62\x08\xcb\x28\x27\x86\xd8\xef\ +\x05\x5d\x47\x80\x62\xd9\x97\xca\x3e\x67\x52\x9f\x45\x7d\xf6\x98\ +\x67\xf9\xdf\x90\xe0\x9f\xeb\xef\xb8\x64\x4a\x00\x68\xd3\x0b\x44\ +\x70\x07\x82\x04\xf9\xc9\x27\x01\xa0\x2f\x3c\x7f\xdf\xb1\x6b\x3f\ +\xf7\xf3\xbf\x08\x29\xbc\xf5\xea\x3a\x8e\xdd\x7e\xac\x94\x00\x73\ +\xaf\x19\x6c\xba\x9e\x80\x39\x40\x7a\x9a\x3f\x50\x8a\xba\xcd\x5c\ +\x27\x93\x04\x60\x40\x62\xc9\xbe\xba\x68\x81\xc4\x02\x89\x04\xa2\ +\x05\x1c\x31\x38\x62\x28\xa5\xc0\x8a\x6b\x09\x90\xae\xbf\x6b\x4f\ +\x00\xfb\xbd\x90\x4c\x6b\x89\x4d\xae\xfb\xcf\x19\x40\x3d\x33\x7c\ +\x4e\xee\xcf\x08\x60\x4a\xc1\x77\xd7\xdf\xc9\x7e\xe9\xe6\xd9\x27\ +\x1f\x21\xd0\x14\x80\xed\x89\x4f\x82\x32\x0f\x20\x94\x16\x7f\x9c\ +\x1e\x1e\x49\x2e\xbc\x70\xff\xad\x6b\x9f\x7d\xee\x8f\x24\x0a\x6f\ +\xbf\xfa\x26\x3e\x7c\xe2\xa6\xe2\xf5\x61\xe6\x3d\x18\x4d\x27\x92\ +\x70\x52\x4a\x00\x74\x5c\x0f\x92\x4c\x0d\x01\x58\x80\xc8\x78\x82\ +\xc8\xf8\x82\x88\x21\x91\x21\x80\x4a\x09\xa0\x22\x03\x3c\x15\x09\ +\x60\xc1\xef\xa6\x00\x49\x33\x01\xfc\xe1\x5d\x91\xf2\x34\x20\xec\ +\xc8\xfe\x2c\xff\xe7\xc0\x3f\xf3\xc4\xe3\x04\xda\x06\x60\xbb\x25\ +\x40\x52\x50\x80\xf7\xf0\x9e\x5c\x8b\x6b\xc9\x73\x8a\x56\x36\xa6\ +\x04\x9a\x6c\xbe\xf8\xe0\x1d\x6b\xf7\x9c\x3e\x07\x22\xfc\xf5\xf7\ +\x7f\xc2\x8d\xb7\xde\x98\x33\x83\x32\x2f\x0f\x9a\x08\xa0\xcb\x09\ +\x70\xef\xe7\xef\xcd\x4b\x31\x66\xe7\x06\x82\xd2\x2a\xc1\x9e\xdb\ +\xe7\xf6\x64\x3b\x49\xa3\xdd\x46\xbd\x4e\x09\xc0\x3a\x05\x9d\x63\ +\x46\xa4\x22\xe8\x48\xa7\x9f\x57\xe9\xb9\x81\xa4\x28\x23\xc2\x20\ +\x04\x30\xdf\x0b\xd3\x69\x43\x6a\x93\x22\x01\x1c\x23\x28\xb6\xde\ +\xcf\x81\xcf\x3e\xf8\x4f\x00\xb8\x02\x60\xcb\x6c\x7d\x12\xe8\x9c\ +\x02\x38\xc3\xc1\x42\x29\x84\x56\x22\x12\x02\x4d\x05\xb2\x4d\xa0\ +\xad\xcd\x5f\x7c\xf5\x53\x6b\x9f\x79\xf6\xd7\x00\xe1\x6f\x7f\xf8\ +\x33\x3e\xf4\xb1\x1b\xdb\x9b\xc1\x8e\x04\xc8\xac\x86\x9b\x8b\x41\ +\x99\x64\x43\x01\xac\x38\x8b\x76\xbf\xe7\xa2\xdf\x2a\x80\xe2\x2c\ +\x05\x44\x2a\x02\xa9\xd9\xef\x1b\x8d\x00\x49\x5b\x02\x48\x9e\x0c\ +\x9a\x0b\xe4\xf0\xc0\x7f\x12\xc0\x65\x02\x5d\x02\x70\x09\xc0\x65\ +\x43\x84\x6d\x00\x13\x8f\x00\x1c\x97\xcc\x16\x89\x21\x02\x9b\x1d\ +\x27\x00\x22\x00\x31\x81\xe2\xcd\x97\x1e\xba\x73\xed\xee\x53\x67\ +\x41\xc0\xdf\x5f\x7f\x0b\x37\xdc\x72\x43\x3e\x0d\xf4\x24\x80\x32\ +\x66\x49\x27\xba\x74\x24\x30\x97\x8b\x31\xcb\xd5\x50\x80\x52\x0a\ +\x5a\x74\x0a\xb8\x94\x59\x9e\xd9\x73\x61\x41\x14\x45\x00\x03\x4a\ +\x2b\x48\x64\xca\xbe\x28\xad\xff\x6d\x0a\x20\xb3\x90\xdf\x2a\x8e\ +\x4b\x80\x56\xeb\xef\x33\x13\x98\xcc\x91\x02\x4a\xa6\x7c\x21\xb3\ +\xc8\xe7\xd9\xd0\x70\x0d\xf8\x17\x0d\x01\x2e\x39\x4a\x30\xf1\x7c\ +\xc0\x4c\x01\xce\xe3\xbc\x5c\x87\xeb\xc8\xf5\x00\x04\x4a\x90\x4e\ +\x19\x6f\x1b\x12\x28\x02\xa9\xcd\x5f\x7e\xfd\xe4\xda\xa7\x7f\xf2\ +\x32\x00\xfc\xe3\x8d\xb7\xf1\xc1\x8f\xde\x30\x9c\x02\xd8\x2a\x20\ +\xe1\x7a\x05\x30\x57\x47\x10\x65\x66\x2e\x23\x33\x88\xc3\x48\x41\ +\x14\xf3\x9f\xbb\x04\xf0\xd5\xc1\xa4\x03\x15\x29\xb0\x36\x26\x50\ +\xf3\x2c\xf2\x09\x33\x0f\x80\xbe\x1e\xc0\x9a\xc0\x64\xbe\x71\x00\ +\xb7\x1a\x40\xf9\xcd\xa1\x4b\x64\xdf\x82\xff\xbe\x21\xc0\x45\x4f\ +\x01\xdc\x14\x20\x28\x9e\x9b\x0a\x18\x12\xd8\x1e\x09\x24\x02\x70\ +\x00\xc0\x41\x00\x87\x00\x1c\x16\xc8\xd5\x00\xae\x39\x72\xd7\x33\ +\x2f\xf7\x1e\x07\x08\xad\x92\x10\x54\xba\xbc\xcb\x0e\xf2\xcc\xde\ +\xdb\x3c\xf3\xc4\xe3\x00\xb6\x08\x74\xd9\x01\xfe\x7d\x4f\x01\xb6\ +\x4b\x2a\x81\xd2\x35\xc7\x2e\x09\x94\xe9\x31\x80\x15\x81\xac\x02\ +\x58\x05\x70\x95\xe9\x57\x1f\x39\xf9\xf4\x99\xf9\xe7\x37\x43\x9b\ +\x7b\x16\xb0\x84\x15\x3e\xf0\x10\xc1\xe6\xd9\x27\x1f\x01\xb0\x4d\ +\xa0\x2d\x07\x70\x57\xfe\xaf\x54\x44\x3f\x57\xc6\xed\x51\x1c\x25\ +\x33\x06\x6e\x49\x10\x99\x6e\x95\x60\x15\xc0\x61\xd3\xaf\x12\xc8\ +\x61\xf3\xda\x41\xb3\x8f\xdd\x3f\x5c\x39\xbe\xd3\xd8\x18\x35\x69\ +\x44\x56\xa5\x11\x68\x62\x00\xbe\x62\xe4\xde\x1a\xbf\xcb\x35\xe0\ +\x0b\x00\xd9\xc0\x86\x54\xfe\xa5\xa3\x38\x6a\x6a\x42\x71\x49\x10\ +\x03\x58\x31\x20\xaf\x9a\x94\x60\xfb\xaa\x79\x7d\xc5\xec\xa7\x02\ +\x01\x46\x4b\x12\xd6\xa4\x27\x06\xdc\x89\x53\xf6\x6d\x79\xa6\xaf\ +\x34\xf2\x37\xb0\x21\x8d\x99\xdb\x92\xc0\x82\x69\xfc\x40\x6c\xba\ +\xab\x06\x36\xf2\x0f\x38\xef\x2b\xf4\xbf\xa5\x4d\x68\x79\x65\x70\ +\xcb\x04\x76\x06\x76\x26\xa6\x6f\x3b\x51\x3f\x71\xde\x2f\x05\x7f\ +\x2e\x60\x7c\x12\x38\xf2\xbe\xe2\xf4\x03\x02\xb1\x8f\x7d\xf9\x0f\ +\xe0\x0f\x27\xff\x6e\x0a\xc8\x0d\xd6\x39\x4a\xe0\x0e\xfd\xea\x32\ +\xd9\x6f\x51\x94\x55\x92\xc0\x1a\x43\x57\x11\xdc\xc8\xb7\x3d\x44\ +\xff\x78\x75\x82\x3b\xca\x91\x78\x5d\x7b\x43\xbe\x85\xc8\x6f\x5d\ +\xbc\x19\x12\xb8\x5d\x79\x06\x31\xf2\xc0\x0f\xf2\x3f\x2e\x01\xfc\ +\xa1\x2e\x8d\xe2\xac\x5f\x65\xe4\x77\xaa\xde\x1d\x25\x20\x4f\x0d\ +\x7c\xe0\x83\xf4\xef\x90\x19\x2c\x21\x42\x2e\xea\xeb\xc0\xef\x14\ +\x9d\x1e\x09\xc8\x23\x43\x13\xf8\x81\x14\xbd\x87\x87\x2a\x49\x20\ +\x28\x59\xf9\x53\x07\x3e\x00\xfc\x1f\x37\xdb\x9e\xd9\x19\x4a\x71\ +\xcf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x06\x54\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ +\x00\x00\x06\x1b\x49\x44\x41\x54\x48\x4b\x6d\x56\x6b\x4f\x14\x57\ +\x18\x7e\x66\xf6\xc2\xc2\x82\xec\x80\x80\x08\x8a\x06\xa3\x68\xaa\ +\x91\xa8\xd5\xa6\xe9\x07\x7f\x80\x97\x06\x1b\xd3\x26\xd6\x0f\x6d\ +\xd2\x98\x34\x6d\x5a\x6d\xbf\x18\xdb\xd4\xa6\x69\xfa\xd1\xa6\x69\ +\x1b\x93\x9a\x4a\xe5\x8e\x28\x5e\x88\x92\x82\x45\x10\xd6\xae\x02\ +\x2a\x51\x63\xaa\xc6\x36\x15\x2f\x70\x16\xf6\xbe\xb3\x33\xbb\x7d\ +\xce\x41\xd6\x5b\x27\xd9\x6c\x76\x66\x78\x9f\xf7\xb9\xbc\xef\x41\ +\xfb\xae\xe9\xe4\x1d\x4f\x4e\xae\x4f\xd3\xa0\x2e\x3b\x6d\x21\x9d\ +\xce\xcc\xfc\x78\xe6\xb2\x52\x49\x38\x5d\x6e\xb8\xdd\x6e\x80\x8f\ +\x2d\xdb\x82\x65\x26\x5f\x7a\x6f\xf6\x86\xd3\xe9\x86\x69\xa5\xa6\ +\xb4\x03\x4d\x9d\x91\x3b\xd7\xaf\x7a\xa7\x84\x40\xd1\xdc\xb9\x28\ +\x99\x37\x1f\x0e\x87\x23\xfb\x87\xe9\x4c\x1a\x9a\x0e\x88\x7f\xc6\ +\x71\x6d\x74\x14\x73\x4a\x8b\x50\xba\x60\x01\xca\xe6\x57\xa1\xa8\ +\xb8\x84\x58\x44\xcb\xbc\xdc\x90\x6c\x26\x1e\x8b\x45\xb4\x1f\x5a\ +\xbb\xc4\xc5\xae\x76\x63\x6c\x78\x04\x0e\x97\x13\xaf\xbf\xb1\x01\ +\x05\x73\xe6\x40\x23\x25\xf9\x71\xb0\xba\x4b\x77\x60\x32\x18\x44\ +\xcf\xd9\x1e\x84\x23\x51\x58\xb0\x31\xaf\x62\x21\x76\x7e\xb2\x1b\ +\x19\x9d\x8c\xec\x17\x00\xa8\x86\xd3\xe9\x42\xca\x4a\x0a\xed\xe0\ +\xd1\xb3\xc2\xdf\xdd\x61\x5c\xbf\x32\x0a\x9d\x9d\x6f\xd8\xb0\x1e\ +\x05\x05\x05\x59\x00\x5d\xd7\xa1\xeb\x2e\x04\x09\xd0\x7b\xae\x17\ +\x89\x78\x0c\x69\xdb\xc6\x9c\x92\x52\xbc\xf7\xe9\x5e\x68\x0e\x17\ +\x32\x69\xfb\x79\xa9\x88\x27\x01\x28\x91\xd0\x0e\x75\xfe\x2e\x06\ +\x4f\xb7\x19\x63\x04\x70\x38\x9d\x58\xff\xea\x13\x00\x7d\xc6\x14\ +\x9d\x0c\x1c\x4e\x07\x82\x22\x88\x73\x7d\x7f\x20\x26\x01\x58\xd0\ +\x47\x80\x0f\x3e\xdf\x47\x00\xf7\x73\x00\x19\x4a\x0a\x68\xf4\xcb\ +\x05\x2b\x49\x80\x5f\xbb\x7a\xc4\x85\xce\x36\xe3\xda\x28\x25\x22\ +\xc0\xba\x75\xeb\xb2\x0c\x24\x80\x94\xc9\xc9\xfb\x82\x1e\x9d\xef\ +\x3f\x4f\x80\x38\xac\x54\x0a\x45\x65\x65\xf8\xf8\xcb\x6f\xa1\xd1\ +\xcc\x67\x19\x64\x9e\xf8\x21\x19\x24\x53\x94\xa8\xa5\x7b\x40\xf4\ +\x76\xb6\x1a\xa3\x01\xbf\x02\x58\xbb\x76\xad\x02\x90\xd2\xc8\xe2\ +\xf2\x92\xa6\x4b\x89\xfa\x07\xfa\x99\x1e\x9b\x05\xd3\xf0\xe6\x17\ +\x62\xdb\xce\xf7\xa1\xb3\x53\x80\x41\x90\x49\xc8\x68\x4a\x66\x8d\ +\xec\xdd\x34\x39\x65\xd9\x42\x3b\xda\x33\x24\x7a\x4f\xb4\x1b\x97\ +\xfd\xfd\x7c\xe8\x44\x6d\x6d\x2d\x7c\x3e\x9f\x2a\x9c\x35\x9a\x60\ +\x53\x53\x53\xe8\xbf\x30\x00\x33\x65\x61\xe9\x92\x0a\x14\x7a\x73\ +\x10\x33\xe3\x32\x43\x2c\xac\x23\x65\xba\x28\x9d\x83\x35\x74\x86\ +\x2a\x03\x17\x9b\xb5\xd3\x10\xda\xf1\xbe\x80\xe8\x39\xde\x6a\x04\ +\x06\xfb\x88\xec\xc0\xea\xd5\xab\x15\xc0\x6c\xf7\x33\x26\xeb\x08\ +\x4d\x4f\x63\x60\xd0\x8f\x48\xf4\x11\x2a\xca\xb7\xa3\xa0\xb0\x86\ +\xf7\xa3\xd0\x6c\x27\x65\x12\x58\xbc\x68\x0a\x05\xf9\x79\xb0\x59\ +\x55\xa2\x4a\xdf\x4c\xd3\x14\x5a\xd7\xd0\x25\xd1\xdd\xde\x6a\xf8\ +\x07\xfa\x64\xcb\x0a\xc0\x30\x8c\x6c\x2a\xb2\x00\xa1\x10\x01\x86\ +\x90\xce\x4c\x43\xcb\x7c\x84\x89\x07\x3e\x24\x12\xeb\x61\x14\x5f\ +\xc4\xc3\xf1\x7c\xd4\xbd\xd3\x8f\xea\xaa\x02\xd0\x9e\xac\xac\xb6\ +\x4d\x89\xce\x06\x46\xc5\x99\xd6\x66\x63\xb0\xaf\x97\x0c\x74\xac\ +\x5a\xb5\x0a\xc5\xc5\xc5\xea\xa5\x14\xdf\x8e\xd3\xd4\xa2\xa2\x22\ +\x4c\x4b\x06\x17\x06\xa9\x76\x08\x1e\xf7\x1e\x4c\x4c\x7a\x91\x8c\ +\xd7\x72\xe0\x46\x71\xef\xb6\x13\x5b\xeb\x2e\xa1\x6a\x41\x2e\xbb\ +\xce\x28\xc6\x32\x18\x96\x65\x09\xed\xdc\xe5\xeb\xe2\x74\x5b\x83\ +\xd1\xdf\xdb\xad\x24\x5a\xb9\x72\xa5\x2a\x28\x25\x22\x45\x84\xc3\ +\x61\x94\x96\x96\x2a\x89\x2e\x0c\x91\x81\x16\x85\x6e\xef\x86\x98\ +\x28\xa6\xe1\x2b\xe0\xc8\xb9\x01\x33\xec\xc4\x96\x37\xcf\xa1\x62\ +\x41\x01\xb3\x9f\x51\x73\x92\x66\x10\x78\x09\x6d\x68\xec\x96\xe8\ +\x6c\x69\x30\x7a\xcf\x74\xa9\x04\x48\x80\x59\x89\x24\x03\x99\x9e\ +\xf2\xf2\x72\x84\x29\xd1\xa0\x3f\x00\x2b\x1d\x41\x7e\xde\x2e\x4c\ +\x4d\xe6\x72\xaa\xd7\xa0\x7c\x61\x1f\xee\xdd\x34\xb0\xb9\x6e\x0c\ +\x15\x15\x39\x2c\xac\x53\xba\x04\x42\x7c\x5f\x01\x04\x6e\xfc\x25\ +\x3a\x5b\x1b\x8d\xee\x53\x27\x15\xc0\x8a\x15\x2b\xb2\x0c\xa8\x21\ +\x62\xb1\x18\x0a\x0b\x7d\x88\x44\xc2\xf0\xfb\x87\x60\x69\x71\xa4\ +\xcd\x0f\x31\xf1\xb8\x1c\x7a\x7a\x19\xcd\xbc\x8d\x78\x2a\x83\xad\ +\x5b\xc8\x60\x7e\x3e\xa3\x99\x51\xec\x5d\x8c\x6f\x32\xc9\x39\x18\ +\xb9\x75\x57\x9c\x6c\x6b\x36\x4e\x1d\xef\x50\x00\x35\x35\x35\xca\ +\x83\x67\x53\x24\x63\x27\x81\xfc\xfe\x3f\x61\x22\x08\xaf\x63\x17\ +\x26\x1e\xb9\xd8\xe5\x46\x2c\xaa\x3e\x89\x9b\x63\xe5\x78\xeb\x6d\ +\x32\xa8\xf4\xd0\x37\x25\xcd\x53\x0f\xae\xdf\xbd\x2f\x8e\xb5\x1c\ +\x31\x8e\xb7\xb7\x2a\x80\x65\xcb\x96\x3d\x07\xa0\xd6\x05\x4d\x8b\ +\xc7\x12\xf0\x07\x02\x88\x47\x27\x50\x6c\x6c\xe7\x20\xbd\x82\xa4\ +\x1d\x41\x32\xec\x65\xb2\x82\x58\xf3\xda\x4d\x14\xf9\x72\x69\xec\ +\x0c\x03\x39\x9c\x2a\x45\xb7\xfe\x1d\x17\x1d\x4d\x8d\xc6\xd1\xe6\ +\x26\x05\xb0\x74\xe9\xd2\x2c\x80\xec\x7c\x76\xd8\x62\xb1\x38\x2e\ +\x5d\xbe\x8c\x50\x78\x1a\x1b\x37\xae\xc7\xa2\x85\x95\x94\x2d\xc2\ +\xe7\x0e\x76\x9b\xc3\x61\xe6\xa0\x71\x07\xc9\x01\x93\x69\xcc\x02\ +\xdc\x7e\xf8\x50\x74\x34\x36\x1b\x2d\x0d\xf5\xbc\xe9\x44\x75\x75\ +\x35\xe6\xf2\x5c\x98\x95\x48\x7e\x4b\x06\xd1\x68\x14\x81\x4b\x01\ +\x6e\x03\x0d\xb9\x1e\x0f\x72\xbd\x79\x6a\x6f\xd9\xec\x38\x91\x48\ +\xaa\x01\x63\x2c\x65\xd7\x34\xda\x54\xeb\xc2\x4e\x93\xc1\xdf\x8f\ +\x27\x44\x7b\x53\xb3\xd1\x70\xf8\x90\x02\x58\xb2\x64\x89\x02\x98\ +\xbd\x9e\x32\x88\x61\x78\x64\x18\x51\x7a\x11\x67\x4a\xaa\x16\x2f\ +\x42\xfd\x6f\x0d\x2c\xc4\xb5\xcc\x38\xdb\x96\x8d\x24\xbf\x2d\x2b\ +\x45\x1f\x92\xea\x3b\x1a\x89\x08\x6d\x3c\x14\x16\xc7\x9a\x5b\x8c\ +\x5f\x7e\xfe\x51\x49\x24\x19\x94\x94\x94\x3c\x03\x20\x07\x5c\x57\ +\x26\x8f\xf0\x44\x93\xeb\x5a\xc6\xb7\xa2\xb2\x12\x07\x0f\xd5\xc3\ +\x95\xc3\x68\xb2\x6b\xb9\x05\x66\x9a\x91\xcb\x5a\x83\x87\x2c\x53\ +\x49\xae\x8a\x47\xd1\x98\x38\xd1\xd6\x66\xfc\xf4\xfd\x01\x52\x4a\ +\x33\xcb\x15\x28\xe3\x2a\x96\xfa\xab\x8d\x2a\xa7\x92\xc0\xb2\xe8\ +\x95\x6b\xd7\x38\xd9\x31\x04\xa7\x82\xf4\xaa\x06\x87\x8f\x34\xf1\ +\x3c\x70\xcc\x00\x3c\x77\xd1\x0b\x9e\xdd\x49\x33\x21\xb4\x50\x22\ +\x21\xda\x1a\x5b\x8c\x6f\xbe\xde\x8f\x6a\xca\xb3\x69\xf3\x66\x32\ +\x98\xcb\x21\x8a\x20\x22\xe5\x88\x27\x94\xc6\x93\x8f\xc6\xe1\x1f\ +\xf2\xe3\xfe\xf8\x03\xee\xab\x5a\xec\xdd\xf7\x05\x6a\x96\x2f\x87\ +\x99\x34\x5f\x28\x3e\xf3\x53\xfe\x73\x60\x4a\x80\x69\x1e\xcc\x23\ +\xc3\x57\xbc\x57\x79\xa2\xd5\x6d\xab\x43\x59\x69\x09\x4f\x5c\xb9\ +\x82\xe5\xc8\xd3\x38\x7e\x3c\x39\x2e\x34\x1c\xae\xc7\x57\xfb\xf7\ +\x63\xc7\x8e\x77\xb1\x67\xcf\x67\xc8\xcb\xcf\xe5\x1c\xc4\xe5\x52\ +\x7f\x09\x40\x4a\x25\x01\x42\xe1\x50\x44\x9b\x9c\x0e\xdf\xce\xf3\ +\x7a\x7c\x3a\x6f\xf2\x88\x43\x84\x49\x90\xa7\xa5\x9e\x3d\xc7\x99\ +\x1a\x1e\x1e\xc3\xa3\xc3\x78\xfc\xe0\x01\x19\x6e\xe2\x84\x9a\x34\ +\xda\xa6\x3c\xff\xdb\xbc\x02\xf5\xb8\x9d\x88\x9b\x56\xf0\x3f\xfe\ +\x19\x0e\x29\x33\x91\x8f\x11\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x1d\x4d\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ +\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\ +\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x1c\xed\x49\x44\x41\x54\x78\ +\x5e\xd5\x9a\x07\x50\x15\xe9\xb2\xc7\x4f\xbd\x7a\xf7\x56\xdd\x77\ +\xef\xae\x19\x90\x60\xda\x95\x9c\xc1\x2c\x41\x82\x01\x73\x58\x73\ +\x42\xc0\x80\x8a\x24\x23\x39\x9b\x15\x11\x33\xa2\x28\xa2\x28\x08\ +\x08\xa8\x98\x56\xd7\xb8\x86\x75\x57\xd7\x08\x98\x40\x24\x9c\x21\ +\x63\xdc\xfb\x7f\xdd\x03\x83\x07\x04\xd9\xeb\xee\xbe\xaa\x47\xd5\ +\xbf\xbe\x39\x33\x73\xe6\x4c\xff\xbe\xee\xfe\xba\x67\x90\x85\xc6\ +\x25\xe6\x84\xef\x4f\x91\x87\xed\x3d\xd2\x82\x92\xfe\xa0\xfe\xcc\ +\x6b\xb5\xa4\xe6\x7e\xeb\xe3\xfe\x95\xfb\xd3\xe4\xe1\x71\x47\xb2\ +\x65\x61\xfb\x92\xaa\xd6\x1f\x39\x8e\x35\x07\x8f\x7d\x56\xab\x13\ +\xd2\xfe\x90\xea\xaf\x95\xf0\xc7\xaf\xd5\x92\x9a\xbb\x6f\xc5\xfd\ +\x1b\x8e\x9c\x40\x44\x5c\x72\xa5\x6c\xd5\xbe\xa3\xc2\xba\xc4\x0c\ +\xac\x8a\x4f\xf9\x4b\xb4\x72\xff\xd1\xdf\xb5\xef\xff\x5a\xeb\x0e\ +\x65\x20\x3c\x2e\x45\x2e\x5b\x7b\x30\x4d\xd8\xc0\x1e\xc0\x84\xfe\ +\x22\xad\x3a\x90\x2a\x6a\xdd\xa1\x74\xac\xe5\x59\x39\x90\x26\x8e\ +\x6b\x45\x8f\x68\xf9\xfb\x7f\x85\x36\x1c\x3e\x4e\x20\xd2\xe4\xb2\ +\x0d\x89\x99\x42\x64\xf2\x49\xb0\x17\x44\x26\x9d\xc0\xa6\xa3\x59\ +\xd8\x92\x76\x06\x9b\x53\x4f\x83\xf7\xf3\x89\xeb\xe9\x18\x8b\xcf\ +\x61\x23\xea\x25\xed\xab\xd3\xfa\x66\xc4\xd7\x88\xa0\x59\x0f\xda\ +\x7d\x08\xeb\x0f\x67\x22\x9a\xae\xbf\x35\xfd\x2c\xa2\xe9\x37\x36\ +\x1e\xa9\xbd\x7e\x83\xeb\xd6\x5f\xbf\x4e\x4d\x1d\xfb\x83\x62\xdb\ +\x08\x04\x01\x38\x7c\x54\xd8\x7c\xf4\x14\xa2\x0f\x1d\x87\xef\xba\ +\x28\xb8\xae\xf0\xc7\xdc\x65\xfe\x58\xb6\x72\x3d\x56\x6d\xdf\x8d\ +\xa8\xfd\x87\xb0\xeb\x48\x1a\x76\xa4\x1e\x47\xf4\xd1\x4c\x6c\x21\ +\x6d\x4b\x3d\x89\xe8\xe4\x4c\x51\x9b\x93\xd2\x11\x75\xf8\x98\x38\ +\x6e\xa2\x31\x32\x31\x0d\x9b\x48\xeb\x13\x8f\x62\x5d\xc2\x11\x44\ +\x26\x24\x23\x32\x2e\x11\x6e\xcb\x42\x30\x6b\xae\x17\xfa\x5a\x3b\ +\x60\xc4\xc4\x99\x70\xf6\x5c\x06\x3f\xfa\xbd\xf5\x7b\xe3\xb1\x2d\ +\x39\x15\xbb\x8f\x13\x94\xb4\xb3\xd8\x92\x7a\x86\xae\x91\x89\x8d\ +\xe4\xa2\x9b\x0e\xd6\x2a\x92\x6f\xf8\x4b\x95\xa8\x20\x85\xfd\xd1\ +\x04\x20\x52\x04\x90\x94\x2c\x6c\x4b\x39\x83\x2d\xf1\xe9\x58\xb8\ +\x74\x05\x26\x4c\x9b\x01\x5d\x63\x53\xf4\xe8\x67\x29\xaa\xff\x00\ +\x3b\x38\x8c\x1e\x8b\x09\x8e\xb3\xe9\xb8\x1f\x96\x87\xac\xc2\xa2\ +\x15\x01\xf0\xf6\x0f\x85\xa7\x5f\x08\x16\x07\x84\x61\x49\x50\x38\ +\x96\x05\xaf\x14\xb7\x79\x9f\x17\xc9\x23\x20\x18\x8b\x02\x83\xe0\ +\x1d\x18\x0c\x8f\xa5\x3e\x58\xe0\xea\x09\x6f\xb7\xa5\xf8\xb6\x93\ +\x26\xb4\xbb\xeb\xa2\x6b\x57\x4d\x7c\xa3\xad\x0b\x5d\xf3\x9e\xb0\ +\x70\x70\xc0\xc8\xe9\x8e\x70\xf5\x0d\x43\x40\xd4\x2e\x44\x1f\x4c\ +\xc3\x66\xba\xc9\xa8\x83\x92\x8e\x7d\xb1\xf8\x3a\x92\x14\xf7\x6f\ +\xa5\x24\x18\x75\x80\x00\x6c\x4c\x4a\x11\xb6\x24\x9f\xc2\xd6\x84\ +\x0c\x2c\x0e\x0c\xc1\x4c\x27\x17\xf4\xeb\x6b\x05\x2b\x2b\x5b\x92\ +\x1d\xfa\xf5\xb3\x86\x91\x91\x39\xac\x2c\x6d\xe0\xe5\xb9\x18\xa1\ +\xc1\xe1\x58\xb4\xd0\x1d\x01\x7e\x41\xf0\xf5\xf1\x87\xbf\x6f\xa0\ +\xb8\xcd\x0a\x0e\x0c\x15\x8f\x87\x04\x85\x21\x34\x34\x1c\xa1\x11\ +\x11\x08\x23\x85\x86\x85\xc3\xdd\xdd\x03\x1e\x1e\x9e\xd0\xd7\x31\ +\x80\x91\x8e\x31\x0c\xf5\x4d\xa0\x6f\x60\x02\x4d\x5d\x03\x74\xd5\ +\xd2\x81\xc6\x37\x5a\xe8\xf2\xad\x1e\xda\xa9\x77\x85\x3b\x01\x8c\ +\x4d\xcf\xc2\xa6\x23\xa9\x88\x3c\x42\x46\x50\x88\x7c\xa9\xa2\x39\ +\xe4\xea\xa4\xb8\x7f\x5b\x72\x16\x36\x1f\x3c\x26\x97\x45\x26\xa5\ +\x8a\x1e\xb0\xeb\x48\x16\xcd\x5e\x20\x1c\x67\x39\xa3\x4f\xcf\xbe\ +\xb0\xec\x67\x05\x6b\x8b\x01\xb0\x22\xf5\xea\xd1\x07\x0e\x43\x1d\ +\xb0\x74\xc5\x62\xac\x59\xb7\x0a\x5e\x8b\x3d\x11\x1c\x46\x06\x87\ +\x06\x21\x28\x24\x50\x14\x6f\x07\x87\x06\x22\x84\xc6\xd0\xf0\x60\ +\x44\x84\x86\x60\x75\x48\x08\x56\x85\x85\x20\x3c\x34\x18\x9e\x9e\ +\x8b\xe0\xe5\xed\x01\x03\x3d\x7d\x18\xeb\x18\xc2\x58\xcf\x18\x46\ +\x2c\x82\xa0\xaf\x6f\x44\xa3\x31\x4c\x0c\x8c\xa0\xa6\xd6\x09\x0b\ +\xbc\x97\x62\x5f\xe6\x29\x6c\x4a\x22\x00\x14\x5a\x8a\x46\xfc\x59\ +\xda\x9e\x72\x0a\x9b\x0f\xa7\xcb\x65\x51\x47\x33\x84\x9d\xc7\xbe\ +\xc7\xee\xe4\xd3\xf0\x26\xb7\x9d\xe5\xec\x44\x00\x7a\x91\xe1\x96\ +\xb0\x24\x59\xf4\xb7\x40\x6f\xfa\x6c\xef\x30\x10\x1e\xcb\x3d\x10\ +\xbe\x3e\x02\x8b\x96\xba\xc3\x37\xd4\x0f\x7e\x61\xfe\xe2\x28\x6d\ +\xb3\xfc\xc3\x03\x10\x10\x11\x48\xb3\x1e\x8c\x95\xa1\xa1\x58\x19\ +\x16\x8a\x30\x02\xe0\xe1\xb1\x08\x9e\x0c\xc0\x40\x5f\x84\x60\xa8\ +\x6f\xd0\x40\x06\xfa\x7a\x34\xea\x43\xad\x53\x27\xb8\x51\x28\xee\ +\x3f\x41\x89\x38\xf9\x38\xa2\x92\x4f\x60\x0b\x25\xca\x3f\x5b\x3b\ +\x28\x01\x6f\x3e\x92\x21\x97\x6d\x4e\xc9\x14\x76\xa5\x9f\x47\xec\ +\xd1\x33\x04\x80\x12\xd5\x6c\x67\xf4\xea\xd3\x1b\x96\x03\xac\xd1\ +\xdf\xca\x12\xfd\x2c\x2d\xd0\xa3\x77\x2f\xd8\xda\xdb\xc2\x7b\xb1\ +\x17\x56\xaf\x59\x25\x8e\x7e\xfe\xbe\xf0\x0f\xf0\x43\x40\x80\x3f\ +\x02\x02\xfd\x11\x18\x14\x80\xe0\xe0\x20\x84\x84\x04\x93\xfb\x87\ +\x90\x87\x84\x21\x88\x5c\x3f\x88\x42\x21\x28\x24\x9c\x00\x78\xc3\ +\xcb\x6b\x09\xf4\x0c\x0c\xa1\x43\x10\xf4\x0c\x0d\xa0\xcf\x32\x20\ +\xe3\x49\x7a\xb4\x4f\xdb\xc8\x10\x4a\x5d\xba\x62\xc1\xb2\x00\x1c\ +\xc8\xba\x84\xad\x47\x29\x29\xa6\x9c\xc5\x76\x5a\x99\xfe\x6c\xc5\ +\xa4\x9f\xa3\xeb\x67\xc9\x65\xbb\x52\x8e\x0b\x31\xc7\x2f\x20\x96\ +\xb2\xef\x62\x0a\x01\x27\x97\x3a\x00\xd6\x56\xe8\x4f\xc6\xf7\xb7\ +\xb4\x44\xcf\xde\xbd\x61\x6f\x67\x07\x6f\x4f\x6f\xac\x5d\xbd\x06\ +\x9e\x14\xcf\x81\xfe\x01\xa2\x82\x02\x02\x45\x05\x53\xc2\x0b\xa1\ +\x84\x17\x12\x44\x00\x82\x43\x08\x44\x28\x01\x08\x23\x10\x94\x13\ +\x08\xc2\x22\x77\x4f\x78\x12\x04\x7d\x43\x02\x60\xa8\x0f\x5d\x32\ +\x58\xd7\xf0\x23\x08\x3d\xda\xd6\x32\xd2\x83\x52\xe7\xce\x70\xa3\ +\x95\xe8\xe0\xe9\x8b\xd8\x4e\xf7\xb4\x8d\x56\x86\x9d\xa9\x59\xff\ +\x91\x76\x34\xa3\x9d\x69\xa7\xea\x15\x9b\x79\x0e\xdb\xd3\x08\x40\ +\x2c\x01\xd8\x7d\xf2\x3c\xf6\x64\x9c\xc3\x52\xdf\x00\x38\x3b\x39\ +\xa1\x37\x19\x6c\x49\x86\xf7\xef\xdf\x5f\x1c\xf9\xb3\x1d\x01\xf0\ +\xf2\xf2\xc2\x9a\x35\x6b\xb0\x68\xd1\x22\x9a\x75\x02\x10\x18\x58\ +\xaf\xa0\xa0\x20\xf2\x82\xda\x31\x38\x98\x40\x50\xfc\x87\x92\xc2\ +\xc2\x38\x21\x86\x8a\xdf\xf1\xf0\xa0\x10\xa8\x33\x96\x67\x9c\xa5\ +\x2f\x79\x02\xed\xd3\x31\xd0\x81\x72\x27\x75\xb8\xfb\xf8\x21\xf1\ +\xec\x0f\xd8\x79\xec\x14\x76\xa4\x9f\xc6\x2e\x1a\x5b\xd2\xce\x63\ +\x59\x1f\x95\xd6\xb4\x62\xd2\x4f\xd5\x6b\xcf\x89\xef\xb1\x2b\xed\ +\x94\x5c\xb6\x27\xed\xa4\x10\x7b\xf2\x02\xf6\x9f\xbc\x08\x1f\x9a\ +\xc1\x59\xb3\x1c\x9b\x04\x30\x60\xc0\x00\x11\xc0\xda\xb5\x6b\x45\ +\x43\xfc\xfc\xfc\xe0\xef\xef\x2f\x2a\x20\x20\xa0\x01\x08\x06\x20\ +\x49\x04\xf1\x1f\x02\xf0\xf0\xf5\x47\xd2\xf9\x2b\xd8\x9d\x79\x16\ +\x31\xc7\xcf\xd1\x6c\x9d\x6d\x51\x31\x04\xaa\x25\xed\xce\x38\x53\ +\xaf\x7d\xa7\x7e\xa0\x95\xe6\xac\x5c\xb6\x37\x23\x4b\xd8\x9b\x75\ +\x11\x09\xa7\x2f\xc3\x27\x88\x72\x80\xe3\x47\x00\x16\x16\x16\xf5\ +\x00\x6c\x6c\x6c\x1a\x78\x80\xaf\xaf\x6f\x3d\x00\x09\x82\x04\x82\ +\x21\x48\x92\x40\x2c\x58\xb0\x00\x1e\xee\xee\x14\xf3\x8d\x0d\xaf\ +\x95\x81\x91\x01\x85\x84\x2e\x54\x3a\x69\x7c\x11\x00\x45\xe3\x5a\ +\x3a\x97\xd5\x00\x40\xdc\xa9\x4b\x38\x78\xe6\x0a\x79\x40\x08\x9c\ +\x66\xcd\x42\xaf\x5e\xbd\x44\xc3\x25\xf5\xe9\xd3\x07\xb6\xb6\xb6\ +\xb4\x94\x79\x62\xf5\xea\xd5\x0d\x00\xb0\xd1\x8d\x41\x34\xf6\x06\ +\x1e\x5d\x5d\x5d\x3f\x0f\x80\x3d\x83\x72\x80\x72\x1d\x80\xe4\x0b\ +\x57\x11\x4b\xc6\xef\x26\x57\xdd\x43\xe3\x9f\xad\xfd\x94\x63\xf6\ +\x64\x7c\x2f\x97\xc5\x65\x9e\x16\xe2\x68\xf6\x0f\x9d\xbd\x0a\x5f\ +\xf2\x00\x67\xa7\xa6\x01\x58\x59\x59\x89\x86\x73\x08\xf0\xb8\x62\ +\xc5\x8a\x4f\xbc\x40\x0a\x0b\x45\x4f\xf8\xbd\x00\xa4\x10\x50\xd2\ +\x50\x13\x01\x1c\xfd\xe1\x9a\x18\xa7\xb1\x94\x9f\xf6\xd2\xf8\x67\ +\x2b\xfe\xcc\x25\xec\xcd\x24\x00\xfb\x4e\x9c\x15\x0e\x9c\xb9\x8c\ +\xa4\x73\x57\xe1\x1f\xb6\x1a\x4e\xce\xce\xa2\xcb\xb3\xfb\x4b\x21\ +\xc0\x00\x78\xdb\xcd\xcd\x4d\x04\xc0\xe3\xf2\xe5\xcb\x45\x00\x8a\ +\xb9\x40\x71\xbb\x41\x72\xa4\x71\xde\xbc\x79\x04\xc0\x03\x86\xb4\ +\xd4\x7d\x02\x80\xdc\x5f\x8f\x6a\x00\x5d\xaa\x07\x94\xd5\x3b\xc1\ +\xcb\x37\x08\x27\xae\xdd\xa6\x49\xb9\x8c\x84\xb3\x57\x70\xf0\x2c\ +\x7b\x68\xad\x12\xce\x5c\xfc\xb8\x7d\x9a\x46\x9a\xbc\x83\x74\xff\ +\x09\x34\xa3\x87\xc8\x8b\x0f\xd2\xbe\x03\xe4\xde\xe2\x3e\xf2\xec\ +\xf8\xac\x1f\xe8\x33\x85\x38\x89\xb7\x25\x1d\x22\x7b\xf7\x67\x9d\ +\x97\xcb\xe8\x22\x42\xe2\xb9\xcb\x48\xfd\xfe\x2a\x82\xd6\x44\xd1\ +\x32\x38\x07\x7d\xfb\xd6\x1a\xcc\x49\x90\xc7\xbe\x7d\xfb\x8a\x23\ +\xcf\x3c\x87\xc0\xfc\xf9\xf3\xeb\x01\x48\x10\x14\x67\x5f\x31\x27\ +\x48\x9a\x3b\x77\xae\x18\x42\x46\x46\x46\x22\x00\x03\x02\xa1\xa9\ +\xad\x05\x2d\x1d\x6d\x68\xeb\xea\xa0\xbb\xa6\x26\x34\xbb\xeb\xa0\ +\x5d\x87\x8e\x98\xbd\xc0\x13\xf1\x47\xa9\x5c\xdd\x7f\x04\x5b\xe3\ +\x93\xb0\xfd\x50\x32\xb6\x1f\xac\x1d\x77\x1d\x4e\x45\x4c\x52\x9a\ +\xa8\x9d\xd4\x74\xc5\x50\x03\xb6\x8b\x75\x24\x9d\x6a\x99\xe3\xb4\ +\x3f\x9d\x8a\xba\x4c\xc4\x51\xd6\xdf\x73\xf4\x04\xf6\xa4\x9c\x40\ +\x1c\x35\x6f\xfb\xe8\xf3\x01\xca\x0f\x07\x32\xce\xe2\x00\xe5\x80\ +\xc4\xac\x0b\x88\x4f\x3f\x23\x97\x25\x9e\xbe\x22\x24\x9d\xbf\x86\ +\x63\x17\x7e\x44\xe8\xba\x2d\x70\x9e\x3d\x97\x0c\xef\x57\xef\x01\ +\x8a\x00\x16\x2e\x5c\x88\x95\x2b\x57\x7e\x16\x40\x63\x18\x0d\x00\ +\x78\xb0\x07\x18\x89\x6b\x3f\x1b\x3f\x70\xf0\x20\x4c\x98\x34\x11\ +\x63\xc6\x8d\xc5\x98\x31\x63\x30\x7a\xd8\x70\x8c\x1a\x3e\x82\x3e\ +\x8f\xc7\xd8\x09\x93\x30\x66\xe2\x14\x51\x63\x27\x4e\xae\xd7\xb8\ +\x49\x93\xf1\xdd\xe4\x29\xa4\xa9\xa4\xe9\x18\x3f\x79\x06\xc6\x4f\ +\x99\x81\x29\xb3\xe6\x60\xba\x8b\x2b\xa6\x3a\xcd\xc5\x8c\xd9\xf3\ +\xe1\xe4\xea\x46\xdd\xe7\x42\x38\xcf\x77\x27\xa0\x1e\x98\xe3\xe6\ +\x89\x79\x8b\xbc\x31\xcf\xbd\x56\x0b\xbd\x96\x61\xbe\xe7\x12\x02\ +\x70\xe6\x8a\x90\x4c\xc6\x33\x80\xf0\x8d\xdb\xe0\x32\x7b\x1e\xb9\ +\xfd\xc7\xd9\x97\x00\xf4\xeb\xd7\x4f\xcc\xe4\x0c\x80\xc7\x65\xcb\ +\x96\xc1\xc7\xc7\x47\x54\x63\x10\xcd\x02\x60\x0f\x30\x36\x86\xb6\ +\x9e\xae\xe8\xfa\x66\x3d\xcc\x61\xde\xb3\x07\x15\x5a\xbd\x30\xc8\ +\xde\x1e\x43\x6c\x6d\x30\xd8\xce\x16\x76\x36\xd6\xb0\xb6\xa6\xfc\ +\x63\x6d\x01\xab\x01\x96\x54\x85\xda\xc0\xc6\xd6\x9a\x56\x22\x6b\ +\xd8\x51\x45\x6a\x67\x67\x43\x49\xd9\x86\x46\x7b\xd2\x40\xd8\xdb\ +\x0f\x82\xfd\xc0\x41\x18\x34\x68\x08\x06\xd2\xb6\x9d\xfd\x40\x0c\ +\x1c\x34\x18\x03\x69\xdf\xe0\xc1\x43\x30\x64\x88\x03\x86\x38\x0c\ +\x85\x83\xc3\xb0\x5a\x0d\x1d\x86\x61\xc3\x46\xf0\x76\x1d\x80\x1f\ +\x08\xc0\xf9\x1f\xb1\x2a\x6a\x27\x79\xc0\x3c\xea\xfc\x2c\x45\xa3\ +\xa5\x24\xc8\xc6\x73\x1e\xe0\x99\x8f\xa0\xee\x8e\x73\xc0\xd2\xa5\ +\x4b\x45\x2f\xe0\x64\x28\xa9\x31\x0c\xc5\x04\xa9\x08\x40\x97\xea\ +\x7e\x06\xa0\x43\x20\xbe\xd5\xec\x0e\xfb\x41\x03\xb1\xd0\x6d\x21\ +\x66\x3b\xbb\xc0\xd9\x71\x16\x9c\x1c\x67\xd2\xb6\x23\x25\xe4\xe9\ +\xb4\x2a\x4d\xa3\xa5\x79\x2a\x66\x4c\x9f\x8c\xe9\xd3\x26\x8a\x9a\ +\x32\x79\x3c\x26\x4f\x1a\x8f\x69\xe4\x09\xac\xa9\xa4\x29\xe4\x19\ +\x93\x27\x4e\xc2\xa4\x09\x13\x31\x7e\xdc\x77\xa4\x71\x75\xe3\x47\ +\x8d\x23\x2f\x1b\x37\xba\x4e\x63\xc6\x92\xb7\x0d\x97\xcb\x0e\x9f\ +\xbd\x2a\xa4\x5c\xba\x89\x8c\x8b\x37\xb0\x6e\x4b\xac\x18\x02\x56\ +\x56\x0d\x01\xb0\x37\x30\x00\x4e\x64\x5c\xd9\x71\x28\x34\x07\x40\ +\xd2\xef\x01\xc0\x65\xf1\x37\xdd\x35\x31\xf6\xbb\xe1\xd8\x10\x19\ +\x41\x65\x73\x20\xc2\xc2\x83\x10\x1e\xe1\x4f\xf2\xa1\xbe\xc3\x87\ +\xea\x0e\x3f\xac\xe4\xed\x55\x01\x58\xb3\xda\x9f\xc6\x20\xfa\x4c\ +\x6d\x37\xf5\x1c\x61\xd4\x63\xd4\x8b\xdb\xef\x10\xaa\x3a\x83\xc3\ +\xa8\xfb\x8c\xa8\x97\xe2\x39\xc1\xb4\xca\x49\xe2\x63\xc1\x81\x21\ +\x72\x59\xd2\xb9\x6b\xc2\xb1\x2b\xb7\x90\x79\xf9\x26\x36\x6c\xdf\ +\x23\x02\xb0\xa6\x3e\xa0\x31\x00\x5e\x19\xd8\x08\xae\xea\x38\x04\ +\x96\x2c\x59\xf2\x09\x80\xc6\x9e\xa0\x18\x12\x12\x00\x13\x63\x53\ +\x02\x60\x58\x97\xf9\xb5\x60\x62\xae\x49\x4b\xe3\x54\x98\x98\xac\ +\x85\xa9\xf9\x1a\xf4\xe8\x1f\x82\x9e\x16\x81\xe8\x37\x20\x8c\x42\ +\x60\x0d\xac\x07\x44\xc0\xd6\x2e\x14\xb6\x83\x02\x61\x3b\x70\x25\ +\x6c\xec\xdc\x30\xd3\xd1\x15\x21\xc1\xab\x10\x44\x95\x6b\x60\x60\ +\x90\xa8\x20\x32\x2a\xb0\xee\x73\x50\x50\x70\xbd\x82\xa9\x2f\x91\ +\xc4\xfd\x89\xa4\x88\x88\x55\x34\x86\x11\x80\xf3\xd7\x84\xf4\x6b\ +\x3f\xe1\xc4\xd5\x9b\x88\xdc\xb1\x97\x72\xc0\x5c\xd8\x52\xd5\xc7\ +\x6e\x2f\x55\x83\xbc\xcd\xb5\x81\x04\x80\x43\x61\xf1\xe2\xc5\x9f\ +\x35\x5e\x51\xbc\xaf\x16\x80\x07\x4c\x4d\x7a\x90\xe1\xa6\xd0\x33\ +\xa1\x55\x40\x4b\x03\x43\x47\xe9\xc1\xdc\xec\x30\xda\xb5\x7a\x09\ +\x0d\xe5\x6c\xa8\xa9\x3f\x40\x3b\xa5\xc7\x68\xd3\x3e\x17\xed\xdb\ +\x14\x43\xad\x43\x1e\xd4\x3b\x3c\x84\xb2\xca\xcf\x50\x6a\x57\x80\ +\x7f\x7e\x15\x89\xde\x96\xa3\xc9\x43\x22\x1a\xe4\x18\xc5\xbe\xa4\ +\x39\x29\x56\xa8\x61\xd4\xa6\x53\x8d\x22\x97\x25\x9f\xbf\x4e\x00\ +\x6e\xe1\xd4\xf5\xdb\x88\x8a\xd9\x47\x75\xc0\x6c\x11\x80\xd4\x07\ +\xb4\x04\x80\xbd\x40\x51\x4d\x41\xf8\x08\xc0\x93\x00\x98\x8a\x2d\ +\xb1\x2e\x85\x82\x8e\x4e\x77\x0c\x1a\xa6\x03\x63\xb3\x1d\x50\x51\ +\xca\x44\x9b\x7f\xf8\x40\xa9\x55\x02\xba\xaa\x3e\x83\x9a\xf2\x0b\ +\x74\x52\x7b\x86\x0e\x6d\x52\xd1\xea\x6f\x91\xe8\xac\x72\x01\xdf\ +\xaa\x80\x3e\x27\xc3\xc2\x6e\x3c\xc2\x56\x2f\x27\xc3\xfd\xbe\x18\ +\x00\xdb\x41\xfb\xe4\xb2\xa3\x97\xae\x0b\x19\x3f\xfe\x84\x33\x37\ +\x7e\xc6\x96\x3d\x09\x98\xe5\xe4\x22\x66\x58\x36\x5a\x5a\x05\x14\ +\x01\x70\x73\xc3\x21\xc0\x00\xd8\x60\x5e\x0d\x14\x25\x2d\x8f\x8a\ +\x10\x1a\x00\x30\xe5\x3a\x40\x0f\xba\x46\xa6\xd0\xd6\xd2\xc1\xb0\ +\xd1\x54\x01\xea\x6f\x44\x9f\xfe\x89\x74\x6d\x5f\xa8\xa8\xda\x40\ +\xa9\xed\x1e\x82\x90\x8b\x8e\xca\x97\x30\x62\x42\x34\xa6\xb9\x8c\ +\xc3\x57\xad\x46\xa0\x5b\xc7\xbb\x50\x6a\x9d\x48\xe1\xe1\x88\x90\ +\x88\x20\x88\xcf\x22\xfe\x28\x80\xd4\x2b\x37\x84\xe3\x64\xfc\x99\ +\x9b\xbf\x60\xe7\xfe\xc3\x70\x24\x00\x76\xb4\x14\x49\x6b\xbf\x04\ +\xa0\x67\xcf\x9e\x98\x3d\x7b\xb6\x58\xda\x72\x41\xe4\xed\xed\x2d\ +\x1a\xcc\xc9\x50\xd1\x78\x86\x33\x8b\xfa\x09\x45\x10\xac\x39\x73\ +\xe6\x88\xcd\x94\x89\xb1\x11\xe5\x00\x32\xda\x90\x96\x43\x6d\x4d\ +\x38\x8c\xd4\xa3\xa2\x68\x0b\xfa\x59\x9c\x44\xc4\xaa\xf5\xe8\xa0\ +\x6a\x0e\x65\xe5\xdd\xe8\xa4\x52\x84\x76\xad\x6f\xc2\x6d\xd9\x09\ +\x2a\xd0\x02\xf0\xdf\xff\x18\x88\xae\xea\x3f\x91\x07\x1c\x40\xff\ +\x01\x4e\xe2\xf3\x46\xc5\x10\x50\x4c\xb8\xbf\x17\x00\x8d\x72\x59\ +\xda\xd5\x9b\xc2\x09\x32\xfe\x2c\x69\x57\xfc\x11\xf1\x99\x60\x53\ +\x00\x7a\xf4\xe8\x01\x17\x17\x17\xf1\xcb\xbc\x0c\x4a\x00\x14\xc5\ +\xee\xcf\xe1\x31\x7e\xfc\x78\x11\x00\x1b\x2e\xe5\x06\x86\xc7\xed\ +\xb0\x31\xcd\xbc\xae\x1e\xb9\x3f\x55\x82\xda\x3a\x5d\x30\x98\x42\ +\xc0\xcc\x34\x1e\x4a\x1d\xae\xe0\xeb\x56\x6b\xd1\x41\x65\x1f\xd4\ +\x3b\xdd\x81\x2a\xb9\xbf\x6a\xc7\x27\xe8\xd4\xe9\x38\x94\x94\xa2\ +\xc8\x33\x92\xd0\x59\xfd\x15\xda\xb5\xdd\x0d\x0b\x9b\x49\x08\x8b\ +\x08\x6e\x90\x64\x15\x25\x01\x51\x1c\x1b\x7b\x09\x4f\xa4\xe8\x01\ +\x99\xd7\x7e\x12\x4e\xdd\xba\x8b\x73\xa4\x98\x84\xe4\xcf\x02\x70\ +\x72\x72\x12\xbf\xcc\x00\x78\x36\x25\x0f\x90\xc4\x46\x3b\x53\x2f\ +\x31\x6a\xd4\xa8\xfa\x8e\x51\xca\x0b\xbc\xdf\x9d\x9a\xa1\x5a\x00\ +\x54\x03\x50\xe7\xa7\xa5\xd5\x05\x0e\x23\x0c\x61\x66\x92\x40\x09\ +\xee\x05\xba\x68\x14\x43\x43\xad\x9a\xbc\xe0\x39\x54\xba\x5d\x85\ +\xb2\x6a\x0e\x54\x3b\x14\xa0\x93\xea\x53\x68\x68\x3c\x81\x46\xc7\ +\x2a\xb4\x25\x00\xd6\xb6\xa3\x10\x11\x16\xd0\x2c\x00\x45\x08\x4d\ +\x35\x6a\x2c\x06\x40\xfb\xe4\xb2\xd3\xd7\xee\x08\xe7\x7f\xba\x8f\ +\x8b\xb7\xef\x21\x36\x31\x85\x7a\x81\xd9\x54\x59\xd9\xd5\x37\x40\ +\x52\x4f\xc0\x39\x80\x5d\x9b\x01\x48\x0f\x37\xd8\x68\x5e\x0e\x15\ +\xc5\x21\xc0\xc6\xf2\x71\xc5\x95\x81\xe1\x31\x00\x53\xca\xfe\xba\ +\xfa\x9a\x04\xc0\x00\x5a\x54\x04\x0d\x1e\x66\x84\x9e\xbd\xf6\xa3\ +\x43\xdb\x8b\xf8\xea\xef\x9b\xa0\xd2\xe1\x30\xba\x76\xf9\x05\x1d\ +\x55\x1f\x40\x43\xb5\x88\xf2\xc0\x65\x7c\xfd\x15\x79\x85\xda\x25\ +\xca\x01\x95\xe8\xf0\xaf\xc3\xb0\xb7\x1b\x83\x95\xc1\x64\x98\x5f\ +\x43\x03\x25\x23\x19\xbc\x64\xa4\xe4\xf2\x8d\xc3\xe0\x23\x80\xeb\ +\x77\x84\x0b\xb7\x1f\xe0\xd2\xcf\xf7\x11\x9f\x92\x81\xd9\x73\x5d\ +\xc5\xc7\x5f\x9f\x03\xc0\x1e\xc0\x06\x36\x36\x9e\x8d\xe5\x30\xe1\ +\xba\x5e\x31\x44\x14\x3d\xc0\xd4\xc4\xa4\xd6\x03\x28\x07\x68\x69\ +\x69\x51\x0e\x30\xa2\x82\x28\x06\xc6\xc6\x89\x58\x38\x7f\x26\x3a\ +\x76\x34\x87\x5a\x9b\xfd\xf8\xa6\x7d\x19\x34\x94\x7e\x84\x59\xff\ +\xc5\x24\x07\xfc\xb3\xf5\x14\x74\x53\x27\xaf\xf8\x3a\x9e\x92\xf4\ +\x54\x84\x07\x47\xc0\xd7\xc7\xaf\xd9\x32\x9c\xef\x8f\xc3\x91\x27\ +\x84\xbd\x95\x93\x36\xdf\x13\x8b\xef\x95\x93\x79\x1d\x80\x5f\x85\ +\x4b\xbf\x3c\xc6\xe5\x5f\x1e\xe0\x50\x7a\x16\xe6\xb8\xce\x27\xc2\ +\xb6\x2d\x7a\x00\x1b\xd3\x18\x00\xbb\x3b\x57\x8b\x63\xc7\x8e\x15\ +\x6f\x40\x31\x39\x4a\x00\x4c\x8c\xcd\xa1\xab\x6b\x42\x00\x78\x15\ +\x60\x00\x86\xd4\x11\x6e\xa6\x5a\xff\x38\x62\x77\x6f\x80\x72\xc7\ +\x1e\xe8\xd8\x76\x1f\xbe\x55\x2d\x41\xdb\x36\x59\x58\x12\x92\x88\ +\x0d\x5b\x23\xf0\x5f\x7f\xb7\x44\x37\xd5\xf3\x50\xfa\xfa\x00\x15\ +\x43\x93\xa9\xea\x0b\x85\xcf\x8a\x8f\x49\x56\x32\x9e\x61\xf0\x3d\ +\x4e\x9a\x34\x09\x23\x46\x8c\xc0\xc8\x91\x23\x45\xef\x9b\x3e\x7d\ +\x3a\x26\x4e\x9c\x88\x71\x54\x22\x4b\xa1\x2c\xe6\x80\x73\x37\xef\ +\x0b\x97\xef\x66\xe3\xca\x9d\x47\x48\xcc\x38\x05\x97\x39\xf3\xa8\ +\xa1\xb0\x17\x01\x48\x75\x00\x8b\x57\x01\x47\x47\x47\xf1\x8b\x6c\ +\x9c\xb4\x14\x2a\x8a\x0d\xe5\xe5\x8e\x7f\x84\x8d\x95\x00\x70\xa8\ +\x30\x00\xf6\x1c\x53\x13\xb3\xda\x24\x68\x60\x42\x21\xa0\x89\xc1\ +\xc3\x0d\x61\xc2\x75\x80\xf2\x09\x5a\xfb\xd7\xa1\x7d\xbb\x18\x68\ +\x74\xbe\x0e\x65\xb5\xdb\x94\x0b\x7e\x46\xa7\x6f\xe3\xa0\xad\xb9\ +\x14\xca\x1d\x36\xe0\x1b\xd5\x27\x68\xff\xaf\x04\xd8\x0c\x1a\x87\ +\xe0\x90\x8f\x09\x56\x7a\x38\x23\x89\x3d\x80\x27\x89\x7f\x9b\x7f\ +\x93\x1f\xc6\xf0\xfd\x72\x22\x66\xf1\x3d\xb2\x1d\x74\xae\x5c\xf6\ +\xfd\xad\x47\x22\x80\xab\x77\x1f\x21\xf9\xe4\x39\xcc\x9b\xbf\x50\ +\x7c\x04\xde\x18\x80\xb9\xb9\x39\x66\xcc\x98\x21\xc6\x16\x1b\xd7\ +\x14\x00\xfe\xc1\x99\x33\x67\x8a\x0f\x50\xf9\xb8\x94\x23\x1a\x02\ +\xe0\x65\x50\x87\x3c\xc0\xa8\x16\x00\xe5\x00\x53\xd3\x5d\x64\xf8\ +\x03\xa8\x29\x3d\x45\x27\xf5\x02\x28\x75\x7c\x04\x25\xb5\xab\xe8\ +\xa2\xfe\x0c\x9d\x94\x1e\x41\x43\xe5\x36\xad\x06\x77\xa1\xde\xb1\ +\x00\x6d\xbf\x8e\x85\xcd\x40\x02\x10\x1c\x48\x86\xfb\x34\x09\x40\ +\xfa\xcc\x46\xf2\xfd\x4a\xdb\x1c\xfb\x8a\x4f\xac\xe8\x3c\xb9\xec\ +\xfc\x4f\x8f\x84\x2b\xbf\x66\xe3\x1a\x01\x48\x3b\x7d\x01\x0b\xdc\ +\x16\xd5\xe7\x00\x45\x00\xbc\x0a\xb0\x1b\xf1\x05\x18\x80\x54\x0d\ +\x2a\x8a\x0d\x65\xc3\xa7\x4e\x9d\x2a\x7a\x89\xe2\xfe\x06\x00\x0c\ +\xb4\xa0\x6b\xa8\x0d\x4d\x4d\x1d\x0c\x1c\x6a\x0e\x53\xb3\x3d\xe8\ +\xd0\xfe\x02\x5a\xfd\x73\x27\x2d\x79\xc7\xd0\x91\x0c\xee\xa8\x74\ +\x1b\xdd\xda\xe6\x43\xbd\xd5\x0d\xb4\x69\x9d\x85\x8e\x9d\x7f\xa0\ +\x32\xb9\x10\xad\x5a\xc7\x88\x00\x42\x02\x57\x62\xc5\x72\xdf\x26\ +\x01\x28\x16\x61\xd2\x71\x0e\x0f\xc5\xa7\x58\x0c\x41\x04\x70\xf1\ +\xa7\xfb\xc2\x8f\xf7\xb2\x71\xe3\xd7\xc7\xc8\x3c\xf7\x03\x01\x70\ +\x17\x3d\x40\x71\x19\x64\x71\x0e\x60\xc3\x18\x00\x1b\xc2\xb1\xce\ +\xb3\xcb\x09\x46\x92\x94\x60\xf8\x87\x24\xe3\x1b\x7b\x80\x09\xf7\ +\x02\x7a\xfc\x18\xac\x1b\xba\x6b\xe9\xc3\x6a\x78\x6f\xe8\x19\x47\ +\x43\x4f\x2b\x12\xc3\x87\xd8\xa3\x75\x7b\x0b\x74\xe8\x90\x40\x4b\ +\xdf\x23\xa8\xb7\xce\x85\x6e\xf7\xd5\xd4\x33\x58\xe3\xab\x76\x53\ +\xa0\xa6\xf2\x12\xad\xbe\x8a\xa7\x10\x18\x8d\x30\x6a\x7e\x56\xac\ +\xf8\x68\x60\x73\x52\xec\x50\x15\x0b\x33\xb6\x83\xee\x53\x2e\xbb\ +\x74\xfb\x81\x70\xfd\x7e\x0e\x6e\xdd\xcf\x46\xd6\xc5\x2b\x58\xe4\ +\xe1\x89\xc1\x83\x06\x35\x78\x2e\x28\xe5\x80\x29\x53\xa6\x88\x17\ +\xe1\x76\xb8\x29\x00\x8d\xc5\x40\x24\x08\xb5\x00\x16\xd6\x02\xd0\ +\xe5\x37\xc3\x5a\xd0\xd4\xd3\x80\xcd\x58\x5d\x74\xd7\x5e\x89\x41\ +\x56\x19\x38\x74\x60\x07\x3a\x6a\xf4\x44\xab\x7f\xed\x14\x5d\x5f\ +\x99\xfa\x80\xa0\xd0\xbd\xd8\x14\x1d\x84\xbf\xfd\xc3\x08\x9d\x95\ +\xaf\xa1\xdd\x57\xdb\xc9\x43\xc7\x20\x3c\x20\x88\x0c\xf8\xb4\x17\ +\x69\xaa\x37\x69\x4a\x75\x1e\x21\x97\x5d\xb9\xfb\x48\xb8\xf9\x20\ +\x17\x3f\x3d\xc8\xc1\xd9\x2b\xd7\xb1\x88\xea\x75\x07\x87\x21\xe2\ +\x8c\x2b\x02\xe0\x10\x98\x3c\x79\xb2\x48\x4f\x02\xc0\xc6\x7d\x0e\ +\x80\xa2\x57\x7c\xf4\x00\x73\xd1\x03\x0c\xf4\x8d\xa0\xa9\xa3\x42\ +\x1e\xf0\x2d\x15\x47\xdb\xd0\xa9\xcd\x19\x68\x76\x0d\xa0\x5c\x10\ +\x01\x75\xea\xfc\x54\xa9\xf3\x53\x6a\xfb\x23\x7a\xf4\xda\x0a\x73\ +\xd3\x45\x68\xd3\x6a\x39\xba\xaa\x64\xa3\xf5\x3f\x77\x61\x80\xed\ +\x14\xf1\x75\xdc\xb2\x65\x9f\xf6\x22\x4d\xf5\x26\x4d\xa9\xae\x48\ +\x93\xcb\xae\xdf\xcf\x16\x6e\x67\x3f\x13\x01\x9c\xbf\x7e\x4b\xcc\ +\x01\xc3\x86\x0e\xfd\xe4\xc9\x30\x27\x41\x5e\x46\x24\x0f\xe0\xf5\ +\x9e\x0d\xe4\x06\x47\x92\x64\x30\xab\x31\x04\x7e\xe5\xc6\x99\xd9\ +\xc4\xb4\x07\xad\x00\x5a\xd0\xd7\x33\xa1\x65\xb0\x3b\x6c\x86\x98\ +\xc3\x44\x8f\x4a\xe0\xbf\x5f\xa0\x22\xe7\x47\x28\xb5\xf9\x99\xca\ +\xdd\x5b\x68\x4f\x35\x40\xbb\x36\x39\xd4\x21\xfe\x0a\x95\x7f\x9d\ +\xa6\x9a\xe0\x36\x54\xdb\xbe\xc4\xff\xfc\x63\x0b\x2c\xec\x1d\xe1\ +\x13\xe2\x4f\x06\x2e\xfd\x8f\x8c\x6e\x1a\xc0\x83\x1c\xe1\x97\x9c\ +\x17\xb8\xfd\xf0\x09\x2e\xdf\xbe\x03\x37\x77\x0f\x0c\x75\x70\x10\ +\x5d\x5e\x11\x80\x99\x99\x99\x58\xe3\x4b\x1e\x20\x01\xe0\x64\x27\ +\xa9\x31\x8c\x4f\x01\xb0\x07\xf4\x27\x00\xda\xe4\x01\x94\x07\x74\ +\x8c\x61\x64\xac\x83\x1e\xe6\x33\x30\x78\xe0\x56\x0c\xb0\x8e\x86\ +\x95\xd5\x26\xf4\xb7\x0a\x84\x79\x3f\x6f\xca\x0d\x01\xd0\xee\xbe\ +\x0d\x7a\xdd\xf6\x40\xab\x6b\x0c\xb4\xba\xed\x85\x9a\xaa\x2b\x86\ +\x8e\x9c\x06\x9f\x00\x5e\x5e\x97\x34\x28\xc5\x25\xb5\xe4\x15\xac\ +\x8f\x00\x1e\xe5\x08\x77\x72\x5f\xe0\x97\xc7\x4f\x71\xed\xce\x3d\ +\xb8\x7b\x7a\xc1\x61\xc8\x10\xd1\xe5\x15\x5f\x8f\x99\x9a\x9a\xe2\ +\xbb\xef\xbe\x13\xe3\x87\x33\xbd\x04\x80\x57\x04\x49\x8d\x61\x34\ +\x00\xe0\xec\x24\xe6\x00\x63\x63\x2b\x68\xeb\xe9\x41\x9f\x96\x42\ +\x03\x5d\x53\x7c\xab\xa9\x01\x4b\xbb\x3e\xf0\x5c\xba\x10\x0b\xdd\ +\x9c\xb1\x70\x01\x81\x5a\x30\x8f\xc4\xd7\x9e\x0f\x77\x0f\xda\xbf\ +\x80\xaa\x3a\x57\x2f\x2c\x98\xe7\x83\xf9\x73\x29\xa4\x3c\xdd\xe1\ +\xb3\xc4\xa3\x3e\xc1\x2a\xd6\x1b\xd2\xe7\xa6\xf6\x4b\xe7\xb3\xea\ +\x73\xc0\xcd\x47\x8f\x84\x7b\x4f\x9f\xe2\x97\xec\x5c\x5c\xbf\xfb\ +\x40\x5c\x05\xd8\x03\x1a\x87\x80\xe4\x01\x4c\x4e\x11\x80\xa2\xd1\ +\xcd\x89\xcf\xe3\x22\x8a\x97\x4e\x53\x33\x73\xb1\x1d\x16\x5f\x89\ +\x1b\x18\xa0\x4b\xb7\xce\x70\x9e\x33\x0b\x49\xc9\x87\xb1\x2f\x6e\ +\x2f\xe2\xf6\xc6\x52\x45\xc8\xda\x8b\x1d\xdb\xb7\x63\xd3\xa6\x0d\ +\x58\xbb\x36\x02\xab\x57\x87\x21\x3c\x3c\x04\x11\xe1\xd4\xc7\x07\ +\x50\x06\x27\xc3\xf8\xba\x52\xa1\xe3\xea\x3a\x4f\xbc\x3e\x7b\x27\ +\x8f\x2c\xce\x53\xdc\x86\x73\xe1\xc3\xdb\x7c\x8c\xc3\x90\x27\x87\ +\x21\xd0\xc4\xc8\x65\xb7\x09\xc0\xfd\x67\xcf\x70\x27\xf7\x09\xe5\ +\x81\x6c\x0a\x01\x4f\x0c\x1f\x3e\xbc\x41\x12\x94\x00\x48\x1e\xc0\ +\x3f\xc8\x49\x8d\x2f\xd4\x9c\x07\x34\x07\xc0\xcc\xdc\x54\x7c\x31\ +\x62\x68\x6c\x54\xff\x52\xc4\x61\xf8\x30\x4c\x9b\xce\x4f\x80\x9d\ +\xc4\x1b\xe5\xeb\xf2\xef\x70\xc3\xc2\x2f\x62\x22\x23\x23\x11\x1d\ +\x1d\x8d\x9d\x3b\x77\x62\xdf\xbe\x7d\x88\x8f\x8f\xc7\xa1\x43\x87\ +\x90\x74\xe4\x08\x92\x93\x92\x90\x9c\x9c\x8c\xb4\xb4\x34\x1c\x3b\ +\x76\x0c\xa9\xa9\xa9\x48\x49\x49\x11\x8f\xf3\x79\x71\x71\x71\x88\ +\x8d\x8d\x45\x4c\x4c\x0c\xb6\x6e\xdd\x8a\x0d\x1b\x36\x88\x4f\xb6\ +\xb9\x28\x12\x3d\xe0\x6e\x76\x8e\xf0\xf0\xc5\x0b\xfc\xfa\xe4\x29\ +\xee\xe6\x3c\x83\x87\x97\xb7\x58\x3f\x73\x08\x28\x02\xe0\x10\xe0\ +\x12\x77\x79\x5d\xbd\xcf\xf5\x34\x1b\xc7\x44\x25\x35\x07\x41\x11\ +\x80\x09\x5d\x87\x1f\x87\xb3\xe1\xfd\x2c\xfa\x63\xec\x77\xe3\x30\ +\x72\xf4\x28\x0c\x1b\x31\x5c\xd4\x88\x51\x23\x61\x47\xa5\x78\x6f\ +\x2a\xc4\xf8\x7d\x81\x19\xdd\x87\x99\x59\x4f\xf4\xe9\xdb\x1f\x96\ +\x56\xd6\xb0\xb0\xb4\xa6\x71\x00\xac\x07\xd8\x52\xff\x60\x8f\x41\ +\x43\x1c\x30\x62\xe4\x68\x4c\x9c\x34\x19\x53\xa7\xcd\xc0\x4c\x82\ +\x38\x97\xbc\xc1\xc3\xcb\x13\xcb\x19\x62\x68\x08\xd6\xac\x5b\x8b\ +\x4d\x9b\xa3\xb0\x7d\xe7\x0e\xec\xde\x13\x8b\xfd\x07\xe2\x91\x9c\ +\x72\x94\x25\x97\xdd\xcb\x7d\x2e\x3c\xca\xcf\x13\x01\xdc\x7b\xf2\ +\x82\xbe\xb8\x98\x3c\x60\x58\x93\x39\x60\xf4\xe8\xd1\xa2\xeb\xb0\ +\x21\x52\x73\xa3\x08\xa0\x39\x18\x3c\xa3\x5c\x22\xb3\xe7\x18\x53\ +\x37\xc8\x2f\x46\xd8\x0b\xf8\xc5\x48\x9f\x7e\x7d\x45\x10\xd2\xbf\ +\xe3\xf4\x25\x4d\x9f\xe5\x88\xa5\x3e\x2b\xe0\xee\x4d\x2e\x4e\xdf\ +\x9d\xb7\xd0\x1d\x33\x66\xb9\x60\xdc\x84\xc9\x18\x3e\x7a\x1c\x46\ +\x8c\xf9\xae\x7e\x1c\x3c\x74\x04\x6c\x07\x39\xc0\xd2\xc6\x0e\xfd\ +\xad\xa9\x89\xb3\xb0\x42\x2f\xba\x66\x1f\xba\x66\x3f\xba\x26\x8f\ +\x3d\xfa\xf4\x86\x59\xaf\x9e\x30\x27\xf1\x76\xcf\xbe\x7d\xc4\x63\ +\x96\x03\xac\xe4\xb2\xfb\xcf\x5f\x08\xd9\x2f\xf3\x71\xef\xe9\x33\ +\x3c\x78\x96\x5f\x0b\x60\xd8\x5f\x0b\x40\xa7\xee\xbd\x00\x43\x60\ +\x6f\xd0\xd1\xd5\xa5\x9a\x40\x1b\xdd\xf5\x74\xd0\x5a\xa9\x3d\x22\ +\xa3\x37\x43\x5e\x51\x86\x87\xb9\xd9\xb8\xfb\xf0\x21\x6e\x51\x72\ +\xbe\x7a\xf3\x36\x7e\xb8\x7a\x03\xdf\x5f\xba\x8a\xac\xb3\x17\x90\ +\x71\xf2\x0c\x0e\xa7\xa4\x23\x2e\x21\x11\xdb\x77\xc7\x21\x6a\xeb\ +\x4e\x6c\xdc\xbc\x0d\x6b\x36\x46\x21\x6c\xf5\x2a\x2c\xf3\xf3\xc5\ +\x7c\x77\x37\xb8\xb8\xce\x85\xf3\xbc\x39\x70\x9a\x3b\x1b\x33\x5d\ +\x9c\x30\x71\xda\x14\x8c\x1c\x37\x16\xc3\x46\x8f\xc4\x90\xe1\xc3\ +\xe4\xb2\x07\x2f\xf2\x84\x9c\x82\x02\xdc\x7f\xf6\x1c\x0f\x5f\xbc\ +\x84\xa7\xf7\x9f\xe3\x01\x8a\x62\x08\x4d\x01\x90\x24\x82\xa0\x7d\ +\xda\xb4\xad\xa4\xae\x8a\x8d\x5b\x36\xa3\xb8\xbc\x14\x8f\x9f\x3f\ +\x45\xf6\xf3\xe7\x78\x92\xf7\x0a\xb9\x24\x1e\x9f\xbd\x2c\xc2\xd3\ +\xfc\x42\x3c\xa5\x31\xaf\x50\x8e\xe7\x05\xc5\x78\xfe\xaa\x04\x2f\ +\x68\xfb\x05\x8d\x7c\x3c\xe7\xc5\x73\x3c\x7a\xfa\x04\xf7\x73\xb2\ +\x71\x2f\xfb\x31\x7e\xbe\x7f\x0f\xd7\x7f\xbe\x8d\xcb\x37\xae\xe3\ +\xdc\xa5\x8b\x38\x7e\xe6\x34\x32\x4f\x9f\x22\x80\x14\x02\x8f\xf2\ +\xf2\x85\xdc\xc2\x57\x64\x7c\x3e\xb2\x5f\x16\x62\xb9\x8f\x1f\x46\ +\x52\x1f\xcd\x49\x8f\x9f\x03\xf0\xe3\x30\x1e\xf9\x33\x3f\xea\xe2\ +\xa5\x84\x0d\xe1\x98\x66\xe3\x38\xb3\x4a\xe2\x8c\x2c\xa9\x31\x00\ +\xee\x24\x39\x23\x9b\x9a\x99\x52\x33\xa4\x27\xbe\x1d\x66\x29\x42\ +\xe0\xcf\xca\x6a\xaa\x88\xdc\x1c\x8d\xe2\xb2\x0a\x02\x90\x87\x87\ +\xcf\xf2\xf0\x88\xf5\x3c\xbf\x81\x1e\x4a\xfb\x9e\xe5\xd7\x1e\xaf\ +\xfb\xfc\xf8\x45\x7e\xfd\x98\x9d\xf7\x12\x39\x79\x05\xa2\x72\x5f\ +\x12\xc0\x82\x22\x3c\x2b\x24\x58\xc5\x02\x8a\x2a\xaa\x08\x5a\x09\ +\x03\x78\x29\x3c\x29\x2a\xc4\xe3\xfc\x7c\xe4\xbe\x2a\x46\x50\x48\ +\xa8\x18\x02\x6c\x30\xcf\xbe\x04\xc0\x84\x66\x8e\x93\x23\xaf\xe9\ +\xbf\x07\x80\xa2\xd8\x53\x7e\x2f\x00\x15\x06\x10\xbd\x05\x25\xe5\ +\x55\xc8\x26\x8f\x7c\xfc\x17\x89\x41\xd0\x48\x00\xf2\x0b\x84\xa7\ +\xc5\x45\x34\xfb\x05\x78\x56\x24\x20\x62\xd5\x6a\xea\x05\x1c\xc4\ +\xd2\x57\x7a\x31\x2a\x01\xe0\x27\x2c\x9c\xd1\x79\x15\xe0\xa7\x43\ +\x9f\x03\xa0\xb8\xff\x4b\x00\xc8\x2b\xaa\xc5\x99\xcb\xfe\x8b\xf4\ +\xbc\x48\x8e\xc7\x79\x05\x72\x59\x76\x41\xa1\x90\x27\xc8\x91\x53\ +\x50\x88\x3c\x79\xb9\x08\x80\x0b\x21\xce\x01\x8d\x43\x60\x18\x79\ +\x06\x03\xe0\x42\x88\x3d\x80\x8d\xe3\xed\xa6\xa4\x08\x84\x41\x31\ +\x00\x7e\x1a\x63\x66\x6e\x2e\xbe\x1c\x6d\x0c\xa0\xf6\x1f\xa5\x6a\ +\x01\x44\x6d\xdd\x8e\xd2\xaa\xd7\x78\x42\x21\x99\xfb\x05\xca\xc9\ +\x7f\x55\xaf\xe6\xce\xc9\x2b\xa1\x1c\xf3\xb2\x50\x2e\xcb\x29\x2c\ +\x14\xf2\xcb\x4a\xc9\xfd\x0b\x91\x5f\x5a\x81\xd5\x6b\xd7\xd5\x27\ +\xc1\x3f\x0a\x40\xd1\x33\x5a\x02\x20\xfd\xdb\x4c\x07\x15\x65\xac\ +\x8b\x8c\x42\x79\xcd\x5b\x3c\xa5\x90\x7c\xf2\x25\xa2\x58\xaf\x57\ +\x33\xe7\xe4\x0b\xe5\xc8\x79\x45\x00\x72\x0b\x8b\x84\x97\x65\x65\ +\x78\x52\x58\x84\x57\x65\x55\x58\xbf\x31\x12\xa3\xea\x0a\x21\x36\ +\x5e\x11\x80\x14\x02\xbc\x0a\x28\xe6\x80\x05\x0b\xc9\xe8\x46\x30\ +\xe6\xd7\x6f\x7f\x1e\x80\x04\xc1\x40\x7c\x55\xde\x1d\xaa\x1a\xea\ +\x48\x4c\x4e\x81\x50\x59\x83\x67\x74\xa3\x4f\xbf\x40\xcf\x29\xbe\ +\x25\x35\x77\xce\x4b\x02\x90\xcb\x00\xc8\x70\xe1\x55\x99\x80\xfc\ +\xa2\x62\xc8\xcb\x6b\xb0\x99\xd6\x52\xfe\xef\x89\x9e\x3d\x7b\x93\ +\xf1\xec\x01\x5c\x0d\x5a\x41\xdf\xc0\x50\xac\xc6\x5c\x5c\xe6\x60\ +\xce\xdc\x79\x54\x15\x8e\xc7\xa4\x49\x53\x30\x79\xea\x34\x4c\xa5\ +\x25\x6e\xba\xe3\x2c\x2a\x56\x9c\x30\xd3\xc9\x19\xce\xb3\xe7\x50\ +\x7d\xef\x8a\xd9\xae\x6e\x98\x3b\x9f\x6a\xf5\x05\x6e\xe2\xe3\x34\ +\x5e\x3a\xcd\xcc\x7b\x88\xaf\xc7\x0d\x0c\x8d\x49\x46\x04\xa0\x76\ +\x54\xd3\xe8\x0c\x13\xf3\xde\x48\x39\x76\x9c\xee\xa3\x1a\x79\xb4\ +\xa4\xe5\x15\x94\xd4\x8e\x2d\x6d\x17\x34\xde\x2f\x57\x50\xd3\xdf\ +\x29\x12\x2a\x68\x24\x00\xcf\x8b\x8a\x84\x22\x5a\x73\x0b\x4a\x4a\ +\x50\x56\xf9\x06\xd1\x5b\xb6\x13\x80\xe1\xd4\x0c\xf5\xa5\x99\xe7\ +\xf5\xdf\x9c\x3a\x37\x43\x8c\x9f\x30\x09\x7b\xf7\xc5\xe3\xca\xb5\ +\xeb\xb8\xfd\xcb\x1d\x5c\xbc\x7c\x15\x27\xb2\x4e\x23\x2d\xf3\x38\ +\x12\x8e\x24\x61\x7b\xcc\x6e\xac\x5a\xb7\x1e\x01\xb4\x8a\xf8\x53\ +\x0d\xbf\xcc\x37\x00\xf3\x16\x79\x51\xf1\x41\x85\xc8\x9c\x79\xe2\ +\xc3\x14\x17\x17\x67\x98\x93\x67\xe9\xea\xd5\x02\xd0\x37\xa0\x7e\ +\x40\x5b\x17\xaa\x6a\x1a\x70\xa4\x4a\xef\x51\xf6\x53\x54\xbf\xf9\ +\x0d\x05\x45\xa5\xc8\xa7\x9b\x67\xbd\xac\xd3\xe7\xb6\xf3\x1b\x6d\ +\xe7\x37\xda\xdf\xd4\x77\x8a\x85\x4a\x1a\x8b\xe5\xb2\xbc\xe2\x12\ +\xa1\x98\xaa\xae\x02\xb9\x80\x8a\x9a\x77\xd8\x14\xb5\x45\xfc\x3f\ +\x1a\x23\x23\x2a\x58\x74\xf4\xc4\xfa\x3a\x2d\x2d\x1d\x45\x74\xbc\ +\xea\xcd\x5b\x4a\x4e\x55\xb4\x44\x55\xa0\xac\xaa\x9a\xce\x7f\x8d\ +\xf2\xea\x9a\x7a\x55\xbe\x7e\x83\xd2\xca\x2a\xbc\x2a\x91\x53\x41\ +\x42\x4b\xeb\xd3\x7c\xdc\x7d\xf0\x18\xf7\x1e\x66\x53\x23\xb2\x0d\ +\x53\xa7\x4e\x21\xcf\xea\x25\x02\x30\xa4\xeb\x77\xe9\xfa\x8d\x08\ +\x20\x2a\x2a\x1a\x55\x14\xf3\xa5\x15\x35\x74\x53\x25\x22\x80\xbf\ +\x5a\xf2\xb2\x6a\x90\x03\xc8\x65\x2f\xe5\x82\x20\x54\x55\xa2\x50\ +\x28\x25\x03\x3f\x60\x67\xec\x5e\xd8\x0d\x1e\x4c\x75\xf7\x24\xa4\ +\xa4\x67\x88\x86\xbe\xfd\xf0\x1b\x15\x26\x65\x78\x45\x10\x0a\x4b\ +\x4b\x69\x94\x13\x30\xb9\xf8\x99\x8d\x6d\xac\x42\x3e\x8f\x62\xac\ +\xa8\xb4\x8a\xdc\xb9\x0a\xbf\x01\x62\x97\x36\x79\xd2\x24\xf4\xa2\ +\x36\x5b\x9b\xc0\x2a\xab\xa8\xc2\x61\xe8\x70\x5c\xbf\x71\x0b\xef\ +\xe9\xfa\x25\x74\xfe\xab\xe2\x32\x14\x96\xd4\x8e\x7f\x44\x7c\x0d\ +\x49\xcd\x9d\x23\x50\xb8\xbf\x2a\x14\x08\x80\x50\x2e\x94\xd6\x54\ +\xa1\x88\x0c\x2c\xa1\x24\x58\x54\x5a\x8e\x27\x2f\xf2\x68\x2c\x45\ +\xcd\xfb\x0f\x64\x78\xb9\x68\x70\x51\x39\x5d\xb8\xac\x4e\xe5\x1f\ +\x55\x5c\xfa\x51\x45\x04\x51\x12\x03\x28\xa4\x38\x2b\xa2\xf1\xed\ +\xfb\xdf\x90\x94\x94\x2c\xbe\x31\xd2\xd3\x37\x40\x47\x55\x75\xf8\ +\xf8\xfa\x41\xa0\xdf\x7a\x47\xc7\x04\xa1\x4c\x04\xc0\x6e\x29\xa9\ +\x48\x5e\xf1\xc5\xfa\x3d\xd7\xe1\x70\x2f\x2c\xae\x90\xcb\x0a\xcb\ +\xcb\x85\xf2\x37\x35\x54\x78\x54\x92\x5b\x54\x8a\x63\x69\x75\x35\ +\xe4\x95\x95\xe4\xea\xe5\x34\x83\x15\xa2\x8a\x2b\xe8\x8b\x95\x9f\ +\xaa\xa4\xa2\xa2\xfe\x9c\x12\x82\x25\xa9\x98\xae\x55\x4c\x40\x4b\ +\x68\x7c\x43\x46\x9e\x3c\x99\x85\x89\x13\x26\xc0\xde\x7e\x20\x8e\ +\xa6\xa4\x81\xff\xca\xa9\x1c\x2d\xa5\x92\x97\x41\x94\x92\xa7\xb0\ +\x5b\x4a\x2a\x21\xef\xf9\x52\xfd\x9e\xeb\x54\x54\xbf\x23\x4f\xad\ +\x92\xcb\x8a\x2b\x8b\x85\x8a\x1a\x9a\x85\xb2\xb7\x10\x2a\x5e\xa1\ +\xa4\x92\xdc\xba\x82\x5c\xb8\xaa\x18\x65\x15\x72\xd4\x94\x56\xa2\ +\x46\xfe\x1a\x65\x7c\xc1\x8a\x5a\x40\x02\xc1\x11\x28\x17\x08\x14\ +\xef\x65\x15\x9f\x53\xb5\x38\x4a\x86\xe6\x52\xcb\x5d\xf0\xaa\x08\ +\xff\x26\xe3\x2b\x2a\xe9\x58\x79\xa5\xa8\x72\x71\xa4\x73\x68\x64\ +\x10\xbc\xad\xf8\xfd\x96\xb7\x9b\xfa\x5c\xdd\xe8\x58\xc3\x73\x6a\ +\xde\xbc\x27\x7b\x09\x00\x41\x10\xde\xd2\x87\x0a\xe1\x2d\x5e\x57\ +\x7e\x40\x29\x25\xc2\x82\xea\x4a\xbc\x7c\x4d\x20\x6a\x28\x9e\xab\ +\x29\x04\xaa\x5f\x93\x47\x54\x53\x92\x22\xc3\xd9\x43\xd8\x70\xca\ +\x0d\xac\x72\xda\x5f\xd1\x92\xe8\x47\x2b\xab\x6a\xf0\xfa\xcd\x3b\ +\xd4\xbc\x7e\x2b\x02\x69\x7c\x0e\xef\xab\x07\x42\xbf\xd1\xe2\x35\ +\x5b\xd4\xa7\xbf\xa1\xa8\x37\x6f\xdf\xf3\x28\x97\x95\x57\xd1\x54\ +\xe2\x0d\x38\x53\xdd\xb8\x2e\xc7\xd3\xe7\xaf\xf1\xef\x0f\xc0\xfb\ +\x37\xff\xc6\xeb\x77\xef\x50\xf1\xe1\x2d\x2a\x3f\xbc\x43\xf5\xbb\ +\xf7\xa8\xa9\xd3\x6b\xca\x0d\x92\xde\xbc\xfb\x80\xb7\x7f\x92\xf8\ +\xa6\x24\xb5\x74\xee\x1f\x15\x6a\xbd\xb0\x52\x56\x55\xf5\x26\xf7\ +\xc3\x87\x0a\xe1\xcd\x6f\xbf\x09\x61\x1b\x4f\x0b\xa9\x17\x6f\x0b\ +\xef\x3f\xbc\x17\xde\x0b\x35\xc2\x9b\xca\x1a\x2a\xc8\xaa\x68\xac\ +\x14\xaa\xab\xaa\x04\x5a\xea\x3e\x51\x45\x15\x9d\xf3\xff\x50\x6f\ +\xde\x7e\xa0\x7b\xaf\xca\xfd\x5f\x39\x8f\xbf\x4e\xda\x91\x8c\x6d\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x19\x52\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x02\x82\x00\x00\x02\x29\x08\x02\x00\x00\x00\xb9\x49\xce\x6f\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x19\x04\x49\x44\x41\x54\x78\x9c\xed\ +\xdd\x7f\xa8\x66\x85\x9d\xdf\xf1\xef\xd1\x69\x63\x56\x4d\x74\xad\ +\x43\xcc\xae\xb4\x66\xa5\x1b\x77\xda\x6e\x31\x18\x13\x2b\x81\x14\ +\xb2\xc5\xd4\x04\x49\x9b\x65\xcd\x42\x87\x66\xd8\x44\x98\xc6\x32\ +\x71\x9c\x16\xd9\x66\x30\x0d\xc1\x4c\x60\x23\x81\xa1\x4a\x98\x08\ +\xdd\xb2\x26\xb4\xfe\xc0\x42\x02\x6d\x13\x1a\x94\xac\xae\xb4\x62\ +\x0a\x75\xb1\x36\x4b\x58\x23\x61\xd2\x18\xb3\x9b\xd6\xcc\x30\x78\ +\xfa\xc7\xf1\x3e\x3e\x73\x9e\x7b\xef\x3c\x3f\xce\x39\xdf\xf3\xe3\ +\xf5\xc2\x3f\xee\xbd\x73\xe7\xde\x33\xe3\xbd\xf7\x3d\x9f\x73\xcf\ +\x7d\x4e\x51\x96\x65\x00\x00\x19\xf6\x64\x1f\x00\x00\x4c\x97\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\xd6\x54\x14\x45\xf5\x44\x59\x96\xb9\x47\x02\x0c\x57\xe1\x2b\x08\ +\xac\x6a\x16\xe0\x79\x3e\x95\x80\x35\xc8\x30\xac\x60\x3e\xc0\x77\ +\xde\xf2\x4b\xd5\x13\x5f\x7c\xf4\xff\xcd\xbf\x8e\xcf\x29\x60\x79\ +\x32\x0c\xcb\xaa\x8d\xe0\x59\x86\x2b\x62\x0c\xac\x41\x86\x61\x59\ +\x55\x86\x8f\xdf\xb6\xf7\xe0\x7d\x27\xe7\x5f\xae\xc7\xc0\xda\x64\ +\x18\x96\x35\xcb\x70\xf5\xac\x18\x03\x9b\x93\x61\x58\x56\x2d\xc3\ +\x33\x7a\x0c\xac\x4d\x86\x61\x59\x3b\x65\xb8\x22\xc6\xc0\x1a\x64\ +\x18\x96\xb5\x7b\x86\x67\xf4\x18\x58\x9e\x0c\xc3\xb2\x96\xcc\x70\ +\x65\xa5\x18\x87\x1e\xc3\x54\xc9\x30\x2c\x6b\xa5\x0c\xcf\x18\xc7\ +\xc0\x2e\x64\x18\x96\xb5\x5e\x86\x2b\xb5\x18\x87\x1e\x03\x11\x21\ +\xc3\xb0\xbc\x4d\x32\x3c\x63\x1c\x03\xf3\x64\x18\x96\xd5\x48\x86\ +\x67\xf4\x18\x08\x19\x86\xe5\x35\x9b\xe1\x8a\x18\xc3\xc4\xc9\x30\ +\x2c\xab\x8d\x0c\xcf\xcc\x7a\x5c\x2b\x71\x45\x8f\x61\xac\x64\x18\ +\x96\xd5\x52\x86\x17\xaf\xde\x9a\x31\x8e\x61\xf4\x64\x18\x96\xd5\ +\xea\xf7\x86\x23\xe2\xce\x5b\x7e\x69\xf1\xe7\x89\x67\xbf\x34\xff\ +\xac\x1e\xc3\x68\xc8\x30\x2c\xab\xa9\x0c\x2f\x7e\x3f\xb8\x96\xd5\ +\xc5\x9b\x38\xcd\x5e\x73\xfe\x59\x31\x86\x11\x90\x61\x58\xd6\x86\ +\x19\x3e\x67\x7d\x63\xe1\xf6\x4d\xee\xe6\x04\xa3\x27\xc3\xb0\xac\ +\xb5\x33\xbc\xcc\xfc\xdd\xf6\xb7\xd4\x5e\x2e\xc6\x30\x3e\x32\x0c\ +\xcb\x5a\x35\xc3\x6b\xd4\xb7\xf6\x7b\xdd\xcd\x09\x46\x4f\x86\x61\ +\x59\xcb\x67\x78\x93\x00\xcf\xbf\x85\xdd\x5f\xcd\xdd\x23\x60\x04\ +\x64\x18\x96\x75\xce\x0c\x6f\x5e\xdf\xda\x9b\x6a\xe3\x6e\x4e\x3e\ +\xe5\xa1\x57\x64\x98\x7c\x45\x31\x8c\x8f\xc3\x5d\x32\xdc\x60\x80\ +\xe7\xdf\xe0\x4a\xbf\x6b\xf7\x18\x87\x1e\x43\x2f\x0d\xe3\xcb\x1f\ +\x63\x55\x85\xad\xd2\xff\x0f\xc5\xc5\x0c\x37\x5e\xdf\xda\x5b\x6e\ +\xe4\x6e\x4e\xc6\x31\xf4\x99\x0c\x93\x60\xbe\xbe\xb1\x50\xaf\xde\ +\x7e\x4c\xce\x67\xb8\xbd\x00\x57\x36\xc9\xf0\xfc\x5b\x98\xa7\xc7\ +\xd0\x43\x32\x4c\x82\x59\x86\xe7\xc3\xd0\xff\x4b\x8a\x6a\xff\x7a\ +\x88\x16\xea\x3b\xb3\x79\x86\x6b\x6f\x6a\x66\xa7\x18\xf7\xed\x6f\ +\x1b\x26\x42\x86\xe9\xda\xb6\x31\x9b\x7f\xb6\x9f\x2b\x6d\xf7\x05\ +\x1f\xed\xdc\x79\xa9\xbd\xbb\x39\x6d\xfb\xe0\x21\x3d\xf9\xab\x86\ +\x49\x91\x61\xba\x36\x3b\xb5\x3b\x88\x4b\x8a\x3a\xae\xef\x4c\x1b\ +\x19\x9e\x7f\xcb\xf3\x66\xff\x2f\x7c\x35\x80\xee\xc9\x30\x5d\x5b\ +\xe6\x42\xa7\xf9\x67\xb3\x62\x9c\x15\xe0\x4a\x7b\x19\xde\xf6\xed\ +\xcb\x30\x64\xd9\x93\x7d\x00\x50\xbf\xe8\x69\x56\xbb\xaa\xc7\xb3\ +\x2a\x57\x2f\x9f\xd5\xb1\xa5\x66\xec\x54\xdf\xd9\x51\xb5\x5a\x5f\ +\x60\x6a\x64\x98\xbe\x58\xbc\x8d\x41\x55\xbe\x59\x86\xab\x27\x66\ +\x39\xac\x7a\xd9\x54\x8c\x77\xba\xfc\x6a\x7e\x01\x0b\x30\xd0\x38\ +\x19\xa6\x77\x6a\x3d\x6e\x7b\x1c\x9b\xbf\x40\x22\x19\xa6\xbf\xb6\ +\x3d\x59\xdd\xd4\x38\x3e\x67\x7d\x43\x80\x81\xf6\xc9\x30\x7d\xd7\ +\xf8\x38\xde\x36\xc0\xea\x0b\xa4\x90\x61\x06\x63\xc3\x71\xec\xe4\ +\x33\xd0\x43\x32\xcc\xc0\xac\x37\x8e\xe7\x99\xbf\x40\x7f\xc8\x30\ +\x43\xb5\xd2\x38\x0e\xf3\x17\xe8\x25\x19\x66\xd8\x96\x1c\xc7\x3b\ +\xfd\x2e\x80\x5c\x32\xcc\x48\xec\x3e\x8e\x2b\xb3\x41\xdc\xf6\x63\ +\x54\x01\x2c\x49\x86\x19\x95\xdd\xc7\x71\x9c\x7d\xb2\x7a\xd6\x6c\ +\x3d\x06\xb2\xc8\x30\xe3\xb4\xd2\x77\x8e\xf5\x18\xc8\x22\xc3\x8c\ +\xd9\x4a\x97\x55\x87\x93\xd5\x40\xe7\x64\x98\x49\x58\xe9\xee\x11\ +\xc6\x31\xd0\x19\x19\x66\x42\x56\xbd\x7b\x84\x71\x0c\xb4\x4d\x86\ +\x99\xa2\x95\x4e\x56\x1b\xc7\x40\x7b\x64\x98\x49\x5b\xe3\x4a\x2e\ +\x31\x06\x1a\x24\xc3\x60\x1c\x03\x69\x64\x18\xde\x60\x1c\x03\x1d\ +\x93\x61\xa8\x33\x8e\x81\xce\xc8\x30\xec\xc8\x38\x06\xda\x26\xc3\ +\x70\x0e\xe7\x1c\xc7\xf3\xf7\x71\x02\x58\x89\x0c\xc3\xb2\x76\x7a\ +\x0c\x90\x79\x07\xef\x3b\x69\x10\x03\xcb\x93\x61\x58\xcd\xe2\x63\ +\x80\x2c\xbe\x04\x60\x49\x32\x0c\x1b\xb1\x7d\x81\x4d\xc8\x30\x00\ +\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\ +\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\ +\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\ +\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\ +\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\ +\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\ +\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\ +\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\ +\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\xf4\xd7\xc1\xfb\x4e\ +\x46\xc4\xf1\xdb\xf6\x66\x1f\x08\xd0\x16\x19\x86\x7e\xa9\xd2\xbb\ +\xf8\x12\x31\x86\x51\x92\x61\xe8\x8b\x5a\x80\xef\xbe\xfb\xee\xea\ +\x89\xa3\x47\x8f\xce\xff\xaa\x1e\xc3\x98\xc8\x30\x24\xdb\xa9\xbe\ +\xb5\x97\x54\x31\x0e\xe3\x18\xc6\x45\x86\x21\xcd\x39\x03\xbc\xed\ +\xaf\x1a\xc7\x30\x26\x32\x0c\x5d\x5b\xa9\xbe\x8b\x8c\x63\x18\x13\ +\x19\x86\xee\x6c\x18\xe0\x6d\x7f\xaf\x71\x0c\x83\x26\xc3\xd0\xba\ +\x06\xeb\xbb\x68\xdb\x71\x1c\x7a\x0c\x03\x21\xc3\xd0\xa2\x56\x03\ +\xbc\xed\x5b\x76\xb2\x1a\x86\x45\x86\xa1\x79\x9d\xd5\x77\x91\x93\ +\xd5\x30\x2c\x32\x0c\x0d\x9b\x6f\x70\x97\x01\xae\x71\x25\x17\x0c\ +\x82\x0c\x43\xf3\x12\xeb\x5b\xb3\xd3\x38\x06\x7a\x42\x86\xa1\x61\ +\xfd\x69\xf0\xbc\xda\x38\x06\x7a\x42\x86\x61\x42\x8c\x63\xe8\x1b\ +\x19\x86\x29\x32\x8e\xa1\x27\x64\x18\xa6\xab\x36\x8e\x8b\xa2\xa8\ +\x9e\x2d\xcb\x32\xed\x98\x60\x62\x64\x18\xa8\x8f\xe3\xaa\xc7\x62\ +\x0c\x1d\x90\x61\xe0\x75\xc6\x31\x74\x4f\x86\x81\x3a\xe3\x18\x3a\ +\x23\xc3\xc0\xf6\x8c\x63\xe8\x80\x0c\x03\xe7\xb0\xed\x38\x0e\x3d\ +\x86\x26\xc8\x30\xb0\x94\xc5\xbb\x47\x38\x59\x0d\x9b\x93\x61\x60\ +\x35\x4e\x56\x43\x83\x64\x18\x58\x93\x2b\xb9\x60\x73\x32\x0c\x6c\ +\xc4\x38\x86\x4d\xc8\x30\xd0\x0c\xe3\x18\xd6\x20\xc3\x40\x93\x8c\ +\x63\x58\x89\x0c\x43\xc3\x8e\x1e\x3d\xda\xcf\x7b\x1d\x76\xcc\x38\ +\x86\x65\xc8\x30\x34\xaf\x6a\x8f\x18\x87\x71\x0c\xe7\x22\xc3\xd0\ +\xb0\x13\x27\x4e\x1c\x38\x70\x20\xe6\x86\xa0\x1e\x87\x71\x0c\x3b\ +\x90\x61\x68\xde\x89\x13\x27\x22\xa2\x8a\x71\xe8\xf1\x1c\xe3\x18\ +\x6a\x64\x18\xda\x52\xc5\x38\x16\x7a\x2c\xc6\x61\x1c\xc3\x16\x19\ +\x86\xd6\xd5\x7a\x6c\x1c\xcf\x18\xc7\x20\xc3\xd0\x9d\x6d\x4f\x56\ +\x8b\x71\x18\xc7\x4c\x58\xe1\x03\x9d\x8e\x55\x5f\x61\x8f\xdf\xb6\ +\x37\xfb\x40\x36\x75\xf0\xbe\x93\x71\xf6\x1f\xa4\x7a\x49\xcc\xcd\ +\xdf\xdd\xcd\x7a\x5c\xd1\xe3\x99\x59\x8f\x2b\xbe\x4c\x31\x62\x32\ +\x4c\xd7\xa6\x90\xe1\x8a\x18\x6f\xa8\x16\xe3\xd0\x63\xc6\x48\x86\ +\xe9\xda\x74\x32\x3c\xa3\xc7\x1b\x32\x8e\x19\x31\x19\xa6\x6b\x53\ +\xc8\x70\xed\x7b\xc0\x33\xcb\xf4\x58\x8c\x77\xa1\xc7\x8c\x8f\x0c\ +\xd3\xb5\xe9\x64\x78\xa6\x56\x56\xe3\x78\x43\x62\xcc\x98\xc8\x30\ +\x5d\x9b\x60\x86\x67\xd6\xe8\xb1\x18\xef\x42\x8f\x19\x01\x19\xa6\ +\x6b\x53\xce\x70\xc5\x38\x6e\x96\x18\x33\x68\x32\x4c\xd7\x64\x78\ +\xc6\x38\x6e\x96\x1e\x33\x44\x32\x4c\xd7\x64\xb8\xc6\x38\x6e\x96\ +\x18\x33\x2c\x32\x4c\xd7\x64\x78\x27\xc6\x71\xb3\xf4\x98\x41\x90\ +\x61\xba\x26\xc3\xbb\x33\x8e\x9b\x25\xc6\xf4\x9c\x0c\xd3\x35\x19\ +\x5e\xd2\xe6\xe3\x38\xf4\x78\x8e\x1e\xd3\x4f\x32\x4c\xd7\x64\x78\ +\x25\xc6\x71\xb3\xc4\x98\xbe\x91\x61\xba\x26\xc3\xeb\xd1\xe3\x66\ +\xe9\x31\x3d\x21\xc3\x74\x4d\x86\x37\x21\xc6\xcd\x72\xf7\x08\xd2\ +\xc9\x30\x5d\x93\xe1\x46\xe8\x71\xb3\x8c\x63\xb2\xc8\x30\x5d\x93\ +\xe1\x06\x89\x71\xe3\xf4\x98\x8e\xc9\x30\x5d\x93\xe1\x36\xe8\x71\ +\xb3\xc4\x98\xce\xc8\x30\x5d\x93\xe1\xf6\xb8\xb5\x62\xe3\xf4\x98\ +\xb6\xc9\x30\x5d\x93\xe1\x0e\x18\xc7\xcd\x12\x63\xda\x23\xc3\x74\ +\x4d\x86\xbb\xe4\x01\x32\x9b\xa5\xc7\x34\x4e\x86\xe9\x9a\x0c\x77\ +\xcf\x38\x6e\x96\x18\xd3\x20\x19\xa6\x6b\x32\x9c\xc8\x38\x6e\x96\ +\x1e\xb3\x39\x19\xa6\x6b\x32\x9c\xce\x38\x6e\x96\x18\xb3\x09\x19\ +\xa6\x6b\x32\xdc\x1f\xee\x1e\xd1\x2c\x3d\x66\x0d\x32\x4c\xd7\x64\ +\xb8\x6f\x8c\xe3\x66\x89\x31\x2b\x91\x61\xba\x26\xc3\xbd\xa5\xc7\ +\xcd\xd2\x63\x96\x21\xc3\x74\x4d\x86\x7b\x4e\x8c\x9b\xe5\xee\x11\ +\xec\x4e\x86\xe9\x9a\x0c\x0f\x85\x1e\x37\xcb\x38\x66\x5b\x32\x4c\ +\xd7\x64\x78\x58\xc4\xb8\x71\x7a\xcc\x3c\x19\xa6\x6b\x32\x3c\x50\ +\x7a\xdc\x2c\x31\xa6\x22\xc3\x74\x4d\x86\x07\xcd\xdd\x23\x1a\xa7\ +\xc7\x13\x27\xc3\x74\x4d\x86\xc7\xc1\x38\x6e\x96\x18\x4f\x96\x0c\ +\xd3\x35\x19\x1e\x19\x0f\x90\xd9\xa0\x59\x8c\x7d\x65\x9e\x0e\x19\ +\xa6\x6b\x32\x3c\x4a\xc6\xf1\x26\x16\x7f\xa8\x29\x94\x78\x32\x64\ +\x98\xae\xc9\xf0\xb8\x19\xc7\x2b\xa9\x05\xb8\xfa\xeb\xaa\xfe\x42\ +\x7c\x71\x9e\x88\x3d\xd9\x07\x00\x8c\xca\x7c\x48\x66\x4f\xec\x1e\ +\xe3\xd9\xaf\x56\xaf\x3c\x2b\xd3\x88\x7b\xbc\x6d\x7d\x99\x26\x19\ +\x06\x9a\x57\x2b\xeb\xac\xca\xcb\xf4\x78\xf6\xca\xa3\xec\xb1\x00\ +\x53\x23\xc3\x40\x8b\x36\x1f\xc7\xb1\x95\xae\x41\xc7\x58\x7d\xd9\ +\x89\x0c\x03\xad\xdb\x64\x1c\xc7\xc0\x4f\x56\x0b\x30\xbb\x73\x89\ +\x16\x5d\x73\x89\x16\x53\xb8\xac\x7a\xbd\xfa\xce\xff\x19\x7d\x71\ +\x9e\x08\x19\xa6\x6b\x32\xcc\xcc\x28\x7b\xbc\x46\x80\x6b\x7f\x22\ +\x5f\x96\x27\x45\x86\xe9\x9a\x0c\x53\x33\x8e\x18\x6f\x3e\x7f\x43\ +\x80\x27\x49\x86\xe9\x9a\x0c\xb3\x93\x81\xf6\xd8\xfc\x65\x13\x32\ +\x4c\xd7\x64\x98\xdd\x0d\x25\xc6\xe6\x2f\x8d\x90\x61\xba\x26\xc3\ +\x2c\xa9\x9f\x3d\x5e\x7c\xe0\x49\xf3\x97\x4d\xc8\x30\x5d\x93\x61\ +\x56\xd2\x9f\x5b\x2b\x9a\xbf\xb4\x41\x86\xe9\x9a\x0c\xb3\x9e\xac\ +\x71\xac\xbe\xb4\x4a\x86\xe9\x9a\x0c\xb3\xa1\xce\xee\x1e\x21\xc0\ +\x74\xc0\xa3\x68\x01\x03\xd3\xf6\xdd\x23\x1a\x79\xdc\x2b\xf5\x65\ +\x49\x32\x0c\x0c\x52\x83\x77\x8f\x98\xc5\x78\xf3\xf9\xeb\x44\x08\ +\xab\x92\x61\x60\xd8\x1a\x1c\xc7\xb5\x5f\xdd\xdd\xe2\xb5\x63\xb0\ +\x06\x19\x06\xc6\xa0\x91\x71\xbc\xc6\xb7\x99\x17\xdf\x08\xac\x44\ +\x86\x81\x51\x59\x6f\x1c\x2f\x13\xd1\xf5\x2e\xd5\x86\xdd\xc9\x30\ +\x30\x42\xeb\x8d\xe3\x6d\xa9\x2f\xad\x92\x61\x60\xcc\xd6\x18\xc7\ +\x33\x02\x4c\x07\x64\x18\x18\xbf\x95\xc6\xb1\xfa\xd2\x25\x19\x06\ +\x26\x64\xf7\x71\x2c\xc0\x74\x4f\x86\x81\xc9\xd9\x69\x1c\xd7\x7e\ +\x15\x3a\x20\xc3\xc0\x74\xad\xf1\x03\x4b\xd0\x2c\x19\x06\xa6\x4e\ +\x7d\x49\x24\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\ +\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\ +\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\ +\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\ +\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\ +\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\ +\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\ +\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\ +\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x86\xe6\x1d\x38\x70\xe0\ +\xc4\x89\x13\xd9\x47\x01\x0c\x80\x0c\x43\x2b\x0e\x1c\x38\x10\x11\ +\x62\x0c\xec\x4e\x86\xa1\x61\x77\xdf\x7d\x77\x44\x1c\x3d\x7a\x34\ +\xb6\x62\x1c\x7a\x0c\xec\x40\x86\xa1\x15\xf3\x31\x0e\xe3\x18\xd8\ +\x81\x0c\x43\x8b\xaa\x18\x87\x71\x0c\xec\x40\x86\xa1\x0b\xc6\x31\ +\xb0\x2d\x19\x86\xee\x18\xc7\x40\x8d\x0c\x43\x02\xe3\x18\xa8\xc8\ +\x30\xa4\x31\x8e\x01\x19\x86\x7c\xc6\x31\x4c\x96\x0c\x43\x5f\x18\ +\xc7\x30\x41\x32\x0c\xbd\x63\x1c\xc3\x74\xc8\x30\xf4\x94\x71\x0c\ +\x53\x20\xc3\xd0\x77\xdb\x8e\xe3\xd0\x63\x18\x05\x19\x86\x61\xa8\ +\x8d\xe3\x70\xb2\x1a\x46\x41\x86\x61\x60\x9c\xac\x86\x31\x91\x61\ +\x18\x2a\x57\x72\xc1\x08\xc8\x30\x0c\x9b\x71\x0c\x83\x26\xc3\xd0\ +\xb0\xd9\x3c\x9d\x05\xb2\x1b\xc6\x31\x0c\x91\x0c\x43\x5b\x52\x7a\ +\x6c\x1c\xc3\xb0\xc8\x30\x34\x6c\x16\xbc\x59\x02\xab\x22\x1a\xc7\ +\xc0\x22\x19\x86\xb6\xd4\x7a\x6c\x1c\x03\x8b\x64\x18\x5a\x57\x35\ +\xcf\x38\x06\x16\xc9\x30\x74\xc4\x38\x06\x16\xc9\x30\x74\xcd\x38\ +\x06\x66\x64\x18\x1a\xb6\xe4\xc4\x34\x8e\x81\x90\x61\x68\xcf\x4a\ +\x3d\x36\x8e\x61\x9a\x64\x18\x1a\x76\xfc\xb6\xbd\xd5\x13\x07\xef\ +\x3b\x59\x3d\xb1\x4c\xd5\x8c\x63\x98\x26\x19\x86\xb6\xd4\x7a\x3c\ +\xf4\x71\x1c\x7a\x0c\x2d\x90\x61\x68\x5d\xd5\xe3\xa1\x8f\xe3\x70\ +\xb2\x1a\x5a\x20\xc3\xd0\x91\xa1\x8f\xe3\x70\xb2\x1a\x5a\x20\xc3\ +\xd0\xb5\x81\x8e\xe3\x70\x25\x17\xb4\x40\x86\x21\x47\x83\xe3\x38\ +\x5c\xc9\x05\x83\x25\xc3\x90\x6c\xf3\x71\x1c\x7d\xba\x92\x4b\x8c\ +\x61\x25\x32\x0c\xbd\xb0\xc9\x38\x8e\x3e\x5d\xc9\x65\x1c\xc3\x4a\ +\x64\x18\xfa\x65\x8d\x71\x1c\x7d\xba\x92\xcb\x38\x86\x95\xc8\x30\ +\xf4\xd7\xf1\xdb\xf6\x1a\xc7\x30\x6e\x32\x0c\xbd\x66\x1c\xc3\xb8\ +\xc9\x30\x0c\x80\xef\x1c\xc3\x58\xc9\x30\x0c\xc9\xb6\xe3\x38\x86\ +\xf3\x18\x20\xc6\x31\xd4\xc8\x30\x0c\x8f\xbb\x47\xc0\x68\xc8\x30\ +\x0c\xd8\xd0\x1f\x20\xd3\xdd\x23\x40\x86\x61\x0c\x06\xfa\x00\x99\ +\xee\x1e\x01\x32\x0c\xe3\x31\xf4\x71\x1c\x4e\x56\x33\x3d\x32\x0c\ +\x23\x34\xd0\x71\x1c\xae\xe4\x62\x7a\x64\x18\x46\xcb\x38\x86\xfe\ +\x93\x61\x18\x3f\xe3\x18\x7a\x4b\x86\x61\x2a\xdc\x5a\x11\x7a\x48\ +\x86\x61\x72\x66\x0f\x55\x5d\x71\x6b\x45\x48\x24\xc3\x30\x5d\xf3\ +\x27\xab\x3d\x40\x66\xb3\x8a\xa2\xa8\x9e\x28\xcb\x32\xf7\x48\xe8\ +\x39\x19\x86\xa9\x5b\x63\x1c\x47\x9f\xae\xe4\xea\xf9\x38\xd6\x63\ +\x76\x27\xc3\xc0\xeb\xaa\x4e\x54\xd9\x30\x8e\x37\xb4\xf8\xc8\x24\ +\xd5\x5f\xac\x18\x53\x23\xc3\xc0\x59\xe6\x63\x1c\xc6\xf1\xc6\x6a\ +\x3d\x36\x8e\xa9\x91\x61\x60\x1b\xb3\x48\x18\xc7\x4d\xa9\xfd\x2b\ +\xc1\x38\xa6\x22\xc3\xc0\x6e\xb6\x1d\xc7\x31\x9c\xc7\x00\x31\x8e\ +\xe9\x39\x19\x06\xce\xad\x36\x8e\x63\x38\x8f\x01\x62\x1c\xd3\x73\ +\x32\x0c\xac\x60\x93\x93\xd5\x3d\x1c\xc7\x91\xdd\xe3\x6d\xc7\xb1\ +\x18\x4f\x8a\x0c\x03\xeb\x58\xe3\x4a\xae\x1e\x8e\xe3\xe8\xd9\xc9\ +\xea\x59\x8c\x95\x78\x3a\x64\x18\x58\xdf\xd0\xc7\x71\xf4\xe6\x64\ +\xf5\xec\x9f\x05\x15\x25\x9e\x0e\x19\x06\x1a\x30\xd0\x71\x1c\xd9\ +\x57\x72\xd5\xea\x5b\xfb\x07\x0a\x53\x20\xc3\x40\x63\x1a\x1c\xc7\ +\x31\xf6\x2b\xb9\xb6\x0d\x30\x13\x24\xc3\x40\xf3\x36\x1f\xc7\xd1\ +\xa7\x2b\xb9\x1a\x6c\xa4\xfa\x52\x23\xc3\x40\x5b\x3c\x06\xc8\x3c\ +\x01\x66\x5b\x32\x0c\xb4\x6e\xca\x0f\x90\xa9\xbe\xec\x4e\x86\x81\ +\x8e\x4c\x6d\x1c\xaf\x11\x60\x17\x67\x4d\x90\x0c\x03\x5d\x9b\xc2\ +\x38\x9e\xbd\xce\x92\xf3\x77\x3e\xc0\x7e\x54\x69\x52\x64\x18\xc8\ +\x31\xbe\x71\x5c\xb3\xc6\xfc\x15\xe0\x09\x92\x61\x20\xd9\x68\xee\ +\x1e\x51\x1d\xd2\x1a\xf3\x37\x04\x78\xc2\x64\x18\xe8\x85\xc1\xdd\ +\x3d\xa2\xf6\xad\xdf\x25\xa9\x2f\x35\x32\x0c\xf4\x4b\xff\x1f\x20\ +\x73\xbd\x8b\x9f\x05\x98\x6d\xc9\x30\xd0\x53\x7d\x7b\x80\x4c\xf5\ +\xa5\x0d\x32\x0c\xf4\x5a\x1f\xc6\xb1\x00\xd3\x1e\x19\x06\x86\xa1\ +\xfb\x71\xac\xbe\x74\x40\x86\x81\x21\xe9\xe6\xee\x11\x02\x4c\x67\ +\x64\x18\x18\xa4\x36\xee\x1e\xa1\xbe\x74\x4f\x86\x81\x01\x6b\xf6\ +\x31\x40\x16\x5f\x61\x17\x8b\x8f\xda\x21\xc0\xac\x41\x86\x81\x31\ +\x68\xe4\x01\x32\xcd\x5f\xba\x27\xc3\xc0\x78\xac\x3d\x8e\x97\xb9\ +\xa7\x82\xfa\xd2\x06\x19\x06\x46\x68\xbd\x71\xbc\x13\x01\xa6\x3d\ +\x32\x0c\x8c\xd6\x7a\xe3\x78\x46\x7d\xe9\x80\x0c\x03\xe3\xb7\xea\ +\x38\x16\x60\x3a\x23\xc3\xc0\x54\x9c\x73\x1c\xab\x2f\xdd\x93\x61\ +\x60\x72\x76\xba\xb5\x62\xed\x15\xa0\x03\x32\x0c\x4c\xd4\xe2\xad\ +\x15\xd5\x97\xee\xc9\x30\x30\x75\xea\xdb\x73\x87\x0e\x1d\x7a\xf3\ +\x9b\xdf\x1c\x11\x67\xce\x9c\xb9\xe8\xa2\x8b\x3e\xf3\x99\xcf\x64\ +\x1f\x51\x93\x64\x18\x80\x5e\x7b\xe8\xa1\x87\x0e\x1f\x3e\x7c\xea\ +\xd4\xa9\xef\x7e\xf7\xbb\x2f\xbd\xf4\x92\x0c\x03\x40\x47\xbe\xf9\ +\xcd\x6f\x5e\x79\xe5\x95\xb7\xdf\x7e\x7b\x44\xec\xdf\xbf\x7f\xdf\ +\xbe\x7d\xd9\x47\xd4\x30\x19\x06\xa0\xbf\x6e\xba\xe9\xa6\xef\x7f\ +\xff\xfb\x11\xf1\xd9\xcf\x7e\xf6\xf4\xe9\xd3\x9f\xfb\xdc\xe7\xb2\ +\x8f\xa8\x61\x32\x0c\x40\xaf\x1d\x3c\x78\xf0\x91\x47\x1e\x79\xfc\ +\xf1\xc7\x3f\xf5\xa9\x4f\x65\x1f\x4b\xf3\x64\x18\x80\xbe\x7b\xe0\ +\x81\x07\x6e\xbc\xf1\xc6\x0f\x7f\xf8\xc3\xdf\xf8\xc6\x37\x3e\xf8\ +\xc1\x0f\x66\x1f\x4e\x93\x64\x18\x80\x5e\x3b\x7c\xf8\xf0\xf9\xe7\ +\x9f\x5f\xdd\x8f\xf2\x89\x27\x9e\x90\x61\x00\xe8\xce\x63\x8f\x3d\ +\x76\xcf\x3d\xf7\x54\x4f\xbf\xf2\xca\x2b\xb9\x07\xd3\x38\x19\x06\ +\xa0\xbf\x8e\x1d\x3b\xf6\xc2\x0b\x2f\xdc\x7a\xeb\xad\xe7\x9d\x77\ +\x5e\x59\x96\x57\x5f\x7d\x75\xf6\x11\x35\x4c\x86\x01\xe8\xaf\x23\ +\x47\x8e\x1c\x39\x72\x24\xfb\x28\x5a\x24\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x80\x5e\x2b\x8a\x3f\x2b\xcb\xab\xb2\x8f\xa2\x2d\x32\x0c\x40\x7f\ +\x15\xc5\x03\x11\xbf\x9b\x7d\x14\x2d\x92\x61\x00\xfa\xec\xb7\x22\ +\xca\xa2\xf8\xfd\xb2\x1c\xdb\xbd\x95\x2a\x32\x0c\x40\x4f\x15\xc5\ +\xf1\x88\x7f\x1c\xf1\x5a\xc4\xde\xec\x63\x69\x8b\x0c\x03\xd0\x5b\ +\x7b\x23\xf6\x44\x94\x11\xd7\x15\xc5\x3b\xca\xf2\xfb\xd9\xc7\xd3\ +\x3c\x19\x06\xa0\x8f\x8a\xe2\xef\x45\x7c\x6d\x2b\xc3\x7b\x22\x6e\ +\xce\x3e\xa2\x56\xc8\x30\x00\xfd\xf4\x7b\x11\x7b\x22\xce\xdf\xca\ +\xf0\xde\xa2\x78\x4b\x59\xfe\x45\xf6\x51\x35\x4c\x86\x01\xe8\xa7\ +\xbd\x11\xe7\x47\x5c\x18\xf1\x97\x11\xe7\x47\xfc\x7a\xc4\x8d\xd9\ +\x87\xd4\x3c\x19\x06\xa0\x77\x8a\xe2\x78\xc4\xf5\x5b\x67\xa4\xab\ +\x35\xbc\x67\x94\x17\x6a\xc9\x30\x00\x3d\xb4\x37\xe2\x6d\x8b\x19\ +\x2e\x8a\xab\xcb\xf2\x85\xec\x63\x6b\x92\x0c\x03\xd0\x3b\x65\xf9\ +\xd1\xa2\xf8\xd1\xd9\x19\x3e\xbf\x2c\x8f\x45\x1c\xcb\x3e\xb4\x86\ +\xc9\x30\x00\x7d\x54\x96\x6f\x2b\x8a\x87\x23\xae\x8f\x78\x25\xe2\ +\xdb\x65\xf9\xa9\xec\x23\x6a\x85\x0c\x03\x40\x1a\x19\x06\x80\x34\ +\x32\x0c\x00\x69\x64\x18\x00\x5e\x77\xe4\xc8\x91\x53\xa7\x4e\x5d\ +\x7b\xed\xb5\xfb\xf7\xef\x8f\x88\xc3\x87\x0f\x5f\x7c\xf1\xc5\x47\ +\x8f\x1e\x6d\xef\x3d\xca\x30\x00\xbc\xee\xf4\xe9\xd3\x5f\xfb\xda\ +\xd7\xae\xba\xea\xaa\x88\x78\xec\xb1\xc7\x9e\x7c\xf2\xc9\x7d\xfb\ +\xf6\xb5\xfa\x1e\x65\x18\x00\x5e\x77\xef\xbd\xf7\xfe\xe0\x07\x3f\ +\xf8\xf9\xcf\x7f\x1e\x11\xaf\xbe\xfa\xea\xbe\x7d\xfb\xee\xbf\xff\ +\xfe\x56\xdf\xa3\x0c\x03\xc0\x1b\xf6\xef\xdf\x7f\xfc\xf8\xf1\x77\ +\xbc\xe3\x1d\x4f\x3d\xf5\xd4\xbb\xde\xf5\xae\xb6\xdf\x9d\x0c\x03\ +\xc0\x1b\x6e\xb9\xe5\x96\xef\x7c\xe7\x3b\x5f\xf8\xc2\x17\xde\xfb\ +\xde\xf7\x7e\xe2\x13\x9f\x68\xfb\xdd\xc9\x30\x00\x9c\xe5\x4b\x5f\ +\xfa\xd2\xbb\xdf\xfd\xee\xf7\xbd\xef\x7d\x1d\xbc\x2f\x19\x06\x80\ +\xba\xcb\x2e\xbb\xec\x63\x1f\xfb\x58\x07\xef\x48\x86\x01\xa0\xee\ +\xf4\xe9\xd3\x0f\x3f\xfc\xf0\x47\x3e\xf2\x91\xb6\xdf\x91\x0c\x03\ +\xc0\x1b\xae\xbb\xee\xba\xef\x7d\xef\x7b\x67\xce\x9c\x79\xe2\x89\ +\x27\x6e\xba\xe9\xa6\x47\x1f\x7d\xb4\xd5\x77\x27\xc3\x00\xf0\x86\ +\xa7\x9f\x7e\xba\xcb\x77\x27\xc3\xd0\x3b\x07\xef\x3b\x99\x7d\x08\ +\x40\x47\x64\x18\xfa\x62\xb1\xbe\xb3\x97\x1c\xbf\x6d\x6f\xe7\x87\ +\x03\xe3\x51\x3c\x58\x44\x44\x3c\x10\xe5\x7f\x2a\xb3\x8f\xa5\x4e\ +\x86\x21\x5f\x2d\xc0\x65\xf9\xfa\x57\x8a\xa2\x28\xe6\x5f\x41\x8c\ +\x61\x0d\xaf\x37\x38\x22\xfe\x69\x14\xff\xbc\x88\xd3\x11\x6f\x7e\ +\xe3\x57\xcb\x3f\x48\x0e\xb3\x0c\x43\x9a\x9d\xea\xbb\xf8\x92\xaa\ +\xc7\xc6\x31\xac\xef\xc5\x88\x5f\x8d\x78\x4f\xc4\x9f\x44\x54\x9f\ +\x58\xa7\x22\x9e\x49\x3e\xa8\x90\x61\x48\x71\xce\x00\xd7\x54\xaf\ +\x60\x1c\xc3\xaa\x8a\x7f\x52\xc4\x0d\x11\x7b\x23\xae\x8d\x28\x23\ +\x7e\x1c\xf1\x5a\xc4\x2f\x22\x7e\x11\xf1\x3f\xa3\x7c\x3a\xff\x1c\ +\xb5\x0c\x43\x77\x56\xad\x6f\x8d\x71\x0c\xcb\x2b\xfe\xa0\x88\xbd\ +\x11\xbf\x1b\xb1\x27\xa2\x8c\x78\x2d\xe2\x2f\x23\x22\xe2\x3d\x11\ +\xff\x21\xe2\xcf\xa2\xfc\xef\xf9\x0d\x0e\x19\x86\x6e\x6c\x18\xe0\ +\x9a\x6d\xc7\x71\xe8\x31\x44\x14\xbf\x57\xc4\x75\x11\x97\x47\xfc\ +\xe6\xdc\xc9\xe7\x97\x23\x7e\x1a\xf1\xa3\x88\xbf\x15\x11\x11\x2f\ +\x44\xf9\x6c\x2f\x1a\x1c\x32\x0c\xad\x6a\xb6\xbe\x35\xae\xe4\x82\ +\x99\xe2\xfa\x22\x6e\x8d\xb8\x3c\xe2\xb7\x23\xce\xdb\x9a\xbf\x7f\ +\xb1\x15\xe0\xff\x15\xf1\x5c\xc4\x53\x11\xff\x36\x22\x7a\xd4\xe0\ +\x90\x61\x68\x49\xab\x01\xae\x71\xb2\x9a\x29\x2b\xfe\x59\x11\xbf\ +\x19\x71\x57\xc4\x45\x5b\xf3\xf7\x17\x5b\xf5\x7d\x29\xe2\xb9\x88\ +\xef\x45\x7c\x3e\xe2\xef\x47\x1c\x8c\x88\x28\x6f\xed\x51\x83\x43\ +\x86\xa1\x71\xf3\x01\x6e\xb5\xbe\x8b\x5c\xc9\xc5\x74\x14\xef\x2b\ +\xe2\x1f\x45\xec\x8d\xb8\x25\xa2\xd8\x9a\xbf\xaf\x44\xfc\x34\xe2\ +\xe5\x88\xe7\x23\x9e\x8b\xf2\x8f\xcf\xfa\x04\x2c\x1e\x2c\xfa\xd6\ +\xe0\x90\x61\x68\x49\xc7\x01\xde\xf6\x5d\x1b\xc7\x8c\x52\x71\x47\ +\x11\xbf\x11\x71\x38\xe2\xc2\x88\x32\xa2\x8c\x78\x75\xab\xbe\x3f\ +\x8c\x78\x2e\xe2\xd9\x28\xff\x7c\x9b\x4f\xc0\x1e\x36\x38\x64\x98\ +\x2c\x23\x1e\x6a\x89\x01\xae\x59\x66\x1c\x7b\xe0\x4c\x7a\x6b\xeb\ +\x43\xf7\xc5\x37\x9e\xfd\x72\xc4\xe5\x11\x1f\x8c\x88\xad\xf9\xfb\ +\xd3\xad\x00\xff\x69\xc4\x73\x51\xfe\x49\x5f\x3e\xfb\x96\x57\xf4\ +\xe7\x4b\x06\xd3\x31\x0b\x43\x65\xa0\x31\x5e\xac\x5a\xf5\x92\xde\ +\x7e\x4e\xd5\xfe\xda\xe7\xf5\xf6\x98\x99\xac\x1d\x3f\x5c\xff\xf3\ +\xd9\xf3\xf7\xcf\x23\x9e\x8b\x78\x26\xca\x1f\x0d\xf5\x63\xd8\x1a\ +\x26\x81\xb3\xa6\x29\x6a\xe3\x78\xfe\x85\x30\x18\x3f\x89\x78\x39\ +\xe2\xe5\x88\xe7\x22\x9e\x8b\xf2\xbf\x0d\xfe\x03\x58\x86\xc9\xe4\ +\x92\xa2\xee\xcd\xfe\xce\x05\x98\x61\xf9\x2f\x11\x2f\x47\xfc\xf8\ +\x77\xe2\x5b\x11\x0f\x5f\x16\xe5\xff\x19\xc9\x07\xb0\x0c\x93\xcf\ +\x38\xee\x9e\x06\x33\x38\xaf\x45\x5c\x1a\xf1\xcb\x11\x57\x45\x7c\ +\xf8\x27\x71\x4f\x51\xfc\xcb\x51\x7c\x18\xcb\x30\x3d\x62\x1c\x03\ +\x3b\x79\x7e\x2b\xc3\x7f\x25\xe2\x57\x22\x7e\x35\xe2\xa1\xa2\x38\ +\x19\xf1\x78\xc4\x1f\x0d\xb9\xc7\x32\x4c\xef\x18\xc7\x40\x59\x96\ +\xb5\xeb\x18\xfe\x7d\xc4\x35\x11\xbf\x16\x71\x69\xc4\xa5\x11\x17\ +\x47\xbc\x35\xe2\x92\x88\xab\x22\xfe\xb0\x28\x4e\x46\xdc\x31\xcc\ +\x18\xcb\x30\xfd\x65\x1c\xc3\x94\xd5\x4a\xfc\x5f\xcb\x32\x22\xde\ +\x59\x14\xfb\x22\xae\x89\x78\xdb\x56\x8f\xff\x6a\xc4\x15\x11\x6f\ +\x8f\x78\xb8\x28\x7e\x1c\xf1\x54\xc4\x57\x07\xd5\x63\x19\xa6\xef\ +\x8c\x63\x98\xac\xc5\x8b\x18\xfe\xb4\x2c\x23\xe2\x4d\x45\xf1\xee\ +\x88\x6b\x22\xae\x8e\xf8\xe5\x88\x4b\x23\xde\x12\xf1\x96\x88\xb7\ +\x46\x5c\x15\xf1\xef\x8a\xe2\xc7\x11\x87\x06\x12\x63\x19\x66\x30\ +\x8c\x63\xa0\x72\x6a\x2b\xb1\xbf\x56\x14\x7f\x3b\xe2\x9a\x88\x2b\ +\xb6\x7a\xfc\xa6\x88\xb7\x45\x5c\x11\xf1\x68\x51\x9c\x8c\x78\x26\ +\xe2\xdf\x94\x65\x44\x3c\x53\x14\x2f\x45\x3c\x13\xf1\xfb\xdb\xe5\ +\xf9\xae\xbb\xee\x7a\xf5\xd5\x57\x6f\xb8\xe1\x86\x8f\x7e\xf4\xa3\ +\x11\x71\xe8\xd0\xa1\x2b\xaf\xbc\xf2\xd3\x9f\xfe\x74\x07\x7f\x16\ +\x19\x66\x60\x8c\x63\x60\xe6\x7f\x97\x65\x44\x9c\x57\x14\xef\x89\ +\xb8\x26\xe2\x6f\x6e\x5d\xc6\xf5\xd6\x88\x8b\x22\x2e\x8e\xb8\x2a\ +\xe2\x8f\x8a\xe2\x1f\x44\x5c\x1a\x51\x44\x9c\x8a\xf8\x57\x45\xf1\ +\xaf\x17\x4a\x7c\xe6\xcc\x99\xaf\x7f\xfd\xeb\x97\x5f\x7e\x79\x44\ +\x7c\xe5\x2b\x5f\xf9\xd6\xb7\xbe\x75\xf3\xcd\x37\x77\xf3\x47\x90\ +\x61\x86\xca\x38\x06\x2a\xaf\x6d\x65\xf5\xaf\x17\xc5\xdf\x89\xb8\ +\x26\xe2\x57\xb6\x7a\xfc\xa6\x88\xdf\x8a\x28\x23\x2e\x8e\x28\x22\ +\xae\x8e\xf8\x6b\x11\xff\xa2\x28\xbe\x70\x76\x89\x8f\x1d\x3b\xf6\ +\xb3\x9f\xfd\xec\x85\x17\x5e\x88\x88\x1f\xfe\xf0\x87\xef\x7f\xff\ +\xfb\x3f\xff\xf9\xcf\x77\x73\xf0\x7e\x84\x9f\x91\xe8\xfe\x01\x32\ +\x07\xf7\x60\x96\x30\x1d\xd7\x17\xc5\x35\x11\xef\x8c\xb8\x34\xe2\ +\x1f\x46\x5c\x10\x11\x11\xd5\xd7\x88\x97\x22\x5e\x89\xb8\x2b\xe2\ +\xf1\x85\x4f\xd5\x0f\x7d\xe8\x43\x45\x51\x5c\x78\xe1\x85\x0f\x3e\ +\xf8\x60\x67\x87\x6a\x0d\x33\x12\xdb\x8e\xe3\xb0\x8f\x61\x92\x9e\ +\x2a\xcb\x88\x78\x7b\x51\xfc\xdd\x88\xeb\x23\x2e\xd8\xfa\x6f\x4f\ +\xc4\xdb\x23\xde\x1e\x71\xcf\x76\xbf\xeb\xc6\x1b\x6f\x3c\x76\xec\ +\xd8\xc7\x3f\xfe\xf1\x2e\x0f\x55\x86\x19\x95\xda\x77\x8e\xc3\xc9\ +\x6a\x98\xb0\x97\xca\x32\x22\xfe\x63\x51\x5c\x32\x57\xe2\xea\xbf\ +\x77\x46\x7c\xb7\x28\x6e\x38\x7b\x10\x3f\xf9\xe4\x93\xd7\x5e\x7b\ +\xed\xf3\xcf\x3f\xdf\xe5\x41\xca\x30\xe3\xe4\x4a\x2e\xa0\xf2\x3f\ +\x22\x2e\x88\x78\xd3\x56\x80\xab\x27\x7e\x23\xe2\x6f\x44\xfc\xa4\ +\x28\x2e\xdb\xfa\x5a\x71\xe8\xd0\xa1\x4b\x2e\xb9\xe4\x91\x47\x1e\ +\xb9\xfd\xf6\xdb\x3f\xf9\xc9\x4f\xde\x7f\xff\xfd\xdd\x1c\x9e\x0c\ +\x33\x72\xae\xe4\x82\x89\xbb\xab\x2c\xdf\x3f\x77\xed\x48\x19\xf1\ +\x74\xc4\xff\x3d\x7b\x07\x7f\xf5\xab\x5f\xfd\xf6\xb7\xbf\xfd\xec\ +\xb3\xcf\x46\xc4\x97\xbf\xfc\xe5\x0f\x7c\xe0\x03\x5f\xfc\xe2\x17\ +\xef\xbc\xf3\xce\x0e\x0e\xcf\x25\x5a\x4c\x4b\x83\x57\x72\xb9\x44\ +\x0b\x46\xe3\x82\x0b\x2e\x28\xcb\xf2\xe6\x9b\x6f\x7e\xe8\xa1\x87\ +\xee\xb8\xe3\x8e\x7b\xef\xbd\xf7\x8a\x2b\xae\x78\xf1\xc5\x17\x3b\ +\x78\xd7\x32\xcc\x14\x35\x12\x63\x19\x06\x36\xe7\xa4\x34\x53\xe4\ +\x3b\xc7\x40\x4f\xc8\x30\x93\xe6\x3b\xc7\x40\x2e\x19\x06\xe3\x18\ +\x48\x23\xc3\xf0\x06\xe3\x18\xe8\x98\x0c\x43\x9d\x71\x0c\x74\x46\ +\x86\x61\x47\xc6\x31\xd0\x36\x19\x86\x73\xd8\x69\x1c\xcf\x2c\xbe\ +\x04\x60\x49\x7e\x6e\x18\x56\x53\xfb\x99\xe3\x79\x3e\x9b\x80\x55\ +\xc9\x30\xac\x69\xd6\x63\x9f\x44\xc0\xda\x64\x18\x00\xd2\xf8\xde\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\xff\x1f\xb7\x52\xe5\ +\x04\x91\x53\x12\xd0\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x01\x39\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ +\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\ +\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\xd9\x49\x44\x41\x54\x78\ +\x5e\xed\x9b\x31\x0a\xc3\x50\x14\xc3\xfe\xfd\x0f\xdd\x94\x52\x77\ +\x56\xc1\x04\x67\x90\x41\x9e\x02\xf1\xd3\xfe\xcf\x39\xe7\xba\x99\ +\xd7\x1f\xdf\x2c\xf9\xd4\x75\x23\xdf\x9f\x3c\x34\x0a\x48\xd1\x11\ +\x0d\x0a\x50\x00\x8c\x58\x46\x01\x29\x3a\xa2\x41\x01\x0a\x80\x11\ +\xcb\x28\x20\x45\x47\x34\x28\x40\x01\x30\x62\x19\x05\xa4\xe8\x88\ +\x06\x05\x28\x00\x46\x2c\xa3\x80\x14\x1d\xd1\xa0\x00\x05\xc0\x88\ +\x65\x14\x90\xa2\x23\x1a\x14\xa0\x00\x18\xb1\x8c\x02\x52\x74\x44\ +\x83\x02\x14\x00\x23\x96\x51\x40\x8a\x8e\x68\x50\x80\x02\x60\xc4\ +\x32\x0a\x48\xd1\x11\x0d\x0a\x50\x00\x8c\x58\x46\x01\x29\x3a\xa2\ +\x41\x01\x0a\x80\x11\xcb\x28\x20\x45\x47\x34\x28\x40\x01\x30\x62\ +\x19\x05\xa4\xe8\x88\x06\x05\x28\x00\x46\x2c\xa3\x80\x14\x1d\xd1\ +\xa0\x00\x05\xc0\x88\x65\x14\x90\xa2\x23\x1a\x14\xa0\x00\x18\xb1\ +\x8c\x02\x52\x74\x44\x83\x02\x14\x00\x23\x96\x51\xc0\xaf\xee\xe4\ +\xd1\xcf\xe7\xdf\xb9\xa5\x52\x55\x4f\x58\xa8\x78\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x2a\xaf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -1955,969 +5114,6 @@ qt_resource_data = "\ \x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\x30\x31\x2d\x31\x37\x54\ \x31\x30\x3a\x34\x33\x3a\x32\x34\x2d\x30\x36\x3a\x30\x30\x25\x20\ \xe2\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x0f\x3e\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x0f\x05\x49\x44\x41\x54\x78\xda\xed\x5d\x4d\x8f\x25\x55\ -\x19\x7e\xde\x53\xd5\x33\x3d\x03\x4c\xc3\xe0\x1f\x10\x91\x09\x8e\ -\x44\x18\x62\x94\x8d\x09\x19\x22\x31\x44\x25\xc6\x10\x09\x62\x5c\ -\x20\x02\x2a\x0b\x70\x65\xc2\xc6\xa8\x0b\x17\x46\x12\x12\x75\x12\ -\x16\x93\xb0\x70\x0b\xc4\x10\x4d\x98\x49\xc4\x64\x94\x88\xc8\xa2\ -\x51\xc1\x0f\x70\xe5\x47\xec\x61\x9a\x99\xe9\xe9\x7b\xeb\xbc\xaf\ -\x8b\x3a\xa7\xee\xa9\x53\x5f\xb7\xbe\xfa\xde\xee\x3e\xa7\x73\x52\ -\xf7\xa3\x6e\x77\xdf\x7a\x9e\xf7\x79\x9f\xf7\x9c\x53\x55\x40\x68\ -\xfb\xba\xd1\x90\xbf\x4c\x41\x51\x38\xa4\x7d\xc0\xa0\xc2\x63\x02\ -\x41\x41\xe5\xb6\xee\x63\x00\xb8\x80\x0b\xb2\x30\x02\xd4\x80\x1e\ -\xc8\xd0\x93\x0c\xfe\x8f\x47\x04\x71\xdf\xb3\x9f\x39\x8f\xf3\xb2\ -\x23\x04\x20\x10\x55\xfc\x9e\x00\xfc\x40\x4a\x30\x07\x09\x72\x44\ -\x00\x20\xf6\xb3\xf3\x12\x81\x06\x00\x9e\x2a\x1e\x87\xb6\x73\x2a\ -\x20\xee\x63\x00\x19\xf8\x4d\x44\xa0\x2e\xe0\x0b\x84\x1c\xc0\x6d\ -\x57\xde\xf3\xa0\x08\x03\x79\x01\xef\x47\x14\x94\x4b\x00\x51\x50\ -\x42\x20\xb6\xe0\x3b\x24\x10\x02\x61\x03\x1b\xd2\x9b\x00\x04\x22\ -\x49\x89\xe5\x02\xee\xf6\xa8\x82\x04\x81\x00\xc3\xa6\x02\xb1\xe0\ -\x1b\xe0\x45\x41\x31\x81\xb4\x21\x01\x03\xb0\xdb\x46\x12\x50\x07\ -\xf0\x7d\xd0\x63\xd3\x23\x87\x04\x2a\x90\x60\x14\x12\x88\x43\x02\ -\x0b\x3c\x2b\x28\x6d\x08\x90\x98\xae\x2d\x11\x0c\x19\x04\x40\x29\ -\x09\xa8\x23\xf8\x16\xf8\x95\xeb\x1f\x78\xe5\x7f\x01\xa6\x81\x9b\ -\x58\x9c\xc4\x64\x73\x01\x89\x00\xc2\x20\x61\x10\x33\x88\x35\x48\ -\x6b\x5c\x78\xfe\xbe\x63\x0a\x2a\x51\x50\x53\x02\x4d\x08\x34\x25\ -\xd0\x14\x40\x42\x20\xdd\x44\x02\x6a\x09\xbe\x8d\xf2\x15\x00\x07\ -\xae\x7f\xe0\x95\xff\x04\xb4\x16\x40\x02\x4b\x00\xd6\x50\x3a\xc1\ -\x85\x17\xee\xbf\x4d\x41\x6d\x13\xc8\xf6\x89\x25\x03\x00\x0d\x40\ -\x1b\x02\xb0\x4f\x02\xea\x08\xfe\xc1\xeb\x1f\x78\xe5\xdf\x76\xdf\ -\x1f\x7c\xf3\xf6\xca\xef\xf1\xf0\x27\x0f\x05\x30\x7b\xb4\x9f\x9d\ -\xbb\x0c\x88\x40\x44\xd2\xad\x66\xb0\xd6\xe0\x69\x82\xef\x9f\x7a\ -\x0d\xa4\x35\x88\xa7\xd8\x7c\xf1\xc1\x3b\x14\xd4\x16\x81\xb6\x08\ -\x74\x85\x40\x57\x00\x4c\x08\x34\x71\x48\x60\x7d\x41\x46\x02\xd5\ -\x12\xfc\x03\x6d\xc0\x0f\x6d\x00\x0f\x40\x04\x10\xa5\x5b\x10\xa0\ -\x08\xa4\x08\x14\x29\x7c\xe7\xa1\xdb\x00\x22\x80\x14\xd6\xee\x39\ -\x7d\x4e\x20\x47\x00\x5c\x03\xe0\x30\x80\x43\x00\x0e\x1a\xcc\x62\ -\xdf\x9f\x1d\xc5\x51\xaa\x54\x00\x43\x00\x37\xe7\xc7\xa5\x91\xff\ -\x8d\xdb\x1b\x5d\x84\x55\x80\xf5\xf5\xf5\x80\x66\x8b\x76\xfc\xf8\ -\x71\x00\xc0\xa9\xdf\x6e\xa5\x89\x80\x39\x53\x01\x4e\x34\x44\x6b\ -\x70\x92\x40\x6f\x4f\xf0\xc3\x67\x5f\x07\x71\x02\xd2\x09\x36\x5f\ -\x7a\xe8\x4e\x05\x75\x09\xc0\x45\x02\x5d\x36\x4a\xb0\x0d\x60\x4a\ -\xa0\xc4\xa8\x41\x96\x0e\x54\x0d\xf8\x6e\xf4\x97\x83\x1f\xda\x4e\ -\x4a\x81\x51\x81\x99\x2a\xa4\x68\x29\x7c\xfb\x2b\xb7\x64\xe8\xad\ -\xdd\x7d\xea\xac\x40\xae\x01\x70\x35\x80\xab\x00\xac\x96\xa8\x40\ -\x56\xa1\x51\xc5\x40\x8f\xeb\xf6\x0f\x18\xc3\xf7\xdf\x2e\xe0\x3f\ -\x7c\x47\xf0\x00\x7d\xda\xa9\x73\x46\x01\xac\x07\x60\x81\x30\x83\ -\x93\x04\x92\x24\xd0\xd3\x29\xf4\x64\x0a\xde\x9e\xe0\xc7\xcf\xbd\ -\x61\xcc\x21\x63\xf3\x57\x8f\x9d\x24\xd0\xfb\x04\xba\x08\xe0\x12\ -\x80\x2d\x02\x6d\x03\xb0\xc6\x90\x01\x70\xa6\x00\xce\xa4\x8e\x1b\ -\xfd\x31\x80\xb8\x2b\xf8\xa1\x8d\xec\x0d\x5c\x27\x4f\x84\x6f\x7d\ -\xe9\x78\xf6\xda\x91\xbb\x9e\x79\xd9\xa8\x80\xeb\x07\x56\x1c\x25\ -\x20\x00\xa4\x2a\x06\x87\x32\xf9\x77\xeb\xfc\xef\x3d\x76\x02\x2c\ -\xd2\xaa\x87\xd6\xaf\xd5\x1e\xdf\x2c\x99\xa7\xcf\x45\x04\x8f\x7e\ -\xf1\xe6\x19\x09\x4e\x3e\x7d\xc6\xa4\x81\x43\x00\x56\x05\x62\x53\ -\x41\x66\x06\x55\xc5\xc0\x90\x6b\xfe\x00\x00\xdf\x7d\xf4\x04\x58\ -\xd0\xba\x87\xd6\x97\x00\xcd\x5d\x84\x20\x48\x3b\x03\xf8\xda\x17\ -\x8e\x65\x48\x0a\xa4\xb6\x22\x88\x3d\xf9\x77\x15\xc0\x96\x7e\xf9\ -\x71\x89\x8e\x2d\x54\x01\xdd\xaa\x00\x7b\xdc\xc5\x4c\xef\x48\x59\ -\x47\xf1\x35\x6b\x1c\x8d\x09\xbc\x62\x08\xb0\x6d\x08\x60\xab\x01\ -\x8e\x9b\x52\x80\xcb\xc4\xf6\x89\x2a\x00\xd9\x5b\x01\x30\x03\xde\ -\x27\x40\x4e\x09\x0c\x46\x52\xc4\xea\xa0\x97\xff\x63\xb7\x12\x88\ -\x2b\xe0\x72\x55\x00\x00\xa0\xbb\x48\x80\x14\x19\x1d\x5a\xbb\xa6\ -\x0d\x9a\x59\x15\xe0\x75\x5d\xf0\x06\xf0\xbd\xd7\x8a\xd3\xdd\xfc\ -\xaf\x7c\x02\xb8\x24\x28\xcc\xeb\x33\x87\x28\x5f\x94\x07\xa8\x4d\ -\x01\x9c\x62\xc3\x6c\x94\x80\x0b\x0a\x50\x36\x53\x5b\xaa\x00\x65\ -\x24\x50\x33\x05\x68\x8e\xf2\xd0\xc6\x50\x80\x12\x02\xb0\xe9\x4e\ -\x0a\xd0\x52\x99\x02\x54\x19\xf0\x2e\x3b\x50\xe3\x03\x0a\xff\x48\ -\xc8\xf7\x3b\x4c\x80\x12\x05\x80\x89\x74\x71\xa3\xde\xe9\xc2\xa5\ -\x04\x28\x5b\xa8\x43\xf1\xbc\xb0\x26\x3d\x6b\xba\x50\x05\x74\xab\ -\x02\x12\x5d\xf4\x00\xd0\xe9\x88\x20\x9b\x2e\xae\x07\x30\xcf\x1b\ -\x02\xbb\x51\x01\x2a\xa5\x28\x28\xc0\x72\x28\x80\xb8\x2a\xe0\x46\ -\xbf\x14\xfc\x5a\xd9\x3a\x4d\xb4\x26\xc0\xb4\xa7\x02\x84\x2a\xa0\ -\x5b\x9b\x7a\x0a\x30\x9b\x0f\x98\xa9\x40\x4a\x02\xfb\x58\x5a\x95\ -\xec\xc3\x29\x40\x50\x81\x1d\x51\x00\xb8\x26\x90\xf3\x5e\xc0\x9a\ -\x42\xe1\x11\x08\x90\x70\x00\x63\x11\x2d\xd1\xf5\x04\xc8\xc0\x77\ -\xc8\x20\x0b\x53\x80\xd0\x46\x2f\x03\x0b\x04\xf0\xc1\xe7\x91\x14\ -\x60\x1a\xaa\x80\x85\x54\x01\x53\x2e\xf7\x00\x30\x6e\xdf\xe6\x7f\ -\x7f\x84\x30\x28\xc0\x1e\x57\x00\x70\xb9\x17\x18\x4d\x01\x92\x50\ -\x05\x2c\xc6\x03\xd4\x29\x80\xed\xe2\x6c\x47\x53\x00\x67\x99\xfa\ -\x5c\x2d\x54\x04\xc3\x56\x01\x3c\x53\x00\x3f\xfa\x61\x14\x00\xec\ -\x4d\x07\x2f\x34\x05\x84\x39\x82\xd1\x52\x40\xe9\xf4\x30\x66\x86\ -\x10\x63\xa4\x00\x0e\x1e\x60\x21\x8d\xcb\x08\xe0\x44\xbe\x78\x55\ -\x01\x46\x53\x00\x09\x55\xc0\x22\xaa\x00\x7b\xdc\xc5\x9b\x07\x16\ -\x13\xf6\xe2\x9e\x35\x94\x11\x65\x04\x0f\x10\xd6\x77\x2e\xa6\x89\ -\x34\xa7\x00\x37\x15\x8c\xa6\x00\x7d\x17\x78\x86\x2a\xa0\x63\x0a\ -\xa8\x20\x80\x7d\x6d\xd7\x10\x20\xb4\x81\x09\xe0\x02\x8e\xec\x04\ -\xe2\xd6\x4a\x1d\x08\xb0\x17\x08\xe0\x45\xfe\x28\x0a\x10\xf0\x5f\ -\x90\x07\xa8\x39\xfe\xd2\xb0\x5d\x2a\x05\x08\x55\x40\x37\xcf\x54\ -\xab\x00\xa8\x56\x83\x50\x05\xec\xf1\x2a\x00\x15\xf2\x3f\x9a\x09\ -\x94\x50\x05\x2c\x3f\x01\x64\x89\x09\x10\xda\xb8\x04\xe8\x22\xff\ -\xed\x3c\x40\xc0\x62\x31\x55\xc0\x1c\xc6\x4e\x7a\x98\xf5\xa0\x00\ -\xbb\x5c\x01\x0a\xef\x8d\x56\x06\x86\xb9\x80\x85\x54\x01\x52\x31\ -\x17\x50\x98\x17\xb0\xc8\x8b\x04\x0f\xb0\xaf\x14\xc0\x8f\xfa\xb1\ -\xca\x40\x1e\x88\xd1\xa1\x0d\xef\x01\xba\xe6\xff\xa0\x00\x7b\x45\ -\x01\xca\x06\x88\x02\x01\xf6\x2f\x01\x10\x66\x03\xf7\x50\x0a\x68\ -\x4b\x00\x60\x39\x87\x82\x43\x15\xd0\xb5\x0a\x58\x16\x05\x08\x98\ -\x2c\xd4\x04\x8e\xd5\x76\x6c\x1c\x20\x54\x01\x5d\x3d\x80\xb7\xfc\ -\x67\xde\x1e\x3c\xc0\xde\xf2\x00\x73\x4b\xbe\x8c\xa6\x00\x01\x8c\ -\x45\x56\x01\xf3\xe6\x7e\x0a\x55\xc0\x3e\x50\x00\x54\x03\x2f\xa3\ -\x55\x01\x3d\xbf\x48\xa8\x02\x3a\x56\x01\xcb\x63\x02\x03\x28\x4b\ -\x99\x02\x90\x9e\x86\x29\xbe\x1a\x2c\x5b\x0a\x08\x55\xc0\x08\x26\ -\x10\x5e\xde\x37\x8f\xdb\x40\xa5\xc2\x21\xde\xdf\x6d\xf4\x14\x70\ -\xe2\x47\x1b\xad\xf6\x27\xef\xb4\xf2\xa6\x1b\xd2\x53\xd3\xfb\xe8\ -\xf7\xf9\xa6\xd6\x74\xd6\xb4\xaf\x9c\x4d\xc7\xd1\x7f\x3b\xa6\xfa\ -\x14\x40\xce\x52\x30\x1a\x75\x55\x70\x08\x96\xc5\x78\x80\xa5\x51\ -\x80\x80\xc5\x52\x13\x80\x9c\x7d\xdb\x88\x5a\xf0\x00\xc1\x03\xf4\ -\x63\xe4\xd8\x39\x76\xaf\xb5\xc6\xe3\x21\xe3\xe2\x11\x14\x20\xb4\ -\x7e\x0a\x10\x02\x7a\xc9\x14\xa5\x27\x2e\x41\x01\x82\x02\x74\x1f\ -\x07\xe8\x54\x83\x53\xfd\x3e\x7b\x7d\xd2\x89\x5a\xee\x40\x73\xd8\ -\x02\xb7\xf6\xa7\x96\xe7\x06\xf6\x53\x00\xa9\xfe\x0e\x21\x55\x0c\ -\x4b\x1a\x1a\xa9\x3e\x8f\x77\x84\xd5\xa1\x8d\xa2\x1e\x43\x88\x65\ -\xdc\x0b\x64\x0a\xe0\x2f\x9c\x10\x54\x54\x08\x1a\x45\x01\xa8\xe6\ -\xa5\x1a\x22\x50\xf0\x00\xf9\x9c\x4b\xc3\x0c\x03\x08\x39\x1e\xa1\ -\x70\x2b\xa8\x9d\x52\x80\xa0\x02\x0b\x8d\x7e\x97\x04\x5d\x53\x71\ -\x2f\x13\x48\x01\xfc\xc5\x9b\xc3\x9e\x00\xc4\x6d\xc0\x0e\x6d\x49\ -\x89\x60\x64\x9f\x68\xc4\x14\xd0\x95\x18\x8a\x42\xc5\xd0\xc7\x03\ -\xd4\xdd\x01\x70\x67\xab\x80\xa0\x00\xcb\x5b\x05\x38\x91\xdf\x16\ -\xa7\x78\x90\x7f\x22\xb4\x1d\xab\xfd\xbb\x56\x0d\xe3\x55\x01\xa1\ -\xed\xea\x36\x8c\x02\x50\xf7\x9c\xe7\xbf\xfd\xee\x6b\x6f\xee\xe9\ -\x03\x7e\xd3\x27\x3e\x52\x1b\xc2\x6d\x3c\x40\xd9\x20\x50\xdb\x60\ -\x1d\x64\x1c\x20\xb4\x7d\xac\x00\x63\xb5\x9f\xde\xfb\x2f\xcf\x84\ -\x52\xb6\x75\xbb\x52\x0a\x44\x84\x28\x8a\xa0\x94\x42\x1c\xc7\x88\ -\xa2\x28\xb7\xad\xea\xee\x7e\xf6\xf3\x51\x14\xe5\x7e\xaf\x52\xaa\ -\xf4\xef\xba\xff\xd3\x3c\xed\x03\x5f\xfe\xcd\xee\xf6\x00\x41\x00\ -\xf6\xb9\x02\x54\x91\x9d\x5a\xae\xdb\x27\x8f\x32\xfb\x8d\x40\xca\ -\x3b\x20\xe2\x1f\x1f\x6f\x32\x5f\xaa\xc2\xde\x4b\xfe\xb9\x41\xa0\ -\x16\x07\x35\xac\x08\x0a\x0a\xb0\x3b\xda\xe9\xd3\xa7\x3b\x7d\xee\ -\xa9\xa7\x9e\x0a\x28\x07\x05\x08\x6d\x3c\x0f\xd0\xe0\x0e\x55\xc3\ -\x02\x80\x79\xd3\x95\xd6\x7a\x8f\x78\x80\xa6\xba\xbf\x62\xdd\x8f\ -\x34\x8c\x07\xf8\x6b\x02\x82\x02\x84\xb6\xa3\x1e\x60\xec\xc9\xa2\ -\x24\x49\xf6\x25\x40\x54\x26\x95\x34\xdc\xb9\x9a\x41\x01\x82\x02\ -\xb4\x64\x62\x21\xf2\xa9\xe5\x38\x40\x37\xe5\xd8\x2b\x1e\xa0\xed\ -\x79\x01\x22\x54\xba\x13\x51\x71\xee\x97\x82\x02\x84\xb6\x34\xe3\ -\x00\x43\x5b\x02\xde\xa7\xf7\xaf\x27\xd4\x17\x01\x83\x78\x00\x0a\ -\x23\xfa\xbb\xbc\x55\x5c\x2a\x74\x8e\x73\xc4\x5a\x8c\x03\xd0\x5c\ -\x91\x3e\x54\xce\x6f\xeb\x35\x76\x4d\x44\xb7\x3d\xbd\xc7\x5b\xfa\ -\x2d\xee\xed\x42\x21\x85\xa5\xc1\x99\x37\x90\x16\x0a\xe0\x58\x8b\ -\x10\x4c\x4b\x1f\xe9\xce\xc0\x50\x76\x71\x68\xe4\xaf\x2b\xef\x44\ -\x7e\x13\xa6\x59\x0a\x70\x77\xcc\x7d\x28\x5c\x21\x72\x09\x70\x97\ -\x22\xc0\x52\x22\xf5\x0d\x58\x95\x91\x21\x2e\x7b\x53\x20\x20\x10\ -\xa4\xcb\x4d\x68\x42\x1b\x1e\x7c\x1b\xf2\xe2\x44\x3e\x04\x60\x4e\ -\x7b\xee\x52\xf1\xe9\xfb\x34\x27\x68\xb1\x05\xdf\x82\xee\x93\x20\ -\x9d\x7b\x96\xd9\x3c\x75\xb6\x1a\x66\xde\x71\x82\x86\xfd\x68\xde\ -\xe3\xb0\x37\x59\x58\x6b\x6d\x72\x51\x0f\x40\x18\x04\x4e\xd1\x11\ -\x06\xc0\x06\x68\x36\xcf\x05\x90\x76\xd5\x52\x9c\xe6\x01\x05\x31\ -\x3f\xf9\x8c\x63\x15\x80\xd2\x7f\x82\x68\xf6\x4f\x85\x13\x05\x46\ -\x8e\x78\xf7\xb9\x73\x73\x60\x71\x22\xdf\xed\x7e\x9a\x98\xb3\x78\ -\x8c\x9b\x8c\x02\x89\x98\x55\x2b\x4e\x2a\x70\x89\x30\xd2\x01\xf0\ -\x23\xbe\x6b\x15\x20\xe6\xce\x9a\x6d\xba\xfb\xf7\x07\x53\x1e\x69\ -\x79\x5f\x57\xf1\xae\xff\x9e\x81\xad\x9d\xad\xe9\x62\xdf\x33\xfb\ -\xb5\xb8\x85\x78\x4e\x01\xb8\xec\x0e\x35\xc2\x20\x28\x27\xf2\x31\ -\xb2\x27\x90\x41\x47\x3e\x96\x86\x00\xad\x6e\xec\xeb\x3a\x7d\xce\ -\x47\xbd\x66\x80\x13\xe7\x31\x03\xda\x90\xc0\xca\xbf\x73\xb9\x18\ -\x34\xdc\x4a\x2a\xa7\x00\x25\x44\x10\x12\x36\x36\x80\xf3\x93\xce\ -\xf3\x5e\xa0\x4e\x86\x51\x80\x48\x45\xdd\x0e\x3b\x4b\x75\x27\x67\ -\x4b\x26\x09\x92\x98\xd9\x36\x67\x6b\xbf\x9f\xbf\xe6\x8e\xda\x7f\ -\x2f\x6a\x3a\x11\x20\x33\x7c\x62\x36\x56\xde\x4d\xe4\x8b\x89\x7a\ -\x9d\x98\x6d\xfa\x3a\x65\x04\xb0\x3d\x8f\xb9\xc1\xb8\x40\x86\xd2\ -\x14\xa0\xa0\x24\xb5\x19\x0c\x62\x4e\xbf\x28\x6b\x80\x94\x93\xff\ -\x07\x3a\xeb\xb3\x62\x51\xa4\x0c\x74\xa5\x08\x0b\x36\x33\xcf\xba\ -\x66\x30\x31\x08\x94\x6d\xad\xe1\x25\x33\xd1\x22\x22\xd9\xd6\xa6\ -\xa0\x3e\xcb\xc2\x33\x13\xed\x0f\x69\xd7\x12\xc0\xcb\xf9\x19\xe8\ -\x49\x0a\xbc\x7d\x2e\x46\xfe\x45\xb2\xad\x73\xcf\x00\x9f\x11\xb9\ -\x0b\xd0\x17\x4c\xa0\x11\x42\x30\x58\x14\x14\x13\xeb\x54\x4b\x92\ -\x04\x50\x2a\x25\x41\xd9\x24\xf5\x40\x04\xb0\x32\xc6\xde\x65\xb8\ -\x63\xd5\x6d\xda\x82\x35\x43\x93\x4e\xc1\x76\x7f\x88\x67\x91\x61\ -\xd3\xad\x4a\xa3\xce\x3d\x2f\x40\xd4\x30\x04\xc8\xe4\x99\x75\x3d\ -\x01\x72\xf5\x3d\x17\x73\x7f\x0e\x7c\xf3\xba\xe6\x59\xaa\x28\xde\ -\x3d\x92\x09\x54\x29\x0d\xbe\x02\x64\x9f\xb6\x2a\x40\x5a\x03\x4a\ -\xf0\xd6\xef\xd6\x71\xd3\xc7\x6f\x36\x57\x85\x70\xa7\x22\x69\x58\ -\x05\x30\x07\xc8\x27\x40\x57\x4f\xa0\x93\x14\x7c\x2d\x3a\x8b\x74\ -\x0b\x7a\xc4\x11\x48\x66\x04\x60\x62\x08\xcb\x28\x27\x86\xd8\xef\ -\x05\x5d\x47\x80\x62\xd9\x97\xca\x3e\x67\x52\x9f\x45\x7d\xf6\x98\ -\x67\xf9\xdf\x90\xe0\x9f\xeb\xef\xb8\x64\x4a\x00\x68\xd3\x0b\x44\ -\x70\x07\x82\x04\xf9\xc9\x27\x01\xa0\x2f\x3c\x7f\xdf\xb1\x6b\x3f\ -\xf7\xf3\xbf\x08\x29\xbc\xf5\xea\x3a\x8e\xdd\x7e\xac\x94\x00\x73\ -\xaf\x19\x6c\xba\x9e\x80\x39\x40\x7a\x9a\x3f\x50\x8a\xba\xcd\x5c\ -\x27\x93\x04\x60\x40\x62\xc9\xbe\xba\x68\x81\xc4\x02\x89\x04\xa2\ -\x05\x1c\x31\x38\x62\x28\xa5\xc0\x8a\x6b\x09\x90\xae\xbf\x6b\x4f\ -\x00\xfb\xbd\x90\x4c\x6b\x89\x4d\xae\xfb\xcf\x19\x40\x3d\x33\x7c\ -\x4e\xee\xcf\x08\x60\x4a\xc1\x77\xd7\xdf\xc9\x7e\xe9\xe6\xd9\x27\ -\x1f\x21\xd0\x14\x80\xed\x89\x4f\x82\x32\x0f\x20\x94\x16\x7f\x9c\ -\x1e\x1e\x49\x2e\xbc\x70\xff\xad\x6b\x9f\x7d\xee\x8f\x24\x0a\x6f\ -\xbf\xfa\x26\x3e\x7c\xe2\xa6\xe2\xf5\x61\xe6\x3d\x18\x4d\x27\x92\ -\x70\x52\x4a\x00\x74\x5c\x0f\x92\x4c\x0d\x01\x58\x80\xc8\x78\x82\ -\xc8\xf8\x82\x88\x21\x91\x21\x80\x4a\x09\xa0\x22\x03\x3c\x15\x09\ -\x60\xc1\xef\xa6\x00\x49\x33\x01\xfc\xe1\x5d\x91\xf2\x34\x20\xec\ -\xc8\xfe\x2c\xff\xe7\xc0\x3f\xf3\xc4\xe3\x04\xda\x06\x60\xbb\x25\ -\x40\x52\x50\x80\xf7\xf0\x9e\x5c\x8b\x6b\xc9\x73\x8a\x56\x36\xa6\ -\x04\x9a\x6c\xbe\xf8\xe0\x1d\x6b\xf7\x9c\x3e\x07\x22\xfc\xf5\xf7\ -\x7f\xc2\x8d\xb7\xde\x98\x33\x83\x32\x2f\x0f\x9a\x08\xa0\xcb\x09\ -\x70\xef\xe7\xef\xcd\x4b\x31\x66\xe7\x06\x82\xd2\x2a\xc1\x9e\xdb\ -\xe7\xf6\x64\x3b\x49\xa3\xdd\x46\xbd\x4e\x09\xc0\x3a\x05\x9d\x63\ -\x46\xa4\x22\xe8\x48\xa7\x9f\x57\xe9\xb9\x81\xa4\x28\x23\xc2\x20\ -\x04\x30\xdf\x0b\xd3\x69\x43\x6a\x93\x22\x01\x1c\x23\x28\xb6\xde\ -\xcf\x81\xcf\x3e\xf8\x4f\x00\xb8\x02\x60\xcb\x6c\x7d\x12\xe8\x9c\ -\x02\x38\xc3\xc1\x42\x29\x84\x56\x22\x12\x02\x4d\x05\xb2\x4d\xa0\ -\xad\xcd\x5f\x7c\xf5\x53\x6b\x9f\x79\xf6\xd7\x00\xe1\x6f\x7f\xf8\ -\x33\x3e\xf4\xb1\x1b\xdb\x9b\xc1\x8e\x04\xc8\xac\x86\x9b\x8b\x41\ -\x99\x64\x43\x01\xac\x38\x8b\x76\xbf\xe7\xa2\xdf\x2a\x80\xe2\x2c\ -\x05\x44\x2a\x02\xa9\xd9\xef\x1b\x8d\x00\x49\x5b\x02\x48\x9e\x0c\ -\x9a\x0b\xe4\xf0\xc0\x7f\x12\xc0\x65\x02\x5d\x02\x70\x09\xc0\x65\ -\x43\x84\x6d\x00\x13\x8f\x00\x1c\x97\xcc\x16\x89\x21\x02\x9b\x1d\ -\x27\x00\x22\x00\x31\x81\xe2\xcd\x97\x1e\xba\x73\xed\xee\x53\x67\ -\x41\xc0\xdf\x5f\x7f\x0b\x37\xdc\x72\x43\x3e\x0d\xf4\x24\x80\x32\ -\x66\x49\x27\xba\x74\x24\x30\x97\x8b\x31\xcb\xd5\x50\x80\x52\x0a\ -\x5a\x74\x0a\xb8\x94\x59\x9e\xd9\x73\x61\x41\x14\x45\x00\x03\x4a\ -\x2b\x48\x64\xca\xbe\x28\xad\xff\x6d\x0a\x20\xb3\x90\xdf\x2a\x8e\ -\x4b\x80\x56\xeb\xef\x33\x13\x98\xcc\x91\x02\x4a\xa6\x7c\x21\xb3\ -\xc8\xe7\xd9\xd0\x70\x0d\xf8\x17\x0d\x01\x2e\x39\x4a\x30\xf1\x7c\ -\xc0\x4c\x01\xce\xe3\xbc\x5c\x87\xeb\xc8\xf5\x00\x04\x4a\x90\x4e\ -\x19\x6f\x1b\x12\x28\x02\xa9\xcd\x5f\x7e\xfd\xe4\xda\xa7\x7f\xf2\ -\x32\x00\xfc\xe3\x8d\xb7\xf1\xc1\x8f\xde\x30\x9c\x02\xd8\x2a\x20\ -\xe1\x7a\x05\x30\x57\x47\x10\x65\x66\x2e\x23\x33\x88\xc3\x48\x41\ -\x14\xf3\x9f\xbb\x04\xf0\xd5\xc1\xa4\x03\x15\x29\xb0\x36\x26\x50\ -\xf3\x2c\xf2\x09\x33\x0f\x80\xbe\x1e\xc0\x9a\xc0\x64\xbe\x71\x00\ -\xb7\x1a\x40\xf9\xcd\xa1\x4b\x64\xdf\x82\xff\xbe\x21\xc0\x45\x4f\ -\x01\xdc\x14\x20\x28\x9e\x9b\x0a\x18\x12\xd8\x1e\x09\x24\x02\x70\ -\x00\xc0\x41\x00\x87\x00\x1c\x16\xc8\xd5\x00\xae\x39\x72\xd7\x33\ -\x2f\xf7\x1e\x07\x08\xad\x92\x10\x54\xba\xbc\xcb\x0e\xf2\xcc\xde\ -\xdb\x3c\xf3\xc4\xe3\x00\xb6\x08\x74\xd9\x01\xfe\x7d\x4f\x01\xb6\ -\x4b\x2a\x81\xd2\x35\xc7\x2e\x09\x94\xe9\x31\x80\x15\x81\xac\x02\ -\x58\x05\x70\x95\xe9\x57\x1f\x39\xf9\xf4\x99\xf9\xe7\x37\x43\x9b\ -\x7b\x16\xb0\x84\x15\x3e\xf0\x10\xc1\xe6\xd9\x27\x1f\x01\xb0\x4d\ -\xa0\x2d\x07\x70\x57\xfe\xaf\x54\x44\x3f\x57\xc6\xed\x51\x1c\x25\ -\x33\x06\x6e\x49\x10\x99\x6e\x95\x60\x15\xc0\x61\xd3\xaf\x12\xc8\ -\x61\xf3\xda\x41\xb3\x8f\xdd\x3f\x5c\x39\xbe\xd3\xd8\x18\x35\x69\ -\x44\x56\xa5\x11\x68\x62\x00\xbe\x62\xe4\xde\x1a\xbf\xcb\x35\xe0\ -\x0b\x00\xd9\xc0\x86\x54\xfe\xa5\xa3\x38\x6a\x6a\x42\x71\x49\x10\ -\x03\x58\x31\x20\xaf\x9a\x94\x60\xfb\xaa\x79\x7d\xc5\xec\xa7\x02\ -\x01\x46\x4b\x12\xd6\xa4\x27\x06\xdc\x89\x53\xf6\x6d\x79\xa6\xaf\ -\x34\xf2\x37\xb0\x21\x8d\x99\xdb\x92\xc0\x82\x69\xfc\x40\x6c\xba\ -\xab\x06\x36\xf2\x0f\x38\xef\x2b\xf4\xbf\xa5\x4d\x68\x79\x65\x70\ -\xcb\x04\x76\x06\x76\x26\xa6\x6f\x3b\x51\x3f\x71\xde\x2f\x05\x7f\ -\x2e\x60\x7c\x12\x38\xf2\xbe\xe2\xf4\x03\x02\xb1\x8f\x7d\xf9\x0f\ -\xe0\x0f\x27\xff\x6e\x0a\xc8\x0d\xd6\x39\x4a\xe0\x0e\xfd\xea\x32\ -\xd9\x6f\x51\x94\x55\x92\xc0\x1a\x43\x57\x11\xdc\xc8\xb7\x3d\x44\ -\xff\x78\x75\x82\x3b\xca\x91\x78\x5d\x7b\x43\xbe\x85\xc8\x6f\x5d\ -\xbc\x19\x12\xb8\x5d\x79\x06\x31\xf2\xc0\x0f\xf2\x3f\x2e\x01\xfc\ -\xa1\x2e\x8d\xe2\xac\x5f\x65\xe4\x77\xaa\xde\x1d\x25\x20\x4f\x0d\ -\x7c\xe0\x83\xf4\xef\x90\x19\x2c\x21\x42\x2e\xea\xeb\xc0\xef\x14\ -\x9d\x1e\x09\xc8\x23\x43\x13\xf8\x81\x14\xbd\x87\x87\x2a\x49\x20\ -\x28\x59\xf9\x53\x07\x3e\x00\xfc\x1f\x37\xdb\x9e\xd9\x19\x4a\x71\ -\xcf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x01\x39\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ -\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\ -\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\xd9\x49\x44\x41\x54\x78\ -\x5e\xed\x9b\x31\x0a\xc3\x50\x14\xc3\xfe\xfd\x0f\xdd\x94\x52\x77\ -\x56\xc1\x04\x67\x90\x41\x9e\x02\xf1\xd3\xfe\xcf\x39\xe7\xba\x99\ -\xd7\x1f\xdf\x2c\xf9\xd4\x75\x23\xdf\x9f\x3c\x34\x0a\x48\xd1\x11\ -\x0d\x0a\x50\x00\x8c\x58\x46\x01\x29\x3a\xa2\x41\x01\x0a\x80\x11\ -\xcb\x28\x20\x45\x47\x34\x28\x40\x01\x30\x62\x19\x05\xa4\xe8\x88\ -\x06\x05\x28\x00\x46\x2c\xa3\x80\x14\x1d\xd1\xa0\x00\x05\xc0\x88\ -\x65\x14\x90\xa2\x23\x1a\x14\xa0\x00\x18\xb1\x8c\x02\x52\x74\x44\ -\x83\x02\x14\x00\x23\x96\x51\x40\x8a\x8e\x68\x50\x80\x02\x60\xc4\ -\x32\x0a\x48\xd1\x11\x0d\x0a\x50\x00\x8c\x58\x46\x01\x29\x3a\xa2\ -\x41\x01\x0a\x80\x11\xcb\x28\x20\x45\x47\x34\x28\x40\x01\x30\x62\ -\x19\x05\xa4\xe8\x88\x06\x05\x28\x00\x46\x2c\xa3\x80\x14\x1d\xd1\ -\xa0\x00\x05\xc0\x88\x65\x14\x90\xa2\x23\x1a\x14\xa0\x00\x18\xb1\ -\x8c\x02\x52\x74\x44\x83\x02\x14\x00\x23\x96\x51\xc0\xaf\xee\xe4\ -\xd1\xcf\xe7\xdf\xb9\xa5\x52\x55\x4f\x58\xa8\x78\x00\x00\x00\x00\ -\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x2b\x43\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\x48\x00\x00\x00\x48\ -\x00\x46\xc9\x6b\x3e\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ -\x80\x00\x00\x00\x80\x00\x30\xe1\x31\x9a\x00\x00\x00\x06\x62\x4b\ -\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x2a\x6c\ -\x49\x44\x41\x54\x78\xda\xed\x7d\x07\x7c\x24\x57\x99\xe7\xbf\xaa\ -\x5b\x52\xab\x25\xb5\x72\xce\xa3\xd1\xe4\x64\x7b\x12\x66\xc6\xf6\ -\x18\x1b\x63\x1b\x0c\xac\x81\x73\x20\x18\xf0\x01\xb7\xbb\x2c\x9c\ -\x59\xdf\x62\x0e\x6e\x59\x96\x70\x7b\x07\x4b\xd8\x65\xd7\xec\xc2\ -\x82\xb1\x0d\x06\x6c\xd6\x01\xe3\x88\xc7\x01\x33\xe3\x09\x9e\x64\ -\x4f\x92\x34\xca\x39\xb7\xd4\x6a\xb5\x3a\xd4\x7e\xdf\xab\xaa\x56\ -\x55\x75\x55\x4b\x13\x3c\x92\x66\xf4\xe6\xf7\x4d\x57\x57\x57\xb7\ -\xaa\xde\xf7\x7f\x5f\x7e\xef\x49\x58\x6c\x4e\x2d\x8d\xa8\x86\xa8\ -\x42\xa3\x12\x22\x8f\xc3\xb5\x23\x1a\xb5\x10\x75\x68\xaf\xd1\x85\ -\xf0\x90\xd2\x22\x9f\x45\xcb\x20\xda\x48\xb4\x4d\x7b\x5d\xa1\xd1\ -\x99\xb6\x08\xd1\x71\x8d\x76\x13\xfd\x91\x68\xdf\x42\x01\xc5\xc5\ -\xd2\xea\x88\xfe\x86\x68\x27\x51\x90\x48\x79\x8b\x69\x8c\xe8\x29\ -\xa2\x4f\x13\x95\x2f\x76\xff\xdc\xb4\x7c\xa2\x2f\x10\x1d\x38\x0f\ -\x0c\x9f\x89\x5e\x21\xfa\xa4\x26\x7d\x16\xdb\x5b\xdc\x2e\x23\xfa\ -\xe5\x79\x1a\xe9\x67\x22\x19\xfe\x95\x68\xf9\xa2\x0d\x70\xee\xdb\ -\x95\x44\x5f\x25\xba\xea\x8c\xc4\x45\x7e\x01\xaa\xaa\xab\x51\x56\ -\x5e\x81\xbc\xbc\x3c\xf8\x7c\x3e\xea\x31\x09\x69\x69\x69\x98\x0a\ -\x4d\xf1\xa1\x68\xc3\xc3\x43\x18\x1e\x1a\x46\x67\x47\x3b\x5a\x5b\ -\x5b\xe8\xfd\xf0\x99\xde\xef\xa3\xda\xfd\x1e\x5a\x04\xc0\xd9\xb5\ -\xf5\x44\xdf\x3b\x1d\xc6\xe7\xe5\xe7\x63\xe3\xc6\xcd\x58\xbb\x7e\ -\x03\xd6\x11\xd5\x2f\x5b\x8e\x8c\x8c\x0c\x62\xb2\x64\x21\x4c\x1f\ -\xc3\xf2\x5e\xfb\x7c\xcc\xef\xc7\x91\xc3\x87\x71\xec\xe8\x9b\xd8\ -\xbb\x77\x0f\x76\xed\xfa\x93\x38\x77\x1a\xed\x21\xa2\x2f\x13\x35\ -\x2d\x02\xe0\xf4\x5a\x36\xd1\xb7\x89\xee\x20\x72\xcf\x74\xf1\x52\ -\x62\xf2\xd5\xd7\xbc\x13\x3b\x76\xbc\x43\x1c\xc7\x99\x09\x1b\x66\ -\x9f\x26\x08\xac\x9f\x1f\x78\x7d\x3f\xfe\xf0\xfc\x73\x78\xec\xb1\ -\x47\xd1\xda\xd2\x32\x9b\x67\x99\xd4\x9e\xe5\xeb\x44\xa1\x45\x00\ -\xcc\xdc\x6e\x26\xba\x97\xa8\x20\x29\x42\xb2\x73\x70\xfd\xbb\x6f\ -\xc2\x4d\xef\xbf\x19\xb5\xb5\x4b\x1c\x99\x9b\xe2\x76\x23\x25\x85\ -\xc8\xed\x82\x4b\x26\x72\xc9\x1a\x43\x01\x99\x8f\xd9\xa7\x8b\x29\ -\xe2\x55\x51\x14\x88\x7f\xa4\xd1\x63\x7c\x1c\x53\xdf\x3b\x81\xe4\ -\xf0\xa1\x83\xf8\xe5\x2f\x1e\xc4\x23\x0f\xff\x06\x13\x13\x13\x33\ -\x3d\x57\x8b\x06\xe8\x97\x16\x01\xe0\x3c\xea\x99\xf1\xb7\x24\xbb\ -\xa8\x9c\xf4\xf8\x6d\x1f\xfd\x04\xae\xbb\xe1\x46\xa4\x79\x3c\x71\ -\xc6\xc8\xcc\x18\x59\x86\x27\x2d\x15\xe9\x9e\x34\xa4\xa5\xa6\x20\ -\x95\x18\x2f\x49\x67\xdf\x35\xb1\x58\x8c\x48\x51\x01\xa2\x20\x41\ -\x52\x8c\xf9\x47\xf1\xeb\x5f\x3d\x84\x7f\xfa\xc1\xf7\xd1\xdf\xdf\ -\x3f\xd3\xcf\xb1\x4a\xfb\xe2\xb9\x96\x06\x0b\x1d\x00\x6c\xdd\x3f\ -\xac\x45\xec\x6c\x1b\x1b\x70\x1f\xb9\xe3\x93\xb8\xf6\xfa\x77\xc3\ -\xed\x76\x1b\x46\xb9\x8c\x0c\x62\x78\x66\x46\x3a\x32\xd2\x09\x10\ -\xf2\x5b\xdc\x15\xba\x74\x60\x24\x00\x26\x89\xc3\x06\xe5\xcf\xef\ -\xfb\x99\x06\x84\xbe\x64\xbf\x72\x90\xbe\xf3\x01\xfa\x8d\xa6\x45\ -\x00\x00\x1f\xd3\x46\xbe\x6d\x78\x36\x23\x23\x13\xb7\x7f\xec\x13\ -\xb8\xf9\xbf\xdd\x46\x8c\x4f\x31\x88\x76\x17\x7c\x99\x19\xc8\xce\ -\xca\x80\xdb\xe5\x9a\x93\x1b\x57\x8c\x9d\x6f\x50\x3b\x13\x81\x80\ -\x00\xc1\xbf\xfe\xcb\x0f\x11\x0a\x39\x0e\xf4\x11\x4d\xda\x3d\x73\ -\x31\x03\xe0\x5b\x9a\x38\xb4\x6d\xdb\xae\xd8\x81\xff\xf1\x57\x77\ -\xa1\xb0\xa8\x38\x3e\xd2\x98\xf1\x79\x39\x3e\xc1\xf8\x73\x21\xde\ -\xcf\x65\x93\x65\xb3\x1d\xd2\xd8\xd0\x80\xbb\x3e\xff\x39\xec\xd9\ -\xf3\x9a\xd3\x57\x38\xd4\xfc\x79\xa2\x1f\x9e\xed\xdf\x76\x2d\x30\ -\xc6\xf3\xfd\xfe\x82\xe8\x33\x4e\xa3\xfe\x73\x77\xdf\x83\x8f\x7d\ -\xf2\x33\xf0\xd2\x31\xe3\xdb\x45\xfa\xbd\x20\xd7\x87\xd2\xa2\x7c\ -\xa1\xe7\xe7\x63\x33\xaa\x05\x35\xfe\x90\x8f\xdb\x6e\xff\x30\x3d\ -\x8f\x17\xbb\x77\xed\x42\x34\x9a\x90\x42\x90\x89\x6e\xd0\xa4\xdf\ -\x1f\x2e\x16\x09\xe0\xd2\xfc\xe3\x0f\x38\xb9\x74\x5f\xfa\xdb\x6f\ -\xa0\xb8\xb4\x5c\x3c\x14\x77\x26\x8f\xf6\xe2\x82\x5c\x52\x01\x67\ -\x87\xf3\xe0\xe4\x14\x02\x13\x41\x84\xa6\xc2\x98\x98\x9c\x44\x34\ -\x12\x15\x62\x9c\x3d\x05\x06\x95\xc7\x93\x4a\xb6\x84\x17\x1e\x32\ -\x20\xcf\x56\x20\xbb\xdd\x32\x49\x04\x39\x6e\xa4\xbe\xf9\xe6\x11\ -\x7c\xe2\xe3\x77\xa0\xa5\xb9\x39\x99\x71\xf8\x3f\x2f\x74\x00\x24\ -\x65\xfe\x8e\x6b\xdf\x85\xbf\xf8\xfc\xdd\x22\x42\xc7\x1d\xc7\xc6\ -\x5e\x79\x71\x81\x30\xf0\x4e\x9f\xd9\x21\xf4\xf6\x0d\xa2\x67\x70\ -\x18\x03\x83\x23\x18\xf6\x8f\x93\x3e\x9e\xd2\x2c\x79\x8d\x74\xd7\ -\x4f\x99\xb6\xf0\xf9\x95\xc1\xc0\x6a\xa6\x20\x3f\x07\x15\xf4\xf7\ -\x2b\x4a\x8b\xe8\x9e\x4e\x5f\xea\xb0\xd4\x62\x70\xb1\x61\xca\xff\ -\xfc\xe4\x2d\x30\x08\x5e\x79\xf9\xa5\x73\x0e\x82\x85\x02\x80\xdf\ -\x38\x31\xff\xb6\x8f\x7e\x12\x1f\xba\xfd\xa3\x71\xfd\x99\xe5\xf5\ -\xa2\xbc\xb4\xf0\xb4\x0c\xbc\x40\x30\x88\x96\xf6\x1e\xb4\x75\xf5\ -\x62\x70\x78\x34\x6e\xad\xeb\xcc\x9d\x0a\x87\x31\x49\x46\x19\x8b\ -\xe2\x49\x06\x43\xdc\x8c\x53\xa5\x00\x8f\xd8\xd4\x94\x14\x72\x29\ -\xe5\x78\x3c\x80\xff\xe3\xfb\x29\x2e\xcc\x43\x7d\x4d\x05\x96\x2d\ -\xa9\x12\xde\xc6\xac\x19\xc3\x21\x67\x92\x28\x6a\xcc\x41\x22\x77\ -\x32\x8a\x2f\xfe\xaf\xbb\x71\x1f\x79\x0b\x0e\xed\xff\x12\xdd\x73\ -\x21\x02\xe0\xff\x13\xfd\x75\xa2\xe1\xe4\xc2\x9d\x7f\xfe\x57\x78\ -\xd7\x8d\xef\x8d\xbb\x53\x85\xf9\xb9\x24\xf2\xf3\x30\x5b\x1b\xaf\ -\xb3\x67\x00\xa7\x5a\x3b\xd1\xd5\x37\x10\x67\x78\x84\x98\x3c\x34\ -\xea\xc7\x88\x7f\x0c\xfe\xf1\x71\x02\xc7\xa4\x9d\x0e\xb6\x1f\xb9\ -\x04\x3a\xaf\xc7\x23\x28\x23\x3d\x1d\x5e\x22\xbe\x37\x45\x03\x43\ -\x5d\x55\x19\xd6\xad\xaa\x47\x25\x01\x74\xb6\x2d\x95\x40\x20\xa4\ -\x81\x16\x4c\xfa\xfb\xaf\xfd\x9d\xf0\x14\x1c\xda\x5f\x9e\xae\x61\ -\x38\xdf\x01\xc0\xe9\xd2\x1f\x27\x32\x5f\xc6\xe7\xff\xe6\x2b\xb8\ -\x7c\xdb\x95\xa2\x63\xf9\x7d\x79\x49\x21\x72\xb3\xb3\x66\xc9\xf8\ -\x7e\x1c\x6f\x6a\x85\x7f\x2c\x20\x98\x13\x26\x9d\xde\x33\x30\x80\ -\xee\xfe\x01\x8c\x12\xe3\x63\xca\xf4\x08\x9f\x42\x0a\x26\xa4\x0c\ -\x04\xa5\x74\x84\x91\x86\xa8\x64\x8e\x30\xbb\x95\x30\x52\x95\x10\ -\x59\x63\x41\x78\x95\x00\x5d\x1d\x99\xbe\x4f\xba\x37\xb6\x0d\x72\ -\xb2\x7c\xf4\x9a\x21\x2c\x37\xfe\x65\x96\x0a\x6f\xdf\xb8\x16\x15\ -\x25\x45\xb3\x03\x41\x8a\x5b\xa8\x12\x1d\x04\x3f\xba\xf7\x5e\x7c\ -\xe5\xcb\x5f\x72\xf2\x0e\xde\x7d\x3a\x2e\xe2\x7c\x06\xc0\x16\xa8\ -\x95\x34\x09\x31\xfd\x4f\x7f\xf6\x2e\xbc\xe3\xba\x1b\x45\x87\x70\ -\x88\xb6\xaa\xbc\x58\xf8\xf6\x33\xb5\x91\xd1\x31\xbc\x71\xb2\x59\ -\x8c\x6e\x66\xfc\x38\x19\x76\xcd\xed\x9d\xe8\xec\xed\x43\x34\x16\ -\x53\x6d\x00\xa4\x63\x50\x2e\xc0\xb0\x94\x8f\x51\x39\x07\x53\x92\ -\xe7\xb4\x6e\x3a\x3d\x16\x40\xb6\x32\x82\x5c\x65\x08\xf9\xb1\x3e\ -\xa4\x12\x6c\x74\xbd\x9e\x97\x93\x8d\xbc\xec\x9c\xb8\x7a\x62\x1b\ -\xe1\xca\x2d\x1b\x84\xdd\x30\x53\xe3\xb0\x74\xba\x66\xe3\xcc\x20\ -\x09\x46\xe8\x9a\x8d\xb3\x0d\x16\xcd\x57\x00\x70\xe1\xc6\x41\xa8\ -\xb5\x78\xa6\x76\xcb\x47\x3e\x89\xf7\x7d\xf0\x16\xd1\x11\x1c\xa3\ -\xaf\xad\x2a\x45\x86\x37\xb9\xb1\x17\x8d\xc6\xd0\xd0\xdc\x8e\xd6\ -\xce\x1e\xc1\xf8\x20\x59\xf2\xc7\x9a\x9a\x05\xe3\x79\xb0\x87\x09\ -\x63\x3d\x72\x19\x51\x39\xc6\xe4\xec\x73\xfa\x20\x39\xb1\x41\x94\ -\xc6\x3a\x51\x14\xeb\x21\x4b\x36\x26\xee\x3b\xcf\xe7\x43\x61\x5e\ -\x9e\x50\x19\x0c\x8c\x4b\xd7\x2e\xc7\xa6\x75\x2b\x67\x8c\x46\xb2\ -\x2a\x10\x51\x4b\x0d\x04\x77\x7f\xe1\x2e\x27\x9b\x80\xfb\x6e\x2b\ -\x66\x11\x36\x9e\xaf\x00\x78\x42\x13\x65\xa6\x76\xd5\x35\xd7\xe1\ -\x53\x7f\xf9\x05\x4d\xec\x4b\xa8\xad\x2c\x43\x56\xa6\x37\xe9\x0f\ -\x8d\x07\x26\x70\xe4\xc4\x29\x4c\x90\x2e\x8f\x90\xa8\x6f\x68\x69\ -\xc3\x89\xe6\x56\x11\xa7\x0f\xd1\xf8\x6c\x75\x2d\x41\x97\x5c\x89\ -\x98\x94\x68\x34\x96\xe7\x7a\xb0\xb1\x26\x07\x2b\x4a\x33\x51\x57\ -\xe4\x45\x49\xb6\x07\x99\x1e\xb3\x40\xea\x19\x9d\x44\xef\x68\x08\ -\x8d\x7d\x01\x1c\x6c\xf5\xe3\x60\xfb\x28\x02\xa1\x44\x9b\x81\x55\ -\x45\x45\xb4\x15\x95\xb1\x16\xa1\x26\x58\x6d\x15\x93\xbf\x9f\x97\ -\xad\x02\xae\x30\x2f\x07\xef\xba\x6a\x0b\x3d\x4f\x72\x49\xc6\x86\ -\xa1\x97\x41\xa0\x19\x86\x1f\xfa\xe0\x07\x9c\xbc\x83\x59\x79\x06\ -\xf3\x11\x00\x1c\xe2\x4d\x80\x75\xdd\xb2\x15\xf8\x3f\xdf\xfc\x0e\ -\x89\x4f\x35\x9e\x5f\x5d\x5e\x32\xa3\xce\xef\x1d\x1c\x12\x23\x9f\ -\x25\xc0\x30\x19\x76\xbb\x0f\xbd\x21\x00\xc1\x23\xbe\xc5\x55\x87\ -\x4e\xb9\xca\xc4\x78\x17\x81\x6a\xdb\xb2\x3c\xbc\xff\xd2\x12\x5c\ -\xb7\xa6\x10\x35\x05\xde\xd3\xbe\xf9\x48\x54\xc1\xbe\x96\x11\xfc\ -\xfe\x70\x1f\x1e\xde\xdb\x8d\xe6\x81\x89\x04\x20\x54\x46\x9b\x51\ -\x45\x40\x60\x89\x90\x4e\x06\x63\x45\x71\xb1\xf0\x22\x98\xae\xdd\ -\xbe\x09\x55\x65\xc5\x49\xff\x06\xc7\x1d\x74\x10\xb0\x8b\x78\xed\ -\x35\x57\x3b\xc5\x09\xae\xc2\x0c\x59\xc4\xf9\x06\x00\x7e\x72\xae\ -\xa4\xcd\x31\x9e\xcc\x24\x23\xea\xeb\xdf\xfe\x67\xe4\x17\x14\x0a\ -\xe6\x97\x14\xe5\xa3\xa4\x30\x3f\xe9\x0f\xb1\x4b\xd7\xd9\xdd\x27\ -\x0c\xba\x93\x34\xe2\x0f\x1e\x3b\x29\xc4\x7f\x9f\x54\x8c\x93\xee\ -\x55\xa4\xdb\xd3\xe2\xd7\x16\x64\xa5\xe2\xbf\x5f\x51\x85\x5b\xb6\ -\x94\xa3\xd8\x97\x76\x4e\x1f\xe8\x40\xdb\x28\x7e\xf2\x4a\x1b\x1e\ -\x3f\xd0\x8b\xa9\x48\x6c\xda\x56\x20\x83\x71\x45\xe4\x0d\xb2\x15\ -\x86\x85\xb1\x58\x46\x20\xc8\xce\xcc\x14\xcf\xb7\x6d\xd3\x3a\xac\ -\xaa\xaf\x4d\xfa\xbb\x1c\xe3\xf0\x68\x86\x21\x07\x8b\xae\xbf\xee\ -\x9d\x76\xf9\x83\x16\xa8\xd5\xcd\xa1\x85\x12\x0a\x66\x8b\x7f\x63\ -\x82\xd1\xf7\xb9\xbb\x51\x57\xbf\x5c\x24\x4e\x58\x44\x56\xce\x30\ -\x42\xda\x89\xf9\xdd\xfd\x83\x82\xe1\xaf\xd1\xa8\x3f\xd6\xd4\x42\ -\x42\xd7\x85\xa3\xae\x75\x68\x76\xd7\xc7\x2d\xf9\xfc\xcc\x54\xdc\ -\x75\xdd\x12\xfc\xbf\x0f\xad\x12\xa2\xde\xed\x92\x10\x22\x26\x9d\ -\x4b\xca\xcd\x48\xc1\x3b\x56\x16\xe0\x03\x9b\xca\x30\x39\x15\xc3\ -\xb1\xee\x31\x61\x77\x44\xa4\x54\xf4\xb8\x2a\xc4\x7d\xb1\x9d\x30\ -\x46\x2e\x27\xdf\x2f\xbb\x8f\x6d\x9d\xbd\xc2\xf2\x2f\x2a\xc8\x75\ -\x7c\xc6\x70\x38\x4c\x36\x01\xc7\x09\x24\x14\x15\x15\x8b\x20\xd8\ -\x4b\x2f\xbe\x98\x60\x82\x68\xaf\x3b\x17\x82\x04\x78\xbb\x66\xf5\ -\x9b\x4f\x5e\x79\x35\xee\xfc\x8b\xbb\xc4\xc8\x60\x11\xb9\xa2\xae\ -\x3a\x69\x68\xb7\x83\x5c\xbc\xbe\x81\x21\x11\xbc\x79\x71\xf7\x7e\ -\x72\xef\x06\x11\x40\x06\x8e\xa4\x5c\x42\xee\x5c\xa6\x8a\x7a\x7a\ -\xea\x5b\xb7\x56\xe0\xce\x2b\xab\xe0\x4d\x75\xbd\x75\xbd\xa2\x24\ -\x9e\x6a\xee\x9f\xc0\xb7\x9e\x6c\xc0\xc1\xb6\xe9\x12\x31\x5f\x6c\ -\x04\x6b\x23\xaf\x93\x93\x39\x25\xa4\x40\x79\xb1\x9a\xc4\xda\x7a\ -\xc9\x6a\xac\x5d\x51\x97\x34\x62\x98\x4b\x1e\x84\xac\x45\x0c\xdf\ -\x73\xe3\xf5\x76\x09\x24\xae\x2c\x5a\x03\x87\xf2\xb2\xf9\x04\x80\ -\xbd\xd6\xd1\x9f\x99\x99\x85\x6f\x7c\xf7\x5e\x64\xf9\xb2\x85\xd5\ -\xbb\xb4\xa6\x22\xa9\x91\xd4\xd3\x37\x88\xfe\xa1\x61\x4c\x4d\x45\ -\xf0\xec\xab\xbb\xd1\x3f\x38\x4c\x3e\x51\x0e\x0e\xbb\x2f\x15\x23\ -\x4e\xb8\x5e\x64\xd8\x7d\xe9\x3d\xf5\x58\x5a\x9c\xe9\xfc\xf4\xd2\ -\x99\x76\x93\x32\x23\x00\xf4\xf6\xe8\xbe\x6e\xfc\x07\xa9\x86\xc9\ -\xb0\xaa\x16\x3c\x4a\x10\xeb\xc3\xfb\x08\xaa\x01\xf8\x32\x32\x50\ -\x51\x52\x22\x40\x70\xf9\x65\x6b\xb1\xb2\xbe\xc6\xd9\xed\x24\x35\ -\xe0\xd3\x32\x9c\x9c\x45\x7c\xc7\x8e\x2b\xed\x54\x01\x87\xd1\x6f\ -\x9d\xcf\x2a\xe0\xbd\x44\x77\x25\xb8\x7c\x1f\xfb\x14\xea\x97\xaf\ -\x52\xc5\x75\x6e\x36\x59\xca\xb9\x8e\xc5\xd5\xec\xdb\x33\xc3\xb9\ -\x1c\xeb\xd9\x3f\xee\x46\x1f\x19\x80\xcc\xfc\x43\xee\x8d\x24\xf2\ -\xd5\x24\x0d\x1b\x78\xf7\xbc\xbb\x1e\x39\x24\xfa\xa7\xc8\x30\x64\ -\x9d\xac\x92\x42\xef\x0d\x14\xb1\x92\x76\x5d\xd4\x81\x8c\xbf\x63\ -\xa4\x84\xdf\x9c\xbe\x76\x49\x51\x06\x36\xd6\xe6\x08\x49\xc0\x5e\ -\x43\x84\xee\xb1\x5f\x2e\x41\x7e\xac\x1f\x4a\x38\x20\x24\x98\x8f\ -\xa4\x01\x4b\xb4\x82\xbc\x6c\x01\x0a\xbb\xe7\xe6\x20\x16\xbb\x87\ -\x1c\x0f\xe1\x2c\x62\x88\x5c\xdc\xdd\xbb\x77\x59\xbb\x92\x25\x00\ -\x57\x1c\xf7\xce\x57\x09\xc0\x13\x35\x36\x18\x4f\x54\x54\xd5\xe0\ -\x7f\x7f\xe3\x1f\x45\xd0\x84\x83\x20\x6c\x14\x39\xc5\xf7\x27\xa7\ -\xa6\x84\xde\xe7\xf2\xab\x17\x76\xef\x45\x53\x6b\x87\x81\xf9\x6e\ -\xf1\x94\x37\x5d\x52\x8a\x3f\xbb\xac\xc4\xf2\xc4\x92\xf9\xbd\x34\ -\x5b\x19\x29\x39\x0f\x71\x65\x16\xaa\xc0\x10\x69\x1c\x0b\x46\xf0\ -\xfd\xe7\x9b\xd1\xd8\x33\x2e\xae\xe3\xa8\xe2\x25\xe1\x3d\x42\x12\ -\x14\xe4\xe6\x0a\x57\x91\xed\x81\x9b\xae\xdd\x8e\xac\x0c\xaf\x43\ -\x08\x5a\x16\x6e\x24\xc7\x11\xb8\xa8\x64\xeb\xe6\x4d\x76\x95\x45\ -\x0c\x80\xf7\xcf\x47\x09\x70\xa3\xdd\xe8\xbf\xed\xe3\x9f\x41\x59\ -\x45\xa5\x30\xfc\x38\xcc\xcb\xc1\x1e\xbb\xc1\xcf\x11\x3c\x16\xfd\ -\x6c\xed\x1f\x3e\xde\x40\x3e\x7f\x23\x02\x52\x06\x0e\xa4\x6c\x45\ -\x94\x5c\x46\x2e\xfa\x7b\xff\x65\x65\xb8\x66\x75\xe1\xf4\x48\x8c\ -\x8f\xcc\x58\xe2\x28\x8d\xda\x8c\x5c\x72\xeb\x13\xce\xdb\x51\x24\ -\xe6\xf0\x7d\x87\x6b\x22\x6a\xa1\xe0\x86\x2a\x1f\x1a\xfb\x83\x18\ -\x09\x86\x05\x60\x07\xe5\x42\x14\x45\xbb\x31\x35\x19\x20\xbf\x3f\ -\x55\x8c\xf0\x5e\xb2\x6b\xea\x6a\x2a\x04\xf8\xac\x7d\xc0\xc0\x87\ -\xb0\x91\xdc\x48\xa5\xeb\x39\x1b\xba\x73\xe7\x0b\xd6\x2e\x5d\xa1\ -\xa9\x82\xc1\xf9\x06\x80\x1f\x10\x2d\xb5\x8e\xfe\x0f\x7e\xf8\x13\ -\xf1\xc0\x47\x55\x79\x89\xe3\x97\x87\x47\xc7\x10\x22\x09\xd0\x4b\ -\xc6\xde\xf3\x7f\xda\x23\x7c\xfc\x03\x69\x5b\x30\xe5\xf2\x70\xd2\ -\x00\x37\xac\x2f\xc6\xe5\x4b\xf3\x30\x15\xd3\x3a\x3d\x66\x61\xa8\ -\xf1\xbc\x7e\xcc\x9f\xc7\xac\xe7\x66\x41\x09\xdf\x89\x25\xfe\x86\ -\xe9\x58\x05\x03\x5b\x01\x6b\xca\x7d\x38\x35\x38\x81\x51\x92\x08\ -\xac\x0e\x46\xe5\x3c\x94\x44\x3b\x11\xa0\x11\x9d\x9d\x95\x25\xec\ -\x1a\x6e\x25\x85\x79\x0e\x5e\x41\x24\x1e\x25\x5c\xb3\x66\x2d\x1e\ -\x7c\xe0\x7e\xbb\x8a\x63\x76\x7f\x9e\x9c\x4f\x00\x58\xae\x45\xac\ -\x12\x74\x7f\x49\x99\x1a\x05\xe6\x84\x89\xd7\x21\x8d\xca\x05\x1a\ -\x9c\xb1\x0b\x47\x22\x78\xec\xb9\x97\xc4\xfb\x37\x53\x37\xc0\xef\ -\xce\x13\xa6\xfe\xe6\x25\xb9\x78\x7b\x7d\x5e\x22\xa3\xad\x0c\x37\ -\x82\xc2\x8e\x61\xa7\x43\x4e\x60\x88\xc5\x12\xef\xc1\x20\x81\x78\ -\x10\xaf\x2c\xcd\xc2\xf1\xbe\x00\x82\xa4\xd7\x43\x72\x3a\xa2\xc4\ -\x9e\xbc\xe8\x00\x82\x64\xd4\xe5\xfa\x7c\x64\xd7\x0c\xa3\xba\xbc\ -\x58\x48\x85\x04\x2d\xa3\x95\x1d\xa7\x09\x09\xe0\x12\x52\xc3\x41\ -\x0a\xf0\x80\x0b\xcf\x17\x00\x70\x9a\x77\x9b\xf1\x44\x5e\x7e\x21\ -\x3e\xf4\x91\x3b\x45\xa9\x36\x3f\x4c\x65\x79\x71\x5c\x8d\x9a\x88\ -\x1e\x78\xd4\x3f\x2e\x44\xff\xee\x83\x47\xd0\xd2\xd9\x8d\x2e\x77\ -\x39\xda\xd2\x96\x0a\xb1\x5f\x91\xef\xc5\x35\xab\x0a\x11\x56\x8c\ -\xa3\x19\x89\x0c\xd3\x3f\x57\x0c\xd7\x28\x0e\xcc\x55\x92\x30\xdd\ -\xf1\xbc\x95\xf1\x36\x40\xd0\x24\x01\x07\x90\xab\xf3\xd2\x71\xac\ -\x37\x80\x28\xfd\x2d\xbf\x2b\x17\x39\xd1\x41\xb8\xc3\x63\xc2\xfe\ -\xe1\x64\xd0\xc8\xd8\x38\x6a\xab\xca\x6c\xd5\x21\x4b\x81\x4c\x21\ -\x05\x64\xd4\xd7\xd7\xe3\x3f\x7e\xf2\x63\x11\x2f\x30\x26\x16\x89\ -\x4e\x69\x36\xd7\xbc\x00\x00\x87\x7c\x4d\xa9\xb0\x6b\x6e\x7c\x1f\ -\x96\x6a\x96\x3f\xd7\xf1\x89\x22\x0a\xb5\xe4\xc6\x44\x3c\xda\x43\ -\xf4\x70\x1c\xe2\x7d\xfa\xe5\xdd\x98\x22\xb1\x79\xd8\xbb\x19\x31\ -\xd9\x85\xb4\x34\x17\x6e\x58\x5b\x24\xc4\x21\x7b\x59\x61\x4e\xf9\ -\x52\x67\x33\x18\xd4\x57\x65\xfa\x9c\xf1\x73\xeb\x35\x31\x1b\xb2\ -\x9e\x8f\x3a\x5c\x17\xb5\x39\x8e\x3a\x5c\x63\x78\xe5\x70\xb4\x2f\ -\xdd\x8d\xe6\xa1\xa0\xd0\xf7\xa3\x04\x82\xb2\x70\x1b\x82\x93\x41\ -\x91\x44\x9a\x08\x86\x50\x94\x9f\x63\xdb\x2f\x3c\x28\xb8\x4e\x82\ -\x6b\x08\x78\xee\x43\x57\x67\x27\x0e\x1f\x4a\x98\x66\xc8\x3a\xe4\ -\xa7\x46\x9d\x30\x97\x81\x1f\x53\xb6\x8f\x13\x24\x9b\x2f\xbf\x52\ -\x7b\x10\x09\x39\xd9\x3e\x31\x12\x6c\x2d\xff\x50\x58\x20\xfd\x8f\ -\xfb\x0f\x89\xeb\x9b\x3c\x2b\x11\x71\xa5\x8a\xd1\xbf\xa9\x26\x17\ -\x0a\x31\x3f\xc0\xa1\x57\xc9\x60\xed\xeb\x95\x22\x92\xd1\xba\x37\ -\x78\x02\x92\x8d\x67\x90\xe0\x0d\x48\xf6\x26\xbe\xa3\xf5\xaf\x4c\ -\x7f\xa6\x18\x3e\x50\x0c\xef\x15\xc5\x74\x6d\x71\xb6\x47\x48\xb0\ -\x0e\x02\x41\x50\xca\x24\xa9\xb6\x04\xb5\xa1\x46\xf4\x0f\x0d\x91\ -\x0d\x50\x88\x83\x6f\x36\xe0\x9a\x2b\x36\xdb\xf6\x8b\x3f\x30\x11\ -\x2f\x85\xbb\xf5\xb6\xdb\x71\xff\xcf\xef\xb3\x5e\xc2\x12\x97\xd7\ -\x27\xe8\x9c\x6b\x00\xbc\x2f\x21\xe1\x43\x23\x3f\xcb\x97\x23\x18\ -\x9a\xed\xcb\x12\x80\xb0\xe3\x3f\x57\xe8\x30\x2f\x07\x86\x86\x85\ -\xcb\x37\x21\x7b\xd1\xe3\xa9\x14\xcc\xe7\x58\x7e\x81\x2f\x15\x13\ -\x3a\xf3\x05\xd3\x15\x0b\x00\x8c\x4c\x57\x2c\x20\x50\xec\x5d\x44\ -\x58\x3f\x9f\xc9\xf5\xb3\x01\x86\x62\x05\x83\x0e\x04\x25\x01\x0c\ -\x6b\xca\xb3\xd0\x33\x16\x42\x84\x9e\xa3\xdd\xb3\x14\x15\x53\x2d\ -\x18\xf2\xfb\x51\x90\x97\x87\xc1\x11\x3f\x7a\xfb\x87\x50\x54\x90\ -\x68\x10\x4e\x91\x1a\xe0\xb2\x35\xce\x13\xf0\x24\xd7\xea\x9a\x1a\ -\xbb\xb9\x88\x9c\x69\xfd\xd1\x5c\xab\x00\x36\x46\x4c\xf3\xf8\xae\ -\xb9\xe1\xbd\xa8\xa8\xae\x15\x9d\x5f\x5e\x52\x20\x44\x99\x5d\xf4\ -\x23\x12\x56\xab\x72\x5f\x20\xab\x7f\x60\x78\x04\x0d\xde\xd5\x18\ -\x4f\xcd\x15\x76\xc3\x86\xaa\x6c\x21\x19\x22\x5c\xde\xc5\x31\x77\ -\xf1\x6a\x3c\xb6\x9e\x33\xbe\x37\x9c\x83\xf5\x1a\xb5\xdc\xc6\xf4\ -\x5e\xa7\x18\x12\x7f\x2b\x66\xfc\x8c\xdf\x2b\x89\xef\xe3\xc7\xd0\ -\xde\x4f\x1f\xab\x60\x95\x30\x34\x11\x16\x6a\x4d\x56\xa2\xc8\x0d\ -\x0f\xc6\xeb\x1e\x23\x64\xf8\x56\x94\x15\xd9\x47\xc5\xa8\x79\x3d\ -\x6a\x52\x6b\x70\x60\x00\xaf\xbd\xb6\xdb\xce\x1b\x78\x70\x2e\x25\ -\x40\x35\x6c\xd6\xe0\x59\xb5\xf6\x52\x31\xfa\x39\xb0\x91\x41\x62\ -\x4c\xb1\x19\xfe\xfa\x29\xce\xef\x1f\x3f\xd5\x8a\x49\xd9\x83\x5e\ -\x6d\xf4\x17\xd2\xe8\x67\xa9\x11\x8c\xc6\xb4\x51\xae\x4c\x8f\x76\ -\xc9\x22\xfa\x25\xbb\xd1\x6f\x90\x16\xb3\x09\x0e\x25\x13\xfb\xb0\ -\x88\xf8\x84\x51\x6f\x91\x0a\x16\x35\xc0\xbe\x61\x71\x76\x1a\x5a\ -\x46\x82\x64\xc8\xc5\xd0\x91\x5e\x87\xea\x60\x23\xd9\x3c\xa3\x64\ -\x03\xe4\xa3\xab\x6f\x10\x41\xb2\x07\x38\x35\x6c\x6d\x5c\xc7\x98\ -\x9f\x93\x2d\x7e\xeb\x1d\xd7\x5c\x8b\x1f\x7c\xff\x7b\x76\x6a\x80\ -\x07\x7f\x74\xae\x00\xb0\xcd\x7a\xa2\xb4\xa2\x0a\x99\xbe\x6c\xc1\ -\x74\xb5\xc8\x43\xb2\x15\xff\x62\xd6\x2d\x31\xfb\xcd\x86\x26\x71\ -\x6d\x57\x7a\x35\x14\x02\x0c\x33\x6f\x70\x32\x82\xc3\xbd\xe3\xa2\ -\x68\x23\xd3\xe3\x42\x46\x5a\x0a\xf8\x23\x33\x00\x0c\x4c\x97\x2c\ -\x0c\xd5\xcf\x29\x06\x15\xa0\xdf\x84\x34\x8b\x18\xbf\xe2\x04\x02\ -\xc5\x86\xe1\x16\x30\x58\x81\xa0\x19\x76\xc5\x3e\x0f\x3a\x86\x83\ -\x22\x97\xd1\x97\x56\x8e\xd2\x50\x3b\xc6\x03\x01\x11\x26\xe6\x94\ -\x77\x7d\x6d\xa5\x8d\x8a\x8c\x89\x52\x76\xae\x23\xbc\xe4\xd2\xcb\ -\x48\xad\xfa\xac\xeb\x13\x64\x6a\x79\x97\xd7\xe6\x0a\x00\x5b\x13\ -\xf4\xff\xb2\x95\xda\x88\x57\x0b\x29\x63\xb1\x98\x63\xd8\x53\x21\ -\x00\xbc\x71\x52\x4d\x6e\xf5\x78\xab\xc5\xe8\x67\x62\x37\x6a\x24\ -\x14\xc1\x08\xa9\x08\x8c\xf3\xb9\x20\xd2\x53\x19\x08\x6e\x91\xf5\ -\xe3\xe3\x34\xb7\x6c\x60\xb6\x26\x25\x14\xed\x58\x51\xcc\x76\x83\ -\x62\x33\xda\xa5\x99\xc2\xbc\x4e\x3a\xdf\x00\x08\xeb\x68\x4f\x02\ -\x00\x9f\x37\x05\x92\x7f\x12\x0a\x75\x47\x37\x3d\x2b\x03\x60\x64\ -\xcc\x2f\x82\x43\x5d\x3d\xfd\xa8\xab\xb6\x5f\x6f\x8a\xa5\x40\x2a\ -\x0d\x00\xb2\x86\xf1\xb6\xb7\x5d\x8e\x67\x9f\x79\xda\x6e\x10\xce\ -\x1f\x00\x54\xd7\x2d\x8b\x8b\x7c\x76\x71\x38\xa9\x93\x20\x79\x65\ -\xb5\x02\x78\x88\x8d\xa0\x81\x21\x8c\xa6\xe4\x62\x32\x25\x43\x65\ -\x8a\x98\xe7\x2d\xa9\x93\xa6\x24\x49\x7b\x0f\x52\x07\x0a\x89\x4a\ -\xd2\xde\x04\x0c\x3e\xef\x72\x49\x48\xe7\x02\xcb\x14\x19\x9e\x14\ -\x17\x91\xac\x4d\xc9\x32\x72\x58\x99\x7d\xca\x44\xb1\xbc\x51\x1c\ -\xbc\x00\xc5\x01\x04\x33\xbd\x8a\xfe\x70\x63\x9c\xa4\xdb\x88\xa7\ -\x10\x21\x39\x4d\x54\x35\x71\x5f\x0d\xfb\xc7\x30\x35\x15\x16\x41\ -\x1f\x6b\xe3\x09\x2e\x39\x8a\x9a\xf1\xdc\xb4\x69\xb3\x1d\x00\xb6\ -\xce\xa5\x0d\xb0\xc6\x7a\xa2\xa2\xb2\x56\x3c\x94\x88\x62\xa5\xa4\ -\x98\x4a\xb3\xf5\x96\xc2\xc6\x10\x31\xab\xa9\xad\x43\x35\x70\xd2\ -\x8a\xb5\xd1\x6f\x64\xba\xe1\xbd\xe9\x58\x7d\x25\xff\x01\xe3\x91\ -\x28\xc6\xd9\x4e\xe0\xda\x3d\xfa\x4e\x1a\x49\x95\x34\x02\x02\x4b\ -\x87\x54\x02\x08\x17\x86\x24\xc8\x7c\xdd\x45\x54\x1c\x50\xa0\xd8\ -\xa9\x02\x0b\xc3\x67\xcb\xfc\x98\x62\x3a\xe7\x49\x25\x00\x4c\xa9\ -\x75\x86\x43\xf4\xcc\xa5\xc1\x36\xb2\x81\x82\xc8\x24\x63\xb0\x7f\ -\x68\xc4\xb6\x3a\x8a\xa3\x87\xfa\x80\x5a\xb9\x6a\xb5\xdd\x4d\xaf\ -\x98\x2b\x00\x70\x85\x83\x29\xb6\xeb\x49\x4f\x47\x4e\x7e\x81\x78\ -\x5e\x5e\xa4\x41\x71\xf0\xfd\xdd\x34\xfa\x19\x00\xad\x1d\x5d\x2a\ -\x00\xbc\x25\xc9\x01\x20\x1b\xfc\x7f\xe3\x71\x9c\xd4\xf7\xd4\x55\ -\xa2\x7a\x07\x9a\xeb\xc8\x31\x88\x54\x06\x85\x5b\x22\xd0\x49\xe2\ -\xef\x4a\xc9\x04\x81\x92\xe4\xa4\x62\xb1\x0d\x66\x3b\xf2\x0d\xc7\ -\x6e\x02\x27\xe7\x35\xf8\xcd\x30\x49\x01\x06\x00\xcf\x66\xe2\xb9\ -\x06\x3c\x93\xa9\xd8\xc6\x1d\x8c\x72\x84\x91\xa4\x03\x7b\x52\x6b\ -\xd7\xad\x73\x02\x80\x6b\x2e\x00\xb0\xd4\x7a\xa2\xa0\xa8\x34\xce\ -\x74\x0e\xff\x3a\x02\x80\xa4\x03\xf3\xad\xb3\xb7\x9f\x0b\xac\x11\ -\x48\xcb\x99\x06\x40\x9c\xf9\x66\x10\xd4\xe5\xa5\x63\x5b\xa5\xcf\ -\xcc\x7c\xa3\x0d\x60\x17\x00\xb2\x49\x19\xab\x40\x50\x69\xd6\x45\ -\x20\xc9\xbc\x00\x13\x38\xcc\xcc\x7f\xe8\xcd\xfe\x04\xc0\xf0\xa4\ -\xd1\x08\x49\xad\xd1\x74\xf2\x9c\x87\xd5\xe9\x6c\x7c\xfb\xfe\xf1\ -\x80\x63\x7f\x85\xc2\x11\x21\x4d\xd9\x08\xcc\xcd\xcd\xb5\xae\x5e\ -\xc6\xbc\xaf\x99\x0b\x00\x24\xd4\xfa\xe7\x17\x16\xc7\x1f\x82\x73\ -\xff\x31\x3b\xfd\xcf\x93\x3e\x5d\x2e\x21\xda\xd8\x06\x08\xa4\x64\ -\x23\xa6\xa5\x7b\x13\x46\xbd\x61\xb4\x6f\xab\xf2\xe1\x67\x37\xd6\ -\x63\x21\xb5\x07\x18\x00\x16\x8f\x42\x76\x4b\xc2\xa0\x0b\xa6\x66\ -\x21\x2c\xa7\x88\x7e\xe0\x32\xb0\x40\x60\xd2\xb6\xbf\x44\x50\x88\ -\x24\x80\x22\x12\x69\x12\xaa\xab\x6b\xec\x96\xaf\xab\x90\xe7\x03\ -\x00\x7c\x39\xb9\xf1\xb9\x79\x6c\xd0\x98\x67\xde\x2a\xf1\xd0\x30\ -\x1b\x81\x3c\x6f\x4f\xc4\x01\x52\x7d\xd3\xcc\xd6\xc9\x65\x7d\xaf\ -\x8b\xce\x85\xd5\xc2\x56\x52\x60\x7a\xae\x89\x94\x2c\x11\x0d\x8d\ -\x91\x6b\xc0\x99\x50\x4e\x02\xd9\xf5\x99\xf1\x7c\x79\x45\xa5\xdd\ -\x9f\xaa\x99\x8b\xde\x49\x58\xc5\x8b\x17\x73\xd0\xa7\x58\xbb\xd9\ -\xcd\xb3\x79\x18\x76\xff\x58\xff\x73\xe9\x97\x30\x72\x52\x32\x13\ -\x01\x60\x62\xbe\x6b\x5a\x12\x2c\xb0\x16\xa1\x9b\x8e\x48\x5a\xe4\ -\x91\x89\x27\x98\x1a\xa4\x9b\xf0\x7c\xa0\xce\x5a\x66\xc9\xa8\x1b\ -\x7c\x09\x00\x88\x4c\x03\x20\x37\xcf\xb6\xc2\x38\x67\x2e\x54\x40\ -\xa6\xf5\x44\xba\x37\x33\x1e\x03\xe0\x07\x62\x64\x5b\x9b\xac\x4d\ -\xff\xe6\x00\x87\xd0\x6f\x29\x1e\x33\xc3\x75\x57\x50\x96\x13\x8d\ -\xbe\x05\xd6\xa2\xd6\xc0\x14\x0c\x12\x80\x19\xef\x56\x93\x3d\x1c\ -\x2b\x11\x8b\x4c\x85\xa7\xa8\xcf\x12\xe7\x33\xa8\x00\x50\x55\x48\ -\x6e\x6e\xde\xbc\x01\x80\x6d\x74\xcf\x68\xc8\xd8\x19\x35\x5c\x02\ -\xcd\x31\x80\x61\x4d\x02\x44\x49\x0f\x26\x02\x40\x36\xbc\x37\x18\ -\x87\x0b\x12\x00\xd6\x68\xa5\x12\x7f\x16\x91\xf5\xd4\x18\x2c\x52\ -\xde\x9c\x1b\x71\x08\x9b\x8b\xb5\x0c\x14\xe7\x3e\x98\x0b\x00\xd4\ -\x24\xa8\x00\x96\x00\xd0\xad\x5d\x97\xed\xc3\x88\xf9\x80\xda\xb2\ -\x29\xa6\x11\x61\x02\x81\xcd\xf1\x02\x54\x01\x1c\xe9\x14\xb1\x00\ -\x01\x6a\x1e\xea\x06\x40\x5b\xbc\x14\xee\x17\x5e\xd3\xc0\xae\xcf\ -\x58\x45\x28\x5a\x74\xd3\xe5\x50\x50\x3b\x2f\x24\x80\xa4\xa7\x7d\ -\x09\xe5\x4e\x16\xad\xfe\xb0\x92\x51\x3c\xc6\x99\x2f\x27\x7a\x01\ -\x46\x10\x2c\xb4\x66\xbc\xe7\x78\x77\xc8\x6a\x86\xc8\x06\x00\xdc\ -\x79\x76\xfd\xa6\xc4\xa6\x25\xab\xa3\x67\x3d\x07\x8f\xd7\x61\x3d\ -\xc1\x2b\x66\xea\x36\x00\x5b\xae\x76\x33\x7f\x84\x21\x2c\x4b\xe6\ -\x9c\x7e\x9c\xf9\x36\xb1\x00\x59\x32\xe7\xfd\x17\x22\x00\xa4\x69\ -\x9e\x9b\x40\xa0\xf5\x81\x2e\x0f\xf5\x55\x48\x6c\xf3\x26\x9a\x0d\ -\x10\x89\x46\x6c\xed\xcd\xb9\x00\x40\xc4\x4e\x59\xe9\x0f\x10\x8d\ -\x45\xe1\x52\x64\x5b\x83\x86\xf3\xfc\xb9\xbe\x2c\xad\x2b\x62\x66\ -\x9d\x6f\x07\x00\x1d\x20\x0b\x15\x00\xb6\xa3\x56\xa6\xfe\x51\xbb\ -\x50\x4c\x0e\xd5\xd6\x35\xb6\xb5\x01\xe2\xb6\x95\xe4\x2c\x02\xe6\ -\xe0\xf1\x26\x13\x4e\x4c\x4e\xc4\x1f\x80\xf5\x99\xdb\x46\x30\xb1\ -\xc5\xcb\x12\x40\xaf\x10\x4e\x8b\x4e\x1a\x18\x0f\x7b\x3b\x40\x5e\ -\xc0\x12\xc0\x34\xfa\x15\x93\xdc\x4f\x89\x4c\x6a\x23\xdc\x15\x5f\ -\x2b\x21\xe6\x60\x37\xe9\xfd\xea\xb7\x5f\xae\x7e\x7c\x2e\x00\xd0\ -\x63\x3d\x31\x21\x66\xc6\xaa\x0f\xca\x16\x6d\x5a\x6a\xe2\xc3\x84\ -\x42\xaa\xcf\xcb\x33\x60\x04\xfa\xa7\xc6\xcc\x8c\x4f\x66\x0c\x2e\ -\x44\x00\x28\x76\x4a\x50\x15\xfc\xe9\x53\xe3\x9a\x04\x98\x5e\x16\ -\xcf\xde\x73\x9a\x36\xa8\x87\x86\x86\xec\xfe\xd2\xc0\xbc\x00\x80\ -\x7f\x74\x38\x2e\xaa\x78\x92\x87\xdd\x3c\x00\x9e\xfe\xc5\x48\xd7\ -\x13\x1f\x19\x93\x7e\x43\xc6\x4f\x72\x96\x00\x32\x2e\x10\x00\x4c\ -\x03\xc1\x1b\xf2\x8b\xd1\x2f\x96\xa6\xd3\x52\xe4\x76\x46\x20\x57\ -\x18\xeb\x00\xe8\xea\xec\xb0\xb5\xc7\xe6\x85\x11\x38\x3c\xd0\x1f\ -\xbf\xd1\x49\x6d\x51\xc6\x04\x1b\x80\x8c\x43\xae\x74\xe1\x29\x62\ -\x39\x64\x07\x44\xc6\x47\xd5\x1a\x0e\x59\x32\x67\xf8\x2c\xd2\xa0\ -\x27\x14\xc5\xce\xde\x80\xa5\xec\xcb\xe2\x4e\x59\x53\x7d\xb3\x9e\ -\x35\x8c\x24\xba\x1a\xb3\xa8\x15\x80\x7d\xf1\x28\x87\xb4\xed\xeb\ -\x61\x90\x1a\x0a\x20\x35\x12\x42\x46\x66\x86\x78\x94\x64\xc9\x33\ -\x4e\x04\xe9\x9f\xb5\xb5\xb6\xce\x1b\x00\x34\x5a\x4f\x0c\xf6\xf7\ -\xc4\xe3\x00\x4e\x00\x10\x0a\x6b\x22\x48\xcc\xcf\x44\x4d\x45\x29\ -\x46\x8e\x9e\x24\x29\x30\x8c\xf1\xac\x82\xa4\x21\xe1\x67\x7a\x02\ -\x78\xa6\x6f\x62\x86\x94\xb1\x31\x55\x0c\x4b\x1d\xa1\x64\x0f\x12\ -\x38\x30\x77\xc6\x54\xaf\xa2\x32\x57\xdd\x5d\x62\x3a\xf7\xcf\xe7\ -\xf4\xf7\x56\xd7\x55\x99\x8e\x0a\x66\x07\x06\xc4\x29\x9f\xb6\x9a\ -\x48\xba\x27\x09\x00\x84\x6a\x20\x15\x3b\x11\xc0\xe0\xe0\x80\xdd\ -\x25\x2d\xf2\x1c\x01\xc0\xe4\x09\x04\xe9\x06\x03\x6c\x07\xd0\x3f\ -\x9e\xf8\xc0\x06\x8d\x1d\xf9\xc7\x27\xc4\x6a\x9c\x2b\x96\x54\x8b\ -\xef\xe5\x8d\x76\x26\xcf\x07\x58\x3d\x04\x53\xd2\x48\x36\x27\x8f\ -\x5c\x76\x24\x27\x5e\x6f\x47\xc6\xdf\x72\x25\x21\xdb\x9c\x85\x83\ -\x0d\xe3\x20\xd5\x72\xfd\x6a\x2d\x04\x4b\x41\x15\x00\x69\xb6\x7d\ -\xc5\xff\x38\xb3\xca\xe0\x68\x38\x79\xc2\x8e\x0f\xbc\x14\x4f\x68\ -\x2e\x00\xc0\xa5\x2d\x6f\x58\x4f\xb6\x37\x37\x6a\x09\x8c\xb0\x98\ -\xce\x64\x97\xdc\xe0\xa9\x60\xfc\xd0\x6b\x97\xab\x25\x05\xf9\x23\ -\x9d\xb6\x62\xdf\x39\x41\x34\x9b\xf3\xb2\xf9\x75\x26\x06\xcb\x06\ -\xb0\xb8\x0c\xbf\x61\x04\x90\xd3\x6f\x9d\x01\xe5\x0f\x77\x8a\x88\ -\x68\x5e\xb6\x4f\xbc\xb2\x2b\x68\xd7\x57\xea\xfc\x41\x15\x08\xbc\ -\x45\x8d\x03\x00\xe6\xcc\x44\xda\x67\x3d\xd1\xd5\xde\x1c\xdf\x5e\ -\x85\x45\xbd\x2d\x00\xc6\xc6\x45\x1a\xb4\xac\xb8\x10\x45\xf9\xb9\ -\xc8\x1e\xed\x85\x9b\xdd\x41\xc9\x1a\x19\x4c\x32\xfa\x9d\xa4\x80\ -\x4b\x76\x96\x02\x09\xa3\x5d\x9e\x4e\x35\x9b\x80\x20\x27\x8e\xf6\ -\xd3\x1d\xfd\x4e\xc4\xf3\x01\xc6\x07\x90\x1e\x1a\x17\x93\x66\xb8\ -\x36\x22\x2d\x2d\x45\x9b\x3c\x93\xd8\x57\x2a\x30\xd4\xbc\xca\x11\ -\x7b\x00\xec\x9b\x4b\x00\x24\xcc\x54\x68\x3f\x75\x32\x3e\xd7\x7d\ -\x3c\x10\x14\xaf\x76\xd4\x3f\x3c\x22\x2c\xdf\xb7\x5d\xba\x16\xbc\ -\x34\x73\x69\x6f\x83\xa5\x08\x04\x86\xd8\x00\x66\x27\x11\xec\xea\ -\x08\x5c\x86\x91\xeb\xd6\xce\x71\x45\xb1\xdb\xc0\x54\x3e\x76\x6b\ -\x60\x70\x5b\x01\x63\xa3\x62\x92\x32\xdd\xc9\xa5\x9d\x7e\xa6\x92\ -\xde\x93\xa2\xaf\x4a\x0b\x0b\x84\x24\xe4\x35\x89\x9d\xfa\x49\x14\ -\xd6\x6a\x8b\x5d\xef\xdb\xb7\xc7\x8e\x07\x7f\x9c\x4b\x00\x24\x2c\ -\x06\xd5\xd3\xd5\x8e\xc9\x89\x09\x01\x02\xb5\xcc\x29\x66\x4b\x3d\ -\xbd\x83\x02\x00\x57\x6c\xba\x44\x7c\xaf\xac\xeb\xb8\xbd\x2b\x28\ -\x9d\xc1\xa8\x73\x59\x44\xbd\xdb\xc0\x7c\xd7\x0c\xfa\x3d\x41\x52\ -\xd8\xfd\xa6\x3c\xc3\x7d\x58\xc0\x6b\x90\x6a\x32\x3d\x7b\x49\x4f\ -\xa3\xc8\x8a\x96\x14\x14\xc4\xf5\xbf\x5d\x1f\xf1\xa3\x7b\xb4\xda\ -\xca\x46\xd2\xff\x43\x83\x83\x76\xc1\xb8\xdd\x73\x09\x00\xb6\x4a\ -\x5a\xcc\x89\x8b\x18\x9a\x4e\x1c\x89\x2f\xde\xcc\x75\xed\x36\x93\ -\x82\xc5\xbc\x38\x2e\x79\xe6\x25\xd4\xd6\xaf\xac\x47\xc6\xc4\x28\ -\x0a\xfa\x5b\x9c\x63\x02\x92\x74\x7a\x52\xc0\x65\x61\x7a\xc2\x75\ -\xb2\x99\x64\x3b\x15\x60\x90\x08\x67\xa2\xeb\xa5\xc4\x60\x56\x59\ -\xe7\x51\xa4\x44\xa6\x50\x5e\x5c\x24\xb6\xbf\x61\x11\xaf\xcf\x9d\ -\xb4\x92\x58\x3a\x57\x53\x05\x3b\x77\xfe\xc1\x49\x02\x87\xe6\x12\ -\x00\xdc\x12\x0a\xd5\x4f\xbe\x71\xd0\x60\xf0\x05\x1c\xbd\x81\xd6\ -\xce\x5e\x31\x02\x6e\xdc\xf1\x76\xf1\xbd\xda\xa6\x7d\xe6\x5c\x80\ -\x0d\x10\xf4\x90\xa9\x20\x97\xe1\x98\xeb\x0c\xb8\xda\x88\xcf\xb9\ -\x25\xf5\x58\xbf\x46\x9c\xd3\x3e\xe3\xf3\xf1\x63\xeb\xe7\xb2\xf6\ -\x5d\x2b\xc9\xd3\xbf\xa9\xff\xae\xcd\xdf\x97\x74\x55\x23\xd9\x25\ -\xb3\xd4\xd1\x5f\x7d\xea\x80\x78\x5b\x5b\x59\x2e\x9e\x85\xa3\x80\ -\x4e\xfd\xc3\x6b\x09\xc5\x34\xfd\xff\xc2\xf3\xcf\x26\xed\xfb\xb9\ -\x4c\x07\xf3\x76\x6f\xa6\xbd\x7f\x5a\x1a\x8f\x61\x32\x38\x01\x4f\ -\xba\x57\x18\x7c\x85\x79\xd9\xb6\x1b\x3c\xb5\x75\xf4\x60\x59\x6d\ -\xa5\x58\x38\x6a\x45\x5d\x0d\x8e\x37\xb5\xa0\xb0\xe7\x14\xfa\xcb\ -\x97\x3a\x26\x85\x52\x89\x51\x29\x2e\x4b\xf2\xc8\x65\x53\x3b\x20\ -\x3b\xc5\x04\x24\xfb\x60\x90\xdd\x94\x2f\xa3\xdf\x1f\xb3\xd4\xfa\ -\xf3\x6b\xd4\x10\x0b\xe0\xb5\x01\x78\x2a\x97\x62\x89\x5a\x2a\xfa\ -\xf0\x54\x50\xde\x76\x04\x69\x53\x41\x94\x97\x14\x21\xd3\x9b\x1e\ -\xdf\x04\x4b\xb1\x99\x3d\xc5\x61\xe1\x74\xd6\xff\xf4\xaf\xb9\xb9\ -\x59\xa8\x00\x87\xbe\xc7\x5c\x4b\x80\x17\x39\x16\x6d\xf2\x0f\x23\ -\x11\x1c\x3f\xbc\x3f\xbe\x71\xc3\x28\xdb\x02\xb0\x59\x09\x83\x3e\ -\x6b\x6a\xed\x14\x31\x81\x5b\xde\x73\xad\xf8\xee\xd2\xa3\x7f\x12\ -\x23\x25\xce\x30\x19\xa6\x39\x01\x5e\x02\x80\x37\xc5\x42\x6e\x79\ -\xfa\xbc\xdb\x42\xe2\x1a\x97\xf6\x99\x2b\xf9\x75\x6e\xed\x9a\x64\ -\xbf\x6d\x3d\x97\x6a\x3e\x9f\x90\xc2\xd6\xee\x3f\x35\x14\x44\xcd\ -\xc9\x7d\x42\x52\xac\xac\xab\xd5\x76\x12\x49\x75\xdc\x8a\x3c\x3b\ -\x2b\x53\x75\xff\xa8\x0f\x1f\xff\xcf\x47\xec\xfa\x9d\x5d\x82\xf8\ -\xa2\x91\x73\x39\x3d\x9c\xef\xb7\x8a\xc8\xb4\xd2\x81\x7f\x64\x08\ -\xeb\x36\x6d\xd7\x52\xc0\x51\xb1\xf1\x93\x9d\x9b\xc3\x8b\x43\xd5\ -\x54\x94\xa0\x38\x3f\x4f\xac\x9d\xd3\xd5\xda\x06\x29\x16\xc5\x70\ -\x49\xb5\xad\xee\xce\xe4\x39\x82\xa9\xbc\x76\x8e\x2a\x09\x52\xe8\ -\xbc\xfa\x4a\x24\x6b\xef\xe3\x9f\xc9\x62\x1e\x40\xfc\xbc\xfe\xea\ -\x92\xb4\xf3\xb3\x20\xc9\x72\x2c\x59\xce\x1b\x3e\xe7\x29\xe2\x13\ -\x51\xc3\x0c\x12\x43\x60\x6f\xe5\xbe\xe7\xe0\x1b\x1d\xc0\x8a\x25\ -\x35\x28\x2e\xc8\x17\x40\xd0\x03\x3c\x56\x12\x46\x71\x71\x81\xb8\ -\x66\x2a\x14\xc2\x37\xbe\xfa\x15\x84\x42\x09\xc9\x57\xde\x5a\xe6\ -\xb5\xf9\x00\x00\x6e\xbc\x98\xdd\xa7\x4c\x51\xc1\xc0\x38\x4a\xab\ -\x6a\x91\x9d\x5b\x20\x7c\x7e\xde\x89\x8b\x1f\x38\x21\x3d\xcc\xeb\ -\xfe\x87\xa6\x50\x59\x5a\x84\xe5\x4b\xaa\xf0\xe2\x6b\xaf\xc3\xd3\ -\xd7\x81\xe1\xe2\x4a\x84\x32\xb3\x13\x0c\x3b\x0f\xef\x1b\x98\xe6\ -\x12\x53\xbf\x52\xdd\xea\xcc\x1f\x33\xd1\x39\xd9\x70\x6c\x3a\xa7\ -\xbd\x17\x33\x86\x24\xf5\x55\x27\x49\x3f\x86\x7a\x2c\x69\xaf\xfc\ -\x3e\x7e\x0d\xa6\xaf\x33\xbe\x6a\x34\x1e\xa1\x67\xd1\xc5\xb9\x21\ -\xa4\x5c\xd4\x7e\x02\xb5\xc7\xf6\x8a\xc9\xb2\x1b\xd7\xac\xd2\x32\ -\x7f\x2e\xc7\x80\x34\x47\x07\xf5\xe5\xf3\x9f\xfa\xdd\xe3\xa4\xff\ -\x9f\xb1\xb3\xfe\xef\xe0\x6e\x9e\x2f\x00\xe8\x26\x7a\x17\x2c\x73\ -\x05\xc6\x46\x86\xb1\x6a\xc3\x66\x21\x03\xb9\xae\x8d\xa5\x80\x5d\ -\xe3\x2d\x5f\x78\xad\xdc\x82\xdc\x1c\x94\x95\x14\x62\xd7\xfe\xc3\ -\xc8\xeb\x6d\x43\x6f\xcd\x72\x44\x79\xb7\x2e\x43\xa0\x27\x4a\x9d\ -\x57\xe9\x75\x1b\x98\x2c\x5b\x98\x6a\x78\x6f\x07\x04\x23\x18\x64\ -\x2b\xc1\xe6\x9c\x81\xf1\x3a\x20\x24\x18\x98\x0f\x71\x8e\x25\x41\ -\xdb\x64\x44\x98\x05\xd3\x00\x50\xe0\xf5\x0f\x63\xdd\x2b\x8f\xc3\ -\x45\x40\xbf\x62\xe3\x25\x42\xaf\x0b\xa3\xd1\x21\xbd\xcd\xe0\x28\ -\xd7\x46\x3f\x0f\x9c\xbf\xff\xca\x17\x31\x36\xe6\xb7\xd3\xfd\xf7\ -\x9b\x32\x86\xf3\x20\xf9\xc9\xc9\x6d\xd3\x8e\x60\x63\xa3\xc3\xa8\ -\xa8\xae\x83\x2f\x27\x4f\x64\x00\xc5\x02\x88\x29\xf6\xf6\x6a\xff\ -\xe0\x08\x6a\x2a\xcb\x84\x24\xe0\x08\x62\x4b\xe3\x29\xf8\x06\x7a\ -\xd0\x53\xb7\xda\xe4\x77\x47\x89\xb2\x48\xdf\xe6\xb1\x1a\xd0\x45\ -\xbc\xae\x06\xe2\xa2\x5e\xb2\xa8\x00\x69\x5a\x15\xd8\x1e\xb3\x28\ -\x87\x41\xcc\x43\x23\xa3\xa8\x87\x45\xf4\xc3\xa4\x16\x06\xc3\x51\ -\xf4\x4d\xc5\x4c\x99\x41\xf7\x64\x10\x1b\x5e\x78\x04\x9e\x60\x00\ -\x97\xac\x5a\x2e\x5c\x3f\xeb\xba\x15\xd6\xc6\x7b\x27\xf0\x5c\x41\ -\xbe\xea\xb9\xa7\x9e\xc0\x53\x4f\x3e\x61\x77\xd9\x1d\xda\xa0\x9b\ -\x57\x00\xe0\x98\xf4\x6d\x50\x57\xaf\x32\xd9\x02\x2b\x37\xa8\xe6\ -\x01\xaf\x08\xa6\x8b\xb6\x04\x83\x90\x0c\x47\xce\x11\xd4\x54\x96\ -\x62\xed\xb2\x3a\xb1\x37\x80\xbf\xbd\x0d\x19\xa3\x83\xe8\xaf\x59\ -\x66\x02\x81\x9f\xbe\x50\xeb\x4d\x81\x37\x2e\xd2\x8d\x52\x40\xb6\ -\x8c\x70\xd9\xf2\x6a\x50\x03\xc9\x46\x3a\x19\xa6\xd3\xaa\x00\x89\ -\xc7\xf2\xf4\x7b\x66\xfb\xc1\xf1\xf0\x74\x35\x0f\xbd\xb8\xc2\x53\ -\x58\xff\x87\x47\xe1\x1b\xee\x43\x6d\x45\x19\xd6\xad\x58\x16\xaf\ -\x88\x52\xb4\x0d\xeb\xac\xc4\xb5\x01\xa5\x45\x6a\x70\x28\x1a\x8d\ -\xe0\x6b\x5f\xb9\xc7\x6e\xf4\xb3\xd1\xfd\xad\x84\x9a\x81\x79\x00\ -\x00\x11\xfc\x83\x65\xd1\x28\x96\x02\x79\x45\xa5\xc8\x2b\x2c\x8e\ -\x17\x3b\xf0\xca\xd8\x76\x3d\x30\x16\x98\x88\x6f\x24\xb1\x79\xfd\ -\x6a\xec\x39\xf4\x26\x62\x5d\x1d\xc8\x18\x19\x40\xff\x92\x65\xf1\ -\x59\x42\x31\xa2\x51\xea\xec\xba\x74\x37\xd2\xe2\x23\x5e\x4a\x94\ -\x00\x09\xa3\x5d\xb6\x18\x6e\xfa\x79\x98\x8d\xba\xf8\xe8\x47\xe2\ -\xb1\x3e\xfa\xa1\x9e\xe7\x7f\xaf\x11\xf3\xc5\x34\x75\x8d\xff\x82\ -\xf9\xcf\x3c\x8c\x9c\xfe\x4e\x94\x90\xc1\xb7\x9d\x44\xbf\x28\xfb\ -\x26\x90\x8b\x05\x33\x1c\x4c\x7f\x2e\x92\xe1\xb8\x00\xb7\x47\x7e\ -\xf5\x20\x5e\x7c\xe1\x39\xa7\xd1\xdf\x3a\x1f\x01\x00\x2d\x3b\x98\ -\x20\x05\x7a\x3b\x5b\xb1\xfa\xd2\xad\x02\xe1\x5c\x29\x94\x9e\x9e\ -\x26\x42\xa1\x76\x8d\x17\x8c\xe0\x65\xd3\x0b\xf2\x72\xb0\x65\xc3\ -\x6a\xbc\xfe\xc6\x09\x0d\x04\x24\x09\x96\x2c\x8f\x27\x6f\xd8\xfa\ -\x19\x24\x40\x2d\xf1\x90\xbf\x6c\xb2\xec\x2d\xd6\xbf\x6c\xb1\xfa\ -\xe3\x8c\x96\xa7\x45\xbc\x64\x05\x01\xcc\x40\x80\xfe\x6a\xfe\x8c\ -\xf5\xfd\x4b\x63\x53\x18\x30\xec\x20\xe2\xa2\xe7\x5b\xff\xd4\xaf\ -\x91\xd3\xd7\x29\xf6\x3f\xbc\xfa\x6d\x1b\xc5\x73\xf3\xaa\x5f\x0c\ -\x00\xa7\xc6\x51\xbf\x02\xad\x4c\x6e\xa0\xbf\x0f\xdf\xfc\xea\x97\ -\x11\x0e\x4f\xd9\x8d\xfe\xbf\xb3\xfb\xfe\x7c\x01\x00\x63\xf9\x94\ -\x06\x82\x78\x9b\x0a\xf1\x46\x4f\x61\x54\xd5\x2d\xd7\xaa\x85\xc2\ -\x22\x10\xa2\xaf\xd3\x60\xa5\xf6\xae\x3e\xa1\x0b\x79\x44\xc4\x41\ -\xd0\xd9\x8e\xdc\xae\x36\x0c\xd6\xd4\x21\xca\x2b\x67\xf1\xe4\x4a\ -\xfa\x81\x56\xea\xfc\xd2\x54\x37\xf2\xdd\x46\x66\xc3\x2c\x15\xec\ -\x5c\x3b\xc9\xce\xdd\x33\xe8\x7d\x23\x08\x60\x91\x02\x6c\xb3\x90\ -\xc5\xff\x0c\x31\x7f\x24\xa2\xc4\x0b\x49\xd2\xc9\xe8\xbd\xe4\xb1\ -\x07\xe1\x1b\xec\x13\x23\xff\xda\xb7\x6f\x11\xc5\x1c\x53\xf4\xbc\ -\x5c\x0a\xe7\xe4\xf3\x33\x40\x38\x38\xa4\x1b\x86\xff\xf8\x0f\x5f\ -\x47\x53\xe3\x49\x6b\xdf\x32\x7a\xfe\x0c\x36\x4b\xc5\xcf\x17\x00\ -\x70\x75\xc7\x55\xda\xe8\xe7\x65\x4b\x32\xcd\x52\xa0\x1d\x15\xb5\ -\x4b\x91\x95\x9d\x2b\xc4\x20\xaf\x0e\x9e\xee\xb1\xdf\xd7\x87\x7d\ -\xe1\x8e\x9e\x3e\xe4\x64\x65\x89\xcd\x19\xaf\xdc\x72\x29\x1a\x5b\ -\xdb\xe1\x6f\x6d\x45\x51\xc3\x31\xf8\x4b\xca\x11\xca\x56\xd7\x14\ -\xe0\x31\x72\x82\x0c\xb0\x20\x75\x5e\x15\xc7\x08\xac\xc6\xa0\x0e\ -\x06\x13\xb3\x65\x33\x10\x12\x98\xee\xa0\x06\xa0\x2e\x3f\xfb\xca\ -\x44\x04\xaf\x04\xc2\xe2\x58\x17\xfb\x05\x8d\x27\xb0\xfe\xf1\x5f\ -\xc1\x43\xee\x6f\x5d\x75\x05\xae\xb9\x7c\x33\x5c\x04\x4a\xae\x8c\ -\xe2\x95\xd0\x9c\x1a\xf3\x9c\x55\x1e\x2f\xa6\xcd\x6f\x5e\x78\xfe\ -\x69\x3c\xf4\xc0\xcf\xec\x2e\xfd\x37\xa2\x9f\xe0\x34\xab\xdc\xce\ -\x47\xe3\xdd\xc1\x78\xab\xd3\x8d\x33\x5d\xc8\xcc\xbf\xf5\xd3\x7f\ -\x8d\x34\x8f\x1a\x06\xcd\xcf\xf5\x89\xbd\x75\x9c\x1a\x8f\x88\xed\ -\x9b\xd7\x0b\xc3\x90\xb7\x8a\xbb\xff\xd1\xa7\xf0\xf4\x4b\xbb\x10\ -\xa3\xf3\xed\x97\x6e\x41\xf3\x15\x3b\x10\xe3\x82\x09\xcd\x45\xe4\ -\x0e\x5f\x4f\x76\xc1\x26\x52\x0b\xc5\x7a\x54\x2e\x59\x38\x38\x11\ -\x79\x8e\x25\x60\xbd\x34\xd2\xf7\x07\xc3\x38\x10\x54\x6b\x1a\xd5\ -\x30\xb0\x02\x37\x79\x2c\x4b\x89\x69\x65\x47\x0f\x8b\x67\xda\xb2\ -\x7e\x8d\x28\x74\xe1\x6c\xde\x58\x20\x88\xb1\xf1\x89\xa4\x7d\xc2\ -\x7d\xc0\x9b\x68\xf0\x77\xfb\x7b\x7b\xf0\xd9\x4f\xdd\x81\x40\x60\ -\xdc\x7a\x19\x47\x5a\xb9\x7a\x66\xd4\xe9\x77\xe6\x42\x02\xf0\xea\ -\xcf\xbf\x23\xfa\x3c\x07\xae\x66\xf3\x85\x65\x2b\xd7\xe0\xf2\xed\ -\x3b\x10\x08\x86\xe2\xaa\x20\x8d\xc4\xb7\xcb\x61\xef\x20\xb6\x95\ -\x5b\x3a\x7b\xe2\x91\xb1\x0d\x2b\xeb\x85\xab\x78\xe4\x78\x23\xbc\ -\xad\xcd\x28\x3e\x7a\x04\x21\x5e\x77\xb7\xa8\x48\xd8\x05\x5c\x58\ -\xda\x4d\xcc\xda\x1f\x8e\xe1\x04\x31\x87\xed\x04\x0f\xef\xf4\xe9\ -\x52\x2d\xfb\x44\x3b\xc0\x40\x16\xfd\xce\x77\xd4\x4d\x7c\x3e\x40\ -\xd2\xe5\x69\x62\xfa\x4b\xe4\xe3\x77\x45\x62\xd3\xab\xcd\x11\x08\ -\x4a\x0f\xbd\x8e\x75\xbf\x7d\x08\x39\xdd\x9d\x22\x71\x73\xe3\x8e\ -\x6d\x62\xf4\x8b\x25\x60\x46\xc7\x84\x3b\x9b\xac\xf9\xe8\x3b\xba\ -\xde\x9f\x22\x15\xf1\xb7\xf7\x7c\x01\xbd\x3d\xdd\x76\x97\x7e\x14\ -\x86\x85\xa1\xe7\x83\x04\x60\x65\xfe\x3c\x6c\x16\x89\x70\x6a\x6b\ -\x36\x6c\xc4\xc7\xff\xfc\x2e\xd2\xed\x3e\xb1\x32\x48\xab\xc6\x58\ -\x9e\xf6\xc4\x01\x20\xa7\xf8\x80\xde\x78\xb3\x89\x2b\xb6\x6c\x10\ -\xa2\x92\x13\x4c\x0f\x3c\xfa\x34\x5e\xd9\xab\x56\xc8\x8c\x15\x97\ -\xa0\xf9\xca\x1d\x18\x58\xbd\xca\xb6\xba\x87\x17\x8b\x2a\x21\x89\ -\x50\xc4\x3b\x72\xd0\x71\x96\xc6\x7c\x63\xaf\xf1\x22\xcf\x63\x5c\ -\xa8\x42\xd4\x47\x8c\xee\x21\x8a\x88\x51\xae\x8d\x76\x6d\xc4\x4b\ -\x64\xcc\x15\x1f\x38\x88\x9a\x57\x5e\x82\x77\x78\x48\x8c\xdc\x4b\ -\x57\x2f\xc7\xc6\xb5\xab\x44\x75\x0f\x1b\x7b\x6c\xc8\xf2\xaa\x1e\ -\xc9\x1a\x97\xcc\xb3\xcb\x27\x16\xcc\xa0\xfb\xf8\xfe\xb7\xbf\x85\ -\x9d\xcf\x3d\x6d\x77\xa9\xe3\x3e\x41\x73\x05\x80\xe5\x9a\x35\x5a\ -\x72\x26\xcc\xe7\x68\x20\xc7\x02\x0e\x1f\x6f\x42\x6b\x47\x8f\x96\ -\xf9\x72\x09\x31\x38\xd3\x56\xf1\x5c\x1d\x23\x36\x6b\x2e\x2d\x12\ -\x2e\xe5\xc9\x96\x36\x3c\xf4\xc4\x73\x22\x8b\xc8\x2d\x50\x50\x80\ -\xae\x8d\x1b\xd1\xbd\xf1\x32\x44\x38\x99\x62\x2d\x0c\xb1\xd6\xf1\ -\x49\x86\xc5\x03\x63\xd3\x4c\x86\x0d\xe3\x3d\x03\x83\x28\xd9\xbb\ -\x1f\x65\xfb\xf7\xc1\xa3\xcd\xce\xe1\xd1\xbe\xed\xb2\xf5\x22\x74\ -\xcb\x76\xcb\x88\x7f\x1c\x7d\x83\x23\x8e\x6b\x23\xea\x8d\x6b\x00\ -\x58\xa2\xb1\x27\xc4\x00\x7a\xf8\x97\xf7\xe3\x17\x3f\xb7\x55\xef\ -\xfc\x60\x1b\x92\x89\xfe\xf3\x0d\x80\xa4\xcc\x2f\x24\xe3\xac\xac\ -\xb2\x5a\x58\xbe\x7d\x24\x16\xdb\x5a\x9a\x6c\x99\xcf\x31\x71\x1e\ -\x01\xcf\xbd\xb2\x47\xec\xad\x27\x40\x40\xcc\xcf\xcd\xc9\xb2\x5d\ -\x2b\xcf\xda\x96\x54\x95\x61\xd3\xfa\x95\x6a\x29\x15\xe9\xda\xa3\ -\x0d\xcd\x78\x72\xe7\xab\x38\x74\xac\x41\x0d\xb6\x50\xc7\x8e\xd6\ -\x54\x63\x70\xc5\x72\x0c\xad\x5a\x81\x40\x45\x29\x94\x14\xb7\xb9\ -\xf0\xd3\xb0\x50\x83\x9e\xce\x35\x32\x5e\x26\xe3\x2d\xa3\xad\x13\ -\xf9\x47\x8f\x23\xff\xd8\x09\x64\xb7\xb7\xc7\x43\xb5\x5c\xcd\xbc\ -\x99\x74\x7d\x41\x5e\xae\xd0\xf5\x93\x93\x21\xb1\x75\x7d\x60\x62\ -\x72\xc6\x7b\xe7\xb5\x7f\x8b\x0b\xf3\x35\xe6\x03\xcf\x3e\xf5\x04\ -\xfe\xed\x9f\xbf\x6b\x77\x29\xff\x18\x2f\x02\xb9\x7f\x36\x8c\x91\ -\xe6\x92\xf9\xde\x8c\x2c\x5c\x7f\xf3\x47\xb0\x72\xcd\x7a\xb1\xc4\ -\x39\x33\x98\xfd\xda\x9e\x8e\x56\x78\xb3\xf3\xc5\x16\x71\x46\xe6\ -\xb3\x0b\xe8\xd5\x62\x01\xbf\x79\x72\x27\xda\xbb\xd5\x8d\x91\xf8\ -\x7d\xb6\x2f\x53\xb5\x88\x67\x68\x7c\x2d\xef\xc5\xb7\x66\xf9\x92\ -\xf8\x5a\x04\x7d\x03\xc3\x78\x79\xef\x01\xec\x7a\xfd\x88\xc8\x2c\ -\xc6\xd3\xd3\x04\xaa\x40\x59\x09\x02\x25\xc5\x98\x2c\x2e\x44\x28\ -\xc7\x47\xc6\x63\x8a\x09\x00\xae\x89\x10\xd2\x46\xfd\x48\xef\xed\ -\x83\x97\xee\x27\xa3\xbb\x07\xb2\x61\x24\xb3\x4b\xba\x66\x59\x1d\ -\x56\xd7\xd7\x09\xf0\x2a\xda\x5e\x07\x5d\xbd\xfd\x42\xa5\xcd\xa6\ -\xf1\x73\x73\x6c\x40\x15\xfb\x12\x76\xbf\xfa\x32\xbe\x47\x2e\x1f\ -\xef\x1d\xec\x10\xf0\xb9\x6f\xb6\xcc\x91\xe6\x92\xf9\x1f\xfc\xf8\ -\x67\x51\x59\x55\x6d\x62\x7e\x86\xd7\x23\x2c\x7c\xce\x00\x06\xc8\ -\x18\xe2\xf7\x46\xe6\x73\xc4\x8b\x3f\x9b\xa0\x51\xf3\x9b\xdf\xbf\ -\x20\x7c\x7f\x61\xf9\x13\x63\xd9\xa0\x62\x31\x39\x9b\xc6\x12\x63\ -\xd9\x92\x4a\xac\x5c\x5a\x2d\x00\xa6\x17\x53\x32\x63\x78\xe3\x29\ -\x5e\x88\xba\xa5\xa3\x3b\xbe\x26\xd1\x6c\x1b\x6f\x05\x5f\x4e\x60\ -\xa9\xae\x28\x43\x5d\x55\x85\xc8\xcf\x8b\x30\x2e\xdb\x0a\x81\x09\ -\xf4\xf4\x0f\x62\x70\xd8\xef\x38\x99\x23\x31\xc6\x9f\x29\xa4\xa0\ -\xbe\x36\xc2\xce\xe7\x9e\xc2\xbf\xff\xf0\x7b\x4e\xea\x82\x53\xbd\ -\xf7\x9c\xce\xfd\x4a\xf3\x91\xf9\x5e\x7a\x65\x91\x27\x82\x21\x91\ -\x88\x38\x36\x32\x9f\xa7\x89\xb1\x9b\x34\x30\x32\x8a\x97\x77\x1f\ -\xa0\x4e\x1d\x8a\x8b\x59\x06\x80\x5e\x35\x33\xdb\x56\x5a\x94\x47\ -\xea\xa1\x5c\x6c\x49\x9b\xaa\x4d\xa7\x8a\x89\x02\x4b\x45\x80\x90\ -\x8d\x33\x5e\x91\x93\xfd\x72\xb1\x44\x8d\x56\x6d\xcb\xde\x06\x4f\ -\x57\xe7\x45\x99\x59\x9f\x73\xad\x7e\xaa\xb6\xcc\x9d\x5e\x9e\xc5\ -\xf5\x8b\xfd\x24\x61\x58\xca\xcc\x64\xdd\x9b\x5c\x59\x5e\xfd\x9c\ -\x54\x05\x3f\xb7\xa4\x95\xb4\x3d\xfe\xc8\xaf\xf0\xd0\xfd\x8e\x2e\ -\xfd\xac\x8c\xbe\xf3\x05\x80\xb3\x66\x3e\x4f\x79\xe2\xfd\x70\xd5\ -\xd2\x27\x45\x74\xb2\x91\xf9\xbc\x5c\xdc\xc0\xd0\xa8\xd8\x2c\xb2\ -\xb1\xb5\x23\xae\x47\xf5\x9c\x39\x83\x60\x26\xe3\xd0\xae\xb1\x7b\ -\xc5\x3b\x73\x15\xe6\xe7\xa8\x5e\x46\xaa\x3b\x3e\x5f\x41\x7d\x8d\ -\x4d\xbf\x17\xe7\x62\xf1\x63\xbe\x4f\x66\x32\xa7\xa9\x59\xbc\x0f\ -\x12\x40\x67\xa3\xdf\xad\x8d\x9f\x95\xcb\xe1\xb8\xbc\x4b\xcc\x12\ -\xa7\xbf\xf9\xd3\x7b\x7f\x80\x17\x13\xf3\xfb\xc6\x34\xef\x2d\x50\ -\x27\xdd\xcc\x39\x00\xce\x19\xf3\x59\xa7\xf3\x88\x74\x69\x3a\x97\ -\x2b\x84\xac\xcc\xef\xa5\x91\x35\x40\xa3\x93\x57\xca\x0a\x93\x4f\ -\xac\x07\x8b\x78\x04\xb1\x34\xf0\x70\xc0\xe7\x2c\xa6\x88\xf3\x88\ -\x56\xef\xd3\x23\xb6\xae\xe7\x7b\x93\xc4\xde\x7d\x8a\x08\xec\xf0\ -\x08\x67\x50\x72\x15\x33\xaf\xdf\xcb\xab\x79\x9e\x69\xe3\x00\x56\ -\x4e\x76\x16\xa9\xb2\xf4\xf8\xa8\x1f\x1e\x1c\xc0\x3f\x7d\xe7\x9b\ -\x68\x3a\x79\xfc\x9c\x33\xff\xad\x00\xc0\x39\x67\x3e\xaf\x1b\xc8\ -\x46\x13\xcf\x19\xe4\x42\x07\x16\xc1\x76\xcc\x7f\xfa\xe1\x9f\x93\ -\x07\xd1\x81\x77\xbe\xff\x76\x94\x55\x2d\x89\x77\x20\x1b\x7d\xfc\ -\x9b\x6e\xf7\xbc\x58\x0e\x29\x49\x52\xc7\x23\x42\xd8\x1c\xdf\xd0\ -\xf5\xfd\xeb\x7b\x77\x8b\x91\x3f\x3e\xe6\x7f\x4b\x98\x7f\xae\x01\ -\xf0\x96\x31\x9f\xc5\x2a\xcf\x16\xe2\x51\xe6\x17\x3e\x73\x22\xf3\ -\x9b\x8e\x1f\xd1\x54\x80\x8c\xf5\x5b\xb6\x63\xeb\x8e\xeb\x49\x7c\ -\x4f\xeb\x4f\xfe\x2d\xf1\x9b\x6e\xd7\xbc\x62\x3c\xe7\x35\x7c\xe4\ -\xed\xb0\x7a\xd3\xd7\xfb\x09\x8c\x8f\xe1\xd7\x0f\xfc\x04\xaf\xbe\ -\xf4\x42\xb2\xaf\x7e\x9b\xe8\xee\xb3\xfd\xfb\xd2\x42\x61\x3e\xbf\ -\xb2\x41\xc6\x2a\xa0\x95\xac\x73\x06\x80\x95\xf9\xd6\xfc\xc1\xb6\ -\x77\xbe\x17\xf5\xab\xd6\xc7\x41\x20\x49\xea\xaa\x19\x29\x29\x2e\ -\x2d\xad\x3c\x37\xa9\x10\x56\x4f\xcc\x78\x61\xa7\xb8\x5d\xf1\xfb\ -\x63\x7b\x62\xd7\xcb\x2f\xe0\xb7\xbf\xbc\x0f\xe3\xe3\x8e\xde\x07\ -\x67\xf7\x3e\x93\x2c\xc1\x73\xbe\x01\x70\xde\x98\xcf\x06\x15\x5b\ -\xe2\xec\x9a\x35\xb7\x75\xe1\xc9\x5f\xff\xd4\x96\xf9\xa6\x50\x70\ -\x75\x1d\xb6\x5e\xf5\x2e\x54\xd4\xd6\xc7\x41\xa0\xaf\x39\xc8\xe9\ -\x54\x97\xf0\xad\xcf\x4f\x75\x3c\x1b\x94\xec\xc9\xf0\xf3\x72\x49\ -\xbb\x11\x98\x87\xf6\xef\xc1\xef\x7e\xfb\x10\x3a\xda\x5a\x92\xfd\ -\x04\x2f\xae\xc1\xe5\x73\xaf\x9d\xab\x7b\x92\x16\x1a\xf3\x27\x26\ -\x27\x85\xe1\xd5\x78\xe2\x38\xee\xfd\xce\xd7\x66\x7d\xa3\x0c\x84\ -\xcd\x57\xbe\x13\xd5\x75\x2b\xe2\x20\xd0\x49\xd6\x17\xa1\x94\xa5\ -\x73\x2a\x18\x19\x5c\xec\xca\x8a\x8d\x1c\x53\xd4\x99\xbc\xc6\xbf\ -\xcd\x13\x3b\xde\x38\xb4\x1f\xbf\x7f\xf4\xd7\x33\x31\x9e\x1b\xef\ -\xfe\x7d\x27\x2c\x9b\x3f\xcf\x25\x00\xe6\x8c\xf9\x4c\x93\x93\x53\ -\xf8\xf1\xf7\xbe\x8e\xde\xae\xf6\xd3\xba\xe9\xfc\xa2\x12\xac\xdf\ -\xbc\x1d\x2b\xd6\x5d\x26\x66\x20\xc5\x81\xa0\x89\x66\x49\x5f\x8d\ -\x54\xd2\xd7\x24\x55\x4c\x7b\x40\x19\x0f\x75\x9d\xad\x8b\x75\x66\ -\x30\xab\x16\x96\x2c\x2c\xda\xf5\x98\xbd\x09\x70\xf4\x6f\xcc\x3f\ -\x82\x3d\x7f\x7a\x09\xaf\xee\x7c\x0e\x43\x83\xfd\x33\xdd\xf2\x88\ -\x96\x39\xbd\xef\xad\x90\x4a\xd2\x42\x65\x3e\x97\x88\x3d\x49\xfa\ -\xff\xd8\xc1\xbd\xd6\x5b\xe8\x99\x4d\xc2\xc9\x45\x23\xb3\x66\xe9\ -\x4a\x2c\x5b\xb3\x01\x75\xcb\xd7\xc2\xe3\xf5\x26\x80\xc0\x28\xa2\ -\x8d\x12\x43\x4d\x08\x26\xfb\x7c\x7a\x01\x47\x9d\xc6\xfd\xa3\x38\ -\x7a\xe4\x75\x1c\xd8\xbb\x0b\x4d\x27\x8e\xce\x98\xf8\x31\x04\x77\ -\x98\xf9\xbd\x6f\x95\x5a\x72\x2f\x54\xe6\x4f\x85\x23\x4e\x6b\x1f\ -\x7e\x11\x6a\x21\x04\x6f\x96\xb7\xd4\xe9\x21\x78\x1a\x1a\xdb\x0f\ -\x4c\x3c\x39\xb3\xa4\xac\x12\x95\x4b\x96\xa1\xac\xb2\x16\x95\xb5\ -\x4b\x91\x91\x99\x69\x18\xf5\xd6\x8d\xa4\x0c\xbb\x8d\xd9\x7e\x0e\ -\xe1\xbf\x77\xb4\x37\xa3\xb5\xe9\x24\xf9\xf0\xc7\xd0\xdd\xd1\x76\ -\x3a\x7d\xbc\x4f\x63\xfc\xab\x6f\xb5\x5d\xe2\x5e\xb8\xcc\x57\xd0\ -\xdf\xd3\x69\x77\x8f\xcc\xfc\x27\xa1\xce\x80\xfd\x30\xd1\x97\x93\ -\x01\x41\x88\x74\x1a\x8d\xdd\x1d\xad\x82\xe2\xee\x99\x37\x03\xf9\ -\x85\x25\xc8\x2d\x28\x84\x8f\x3c\x0a\x2f\x01\xc2\xe3\xf1\xaa\x2b\ -\x75\xf0\xfe\x86\xf4\x9d\x89\x89\x71\x21\x09\x82\xf4\x3a\x11\x18\ -\x87\x7f\x64\x18\x83\xfd\xbd\x18\xe8\xeb\xc6\x64\x30\x78\x26\xfc\ -\xe0\x42\x85\xaf\x12\x3d\x76\xbe\x3c\x12\x69\xa1\x32\xbf\xed\xd4\ -\x09\x3c\xf6\xc0\x8f\xec\xee\xb3\xc4\x22\x32\xd9\xf1\xe7\x92\x73\ -\xde\xaa\x7e\xeb\x3c\x8d\x03\x3d\xad\x49\xac\x67\xce\xf7\x1f\x96\ -\x16\x22\xf3\x87\x06\x7a\xf1\x9f\xf7\xfd\x0b\x8d\xba\x04\x5f\x99\ -\x57\x1e\xd9\x9e\xe4\x39\xd6\x6b\x96\x34\x47\xcf\x0a\xe6\x98\xe9\ -\xec\xd2\x3d\x40\x74\x2f\x6c\xea\xf5\xe7\x13\x00\x16\x0a\xf3\xa1\ -\x8d\xf4\xd9\x88\x4f\x96\x0a\x57\x69\x3e\x35\xcf\x4d\xac\x39\x4f\ -\xfd\xcd\x01\xfd\xdf\x69\x2e\xdd\xab\xf3\x41\xf4\x48\x17\x10\xf3\ -\xf9\x3e\x77\x9c\x85\x57\xb3\x4d\x53\x11\x5c\xa5\xbc\x06\x67\xbf\ -\x78\xc6\xb8\xc6\xf0\xdd\x1a\xf1\xfd\x75\xce\x37\xdd\x23\x5d\x20\ -\xcc\x6f\xd1\x98\x77\xae\xdc\x25\x97\x66\x38\xd6\x68\x54\xa2\x91\ -\xc7\x60\x67\x44\x30\xbd\xc0\xc5\xb8\x76\xdc\xa1\xdd\x0b\x53\x13\ -\x16\x40\x93\x2e\x00\xe6\xf7\x68\xe2\xfc\x04\x16\xdb\x39\x01\xc0\ -\x22\xf3\x2f\x62\x00\x2c\x32\xff\x22\x06\x40\xb1\x16\x88\x58\x64\ -\xfe\x45\xd4\x64\x83\xd1\xf3\xe8\x22\xf3\x2f\x5e\x00\x7c\xc6\x2e\ -\x4a\xb6\xc8\xfc\x8b\x47\x05\x34\x5b\x83\x21\x8b\xcc\xbf\x78\x24\ -\xc0\x16\xbb\x48\xd8\x4d\xb7\xde\xb9\xc8\xfc\x8b\x04\x00\x09\xa2\ -\x9f\x57\xe4\x58\xba\x6c\xc5\x22\xf3\x2f\x12\x00\xe4\x58\x4f\xd6\ -\xd6\x2d\x5b\x64\xfe\x45\x04\x80\x84\x3d\xda\xb8\x86\x6d\x91\xf9\ -\x17\x0f\x00\x46\xac\x27\x79\xa5\xce\x45\xe6\x5f\x3c\x00\x48\xd8\ -\x50\xe6\xd0\xeb\x7b\x10\xe3\xbd\xe9\x16\x99\x7f\x51\x00\x80\x8b\ -\x28\x4c\xab\x0b\xf1\x36\x6e\x3f\xfc\xee\x3f\x88\x75\x78\x16\x99\ -\x7f\x61\x37\x8e\x00\xf2\xa2\x34\x45\x56\x6f\xa0\xbb\xab\x13\xed\ -\x6d\x2d\xb8\xfe\x86\x1b\x91\x4e\x92\x60\x91\xf9\x17\x2e\x00\xb8\ -\x71\x15\xea\x27\x38\xfe\x63\xfc\xb0\xa5\xf9\x14\x9a\x9b\x9b\x70\ -\xd3\x7b\x6e\x12\x33\x5a\x16\x99\x7f\xe1\x02\x80\x4b\x58\x0f\x43\ -\xad\x95\x33\xcd\x93\x6a\x6a\x6c\x44\x63\x63\x03\x6e\xba\xe9\x26\ -\x31\x3d\x7b\x91\xf9\x17\x26\x00\x04\xaf\x89\x8e\x42\x5d\x56\xd4\ -\x04\x82\x86\x93\x27\x71\xf4\xd8\x51\x6c\xbf\xea\x6a\x31\x4d\x7b\ -\x91\xf9\x17\x26\x00\xb8\x1d\x73\x02\x41\x63\x43\x03\x4e\x1c\x3b\ -\x8e\xcd\x97\x6f\x17\x8c\x5e\x64\xfe\x85\x09\x80\xa4\x20\x60\x7b\ -\xa0\xb1\xe1\x24\x36\x5c\xb6\x55\x6c\xd7\xb2\xc8\xfc\x0b\x13\x00\ -\x49\x41\xd0\xde\xd6\x4a\xc6\x61\x13\x56\xad\xbf\x0c\x93\x64\x10\ -\x2e\x32\xff\xc2\x04\x40\x52\x10\x74\x77\xb6\xe3\x54\xc3\x09\xd4\ -\x2c\x5d\x81\x68\x4c\x32\x31\xbf\xbb\xa3\x05\x4f\x3c\xf8\xef\x8b\ -\xcc\x5f\x20\x6d\x36\x13\x43\x6e\x86\x3a\x4b\x35\xa1\x4e\x9e\x17\ -\x64\x5a\xba\x72\x1d\x7c\x39\xf9\x04\x84\x28\xba\xda\x4e\xa1\xa3\ -\xb9\xc1\xe9\x77\x16\x99\xbf\x80\xdb\xcd\x5a\xc0\x48\x39\x43\xe2\ -\xa5\xac\x97\x2f\x76\xe3\xc5\x09\x82\xf6\x45\xe6\x5f\x38\xed\x3a\ -\xa2\xfe\xd3\x60\xfe\x2e\xa8\xd5\xc6\x8b\xed\x02\x6a\xf9\x44\xbc\ -\x4c\xf5\x58\x12\xc6\x73\x8d\xe1\xa7\x31\x7f\xf6\x24\x5a\x6c\x67\ -\x61\x04\x3a\x35\xde\xa5\x90\x27\x54\xf2\xba\xf4\x7a\x51\x09\xd7\ -\x16\xf0\x44\xc8\xd7\x16\xbb\x76\x61\xb4\xff\x02\x38\x04\x9c\x57\ -\x51\x7e\x39\x70\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\ -\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x30\x2d\x30\x32\x2d\ -\x31\x30\x54\x30\x32\x3a\x30\x38\x3a\x34\x37\x2d\x30\x36\x3a\x30\ -\x30\x48\x3f\xeb\x77\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\ -\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\x30\x31\ -\x2d\x31\x37\x54\x31\x30\x3a\x34\x33\x3a\x32\x34\x2d\x30\x36\x3a\ -\x30\x30\x25\x20\xe2\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ -\x60\x82\ \x00\x00\x0a\x6c\ \xff\ \xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ @@ -3087,956 +5283,54 @@ qt_resource_data = "\ \xc1\x0d\x7a\x47\xc8\x7e\xda\x28\xa0\x27\xec\x9f\x0d\xa5\xb3\x9d\ \xfe\xd1\xba\x93\x57\xc1\x63\x90\xa2\x8a\xa4\x33\x1d\x85\x11\xd8\ \x51\x45\x00\x47\x61\x45\x14\x50\x1f\xff\xd9\ -\x00\x00\x09\xba\ -\xff\ -\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ -\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x07\x08\x07\x06\x11\x08\ -\x07\x08\x16\x14\x15\x17\x16\x16\x1b\x13\x15\x11\x17\x1b\x20\x1f\ -\x1b\x17\x20\x1d\x1b\x19\x20\x1d\x1f\x1f\x24\x1f\x34\x2c\x1a\x26\ -\x31\x27\x1f\x17\x26\x37\x24\x31\x32\x2b\x3a\x3a\x3a\x23\x1f\x37\ -\x38\x37\x38\x37\x2d\x2e\x3a\x2b\x01\x0a\x0a\x0a\x0d\x0d\x0e\x1b\ -\x10\x10\x1a\x31\x25\x20\x25\x34\x37\x37\x34\x2c\x31\x36\x37\x32\ -\x34\x35\x37\x34\x34\x37\x37\x2c\x2c\x2c\x37\x34\x35\x37\x2f\x2c\ -\x2c\x34\x2c\x2c\x2c\x2c\x34\x2c\x2f\x2c\x34\x2c\x34\x34\x2c\x2c\ -\x2c\x2c\x2c\x2c\x34\x2c\x34\x2f\x34\xff\xc0\x00\x11\x08\x00\xa0\ -\x00\xa0\x03\x01\x11\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1b\ -\x00\x01\x00\x03\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x05\x06\x07\x04\x03\x02\x01\xff\xc4\x00\x40\x10\x00\x01\ -\x02\x04\x01\x08\x06\x07\x07\x02\x07\x00\x00\x00\x00\x00\x00\x01\ -\x02\x03\x04\x05\x11\x12\x06\x13\x15\x16\x21\x56\x93\x94\x31\x41\ -\x55\xa4\xd2\xd3\x14\x24\x51\x53\x61\x64\x71\x22\x32\x35\x75\x81\ -\x91\xb1\x33\x92\x23\x42\x43\x52\xa1\xd1\xf0\xff\xc4\x00\x18\x01\ -\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x03\x02\x04\x01\xff\xc4\x00\x25\x11\x01\x00\x02\x01\x03\x04\ -\x03\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01\x02\x03\x11\x12\ -\x51\x04\x13\x52\xa1\x14\x33\x71\x34\x31\x32\x21\xff\xda\x00\x0c\ -\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xdc\x40\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\ -\x47\x28\x6f\xac\x0e\xf4\x8c\xfe\x0c\xc4\x1c\x19\x9c\xfe\x1c\x58\ -\xe3\x62\xfe\x9e\xcb\xdb\x37\xd3\xf0\x03\x8b\xd5\x3e\x6f\xbe\x00\ -\xf5\x4f\x9b\xef\x80\x3d\x53\xe6\xfb\xe0\x0f\x54\xf9\xbe\xf8\x03\ -\xd5\x3e\x6f\xbe\x01\xfb\x28\xb4\xd9\xd7\x3d\x92\x75\x07\x3d\x59\ -\x64\x88\xd6\x4c\xc5\x55\x62\xed\x4b\x39\x33\x97\x62\xec\x72\x59\ -\x6d\xd0\xbe\xc0\x3a\x7d\x02\x17\xbd\x8d\xc7\x8d\xe3\x03\x86\x04\ -\xcd\x2a\x69\x98\xe4\xa7\x62\xc6\x4e\x85\x74\xbc\x69\x88\x88\x8b\ -\xd3\x65\x56\x39\x51\x16\xca\x8b\x6f\x8a\x01\xe9\xea\x9f\x37\xdf\ -\x00\x7a\xa7\xcd\xf7\xc0\x1e\xa9\xf3\x7d\xf0\x07\xaa\x7c\xdf\x7c\ -\x00\x9e\x89\x7d\xbe\x97\xdf\x00\xb5\x64\xe6\x7f\x57\xa5\x3d\x2f\ -\x16\x3c\xc4\x2c\x79\xcb\xe2\xc5\x81\xb7\xc5\x7d\xb7\xbd\xef\x70\ -\x24\x40\x00\x00\x00\x00\x00\x00\x00\x00\x02\x2f\x28\x64\xdd\x31\ -\x4f\x7c\x79\x68\x38\xa3\x43\x63\xd6\x0d\xad\x75\x75\xaf\x82\xff\ -\x00\xed\x72\xa3\x51\x53\xe8\xbd\x28\x8a\x81\x0b\x21\x98\xac\xd4\ -\x19\x01\xaa\x91\x20\xac\x1c\xeb\xed\xd0\xe4\x72\xb5\x21\x22\xa7\ -\x5b\x5c\x99\xe5\xb7\x5e\x0b\x2e\xcd\x8a\x16\xe0\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xca\x32\x62\xad\ -\x54\x93\x8b\x0a\x15\x22\x4a\x14\x45\x5a\x7c\x86\x3c\xf4\x45\x6d\ -\x91\x12\x2a\xa5\xac\xd5\xbf\xde\x5f\xd9\x0e\x9a\x62\xc7\xb3\x7d\ -\xe6\x52\xb5\xed\xbb\x6d\x61\x62\xd3\xf9\x5b\xd8\xf2\xbc\xc3\xfc\ -\xb1\xb7\xa7\xe6\x4d\x72\x71\x06\x9f\xca\xde\xc7\x95\xe6\x1f\xe5\ -\x8d\xbd\x3f\x32\x6b\x93\x88\x34\xfe\x56\xf6\x3c\xaf\x30\xff\x00\ -\x2c\x6d\xe9\xf9\x93\x5c\x9c\x41\xa7\xf2\xb7\xb1\xe5\x79\x87\xf9\ -\x63\x6f\x4f\xcc\x9a\xe4\xe2\x0d\x3f\x95\xbd\x8f\x2b\xcc\x3f\xcb\ -\x1b\x7a\x7e\x64\xd7\x27\x10\x69\xfc\xad\xec\x79\x5e\x61\xfe\x58\ -\xdb\xd3\xf3\x26\xb9\x38\x83\x4f\xe5\x6f\x63\xca\xf3\x0f\xf2\xc6\ -\xde\x9f\x99\x35\xc9\xc4\x1a\x7f\x2b\x7b\x1e\x57\x98\x7f\x96\x36\ -\xf4\xfc\xc9\xae\x4e\x20\xd3\xf9\x5b\xd8\xf2\xbc\xc3\xfc\xb1\xb7\ -\xa7\xe6\x4d\x72\x71\x06\x9f\xca\xde\xc7\x95\xe6\x1f\xe5\x8d\xbd\ -\x3f\x32\x6b\x93\x88\x34\xfe\x56\xf6\x3c\xaf\x30\xff\x00\x2c\x6d\ -\xe9\xf9\x93\x5c\x9c\x41\xa7\xf2\xb7\xb1\xe5\x79\x87\xf9\x63\x6f\ -\x4f\xcc\x9a\xe4\xe2\x17\x53\x99\x50\x00\x00\x00\x00\x01\x93\xe4\ -\x6f\xe2\x2c\xfc\xb6\x47\xf8\x71\xd3\x6f\xe7\x8f\xd4\xa3\xec\x9f\ -\xc5\xc4\xe6\x54\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x38\x00\ -\x00\x00\x00\x00\x06\x4f\x91\xbf\x88\xb3\xf2\xd9\x1f\xe1\xc7\x4d\ -\xbf\x9e\x3f\x52\x8f\xb2\x7f\x17\x13\x99\x50\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x2c\xe0\x00\x00\x00\x00\x00\x19\x3e\x46\xfe\x22\ -\xcf\xcb\x64\x7f\x87\x1d\x36\xfe\x78\xfd\x4a\x3e\xc9\xfc\x5c\x4e\ -\x65\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb3\x80\x00\x00\x00\ -\x00\x00\x63\x74\x0a\x9c\xad\x32\x76\x14\x49\xc7\x39\x11\xd4\xe9\ -\x14\x4c\x2d\x73\xb6\xd9\xcb\xd4\x9b\x0e\xca\xe3\xb5\xf0\x44\x57\ -\x94\x26\xd1\x5c\x93\x32\xb5\x53\xab\x92\x35\x28\xf9\x89\x47\x3d\ -\x56\xd7\x5c\x50\xde\x89\x6f\xaa\xa1\x1b\xe0\xbd\x23\x5b\x29\x5c\ -\x95\xb4\xe9\x05\x46\xb9\x23\x4d\x8f\x98\x9b\x73\xd1\x6d\x74\xc3\ -\x0d\xea\x96\xfa\xa2\x0a\x60\xbd\xe3\x5a\x96\xc9\x5a\xce\x92\xe5\ -\xd6\xda\x42\x7f\xa9\x13\x85\x13\xc2\x6f\xe2\xe5\xe1\x9e\xf5\x12\ -\x53\xd5\x19\x79\x09\x54\x99\x99\xc4\x8d\x5b\x74\x31\xca\xa9\x7f\ -\x6a\x22\x5d\x09\x53\x1d\xaf\x6d\xb0\xdc\xda\x22\x35\x94\x6e\xb6\ -\x52\x3d\xe4\x4e\x14\x4f\x09\x5f\x8b\x95\x9e\xed\x12\x52\x35\x19\ -\x79\xf9\x55\x99\x96\xc4\xad\x4b\xf4\xb1\xc8\xab\x6f\x62\x2a\x5d\ -\x49\x5f\x1d\xa9\x3b\x65\xa8\xb4\x4c\x6b\x08\xdd\x6d\xa4\x7b\xc8\ -\x9c\x28\x9e\x12\xbf\x17\x2f\x0c\x77\xa8\xea\xa7\x57\x24\x6a\x51\ -\xf3\x12\x8e\x7a\xad\xae\xb8\xa1\xbd\x12\xdf\x55\x43\x17\xc1\x7a\ -\x46\xb6\x6a\xb9\x2b\x69\xd2\x1f\x33\xb9\x43\x4e\x91\x99\x59\x79\ -\x97\x3d\x1c\x9d\x36\x86\xf5\x4f\xdd\x13\x69\xed\x3a\x7b\xda\x35\ -\x82\x72\x56\x27\x49\x78\xb3\x2a\xa9\x4f\x7a\x31\x8f\x88\xaa\xaa\ -\x88\x89\x9a\x89\xd3\xfd\xa7\xbf\x17\x23\xce\xed\x5d\xd5\x3a\xa4\ -\xad\x2d\x8d\x7c\xe2\xb9\x11\xca\xa8\x8a\xd6\x39\xdb\x7f\x44\xd8\ -\x4f\x1e\x2b\x64\xff\x00\x96\xad\x68\xaf\xfa\x8f\xd6\xca\x47\xbc\ -\x89\xc2\x89\xe1\x2b\xf1\x72\xb3\xdd\xa3\x44\x39\x94\x00\x00\x00\ -\x00\x00\x18\xdd\x02\x99\x2b\x54\x9d\x85\x0e\x71\xae\x54\x6d\x3a\ -\x45\x53\x0b\x9c\xdd\xb6\x72\x75\x2e\xd3\xb2\xb9\x2d\x4c\x11\x35\ -\xe5\x09\xac\x5b\x24\xc4\xad\x32\x14\x0a\x7d\x3e\x63\x3f\x2c\xc7\ -\x23\xad\x6f\xb5\x11\xeb\xff\x00\x0a\xa4\x6f\xd4\x5e\xf1\xa4\xa9\ -\x18\xeb\x13\xac\x3f\x6a\x34\x2a\x7d\x4a\x3e\x7e\x6a\x1b\xb1\x5a\ -\xd7\x6b\xdc\xdd\x9f\xa2\x8a\x67\xbd\x23\x48\x2d\x8e\xb6\x9d\x65\ -\xcc\x99\x29\x48\x45\xba\x43\x7f\x16\x27\x88\xdf\xcb\xcb\xcb\x3d\ -\x9a\x24\x6a\x14\xe9\x6a\x8c\xb2\x4b\xcd\x35\x55\xa8\xa8\xa9\x67\ -\x2a\x2d\xd3\xe2\x8b\x72\x34\xc9\x6a\x4e\xb5\x6e\xd5\x8b\x46\x92\ -\x8d\xd5\x3a\x47\xbb\x89\xc5\x89\xe2\x2d\xf2\xb2\xb3\xda\xa2\x4e\ -\x4e\x42\x5e\x4e\x53\xd1\x60\x35\x70\x6d\xd8\xe5\x55\xe9\xe9\xda\ -\xaa\x46\xf9\x2d\x6b\x6e\x9f\xf5\xa8\xac\x44\x68\x8c\xd5\x2a\x47\ -\xbb\x89\xc5\x89\xe2\x2d\xf2\xb2\xb1\xd9\xa3\xaa\x9d\x42\xa7\xd3\ -\x63\xe7\xe5\x61\xbb\x15\xad\x77\x3d\xce\xd9\xfa\xa9\x8b\xe7\xbd\ -\xe3\x49\x6a\xb8\xeb\x59\xd6\x1f\x33\xf9\x3f\x4e\x9f\x99\x59\x89\ -\x96\x3d\x5c\xb6\xbd\xa2\x3d\x3a\x3e\x08\xa2\x9d\x45\xe9\x1a\x41\ -\x6c\x75\x99\xd6\x5e\x2c\xc9\x4a\x43\x5e\x8e\x48\x4f\xd8\xb7\xdb\ -\x16\x22\xa7\xea\x98\xb6\x9a\xf9\x59\x79\x79\xda\xa3\xbe\xa7\x4c\ -\x95\xaa\x43\x6c\x39\xc6\xb9\x51\x16\xe9\x85\xce\x6e\xde\x8e\xa5\ -\xda\x4f\x1e\x4b\x63\xff\x00\xda\xb5\x6a\xc5\xbf\xd4\x76\xa9\xd2\ -\x3d\xdc\x4e\x2c\x4f\x11\x5f\x95\x95\x9e\xd5\x1a\x21\xcc\xa0\x00\ -\x00\x00\x00\x00\xc9\xf2\x37\xf1\x16\x7e\x5b\x23\xfc\x38\xe9\xb7\ -\xf3\xc7\xea\x51\xf6\x4f\xe2\xe2\x73\x2a\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x05\x9c\x00\x00\x00\x00\x00\x03\x1e\xc9\xa8\xb3\x10\ -\xe7\xe0\xb6\x4e\x13\x5c\xe7\x48\xd3\xda\x88\xe5\xb2\x2a\x2a\x3e\ -\xfb\x7a\x96\xc9\xb0\xe9\xb7\xd1\x1f\xa9\x47\xd9\x3f\x8b\xac\xbc\ -\x76\x47\x66\x26\x22\xa5\x95\x51\xc8\xe4\xb2\xb5\xc9\xd2\x8a\x9d\ -\x4a\x73\x2a\xf5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x38\x00\ -\x00\x00\x00\x00\x06\x41\x92\xb1\x19\x06\xb1\x2b\x16\x2b\xd1\xad\ -\x49\x3a\x7a\xb9\x5c\xb6\x44\x44\x6c\x4b\xaa\xaf\x51\xd3\x6f\xa2\ -\x3f\x52\x8f\xb2\x7f\x16\x79\xfa\xac\x09\xfa\xa4\x38\xb4\xb8\x2e\ -\xc6\xe4\x5c\x6a\xeb\x35\x1c\xc6\xb9\x1a\xe4\x54\x55\x45\xc4\xd4\ -\x73\x55\x16\xdd\x0e\x4f\x6e\xce\x75\x52\x27\x80\x00\x00\x00\x00\ -\x00\x00\x00\x00\x0b\x38\x00\x00\x00\x00\x00\x06\x51\x93\x59\x3c\ -\xfa\xd6\x69\x61\x4f\xac\x2c\x32\x14\xf5\x5f\xf0\xd8\xf4\x5b\xe7\ -\x6d\xb1\xc9\xb2\xca\xc4\x5b\xfc\x4e\x8a\x66\xac\x53\x6d\xab\xaa\ -\x76\xa4\xcc\xeb\x12\xb0\x6a\x2c\xff\x00\xa5\xfa\x4e\xb3\xc4\xc5\ -\x7b\xff\x00\x46\x1f\xde\xb6\x1c\x5f\x5b\x6c\x3d\xee\xe2\xf0\xf6\ -\x6c\xbf\x93\xa3\x54\x6a\xdb\xd3\x13\x83\x0c\x77\x71\x78\x7b\x79\ -\xb2\xfe\x46\xa8\xd5\xb7\xa6\x27\x06\x18\xee\xe2\xf0\xf6\x6c\xbf\ -\x91\xaa\x35\x6d\xe9\x89\xc1\x86\x3b\xb8\xbc\x3d\x9b\x2f\xe4\x6a\ -\x8d\x5b\x7a\x62\x70\x61\x8e\xee\x2f\x0f\x66\xcb\xf9\x1a\xa3\x56\ -\xde\x98\x9c\x18\x63\xbb\x8b\xc3\xd9\xb2\xfe\x46\xa8\xd5\xb7\xa6\ -\x27\x06\x18\xee\xe2\xf0\xf6\x6c\xbf\x91\xaa\x35\x6d\xe9\x89\xc1\ -\x86\x3b\xb8\xbc\x3d\x9b\x2f\xe4\x6a\x8d\x5b\x7a\x62\x70\x61\x8e\ -\xee\x2f\x0f\x66\xcb\xf9\x1a\xa3\x56\xde\x98\x9c\x18\x63\xbb\x8b\ -\xc3\xd9\xb2\xfe\x46\xa8\xd5\xb7\xa6\x27\x06\x18\xee\xe2\xf0\xf6\ -\x6c\xbf\x91\xaa\x35\x6d\xe9\x89\xc1\x86\x3b\xb8\xbc\x3d\x9b\x2f\ -\xe4\xb7\x9c\xca\x80\x00\x00\x00\x04\x0d\x6a\xad\x2d\x37\x25\x1a\ -\x9d\x4c\x9e\x6b\xa3\x39\xaf\x86\xab\x05\xe8\xab\x05\x56\xed\x57\ -\x39\x5a\xbf\x61\x51\x6f\x64\xd8\xaa\xa9\x64\xe8\x55\x40\xe1\x95\ -\x56\xd3\x6a\x2d\x9c\x85\x0e\xd0\xf3\x79\xb8\x8d\x63\x7f\xca\x8b\ -\x78\x6a\x88\x9d\x28\xcb\xc4\x4c\x29\xd4\xf5\xf6\x22\x28\x59\x64\ -\xe7\x25\x67\xa0\x24\xc4\x94\xcb\x22\x31\x6f\x67\x43\x72\x39\x16\ -\xdb\x17\x6a\x6c\x03\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x29\ -\xf9\x47\x48\x85\x39\x94\x2e\x99\x9c\xa2\xa4\xc3\x73\x10\x5a\xc7\ -\x2c\x36\x3e\xce\x47\xc6\x57\x27\xda\xe8\xfb\xcc\xff\x00\xc8\x07\ -\x06\x81\xa6\x6e\x93\x79\x68\x40\x34\x0d\x33\x74\x9b\xcb\x42\x01\ -\xa0\x69\x9b\xa4\xde\x5a\x10\x0d\x03\x4c\xdd\x26\xf2\xd0\x80\x68\ -\x0a\x66\xe9\x37\x96\x84\x04\x8b\x16\x3c\x38\x69\x0e\x1d\x2e\x32\ -\x22\x22\x22\x22\x31\x11\x11\x13\x62\x22\x25\xf6\x01\xf5\x8e\x67\ -\xb3\x63\x7f\x62\x7f\xd8\x1c\x53\x74\xb9\x59\xd8\xd9\xe9\xdc\x9b\ -\x58\x8e\xb2\x26\x28\x90\x21\xb9\x6c\x9d\x57\x50\x3c\x74\x0d\x33\ -\x74\x9b\xcb\x42\x01\xa0\x69\x9b\xa4\xde\x5a\x10\x0d\x03\x4c\xdd\ -\x26\xf2\xd0\x80\x68\x1a\x66\xe9\x37\x96\x84\x01\x28\x34\xbb\xed\ -\xc9\x26\xf2\xd0\x80\xb7\x64\xdc\xbc\x59\x4c\x9d\x94\x96\x98\x66\ -\x17\x32\x04\x26\xb9\xab\xd4\xe4\x63\x51\x53\xf7\x02\x44\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x0f\xff\xd9\ -\x00\x00\x06\x54\ +\x00\x00\x02\xe0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ -\x00\x00\x06\x1b\x49\x44\x41\x54\x48\x4b\x6d\x56\x6b\x4f\x14\x57\ -\x18\x7e\x66\xf6\xc2\xc2\x82\xec\x80\x80\x08\x8a\x06\xa3\x68\xaa\ -\x91\xa8\xd5\xa6\xe9\x07\x7f\x80\x97\x06\x1b\xd3\x26\xd6\x0f\x6d\ -\xd2\x98\x34\x6d\x5a\x6d\xbf\x18\xdb\xd4\xa6\x69\xfa\xd1\xa6\x69\ -\x1b\x93\x9a\x4a\xe5\x8e\x28\x5e\x88\x92\x82\x45\x10\xd6\xae\x02\ -\x2a\x51\x63\xaa\xc6\x36\x15\x2f\x70\x16\xf6\xbe\xb3\x33\xbb\x7d\ -\xce\x41\xd6\x5b\x27\xd9\x6c\x76\x66\x78\x9f\xf7\xb9\xbc\xef\x41\ -\xfb\xae\xe9\xe4\x1d\x4f\x4e\xae\x4f\xd3\xa0\x2e\x3b\x6d\x21\x9d\ -\xce\xcc\xfc\x78\xe6\xb2\x52\x49\x38\x5d\x6e\xb8\xdd\x6e\x80\x8f\ -\x2d\xdb\x82\x65\x26\x5f\x7a\x6f\xf6\x86\xd3\xe9\x86\x69\xa5\xa6\ -\xb4\x03\x4d\x9d\x91\x3b\xd7\xaf\x7a\xa7\x84\x40\xd1\xdc\xb9\x28\ -\x99\x37\x1f\x0e\x87\x23\xfb\x87\xe9\x4c\x1a\x9a\x0e\x88\x7f\xc6\ -\x71\x6d\x74\x14\x73\x4a\x8b\x50\xba\x60\x01\xca\xe6\x57\xa1\xa8\ -\xb8\x84\x58\x44\xcb\xbc\xdc\x90\x6c\x26\x1e\x8b\x45\xb4\x1f\x5a\ -\xbb\xc4\xc5\xae\x76\x63\x6c\x78\x04\x0e\x97\x13\xaf\xbf\xb1\x01\ -\x05\x73\xe6\x40\x23\x25\xf9\x71\xb0\xba\x4b\x77\x60\x32\x18\x44\ -\xcf\xd9\x1e\x84\x23\x51\x58\xb0\x31\xaf\x62\x21\x76\x7e\xb2\x1b\ -\x19\x9d\x8c\xec\x17\x00\xa8\x86\xd3\xe9\x42\xca\x4a\x0a\xed\xe0\ -\xd1\xb3\xc2\xdf\xdd\x61\x5c\xbf\x32\x0a\x9d\x9d\x6f\xd8\xb0\x1e\ -\x05\x05\x05\x59\x00\x5d\xd7\xa1\xeb\x2e\x04\x09\xd0\x7b\xae\x17\ -\x89\x78\x0c\x69\xdb\xc6\x9c\x92\x52\xbc\xf7\xe9\x5e\x68\x0e\x17\ -\x32\x69\xfb\x79\xa9\x88\x27\x01\x28\x91\xd0\x0e\x75\xfe\x2e\x06\ -\x4f\xb7\x19\x63\x04\x70\x38\x9d\x58\xff\xea\x13\x00\x7d\xc6\x14\ -\x9d\x0c\x1c\x4e\x07\x82\x22\x88\x73\x7d\x7f\x20\x26\x01\x58\xd0\ -\x47\x80\x0f\x3e\xdf\x47\x00\xf7\x73\x00\x19\x4a\x0a\x68\xf4\xcb\ -\x05\x2b\x49\x80\x5f\xbb\x7a\xc4\x85\xce\x36\xe3\xda\x28\x25\x22\ -\xc0\xba\x75\xeb\xb2\x0c\x24\x80\x94\xc9\xc9\xfb\x82\x1e\x9d\xef\ -\x3f\x4f\x80\x38\xac\x54\x0a\x45\x65\x65\xf8\xf8\xcb\x6f\xa1\xd1\ -\xcc\x67\x19\x64\x9e\xf8\x21\x19\x24\x53\x94\xa8\xa5\x7b\x40\xf4\ -\x76\xb6\x1a\xa3\x01\xbf\x02\x58\xbb\x76\xad\x02\x90\xd2\xc8\xe2\ -\xf2\x92\xa6\x4b\x89\xfa\x07\xfa\x99\x1e\x9b\x05\xd3\xf0\xe6\x17\ -\x62\xdb\xce\xf7\xa1\xb3\x53\x80\x41\x90\x49\xc8\x68\x4a\x66\x8d\ -\xec\xdd\x34\x39\x65\xd9\x42\x3b\xda\x33\x24\x7a\x4f\xb4\x1b\x97\ -\xfd\xfd\x7c\xe8\x44\x6d\x6d\x2d\x7c\x3e\x9f\x2a\x9c\x35\x9a\x60\ -\x53\x53\x53\xe8\xbf\x30\x00\x33\x65\x61\xe9\x92\x0a\x14\x7a\x73\ -\x10\x33\xe3\x32\x43\x2c\xac\x23\x65\xba\x28\x9d\x83\x35\x74\x86\ -\x2a\x03\x17\x9b\xb5\xd3\x10\xda\xf1\xbe\x80\xe8\x39\xde\x6a\x04\ -\x06\xfb\x88\xec\xc0\xea\xd5\xab\x15\xc0\x6c\xf7\x33\x26\xeb\x08\ -\x4d\x4f\x63\x60\xd0\x8f\x48\xf4\x11\x2a\xca\xb7\xa3\xa0\xb0\x86\ -\xf7\xa3\xd0\x6c\x27\x65\x12\x58\xbc\x68\x0a\x05\xf9\x79\xb0\x59\ -\x55\xa2\x4a\xdf\x4c\xd3\x14\x5a\xd7\xd0\x25\xd1\xdd\xde\x6a\xf8\ -\x07\xfa\x64\xcb\x0a\xc0\x30\x8c\x6c\x2a\xb2\x00\xa1\x10\x01\x86\ -\x90\xce\x4c\x43\xcb\x7c\x84\x89\x07\x3e\x24\x12\xeb\x61\x14\x5f\ -\xc4\xc3\xf1\x7c\xd4\xbd\xd3\x8f\xea\xaa\x02\xd0\x9e\xac\xac\xb6\ -\x4d\x89\xce\x06\x46\xc5\x99\xd6\x66\x63\xb0\xaf\x97\x0c\x74\xac\ -\x5a\xb5\x0a\xc5\xc5\xc5\xea\xa5\x14\xdf\x8e\xd3\xd4\xa2\xa2\x22\ -\x4c\x4b\x06\x17\x06\xa9\x76\x08\x1e\xf7\x1e\x4c\x4c\x7a\x91\x8c\ -\xd7\x72\xe0\x46\x71\xef\xb6\x13\x5b\xeb\x2e\xa1\x6a\x41\x2e\xbb\ -\xce\x28\xc6\x32\x18\x96\x65\x09\xed\xdc\xe5\xeb\xe2\x74\x5b\x83\ -\xd1\xdf\xdb\xad\x24\x5a\xb9\x72\xa5\x2a\x28\x25\x22\x45\x84\xc3\ -\x61\x94\x96\x96\x2a\x89\x2e\x0c\x91\x81\x16\x85\x6e\xef\x86\x98\ -\x28\xa6\xe1\x2b\xe0\xc8\xb9\x01\x33\xec\xc4\x96\x37\xcf\xa1\x62\ -\x41\x01\xb3\x9f\x51\x73\x92\x66\x10\x78\x09\x6d\x68\xec\x96\xe8\ -\x6c\x69\x30\x7a\xcf\x74\xa9\x04\x48\x80\x59\x89\x24\x03\x99\x9e\ -\xf2\xf2\x72\x84\x29\xd1\xa0\x3f\x00\x2b\x1d\x41\x7e\xde\x2e\x4c\ -\x4d\xe6\x72\xaa\xd7\xa0\x7c\x61\x1f\xee\xdd\x34\xb0\xb9\x6e\x0c\ -\x15\x15\x39\x2c\xac\x53\xba\x04\x42\x7c\x5f\x01\x04\x6e\xfc\x25\ -\x3a\x5b\x1b\x8d\xee\x53\x27\x15\xc0\x8a\x15\x2b\xb2\x0c\xa8\x21\ -\x62\xb1\x18\x0a\x0b\x7d\x88\x44\xc2\xf0\xfb\x87\x60\x69\x71\xa4\ -\xcd\x0f\x31\xf1\xb8\x1c\x7a\x7a\x19\xcd\xbc\x8d\x78\x2a\x83\xad\ -\x5b\xc8\x60\x7e\x3e\xa3\x99\x51\xec\x5d\x8c\x6f\x32\xc9\x39\x18\ -\xb9\x75\x57\x9c\x6c\x6b\x36\x4e\x1d\xef\x50\x00\x35\x35\x35\xca\ -\x83\x67\x53\x24\x63\x27\x81\xfc\xfe\x3f\x61\x22\x08\xaf\x63\x17\ -\x26\x1e\xb9\xd8\xe5\x46\x2c\xaa\x3e\x89\x9b\x63\xe5\x78\xeb\x6d\ -\x32\xa8\xf4\xd0\x37\x25\xcd\x53\x0f\xae\xdf\xbd\x2f\x8e\xb5\x1c\ -\x31\x8e\xb7\xb7\x2a\x80\x65\xcb\x96\x3d\x07\xa0\xd6\x05\x4d\x8b\ -\xc7\x12\xf0\x07\x02\x88\x47\x27\x50\x6c\x6c\xe7\x20\xbd\x82\xa4\ -\x1d\x41\x32\xec\x65\xb2\x82\x58\xf3\xda\x4d\x14\xf9\x72\x69\xec\ -\x0c\x03\x39\x9c\x2a\x45\xb7\xfe\x1d\x17\x1d\x4d\x8d\xc6\xd1\xe6\ -\x26\x05\xb0\x74\xe9\xd2\x2c\x80\xec\x7c\x76\xd8\x62\xb1\x38\x2e\ -\x5d\xbe\x8c\x50\x78\x1a\x1b\x37\xae\xc7\xa2\x85\x95\x94\x2d\xc2\ -\xe7\x0e\x76\x9b\xc3\x61\xe6\xa0\x71\x07\xc9\x01\x93\x69\xcc\x02\ -\xdc\x7e\xf8\x50\x74\x34\x36\x1b\x2d\x0d\xf5\xbc\xe9\x44\x75\x75\ -\x35\xe6\xf2\x5c\x98\x95\x48\x7e\x4b\x06\xd1\x68\x14\x81\x4b\x01\ -\x6e\x03\x0d\xb9\x1e\x0f\x72\xbd\x79\x6a\x6f\xd9\xec\x38\x91\x48\ -\xaa\x01\x63\x2c\x65\xd7\x34\xda\x54\xeb\xc2\x4e\x93\xc1\xdf\x8f\ -\x27\x44\x7b\x53\xb3\xd1\x70\xf8\x90\x02\x58\xb2\x64\x89\x02\x98\ -\xbd\x9e\x32\x88\x61\x78\x64\x18\x51\x7a\x11\x67\x4a\xaa\x16\x2f\ -\x42\xfd\x6f\x0d\x2c\xc4\xb5\xcc\x38\xdb\x96\x8d\x24\xbf\x2d\x2b\ -\x45\x1f\x92\xea\x3b\x1a\x89\x08\x6d\x3c\x14\x16\xc7\x9a\x5b\x8c\ -\x5f\x7e\xfe\x51\x49\x24\x19\x94\x94\x94\x3c\x03\x20\x07\x5c\x57\ -\x26\x8f\xf0\x44\x93\xeb\x5a\xc6\xb7\xa2\xb2\x12\x07\x0f\xd5\xc3\ -\x95\xc3\x68\xb2\x6b\xb9\x05\x66\x9a\x91\xcb\x5a\x83\x87\x2c\x53\ -\x49\xae\x8a\x47\xd1\x98\x38\xd1\xd6\x66\xfc\xf4\xfd\x01\x52\x4a\ -\x33\xcb\x15\x28\xe3\x2a\x96\xfa\xab\x8d\x2a\xa7\x92\xc0\xb2\xe8\ -\x95\x6b\xd7\x38\xd9\x31\x04\xa7\x82\xf4\xaa\x06\x87\x8f\x34\xf1\ -\x3c\x70\xcc\x00\x3c\x77\xd1\x0b\x9e\xdd\x49\x33\x21\xb4\x50\x22\ -\x21\xda\x1a\x5b\x8c\x6f\xbe\xde\x8f\x6a\xca\xb3\x69\xf3\x66\x32\ -\x98\xcb\x21\x8a\x20\x22\xe5\x88\x27\x94\xc6\x93\x8f\xc6\xe1\x1f\ -\xf2\xe3\xfe\xf8\x03\xee\xab\x5a\xec\xdd\xf7\x05\x6a\x96\x2f\x87\ -\x99\x34\x5f\x28\x3e\xf3\x53\xfe\x73\x60\x4a\x80\x69\x1e\xcc\x23\ -\xc3\x57\xbc\x57\x79\xa2\xd5\x6d\xab\x43\x59\x69\x09\x4f\x5c\xb9\ -\x82\xe5\xc8\xd3\x38\x7e\x3c\x39\x2e\x34\x1c\xae\xc7\x57\xfb\xf7\ -\x63\xc7\x8e\x77\xb1\x67\xcf\x67\xc8\xcb\xcf\xe5\x1c\xc4\xe5\x52\ -\x7f\x09\x40\x4a\x25\x01\x42\xe1\x50\x44\x9b\x9c\x0e\xdf\xce\xf3\ -\x7a\x7c\x3a\x6f\xf2\x88\x43\x84\x49\x90\xa7\xa5\x9e\x3d\xc7\x99\ -\x1a\x1e\x1e\xc3\xa3\xc3\x78\xfc\xe0\x01\x19\x6e\xe2\x84\x9a\x34\ -\xda\xa6\x3c\xff\xdb\xbc\x02\xf5\xb8\x9d\x88\x9b\x56\xf0\x3f\xfe\ -\x19\x0e\x29\x33\x91\x8f\x11\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ -\x42\x60\x82\ -\x00\x00\x15\x5b\ -\xff\ -\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ -\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x06\x10\x0f\x0f\x0f\x0f\ -\x0f\x0f\x0f\x0f\x0f\x10\x0f\x0e\x0f\x10\x0f\x0f\x10\x10\x0f\x0e\ -\x0d\x0f\x15\x10\x15\x14\x14\x10\x14\x15\x17\x1c\x26\x1e\x17\x19\ -\x24\x19\x15\x14\x1f\x2f\x20\x23\x27\x29\x2c\x2c\x2c\x15\x1e\x31\ -\x35\x30\x2a\x35\x26\x2b\x2c\x29\x01\x09\x0a\x0a\x0e\x0c\x0e\x18\ -\x0f\x0f\x1a\x29\x1e\x1c\x1c\x29\x29\x29\x35\x29\x29\x29\x2e\x2d\ -\x29\x34\x2d\x2c\x2f\x2a\x29\x29\x29\x2d\x35\x29\x29\x29\x29\x29\ -\x29\x2c\x35\x29\x29\x29\x2d\x31\x35\x35\x29\x36\x29\x29\x29\x32\ -\x29\x29\x2c\x29\x29\x2c\x29\x2c\x29\xff\xc0\x00\x11\x08\x00\xcc\ -\x00\xf7\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1c\ -\x00\x00\x01\x05\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x01\x02\x03\x05\x06\x04\x07\x08\xff\xc4\x00\x51\x10\x00\ -\x01\x03\x02\x01\x03\x0e\x08\x0a\x08\x04\x07\x01\x00\x00\x00\x01\ -\x00\x02\x03\x04\x11\x12\x06\x21\x31\x05\x13\x23\x32\x41\x51\x53\ -\x71\x72\x73\x93\xb1\xb2\xd2\x07\x22\x33\x61\x74\x91\xa1\xc1\x42\ -\x52\x62\x81\x82\x92\xa2\xb3\xc2\xd1\x14\x15\x24\x34\x44\x83\xa3\ -\xc3\x43\x63\x75\x84\x54\x64\xa4\xb4\xd3\xe1\xf0\x16\xff\xc4\x00\ -\x1a\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x01\x02\x03\x04\x06\x05\xff\xc4\x00\x2a\x11\x01\x01\ -\x00\x02\x01\x02\x03\x08\x02\x03\x00\x00\x00\x00\x00\x00\x00\x01\ -\x02\x11\x03\x12\x31\x04\x32\x51\x05\x13\x21\x22\x35\x41\x71\xb1\ -\x14\xc1\x61\x72\xb2\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\ -\x00\x3f\x00\xb2\x86\x77\x96\xb4\x99\x25\xda\xb7\xfc\x59\x34\xd8\ -\x7c\xa4\xfd\x79\xfc\x24\xbd\x2c\x9d\xe4\xc8\x07\x88\xce\x4b\x7a\ -\x82\x7e\x15\xe8\xd4\x78\xf7\x46\xba\xfe\x12\x5e\x96\x4e\xf2\x35\ -\xe7\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\x50\xdd\xf5\x1a\xf3\xf8\ -\x49\x7a\x59\x3b\xc8\xd7\x9f\xc2\x4b\xd2\xc9\xde\x45\x91\x85\x35\ -\x0d\xd1\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x79\xfc\x24\xbd\x2c\x9d\ -\xe4\x61\x46\x14\xd4\x37\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\x35\xe7\ -\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\x50\xea\xa3\x5e\x7f\x09\x2f\ -\x4b\x27\x79\x1a\xf3\xf8\x49\x7a\x59\x3b\xc8\xc2\x8c\x29\xa8\x6e\ -\x8d\x79\xfc\x24\xbd\x2c\x9d\xe4\x6b\xcf\xe1\x25\xe9\x64\xef\x23\ -\x0a\x30\xa6\xa1\xba\x35\xd7\xf0\x92\xf4\xb2\x77\x91\xaf\x3f\x84\ -\x97\xa5\x93\xbc\x8c\x28\xc2\x9a\x86\xe8\xd7\x9f\xc2\x4b\xd2\xc9\ -\xde\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\x30\xa3\x0a\x6a\x1b\xa3\x5e\ -\x7f\x09\x2f\x4b\x27\x79\x1a\xf3\xf8\x49\x7a\x59\x3b\xc8\xc2\x8c\ -\x29\xa8\x75\x5f\x51\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x79\xfc\x24\ -\xbd\x2c\x9d\xe4\x61\x46\x14\xd4\x37\x7d\x46\xba\xfe\x12\x5e\x96\ -\x4e\xf2\x35\xe7\xf0\x92\xf4\xb2\x77\x91\x64\x61\x4d\x43\x74\x6b\ -\xcf\xe1\x25\xe9\x64\xef\x23\x5d\x7f\x09\x2f\x4b\x27\x79\x18\x51\ -\x85\x35\x0d\xd1\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x75\xfc\x24\xbd\ -\x2c\x9d\xe4\x61\x46\x14\xd4\x37\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\ -\x35\xe7\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\xa6\x1b\xa4\xd7\x9f\ -\xc2\x4b\xd2\xc9\xde\x42\x52\x12\x26\xa1\xd5\x4b\x03\x7c\x46\x72\ -\x1b\xd9\x09\xf8\x52\xc2\x36\x36\x72\x1b\xd9\x0b\x18\xfc\xa6\xaa\ -\x1a\xdf\x8f\x19\xc7\x10\x79\xbc\x4d\xcc\x73\x66\x16\x23\x36\x75\ -\x2e\x5a\x6a\x63\x72\xec\xd9\x61\x46\x15\x8f\x6e\x56\x54\x8e\x00\ -\xf1\xc4\xf1\xd5\x22\x78\xcb\x1a\x80\x5a\x0c\x70\x1b\xb9\xad\xd1\ -\x23\x6d\x72\x05\xf6\xc7\x7d\x4e\xb8\xbe\xef\x26\xb7\x0a\x30\xaa\ -\x69\x75\x6a\x66\xc4\xf9\x70\x42\x70\x34\xba\xd7\x90\x12\x90\xea\ -\xe4\xdc\x1c\x3f\x5a\x4f\xc9\x5e\xb8\x9e\xef\x25\xd6\x14\x61\x54\ -\xbf\xaf\x66\xe0\xe1\xfa\xf2\x77\x51\xfa\xf6\x6e\x0e\x1f\xae\xfe\ -\xea\x75\x43\xdd\xe4\xba\xc2\x8c\x2b\x31\x57\x94\x15\x03\x5e\x2d\ -\x31\xc7\xad\xc5\x8c\x00\xdd\x70\x38\xd9\xe7\x39\x75\x8f\xc1\x1a\ -\x15\x73\x72\xd2\xa8\x69\xd6\x0f\x1c\x4f\x1d\x4f\x53\xae\x2f\xba\ -\xad\xc6\x14\x61\x58\xc6\xe5\xcc\xfb\xb1\x40\x78\xb5\xc6\xfb\xca\ -\x99\xb9\x7a\xfd\xda\x66\x1e\x29\x9c\x3a\xd8\x55\xeb\x89\xee\xf2\ -\x6b\x70\xa3\x0a\xcb\xb7\x2f\x5b\xf0\xa9\x9d\xf4\x65\x6b\xba\xda\ -\x15\xae\xa2\x65\x14\x75\x6e\x7b\x1b\x1c\x8c\x73\x1a\x1e\x71\xe0\ -\x20\x82\x6d\x98\x82\x52\x65\x2a\x5c\x2c\x59\xe1\x46\x15\x2e\x14\ -\x61\x5a\x65\x16\x14\x61\x52\xe1\x46\x14\x11\x61\x46\x15\x2e\x14\ -\x61\x41\x16\x14\x61\x52\xe1\x46\x14\x11\x59\x18\x54\xb8\x51\x85\ -\x04\x58\x51\x65\x2e\x14\x61\x41\x16\x14\x61\x52\xe1\x46\x04\x34\ -\x8b\x0a\x30\xa9\x70\x23\x02\x1a\x47\x85\x09\xf8\x50\xa2\x96\x99\ -\xbe\x2c\x7c\x96\x75\x05\xe6\xb3\xff\x00\x81\xcc\x5b\xd5\xad\xaf\ -\x4e\xa5\x1e\x2c\x7c\x96\x75\x05\xe6\x55\x43\xc8\xf3\x72\x0f\x51\ -\x8d\x73\xcd\xdb\x8b\xee\x8d\x35\xda\x59\xce\x45\xf7\x8d\x4e\x4d\ -\x93\xe0\xf3\x91\x7d\xe3\x57\x37\x66\x96\xac\xfe\xc9\x3f\x34\xee\ -\xca\x61\x39\xcf\x19\x4e\xa9\xfd\xd2\x7e\x65\xfd\x92\x98\x4a\x05\ -\x42\x44\xb7\x41\xc1\x5b\xa2\xa7\xd1\xc7\x66\x65\x42\xaf\xaa\xff\ -\x00\x89\xf4\x71\xd5\x32\xa1\x40\x24\x4a\x91\x00\xb4\xd9\x00\x36\ -\x79\xf9\x96\x7d\xe2\xcc\x95\xa9\xf0\x7c\x36\x6a\x8e\x66\x3e\xd9\ -\x5a\xc7\xbb\x19\xf9\x6b\x6b\x85\x18\x54\x96\x46\x15\xd9\xe6\x47\ -\x85\x18\x54\x98\x51\x85\x04\x76\x46\x15\x25\x92\x61\x40\xcc\x28\ -\xc2\xa4\xb2\x4b\x20\x66\x14\x61\x52\x61\x49\x64\x0c\xc2\x92\xca\ -\x5b\x22\xc8\x23\xb2\x2c\xa4\xb2\x2c\x82\x3b\x22\xca\x4b\x22\xc8\ -\x23\xb2\x13\xec\x95\x14\xb4\xcd\xf1\x23\xe4\xb3\xa8\x2f\x31\xaf\ -\x16\x74\x7e\x6f\xd2\x07\xaa\x46\xfe\x4b\xd4\x69\x9b\xe2\x47\xc8\ -\x67\x64\x2f\x31\xd5\x51\x69\x07\x3b\x56\x3f\xaa\x7f\x25\xcf\x37\ -\x5e\x3f\xbb\x95\x47\x2e\xe7\x2e\x2f\xbc\x6a\x90\xa8\xe6\xd1\xf4\ -\xa3\xed\xb5\x73\x76\x69\xa7\xfd\xd6\x7e\x66\x4e\xc1\x51\xa9\x25\ -\xfd\xda\x6e\x66\x4e\xc1\x51\x37\x40\x40\xa9\x52\x5d\x08\x38\xab\ -\x3f\x89\xf4\x71\xd5\x32\xa1\x57\xd5\x5f\xc4\x7a\x3b\x7f\xbc\xa8\ -\x06\x84\x0a\x91\x16\x7d\xae\x22\x95\xc0\xe8\x2d\x8d\xee\x07\x3d\ -\xb4\xd9\x26\x17\xf0\x52\x8e\x36\x10\x80\x2b\x5b\xe0\xe9\xbb\x35\ -\x4f\x35\x17\x6d\xcb\x24\x43\xb7\x9a\x38\xdc\x47\xe1\x57\x59\x29\ -\xab\xec\xa3\x7c\xae\x95\xb8\x84\x8c\x8d\xa3\x5b\x92\x2c\xc5\xae\ -\x71\x37\xc4\x46\xfa\xb3\xbb\x39\x4d\xc7\xa6\x61\x46\x15\x9a\x6f\ -\x84\x2a\x53\xf0\x26\xf9\x8d\x39\xfe\xe2\x95\xb9\x79\x48\x7e\x0c\ -\xe3\xe8\x46\x7a\x9e\x57\x5e\xa8\xe1\xd1\x5a\x0c\x28\xc2\xa9\x1b\ -\x96\xb4\x87\x76\x61\xfc\x97\x9e\xab\xa9\x46\x57\xd1\xf0\x8f\x1c\ -\x70\x54\x77\x13\x70\xe9\xbe\x8b\x6c\x28\xc2\xab\x06\x55\xd1\x70\ -\xe0\x71\xc7\x33\x7a\xd8\x9c\x32\x9e\x88\xff\x00\x15\x10\xe3\x25\ -\xbd\x61\x36\x9d\x35\x63\x85\x18\x57\x13\x72\x86\x8c\xff\x00\x17\ -\x4d\xf3\xcd\x18\xeb\x2a\x56\xea\xc5\x31\xd1\x53\x4e\x78\xa7\x8b\ -\xf3\x57\x66\xab\xa3\x0a\x30\xa6\x36\xb6\x23\xa2\x68\x8f\x14\x8c\ -\x3e\xf5\x2b\x5c\x0e\x82\x0f\x11\x05\x0d\x1b\x85\x18\x54\x81\x87\ -\x78\xfa\x92\xeb\x67\x78\xfa\x91\x11\x61\x4b\x85\x3f\x0a\x30\xa0\ -\x8f\x0a\x30\xa9\x30\xa3\x0a\x06\x61\x42\x93\x0a\x11\x45\x3b\x76\ -\x36\x72\x19\xd9\x0b\xcc\x35\x70\x5a\x67\x0d\xea\xaa\xc1\xfd\x59\ -\x3f\x25\xea\x54\xe3\x63\x67\x21\x9d\x90\xbc\xc3\x28\x85\xa7\x93\ -\xcd\x59\x54\x3e\xd4\xa5\x63\x37\x5c\x15\xca\x39\xf6\xa7\x8d\xbd\ -\xa0\xa4\x51\xd4\xed\x1d\xff\x00\xdb\xab\x9b\xab\x4e\xef\xdd\xe6\ -\xe6\xa4\xec\x95\xcf\x19\xcc\x38\x87\x52\xe8\x1e\x42\x5e\x6d\xfd\ -\x92\xb9\x60\x3e\x2b\x79\x2d\xea\x41\x2d\xd0\x91\x08\x38\xea\xff\ -\x00\xc7\xf4\x71\xfd\xe5\x42\xdd\x03\xe6\x57\xd5\x5a\x67\xf4\x76\ -\xff\x00\x79\x67\x66\xf2\x6e\xe4\x1e\xca\xb3\xe2\x25\xd7\x8b\x05\ -\x84\x8f\x60\xde\x12\x3d\xa0\x6e\xe8\xbd\x82\xed\xd4\xe8\xe7\x99\ -\xae\x73\x26\xc4\x31\x90\x3f\x6e\xa6\x8d\xd9\x9a\x2f\xe2\x48\xf0\ -\xed\x37\xce\xb2\x45\x82\xe7\x30\xd2\x77\x06\xfa\x9a\x9c\x67\x3c\ -\x43\xde\xbf\x53\x0f\x65\xe7\xc9\x9c\xe3\x99\xc9\x7d\x75\xbf\xee\ -\x31\xd7\xa6\xd9\xba\x99\x5d\xf0\x5b\x52\xee\x44\x94\x72\xf5\x38\ -\xa6\x54\xd2\xd7\x44\x03\xa5\x6d\x64\x6d\x2e\x6b\x03\xa4\xa7\x84\ -\x30\xb9\xda\x1b\x8b\x45\xca\xc9\x6b\x4d\xf8\xad\xf5\x05\x6d\x93\ -\x14\xec\x75\x4d\x8b\x18\x47\xe8\xd5\xae\xb3\x9a\xd2\x2e\x29\xa4\ -\x20\xd8\x8d\x20\xe7\x4f\x19\xec\x8e\x5f\x09\xc3\x9f\x3e\x5c\x93\ -\x29\x8c\xde\xba\x6c\xbf\xf5\x4c\x79\x26\x57\x5a\x59\x9f\xd2\x37\ -\x4b\x8f\x2a\x06\x3b\xb2\x54\x64\x4b\xba\xc8\xcf\x2a\x8e\x43\xd4\ -\xae\x98\x73\x0e\x20\x9c\xbf\x29\xb5\x09\x0e\xdd\x86\x98\xf1\xd2\ -\xca\xd4\xc2\xf1\xbb\x0d\x27\xda\x8f\xdc\xb4\x20\xa5\xbf\x9d\x06\ -\x77\x5e\x67\x03\x4f\xf4\x6a\x9c\xdf\x72\x70\x95\x9c\x07\xd5\xac\ -\x79\x5a\x02\x98\x61\x69\xd2\xd6\x9e\x36\x82\x82\x90\x16\xf0\x15\ -\x1f\x46\x7c\x5d\x6e\x41\x6b\x37\x62\xac\x1f\x3c\x4e\xeb\x2a\xe0\ -\xd1\x44\x74\xc5\x17\x46\xcf\xc9\x27\xea\xf8\xb8\x28\xfe\x66\x81\ -\xd4\x82\x94\xc7\x0e\xeb\x6a\x87\x1c\x50\xbb\xf0\x94\xdd\x6a\x9f\ -\x7e\x51\xc7\x4c\xd3\xd4\xc5\x79\xfa\xbe\x3f\x8b\x6e\x27\x3c\x75\ -\x14\x9f\xab\xe3\xf9\x63\xf9\xb2\xf7\x90\x52\x88\xe0\xdc\x98\x8e\ -\x3a\x57\x8e\xa0\x13\xda\xf8\xc6\x8a\xb0\xdf\xa1\x33\x3f\x18\x56\ -\xdf\xab\x59\xbf\x27\x48\xe3\xd7\x74\x87\x53\x1b\xf1\xe4\xfe\x99\ -\xeb\x62\x0a\xf6\xd5\x91\xa3\x54\x00\xfe\x7c\xec\xfe\xe2\x95\x9a\ -\xa1\x3f\xc1\xd5\x10\x7f\xde\x4d\xde\x2b\xa4\xea\x50\xe1\x1d\xf3\ -\xb6\x23\xf8\x13\x0e\xa3\x83\xf0\xc7\xcf\x1b\x4f\x51\x08\x68\xac\ -\xd5\x1a\xdf\x83\x5b\x7f\xf7\x4e\x77\x5b\x4a\xe5\xd5\x0c\xaa\xae\ -\xa7\x2d\x69\xa9\x37\x70\x24\x12\xf8\xde\xdd\x36\xdd\x8d\x4c\xed\ -\x41\x07\x81\x3c\x70\x9e\xfa\xe4\xd5\x0d\x43\x0d\x86\x67\x06\xc3\ -\x9a\x29\x4e\x66\x39\xa7\x33\x09\xdf\x2a\xed\x35\x1b\x2c\x88\xa8\ -\xaf\x95\xb2\x49\x58\x5c\x62\x73\x62\x30\x17\x32\x28\xcb\xaf\x88\ -\x97\x00\xd0\x0e\x1b\x61\xce\x7e\x64\x2d\x4d\x2c\x21\x91\xb1\x83\ -\x30\x6b\x18\xd1\xc4\xd6\x81\xee\x48\xba\xb8\x5f\x8a\x4a\x61\xb1\ -\xb3\x9b\x67\x64\x2f\x2f\xca\x71\x6a\x89\x7d\x32\x6f\x6b\x64\x3e\ -\xf5\xea\x94\xcd\xd8\xe3\xe4\x33\xb2\x17\x97\x65\x68\xb5\x54\xfe\ -\x96\x7d\xb0\x93\xef\x59\xc9\xbc\x3b\xaa\x54\x55\x3b\x47\x72\x4a\ -\x91\x47\x55\xb4\x7f\x21\xdd\x45\x73\x75\x6a\x23\xf2\x4f\xe4\x3b\ -\xa9\x72\x53\xed\x19\xc8\x67\x64\x2e\xba\x7f\x26\xee\x49\xea\x5c\ -\x54\x9e\x4e\x3e\x6e\x3e\xc8\x41\x30\x48\x26\x6d\xf0\xe2\x6e\x2f\ -\x8b\x88\x62\xdf\xd1\xa5\x0b\x8c\x17\xeb\xf7\xb7\x8b\xb4\x07\x36\ -\x6f\x17\x17\xc4\xbe\x9f\x94\x81\xd5\x5a\x66\xf4\x71\xfd\xe5\x9d\ -\x9b\xc9\xbb\x90\x7b\x2b\x45\x53\xb6\x9b\xd1\xc7\x5c\xab\x39\x37\ -\x93\x77\x20\xf6\x55\xc7\xbc\x15\x70\x53\xba\x59\x5b\x13\x0b\x1a\ -\xe9\x25\x0c\x06\x47\x06\x30\x17\x3c\x36\xee\x71\xd0\x05\xee\x4e\ -\xe0\x05\x75\xd5\xea\x63\xe9\xa5\x7c\x72\x3a\x37\x16\x92\xdc\x70\ -\xbf\x5c\x8d\xc5\xa6\xce\xc2\xeb\x0b\x8b\x95\x5e\xe1\xe3\x5c\x12\ -\x0b\x5c\x48\x23\x70\xde\xeb\xa2\x39\x9c\xe2\x71\x12\x6c\x33\x68\ -\x16\xb9\x24\xe8\xf3\xaf\xa7\xf0\xd3\x97\xf9\x92\xef\xe5\xdd\xfd\ -\x57\x1b\xae\x94\x8a\xe3\x25\xbf\x79\x77\xa2\x57\xff\x00\xdb\x3d\ -\x53\xab\x7c\x96\xfd\xe1\xfe\x6a\x2a\xf3\xff\x00\x4e\xef\xcd\x7b\ -\xbd\xbb\xf4\xee\x6f\xf5\x67\x8f\xcd\x1a\x76\xe8\x1c\x49\x52\x04\ -\x2f\x89\x7a\x0a\x95\x35\x28\x40\xa8\x49\x74\x5d\x03\x81\x45\xd2\ -\x5d\x2a\x02\xe9\x52\x21\x02\xdd\x2a\x6a\x54\x0a\x84\x88\x40\xab\ -\x97\x55\x33\xc1\x28\xf8\xcc\x2d\xfa\xde\x2f\xbd\x74\xdd\x45\x52\ -\xcc\x41\x8d\xf8\xd3\xd2\xb3\xeb\x54\x46\xdf\x7a\x0f\x4b\x73\x73\ -\x9e\x33\xd6\x84\xfc\x3a\x50\xba\xed\xe7\xd1\x29\x9b\xb1\xc7\xc8\ -\x67\x64\x2f\x2e\xcb\x31\x6a\xba\x8f\x4a\x8c\xfa\xe9\x99\xf9\xaf\ -\x55\xa6\x1b\x1c\x7c\xdb\x3b\x21\x79\x6e\x5d\x36\xd5\x95\x1c\xfd\ -\x31\xf5\xd3\xc3\xf9\xac\xe4\xe9\x8f\x75\x0a\x8e\xa7\x68\xfe\x43\ -\xfb\x25\x48\xa3\xa8\xda\x3f\x90\xfe\xc9\x58\x74\x69\xe9\x3c\x99\ -\xe4\xae\x2a\x33\xb1\x45\xcd\xc7\xd8\x0b\xb2\x83\x69\xf4\x57\x0d\ -\x11\xd8\xa2\xe6\xe3\xec\x04\x1d\x0a\xbd\xa7\xf6\x8b\x5f\x77\x16\ -\x10\x47\x07\x6c\x67\x77\xcd\x6f\x9f\x42\xef\x5c\x46\x29\x35\xfb\ -\xd8\xe0\xbd\xf4\xf8\xbe\x4e\xd8\xad\x8b\x4d\xf3\x68\x40\xfa\x9d\ -\xb4\xbe\x8e\x3a\xe5\x59\xd9\xbc\x9b\xb9\xb3\xd9\x5a\x2a\x8d\xb4\ -\xbe\x8e\x3a\xe4\x59\xd9\xbc\x93\xb9\xb3\xd9\x57\x1e\xf0\x56\x53\ -\x52\xba\x69\x99\x13\x0b\x03\xe4\x95\xac\x69\x7b\x83\x1a\x0b\x9e\ -\x1a\x09\x3b\x83\x3d\xc9\xdc\x00\xae\xaa\xad\x4c\x92\x9a\x57\xc5\ -\x2e\x02\xe6\xb8\xb2\xf1\xbc\x48\xc7\x16\x9b\x3a\xce\x1a\x45\xca\ -\xaf\x7b\x7c\x6b\x83\x62\x1c\x48\x39\xb4\xdd\x74\x47\x33\x9c\x4e\ -\x23\x7b\x68\xcc\x00\x17\x24\x9b\x00\x37\xd7\xd3\xf8\x69\xcb\xfc\ -\xc9\x77\xf2\xee\xfe\xab\x8d\xd7\x4a\x45\x6f\x92\xfe\x5e\x5f\x35\ -\x0d\x7f\xdc\x2a\x85\x6f\x93\x1e\x5a\x7f\x40\xaf\xfb\xa0\x17\xb7\ -\xdb\xbf\x4f\xe6\xfc\x7f\x71\x9e\x3f\x34\x69\x90\x90\xe9\xf9\xd2\ -\xaf\x8a\x7a\x0a\x80\x52\x22\xe8\x1d\x74\x59\x71\xd6\xd1\x19\x1c\ -\xc3\x71\x61\xa6\xe0\x3a\xfe\x3b\x1d\xa0\x82\x0e\xd7\x75\x73\xc5\ -\x40\x58\xe7\xf8\xae\x7b\x6c\x03\x4d\xd8\x1c\x5a\x18\xd6\xda\xf7\ -\x04\x67\x07\x36\x8e\x24\x16\x89\x55\x4b\x63\x94\x60\xbe\xbb\x60\ -\xd6\x89\x08\x76\x22\x46\x26\x67\x6d\x89\xcf\x6c\x59\x80\xbe\x9c\ -\xe7\x32\xb0\xa6\xc5\x81\x98\xf6\xd8\x5b\x8b\x45\xf1\x5b\x3e\x8f\ -\x3a\x09\x90\x92\xe8\xba\x05\x45\xd1\x74\x20\x5b\xa2\xe9\x10\x81\ -\xc8\x89\xb7\x9a\x95\xbb\xf5\x94\x7e\xca\x86\x3b\xdc\x9a\xa6\xd4\ -\xd6\xde\xae\x84\x7f\xcd\xb0\xfd\x58\xe4\x7f\xe1\x48\x95\xe9\x21\ -\xa9\x14\xb6\x42\xe9\x5c\xa1\xb4\xcd\xd8\xe3\xe6\xd9\xd9\x0b\xcb\ -\xbc\x20\x0b\x56\x54\x72\xe8\xcf\xf4\xe2\x0b\xd5\xa9\x86\xc7\x1f\ -\x36\xce\xc8\x5e\x5b\xe1\x18\x5a\xb2\x6e\x2a\x23\xd8\x1e\xe5\x32\ -\x6b\x1e\xec\xca\x8e\x61\xe2\x3f\x92\xee\xa2\x9e\x9b\x2e\xd5\xdc\ -\x97\x75\x2c\x3a\x34\x7a\x98\x76\x36\xf2\x47\x52\xe2\xa1\xf2\x51\ -\xf3\x6c\xec\x85\xd7\xa9\x27\x63\x67\x25\xbd\x41\x71\xd0\xf9\x28\ -\xf9\x0d\xea\x41\xd0\x84\x89\x6e\x83\x96\x7d\xb4\x9c\xc0\xeb\x91\ -\x67\xa5\xf2\x47\x9b\x3d\x95\xa0\x9f\x6d\x27\x31\xef\x7a\xcf\xcb\ -\xe4\x8f\x36\x7b\x2a\xce\xe2\xb2\x9a\x95\xd3\x4c\xc8\x58\x58\x1f\ -\x24\xad\x63\x4c\x8e\xc0\xc0\x5c\xf0\xd0\x49\xdc\x19\xee\x4e\xe0\ -\x05\x75\x55\xea\x5c\x94\xd2\xc9\x14\xa6\x32\xe6\xb8\xb0\xba\x27\ -\xeb\x91\x92\xd3\x67\x59\xdb\xa2\xe5\x57\xb9\xbe\x35\xef\x62\x1c\ -\x48\x23\x70\xdd\x4f\x1c\xae\x71\x38\x8d\xec\x33\x68\x00\x5c\x92\ -\x6d\x6f\x3a\xfa\x7f\x0f\x39\x7f\x99\x2e\xfe\x5f\x8f\xea\xb8\xdd\ -\x69\x2a\xb7\xc9\x8f\x2b\x51\xfe\x9f\x5d\xd8\x6a\xa7\x57\x19\x31\ -\xe5\x2a\x7f\xd3\xeb\x3f\xb6\xbd\x7e\xdd\xfa\x7f\x2f\xe2\x7e\xe2\ -\x71\xf9\xa3\x4a\x74\x94\x5d\x23\x8e\x73\xc6\x51\x75\xf1\x8e\xe5\ -\x42\x4b\xa5\x40\x25\x48\x8b\xa0\x5b\xa5\xba\x6a\x10\x39\x09\x11\ -\x74\x0a\x84\x5d\x17\x40\xb7\x45\xd2\x21\x03\x97\x5e\xa0\xb6\xf5\ -\xf4\x43\x7a\x59\xdd\xea\xa4\x9f\xf3\x5c\x4a\xcf\x25\x1b\x7d\x52\ -\xa6\xf9\x31\x55\xbf\xfa\x6d\x67\xe3\x56\x25\xec\xf4\x4c\x28\x52\ -\xe1\x42\xde\xdc\xe1\x29\x5b\xb1\xc7\xcd\xc7\xd9\x0b\xcb\xfc\x26\ -\x36\xd5\x72\xf3\x34\x67\xfa\xae\x1e\xe5\xea\x94\xa3\x63\x8f\x9b\ -\x8f\xb2\x17\x97\xf8\x53\x6d\xaa\x9d\xe7\xa5\xa5\x3e\xa9\xe5\xfc\ -\x96\x6b\x51\x8f\x48\xfd\x07\x88\xf5\x25\x48\x56\x5b\x5f\x6a\x31\ -\xd8\xa3\xe4\x33\xb2\x17\x2d\x17\x93\x67\x24\x29\xf5\x14\xec\x31\ -\xf3\x6c\xec\x85\xcf\x45\xe4\xdb\xf3\xf5\x94\x1d\x17\x42\x44\x20\ -\xe6\x9b\x6e\xfe\x63\xf1\x3d\x67\xde\x2f\x19\xe6\xff\x00\x0a\xd0\ -\x4f\xb7\x7f\x30\x7a\xdc\xa8\xa3\xda\xb7\x92\x3a\x90\x54\x32\x9d\ -\xee\x26\xcd\x36\xb9\xce\x73\x0d\x3e\x75\x65\x43\x93\x15\x72\xb1\ -\xd2\x43\x18\x91\x98\xb0\x5c\x10\x33\x80\x09\xd2\x47\xc6\x5d\x54\ -\xf4\xaf\x93\x3d\x8e\x1c\xfb\x4d\x6d\xcf\x36\x24\x68\x27\xc5\xd1\ -\xbc\x55\x9d\x2d\x54\x90\x34\x35\x92\x4d\x1b\x45\xcd\x9d\x15\xc5\ -\xc9\xb9\xce\x1b\xbe\x77\xd7\xb6\xf8\xee\x6e\xae\xac\x6e\xbf\x0c\ -\xf4\xc5\x14\xda\x85\x58\xcd\xb5\x2c\xbf\x33\x4b\xba\xae\xa6\xd4\ -\x39\xdd\x0c\xb2\x89\x23\x7b\x35\xda\x69\xe0\x05\xf6\x63\x5a\xe7\ -\xe1\x20\xb8\xba\xd9\xbc\x53\xe7\xd0\xb4\x71\x65\x44\xe3\x44\xf0\ -\xbb\xcc\x6e\xd3\xda\x3d\x4b\xb1\x99\x55\x3f\xc2\x8a\x37\x8f\x33\ -\x81\xbf\xad\xa3\xad\x39\xfc\x7f\x3f\x3f\x15\xe2\xe4\xcb\x78\xdf\ -\xf1\x3f\x3f\x62\x63\x25\xdc\x73\xb6\x56\xbb\x3b\x48\x77\x24\x83\ -\xd4\x9c\x54\xae\xd5\xca\x77\xf9\x5a\x06\x13\xbf\xad\xc6\xe3\xf6\ -\x5c\x4a\x51\x57\xa9\xa7\x4c\x52\xc3\xc9\x7c\xf1\x01\xd4\x17\x89\ -\xa4\x28\x5d\x6c\x82\x81\xfe\x4e\xb2\x66\x1d\xec\x71\x4b\xda\xb9\ -\x53\x7e\xa1\x69\xda\x57\x46\x79\xd8\x4f\x5b\x48\x41\x5f\x74\x5d\ -\x77\xff\x00\xf9\xca\x8f\x81\x25\x24\xbc\x52\x3a\x33\xea\x20\xa8\ -\xdf\xa8\x35\x83\xf8\x52\xef\x3c\x52\x46\xf1\xed\x2d\x41\xc8\x95\ -\x2c\x94\xd3\x33\x6f\x4f\x50\xde\x38\x9c\xee\xc5\xd7\x3b\xaa\xd8\ -\x36\xc7\x0f\x2c\x3a\x3e\xd0\x08\x27\x45\xd4\x71\xce\xd7\x6d\x5c\ -\xd7\x72\x5c\x1d\xd4\xa4\xb2\x01\x2a\x44\x20\x5b\xa1\x22\x2e\x81\ -\xca\xe7\x22\x19\x7d\x51\x6f\xc9\xa3\xaa\x3e\xb9\xa9\x87\xe6\xa9\ -\x6e\xb4\x3e\x0f\x59\x7a\xe9\x8f\xc5\xa2\x03\xeb\xd4\x0f\xfc\x6a\ -\xc4\xaf\x40\xc2\x85\x21\x08\x5a\x60\xda\x56\xec\x71\xf3\x71\xf6\ -\x42\xf3\x1f\x0b\x0d\xb5\x4f\x1d\x14\x47\xd5\x3c\xeb\xd4\xa9\x06\ -\xc7\x1f\x37\x1f\x64\x2f\x31\xf0\xbc\xdd\x9d\xbe\x7a\x13\xec\x96\ -\x53\xef\x52\xb5\x18\x62\x84\x14\x2c\xb4\xb8\xd4\x43\xb0\xc7\xcd\ -\xb3\xb2\x14\x34\x9b\x41\xc6\xfe\xd9\x52\x6a\x19\xd8\x63\xe4\x37\ -\xb2\x14\x54\xbb\x5f\xa5\x27\xde\x39\x04\xe1\x2a\x6a\x5b\xa0\xe7\ -\x97\x6e\xee\x67\xf1\x15\x45\x16\xd5\xbc\x96\xf5\x2b\xc9\x8f\x8e\ -\x79\x93\xda\x2a\x8a\x2d\xab\x79\x2d\xea\x40\x3a\x30\x73\xe1\x17\ -\xdf\xb0\xba\x7b\x1c\xe6\xed\x5e\xf6\xf1\x3d\xe0\x7a\xae\x82\x91\ -\x04\xbf\xa6\x4b\xc2\x17\x0d\xe7\x86\x3c\x7b\x42\xd4\xe4\x6e\x48\ -\x1d\x52\x8a\x79\x31\xc1\x13\xa2\x91\xac\x1f\xb3\x93\x8a\xec\x0e\ -\xb9\x73\x5e\x08\xf5\x2c\x89\x5e\xab\xe0\x61\xbf\xb3\xd6\x7a\x4c\ -\x63\xfa\x2d\xfc\xd5\x89\x55\xb3\xf8\x2d\xaa\x6e\xd1\xf0\xbf\x93\ -\x3c\xec\x3e\xa7\xb0\x8f\x6a\xaf\x9f\x21\x35\x42\x3f\xf0\x65\x77\ -\x9d\x8e\xa5\x94\x7a\x9a\xe0\xef\x62\xf6\x5b\x22\xc9\xa4\xdb\xc1\ -\xea\xb5\x0e\xa9\x9e\x56\x09\x00\xff\x00\x36\x96\xa1\x8d\xfa\xd6\ -\x70\x55\xe2\x20\x0d\x83\x22\xbf\xf9\x52\xb5\xae\xf5\x78\xa5\x7d\ -\x12\x02\x8a\x7a\x46\x48\x2d\x23\x19\x20\xde\x91\xad\x78\xf6\xa6\ -\x8d\xbc\x08\x3e\x46\xff\x00\xc4\xb7\x89\xc6\x41\xd6\xe5\x2b\x35\ -\x6a\x66\x68\xa8\x7b\x79\xc6\x06\xfb\x9a\xbd\x96\x6c\x8e\xa0\x7e\ -\x9a\x38\x01\xdf\x8d\x82\x13\xeb\x8e\xc5\x70\x4d\xe0\xea\x89\xdb\ -\x5d\x7e\x2e\x44\xef\x70\xf5\x49\x88\x26\x97\x6f\x38\xa6\xca\xfa\ -\xc1\xb5\x9a\x39\x38\x9c\xe1\xef\x72\xed\x66\x5c\xd4\x8d\xbc\x2c\ -\x78\xfa\x0e\xed\x35\xab\x4f\x55\xe0\xa2\x17\x6d\x6a\x1d\xfc\xe8\ -\x21\x9b\xb3\x81\x55\xcf\xe0\x9a\x61\xe4\xe5\xa6\x77\x4f\x4c\x7e\ -\xc6\x20\x9a\x37\x15\xae\xca\xaa\x69\x3c\xbe\xa7\x44\xef\x39\x84\ -\x13\xf6\x09\x48\x35\x43\x51\xdd\xb6\xa7\x74\x07\x7d\x92\x4b\x05\ -\xbd\x60\x27\x4f\xe0\xe2\xbd\x9a\x23\x73\xf9\xaa\x88\x5f\xf7\xd8\ -\x4a\xae\x9b\x25\xeb\xa3\xdb\x41\x52\x38\xe9\x5f\x28\xfa\xd1\x1b\ -\x28\x2d\xa3\xa4\xd4\xb9\x3c\x9d\x5d\x4b\x3f\x98\xc9\x87\xda\xba\ -\x94\xe4\xcc\x4e\xf2\x7a\xa4\xce\x29\xa0\xb7\x67\x0a\xc8\xd4\x53\ -\x90\x6d\x23\x61\xbe\xf4\xb8\xa2\x77\xa9\xed\x29\xac\xa7\x23\x3b\ -\x62\x70\xf3\xc3\x23\x40\xfb\x2e\x08\xad\x79\xc8\xfa\x93\xe4\xe7\ -\xa2\x9b\x8a\x47\x46\x4f\xaf\x12\x86\x4c\x95\xd5\x06\xff\x00\x0b\ -\x8c\x6f\xc5\x2b\x1f\xd7\x85\x66\x45\x44\x8d\xf8\x75\x2c\xe3\x0f\ -\x78\xf5\xb9\xae\x0a\x78\x72\x82\x76\x1f\x16\xac\x5f\x79\xd6\x07\ -\xd8\x5a\x82\xce\x6d\x4f\xa8\x67\x94\xa4\xa9\x67\xf2\xb1\x8f\xb0\ -\x4a\xb0\xc8\xac\xa0\xa7\xa5\xac\x9d\xb5\x0e\x92\x27\x4b\x15\x14\ -\x31\xe2\x86\x51\xe3\xba\x69\x85\x8f\x8b\x71\x72\xe6\xe7\xd1\xea\ -\x5c\x10\x65\xbd\x7b\x06\x69\x43\x80\xf9\x6f\x68\xf6\xe2\x5d\x79\ -\x21\xa9\x52\xea\xd5\x7f\xeb\x3a\xa0\x45\x3d\x31\x89\x8c\x00\xe6\ -\x9e\x58\xae\xe6\x01\x60\x2e\x1a\x5c\x5c\x4d\xbe\x10\x1b\xa6\xd6\ -\x25\x7a\xc6\x14\x27\xd9\x0a\xb2\x6d\x20\xd8\xe3\xe6\xe3\xec\x85\ -\xe6\x9e\x18\x5b\xb2\xc4\x77\xe8\xa7\xf6\x3f\xff\x00\x6b\xd3\xe9\ -\x1b\xb1\x45\xcd\xc7\xd8\x0a\xa7\x29\x32\x36\x9b\x54\x70\xeb\xe6\ -\x56\xb9\x8c\x7c\x6d\x74\x4f\x0d\x38\x1f\x6c\x40\x87\x02\x0e\x81\ -\xb8\x95\x5e\x0c\x4f\xb4\xd8\x79\xce\xf7\x1a\xd2\xea\x2f\x83\xda\ -\xfa\xab\x3b\x5a\xfd\x1a\x33\x9f\x5c\xa9\xbb\x09\x1f\x26\x3d\xb9\ -\xf9\xc3\x47\x9d\x7a\xc6\xa2\x64\x7d\x1d\x15\x8c\x10\x34\x49\x6b\ -\x6b\xcf\xd9\x27\x3f\x4d\xd9\xdb\xc4\xdb\x0f\x32\xb8\xc2\xa6\x97\ -\x6c\x26\xa7\x78\x2b\x86\x28\xda\xc7\x55\x54\xbc\x80\x05\xd8\xd8\ -\x23\x6e\x8d\xc0\x58\xe3\xed\x51\x4d\xe0\xa1\x80\x6c\x35\x72\x37\ -\x3b\x8d\xa6\x89\x92\xe7\x2e\x24\xe7\x61\x66\xfa\xf4\x0c\x28\xc2\ -\x88\xf2\xda\x8f\x06\x75\xad\xda\x49\x4d\x2f\xd2\x92\x27\x1f\x98\ -\xb4\x8f\xb4\xaa\xea\x32\x43\x54\x23\xdb\x51\xca\xe1\xbf\x11\x8e\ -\x61\xea\x63\x8b\xbd\x8b\xd9\x70\xa5\xc2\x9a\x36\xf9\xf6\xb2\x99\ -\xf1\xca\x5b\x24\x72\xc6\x75\x97\x66\x96\x39\x22\x27\xc6\xde\x78\ -\x17\x59\xf8\xb6\xad\xe4\xb7\xa9\x7a\xbf\x85\x91\xb3\xd2\x7a\x3d\ -\x4f\xde\x46\xbc\xa2\x1d\xab\x79\x2d\xea\x51\xa3\x8a\x42\x6d\x9f\ -\x73\xa9\x5d\xe4\xee\x47\xd5\xea\x81\xfd\x9e\x3d\x8a\xf6\x75\x44\ -\x97\x64\x0d\x3b\xa3\x15\xae\xe3\xe6\x68\x27\x7e\xcb\xd5\xf2\x67\ -\xc1\x95\x25\x1e\x19\x24\x1f\xa5\x54\x0b\x11\x24\xad\x1a\xdc\x67\ -\xfc\xb8\xb3\x81\xc6\x6e\x77\x88\x41\xe6\xd9\x35\xe0\xee\xb2\xbb\ -\x0b\xcb\x7f\x46\xa7\x39\xf5\xe9\x9a\x6e\xf1\xbf\x1c\x79\x8b\xf8\ -\xcd\x9b\xe7\x2b\xd7\x72\x6b\x25\xe0\xd4\xe8\x4c\x50\x63\x38\x9d\ -\x8e\x47\xc8\x6e\xf9\x1f\x84\x36\xe6\xd6\x00\x58\x01\x60\x07\xbd\ -\x5d\xe1\x49\x85\x56\x51\xd9\x16\x52\xe1\x49\x85\x54\x47\x64\x59\ -\x4b\x85\x26\x14\x11\xd9\x16\x52\xe1\x46\x14\x11\x59\x16\x52\x61\ -\x4b\x85\x04\x58\x51\x85\x49\x85\x18\x50\x46\xe6\xdc\x58\xe7\x1b\ -\xc7\x38\xf5\x2a\xea\x9c\x9a\xa3\x97\x3c\x94\x74\xce\x3b\xe6\x08\ -\xc3\xbe\xb0\x17\x56\xd8\x51\x85\x06\x66\x6f\x07\xf4\x0e\xd1\x0b\ -\xe3\xe6\xe7\x9d\xbe\xc2\xe2\x3d\x8a\xbe\xa3\xc1\x7d\x3b\xb6\x95\ -\x15\x2d\xf3\x3f\x59\x95\xbd\x80\x7d\xab\x6b\x85\x18\x51\x5e\x63\ -\x5b\xe0\x73\x18\x2d\x6d\x4c\x20\x3a\xc0\xbb\xf4\x5c\x12\x35\xb7\ -\x17\x20\x87\x90\x4d\xaf\xa4\x59\x7a\x0e\xa6\xea\x64\x54\xd0\xc7\ -\x04\x2d\xc1\x14\x4d\x0d\x63\x74\x9b\x6e\x92\x77\x49\x37\x24\xee\ -\x92\x4a\xee\xc2\x8c\x28\x22\xb2\x14\xb8\x50\x88\x6d\x18\xd8\xa2\ -\xe6\xe3\xec\x05\x29\xcd\xa7\xcc\x3d\x79\x82\x6d\x1b\x76\x28\xb9\ -\xb8\xfb\x01\x53\xe5\x9c\x45\xd4\xad\x02\x57\x45\x7a\xba\x16\xe2\ -\x61\x00\x8c\x55\x51\xb2\xf9\xfe\x2e\x2c\x7c\x6c\x17\xcd\x75\x71\ -\x93\x2c\xa4\xbf\x0d\xaa\xee\xc8\xb2\x6d\x3d\x4b\x25\x18\xa3\x7b\ -\x5e\xd3\x7c\xed\x37\x1a\x54\xb8\x56\x25\x96\x6e\x24\xb2\xcd\xc3\ -\x2c\x8b\x27\xe1\x46\x15\x54\xcb\x22\xc9\xf8\x51\x85\x06\x37\x2e\ -\xf2\x3a\x7a\xf7\x42\xf8\x1f\x13\x4c\x51\xcc\xc2\xd9\x4b\xda\x1d\ -\x8c\xb0\x82\x1c\xd6\xba\xdb\x5d\xed\xd5\x55\x92\xde\x07\xe0\x80\ -\x31\xf5\xce\x15\x52\x00\x36\x26\xdc\x52\xb4\x81\xba\x0e\x79\x7e\ -\x7b\x0f\x92\xbd\x1f\x0a\x30\xa2\xa2\x8e\x20\xd0\x1a\xd0\x1a\xd6\ -\x80\x1a\xd6\x80\x1a\xd0\x34\x00\x06\x81\xe6\x4e\xb2\x7e\x14\x61\ -\x44\x32\xc8\xb2\x7e\x14\x61\x40\xcb\x22\xc9\xf8\x51\x85\x03\x2c\ -\x8b\x27\xe1\x46\x14\x0c\xb2\x2c\x9f\x85\x18\x50\x32\xc8\xb2\x7e\ -\x14\x61\x40\xcb\x22\xc9\xf8\x51\x85\x03\x2c\x8b\x27\xe1\x46\x14\ -\x0c\xb2\x2c\x9f\x85\x18\x50\x32\xc8\xb2\x7e\x14\x61\x40\xcb\x24\ -\x52\x61\x42\x94\x47\x47\xe4\xa2\xe6\xe3\xec\x85\x0e\xa9\xea\x4c\ -\x35\x4c\x11\xce\xc1\x23\x03\xda\xf0\xd2\x5c\xd1\x88\x5e\xdb\x52\ -\x2e\x33\x91\x6d\x06\xea\x6a\x3f\x25\x17\x37\x1f\x64\x29\x92\xcd\ -\xb5\x32\xb8\xdd\xcf\x85\x54\x53\xe4\xad\x2c\x73\x36\x78\xd8\xf6\ -\x3d\x8d\xc2\xd6\xb6\x69\x5b\x10\x17\x27\x68\x1d\x63\xa7\x41\xcd\ -\xe6\x56\xe8\x42\x49\x27\x63\x2c\xf2\xcb\xcd\x77\xa0\x84\x21\x56\ -\x42\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\ -\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\ -\x84\x02\x10\x84\x02\x10\x84\x1f\xff\xd9\ -\x00\x00\x15\x5b\ -\xff\ -\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ -\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x06\x10\x0f\x0f\x0f\x0f\ -\x0f\x0f\x0f\x0f\x0f\x10\x0f\x0e\x0f\x10\x0f\x0f\x10\x10\x0f\x0e\ -\x0d\x0f\x15\x10\x15\x14\x14\x10\x14\x15\x17\x1c\x26\x1e\x17\x19\ -\x24\x19\x15\x14\x1f\x2f\x20\x23\x27\x29\x2c\x2c\x2c\x15\x1e\x31\ -\x35\x30\x2a\x35\x26\x2b\x2c\x29\x01\x09\x0a\x0a\x0e\x0c\x0e\x18\ -\x0f\x0f\x1a\x29\x1e\x1c\x1c\x29\x29\x29\x35\x29\x29\x29\x2e\x2d\ -\x29\x34\x2d\x2c\x2f\x2a\x29\x29\x29\x2d\x35\x29\x29\x29\x29\x29\ -\x29\x2c\x35\x29\x29\x29\x2d\x31\x35\x35\x29\x36\x29\x29\x29\x32\ -\x29\x29\x2c\x29\x29\x2c\x29\x2c\x29\xff\xc0\x00\x11\x08\x00\xcc\ -\x00\xf7\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1c\ -\x00\x00\x01\x05\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x01\x02\x03\x05\x06\x04\x07\x08\xff\xc4\x00\x51\x10\x00\ -\x01\x03\x02\x01\x03\x0e\x08\x0a\x08\x04\x07\x01\x00\x00\x00\x01\ -\x00\x02\x03\x04\x11\x12\x06\x21\x31\x05\x13\x23\x32\x41\x51\x53\ -\x71\x72\x73\x93\xb1\xb2\xd2\x07\x22\x33\x61\x74\x91\xa1\xc1\x42\ -\x52\x62\x81\x82\x92\xa2\xb3\xc2\xd1\x14\x15\x24\x34\x44\x83\xa3\ -\xc3\x43\x63\x75\x84\x54\x64\xa4\xb4\xd3\xe1\xf0\x16\xff\xc4\x00\ -\x1a\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x01\x02\x03\x04\x06\x05\xff\xc4\x00\x2a\x11\x01\x01\ -\x00\x02\x01\x02\x03\x08\x02\x03\x00\x00\x00\x00\x00\x00\x00\x01\ -\x02\x11\x03\x12\x31\x04\x32\x51\x05\x13\x21\x22\x35\x41\x71\xb1\ -\x14\xc1\x61\x72\xb2\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\ -\x00\x3f\x00\xb2\x86\x77\x96\xb4\x99\x25\xda\xb7\xfc\x59\x34\xd8\ -\x7c\xa4\xfd\x79\xfc\x24\xbd\x2c\x9d\xe4\xc8\x07\x88\xce\x4b\x7a\ -\x82\x7e\x15\xe8\xd4\x78\xf7\x46\xba\xfe\x12\x5e\x96\x4e\xf2\x35\ -\xe7\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\x50\xdd\xf5\x1a\xf3\xf8\ -\x49\x7a\x59\x3b\xc8\xd7\x9f\xc2\x4b\xd2\xc9\xde\x45\x91\x85\x35\ -\x0d\xd1\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x79\xfc\x24\xbd\x2c\x9d\ -\xe4\x61\x46\x14\xd4\x37\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\x35\xe7\ -\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\x50\xea\xa3\x5e\x7f\x09\x2f\ -\x4b\x27\x79\x1a\xf3\xf8\x49\x7a\x59\x3b\xc8\xc2\x8c\x29\xa8\x6e\ -\x8d\x79\xfc\x24\xbd\x2c\x9d\xe4\x6b\xcf\xe1\x25\xe9\x64\xef\x23\ -\x0a\x30\xa6\xa1\xba\x35\xd7\xf0\x92\xf4\xb2\x77\x91\xaf\x3f\x84\ -\x97\xa5\x93\xbc\x8c\x28\xc2\x9a\x86\xe8\xd7\x9f\xc2\x4b\xd2\xc9\ -\xde\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\x30\xa3\x0a\x6a\x1b\xa3\x5e\ -\x7f\x09\x2f\x4b\x27\x79\x1a\xf3\xf8\x49\x7a\x59\x3b\xc8\xc2\x8c\ -\x29\xa8\x75\x5f\x51\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x79\xfc\x24\ -\xbd\x2c\x9d\xe4\x61\x46\x14\xd4\x37\x7d\x46\xba\xfe\x12\x5e\x96\ -\x4e\xf2\x35\xe7\xf0\x92\xf4\xb2\x77\x91\x64\x61\x4d\x43\x74\x6b\ -\xcf\xe1\x25\xe9\x64\xef\x23\x5d\x7f\x09\x2f\x4b\x27\x79\x18\x51\ -\x85\x35\x0d\xd1\xaf\x3f\x84\x97\xa5\x93\xbc\x8d\x75\xfc\x24\xbd\ -\x2c\x9d\xe4\x61\x46\x14\xd4\x37\x46\xbc\xfe\x12\x5e\x96\x4e\xf2\ -\x35\xe7\xf0\x92\xf4\xb2\x77\x91\x85\x18\x53\xa6\x1b\xa4\xd7\x9f\ -\xc2\x4b\xd2\xc9\xde\x42\x52\x12\x26\xa1\xd5\x4b\x03\x7c\x46\x72\ -\x1b\xd9\x09\xf8\x52\xc2\x36\x36\x72\x1b\xd9\x0b\x18\xfc\xa6\xaa\ -\x1a\xdf\x8f\x19\xc7\x10\x79\xbc\x4d\xcc\x73\x66\x16\x23\x36\x75\ -\x2e\x5a\x6a\x63\x72\xec\xd9\x61\x46\x15\x8f\x6e\x56\x54\x8e\x00\ -\xf1\xc4\xf1\xd5\x22\x78\xcb\x1a\x80\x5a\x0c\x70\x1b\xb9\xad\xd1\ -\x23\x6d\x72\x05\xf6\xc7\x7d\x4e\xb8\xbe\xef\x26\xb7\x0a\x30\xaa\ -\x69\x75\x6a\x66\xc4\xf9\x70\x42\x70\x34\xba\xd7\x90\x12\x90\xea\ -\xe4\xdc\x1c\x3f\x5a\x4f\xc9\x5e\xb8\x9e\xef\x25\xd6\x14\x61\x54\ -\xbf\xaf\x66\xe0\xe1\xfa\xf2\x77\x51\xfa\xf6\x6e\x0e\x1f\xae\xfe\ -\xea\x75\x43\xdd\xe4\xba\xc2\x8c\x2b\x31\x57\x94\x15\x03\x5e\x2d\ -\x31\xc7\xad\xc5\x8c\x00\xdd\x70\x38\xd9\xe7\x39\x75\x8f\xc1\x1a\ -\x15\x73\x72\xd2\xa8\x69\xd6\x0f\x1c\x4f\x1d\x4f\x53\xae\x2f\xba\ -\xad\xc6\x14\x61\x58\xc6\xe5\xcc\xfb\xb1\x40\x78\xb5\xc6\xfb\xca\ -\x99\xb9\x7a\xfd\xda\x66\x1e\x29\x9c\x3a\xd8\x55\xeb\x89\xee\xf2\ -\x6b\x70\xa3\x0a\xcb\xb7\x2f\x5b\xf0\xa9\x9d\xf4\x65\x6b\xba\xda\ -\x15\xae\xa2\x65\x14\x75\x6e\x7b\x1b\x1c\x8c\x73\x1a\x1e\x71\xe0\ -\x20\x82\x6d\x98\x82\x52\x65\x2a\x5c\x2c\x59\xe1\x46\x15\x2e\x14\ -\x61\x5a\x65\x16\x14\x61\x52\xe1\x46\x14\x11\x61\x46\x15\x2e\x14\ -\x61\x41\x16\x14\x61\x52\xe1\x46\x14\x11\x59\x18\x54\xb8\x51\x85\ -\x04\x58\x51\x65\x2e\x14\x61\x41\x16\x14\x61\x52\xe1\x46\x04\x34\ -\x8b\x0a\x30\xa9\x70\x23\x02\x1a\x47\x85\x09\xf8\x50\xa2\x96\x99\ -\xbe\x2c\x7c\x96\x75\x05\xe6\xb3\xff\x00\x81\xcc\x5b\xd5\xad\xaf\ -\x4e\xa5\x1e\x2c\x7c\x96\x75\x05\xe6\x55\x43\xc8\xf3\x72\x0f\x51\ -\x8d\x73\xcd\xdb\x8b\xee\x8d\x35\xda\x59\xce\x45\xf7\x8d\x4e\x4d\ -\x93\xe0\xf3\x91\x7d\xe3\x57\x37\x66\x96\xac\xfe\xc9\x3f\x34\xee\ -\xca\x61\x39\xcf\x19\x4e\xa9\xfd\xd2\x7e\x65\xfd\x92\x98\x4a\x05\ -\x42\x44\xb7\x41\xc1\x5b\xa2\xa7\xd1\xc7\x66\x65\x42\xaf\xaa\xff\ -\x00\x89\xf4\x71\xd5\x32\xa1\x40\x24\x4a\x91\x00\xb4\xd9\x00\x36\ -\x79\xf9\x96\x7d\xe2\xcc\x95\xa9\xf0\x7c\x36\x6a\x8e\x66\x3e\xd9\ -\x5a\xc7\xbb\x19\xf9\x6b\x6b\x85\x18\x54\x96\x46\x15\xd9\xe6\x47\ -\x85\x18\x54\x98\x51\x85\x04\x76\x46\x15\x25\x92\x61\x40\xcc\x28\ -\xc2\xa4\xb2\x4b\x20\x66\x14\x61\x52\x61\x49\x64\x0c\xc2\x92\xca\ -\x5b\x22\xc8\x23\xb2\x2c\xa4\xb2\x2c\x82\x3b\x22\xca\x4b\x22\xc8\ -\x23\xb2\x13\xec\x95\x14\xb4\xcd\xf1\x23\xe4\xb3\xa8\x2f\x31\xaf\ -\x16\x74\x7e\x6f\xd2\x07\xaa\x46\xfe\x4b\xd4\x69\x9b\xe2\x47\xc8\ -\x67\x64\x2f\x31\xd5\x51\x69\x07\x3b\x56\x3f\xaa\x7f\x25\xcf\x37\ -\x5e\x3f\xbb\x95\x47\x2e\xe7\x2e\x2f\xbc\x6a\x90\xa8\xe6\xd1\xf4\ -\xa3\xed\xb5\x73\x76\x69\xa7\xfd\xd6\x7e\x66\x4e\xc1\x51\xa9\x25\ -\xfd\xda\x6e\x66\x4e\xc1\x51\x37\x40\x40\xa9\x52\x5d\x08\x38\xab\ -\x3f\x89\xf4\x71\xd5\x32\xa1\x57\xd5\x5f\xc4\x7a\x3b\x7f\xbc\xa8\ -\x06\x84\x0a\x91\x16\x7d\xae\x22\x95\xc0\xe8\x2d\x8d\xee\x07\x3d\ -\xb4\xd9\x26\x17\xf0\x52\x8e\x36\x10\x80\x2b\x5b\xe0\xe9\xbb\x35\ -\x4f\x35\x17\x6d\xcb\x24\x43\xb7\x9a\x38\xdc\x47\xe1\x57\x59\x29\ -\xab\xec\xa3\x7c\xae\x95\xb8\x84\x8c\x8d\xa3\x5b\x92\x2c\xc5\xae\ -\x71\x37\xc4\x46\xfa\xb3\xbb\x39\x4d\xc7\xa6\x61\x46\x15\x9a\x6f\ -\x84\x2a\x53\xf0\x26\xf9\x8d\x39\xfe\xe2\x95\xb9\x79\x48\x7e\x0c\ -\xe3\xe8\x46\x7a\x9e\x57\x5e\xa8\xe1\xd1\x5a\x0c\x28\xc2\xa9\x1b\ -\x96\xb4\x87\x76\x61\xfc\x97\x9e\xab\xa9\x46\x57\xd1\xf0\x8f\x1c\ -\x70\x54\x77\x13\x70\xe9\xbe\x8b\x6c\x28\xc2\xab\x06\x55\xd1\x70\ -\xe0\x71\xc7\x33\x7a\xd8\x9c\x32\x9e\x88\xff\x00\x15\x10\xe3\x25\ -\xbd\x61\x36\x9d\x35\x63\x85\x18\x57\x13\x72\x86\x8c\xff\x00\x17\ -\x4d\xf3\xcd\x18\xeb\x2a\x56\xea\xc5\x31\xd1\x53\x4e\x78\xa7\x8b\ -\xf3\x57\x66\xab\xa3\x0a\x30\xa6\x36\xb6\x23\xa2\x68\x8f\x14\x8c\ -\x3e\xf5\x2b\x5c\x0e\x82\x0f\x11\x05\x0d\x1b\x85\x18\x54\x81\x87\ -\x78\xfa\x92\xeb\x67\x78\xfa\x91\x11\x61\x4b\x85\x3f\x0a\x30\xa0\ -\x8f\x0a\x30\xa9\x30\xa3\x0a\x06\x61\x42\x93\x0a\x11\x45\x3b\x76\ -\x36\x72\x19\xd9\x0b\xcc\x35\x70\x5a\x67\x0d\xea\xaa\xc1\xfd\x59\ -\x3f\x25\xea\x54\xe3\x63\x67\x21\x9d\x90\xbc\xc3\x28\x85\xa7\x93\ -\xcd\x59\x54\x3e\xd4\xa5\x63\x37\x5c\x15\xca\x39\xf6\xa7\x8d\xbd\ -\xa0\xa4\x51\xd4\xed\x1d\xff\x00\xdb\xab\x9b\xab\x4e\xef\xdd\xe6\ -\xe6\xa4\xec\x95\xcf\x19\xcc\x38\x87\x52\xe8\x1e\x42\x5e\x6d\xfd\ -\x92\xb9\x60\x3e\x2b\x79\x2d\xea\x41\x2d\xd0\x91\x08\x38\xea\xff\ -\x00\xc7\xf4\x71\xfd\xe5\x42\xdd\x03\xe6\x57\xd5\x5a\x67\xf4\x76\ -\xff\x00\x79\x67\x66\xf2\x6e\xe4\x1e\xca\xb3\xe2\x25\xd7\x8b\x05\ -\x84\x8f\x60\xde\x12\x3d\xa0\x6e\xe8\xbd\x82\xed\xd4\xe8\xe7\x99\ -\xae\x73\x26\xc4\x31\x90\x3f\x6e\xa6\x8d\xd9\x9a\x2f\xe2\x48\xf0\ -\xed\x37\xce\xb2\x45\x82\xe7\x30\xd2\x77\x06\xfa\x9a\x9c\x67\x3c\ -\x43\xde\xbf\x53\x0f\x65\xe7\xc9\x9c\xe3\x99\xc9\x7d\x75\xbf\xee\ -\x31\xd7\xa6\xd9\xba\x99\x5d\xf0\x5b\x52\xee\x44\x94\x72\xf5\x38\ -\xa6\x54\xd2\xd7\x44\x03\xa5\x6d\x64\x6d\x2e\x6b\x03\xa4\xa7\x84\ -\x30\xb9\xda\x1b\x8b\x45\xca\xc9\x6b\x4d\xf8\xad\xf5\x05\x6d\x93\ -\x14\xec\x75\x4d\x8b\x18\x47\xe8\xd5\xae\xb3\x9a\xd2\x2e\x29\xa4\ -\x20\xd8\x8d\x20\xe7\x4f\x19\xec\x8e\x5f\x09\xc3\x9f\x3e\x5c\x93\ -\x29\x8c\xde\xba\x6c\xbf\xf5\x4c\x79\x26\x57\x5a\x59\x9f\xd2\x37\ -\x4b\x8f\x2a\x06\x3b\xb2\x54\x64\x4b\xba\xc8\xcf\x2a\x8e\x43\xd4\ -\xae\x98\x73\x0e\x20\x9c\xbf\x29\xb5\x09\x0e\xdd\x86\x98\xf1\xd2\ -\xca\xd4\xc2\xf1\xbb\x0d\x27\xda\x8f\xdc\xb4\x20\xa5\xbf\x9d\x06\ -\x77\x5e\x67\x03\x4f\xf4\x6a\x9c\xdf\x72\x70\x95\x9c\x07\xd5\xac\ -\x79\x5a\x02\x98\x61\x69\xd2\xd6\x9e\x36\x82\x82\x90\x16\xf0\x15\ -\x1f\x46\x7c\x5d\x6e\x41\x6b\x37\x62\xac\x1f\x3c\x4e\xeb\x2a\xe0\ -\xd1\x44\x74\xc5\x17\x46\xcf\xc9\x27\xea\xf8\xb8\x28\xfe\x66\x81\ -\xd4\x82\x94\xc7\x0e\xeb\x6a\x87\x1c\x50\xbb\xf0\x94\xdd\x6a\x9f\ -\x7e\x51\xc7\x4c\xd3\xd4\xc5\x79\xfa\xbe\x3f\x8b\x6e\x27\x3c\x75\ -\x14\x9f\xab\xe3\xf9\x63\xf9\xb2\xf7\x90\x52\x88\xe0\xdc\x98\x8e\ -\x3a\x57\x8e\xa0\x13\xda\xf8\xc6\x8a\xb0\xdf\xa1\x33\x3f\x18\x56\ -\xdf\xab\x59\xbf\x27\x48\xe3\xd7\x74\x87\x53\x1b\xf1\xe4\xfe\x99\ -\xeb\x62\x0a\xf6\xd5\x91\xa3\x54\x00\xfe\x7c\xec\xfe\xe2\x95\x9a\ -\xa1\x3f\xc1\xd5\x10\x7f\xde\x4d\xde\x2b\xa4\xea\x50\xe1\x1d\xf3\ -\xb6\x23\xf8\x13\x0e\xa3\x83\xf0\xc7\xcf\x1b\x4f\x51\x08\x68\xac\ -\xd5\x1a\xdf\x83\x5b\x7f\xf7\x4e\x77\x5b\x4a\xe5\xd5\x0c\xaa\xae\ -\xa7\x2d\x69\xa9\x37\x70\x24\x12\xf8\xde\xdd\x36\xdd\x8d\x4c\xed\ -\x41\x07\x81\x3c\x70\x9e\xfa\xe4\xd5\x0d\x43\x0d\x86\x67\x06\xc3\ -\x9a\x29\x4e\x66\x39\xa7\x33\x09\xdf\x2a\xed\x35\x1b\x2c\x88\xa8\ -\xaf\x95\xb2\x49\x58\x5c\x62\x73\x62\x30\x17\x32\x28\xcb\xaf\x88\ -\x97\x00\xd0\x0e\x1b\x61\xce\x7e\x64\x2d\x4d\x2c\x21\x91\xb1\x83\ -\x30\x6b\x18\xd1\xc4\xd6\x81\xee\x48\xba\xb8\x5f\x8a\x4a\x61\xb1\ -\xb3\x9b\x67\x64\x2f\x2f\xca\x71\x6a\x89\x7d\x32\x6f\x6b\x64\x3e\ -\xf5\xea\x94\xcd\xd8\xe3\xe4\x33\xb2\x17\x97\x65\x68\xb5\x54\xfe\ -\x96\x7d\xb0\x93\xef\x59\xc9\xbc\x3b\xaa\x54\x55\x3b\x47\x72\x4a\ -\x91\x47\x55\xb4\x7f\x21\xdd\x45\x73\x75\x6a\x23\xf2\x4f\xe4\x3b\ -\xa9\x72\x53\xed\x19\xc8\x67\x64\x2e\xba\x7f\x26\xee\x49\xea\x5c\ -\x54\x9e\x4e\x3e\x6e\x3e\xc8\x41\x30\x48\x26\x6d\xf0\xe2\x6e\x2f\ -\x8b\x88\x62\xdf\xd1\xa5\x0b\x8c\x17\xeb\xf7\xb7\x8b\xb4\x07\x36\ -\x6f\x17\x17\xc4\xbe\x9f\x94\x81\xd5\x5a\x66\xf4\x71\xfd\xe5\x9d\ -\x9b\xc9\xbb\x90\x7b\x2b\x45\x53\xb6\x9b\xd1\xc7\x5c\xab\x39\x37\ -\x93\x77\x20\xf6\x55\xc7\xbc\x15\x70\x53\xba\x59\x5b\x13\x0b\x1a\ -\xe9\x25\x0c\x06\x47\x06\x30\x17\x3c\x36\xee\x71\xd0\x05\xee\x4e\ -\xe0\x05\x75\xd5\xea\x63\xe9\xa5\x7c\x72\x3a\x37\x16\x92\xdc\x70\ -\xbf\x5c\x8d\xc5\xa6\xce\xc2\xeb\x0b\x8b\x95\x5e\xe1\xe3\x5c\x12\ -\x0b\x5c\x48\x23\x70\xde\xeb\xa2\x39\x9c\xe2\x71\x12\x6c\x33\x68\ -\x16\xb9\x24\xe8\xf3\xaf\xa7\xf0\xd3\x97\xf9\x92\xef\xe5\xdd\xfd\ -\x57\x1b\xae\x94\x8a\xe3\x25\xbf\x79\x77\xa2\x57\xff\x00\xdb\x3d\ -\x53\xab\x7c\x96\xfd\xe1\xfe\x6a\x2a\xf3\xff\x00\x4e\xef\xcd\x7b\ -\xbd\xbb\xf4\xee\x6f\xf5\x67\x8f\xcd\x1a\x76\xe8\x1c\x49\x52\x04\ -\x2f\x89\x7a\x0a\x95\x35\x28\x40\xa8\x49\x74\x5d\x03\x81\x45\xd2\ -\x5d\x2a\x02\xe9\x52\x21\x02\xdd\x2a\x6a\x54\x0a\x84\x88\x40\xab\ -\x97\x55\x33\xc1\x28\xf8\xcc\x2d\xfa\xde\x2f\xbd\x74\xdd\x45\x52\ -\xcc\x41\x8d\xf8\xd3\xd2\xb3\xeb\x54\x46\xdf\x7a\x0f\x4b\x73\x73\ -\x9e\x33\xd6\x84\xfc\x3a\x50\xba\xed\xe7\xd1\x29\x9b\xb1\xc7\xc8\ -\x67\x64\x2f\x2e\xcb\x31\x6a\xba\x8f\x4a\x8c\xfa\xe9\x99\xf9\xaf\ -\x55\xa6\x1b\x1c\x7c\xdb\x3b\x21\x79\x6e\x5d\x36\xd5\x95\x1c\xfd\ -\x31\xf5\xd3\xc3\xf9\xac\xe4\xe9\x8f\x75\x0a\x8e\xa7\x68\xfe\x43\ -\xfb\x25\x48\xa3\xa8\xda\x3f\x90\xfe\xc9\x58\x74\x69\xe9\x3c\x99\ -\xe4\xae\x2a\x33\xb1\x45\xcd\xc7\xd8\x0b\xb2\x83\x69\xf4\x57\x0d\ -\x11\xd8\xa2\xe6\xe3\xec\x04\x1d\x0a\xbd\xa7\xf6\x8b\x5f\x77\x16\ -\x10\x47\x07\x6c\x67\x77\xcd\x6f\x9f\x42\xef\x5c\x46\x29\x35\xfb\ -\xd8\xe0\xbd\xf4\xf8\xbe\x4e\xd8\xad\x8b\x4d\xf3\x68\x40\xfa\x9d\ -\xb4\xbe\x8e\x3a\xe5\x59\xd9\xbc\x9b\xb9\xb3\xd9\x5a\x2a\x8d\xb4\ -\xbe\x8e\x3a\xe4\x59\xd9\xbc\x93\xb9\xb3\xd9\x57\x1e\xf0\x56\x53\ -\x52\xba\x69\x99\x13\x0b\x03\xe4\x95\xac\x69\x7b\x83\x1a\x0b\x9e\ -\x1a\x09\x3b\x83\x3d\xc9\xdc\x00\xae\xaa\xad\x4c\x92\x9a\x57\xc5\ -\x2e\x02\xe6\xb8\xb2\xf1\xbc\x48\xc7\x16\x9b\x3a\xce\x1a\x45\xca\ -\xaf\x7b\x7c\x6b\x83\x62\x1c\x48\x39\xb4\xdd\x74\x47\x33\x9c\x4e\ -\x23\x7b\x68\xcc\x00\x17\x24\x9b\x00\x37\xd7\xd3\xf8\x69\xcb\xfc\ -\xc9\x77\xf2\xee\xfe\xab\x8d\xd7\x4a\x45\x6f\x92\xfe\x5e\x5f\x35\ -\x0d\x7f\xdc\x2a\x85\x6f\x93\x1e\x5a\x7f\x40\xaf\xfb\xa0\x17\xb7\ -\xdb\xbf\x4f\xe6\xfc\x7f\x71\x9e\x3f\x34\x69\x90\x90\xe9\xf9\xd2\ -\xaf\x8a\x7a\x0a\x80\x52\x22\xe8\x1d\x74\x59\x71\xd6\xd1\x19\x1c\ -\xc3\x71\x61\xa6\xe0\x3a\xfe\x3b\x1d\xa0\x82\x0e\xd7\x75\x73\xc5\ -\x40\x58\xe7\xf8\xae\x7b\x6c\x03\x4d\xd8\x1c\x5a\x18\xd6\xda\xf7\ -\x04\x67\x07\x36\x8e\x24\x16\x89\x55\x4b\x63\x94\x60\xbe\xbb\x60\ -\xd6\x89\x08\x76\x22\x46\x26\x67\x6d\x89\xcf\x6c\x59\x80\xbe\x9c\ -\xe7\x32\xb0\xa6\xc5\x81\x98\xf6\xd8\x5b\x8b\x45\xf1\x5b\x3e\x8f\ -\x3a\x09\x90\x92\xe8\xba\x05\x45\xd1\x74\x20\x5b\xa2\xe9\x10\x81\ -\xc8\x89\xb7\x9a\x95\xbb\xf5\x94\x7e\xca\x86\x3b\xdc\x9a\xa6\xd4\ -\xd6\xde\xae\x84\x7f\xcd\xb0\xfd\x58\xe4\x7f\xe1\x48\x95\xe9\x21\ -\xa9\x14\xb6\x42\xe9\x5c\xa1\xb4\xcd\xd8\xe3\xe6\xd9\xd9\x0b\xcb\ -\xbc\x20\x0b\x56\x54\x72\xe8\xcf\xf4\xe2\x0b\xd5\xa9\x86\xc7\x1f\ -\x36\xce\xc8\x5e\x5b\xe1\x18\x5a\xb2\x6e\x2a\x23\xd8\x1e\xe5\x32\ -\x6b\x1e\xec\xca\x8e\x61\xe2\x3f\x92\xee\xa2\x9e\x9b\x2e\xd5\xdc\ -\x97\x75\x2c\x3a\x34\x7a\x98\x76\x36\xf2\x47\x52\xe2\xa1\xf2\x51\ -\xf3\x6c\xec\x85\xd7\xa9\x27\x63\x67\x25\xbd\x41\x71\xd0\xf9\x28\ -\xf9\x0d\xea\x41\xd0\x84\x89\x6e\x83\x96\x7d\xb4\x9c\xc0\xeb\x91\ -\x67\xa5\xf2\x47\x9b\x3d\x95\xa0\x9f\x6d\x27\x31\xef\x7a\xcf\xcb\ -\xe4\x8f\x36\x7b\x2a\xce\xe2\xb2\x9a\x95\xd3\x4c\xc8\x58\x58\x1f\ -\x24\xad\x63\x4c\x8e\xc0\xc0\x5c\xf0\xd0\x49\xdc\x19\xee\x4e\xe0\ -\x05\x75\x55\xea\x5c\x94\xd2\xc9\x14\xa6\x32\xe6\xb8\xb0\xba\x27\ -\xeb\x91\x92\xd3\x67\x59\xdb\xa2\xe5\x57\xb9\xbe\x35\xef\x62\x1c\ -\x48\x23\x70\xdd\x4f\x1c\xae\x71\x38\x8d\xec\x33\x68\x00\x5c\x92\ -\x6d\x6f\x3a\xfa\x7f\x0f\x39\x7f\x99\x2e\xfe\x5f\x8f\xea\xb8\xdd\ -\x69\x2a\xb7\xc9\x8f\x2b\x51\xfe\x9f\x5d\xd8\x6a\xa7\x57\x19\x31\ -\xe5\x2a\x7f\xd3\xeb\x3f\xb6\xbd\x7e\xdd\xfa\x7f\x2f\xe2\x7e\xe2\ -\x71\xf9\xa3\x4a\x74\x94\x5d\x23\x8e\x73\xc6\x51\x75\xf1\x8e\xe5\ -\x42\x4b\xa5\x40\x25\x48\x8b\xa0\x5b\xa5\xba\x6a\x10\x39\x09\x11\ -\x74\x0a\x84\x5d\x17\x40\xb7\x45\xd2\x21\x03\x97\x5e\xa0\xb6\xf5\ -\xf4\x43\x7a\x59\xdd\xea\xa4\x9f\xf3\x5c\x4a\xcf\x25\x1b\x7d\x52\ -\xa6\xf9\x31\x55\xbf\xfa\x6d\x67\xe3\x56\x25\xec\xf4\x4c\x28\x52\ -\xe1\x42\xde\xdc\xe1\x29\x5b\xb1\xc7\xcd\xc7\xd9\x0b\xcb\xfc\x26\ -\x36\xd5\x72\xf3\x34\x67\xfa\xae\x1e\xe5\xea\x94\xa3\x63\x8f\x9b\ -\x8f\xb2\x17\x97\xf8\x53\x6d\xaa\x9d\xe7\xa5\xa5\x3e\xa9\xe5\xfc\ -\x96\x6b\x51\x8f\x48\xfd\x07\x88\xf5\x25\x48\x56\x5b\x5f\x6a\x31\ -\xd8\xa3\xe4\x33\xb2\x17\x2d\x17\x93\x67\x24\x29\xf5\x14\xec\x31\ -\xf3\x6c\xec\x85\xcf\x45\xe4\xdb\xf3\xf5\x94\x1d\x17\x42\x44\x20\ -\xe6\x9b\x6e\xfe\x63\xf1\x3d\x67\xde\x2f\x19\xe6\xff\x00\x0a\xd0\ -\x4f\xb7\x7f\x30\x7a\xdc\xa8\xa3\xda\xb7\x92\x3a\x90\x54\x32\x9d\ -\xee\x26\xcd\x36\xb9\xce\x73\x0d\x3e\x75\x65\x43\x93\x15\x72\xb1\ -\xd2\x43\x18\x91\x98\xb0\x5c\x10\x33\x80\x09\xd2\x47\xc6\x5d\x54\ -\xf4\xaf\x93\x3d\x8e\x1c\xfb\x4d\x6d\xcf\x36\x24\x68\x27\xc5\xd1\ -\xbc\x55\x9d\x2d\x54\x90\x34\x35\x92\x4d\x1b\x45\xcd\x9d\x15\xc5\ -\xc9\xb9\xce\x1b\xbe\x77\xd7\xb6\xf8\xee\x6e\xae\xac\x6e\xbf\x0c\ -\xf4\xc5\x14\xda\x85\x58\xcd\xb5\x2c\xbf\x33\x4b\xba\xae\xa6\xd4\ -\x39\xdd\x0c\xb2\x89\x23\x7b\x35\xda\x69\xe0\x05\xf6\x63\x5a\xe7\ -\xe1\x20\xb8\xba\xd9\xbc\x53\xe7\xd0\xb4\x71\x65\x44\xe3\x44\xf0\ -\xbb\xcc\x6e\xd3\xda\x3d\x4b\xb1\x99\x55\x3f\xc2\x8a\x37\x8f\x33\ -\x81\xbf\xad\xa3\xad\x39\xfc\x7f\x3f\x3f\x15\xe2\xe4\xcb\x78\xdf\ -\xf1\x3f\x3f\x62\x63\x25\xdc\x73\xb6\x56\xbb\x3b\x48\x77\x24\x83\ -\xd4\x9c\x54\xae\xd5\xca\x77\xf9\x5a\x06\x13\xbf\xad\xc6\xe3\xf6\ -\x5c\x4a\x51\x57\xa9\xa7\x4c\x52\xc3\xc9\x7c\xf1\x01\xd4\x17\x89\ -\xa4\x28\x5d\x6c\x82\x81\xfe\x4e\xb2\x66\x1d\xec\x71\x4b\xda\xb9\ -\x53\x7e\xa1\x69\xda\x57\x46\x79\xd8\x4f\x5b\x48\x41\x5f\x74\x5d\ -\x77\xff\x00\xf9\xca\x8f\x81\x25\x24\xbc\x52\x3a\x33\xea\x20\xa8\ -\xdf\xa8\x35\x83\xf8\x52\xef\x3c\x52\x46\xf1\xed\x2d\x41\xc8\x95\ -\x2c\x94\xd3\x33\x6f\x4f\x50\xde\x38\x9c\xee\xc5\xd7\x3b\xaa\xd8\ -\x36\xc7\x0f\x2c\x3a\x3e\xd0\x08\x27\x45\xd4\x71\xce\xd7\x6d\x5c\ -\xd7\x72\x5c\x1d\xd4\xa4\xb2\x01\x2a\x44\x20\x5b\xa1\x22\x2e\x81\ -\xca\xe7\x22\x19\x7d\x51\x6f\xc9\xa3\xaa\x3e\xb9\xa9\x87\xe6\xa9\ -\x6e\xb4\x3e\x0f\x59\x7a\xe9\x8f\xc5\xa2\x03\xeb\xd4\x0f\xfc\x6a\ -\xc4\xaf\x40\xc2\x85\x21\x08\x5a\x60\xda\x56\xec\x71\xf3\x71\xf6\ -\x42\xf3\x1f\x0b\x0d\xb5\x4f\x1d\x14\x47\xd5\x3c\xeb\xd4\xa9\x06\ -\xc7\x1f\x37\x1f\x64\x2f\x31\xf0\xbc\xdd\x9d\xbe\x7a\x13\xec\x96\ -\x53\xef\x52\xb5\x18\x62\x84\x14\x2c\xb4\xb8\xd4\x43\xb0\xc7\xcd\ -\xb3\xb2\x14\x34\x9b\x41\xc6\xfe\xd9\x52\x6a\x19\xd8\x63\xe4\x37\ -\xb2\x14\x54\xbb\x5f\xa5\x27\xde\x39\x04\xe1\x2a\x6a\x5b\xa0\xe7\ -\x97\x6e\xee\x67\xf1\x15\x45\x16\xd5\xbc\x96\xf5\x2b\xc9\x8f\x8e\ -\x79\x93\xda\x2a\x8a\x2d\xab\x79\x2d\xea\x40\x3a\x30\x73\xe1\x17\ -\xdf\xb0\xba\x7b\x1c\xe6\xed\x5e\xf6\xf1\x3d\xe0\x7a\xae\x82\x91\ -\x04\xbf\xa6\x4b\xc2\x17\x0d\xe7\x86\x3c\x7b\x42\xd4\xe4\x6e\x48\ -\x1d\x52\x8a\x79\x31\xc1\x13\xa2\x91\xac\x1f\xb3\x93\x8a\xec\x0e\ -\xb9\x73\x5e\x08\xf5\x2c\x89\x5e\xab\xe0\x61\xbf\xb3\xd6\x7a\x4c\ -\x63\xfa\x2d\xfc\xd5\x89\x55\xb3\xf8\x2d\xaa\x6e\xd1\xf0\xbf\x93\ -\x3c\xec\x3e\xa7\xb0\x8f\x6a\xaf\x9f\x21\x35\x42\x3f\xf0\x65\x77\ -\x9d\x8e\xa5\x94\x7a\x9a\xe0\xef\x62\xf6\x5b\x22\xc9\xa4\xdb\xc1\ -\xea\xb5\x0e\xa9\x9e\x56\x09\x00\xff\x00\x36\x96\xa1\x8d\xfa\xd6\ -\x70\x55\xe2\x20\x0d\x83\x22\xbf\xf9\x52\xb5\xae\xf5\x78\xa5\x7d\ -\x12\x02\x8a\x7a\x46\x48\x2d\x23\x19\x20\xde\x91\xad\x78\xf6\xa6\ -\x8d\xbc\x08\x3e\x46\xff\x00\xc4\xb7\x89\xc6\x41\xd6\xe5\x2b\x35\ -\x6a\x66\x68\xa8\x7b\x79\xc6\x06\xfb\x9a\xbd\x96\x6c\x8e\xa0\x7e\ -\x9a\x38\x01\xdf\x8d\x82\x13\xeb\x8e\xc5\x70\x4d\xe0\xea\x89\xdb\ -\x5d\x7e\x2e\x44\xef\x70\xf5\x49\x88\x26\x97\x6f\x38\xa6\xca\xfa\ -\xc1\xb5\x9a\x39\x38\x9c\xe1\xef\x72\xed\x66\x5c\xd4\x8d\xbc\x2c\ -\x78\xfa\x0e\xed\x35\xab\x4f\x55\xe0\xa2\x17\x6d\x6a\x1d\xfc\xe8\ -\x21\x9b\xb3\x81\x55\xcf\xe0\x9a\x61\xe4\xe5\xa6\x77\x4f\x4c\x7e\ -\xc6\x20\x9a\x37\x15\xae\xca\xaa\x69\x3c\xbe\xa7\x44\xef\x39\x84\ -\x13\xf6\x09\x48\x35\x43\x51\xdd\xb6\xa7\x74\x07\x7d\x92\x4b\x05\ -\xbd\x60\x27\x4f\xe0\xe2\xbd\x9a\x23\x73\xf9\xaa\x88\x5f\xf7\xd8\ -\x4a\xae\x9b\x25\xeb\xa3\xdb\x41\x52\x38\xe9\x5f\x28\xfa\xd1\x1b\ -\x28\x2d\xa3\xa4\xd4\xb9\x3c\x9d\x5d\x4b\x3f\x98\xc9\x87\xda\xba\ -\x94\xe4\xcc\x4e\xf2\x7a\xa4\xce\x29\xa0\xb7\x67\x0a\xc8\xd4\x53\ -\x90\x6d\x23\x61\xbe\xf4\xb8\xa2\x77\xa9\xed\x29\xac\xa7\x23\x3b\ -\x62\x70\xf3\xc3\x23\x40\xfb\x2e\x08\xad\x79\xc8\xfa\x93\xe4\xe7\ -\xa2\x9b\x8a\x47\x46\x4f\xaf\x12\x86\x4c\x95\xd5\x06\xff\x00\x0b\ -\x8c\x6f\xc5\x2b\x1f\xd7\x85\x66\x45\x44\x8d\xf8\x75\x2c\xe3\x0f\ -\x78\xf5\xb9\xae\x0a\x78\x72\x82\x76\x1f\x16\xac\x5f\x79\xd6\x07\ -\xd8\x5a\x82\xce\x6d\x4f\xa8\x67\x94\xa4\xa9\x67\xf2\xb1\x8f\xb0\ -\x4a\xb0\xc8\xac\xa0\xa7\xa5\xac\x9d\xb5\x0e\x92\x27\x4b\x15\x14\ -\x31\xe2\x86\x51\xe3\xba\x69\x85\x8f\x8b\x71\x72\xe6\xe7\xd1\xea\ -\x5c\x10\x65\xbd\x7b\x06\x69\x43\x80\xf9\x6f\x68\xf6\xe2\x5d\x79\ -\x21\xa9\x52\xea\xd5\x7f\xeb\x3a\xa0\x45\x3d\x31\x89\x8c\x00\xe6\ -\x9e\x58\xae\xe6\x01\x60\x2e\x1a\x5c\x5c\x4d\xbe\x10\x1b\xa6\xd6\ -\x25\x7a\xc6\x14\x27\xd9\x0a\xb2\x6d\x20\xd8\xe3\xe6\xe3\xec\x85\ -\xe6\x9e\x18\x5b\xb2\xc4\x77\xe8\xa7\xf6\x3f\xff\x00\x6b\xd3\xe9\ -\x1b\xb1\x45\xcd\xc7\xd8\x0a\xa7\x29\x32\x36\x9b\x54\x70\xeb\xe6\ -\x56\xb9\x8c\x7c\x6d\x74\x4f\x0d\x38\x1f\x6c\x40\x87\x02\x0e\x81\ -\xb8\x95\x5e\x0c\x4f\xb4\xd8\x79\xce\xf7\x1a\xd2\xea\x2f\x83\xda\ -\xfa\xab\x3b\x5a\xfd\x1a\x33\x9f\x5c\xa9\xbb\x09\x1f\x26\x3d\xb9\ -\xf9\xc3\x47\x9d\x7a\xc6\xa2\x64\x7d\x1d\x15\x8c\x10\x34\x49\x6b\ -\x6b\xcf\xd9\x27\x3f\x4d\xd9\xdb\xc4\xdb\x0f\x32\xb8\xc2\xa6\x97\ -\x6c\x26\xa7\x78\x2b\x86\x28\xda\xc7\x55\x54\xbc\x80\x05\xd8\xd8\ -\x23\x6e\x8d\xc0\x58\xe3\xed\x51\x4d\xe0\xa1\x80\x6c\x35\x72\x37\ -\x3b\x8d\xa6\x89\x92\xe7\x2e\x24\xe7\x61\x66\xfa\xf4\x0c\x28\xc2\ -\x88\xf2\xda\x8f\x06\x75\xad\xda\x49\x4d\x2f\xd2\x92\x27\x1f\x98\ -\xb4\x8f\xb4\xaa\xea\x32\x43\x54\x23\xdb\x51\xca\xe1\xbf\x11\x8e\ -\x61\xea\x63\x8b\xbd\x8b\xd9\x70\xa5\xc2\x9a\x36\xf9\xf6\xb2\x99\ -\xf1\xca\x5b\x24\x72\xc6\x75\x97\x66\x96\x39\x22\x27\xc6\xde\x78\ -\x17\x59\xf8\xb6\xad\xe4\xb7\xa9\x7a\xbf\x85\x91\xb3\xd2\x7a\x3d\ -\x4f\xde\x46\xbc\xa2\x1d\xab\x79\x2d\xea\x51\xa3\x8a\x42\x6d\x9f\ -\x73\xa9\x5d\xe4\xee\x47\xd5\xea\x81\xfd\x9e\x3d\x8a\xf6\x75\x44\ -\x97\x64\x0d\x3b\xa3\x15\xae\xe3\xe6\x68\x27\x7e\xcb\xd5\xf2\x67\ -\xc1\x95\x25\x1e\x19\x24\x1f\xa5\x54\x0b\x11\x24\xad\x1a\xdc\x67\ -\xfc\xb8\xb3\x81\xc6\x6e\x77\x88\x41\xe6\xd9\x35\xe0\xee\xb2\xbb\ -\x0b\xcb\x7f\x46\xa7\x39\xf5\xe9\x9a\x6e\xf1\xbf\x1c\x79\x8b\xf8\ -\xcd\x9b\xe7\x2b\xd7\x72\x6b\x25\xe0\xd4\xe8\x4c\x50\x63\x38\x9d\ -\x8e\x47\xc8\x6e\xf9\x1f\x84\x36\xe6\xd6\x00\x58\x01\x60\x07\xbd\ -\x5d\xe1\x49\x85\x56\x51\xd9\x16\x52\xe1\x49\x85\x54\x47\x64\x59\ -\x4b\x85\x26\x14\x11\xd9\x16\x52\xe1\x46\x14\x11\x59\x16\x52\x61\ -\x4b\x85\x04\x58\x51\x85\x49\x85\x18\x50\x46\xe6\xdc\x58\xe7\x1b\ -\xc7\x38\xf5\x2a\xea\x9c\x9a\xa3\x97\x3c\x94\x74\xce\x3b\xe6\x08\ -\xc3\xbe\xb0\x17\x56\xd8\x51\x85\x06\x66\x6f\x07\xf4\x0e\xd1\x0b\ -\xe3\xe6\xe7\x9d\xbe\xc2\xe2\x3d\x8a\xbe\xa3\xc1\x7d\x3b\xb6\x95\ -\x15\x2d\xf3\x3f\x59\x95\xbd\x80\x7d\xab\x6b\x85\x18\x51\x5e\x63\ -\x5b\xe0\x73\x18\x2d\x6d\x4c\x20\x3a\xc0\xbb\xf4\x5c\x12\x35\xb7\ -\x17\x20\x87\x90\x4d\xaf\xa4\x59\x7a\x0e\xa6\xea\x64\x54\xd0\xc7\ -\x04\x2d\xc1\x14\x4d\x0d\x63\x74\x9b\x6e\x92\x77\x49\x37\x24\xee\ -\x92\x4a\xee\xc2\x8c\x28\x22\xb2\x14\xb8\x50\x88\x6d\x18\xd8\xa2\ -\xe6\xe3\xec\x05\x29\xcd\xa7\xcc\x3d\x79\x82\x6d\x1b\x76\x28\xb9\ -\xb8\xfb\x01\x53\xe5\x9c\x45\xd4\xad\x02\x57\x45\x7a\xba\x16\xe2\ -\x61\x00\x8c\x55\x51\xb2\xf9\xfe\x2e\x2c\x7c\x6c\x17\xcd\x75\x71\ -\x93\x2c\xa4\xbf\x0d\xaa\xee\xc8\xb2\x6d\x3d\x4b\x25\x18\xa3\x7b\ -\x5e\xd3\x7c\xed\x37\x1a\x54\xb8\x56\x25\x96\x6e\x24\xb2\xcd\xc3\ -\x2c\x8b\x27\xe1\x46\x15\x54\xcb\x22\xc9\xf8\x51\x85\x06\x37\x2e\ -\xf2\x3a\x7a\xf7\x42\xf8\x1f\x13\x4c\x51\xcc\xc2\xd9\x4b\xda\x1d\ -\x8c\xb0\x82\x1c\xd6\xba\xdb\x5d\xed\xd5\x55\x92\xde\x07\xe0\x80\ -\x31\xf5\xce\x15\x52\x00\x36\x26\xdc\x52\xb4\x81\xba\x0e\x79\x7e\ -\x7b\x0f\x92\xbd\x1f\x0a\x30\xa2\xa2\x8e\x20\xd0\x1a\xd0\x1a\xd6\ -\x80\x1a\xd6\x80\x1a\xd0\x34\x00\x06\x81\xe6\x4e\xb2\x7e\x14\x61\ -\x44\x32\xc8\xb2\x7e\x14\x61\x40\xcb\x22\xc9\xf8\x51\x85\x03\x2c\ -\x8b\x27\xe1\x46\x14\x0c\xb2\x2c\x9f\x85\x18\x50\x32\xc8\xb2\x7e\ -\x14\x61\x40\xcb\x22\xc9\xf8\x51\x85\x03\x2c\x8b\x27\xe1\x46\x14\ -\x0c\xb2\x2c\x9f\x85\x18\x50\x32\xc8\xb2\x7e\x14\x61\x40\xcb\x24\ -\x52\x61\x42\x94\x47\x47\xe4\xa2\xe6\xe3\xec\x85\x0e\xa9\xea\x4c\ -\x35\x4c\x11\xce\xc1\x23\x03\xda\xf0\xd2\x5c\xd1\x88\x5e\xdb\x52\ -\x2e\x33\x91\x6d\x06\xea\x6a\x3f\x25\x17\x37\x1f\x64\x29\x92\xcd\ -\xb5\x32\xb8\xdd\xcf\x85\x54\x53\xe4\xad\x2c\x73\x36\x78\xd8\xf6\ -\x3d\x8d\xc2\xd6\xb6\x69\x5b\x10\x17\x27\x68\x1d\x63\xa7\x41\xcd\ -\xe6\x56\xe8\x42\x49\x27\x63\x2c\xf2\xcb\xcd\x77\xa0\x84\x21\x56\ -\x42\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\ -\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\ -\x84\x02\x10\x84\x02\x10\x84\x1f\xff\xd9\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x02\xa7\x49\x44\x41\x54\x78\x9c\x8d\x93\x4d\x48\x54\x51\ +\x18\x86\x9f\x3b\x1e\x1d\xa7\x71\x9c\xc9\x1f\xcc\x30\x1b\x49\x92\ +\x7e\xa0\xcc\xdc\x44\x45\x8b\xa0\x8d\x19\x2a\x6e\x62\x6a\x17\x35\ +\x54\x0b\x5d\xe9\xae\x9d\xb4\xa9\x85\x82\x41\xd0\xa2\xda\xd9\x18\ +\xe8\x2a\x08\x8a\x90\x20\x2a\xfa\x0f\x86\x0a\xad\x66\x94\x69\x9a\ +\x69\x9c\x99\xeb\xbd\xd7\x7b\xee\x3d\x2d\x46\x4b\x29\xa2\x77\xf7\ +\x9d\x73\xde\xe7\xfb\xbe\x17\x8e\xc6\xf0\x43\x05\x0c\x31\x72\xe4\ +\x32\x00\x17\xa7\x87\x11\xa2\x0f\x51\xde\x86\x10\x7e\x00\xa4\xd4\ +\x91\x76\x1c\x29\x63\x8c\x1e\x1f\x61\x8d\xb4\x15\x00\xd8\xf6\x20\ +\x8e\x3c\x89\xcf\xd7\x11\xae\xaf\xd6\x1a\x82\x3e\x0e\xb7\x35\x02\ +\xf0\x28\xbe\x40\x6a\xd1\x60\x2e\x9d\x57\x18\xc6\x73\x6c\x7b\x80\ +\xb1\xee\x99\x12\x60\xe8\x81\xea\x6f\x6f\x62\xe2\x45\x82\x70\x43\ +\x90\xce\xcd\x01\xc2\x4d\xf5\x00\xcc\x25\xd2\x00\xeb\xea\x89\xd7\ +\x0b\x60\x18\xb3\x2c\x5b\xa7\x19\xeb\x9e\x11\x28\x97\xcd\x8d\xb5\ +\xf4\x38\x2e\xcd\x4d\x75\x7c\x49\x66\x98\x78\xf2\x89\xb9\x74\x01\ +\x34\x0d\x94\x82\x57\x49\xc2\x75\xd5\x9c\xe8\xd8\x4a\x8f\xe3\x72\ +\xf7\xcd\x42\x0b\xca\xb9\x0a\x74\x96\x71\xe0\xf4\xa5\xbd\x2d\xf5\ +\xf8\xfd\x3e\x66\x13\x19\xa6\x5f\x7e\x25\xb7\xa8\xe7\x30\x8d\x3b\ +\x98\x46\x14\xcb\xba\x81\x2d\xbd\x39\xdd\x6c\x4e\x15\xac\xca\x3d\ +\xad\x9b\xd8\x54\x59\xc6\x87\xef\x7a\x23\xed\xfd\xcb\x02\xd7\x65\ +\xc9\x76\xd0\x80\xda\xda\x20\x47\x77\x38\xdc\x7f\x3f\x1f\xa2\x2a\ +\xf0\x96\x91\x23\x8f\x57\xb2\x7a\xcc\xf9\xa9\xc8\x5c\x32\x3d\x7a\ +\xcf\x75\x42\x87\x76\x37\xd3\xba\x21\xa9\x7d\xb4\xb4\x3e\x8d\xc1\ +\x7b\x0a\x05\x68\x6b\xa2\x5d\xad\xaf\x1c\x5b\x7b\x0a\x17\xa6\x6e\ +\x51\x51\x11\xe9\x3d\xbc\x8b\x6f\xa9\x2c\x33\xef\x12\x45\xf1\xc7\ +\xa3\x7f\xc9\x75\xc7\x91\x32\xa2\x9b\x36\xfe\x60\x00\x50\x7e\xf1\ +\xdf\xe6\x55\x39\x0e\x45\x4b\xa2\x94\x02\x29\x11\x9c\x9b\x2c\xa0\ +\xdc\xaa\x5f\x3b\x78\x3c\xb7\x19\xef\x39\xf5\x57\xb3\x52\x51\x1c\ +\x87\x82\x69\x53\xcc\xe5\x41\xb9\xba\x07\xa5\xe2\x48\x97\x6d\x3b\ +\x5b\x69\xdc\xd2\x00\x8e\xd3\x45\xf4\x6e\xe4\x0f\x73\x74\x32\x82\ +\x74\xba\xc2\x0d\x21\x8a\x96\x4d\x3a\x95\x05\x57\xc5\x05\x9a\x16\ +\x43\x39\xfb\x8a\xcb\xb6\xa6\x79\x2b\xc1\xe3\x09\x61\xdb\xa3\x9c\ +\x8d\x1d\xc3\xe3\x19\x5f\xd9\x3d\x8a\x2d\xbb\x70\x64\xc8\x0c\x04\ +\x59\xce\x2c\x52\xc8\xe5\x15\x5e\x6f\xac\x34\xf7\x99\x89\xa7\x58\ +\xe6\xfe\xea\xb6\xed\x00\xf8\x32\xdf\x48\x7d\xcf\xad\x69\xaf\x11\ +\x6e\xaa\x23\xeb\x0f\x21\xf5\x25\x96\x12\x49\xf0\x56\x3e\xe3\x7a\ +\x7f\x67\x29\x44\x21\x06\x70\x2b\x6e\xe6\x67\x3f\xb7\x88\xda\x1a\ +\xcc\xea\x1a\x2a\x02\x35\xb8\xa6\x51\x8a\xc5\xe7\x63\x5e\x81\x9b\ +\xd7\x91\xc9\x04\x78\xbd\xb3\x08\x31\x50\x42\xaf\xea\xdc\xe4\x41\ +\xa4\x7d\x15\xc3\xe8\x20\x18\xd2\x36\x7a\xcb\xf8\xe1\x0f\x95\xee\ +\xb2\x19\xb0\x2c\x30\x0d\x85\x6f\xc3\x73\xca\xc5\x00\xe3\xbd\x33\ +\xeb\x01\xbf\x41\xc3\x48\xd9\x87\xb4\xdb\x90\xd2\xbf\x32\xa1\x8e\ +\x28\x8f\x23\x44\x8c\x6b\xbd\xeb\xbe\xf3\x4f\x57\xf9\x31\xd1\xb0\ +\x87\x00\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xcc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -4084,499 +5378,6 @@ qt_resource_data = "\ \x87\xd6\x7d\x68\xd5\x8d\xd6\xd1\x95\x84\x55\xa4\x5b\x40\xca\x3c\ \xf7\x2e\xde\xf8\x5b\xfe\x1b\x1c\xdc\x0e\x28\xb8\xe3\xe8\xf3\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x1d\x4d\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ -\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\ -\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x1c\xed\x49\x44\x41\x54\x78\ -\x5e\xd5\x9a\x07\x50\x15\xe9\xb2\xc7\x4f\xbd\x7a\xf7\x56\xdd\x77\ -\xef\xae\x19\x90\x60\xda\x95\x9c\xc1\x2c\x41\x82\x01\x73\x58\x73\ -\x42\xc0\x80\x8a\x24\x23\x39\x9b\x15\x11\x33\xa2\x28\xa2\x28\x08\ -\x08\xa8\x98\x56\xd7\xb8\x86\x75\x57\xd7\x08\x98\x40\x24\x9c\x21\ -\x63\xdc\xfb\x7f\xdd\x03\x83\x07\x04\xd9\xeb\xee\xbe\xaa\x47\xd5\ -\xbf\xbe\x39\x33\x73\xe6\x4c\xff\xbe\xee\xfe\xba\x67\x90\x85\xc6\ -\x25\xe6\x84\xef\x4f\x91\x87\xed\x3d\xd2\x82\x92\xfe\xa0\xfe\xcc\ -\x6b\xb5\xa4\xe6\x7e\xeb\xe3\xfe\x95\xfb\xd3\xe4\xe1\x71\x47\xb2\ -\x65\x61\xfb\x92\xaa\xd6\x1f\x39\x8e\x35\x07\x8f\x7d\x56\xab\x13\ -\xd2\xfe\x90\xea\xaf\x95\xf0\xc7\xaf\xd5\x92\x9a\xbb\x6f\xc5\xfd\ -\x1b\x8e\x9c\x40\x44\x5c\x72\xa5\x6c\xd5\xbe\xa3\xc2\xba\xc4\x0c\ -\xac\x8a\x4f\xf9\x4b\xb4\x72\xff\xd1\xdf\xb5\xef\xff\x5a\xeb\x0e\ -\x65\x20\x3c\x2e\x45\x2e\x5b\x7b\x30\x4d\xd8\xc0\x1e\xc0\x84\xfe\ -\x22\xad\x3a\x90\x2a\x6a\xdd\xa1\x74\xac\xe5\x59\x39\x90\x26\x8e\ -\x6b\x45\x8f\x68\xf9\xfb\x7f\x85\x36\x1c\x3e\x4e\x20\xd2\xe4\xb2\ -\x0d\x89\x99\x42\x64\xf2\x49\xb0\x17\x44\x26\x9d\xc0\xa6\xa3\x59\ -\xd8\x92\x76\x06\x9b\x53\x4f\x83\xf7\xf3\x89\xeb\xe9\x18\x8b\xcf\ -\x61\x23\xea\x25\xed\xab\xd3\xfa\x66\xc4\xd7\x88\xa0\x59\x0f\xda\ -\x7d\x08\xeb\x0f\x67\x22\x9a\xae\xbf\x35\xfd\x2c\xa2\xe9\x37\x36\ -\x1e\xa9\xbd\x7e\x83\xeb\xd6\x5f\xbf\x4e\x4d\x1d\xfb\x83\x62\xdb\ -\x08\x04\x01\x38\x7c\x54\xd8\x7c\xf4\x14\xa2\x0f\x1d\x87\xef\xba\ -\x28\xb8\xae\xf0\xc7\xdc\x65\xfe\x58\xb6\x72\x3d\x56\x6d\xdf\x8d\ -\xa8\xfd\x87\xb0\xeb\x48\x1a\x76\xa4\x1e\x47\xf4\xd1\x4c\x6c\x21\ -\x6d\x4b\x3d\x89\xe8\xe4\x4c\x51\x9b\x93\xd2\x11\x75\xf8\x98\x38\ -\x6e\xa2\x31\x32\x31\x0d\x9b\x48\xeb\x13\x8f\x62\x5d\xc2\x11\x44\ -\x26\x24\x23\x32\x2e\x11\x6e\xcb\x42\x30\x6b\xae\x17\xfa\x5a\x3b\ -\x60\xc4\xc4\x99\x70\xf6\x5c\x06\x3f\xfa\xbd\xf5\x7b\xe3\xb1\x2d\ -\x39\x15\xbb\x8f\x13\x94\xb4\xb3\xd8\x92\x7a\x86\xae\x91\x89\x8d\ -\xe4\xa2\x9b\x0e\xd6\x2a\x92\x6f\xf8\x4b\x95\xa8\x20\x85\xfd\xd1\ -\x04\x20\x52\x04\x90\x94\x2c\x6c\x4b\x39\x83\x2d\xf1\xe9\x58\xb8\ -\x74\x05\x26\x4c\x9b\x01\x5d\x63\x53\xf4\xe8\x67\x29\xaa\xff\x00\ -\x3b\x38\x8c\x1e\x8b\x09\x8e\xb3\xe9\xb8\x1f\x96\x87\xac\xc2\xa2\ -\x15\x01\xf0\xf6\x0f\x85\xa7\x5f\x08\x16\x07\x84\x61\x49\x50\x38\ -\x96\x05\xaf\x14\xb7\x79\x9f\x17\xc9\x23\x20\x18\x8b\x02\x83\xe0\ -\x1d\x18\x0c\x8f\xa5\x3e\x58\xe0\xea\x09\x6f\xb7\xa5\xf8\xb6\x93\ -\x26\xb4\xbb\xeb\xa2\x6b\x57\x4d\x7c\xa3\xad\x0b\x5d\xf3\x9e\xb0\ -\x70\x70\xc0\xc8\xe9\x8e\x70\xf5\x0d\x43\x40\xd4\x2e\x44\x1f\x4c\ -\xc3\x66\xba\xc9\xa8\x83\x92\x8e\x7d\xb1\xf8\x3a\x92\x14\xf7\x6f\ -\xa5\x24\x18\x75\x80\x00\x6c\x4c\x4a\x11\xb6\x24\x9f\xc2\xd6\x84\ -\x0c\x2c\x0e\x0c\xc1\x4c\x27\x17\xf4\xeb\x6b\x05\x2b\x2b\x5b\x92\ -\x1d\xfa\xf5\xb3\x86\x91\x91\x39\xac\x2c\x6d\xe0\xe5\xb9\x18\xa1\ -\xc1\xe1\x58\xb4\xd0\x1d\x01\x7e\x41\xf0\xf5\xf1\x87\xbf\x6f\xa0\ -\xb8\xcd\x0a\x0e\x0c\x15\x8f\x87\x04\x85\x21\x34\x34\x1c\xa1\x11\ -\x11\x08\x23\x85\x86\x85\xc3\xdd\xdd\x03\x1e\x1e\x9e\xd0\xd7\x31\ -\x80\x91\x8e\x31\x0c\xf5\x4d\xa0\x6f\x60\x02\x4d\x5d\x03\x74\xd5\ -\xd2\x81\xc6\x37\x5a\xe8\xf2\xad\x1e\xda\xa9\x77\x85\x3b\x01\x8c\ -\x4d\xcf\xc2\xa6\x23\xa9\x88\x3c\x42\x46\x50\x88\x7c\xa9\xa2\x39\ -\xe4\xea\xa4\xb8\x7f\x5b\x72\x16\x36\x1f\x3c\x26\x97\x45\x26\xa5\ -\x8a\x1e\xb0\xeb\x48\x16\xcd\x5e\x20\x1c\x67\x39\xa3\x4f\xcf\xbe\ -\xb0\xec\x67\x05\x6b\x8b\x01\xb0\x22\xf5\xea\xd1\x07\x0e\x43\x1d\ -\xb0\x74\xc5\x62\xac\x59\xb7\x0a\x5e\x8b\x3d\x11\x1c\x46\x06\x87\ -\x06\x21\x28\x24\x50\x14\x6f\x07\x87\x06\x22\x84\xc6\xd0\xf0\x60\ -\x44\x84\x86\x60\x75\x48\x08\x56\x85\x85\x20\x3c\x34\x18\x9e\x9e\ -\x8b\xe0\xe5\xed\x01\x03\x3d\x7d\x18\xeb\x18\xc2\x58\xcf\x18\x46\ -\x2c\x82\xa0\xaf\x6f\x44\xa3\x31\x4c\x0c\x8c\xa0\xa6\xd6\x09\x0b\ -\xbc\x97\x62\x5f\xe6\x29\x6c\x4a\x22\x00\x14\x5a\x8a\x46\xfc\x59\ -\xda\x9e\x72\x0a\x9b\x0f\xa7\xcb\x65\x51\x47\x33\x84\x9d\xc7\xbe\ -\xc7\xee\xe4\xd3\xf0\x26\xb7\x9d\xe5\xec\x44\x00\x7a\x91\xe1\x96\ -\xb0\x24\x59\xf4\xb7\x40\x6f\xfa\x6c\xef\x30\x10\x1e\xcb\x3d\x10\ -\xbe\x3e\x02\x8b\x96\xba\xc3\x37\xd4\x0f\x7e\x61\xfe\xe2\x28\x6d\ -\xb3\xfc\xc3\x03\x10\x10\x11\x48\xb3\x1e\x8c\x95\xa1\xa1\x58\x19\ -\x16\x8a\x30\x02\xe0\xe1\xb1\x08\x9e\x0c\xc0\x40\x5f\x84\x60\xa8\ -\x6f\xd0\x40\x06\xfa\x7a\x34\xea\x43\xad\x53\x27\xb8\x51\x28\xee\ -\x3f\x41\x89\x38\xf9\x38\xa2\x92\x4f\x60\x0b\x25\xca\x3f\x5b\x3b\ -\x28\x01\x6f\x3e\x92\x21\x97\x6d\x4e\xc9\x14\x76\xa5\x9f\x47\xec\ -\xd1\x33\x04\x80\x12\xd5\x6c\x67\xf4\xea\xd3\x1b\x96\x03\xac\xd1\ -\xdf\xca\x12\xfd\x2c\x2d\xd0\xa3\x77\x2f\xd8\xda\xdb\xc2\x7b\xb1\ -\x17\x56\xaf\x59\x25\x8e\x7e\xfe\xbe\xf0\x0f\xf0\x43\x40\x80\x3f\ -\x02\x02\xfd\x11\x18\x14\x80\xe0\xe0\x20\x84\x84\x04\x93\xfb\x87\ -\x90\x87\x84\x21\x88\x5c\x3f\x88\x42\x21\x28\x24\x9c\x00\x78\xc3\ -\xcb\x6b\x09\xf4\x0c\x0c\xa1\x43\x10\xf4\x0c\x0d\xa0\xcf\x32\x20\ -\xe3\x49\x7a\xb4\x4f\xdb\xc8\x10\x4a\x5d\xba\x62\xc1\xb2\x00\x1c\ -\xc8\xba\x84\xad\x47\x29\x29\xa6\x9c\xc5\x76\x5a\x99\xfe\x6c\xc5\ -\xa4\x9f\xa3\xeb\x67\xc9\x65\xbb\x52\x8e\x0b\x31\xc7\x2f\x20\x96\ -\xb2\xef\x62\x0a\x01\x27\x97\x3a\x00\xd6\x56\xe8\x4f\xc6\xf7\xb7\ -\xb4\x44\xcf\xde\xbd\x61\x6f\x67\x07\x6f\x4f\x6f\xac\x5d\xbd\x06\ -\x9e\x14\xcf\x81\xfe\x01\xa2\x82\x02\x02\x45\x05\x53\xc2\x0b\xa1\ -\x84\x17\x12\x44\x00\x82\x43\x08\x44\x28\x01\x08\x23\x10\x94\x13\ -\x08\xc2\x22\x77\x4f\x78\x12\x04\x7d\x43\x02\x60\xa8\x0f\x5d\x32\ -\x58\xd7\xf0\x23\x08\x3d\xda\xd6\x32\xd2\x83\x52\xe7\xce\x70\xa3\ -\x95\xe8\xe0\xe9\x8b\xd8\x4e\xf7\xb4\x8d\x56\x86\x9d\xa9\x59\xff\ -\x91\x76\x34\xa3\x9d\x69\xa7\xea\x15\x9b\x79\x0e\xdb\xd3\x08\x40\ -\x2c\x01\xd8\x7d\xf2\x3c\xf6\x64\x9c\xc3\x52\xdf\x00\x38\x3b\x39\ -\xa1\x37\x19\x6c\x49\x86\xf7\xef\xdf\x5f\x1c\xf9\xb3\x1d\x01\xf0\ -\xf2\xf2\xc2\x9a\x35\x6b\xb0\x68\xd1\x22\x9a\x75\x02\x10\x18\x58\ -\xaf\xa0\xa0\x20\xf2\x82\xda\x31\x38\x98\x40\x50\xfc\x87\x92\xc2\ -\xc2\x38\x21\x86\x8a\xdf\xf1\xf0\xa0\x10\xa8\x33\x96\x67\x9c\xa5\ -\x2f\x79\x02\xed\xd3\x31\xd0\x81\x72\x27\x75\xb8\xfb\xf8\x21\xf1\ -\xec\x0f\xd8\x79\xec\x14\x76\xa4\x9f\xc6\x2e\x1a\x5b\xd2\xce\x63\ -\x59\x1f\x95\xd6\xb4\x62\xd2\x4f\xd5\x6b\xcf\x89\xef\xb1\x2b\xed\ -\x94\x5c\xb6\x27\xed\xa4\x10\x7b\xf2\x02\xf6\x9f\xbc\x08\x1f\x9a\ -\xc1\x59\xb3\x1c\x9b\x04\x30\x60\xc0\x00\x11\xc0\xda\xb5\x6b\x45\ -\x43\xfc\xfc\xfc\xe0\xef\xef\x2f\x2a\x20\x20\xa0\x01\x08\x06\x20\ -\x49\x04\xf1\x1f\x02\xf0\xf0\xf5\x47\xd2\xf9\x2b\xd8\x9d\x79\x16\ -\x31\xc7\xcf\xd1\x6c\x9d\x6d\x51\x31\x04\xaa\x25\xed\xce\x38\x53\ -\xaf\x7d\xa7\x7e\xa0\x95\xe6\xac\x5c\xb6\x37\x23\x4b\xd8\x9b\x75\ -\x11\x09\xa7\x2f\xc3\x27\x88\x72\x80\xe3\x47\x00\x16\x16\x16\xf5\ -\x00\x6c\x6c\x6c\x1a\x78\x80\xaf\xaf\x6f\x3d\x00\x09\x82\x04\x82\ -\x21\x48\x92\x40\x2c\x58\xb0\x00\x1e\xee\xee\x14\xf3\x8d\x0d\xaf\ -\x95\x81\x91\x01\x85\x84\x2e\x54\x3a\x69\x7c\x11\x00\x45\xe3\x5a\ -\x3a\x97\xd5\x00\x40\xdc\xa9\x4b\x38\x78\xe6\x0a\x79\x40\x08\x9c\ -\x66\xcd\x42\xaf\x5e\xbd\x44\xc3\x25\xf5\xe9\xd3\x07\xb6\xb6\xb6\ -\xb4\x94\x79\x62\xf5\xea\xd5\x0d\x00\xb0\xd1\x8d\x41\x34\xf6\x06\ -\x1e\x5d\x5d\x5d\x3f\x0f\x80\x3d\x83\x72\x80\x72\x1d\x80\xe4\x0b\ -\x57\x11\x4b\xc6\xef\x26\x57\xdd\x43\xe3\x9f\xad\xfd\x94\x63\xf6\ -\x64\x7c\x2f\x97\xc5\x65\x9e\x16\xe2\x68\xf6\x0f\x9d\xbd\x0a\x5f\ -\xf2\x00\x67\xa7\xa6\x01\x58\x59\x59\x89\x86\x73\x08\xf0\xb8\x62\ -\xc5\x8a\x4f\xbc\x40\x0a\x0b\x45\x4f\xf8\xbd\x00\xa4\x10\x50\xd2\ -\x50\x13\x01\x1c\xfd\xe1\x9a\x18\xa7\xb1\x94\x9f\xf6\xd2\xf8\x67\ -\x2b\xfe\xcc\x25\xec\xcd\x24\x00\xfb\x4e\x9c\x15\x0e\x9c\xb9\x8c\ -\xa4\x73\x57\xe1\x1f\xb6\x1a\x4e\xce\xce\xa2\xcb\xb3\xfb\x4b\x21\ -\xc0\x00\x78\xdb\xcd\xcd\x4d\x04\xc0\xe3\xf2\xe5\xcb\x45\x00\x8a\ -\xb9\x40\x71\xbb\x41\x72\xa4\x71\xde\xbc\x79\x04\xc0\x03\x86\xb4\ -\xd4\x7d\x02\x80\xdc\x5f\x8f\x6a\x00\x5d\xaa\x07\x94\xd5\x3b\xc1\ -\xcb\x37\x08\x27\xae\xdd\xa6\x49\xb9\x8c\x84\xb3\x57\x70\xf0\x2c\ -\x7b\x68\xad\x12\xce\x5c\xfc\xb8\x7d\x9a\x46\x9a\xbc\x83\x74\xff\ -\x09\x34\xa3\x87\xc8\x8b\x0f\xd2\xbe\x03\xe4\xde\xe2\x3e\xf2\xec\ -\xf8\xac\x1f\xe8\x33\x85\x38\x89\xb7\x25\x1d\x22\x7b\xf7\x67\x9d\ -\x97\xcb\xe8\x22\x42\xe2\xb9\xcb\x48\xfd\xfe\x2a\x82\xd6\x44\xd1\ -\x32\x38\x07\x7d\xfb\xd6\x1a\xcc\x49\x90\xc7\xbe\x7d\xfb\x8a\x23\ -\xcf\x3c\x87\xc0\xfc\xf9\xf3\xeb\x01\x48\x10\x14\x67\x5f\x31\x27\ -\x48\x9a\x3b\x77\xae\x18\x42\x46\x46\x46\x22\x00\x03\x02\xa1\xa9\ -\xad\x05\x2d\x1d\x6d\x68\xeb\xea\xa0\xbb\xa6\x26\x34\xbb\xeb\xa0\ -\x5d\x87\x8e\x98\xbd\xc0\x13\xf1\x47\xa9\x5c\xdd\x7f\x04\x5b\xe3\ -\x93\xb0\xfd\x50\x32\xb6\x1f\xac\x1d\x77\x1d\x4e\x45\x4c\x52\x9a\ -\xa8\x9d\xd4\x74\xc5\x50\x03\xb6\x8b\x75\x24\x9d\x6a\x99\xe3\xb4\ -\x3f\x9d\x8a\xba\x4c\xc4\x51\xd6\xdf\x73\xf4\x04\xf6\xa4\x9c\x40\ -\x1c\x35\x6f\xfb\xe8\xf3\x01\xca\x0f\x07\x32\xce\xe2\x00\xe5\x80\ -\xc4\xac\x0b\x88\x4f\x3f\x23\x97\x25\x9e\xbe\x22\x24\x9d\xbf\x86\ -\x63\x17\x7e\x44\xe8\xba\x2d\x70\x9e\x3d\x97\x0c\xef\x57\xef\x01\ -\x8a\x00\x16\x2e\x5c\x88\x95\x2b\x57\x7e\x16\x40\x63\x18\x0d\x00\ -\x78\xb0\x07\x18\x89\x6b\x3f\x1b\x3f\x70\xf0\x20\x4c\x98\x34\x11\ -\x63\xc6\x8d\xc5\x98\x31\x63\x30\x7a\xd8\x70\x8c\x1a\x3e\x82\x3e\ -\x8f\xc7\xd8\x09\x93\x30\x66\xe2\x14\x51\x63\x27\x4e\xae\xd7\xb8\ -\x49\x93\xf1\xdd\xe4\x29\xa4\xa9\xa4\xe9\x18\x3f\x79\x06\xc6\x4f\ -\x99\x81\x29\xb3\xe6\x60\xba\x8b\x2b\xa6\x3a\xcd\xc5\x8c\xd9\xf3\ -\xe1\xe4\xea\x46\xdd\xe7\x42\x38\xcf\x77\x27\xa0\x1e\x98\xe3\xe6\ -\x89\x79\x8b\xbc\x31\xcf\xbd\x56\x0b\xbd\x96\x61\xbe\xe7\x12\x02\ -\x70\xe6\x8a\x90\x4c\xc6\x33\x80\xf0\x8d\xdb\xe0\x32\x7b\x1e\xb9\ -\xfd\xc7\xd9\x97\x00\xf4\xeb\xd7\x4f\xcc\xe4\x0c\x80\xc7\x65\xcb\ -\x96\xc1\xc7\xc7\x47\x54\x63\x10\xcd\x02\x60\x0f\x30\x36\x86\xb6\ -\x9e\xae\xe8\xfa\x66\x3d\xcc\x61\xde\xb3\x07\x15\x5a\xbd\x30\xc8\ -\xde\x1e\x43\x6c\x6d\x30\xd8\xce\x16\x76\x36\xd6\xb0\xb6\xa6\xfc\ -\x63\x6d\x01\xab\x01\x96\x54\x85\xda\xc0\xc6\xd6\x9a\x56\x22\x6b\ -\xd8\x51\x45\x6a\x67\x67\x43\x49\xd9\x86\x46\x7b\xd2\x40\xd8\xdb\ -\x0f\x82\xfd\xc0\x41\x18\x34\x68\x08\x06\xd2\xb6\x9d\xfd\x40\x0c\ -\x1c\x34\x18\x03\x69\xdf\xe0\xc1\x43\x30\x64\x88\x03\x86\x38\x0c\ -\x85\x83\xc3\xb0\x5a\x0d\x1d\x86\x61\xc3\x46\xf0\x76\x1d\x80\x1f\ -\x08\xc0\xf9\x1f\xb1\x2a\x6a\x27\x79\xc0\x3c\xea\xfc\x2c\x45\xa3\ -\xa5\x24\xc8\xc6\x73\x1e\xe0\x99\x8f\xa0\xee\x8e\x73\xc0\xd2\xa5\ -\x4b\x45\x2f\xe0\x64\x28\xa9\x31\x0c\xc5\x04\xa9\x08\x40\x97\xea\ -\x7e\x06\xa0\x43\x20\xbe\xd5\xec\x0e\xfb\x41\x03\xb1\xd0\x6d\x21\ -\x66\x3b\xbb\xc0\xd9\x71\x16\x9c\x1c\x67\xd2\xb6\x23\x25\xe4\xe9\ -\xb4\x2a\x4d\xa3\xa5\x79\x2a\x66\x4c\x9f\x8c\xe9\xd3\x26\x8a\x9a\ -\x32\x79\x3c\x26\x4f\x1a\x8f\x69\xe4\x09\xac\xa9\xa4\x29\xe4\x19\ -\x93\x27\x4e\xc2\xa4\x09\x13\x31\x7e\xdc\x77\xa4\x71\x75\xe3\x47\ -\x8d\x23\x2f\x1b\x37\xba\x4e\x63\xc6\x92\xb7\x0d\x97\xcb\x0e\x9f\ -\xbd\x2a\xa4\x5c\xba\x89\x8c\x8b\x37\xb0\x6e\x4b\xac\x18\x02\x56\ -\x56\x0d\x01\xb0\x37\x30\x00\x4e\x64\x5c\xd9\x71\x28\x34\x07\x40\ -\xd2\xef\x01\xc0\x65\xf1\x37\xdd\x35\x31\xf6\xbb\xe1\xd8\x10\x19\ -\x41\x65\x73\x20\xc2\xc2\x83\x10\x1e\xe1\x4f\xf2\xa1\xbe\xc3\x87\ -\xea\x0e\x3f\xac\xe4\xed\x55\x01\x58\xb3\xda\x9f\xc6\x20\xfa\x4c\ -\x6d\x37\xf5\x1c\x61\xd4\x63\xd4\x8b\xdb\xef\x10\xaa\x3a\x83\xc3\ -\xa8\xfb\x8c\xa8\x97\xe2\x39\xc1\xb4\xca\x49\xe2\x63\xc1\x81\x21\ -\x72\x59\xd2\xb9\x6b\xc2\xb1\x2b\xb7\x90\x79\xf9\x26\x36\x6c\xdf\ -\x23\x02\xb0\xa6\x3e\xa0\x31\x00\x5e\x19\xd8\x08\xae\xea\x38\x04\ -\x96\x2c\x59\xf2\x09\x80\xc6\x9e\xa0\x18\x12\x12\x00\x13\x63\x53\ -\x02\x60\x58\x97\xf9\xb5\x60\x62\xae\x49\x4b\xe3\x54\x98\x98\xac\ -\x85\xa9\xf9\x1a\xf4\xe8\x1f\x82\x9e\x16\x81\xe8\x37\x20\x8c\x42\ -\x60\x0d\xac\x07\x44\xc0\xd6\x2e\x14\xb6\x83\x02\x61\x3b\x70\x25\ -\x6c\xec\xdc\x30\xd3\xd1\x15\x21\xc1\xab\x10\x44\x95\x6b\x60\x60\ -\x90\xa8\x20\x32\x2a\xb0\xee\x73\x50\x50\x70\xbd\x82\xa9\x2f\x91\ -\xc4\xfd\x89\xa4\x88\x88\x55\x34\x86\x11\x80\xf3\xd7\x84\xf4\x6b\ -\x3f\xe1\xc4\xd5\x9b\x88\xdc\xb1\x97\x72\xc0\x5c\xd8\x52\xd5\xc7\ -\x6e\x2f\x55\x83\xbc\xcd\xb5\x81\x04\x80\x43\x61\xf1\xe2\xc5\x9f\ -\x35\x5e\x51\xbc\xaf\x16\x80\x07\x4c\x4d\x7a\x90\xe1\xa6\xd0\x33\ -\xa1\x55\x40\x4b\x03\x43\x47\xe9\xc1\xdc\xec\x30\xda\xb5\x7a\x09\ -\x0d\xe5\x6c\xa8\xa9\x3f\x40\x3b\xa5\xc7\x68\xd3\x3e\x17\xed\xdb\ -\x14\x43\xad\x43\x1e\xd4\x3b\x3c\x84\xb2\xca\xcf\x50\x6a\x57\x80\ -\x7f\x7e\x15\x89\xde\x96\xa3\xc9\x43\x22\x1a\xe4\x18\xc5\xbe\xa4\ -\x39\x29\x56\xa8\x61\xd4\xa6\x53\x8d\x22\x97\x25\x9f\xbf\x4e\x00\ -\x6e\xe1\xd4\xf5\xdb\x88\x8a\xd9\x47\x75\xc0\x6c\x11\x80\xd4\x07\ -\xb4\x04\x80\xbd\x40\x51\x4d\x41\xf8\x08\xc0\x93\x00\x98\x8a\x2d\ -\xb1\x2e\x85\x82\x8e\x4e\x77\x0c\x1a\xa6\x03\x63\xb3\x1d\x50\x51\ -\xca\x44\x9b\x7f\xf8\x40\xa9\x55\x02\xba\xaa\x3e\x83\x9a\xf2\x0b\ -\x74\x52\x7b\x86\x0e\x6d\x52\xd1\xea\x6f\x91\xe8\xac\x72\x01\xdf\ -\xaa\x80\x3e\x27\xc3\xc2\x6e\x3c\xc2\x56\x2f\x27\xc3\xfd\xbe\x18\ -\x00\xdb\x41\xfb\xe4\xb2\xa3\x97\xae\x0b\x19\x3f\xfe\x84\x33\x37\ -\x7e\xc6\x96\x3d\x09\x98\xe5\xe4\x22\x66\x58\x36\x5a\x5a\x05\x14\ -\x01\x70\x73\xc3\x21\xc0\x00\xd8\x60\x5e\x0d\x14\x25\x2d\x8f\x8a\ -\x10\x1a\x00\x30\xe5\x3a\x40\x0f\xba\x46\xa6\xd0\xd6\xd2\xc1\xb0\ -\xd1\x54\x01\xea\x6f\x44\x9f\xfe\x89\x74\x6d\x5f\xa8\xa8\xda\x40\ -\xa9\xed\x1e\x82\x90\x8b\x8e\xca\x97\x30\x62\x42\x34\xa6\xb9\x8c\ -\xc3\x57\xad\x46\xa0\x5b\xc7\xbb\x50\x6a\x9d\x48\xe1\xe1\x88\x90\ -\x88\x20\x88\xcf\x22\xfe\x28\x80\xd4\x2b\x37\x84\xe3\x64\xfc\x99\ -\x9b\xbf\x60\xe7\xfe\xc3\x70\x24\x00\x76\xb4\x14\x49\x6b\xbf\x04\ -\xa0\x67\xcf\x9e\x98\x3d\x7b\xb6\x58\xda\x72\x41\xe4\xed\xed\x2d\ -\x1a\xcc\xc9\x50\xd1\x78\x86\x33\x8b\xfa\x09\x45\x10\xac\x39\x73\ -\xe6\x88\xcd\x94\x89\xb1\x11\xe5\x00\x32\xda\x90\x96\x43\x6d\x4d\ -\x38\x8c\xd4\xa3\xa2\x68\x0b\xfa\x59\x9c\x44\xc4\xaa\xf5\xe8\xa0\ -\x6a\x0e\x65\xe5\xdd\xe8\xa4\x52\x84\x76\xad\x6f\xc2\x6d\xd9\x09\ -\x2a\xd0\x02\xf0\xdf\xff\x18\x88\xae\xea\x3f\x91\x07\x1c\x40\xff\ -\x01\x4e\xe2\xf3\x46\xc5\x10\x50\x4c\xb8\xbf\x17\x00\x8d\x72\x59\ -\xda\xd5\x9b\xc2\x09\x32\xfe\x2c\x69\x57\xfc\x11\xf1\x99\x60\x53\ -\x00\x7a\xf4\xe8\x01\x17\x17\x17\xf1\xcb\xbc\x0c\x4a\x00\x14\xc5\ -\xee\xcf\xe1\x31\x7e\xfc\x78\x11\x00\x1b\x2e\xe5\x06\x86\xc7\xed\ -\xb0\x31\xcd\xbc\xae\x1e\xb9\x3f\x55\x82\xda\x3a\x5d\x30\x98\x42\ -\xc0\xcc\x34\x1e\x4a\x1d\xae\xe0\xeb\x56\x6b\xd1\x41\x65\x1f\xd4\ -\x3b\xdd\x81\x2a\xb9\xbf\x6a\xc7\x27\xe8\xd4\xe9\x38\x94\x94\xa2\ -\xc8\x33\x92\xd0\x59\xfd\x15\xda\xb5\xdd\x0d\x0b\x9b\x49\x08\x8b\ -\x08\x6e\x90\x64\x15\x25\x01\x51\x1c\x1b\x7b\x09\x4f\xa4\xe8\x01\ -\x99\xd7\x7e\x12\x4e\xdd\xba\x8b\x73\xa4\x98\x84\xe4\xcf\x02\x70\ -\x72\x72\x12\xbf\xcc\x00\x78\x36\x25\x0f\x90\xc4\x46\x3b\x53\x2f\ -\x31\x6a\xd4\xa8\xfa\x8e\x51\xca\x0b\xbc\xdf\x9d\x9a\xa1\x5a\x00\ -\x54\x03\x50\xe7\xa7\xa5\xd5\x05\x0e\x23\x0c\x61\x66\x92\x40\x09\ -\xee\x05\xba\x68\x14\x43\x43\xad\x9a\xbc\xe0\x39\x54\xba\x5d\x85\ -\xb2\x6a\x0e\x54\x3b\x14\xa0\x93\xea\x53\x68\x68\x3c\x81\x46\xc7\ -\x2a\xb4\x25\x00\xd6\xb6\xa3\x10\x11\x16\xd0\x2c\x00\x45\x08\x4d\ -\x35\x6a\x2c\x06\x40\xfb\xe4\xb2\xd3\xd7\xee\x08\xe7\x7f\xba\x8f\ -\x8b\xb7\xef\x21\x36\x31\x85\x7a\x81\xd9\x54\x59\xd9\xd5\x37\x40\ -\x52\x4f\xc0\x39\x80\x5d\x9b\x01\x48\x0f\x37\xd8\x68\x5e\x0e\x15\ -\xc5\x21\xc0\xc6\xf2\x71\xc5\x95\x81\xe1\x31\x00\x53\xca\xfe\xba\ -\xfa\x9a\x04\xc0\x00\x5a\x54\x04\x0d\x1e\x66\x84\x9e\xbd\xf6\xa3\ -\x43\xdb\x8b\xf8\xea\xef\x9b\xa0\xd2\xe1\x30\xba\x76\xf9\x05\x1d\ -\x55\x1f\x40\x43\xb5\x88\xf2\xc0\x65\x7c\xfd\x15\x79\x85\xda\x25\ -\xca\x01\x95\xe8\xf0\xaf\xc3\xb0\xb7\x1b\x83\x95\xc1\x64\x98\x5f\ -\x43\x03\x25\x23\x19\xbc\x64\xa4\xe4\xf2\x8d\xc3\xe0\x23\x80\xeb\ -\x77\x84\x0b\xb7\x1f\xe0\xd2\xcf\xf7\x11\x9f\x92\x81\xd9\x73\x5d\ -\xc5\xc7\x5f\x9f\x03\xc0\x1e\xc0\x06\x36\x36\x9e\x8d\xe5\x30\xe1\ -\xba\x5e\x31\x44\x14\x3d\xc0\xd4\xc4\xa4\xd6\x03\x28\x07\x68\x69\ -\x69\x51\x0e\x30\xa2\x82\x28\x06\xc6\xc6\x89\x58\x38\x7f\x26\x3a\ -\x76\x34\x87\x5a\x9b\xfd\xf8\xa6\x7d\x19\x34\x94\x7e\x84\x59\xff\ -\xc5\x24\x07\xfc\xb3\xf5\x14\x74\x53\x27\xaf\xf8\x3a\x9e\x92\xf4\ -\x54\x84\x07\x47\xc0\xd7\xc7\xaf\xd9\x32\x9c\xef\x8f\xc3\x91\x27\ -\x84\xbd\x95\x93\x36\xdf\x13\x8b\xef\x95\x93\x79\x1d\x80\x5f\x85\ -\x4b\xbf\x3c\xc6\xe5\x5f\x1e\xe0\x50\x7a\x16\xe6\xb8\xce\x27\xc2\ -\xb6\x2d\x7a\x00\x1b\xd3\x18\x00\xbb\x3b\x57\x8b\x63\xc7\x8e\x15\ -\x6f\x40\x31\x39\x4a\x00\x4c\x8c\xcd\xa1\xab\x6b\x42\x00\x78\x15\ -\x60\x00\x86\xd4\x11\x6e\xa6\x5a\xff\x38\x62\x77\x6f\x80\x72\xc7\ -\x1e\xe8\xd8\x76\x1f\xbe\x55\x2d\x41\xdb\x36\x59\x58\x12\x92\x88\ -\x0d\x5b\x23\xf0\x5f\x7f\xb7\x44\x37\xd5\xf3\x50\xfa\xfa\x00\x15\ -\x43\x93\xa9\xea\x0b\x85\xcf\x8a\x8f\x49\x56\x32\x9e\x61\xf0\x3d\ -\x4e\x9a\x34\x09\x23\x46\x8c\xc0\xc8\x91\x23\x45\xef\x9b\x3e\x7d\ -\x3a\x26\x4e\x9c\x88\x71\x54\x22\x4b\xa1\x2c\xe6\x80\x73\x37\xef\ -\x0b\x97\xef\x66\xe3\xca\x9d\x47\x48\xcc\x38\x05\x97\x39\xf3\xa8\ -\xa1\xb0\x17\x01\x48\x75\x00\x8b\x57\x01\x47\x47\x47\xf1\x8b\x6c\ -\x9c\xb4\x14\x2a\x8a\x0d\xe5\xe5\x8e\x7f\x84\x8d\x95\x00\x70\xa8\ -\x30\x00\xf6\x1c\x53\x13\xb3\xda\x24\x68\x60\x42\x21\xa0\x89\xc1\ -\xc3\x0d\x61\xc2\x75\x80\xf2\x09\x5a\xfb\xd7\xa1\x7d\xbb\x18\x68\ -\x74\xbe\x0e\x65\xb5\xdb\x94\x0b\x7e\x46\xa7\x6f\xe3\xa0\xad\xb9\ -\x14\xca\x1d\x36\xe0\x1b\xd5\x27\x68\xff\xaf\x04\xd8\x0c\x1a\x87\ -\xe0\x90\x8f\x09\x56\x7a\x38\x23\x89\x3d\x80\x27\x89\x7f\x9b\x7f\ -\x93\x1f\xc6\xf0\xfd\x72\x22\x66\xf1\x3d\xb2\x1d\x74\xae\x5c\xf6\ -\xfd\xad\x47\x22\x80\xab\x77\x1f\x21\xf9\xe4\x39\xcc\x9b\xbf\x50\ -\x7c\x04\xde\x18\x80\xb9\xb9\x39\x66\xcc\x98\x21\xc6\x16\x1b\xd7\ -\x14\x00\xfe\xc1\x99\x33\x67\x8a\x0f\x50\xf9\xb8\x94\x23\x1a\x02\ -\xe0\x65\x50\x87\x3c\xc0\xa8\x16\x00\xe5\x00\x53\xd3\x5d\x64\xf8\ -\x03\xa8\x29\x3d\x45\x27\xf5\x02\x28\x75\x7c\x04\x25\xb5\xab\xe8\ -\xa2\xfe\x0c\x9d\x94\x1e\x41\x43\xe5\x36\xad\x06\x77\xa1\xde\xb1\ -\x00\x6d\xbf\x8e\x85\xcd\x40\x02\x10\x1c\x48\x86\xfb\x34\x09\x40\ -\xfa\xcc\x46\xf2\xfd\x4a\xdb\x1c\xfb\x8a\x4f\xac\xe8\x3c\xb9\xec\ -\xfc\x4f\x8f\x84\x2b\xbf\x66\xe3\x1a\x01\x48\x3b\x7d\x01\x0b\xdc\ -\x16\xd5\xe7\x00\x45\x00\xbc\x0a\xb0\x1b\xf1\x05\x18\x80\x54\x0d\ -\x2a\x8a\x0d\x65\xc3\xa7\x4e\x9d\x2a\x7a\x89\xe2\xfe\x06\x00\x0c\ -\xb4\xa0\x6b\xa8\x0d\x4d\x4d\x1d\x0c\x1c\x6a\x0e\x53\xb3\x3d\xe8\ -\xd0\xfe\x02\x5a\xfd\x73\x27\x2d\x79\xc7\xd0\x91\x0c\xee\xa8\x74\ -\x1b\xdd\xda\xe6\x43\xbd\xd5\x0d\xb4\x69\x9d\x85\x8e\x9d\x7f\xa0\ -\x32\xb9\x10\xad\x5a\xc7\x88\x00\x42\x02\x57\x62\xc5\x72\xdf\x26\ -\x01\x28\x16\x61\xd2\x71\x0e\x0f\xc5\xa7\x58\x0c\x41\x04\x70\xf1\ -\xa7\xfb\xc2\x8f\xf7\xb2\x71\xe3\xd7\xc7\xc8\x3c\xf7\x03\x01\x70\ -\x17\x3d\x40\x71\x19\x64\x71\x0e\x60\xc3\x18\x00\x1b\xc2\xb1\xce\ -\xb3\xcb\x09\x46\x92\x94\x60\xf8\x87\x24\xe3\x1b\x7b\x80\x09\xf7\ -\x02\x7a\xfc\x18\xac\x1b\xba\x6b\xe9\xc3\x6a\x78\x6f\xe8\x19\x47\ -\x43\x4f\x2b\x12\xc3\x87\xd8\xa3\x75\x7b\x0b\x74\xe8\x90\x40\x4b\ -\xdf\x23\xa8\xb7\xce\x85\x6e\xf7\xd5\xd4\x33\x58\xe3\xab\x76\x53\ -\xa0\xa6\xf2\x12\xad\xbe\x8a\xa7\x10\x18\x8d\x30\x6a\x7e\x56\xac\ -\xf8\x68\x60\x73\x52\xec\x50\x15\x0b\x33\xb6\x83\xee\x53\x2e\xbb\ -\x74\xfb\x81\x70\xfd\x7e\x0e\x6e\xdd\xcf\x46\xd6\xc5\x2b\x58\xe4\ -\xe1\x89\xc1\x83\x06\x35\x78\x2e\x28\xe5\x80\x29\x53\xa6\x88\x17\ -\xe1\x76\xb8\x29\x00\x8d\xc5\x40\x24\x08\xb5\x00\x16\xd6\x02\xd0\ -\xe5\x37\xc3\x5a\xd0\xd4\xd3\x80\xcd\x58\x5d\x74\xd7\x5e\x89\x41\ -\x56\x19\x38\x74\x60\x07\x3a\x6a\xf4\x44\xab\x7f\xed\x14\x5d\x5f\ -\x99\xfa\x80\xa0\xd0\xbd\xd8\x14\x1d\x84\xbf\xfd\xc3\x08\x9d\x95\ -\xaf\xa1\xdd\x57\xdb\xc9\x43\xc7\x20\x3c\x20\x88\x0c\xf8\xb4\x17\ -\x69\xaa\x37\x69\x4a\x75\x1e\x21\x97\x5d\xb9\xfb\x48\xb8\xf9\x20\ -\x17\x3f\x3d\xc8\xc1\xd9\x2b\xd7\xb1\x88\xea\x75\x07\x87\x21\xe2\ -\x8c\x2b\x02\xe0\x10\x98\x3c\x79\xb2\x48\x4f\x02\xc0\xc6\x7d\x0e\ -\x80\xa2\x57\x7c\xf4\x00\x73\xd1\x03\x0c\xf4\x8d\xa0\xa9\xa3\x42\ -\x1e\xf0\x2d\x15\x47\xdb\xd0\xa9\xcd\x19\x68\x76\x0d\xa0\x5c\x10\ -\x01\x75\xea\xfc\x54\xa9\xf3\x53\x6a\xfb\x23\x7a\xf4\xda\x0a\x73\ -\xd3\x45\x68\xd3\x6a\x39\xba\xaa\x64\xa3\xf5\x3f\x77\x61\x80\xed\ -\x14\xf1\x75\xdc\xb2\x65\x9f\xf6\x22\x4d\xf5\x26\x4d\xa9\xae\x48\ -\x93\xcb\xae\xdf\xcf\x16\x6e\x67\x3f\x13\x01\x9c\xbf\x7e\x4b\xcc\ -\x01\xc3\x86\x0e\xfd\xe4\xc9\x30\x27\x41\x5e\x46\x24\x0f\xe0\xf5\ -\x9e\x0d\xe4\x06\x47\x92\x64\x30\xab\x31\x04\x7e\xe5\xc6\x99\xd9\ -\xc4\xb4\x07\xad\x00\x5a\xd0\xd7\x33\xa1\x65\xb0\x3b\x6c\x86\x98\ -\xc3\x44\x8f\x4a\xe0\xbf\x5f\xa0\x22\xe7\x47\x28\xb5\xf9\x99\xca\ -\xdd\x5b\x68\x4f\x35\x40\xbb\x36\x39\xd4\x21\xfe\x0a\x95\x7f\x9d\ -\xa6\x9a\xe0\x36\x54\xdb\xbe\xc4\xff\xfc\x63\x0b\x2c\xec\x1d\xe1\ -\x13\xe2\x4f\x06\x2e\xfd\x8f\x8c\x6e\x1a\xc0\x83\x1c\xe1\x97\x9c\ -\x17\xb8\xfd\xf0\x09\x2e\xdf\xbe\x03\x37\x77\x0f\x0c\x75\x70\x10\ -\x5d\x5e\x11\x80\x99\x99\x99\x58\xe3\x4b\x1e\x20\x01\xe0\x64\x27\ -\xa9\x31\x8c\x4f\x01\xb0\x07\xf4\x27\x00\xda\xe4\x01\x94\x07\x74\ -\x8c\x61\x64\xac\x83\x1e\xe6\x33\x30\x78\xe0\x56\x0c\xb0\x8e\x86\ -\x95\xd5\x26\xf4\xb7\x0a\x84\x79\x3f\x6f\xca\x0d\x01\xd0\xee\xbe\ -\x0d\x7a\xdd\xf6\x40\xab\x6b\x0c\xb4\xba\xed\x85\x9a\xaa\x2b\x86\ -\x8e\x9c\x06\x9f\x00\x5e\x5e\x97\x34\x28\xc5\x25\xb5\xe4\x15\xac\ -\x8f\x00\x1e\xe5\x08\x77\x72\x5f\xe0\x97\xc7\x4f\x71\xed\xce\x3d\ -\xb8\x7b\x7a\xc1\x61\xc8\x10\xd1\xe5\x15\x5f\x8f\x99\x9a\x9a\xe2\ -\xbb\xef\xbe\x13\xe3\x87\x33\xbd\x04\x80\x57\x04\x49\x8d\x61\x34\ -\x00\xe0\xec\x24\xe6\x00\x63\x63\x2b\x68\xeb\xe9\x41\x9f\x96\x42\ -\x03\x5d\x53\x7c\xab\xa9\x01\x4b\xbb\x3e\xf0\x5c\xba\x10\x0b\xdd\ -\x9c\xb1\x70\x01\x81\x5a\x30\x8f\xc4\xd7\x9e\x0f\x77\x0f\xda\xbf\ -\x80\xaa\x3a\x57\x2f\x2c\x98\xe7\x83\xf9\x73\x29\xa4\x3c\xdd\xe1\ -\xb3\xc4\xa3\x3e\xc1\x2a\xd6\x1b\xd2\xe7\xa6\xf6\x4b\xe7\xb3\xea\ -\x73\xc0\xcd\x47\x8f\x84\x7b\x4f\x9f\xe2\x97\xec\x5c\x5c\xbf\xfb\ -\x40\x5c\x05\xd8\x03\x1a\x87\x80\xe4\x01\x4c\x4e\x11\x80\xa2\xd1\ -\xcd\x89\xcf\xe3\x22\x8a\x97\x4e\x53\x33\x73\xb1\x1d\x16\x5f\x89\ -\x1b\x18\xa0\x4b\xb7\xce\x70\x9e\x33\x0b\x49\xc9\x87\xb1\x2f\x6e\ -\x2f\xe2\xf6\xc6\x52\x45\xc8\xda\x8b\x1d\xdb\xb7\x63\xd3\xa6\x0d\ -\x58\xbb\x36\x02\xab\x57\x87\x21\x3c\x3c\x04\x11\xe1\xd4\xc7\x07\ -\x50\x06\x27\xc3\xf8\xba\x52\xa1\xe3\xea\x3a\x4f\xbc\x3e\x7b\x27\ -\x8f\x2c\xce\x53\xdc\x86\x73\xe1\xc3\xdb\x7c\x8c\xc3\x90\x27\x87\ -\x21\xd0\xc4\xc8\x65\xb7\x09\xc0\xfd\x67\xcf\x70\x27\xf7\x09\xe5\ -\x81\x6c\x0a\x01\x4f\x0c\x1f\x3e\xbc\x41\x12\x94\x00\x48\x1e\xc0\ -\x3f\xc8\x49\x8d\x2f\xd4\x9c\x07\x34\x07\xc0\xcc\xdc\x54\x7c\x31\ -\x62\x68\x6c\x54\xff\x52\xc4\x61\xf8\x30\x4c\x9b\xce\x4f\x80\x9d\ -\xc4\x1b\xe5\xeb\xf2\xef\x70\xc3\xc2\x2f\x62\x22\x23\x23\x11\x1d\ -\x1d\x8d\x9d\x3b\x77\x62\xdf\xbe\x7d\x88\x8f\x8f\xc7\xa1\x43\x87\ -\x90\x74\xe4\x08\x92\x93\x92\x90\x9c\x9c\x8c\xb4\xb4\x34\x1c\x3b\ -\x76\x0c\xa9\xa9\xa9\x48\x49\x49\x11\x8f\xf3\x79\x71\x71\x71\x88\ -\x8d\x8d\x45\x4c\x4c\x0c\xb6\x6e\xdd\x8a\x0d\x1b\x36\x88\x4f\xb6\ -\xb9\x28\x12\x3d\xe0\x6e\x76\x8e\xf0\xf0\xc5\x0b\xfc\xfa\xe4\x29\ -\xee\xe6\x3c\x83\x87\x97\xb7\x58\x3f\x73\x08\x28\x02\xe0\x10\xe0\ -\x12\x77\x79\x5d\xbd\xcf\xf5\x34\x1b\xc7\x44\x25\x35\x07\x41\x11\ -\x80\x09\x5d\x87\x1f\x87\xb3\xe1\xfd\x2c\xfa\x63\xec\x77\xe3\x30\ -\x72\xf4\x28\x0c\x1b\x31\x5c\xd4\x88\x51\x23\x61\x47\xa5\x78\x6f\ -\x2a\xc4\xf8\x7d\x81\x19\xdd\x87\x99\x59\x4f\xf4\xe9\xdb\x1f\x96\ -\x56\xd6\xb0\xb0\xb4\xa6\x71\x00\xac\x07\xd8\x52\xff\x60\x8f\x41\ -\x43\x1c\x30\x62\xe4\x68\x4c\x9c\x34\x19\x53\xa7\xcd\xc0\x4c\x82\ -\x38\x97\xbc\xc1\xc3\xcb\x13\xcb\x19\x62\x68\x08\xd6\xac\x5b\x8b\ -\x4d\x9b\xa3\xb0\x7d\xe7\x0e\xec\xde\x13\x8b\xfd\x07\xe2\x91\x9c\ -\x72\x94\x25\x97\xdd\xcb\x7d\x2e\x3c\xca\xcf\x13\x01\xdc\x7b\xf2\ -\x82\xbe\xb8\x98\x3c\x60\x58\x93\x39\x60\xf4\xe8\xd1\xa2\xeb\xb0\ -\x21\x52\x73\xa3\x08\xa0\x39\x18\x3c\xa3\x5c\x22\xb3\xe7\x18\x53\ -\x37\xc8\x2f\x46\xd8\x0b\xf8\xc5\x48\x9f\x7e\x7d\x45\x10\xd2\xbf\ -\xe3\xf4\x25\x4d\x9f\xe5\x88\xa5\x3e\x2b\xe0\xee\x4d\x2e\x4e\xdf\ -\x9d\xb7\xd0\x1d\x33\x66\xb9\x60\xdc\x84\xc9\x18\x3e\x7a\x1c\x46\ -\x8c\xf9\xae\x7e\x1c\x3c\x74\x04\x6c\x07\x39\xc0\xd2\xc6\x0e\xfd\ -\xad\xa9\x89\xb3\xb0\x42\x2f\xba\x66\x1f\xba\x66\x3f\xba\x26\x8f\ -\x3d\xfa\xf4\x86\x59\xaf\x9e\x30\x27\xf1\x76\xcf\xbe\x7d\xc4\x63\ -\x96\x03\xac\xe4\xb2\xfb\xcf\x5f\x08\xd9\x2f\xf3\x71\xef\xe9\x33\ -\x3c\x78\x96\x5f\x0b\x60\xd8\x5f\x0b\x40\xa7\xee\xbd\x00\x43\x60\ -\x6f\xd0\xd1\xd5\xa5\x9a\x40\x1b\xdd\xf5\x74\xd0\x5a\xa9\x3d\x22\ -\xa3\x37\x43\x5e\x51\x86\x87\xb9\xd9\xb8\xfb\xf0\x21\x6e\x51\x72\ -\xbe\x7a\xf3\x36\x7e\xb8\x7a\x03\xdf\x5f\xba\x8a\xac\xb3\x17\x90\ -\x71\xf2\x0c\x0e\xa7\xa4\x23\x2e\x21\x11\xdb\x77\xc7\x21\x6a\xeb\ -\x4e\x6c\xdc\xbc\x0d\x6b\x36\x46\x21\x6c\xf5\x2a\x2c\xf3\xf3\xc5\ -\x7c\x77\x37\xb8\xb8\xce\x85\xf3\xbc\x39\x70\x9a\x3b\x1b\x33\x5d\ -\x9c\x30\x71\xda\x14\x8c\x1c\x37\x16\xc3\x46\x8f\xc4\x90\xe1\xc3\ -\xe4\xb2\x07\x2f\xf2\x84\x9c\x82\x02\xdc\x7f\xf6\x1c\x0f\x5f\xbc\ -\x84\xa7\xf7\x9f\xe3\x01\x8a\x62\x08\x4d\x01\x90\x24\x82\xa0\x7d\ -\xda\xb4\xad\xa4\xae\x8a\x8d\x5b\x36\xa3\xb8\xbc\x14\x8f\x9f\x3f\ -\x45\xf6\xf3\xe7\x78\x92\xf7\x0a\xb9\x24\x1e\x9f\xbd\x2c\xc2\xd3\ -\xfc\x42\x3c\xa5\x31\xaf\x50\x8e\xe7\x05\xc5\x78\xfe\xaa\x04\x2f\ -\x68\xfb\x05\x8d\x7c\x3c\xe7\xc5\x73\x3c\x7a\xfa\x04\xf7\x73\xb2\ -\x71\x2f\xfb\x31\x7e\xbe\x7f\x0f\xd7\x7f\xbe\x8d\xcb\x37\xae\xe3\ -\xdc\xa5\x8b\x38\x7e\xe6\x34\x32\x4f\x9f\x22\x80\x14\x02\x8f\xf2\ -\xf2\x85\xdc\xc2\x57\x64\x7c\x3e\xb2\x5f\x16\x62\xb9\x8f\x1f\x46\ -\x52\x1f\xcd\x49\x8f\x9f\x03\xf0\xe3\x30\x1e\xf9\x33\x3f\xea\xe2\ -\xa5\x84\x0d\xe1\x98\x66\xe3\x38\xb3\x4a\xe2\x8c\x2c\xa9\x31\x00\ -\xee\x24\x39\x23\x9b\x9a\x99\x52\x33\xa4\x27\xbe\x1d\x66\x29\x42\ -\xe0\xcf\xca\x6a\xaa\x88\xdc\x1c\x8d\xe2\xb2\x0a\x02\x90\x87\x87\ -\xcf\xf2\xf0\x88\xf5\x3c\xbf\x81\x1e\x4a\xfb\x9e\xe5\xd7\x1e\xaf\ -\xfb\xfc\xf8\x45\x7e\xfd\x98\x9d\xf7\x12\x39\x79\x05\xa2\x72\x5f\ -\x12\xc0\x82\x22\x3c\x2b\x24\x58\xc5\x02\x8a\x2a\xaa\x08\x5a\x09\ -\x03\x78\x29\x3c\x29\x2a\xc4\xe3\xfc\x7c\xe4\xbe\x2a\x46\x50\x48\ -\xa8\x18\x02\x6c\x30\xcf\xbe\x04\xc0\x84\x66\x8e\x93\x23\xaf\xe9\ -\xbf\x07\x80\xa2\xd8\x53\x7e\x2f\x00\x15\x06\x10\xbd\x05\x25\xe5\ -\x55\xc8\x26\x8f\x7c\xfc\x17\x89\x41\xd0\x48\x00\xf2\x0b\x84\xa7\ -\xc5\x45\x34\xfb\x05\x78\x56\x24\x20\x62\xd5\x6a\xea\x05\x1c\xc4\ -\xd2\x57\x7a\x31\x2a\x01\xe0\x27\x2c\x9c\xd1\x79\x15\xe0\xa7\x43\ -\x9f\x03\xa0\xb8\xff\x4b\x00\xc8\x2b\xaa\xc5\x99\xcb\xfe\x8b\xf4\ -\xbc\x48\x8e\xc7\x79\x05\x72\x59\x76\x41\xa1\x90\x27\xc8\x91\x53\ -\x50\x88\x3c\x79\xb9\x08\x80\x0b\x21\xce\x01\x8d\x43\x60\x18\x79\ -\x06\x03\xe0\x42\x88\x3d\x80\x8d\xe3\xed\xa6\xa4\x08\x84\x41\x31\ -\x00\x7e\x1a\x63\x66\x6e\x2e\xbe\x1c\x6d\x0c\xa0\xf6\x1f\xa5\x6a\ -\x01\x44\x6d\xdd\x8e\xd2\xaa\xd7\x78\x42\x21\x99\xfb\x05\xca\xc9\ -\x7f\x55\xaf\xe6\xce\xc9\x2b\xa1\x1c\xf3\xb2\x50\x2e\xcb\x29\x2c\ -\x14\xf2\xcb\x4a\xc9\xfd\x0b\x91\x5f\x5a\x81\xd5\x6b\xd7\xd5\x27\ -\xc1\x3f\x0a\x40\xd1\x33\x5a\x02\x20\xfd\xdb\x4c\x07\x15\x65\xac\ -\x8b\x8c\x42\x79\xcd\x5b\x3c\xa5\x90\x7c\xf2\x25\xa2\x58\xaf\x57\ -\x33\xe7\xe4\x0b\xe5\xc8\x79\x45\x00\x72\x0b\x8b\x84\x97\x65\x65\ -\x78\x52\x58\x84\x57\x65\x55\x58\xbf\x31\x12\xa3\xea\x0a\x21\x36\ -\x5e\x11\x80\x14\x02\xbc\x0a\x28\xe6\x80\x05\x0b\xc9\xe8\x46\x30\ -\xe6\xd7\x6f\x7f\x1e\x80\x04\xc1\x40\x7c\x55\xde\x1d\xaa\x1a\xea\ -\x48\x4c\x4e\x81\x50\x59\x83\x67\x74\xa3\x4f\xbf\x40\xcf\x29\xbe\ -\x25\x35\x77\xce\x4b\x02\x90\xcb\x00\xc8\x70\xe1\x55\x99\x80\xfc\ -\xa2\x62\xc8\xcb\x6b\xb0\x99\xd6\x52\xfe\xef\x89\x9e\x3d\x7b\x93\ -\xf1\xec\x01\x5c\x0d\x5a\x41\xdf\xc0\x50\xac\xc6\x5c\x5c\xe6\x60\ -\xce\xdc\x79\x54\x15\x8e\xc7\xa4\x49\x53\x30\x79\xea\x34\x4c\xa5\ -\x25\x6e\xba\xe3\x2c\x2a\x56\x9c\x30\xd3\xc9\x19\xce\xb3\xe7\x50\ -\x7d\xef\x8a\xd9\xae\x6e\x98\x3b\x9f\x6a\xf5\x05\x6e\xe2\xe3\x34\ -\x5e\x3a\xcd\xcc\x7b\x88\xaf\xc7\x0d\x0c\x8d\x49\x46\x04\xa0\x76\ -\x54\xd3\xe8\x0c\x13\xf3\xde\x48\x39\x76\x9c\xee\xa3\x1a\x79\xb4\ -\xa4\xe5\x15\x94\xd4\x8e\x2d\x6d\x17\x34\xde\x2f\x57\x50\xd3\xdf\ -\x29\x12\x2a\x68\x24\x00\xcf\x8b\x8a\x84\x22\x5a\x73\x0b\x4a\x4a\ -\x50\x56\xf9\x06\xd1\x5b\xb6\x13\x80\xe1\xd4\x0c\xf5\xa5\x99\xe7\ -\xf5\xdf\x9c\x3a\x37\x43\x8c\x9f\x30\x09\x7b\xf7\xc5\xe3\xca\xb5\ -\xeb\xb8\xfd\xcb\x1d\x5c\xbc\x7c\x15\x27\xb2\x4e\x23\x2d\xf3\x38\ -\x12\x8e\x24\x61\x7b\xcc\x6e\xac\x5a\xb7\x1e\x01\xb4\x8a\xf8\x53\ -\x0d\xbf\xcc\x37\x00\xf3\x16\x79\x51\xf1\x41\x85\xc8\x9c\x79\xe2\ -\xc3\x14\x17\x17\x67\x98\x93\x67\xe9\xea\xd5\x02\xd0\x37\xa0\x7e\ -\x40\x5b\x17\xaa\x6a\x1a\x70\xa4\x4a\xef\x51\xf6\x53\x54\xbf\xf9\ -\x0d\x05\x45\xa5\xc8\xa7\x9b\x67\xbd\xac\xd3\xe7\xb6\xf3\x1b\x6d\ -\xe7\x37\xda\xdf\xd4\x77\x8a\x85\x4a\x1a\x8b\xe5\xb2\xbc\xe2\x12\ -\xa1\x98\xaa\xae\x02\xb9\x80\x8a\x9a\x77\xd8\x14\xb5\x45\xfc\x3f\ -\x1a\x23\x23\x2a\x58\x74\xf4\xc4\xfa\x3a\x2d\x2d\x1d\x45\x74\xbc\ -\xea\xcd\x5b\x4a\x4e\x55\xb4\x44\x55\xa0\xac\xaa\x9a\xce\x7f\x8d\ -\xf2\xea\x9a\x7a\x55\xbe\x7e\x83\xd2\xca\x2a\xbc\x2a\x91\x53\x41\ -\x42\x4b\xeb\xd3\x7c\xdc\x7d\xf0\x18\xf7\x1e\x66\x53\x23\xb2\x0d\ -\x53\xa7\x4e\x21\xcf\xea\x25\x02\x30\xa4\xeb\x77\xe9\xfa\x8d\x08\ -\x20\x2a\x2a\x1a\x55\x14\xf3\xa5\x15\x35\x74\x53\x25\x22\x80\xbf\ -\x5a\xf2\xb2\x6a\x90\x03\xc8\x65\x2f\xe5\x82\x20\x54\x55\xa2\x50\ -\x28\x25\x03\x3f\x60\x67\xec\x5e\xd8\x0d\x1e\x4c\x75\xf7\x24\xa4\ -\xa4\x67\x88\x86\xbe\xfd\xf0\x1b\x15\x26\x65\x78\x45\x10\x0a\x4b\ -\x4b\x69\x94\x13\x30\xb9\xf8\x99\x8d\x6d\xac\x42\x3e\x8f\x62\xac\ -\xa8\xb4\x8a\xdc\xb9\x0a\xbf\x01\x62\x97\x36\x79\xd2\x24\xf4\xa2\ -\x36\x5b\x9b\xc0\x2a\xab\xa8\xc2\x61\xe8\x70\x5c\xbf\x71\x0b\xef\ -\xe9\xfa\x25\x74\xfe\xab\xe2\x32\x14\x96\xd4\x8e\x7f\x44\x7c\x0d\ -\x49\xcd\x9d\x23\x50\xb8\xbf\x2a\x14\x08\x80\x50\x2e\x94\xd6\x54\ -\xa1\x88\x0c\x2c\xa1\x24\x58\x54\x5a\x8e\x27\x2f\xf2\x68\x2c\x45\ -\xcd\xfb\x0f\x64\x78\xb9\x68\x70\x51\x39\x5d\xb8\xac\x4e\xe5\x1f\ -\x55\x5c\xfa\x51\x45\x04\x51\x12\x03\x28\xa4\x38\x2b\xa2\xf1\xed\ -\xfb\xdf\x90\x94\x94\x2c\xbe\x31\xd2\xd3\x37\x40\x47\x55\x75\xf8\ -\xf8\xfa\x41\xa0\xdf\x7a\x47\xc7\x04\xa1\x4c\x04\xc0\x6e\x29\xa9\ -\x48\x5e\xf1\xc5\xfa\x3d\xd7\xe1\x70\x2f\x2c\xae\x90\xcb\x0a\xcb\ -\xcb\x85\xf2\x37\x35\x54\x78\x54\x92\x5b\x54\x8a\x63\x69\x75\x35\ -\xe4\x95\x95\xe4\xea\xe5\x34\x83\x15\xa2\x8a\x2b\xe8\x8b\x95\x9f\ -\xaa\xa4\xa2\xa2\xfe\x9c\x12\x82\x25\xa9\x98\xae\x55\x4c\x40\x4b\ -\x68\x7c\x43\x46\x9e\x3c\x99\x85\x89\x13\x26\xc0\xde\x7e\x20\x8e\ -\xa6\xa4\x81\xff\xca\xa9\x1c\x2d\xa5\x92\x97\x41\x94\x92\xa7\xb0\ -\x5b\x4a\x2a\x21\xef\xf9\x52\xfd\x9e\xeb\x54\x54\xbf\x23\x4f\xad\ -\x92\xcb\x8a\x2b\x8b\x85\x8a\x1a\x9a\x85\xb2\xb7\x10\x2a\x5e\xa1\ -\xa4\x92\xdc\xba\x82\x5c\xb8\xaa\x18\x65\x15\x72\xd4\x94\x56\xa2\ -\x46\xfe\x1a\x65\x7c\xc1\x8a\x5a\x40\x02\xc1\x11\x28\x17\x08\x14\ -\xef\x65\x15\x9f\x53\xb5\x38\x4a\x86\xe6\x52\xcb\x5d\xf0\xaa\x08\ -\xff\x26\xe3\x2b\x2a\xe9\x58\x79\xa5\xa8\x72\x71\xa4\x73\x68\x64\ -\x10\xbc\xad\xf8\xfd\x96\xb7\x9b\xfa\x5c\xdd\xe8\x58\xc3\x73\x6a\ -\xde\xbc\x27\x7b\x09\x00\x41\x10\xde\xd2\x87\x0a\xe1\x2d\x5e\x57\ -\x7e\x40\x29\x25\xc2\x82\xea\x4a\xbc\x7c\x4d\x20\x6a\x28\x9e\xab\ -\x29\x04\xaa\x5f\x93\x47\x54\x53\x92\x22\xc3\xd9\x43\xd8\x70\xca\ -\x0d\xac\x72\xda\x5f\xd1\x92\xe8\x47\x2b\xab\x6a\xf0\xfa\xcd\x3b\ -\xd4\xbc\x7e\x2b\x02\x69\x7c\x0e\xef\xab\x07\x42\xbf\xd1\xe2\x35\ -\x5b\xd4\xa7\xbf\xa1\xa8\x37\x6f\xdf\xf3\x28\x97\x95\x57\xd1\x54\ -\xe2\x0d\x38\x53\xdd\xb8\x2e\xc7\xd3\xe7\xaf\xf1\xef\x0f\xc0\xfb\ -\x37\xff\xc6\xeb\x77\xef\x50\xf1\xe1\x2d\x2a\x3f\xbc\x43\xf5\xbb\ -\xf7\xa8\xa9\xd3\x6b\xca\x0d\x92\xde\xbc\xfb\x80\xb7\x7f\x92\xf8\ -\xa6\x24\xb5\x74\xee\x1f\x15\x6a\xbd\xb0\x52\x56\x55\xf5\x26\xf7\ -\xc3\x87\x0a\xe1\xcd\x6f\xbf\x09\x61\x1b\x4f\x0b\xa9\x17\x6f\x0b\ -\xef\x3f\xbc\x17\xde\x0b\x35\xc2\x9b\xca\x1a\x2a\xc8\xaa\x68\xac\ -\x14\xaa\xab\xaa\x04\x5a\xea\x3e\x51\x45\x15\x9d\xf3\xff\x50\x6f\ -\xde\x7e\xa0\x7b\xaf\xca\xfd\x5f\x39\x8f\xbf\x4e\xda\x91\x8c\x6d\ -\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x01\x3c\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ -\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\ -\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\xdc\x49\x44\x41\x54\x78\ -\x5e\xed\x9b\x31\x0a\xc5\x40\x14\x02\xbd\xff\xa1\x93\x1f\x08\xfe\ -\x5a\x30\x09\x16\x23\x8c\xd5\x16\xeb\xf4\x4f\x92\xce\x51\x8e\xe0\ -\xcd\x13\xdc\x35\x98\xeb\x5f\xe7\xcb\x20\x00\x01\x72\x0d\x26\x18\ -\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\x60\x82\ -\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\x0d\x26\ -\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\x60\ -\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\x0d\ -\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\ -\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\ -\x0d\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\ -\xd7\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\ -\x72\x0d\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\ -\x20\xd7\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\xe0\ -\x2f\x60\x91\x4f\xce\xe7\x7f\x8e\x88\xcd\xd9\x93\x86\x7d\xc7\x00\ -\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x29\x01\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -5247,62 +6048,70 @@ qt_resource_name = "\ \x07\x03\x7d\xc3\ \x00\x69\ \x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\ +\x00\x0f\ +\x0e\x5e\x8b\x87\ +\x00\x7a\ +\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x75\x00\x74\x00\x5f\x00\x30\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x0d\x2b\x57\xe7\ \x00\x5a\ \x00\x2d\x00\x58\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x08\x05\x80\x07\ +\x00\x62\ +\x00\x65\x00\x61\x00\x6d\x00\x32\x00\x2e\x00\x6a\x00\x70\x00\x67\ +\x00\x09\ +\x00\x95\x83\x87\ +\x00\x63\ +\x00\x6f\x00\x6c\x00\x46\x00\x32\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0a\ +\x07\xc9\x8e\x27\ +\x00\x6f\ +\x00\x75\x00\x74\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x0d\x2c\x57\xe7\ \x00\x5a\ \x00\x2d\x00\x59\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0e\ -\x04\xfb\x01\x67\ -\x00\x72\ -\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2d\x00\x63\x00\x63\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0e\ -\x0e\xf6\xf7\x07\ -\x00\x7a\ -\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x69\x00\x6e\x00\x5f\x00\x30\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x0b\x80\x5c\x67\ +\x00\x62\ +\x00\x65\x00\x61\x00\x6d\x00\x2e\x00\x6a\x00\x70\x00\x67\ \x00\x08\ \x08\xc8\x58\x67\ \x00\x73\ \x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0d\ +\x01\xb0\xf0\x47\ +\x00\x64\ +\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0b\ +\x0a\xb8\x4e\xa7\ +\x00\x66\ +\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x01\xa6\x83\x87\ +\x00\x63\ +\x00\x6f\x00\x6c\x00\x57\x00\x33\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x07\xc7\xb7\xe7\ \x00\x69\ \x00\x6e\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0f\ -\x0e\x5e\x8b\x87\ +\x00\x0e\ +\x0e\xf6\xf7\x07\ \x00\x7a\ -\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x75\x00\x74\x00\x5f\x00\x30\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x69\x00\x6e\x00\x5f\x00\x30\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x05\xe2\x5f\x07\ \x00\x6c\ \x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x6a\x00\x70\x00\x67\ -\x00\x08\ -\x0b\x80\x5c\x67\ -\x00\x62\ -\x00\x65\x00\x61\x00\x6d\x00\x2e\x00\x6a\x00\x70\x00\x67\ -\x00\x0d\ -\x01\xb0\xf0\x47\ -\x00\x64\ -\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x09\ -\x08\x05\x80\x07\ -\x00\x62\ -\x00\x65\x00\x61\x00\x6d\x00\x32\x00\x2e\x00\x6a\x00\x70\x00\x67\ +\x00\x0e\ +\x04\xfb\x01\x67\ +\x00\x72\ +\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2d\x00\x63\x00\x63\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x01\x7f\x42\x27\ \x00\x72\ \x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2d\x00\x63\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0b\ -\x0a\xb8\x4e\xa7\ -\x00\x66\ -\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0a\ -\x07\xc9\x8e\x27\ -\x00\x6f\ -\x00\x75\x00\x74\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x0b\x2c\x57\xe7\ \x00\x58\ @@ -5312,23 +6121,25 @@ qt_resource_name = "\ qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ -\x00\x00\x00\x18\x00\x02\x00\x00\x00\x10\x00\x00\x00\x03\ -\x00\x00\x01\x4c\x00\x00\x00\x00\x00\x01\x00\x00\xfa\x19\ -\x00\x00\x01\x14\x00\x00\x00\x00\x00\x01\x00\x00\xc9\x03\ -\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x4b\x78\ -\x00\x00\x00\xe8\x00\x00\x00\x00\x00\x01\x00\x00\xb4\xd5\ -\x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x88\x51\ -\x00\x00\x01\x88\x00\x00\x00\x00\x00\x01\x00\x01\x1a\x3a\ -\x00\x00\x01\x34\x00\x00\x00\x00\x00\x01\x00\x00\xe4\xba\ -\x00\x00\x01\x34\x00\x00\x00\x00\x00\x01\x00\x00\xcf\x5b\ -\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x79\x0f\ -\x00\x00\x01\x6c\x00\x00\x00\x00\x00\x01\x00\x00\xfc\xe9\ -\x00\x00\x01\xa2\x00\x00\x00\x00\x00\x01\x00\x01\x1b\x7a\ -\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x00\xbf\x45\ +\x00\x00\x00\x18\x00\x02\x00\x00\x00\x12\x00\x00\x00\x03\ +\x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x7d\xc5\ +\x00\x00\x01\xb2\x00\x00\x00\x00\x00\x01\x00\x01\x4a\x6a\ +\x00\x00\x01\x28\x00\x00\x00\x00\x00\x01\x00\x00\xf7\xd0\ +\x00\x00\x00\xec\x00\x00\x00\x00\x00\x01\x00\x00\xd4\x27\ +\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x01\x47\x86\ +\x00\x00\x01\x7a\x00\x00\x00\x00\x00\x01\x00\x01\x3d\x16\ +\x00\x00\x01\x40\x00\x00\x00\x00\x00\x01\x00\x01\x11\x26\ +\x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x96\x2f\ +\x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x68\x66\ +\x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x53\x07\ +\x00\x00\x00\xd6\x00\x00\x00\x00\x00\x01\x00\x00\xc4\xe5\ +\x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x00\xda\x7f\ +\x00\x00\x01\xd2\x00\x00\x00\x00\x00\x01\x00\x01\x4d\x3a\ +\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x01\x00\x00\xbb\x27\ +\x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x2b\x47\ +\x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x97\x6f\ \x00\x00\x00\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x27\xc0\ -\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x01\x00\x00\x89\x8e\ -\x00\x00\x00\x74\x00\x00\x00\x00\x00\x01\x00\x00\x4e\x5c\ +\x00\x00\x01\x58\x00\x00\x00\x00\x00\x01\x00\x01\x12\x63\ " def qInitResources(): diff --git a/Connections/Shear/Finplate/ui_finPlate.py b/Connections/Shear/Finplate/ui_finPlate.py index d6c3b0c..c4b4b50 100644 --- a/Connections/Shear/Finplate/ui_finPlate.py +++ b/Connections/Shear/Finplate/ui_finPlate.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'finPlate.ui' # -# Created: Tue Aug 11 16:24:42 2015 +# Created: Wed Sep 30 17:44:35 2015 # by: PyQt4 UI code generator 4.10.4 # # WARNING! All changes made in this file will be lost! @@ -258,14 +258,14 @@ class Ui_MainWindow(object): font.setWeight(50) self.txtFy.setFont(font) self.txtFy.setObjectName(_fromUtf8("txtFy")) - self.label_3 = QtGui.QLabel(self.dockWidgetContents) - self.label_3.setGeometry(QtCore.QRect(6, 155, 151, 25)) + self.lbl_ISsection = QtGui.QLabel(self.dockWidgetContents) + self.lbl_ISsection.setGeometry(QtCore.QRect(6, 155, 151, 25)) font = QtGui.QFont() font.setPointSize(11) font.setBold(False) font.setWeight(50) - self.label_3.setFont(font) - self.label_3.setObjectName(_fromUtf8("label_3")) + self.lbl_ISsection.setFont(font) + self.lbl_ISsection.setObjectName(_fromUtf8("lbl_ISsection")) self.comboConnLoc = QtGui.QComboBox(self.dockWidgetContents) self.comboConnLoc.setGeometry(QtCore.QRect(150, 40, 161, 25)) font = QtGui.QFont() @@ -277,6 +277,7 @@ class Ui_MainWindow(object): self.comboConnLoc.addItem(_fromUtf8("")) self.comboConnLoc.addItem(_fromUtf8("")) self.comboConnLoc.addItem(_fromUtf8("")) + self.comboConnLoc.addItem(_fromUtf8("")) self.txtFu = QtGui.QLineEdit(self.dockWidgetContents) self.txtFu.setGeometry(QtCore.QRect(150, 190, 161, 25)) font = QtGui.QFont() @@ -1509,10 +1510,11 @@ class Ui_MainWindow(object): self.menuGraphics.setTitle(_translate("MainWindow", "Graphics", None)) self.inputDock.setWindowTitle(_translate("MainWindow", "Input dock", None)) self.txtFy.setPlaceholderText(_translate("MainWindow", "000.0", None)) - self.label_3.setText(_translate("MainWindow", "<html><head/><body><p>Column section *</p></body></html>", None)) + self.lbl_ISsection.setText(_translate("MainWindow", "<html><head/><body><p>Column section *</p></body></html>", None)) self.comboConnLoc.setItemText(0, _translate("MainWindow", "Select Connectivity", None)) self.comboConnLoc.setItemText(1, _translate("MainWindow", "Column flange-Beam web", None)) self.comboConnLoc.setItemText(2, _translate("MainWindow", "Column web-Beam web", None)) + self.comboConnLoc.setItemText(3, _translate("MainWindow", "Beam-Beam", None)) self.txtFu.setPlaceholderText(_translate("MainWindow", "000.0", None)) self.label.setText(_translate("MainWindow", "<html><head/><body><p>Connecting members</p></body></html>", None)) self.label_4.setText(_translate("MainWindow", "<html><head/><body><p>Connectivity *</p></body></html>", None)) diff --git a/finfront.svg b/finfront.svg index 641a228..25d66dd 100644 --- a/finfront.svg +++ b/finfront.svg @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" ?> -<svg baseProfile="tiny" height="100%" version="1.2" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><polyline fill="none" points="200,300 200,0 0,0 0,1000 200,1000 200,700" stroke="blue" stroke-width="2.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.5" x1="95.5" x2="95.5" y1="0.0" y2="1000" /><line stroke="blue" stroke-linecap="square" stroke-width="2.5" x1="104.5" x2="104.5" y1="0" y2="1000" /><rect fill="none" height="320.0" stroke="blue" stroke-width="2.5" width="120.0" x="104.5" y="337.0" /><rect fill="none" height="320.0" stroke="blue" stroke-width="2.0" width="7" x="104.5" y="337.0" /><polyline fill="none" points="124.5,337.0 124.5,300 624.5,300 624.5,700 124.5,700 124.5,657.0" stroke="blue" stroke-width="2.5" /><line stroke="red" stroke-dasharray="5 5" stroke-linecap="square" stroke-width="2.5" x1="124.5" x2="124.5" y1="337.0" y2="657.0" /><line stroke="red" stroke-dasharray="5 5" stroke-linecap="square" stroke-width="2.5" x1="200" x2="200" y1="300" y2="700" /><line stroke="blue" stroke-linecap="square" stroke-width="2.5" x1="124.5" x2="624.5" y1="316.0" y2="316.0" /><line stroke="blue" stroke-linecap="square" stroke-width="2.5" x1="124.5" x2="624.5" y1="684.0" y2="684.0" /><circle cx="144.5" cy="377.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="132.5" x2="156.5" y1="377.0" y2="377.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="144.5" x2="144.5" y1="337.0" y2="657.0" /><circle cx="184.5" cy="377.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="172.5" x2="196.5" y1="377.0" y2="377.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="184.5" x2="184.5" y1="337.0" y2="657.0" /><circle cx="144.5" cy="437.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="132.5" x2="156.5" y1="437.0" y2="437.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="144.5" x2="144.5" y1="337.0" y2="657.0" /><circle cx="184.5" cy="437.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="172.5" x2="196.5" y1="437.0" y2="437.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="184.5" x2="184.5" y1="337.0" y2="657.0" /><circle cx="144.5" cy="497.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="132.5" x2="156.5" y1="497.0" y2="497.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="144.5" x2="144.5" y1="337.0" y2="657.0" /><circle cx="184.5" cy="497.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="172.5" x2="196.5" y1="497.0" y2="497.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="184.5" x2="184.5" y1="337.0" y2="657.0" /><circle cx="144.5" cy="557.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="132.5" x2="156.5" y1="557.0" y2="557.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="144.5" x2="144.5" y1="337.0" y2="657.0" /><circle cx="184.5" cy="557.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="172.5" x2="196.5" y1="557.0" y2="557.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="184.5" x2="184.5" y1="337.0" y2="657.0" /><circle cx="144.5" cy="617.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="132.5" x2="156.5" y1="617.0" y2="617.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="144.5" x2="144.5" y1="337.0" y2="657.0" /><circle cx="184.5" cy="617.0" fill="black" r="8" stroke="blue" stroke-width="1.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="172.5" x2="196.5" y1="617.0" y2="617.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="184.5" x2="184.5" y1="337.0" y2="657.0" /></svg>
\ No newline at end of file +<svg baseProfile="full" height="100%" version="1.1" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><marker id="id4" markerHeight="10" markerWidth="10" orient="auto" refX="8" refY="0"><polyline fill="black" points="2.5,0 0,3 8,0 0,-3" /></marker><marker id="id3" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker><marker id="id6" markerHeight="10" markerWidth="10" orient="auto" refX="8" refY="0"><polyline fill="black" points="2.5,0 0,3 8,0 0,-3" /></marker><marker id="id5" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker><marker id="id8" markerHeight="10" markerWidth="10" orient="auto" refX="8" refY="0"><polyline fill="black" points="2.5,0 0,3 8,0 0,-3" /></marker><marker id="id7" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker><marker id="id10" markerHeight="10" markerWidth="10" orient="auto" refX="8" refY="0"><polyline fill="black" points="2.5,0 0,3 8,0 0,-3" /></marker><marker id="id9" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker><marker id="id11" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker><marker id="id2" markerHeight="10" markerWidth="10" orient="auto" refX="2.5" refY="0"><polyline fill="black" points="2.5,0 0,3 10,0 0,-3" /></marker><marker id="id1" markerHeight="10" markerWidth="10" orient="auto" refX="-2.5" refY="0"><polyline fill="black" points="-2.5,0 0,3 -10,0 0,-3" /></marker><marker id="id12" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker><marker id="id13" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker><marker id="id14" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker><marker id="id15" markerHeight="10" markerWidth="10" orient="auto" refX="-8" refY="0"><polyline fill="black" points="-2.5,0 0,3 -8,0 0,-3" /></marker></defs><polyline fill="none" points="250,300 250,0 0,0 0,1000 250,1000 250,700" stroke="blue" stroke-width="2.5" /><line stroke="blue" stroke-linecap="square" stroke-width="2.5" x1="120.0" x2="120.0" y1="0.0" y2="1000" /><line stroke="blue" stroke-linecap="square" stroke-width="2.5" x1="130.0" x2="130.0" y1="0" y2="1000" /><rect fill="none" height="190.0" stroke="blue" stroke-width="2.5" width="80.0" x="130.0" y="333.0" /><rect fill="none" height="190.0" stroke="blue" stroke-width="2.0" width="6" x="130.0" y="333.0" /><polyline fill="none" points="150.0,333.0 150.0,300 650.0,300 650.0,700 150.0,700 150.0,523.0" stroke="blue" stroke-width="2.5" /><line stroke="red" stroke-dasharray="5 5" stroke-linecap="square" stroke-width="2.5" x1="150.0" x2="150.0" y1="333.0" y2="523.0" /><line stroke="red" stroke-dasharray="5 5" stroke-linecap="square" stroke-width="2.5" x1="250" x2="250" y1="300" y2="700" /><line stroke="blue" stroke-linecap="square" stroke-width="2.5" x1="150.0" x2="650.0" y1="316.0" y2="316.0" /><line stroke="blue" stroke-linecap="square" stroke-width="2.5" x1="150.0" x2="650.0" y1="684.0" y2="684.0" /><circle cx="170.0" cy="373.0" fill="none" r="8" stroke="blue" stroke-width="1.5" /><line stroke="red" stroke-linecap="square" stroke-width="2.0" x1="158.0" x2="182.0" y1="373.0" y2="373.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="170.0" x2="170.0" y1="333.0" y2="523.0" /><circle cx="170.0" cy="428.0" fill="none" r="8" stroke="blue" stroke-width="1.5" /><line stroke="red" stroke-linecap="square" stroke-width="2.0" x1="158.0" x2="182.0" y1="428.0" y2="428.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="170.0" x2="170.0" y1="333.0" y2="523.0" /><circle cx="170.0" cy="483.0" fill="none" r="8" stroke="blue" stroke-width="1.5" /><line stroke="red" stroke-linecap="square" stroke-width="2.0" x1="158.0" x2="182.0" y1="483.0" y2="483.0" /><line stroke="blue" stroke-dasharray="20 5 1 5" stroke-linecap="square" stroke-width="1.5" x1="170.0" x2="170.0" y1="333.0" y2="523.0" /><line marker-end="url(#id4)" marker-start="url(#id3)" stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-110.0" x2="-110.0" y1="373.0" y2="483.0" /><text fill="black" x="-215.0" y="428.0">2 @55.0mm c/c</text><line stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-120.0" x2="-100.0" y1="373.0" y2="373.0" /><line stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-120.0" x2="-100.0" y1="483.0" y2="483.0" /><line marker-end="url(#id6)" marker-start="url(#id5)" stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-110.0" x2="-110.0" y1="373.0" y2="333.0" /><text fill="black" x="-185.0" y="353.0">40.0mm</text><line stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-120.0" x2="-100.0" y1="373.0" y2="373.0" /><line stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-120.0" x2="-100.0" y1="333.0" y2="333.0" /><line stroke="#D8D8D8" stroke-linecap="square" stroke-width="2.5" x1="130.0" x2="-45" y1="333.0" y2="333.0" /><line stroke="#D8D8D8" stroke-linecap="square" stroke-width="2.5" x1="170.0" x2="-45" y1="373.0" y2="373.0" /><line stroke="#D8D8D8" stroke-linecap="square" stroke-width="2.5" x1="170.0" x2="-45" y1="483.0" y2="483.0" /><line stroke="#D8D8D8" stroke-linecap="square" stroke-width="2.5" x1="130.0" x2="-45" y1="523.0" y2="523.0" /><line marker-end="url(#id8)" marker-start="url(#id7)" stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-110.0" x2="-110.0" y1="483.0" y2="523.0" /><text fill="black" x="-185.0" y="503.0">40.0mm</text><line stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-120.0" x2="-100.0" y1="483.0" y2="483.0" /><line stroke="black" stroke-linecap="square" stroke-width="2.5" x1="-120.0" x2="-100.0" y1="523.0" y2="523.0" /><line marker-end="url(#id10)" marker-start="url(#id9)" stroke="black" stroke-linecap="square" stroke-width="2.5" x1="210.0" x2="290.0" y1="372.0" y2="372.0" /><text fill="black" x="250.0" y="322.0">40mm</text><line stroke="black" stroke-linecap="square" stroke-width="2.5" x1="210.0" x2="210.0" y1="362.0" y2="382.0" /><line stroke="black" stroke-linecap="square" stroke-width="2.5" x1="290.0" x2="290.0" y1="362.0" y2="382.0" /><polyline fill="none" marker-start="url(#id11)" points="170.0,523.0 370.0,723.0 510.0,723.0" stroke="black" stroke-width="2.5" /><text fill="black" font-family="sans-serif" font-size="12" x="384.0" y="708.0">PLT. 190X80X16</text><text fill="black" font-family="sans-serif" font-size="16" x="384.0" y="738.0" /><polyline fill="none" marker-start="url(#id12)" points="125,0 -48.2050807569,-100.0 -198.205080757,-100.0" stroke="black" stroke-width="2.5" /><text fill="black" font-family="sans-serif" font-size="12" x="-183.205080757" y="-115.0">Column ISSC 250</text><text fill="black" font-family="sans-serif" font-size="16" x="-213.205080757" y="-85.0" /><polyline fill="none" marker-start="url(#id13)" points="170.0,373.0 320.0,223.0 570.0,223.0" stroke="black" stroke-width="2.5" /><text fill="black" font-family="sans-serif" font-size="12" x="345.0" y="208.0">3 nos 16Ø holes</text><text fill="black" font-family="sans-serif" font-size="16" x="345.0" y="238.0">for M20 bolts (grade 8.8)</text><polyline fill="none" marker-start="url(#id14)" points="520,700 670.0,850.0 800.0,850.0" stroke="black" stroke-width="2.5" /><text fill="black" font-family="sans-serif" font-size="12" x="683.0" y="835.0">Beam ISMB 400</text><text fill="black" font-family="sans-serif" font-size="16" x="683.0" y="865.0" /><polyline fill="none" marker-start="url(#id15)" points="130.0,333.0 -120.0,83.0 -280.0,83.0" stroke="black" stroke-width="2.5" /><text fill="black" font-family="sans-serif" font-size="12" x="-264.0" y="68.0"> z 6 mm</text><text fill="black" font-family="sans-serif" font-size="16" x="-296.0" y="98.0" /></svg>
\ No newline at end of file diff --git a/saveINPUT.txt b/saveINPUT.txt index 7a2f8a1..83b3434 100644 --- a/saveINPUT.txt +++ b/saveINPUT.txt @@ -4,7 +4,7 @@ p1 (dp2 S'ColumSection' p3 -S'ISSC 200' +S'ISSC 250' p4 sS'fu (MPa)' p5 @@ -37,24 +37,24 @@ p16 (dp17 S'ShearForce (kN)' p18 -I240 +I140 ssS'Weld' p19 (dp20 S'Size (mm)' p21 -I8 +I6 ssS'Bolt' p22 (dp23 S'Grade' p24 -F4.8 +F8.8 sS'Diameter (mm)' p25 I16 sS'Type' p26 -S'Black Bolt' +S'HSFG' p27 ss.
\ No newline at end of file diff --git a/test.svg b/test.svg new file mode 100644 index 0000000..1bf5b49 --- /dev/null +++ b/test.svg @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" ?> +<svg baseProfile="tiny" height="100%" version="1.2" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="0" x2="0" y1="0" y2="80" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="0" x2="20" y1="80" y2="80" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="20" x2="20" y1="80" y2="0" /><line stroke="blue" stroke-linecap="square" stroke-width="2.0" x1="20" x2="0" y1="0" y2="0" /><line stroke="red" stroke-linecap="butt" stroke-width="2.0" x1="7" x2="7" y1="80" y2="0" /><line stroke="red" stroke-linecap="square" stroke-width="2.0" x1="13" x2="13" y1="80" y2="0" /></svg>
\ No newline at end of file diff --git a/utilities/__init__.py b/utilities/__init__.py index 5498698..08f538d 100644 --- a/utilities/__init__.py +++ b/utilities/__init__.py @@ -18,7 +18,7 @@ def colorTheEdges(shp, display,color,width): Ex.Next() def setDefaultEdgeStyle(shp, display): - colorTheEdges(shp, display, Quantity_NOC_BLACK, 1.5) + colorTheEdges(shp, display, Quantity_NOC_BLACK, 2.2) #return shps |