*HEADER    RNA                                     03-JAN-17   5UF3              
*TITLE     STRUCTURE EFFECTS OF THE FOUR-ADENINE LOOP OF THE COLIPHAGE GA        
*TITLE    2 REPLICASE RNA OPERATOR                                               
*COMPND    MOL_ID: 1;                                                            
*COMPND   2 MOLECULE: PHAGE GA OPERATOR RNA HAIRPIN;                             
*COMPND   3 CHAIN: A;                                                            
*COMPND   4 ENGINEERED: YES                                                      
*SOURCE    MOL_ID: 1;                                                            
*SOURCE   2 SYNTHETIC: YES;                                                      
*SOURCE   3 ORGANISM_SCIENTIFIC: ENTEROBACTERIA PHAGE GA;                        
*SOURCE   4 ORGANISM_TAXID: 12018                                                
*KEYWDS    PHAGE, RNA HAIRPIN, TETRALOOP, (A-A)-U MOTIF, RNA                     
*EXPDTA    SOLUTION NMR                                                          
*NUMMDL    8                                                                     
*AUTHOR    A.T.CHANG,M.TRAN,E.DEJONG,E.P.NIKONOWICZ                              
*REVDAT   1   31-MAY-17 5UF3    0                                                
# Restraints file 1: phagega.py
# modified by jwang 10/03/2007
# H-bond table (hbond.tbl) is seperated from 38mer_noe.tbl and set hond pot
# so far the results with minimum energy 
# @-places different in different v5 version
#
xplor.parseArguments()


# filename for output structures. This string must contain the STRUCTURE
#
outFilename = "phagega_STRUCTURE.pdb"
numberOfStructures=50                #usually you want to create at least 20 


# protocol module has many high-level helper functions.
#
import protocol

protocol.initRandomSeed(3421)   #set random seed - by time
#seed=10
command = xplor.command
protocol.initParams("nucleic")

# generate PSF data from sequence and initialize the correct parameters.
#
from psfGen import seqToPSF
seqToPSF('phagega.seq', 'rna')

# generate a random extended structure with correct covalent geometry
#  
protocol.initCoords("phagega.pdb")
protocol.covalentMinimize()
protocol.fixupCovalentGeom(maxIters=100, useVDW=1, verbose=1)


#
# a PotList conatins a list of potential terms. 
#
from potList import PotList
potList = PotList()

from simulationTools import MultRamp, StaticRamp, InitialParams

rampedParams=[]
highTempParams=[]

#
# import necessary modules
#
from xplorPot import XplorPot
from avePot import AvePot
from ivm import IVM
from rdcPotTools import create_RDCPot, scale_toNH
from varTensorTools import create_VarTensor
import varTensorTools


# orientation Tensor - used with the dipolar coupling term
#
oTensor = create_VarTensor("oTensor")
oTensor.setDa(-11.818)
oTensor.setRh(0.372)
rdc = create_RDCPot(name="rdc",
                    oTensor=oTensor,
                    file="phagega_rdc.tbl")
#scale_toNH(rdc)
rdc.setScale(1.0)
rdc.setThreshold(1.5)
print rdc.info()
potList.append(rdc)
rampedParams.append( MultRamp(0.05, 5.0, "rdc.setScale( VALUE )") )
from varTensorTools import calcTensorOrientation, calcTensor
calcTensor(oTensor)
calcTensorOrientation(oTensor)
print "Da: %7.2f    Rh: %7.3f" % (oTensor.Da() , oTensor.Rh())
# set up NOE potential
from noePotTools import create_NOEPot
noe = PotList("noe")
noePot = create_NOEPot("noeall",file="phagega_noe.tbl")
noePot.setPotType("soft")
# noePot.setScale( 1. )   # removed by jwang-05/21/2009
noe.append(noePot)

# need to be satisfied by all structures
noeHB  = create_NOEPot("noehb","phagega_hbonds.tbl",esim=xplor.simulation)
noeHB.setPotType("hard")
# noeHB.setScale(1.)       # removed by jwang-05/21/2009
noe.append(noeHB)
potList.append(noe)

print noePot.info() 
print noeHB.info()
rampedParams.append( MultRamp(2,30, "noe.setScale( VALUE )") )


# Set up dihedral angles
protocol.initDihedrals("phagega_dihedral.tbl", useDefaults=0)
potList.append(XplorPot('CDIH')) 
highTempParams.append( StaticRamp("potList['CDIH'].setScale(10)") )        
rampedParams.append( StaticRamp("potList['CDIH'].setScale(100)") )         
# set custom values of threshold values for violation calculation
#
potList['CDIH'].setThreshold( 5 )


#setup parameters for atom-atom repulsive term. (van der Waals-like term) 

protocol.initNBond(cutnb=4.5)
potList.append( XplorPot('VDW') )
rampedParams.append( StaticRamp("protocol.initNBond()") )
rampedParams.append( MultRamp(0.9,0.8,
                              "command('param nbonds repel VALUE end end')") )
rampedParams.append( MultRamp(.004,4,
                              "command('param nbonds rcon VALUE end end')") )

# 
from repelPotTools import create_RepelPot,initRepel 
repel = create_RepelPot('repel')
potList.append(repel) 
rampedParams.append( StaticRamp("initRepel(repel,use14=False)") )
rampedParams.append( MultRamp(.004,4, "repel.setScale( VALUE)") ) 
# nonbonded interaction only between CA atoms 
#highTempParams.append( StaticRamp("""initRepel(repel, use14=True, scale=0.004, repel=1.2, moveTol=45, interactingAtoms='name CA' )""") )

potList.append( XplorPot("BOND") )
potList.append( XplorPot("ANGL") )
potList.append( XplorPot("IMPR") )
potList['ANGL'].setThreshold( 5 )
potList['IMPR'].setThreshold( 5 )
rampedParams.append( MultRamp(0.4,1,"potList['ANGL'].setScale(VALUE)") )
rampedParams.append( MultRamp(0.1,1,"potList['IMPR'].setScale(VALUE)") )



#
# IVM setup
#
from ivm import IVM

dyn = IVM()


dyn.potList().add( XplorPot("BOND") )
dyn.potList().add( XplorPot("ANGL") )
dyn.potList().add( XplorPot("IMPR") )

#dyn.breakAllBondsIn("not resname ANI")
#oTensor.setFreedom("fix")
#varTensorTools.topologySetup(dyn,oTensor)

protocol.initMinimize(dyn,numSteps=1000)
dyn.run()

#
# reset ivm topology for torsion-angle dynamics
#
dyn.reset()
dyn.potList().removeAll()
protocol.torsionTopology(dyn, oTensor)

oTensor.setFreedom("fixDa, fixRh")
varTensorTools.topologySetup(dyn,oTensor)
protocol.torsionTopology(dyn)

#
# minc used for final cartesian minimization
#
minc = IVM()
protocol.initMinimize(minc)

from selectTools import IVM_groupRigidSidechain
IVM_groupRigidSidechain(minc)
#minc.breakAllBondsIn("not resname ANI")

oTensor.setFreedom("varyDa, varyRh")
varTensorTools.topologySetup(minc,oTensor)
protocol.cartesianTopology(minc)                  

# object which performs simulated annealing
# 
from simulationTools import AnnealIVM
init_t  = 2500.     # Need high temp and slow annealing to converge
cool = AnnealIVM(initTemp =init_t,
                 finalTemp=25,
                 tempStep =25,                        
                 ivm=dyn,
                 rampedParams = rampedParams,
                 toleranceFactor=100)


def structLoopAction(loopInfo):
    #
    # this function calculates a single structure
    #
    ##$ protocol.genExtendedStructure("tyrACL.pdb")

    # initialize parameters for high temp dynamics.
    InitialParams( rampedParams ) 
    InitialParams( highTempParams ) 

    # high-temp dynamics setup - only need to specify parameters which
    # differfrom initial values in rampedParams
    #
    protocol.initNBond(repel=1.2,
                       cutnb=100,
                       tolerance=45,
                       selStr="name CA")

    #
    # high temp dynamics
    # note no Van der Waals term
    #
    protocol.initDynamics(dyn,
                          potList=potList, # potential terms to use
                          bathTemp=init_t,
                          initVelocities=1,
                          finalTime=20,   # stops at 800ps or 8000 steps
                          stepsize=0.01,
                          numSteps=10000,
                          printInterval=100,
                          eTol_factor=0.01)
    protocol.initMinimize(dyn,numSteps=1000)
    #dyn.setMinStepSize(0)
    #dyn.setAdjustStepsize(0)
    dyn.setETolerance(init_t/100)
    dyn.setMaxDeltaE(50000)
    #dyn.setMaxCalls(5)
    dyn.run()


    #--------------------------------------------------------------------------
    # initialize parameters for cooling loop
    InitialParams( rampedParams )
# removed by jwang-05/21/2009    protocol.initNBond() 
    #
    # initialize integrator for simulated annealing
    #
    protocol.initDynamics(dyn,
                          potList=potList,
                          bathTemp=init_t,
                          initVelocities=1,
                          finalTime=.2 ,       # .2ps, whichever is less
                          stepsize=0.01,
                          numSteps=10000,
                          printInterval=100,
                          eTol_factor=0.01)
    #dyn.setMinStepSize(0)
    dyn.setETolerance(init_t/100)
    dyn.setMaxDeltaE(50000)
    #dyn.setMaxCalls(5)
    #dyn.setAdjustStepsize(0)

    # perform simulated annealing
    #
    cool.run()
              
              
    #
    # final torsion angle minimization
    #
    protocol.initMinimize(dyn,
                          potList=potList,
                          printInterval=50)
    dyn.run()

    #
    # optional cooling in Cartesian coordinates
    #
    protocol.initDynamics(minc,
                          potList=potList,
                          numSteps=500,        #at each temp: 100 steps or
                          finalTime=.4 ,       # .2ps, whichever is less
                          printInterval=100)

    #
    # final all atom minimization
    #
    protocol.initMinimize(minc,
                          potList=potList,
                          printInterval=100)
    minc.run()

    #
    # analyze and write out structure
    # 
    loopInfo.writeStructure(potList)
    pass



from simulationTools import StructureLoop
StructureLoop(numStructures=numberOfStructures,
              pdbTemplate=outFilename,
              structLoopAction=structLoopAction,
              genViolationStats=1,
              averageTopFraction=0.5, #report stats on best 50% of structs
              averageSortPots=[potList['BOND'],potList['ANGL'],potList['IMPR'],
                               noe,rdc,potList['CDIH']],
              averagePotList=potList).run()
# Restraints file 2: phagega_dihedral.tbl
!
!Beta
!
assign (resid 2 and name P  )
       (resid 2 and name O5')
       (resid 2 and name C5')
       (resid 2 and name C4') 30.0 -180.0 40.0 2

assign (resid 3 and name P  )
       (resid 3 and name O5')
       (resid 3 and name C5')
       (resid 3 and name C4') 30.0 -180.0 40.0 2

assign (resid 4 and name P  )
       (resid 4 and name O5')
       (resid 4 and name C5')
       (resid 4 and name C4') 30.0 -180.0 40.0 2

assign (resid 5 and name P  )
       (resid 5 and name O5')
       (resid 5 and name C5')
       (resid 5 and name C4') 30.0 -180.0 40.0 2

assign (resid 6 and name P  )
       (resid 6 and name O5')
       (resid 6 and name C5')
       (resid 6 and name C4') 30.0 -180.0 40.0 2

assign (resid 7 and name P  )
       (resid 7 and name O5')
       (resid 7 and name C5')
       (resid 7 and name C4') 30.0 -180.0 40.0 2

!assign (resid 8 and name P  )
!       (resid 8 and name O5')
!       (resid 8 and name C5')
!       (resid 8 and name C4') 30.0 -180.0 40.0 2

assign (resid 9 and name P  )
       (resid 9 and name O5')
       (resid 9 and name C5')
       (resid 9 and name C4') 30.0 -180.0 40.0 2

assign (resid 10 and name P  )
       (resid 10 and name O5')
       (resid 10 and name C5')
       (resid 10 and name C4') 30.0 -180.0 40.0 2

!assign (resid 11 and name P  )
!       (resid 11 and name O5')
!       (resid 11 and name C5')
!       (resid 11 and name C4') 30.0 -180.0 10.0 2

assign (resid 12 and name P  )
       (resid 12 and name O5')
       (resid 12 and name C5')
       (resid 12 and name C4') 30.0 -180.0 40.0 2

assign (resid 13 and name P  )
       (resid 13 and name O5')
       (resid 13 and name C5')
       (resid 13 and name C4') 30.0 -180.0 40.0 2

assign (resid 14 and name P  )
       (resid 14 and name O5')
       (resid 14 and name C5')
       (resid 14 and name C4') 30.0 -180.0 40.0 2

assign (resid 15 and name P  )
       (resid 15 and name O5')
       (resid 15 and name C5')
       (resid 15 and name C4') 30.0 -180.0 40.0 2

assign (resid 16 and name P  )
       (resid 16 and name O5')
       (resid 16 and name C5')
       (resid 16 and name C4') 30.0 -180.0 40.0 2

assign (resid 17 and name P  )
       (resid 17 and name O5')
       (resid 17 and name C5')
       (resid 17 and name C4') 30.0 -180.0 40.0 2

assign (resid 18 and name P  )
       (resid 18 and name O5')
       (resid 18 and name C5')
       (resid 18 and name C4') 30.0 -180.0 40.0 2

assign (resid 19 and name P  )
       (resid 19 and name O5')
       (resid 19 and name C5')
       (resid 19 and name C4') 30.0 -180.0 40.0 2

assign (resid 20 and name P  )
       (resid 20 and name O5')
       (resid 20 and name C5')
       (resid 20 and name C4') 30.0 -180.0 40.0 2

assign (resid 21 and name P  )
       (resid 21 and name O5')
       (resid 21 and name C5')
       (resid 21 and name C4') 30.0 -180.0 40.0 2

assign (resid 22 and name P  )
       (resid 22 and name O5')
       (resid 22 and name C5')
       (resid 22 and name C4') 30.0 -180.0 40.0 2

assign (resid 23 and name P  )
       (resid 23 and name O5')
       (resid 23 and name C5')
       (resid 23 and name C4') 30.0 -180.0 40.0 2

!
!Gamma
!
assign (resid 1 and name O5')
       (resid 1 and name C5')
       (resid 1 and name C4')
       (resid 1 and name C3') 30.0 60.0 40.0 2

assign (resid 2 and name O5')
       (resid 2 and name C5')
       (resid 2 and name C4')
       (resid 2 and name C3') 30.0 60.0 40.0 2

assign (resid 3 and name O5')
       (resid 3 and name C5')
       (resid 3 and name C4')
       (resid 3 and name C3') 30.0 60.0 40.0 2

assign (resid 4 and name O5')
       (resid 4 and name C5')
       (resid 4 and name C4')
       (resid 4 and name C3') 30.0 60.0 40.0 2

assign (resid 5 and name O5')
       (resid 5 and name C5')
       (resid 5 and name C4')
       (resid 5 and name C3') 30.0 60.0 40.0 2

assign (resid 6 and name O5')
       (resid 6 and name C5')
       (resid 6 and name C4')
       (resid 6 and name C3') 30.0 60.0 40.0 2

assign (resid 7 and name O5')
       (resid 7 and name C5')
       (resid 7 and name C4')
       (resid 7 and name C3') 30.0 60.0 40.0 2

!assign (resid 8 and name O5')
!       (resid 8 and name C5')
!       (resid 8 and name C4')
!       (resid 8 and name C3') 30.0 60.0 10.0 2

assign (resid 9 and name O5')
       (resid 9 and name C5')
       (resid 9 and name C4')
       (resid 9 and name C3') 30.0 60.0 40.0 2

assign (resid 10 and name O5')
       (resid 10 and name C5')
       (resid 10 and name C4')
       (resid 10 and name C3') 30.0 60.0 40.0 2

!assign (resid 11 and name O5')
!       (resid 11 and name C5')
!       (resid 11 and name C4')
!       (resid 11 and name C3') 30.0 60.0 10.0 2

!assign (resid 12 and name O5')
!       (resid 12 and name C5')
!       (resid 12 and name C4')
!       (resid 12 and name C3') 30.0 60.0 40.0 2

!assign (resid 13 and name O5')
!       (resid 13 and name C5')
!       (resid 13 and name C4')
!       (resid 13 and name C3') 30.0 60.0 40.0 2

!assign (resid 14 and name O5')
!       (resid 14 and name C5')
!       (resid 14 and name C4')
!       (resid 14 and name C3') 30.0 60.0 40.0 2

assign (resid 15 and name O5')
       (resid 15 and name C5')
       (resid 15 and name C4')
       (resid 15 and name C3') 30.0 60.0 40.0 2

assign (resid 16 and name O5')
       (resid 16 and name C5')
       (resid 16 and name C4')
       (resid 16 and name C3') 30.0 60.0 40.0 2

assign (resid 17 and name O5')
       (resid 17 and name C5')
       (resid 17 and name C4')
       (resid 17 and name C3') 30.0 60.0 40.0 2

assign (resid 18 and name O5')
       (resid 18 and name C5')
       (resid 18 and name C4')
       (resid 18 and name C3') 30.0 60.0 40.0 2

assign (resid 19 and name O5')
       (resid 19 and name C5')
       (resid 19 and name C4')
       (resid 19 and name C3') 30.0 60.0 40.0 2

assign (resid 20 and name O5')
       (resid 20 and name C5')
       (resid 20 and name C4')
       (resid 20 and name C3') 30.0 60.0 40.0 2

assign (resid 21 and name O5')
       (resid 21 and name C5')
       (resid 21 and name C4')
       (resid 21 and name C3') 30.0 60.0 40.0 2

assign (resid 22 and name O5')
       (resid 22 and name C5')
       (resid 22 and name C4')
       (resid 22 and name C3') 30.0 60.0 40.0 2

assign (resid 23 and name O5')
       (resid 23 and name C5')
       (resid 23 and name C4')
       (resid 23 and name C3') 30.0 60.0 40.0 2

!
!Epsilon
!
assign (resid 1 and name C4')
       (resid 1 and name C3')
       (resid 1 and name O3')
       (resid 2 and name P  ) 30.0 -150.0 40.0  2

assign (resid 2 and name C4')
       (resid 2 and name C3')
       (resid 2 and name O3')
       (resid 3 and name P  ) 30.0 -150.0 40.0  2

assign (resid 3 and name C4')
       (resid 3 and name C3')
       (resid 3 and name O3')
       (resid 4 and name P  ) 30.0 -150.0 40.0  2

assign (resid 4 and name C4')
       (resid 4 and name C3')
       (resid 4 and name O3')
       (resid 5 and name P  ) 30.0 -150.0 40.0  2

assign (resid 5 and name C4')
       (resid 5 and name C3')
       (resid 5 and name O3')
       (resid 6 and name P  ) 30.0 -150.0 40.0  2

assign (resid 6 and name C4')
       (resid 6 and name C3')
       (resid 6 and name O3')
       (resid 7 and name P  ) 30.0 -150.0 40.0  2

assign (resid 7 and name C4')
       (resid 7 and name C3')
       (resid 7 and name O3')
       (resid 8 and name P  ) 30.0 -150.0 40.0  2

!assign (resid 8 and name C4')
!       (resid 8 and name C3')
!       (resid 8 and name O3')
!       (resid 9 and name P  ) 30.0 -150.0 40.0  2

assign (resid 9 and name C4')
       (resid 9 and name C3')
       (resid 9 and name O3')
       (resid 10 and name P  ) 30.0 -150.0 40.0  2

!assign (resid 10 and name C4')
!       (resid 10 and name C3')
!       (resid 10 and name O3')
!       (resid 11 and name P  ) 30.0 -150.0 10.0  2

!assign (resid 11 and name C4')
!       (resid 11 and name C3')
!       (resid 11 and name O3')
!       (resid 12 and name P  ) 30.0 -150.0 10.0  2

assign (resid 12 and name C4')
       (resid 12 and name C3')
       (resid 12 and name O3')
       (resid 13 and name P  ) 30.0 -150.0 40.0  2

assign (resid 13 and name C4')
       (resid 13 and name C3')
       (resid 13 and name O3')
       (resid 14 and name P  ) 30.0 -150.0 40.0  2

assign (resid 14 and name C4')
       (resid 14 and name C3')
       (resid 14 and name O3')
       (resid 15 and name P  ) 30.0 -150.0 40.0  2

assign (resid 15 and name C4')
       (resid 15 and name C3')
       (resid 15 and name O3')
       (resid 16 and name P  ) 30.0 -150.0 40.0  2

assign (resid 16 and name C4')
       (resid 16 and name C3')
       (resid 16 and name O3')
       (resid 17 and name P  ) 30.0 -150.0 40.0  2

assign (resid 17 and name C4')
       (resid 17 and name C3')
       (resid 17 and name O3')
       (resid 18 and name P  ) 30.0 -150.0 40.0  2

assign (resid 18 and name C4')
       (resid 18 and name C3')
       (resid 18 and name O3')
       (resid 19 and name P  ) 30.0 -150.0 40.0  2

assign (resid 19 and name C4')
       (resid 19 and name C3')
       (resid 19 and name O3')
       (resid 20 and name P  ) 30.0 -150.0 40.0  2

assign (resid 20 and name C4')
       (resid 20 and name C3')
       (resid 20 and name O3')
       (resid 21 and name P  ) 30.0 -150.0 40.0  2

assign (resid 21 and name C4')
       (resid 21 and name C3')
       (resid 21 and name O3')
       (resid 22 and name P  ) 30.0 -150.0 40.0  2

assign (resid 22 and name C4')
       (resid 22 and name C3')
       (resid 22 and name O3')
       (resid 23 and name P  ) 30.0 -150.0 40.0  2

!
!Alpha
!
assign (resid 1 and name O3')
       (resid 2 and name P  )
       (resid 2 and name O5')
       (resid 2 and name C5') 10.0 -65.0 40.0 2

assign (resid 2 and name O3')
       (resid 3 and name P  )
       (resid 3 and name O5')
       (resid 3 and name C5') 10.0 -65.0 40.0 2

assign (resid 3 and name O3')
       (resid 4 and name P  )
       (resid 4 and name O5')
       (resid 4 and name C5') 10.0 -65.0 40.0 2

assign (resid 4 and name O3')
       (resid 5 and name P  )
       (resid 5 and name O5')
       (resid 5 and name C5') 10.0 -65.0 40.0 2

assign (resid 5 and name O3')
       (resid 6 and name P  )
       (resid 6 and name O5')
       (resid 6 and name C5') 10.0 -65.0 40.0 2

assign (resid 6 and name O3')
       (resid 7 and name P  )
       (resid 7 and name O5')
       (resid 7 and name C5') 10.0 -65.0 40.0 2

assign (resid 7 and name O3')
       (resid 8 and name P  )
       (resid 8 and name O5')
       (resid 8 and name C5') 10.0 0.0 120.0 2

assign (resid 8 and name O3')
       (resid 9 and name P  )
       (resid 9 and name O5')
       (resid 9 and name C5') 10.0 0.0 120.0 2

assign (resid 9 and name O3')
       (resid 10 and name P  )
       (resid 10 and name O5')
       (resid 10 and name C5') 10.0 0.0 120.0 2

assign (resid 10 and name O3')
       (resid 11 and name P  )
       (resid 11 and name O5')
       (resid 11 and name C5') 10.0 0.0 120.0 2

assign (resid 11 and name O3')
       (resid 12 and name P  )
       (resid 12 and name O5')
       (resid 12 and name C5') 10.0 0.0 120.0 2

assign (resid 12 and name O3')
       (resid 13 and name P  )
       (resid 13 and name O5')
       (resid 13 and name C5') 10.0 0.0 120.0 2

assign (resid 13 and name O3')
       (resid 14 and name P  )
       (resid 14 and name O5')
       (resid 14 and name C5') 10.0 0.0 120.0 2

assign (resid 14 and name O3')
       (resid 15 and name P  )
       (resid 15 and name O5')
       (resid 15 and name C5') 10.0 0.0 120.0 2

assign (resid 15 and name O3')
       (resid 16 and name P  )
       (resid 16 and name O5')
       (resid 16 and name C5') 10.0 -65.0 40.0 2

assign (resid 16 and name O3')
       (resid 17 and name P  )
       (resid 17 and name O5')
       (resid 17 and name C5') 10.0 -65.0 40.0 2

assign (resid 17 and name O3')
       (resid 18 and name P  )
       (resid 18 and name O5')
       (resid 18 and name C5') 10.0 -65.0 40.0 2

assign (resid 18 and name O3')
       (resid 19 and name P  )
       (resid 19 and name O5')
       (resid 19 and name C5') 10.0 -65.0 40.0 2

assign (resid 19 and name O3')
       (resid 20 and name P  )
       (resid 20 and name O5')
       (resid 20 and name C5') 10.0 -65.0 40.0 2

assign (resid 20 and name O3')
       (resid 21 and name P  )
       (resid 21 and name O5')
       (resid 21 and name C5') 10.0 -65.0 40.0 2

assign (resid 21 and name O3')
       (resid 22 and name P  )
       (resid 22 and name O5')
       (resid 22 and name C5') 10.0 -65.0 40.0 2

assign (resid 22 and name O3')
       (resid 23 and name P  )
       (resid 23 and name O5')
       (resid 23 and name C5') 10.0 -65.0 40.0 2

!
!Zeta
!
assign (resid 1  and name C3')
       (resid 1  and name O3')
       (resid 2  and name P  )
       (resid 2  and name O5') 30.0 -70.0 40.0 2

assign (resid 2  and name C3')
       (resid 2  and name O3')
       (resid 3  and name P  )
       (resid 3  and name O5') 30.0 -70.0 40.0 2

assign (resid 3  and name C3')
       (resid 3  and name O3')
       (resid 4  and name P  )
       (resid 4  and name O5') 30.0 -70.0 40.0 2

assign (resid 4  and name C3')
       (resid 4  and name O3')
       (resid 5  and name P  )
       (resid 5  and name O5') 30.0 -70.0 40.0 2

assign (resid 5  and name C3')
       (resid 5  and name O3')
       (resid 6  and name P  )
       (resid 6  and name O5') 30.0 -70.0 40.0 2

assign (resid 6  and name C3')
       (resid 6  and name O3')
       (resid 7  and name P  )
       (resid 7  and name O5') 30.0 -70.0 40.0 2

assign (resid 7  and name C3')
       (resid 7  and name O3')
       (resid 8  and name P  )
       (resid 8  and name O5') 30.0 0.0 120.0 2

assign (resid 8  and name C3')
       (resid 8  and name O3')
       (resid 9  and name P  )
       (resid 9  and name O5') 30.0 0.0 120.0 2

assign (resid 9  and name C3')
       (resid 9  and name O3')
       (resid 10  and name P  )
       (resid 10  and name O5') 30.0 -70.0 40.0 2

assign (resid 10  and name C3')
       (resid 10  and name O3')
       (resid 11  and name P  )
       (resid 11  and name O5') 30.0 0.0 120.0 2

assign (resid 11  and name C3')
       (resid 11  and name O3')
       (resid 12  and name P  )
       (resid 12  and name O5') 30.0 0.0 120.0 2

assign (resid 12  and name C3')
       (resid 12  and name O3')
       (resid 13  and name P  )
       (resid 13  and name O5') 30.0 0.0 120.0 2

assign (resid 13  and name C3')
       (resid 13  and name O3')
       (resid 14  and name P  )
       (resid 14  and name O5') 30.0 0.0 120.0 2

assign (resid 14  and name C3')
       (resid 14  and name O3')
       (resid 15  and name P  )
       (resid 15  and name O5') 30.0 0.0 120.0 2

assign (resid 15  and name C3')
       (resid 15  and name O3')
       (resid 16  and name P  )
       (resid 16  and name O5') 30.0 -70.0 40.0 2

assign (resid 16  and name C3')
       (resid 16  and name O3')
       (resid 17  and name P  )
       (resid 17  and name O5') 30.0 -70.0 40.0 2

assign (resid 17  and name C3')
       (resid 17  and name O3')
       (resid 18  and name P  )
       (resid 18  and name O5') 30.0 -70.0 40.0 2

assign (resid 18  and name C3')
       (resid 18  and name O3')
       (resid 19  and name P  )
       (resid 19  and name O5') 30.0 -70.0 40.0 2

assign (resid 19  and name C3')
       (resid 19  and name O3')
       (resid 20  and name P  )
       (resid 20  and name O5') 30.0 -70.0 40.0 2

assign (resid 20  and name C3')
       (resid 20  and name O3')
       (resid 21  and name P  )
       (resid 21  and name O5') 30.0 -70.0 40.0 2

assign (resid 21  and name C3')
       (resid 21  and name O3')
       (resid 22  and name P  )
       (resid 22  and name O5') 30.0 -70.0 40.0 2

assign (resid 22  and name C3')
       (resid 22  and name O3')
       (resid 23  and name P  )
       (resid 23  and name O5') 30.0 -70.0 40.0 2

!
!Delta
!
assign (resid 1 and name C5')
       (resid 1 and name C4')
       (resid 1 and name C3')
       (resid 1 and name O3') 10.0 82.0 20.0 2

assign (resid 2 and name C5')
       (resid 2 and name C4')
       (resid 2 and name C3')
       (resid 2 and name O3') 10.0 82.0 20.0 2

assign (resid 3 and name C5')
       (resid 3 and name C4')
       (resid 3 and name C3')
       (resid 3 and name O3') 10.0 82.0 20.0 2

assign (resid 4 and name C5')
       (resid 4 and name C4')
       (resid 4 and name C3')
       (resid 4 and name O3') 10.0 82.0 20.0 2

assign (resid 5 and name C5')
       (resid 5 and name C4')
       (resid 5 and name C3')
       (resid 5 and name O3') 10.0 82.0 20.0 2

assign (resid 6 and name C5')
       (resid 6 and name C4')
       (resid 6 and name C3')
       (resid 6 and name O3') 10.0 82.0 20.0 2

assign (resid 7 and name C5')
       (resid 7 and name C4')
       (resid 7 and name C3')
       (resid 7 and name O3') 10.0 82.0 20.0 2

!assign (resid 8 and name C5')
!       (resid 8 and name C4')
!       (resid 8 and name C3')
!       (resid 8 and name O3') 10.0 82.0 10.0 2

assign (resid 9 and name C5')
       (resid 9 and name C4')
       (resid 9 and name C3')
       (resid 9 and name O3') 10.0 82.0 20.0 2

assign (resid 10 and name C5')
       (resid 10 and name C4')
       (resid 10 and name C3')
       (resid 10 and name O3') 10.0 82.0 20.0 2

!assign (resid 11 and name C5')
!       (resid 11 and name C4')
!       (resid 11 and name C3')
!       (resid 11 and name O3') 10.0 82.0 10.0 2

!assign (resid 12 and name C5')
!       (resid 12 and name C4')
!       (resid 12 and name C3')
!       (resid 12 and name O3') 10.0 82.0 20.0 2

!assign (resid 13 and name C5')
!       (resid 13 and name C4')
!       (resid 13 and name C3')
!       (resid 13 and name O3') 10.0 82.0 20.0 2

!assign (resid 14 and name C5')
!       (resid 14 and name C4')
!       (resid 14 and name C3')
!       (resid 14 and name O3') 10.0 82.0 20.0 2

assign (resid 15 and name C5')
       (resid 15 and name C4')
       (resid 15 and name C3')
       (resid 15 and name O3') 10.0 82.0 20.0 2

assign (resid 16 and name C5')
       (resid 16 and name C4')
       (resid 16 and name C3')
       (resid 16 and name O3') 10.0 82.0 20.0 2

assign (resid 17 and name C5')
       (resid 17 and name C4')
       (resid 17 and name C3')
       (resid 17 and name O3') 10.0 82.0 20.0 2

assign (resid 18 and name C5')
       (resid 18 and name C4')
       (resid 18 and name C3')
       (resid 18 and name O3') 10.0 82.0 20.0 2

assign (resid 19 and name C5')
       (resid 19 and name C4')
       (resid 19 and name C3')
       (resid 19 and name O3') 10.0 82.0 20.0 2

assign (resid 20 and name C5')
       (resid 20 and name C4')
       (resid 20 and name C3')
       (resid 20 and name O3') 10.0 82.0 20.0 2

assign (resid 21 and name C5')
       (resid 21 and name C4')
       (resid 21 and name C3')
       (resid 21 and name O3') 10.0 82.0 20.0 2

assign (resid 22 and name C5')
       (resid 22 and name C4')
       (resid 22 and name C3')
       (resid 22 and name O3') 10.0 82.0 20.0 2

assign (resid 23 and name C5')
       (resid 23 and name C4')
       (resid 23 and name C3')
       (resid 23 and name O3') 10.0 82.0 20.0 2

!
!Chi
!
assign (resid 1 and name O4')
       (resid 1 and name C1')
       (resid 1 and name N9 )
       (resid 1 and name C4 ) 10.0 202.0 20.0 2

assign (resid 2 and name O4')
       (resid 2 and name C1')
       (resid 2 and name N9 )
       (resid 2 and name C4 ) 10.0 202.0 20.0 2

assign (resid 3 and name O4')
       (resid 3 and name C1')
       (resid 3 and name N9 )
       (resid 3 and name C4 ) 10.0 202.0 20.0 2

assign (resid 4 and name O4')
       (resid 4 and name C1')
       (resid 4 and name N1 )
       (resid 4 and name C2 ) 10.0  202.0 20.0 2

assign (resid 5 and name O4')
       (resid 5 and name C1')
       (resid 5 and name N9 )
       (resid 5 and name C4 ) 10.0 202.0 20.0 2

assign (resid 6 and name O4')
       (resid 6 and name C1')
       (resid 6 and name N1 )
       (resid 6 and name C2 ) 10.0  202.0 20.0 2

!assign (resid 7 and name O4')
!       (resid 7 and name C1')
!       (resid 7 and name N9 )
!       (resid 7 and name C4 ) 10.0 202.0 20.0 2

!assign (resid 8 and name O4')
!       (resid 8 and name C1')
!       (resid 8 and name N9 )
!       (resid 8 and name C4 ) 10.0 202.0 20.0 2

assign (resid 9 and name O4')
       (resid 9 and name C1')
       (resid 9 and name N9 )
       (resid 9 and name C4 ) 10.0 202.0 20.0 2

assign (resid 10 and name O4')
       (resid 10 and name C1')
       (resid 10 and name N9 )
       (resid 10 and name C4 ) 10.0 202.0 20.0 2

!assign (resid 11 and name O4')
!       (resid 11 and name C1')
!       (resid 11 and name N9 )
!       (resid 11 and name C4 ) 10.0 202.0 10.0 2

!assign (resid 12 and name O4')
!       (resid 12 and name C1')
!       (resid 12 and name N9 )
!       (resid 12 and name C4 ) 10.0 202.0 10.0 2

!assign (resid 13 and name O4')
!       (resid 13 and name C1')
!       (resid 13 and name N9 )
!       (resid 13 and name C4 ) 10.0 202.0 10.0 2

!assign (resid 14 and name O4')
!       (resid 14 and name C1')
!       (resid 14 and name N9 )
!       (resid 14 and name C4 ) 10.0 202.0 10.0 2

assign (resid 15 and name O4')
       (resid 15 and name C1')
       (resid 15 and name N1 )
       (resid 15 and name C2 ) 10.0  202.0 20.0 2

assign (resid 16 and name O4')
       (resid 16 and name C1')
       (resid 16 and name N1 )
       (resid 16 and name C2 ) 10.0  202.0 20.0 2

assign (resid 17 and name O4')
       (resid 17 and name C1')
       (resid 17 and name N1 )
       (resid 17 and name C2 ) 10.0  202.0 20.0 2

assign (resid 18 and name O4')
       (resid 18 and name C1')
       (resid 18 and name N9 )
       (resid 18 and name C4 ) 10.0 202.0 20.0 2

assign (resid 19 and name O4')
       (resid 19 and name C1')
       (resid 19 and name N1 )
       (resid 19 and name C2 ) 10.0  202.0 20.0 2

assign (resid 20 and name O4')
       (resid 20 and name C1')
       (resid 20 and name N9 )
       (resid 20 and name C4 ) 10.0 202.0 20.0 2

assign (resid 21 and name O4')
       (resid 21 and name C1')
       (resid 21 and name N1 )
       (resid 21 and name N2 ) 10.0  202.0 10.0 2

assign (resid 22 and name O4')
       (resid 22 and name C1')
       (resid 22 and name N1 )
       (resid 22 and name C2 ) 10.0  202.0 20.0 2

assign (resid 23 and name O4')
       (resid 23 and name C1')
       (resid 23 and name N1 )
       (resid 23 and name C2 ) 10.0  202.0 20.0 2

!
!Sugar Pucker
!
assign (resid 1 and name O4')
       (resid 1 and name C4')
       (resid 1 and name C3')
       (resid 1 and name C2') 30.0 -36.1 10.0 2
assign (resid 1 and name C4')
       (resid 1 and name C3')
       (resid 1 and name C2')
       (resid 1 and name C1') 30.0 37.3 10.0 2
assign (resid 1 and name C3')
       (resid 1 and name C2')
       (resid 1 and name C1')
       (resid 1 and name O4') 30.0 -25.8 10.0 2

assign (resid 2 and name O4')
       (resid 2 and name C4')
       (resid 2 and name C3')
       (resid 2 and name C2') 30.0 -36.1 10.0 2
assign (resid 2 and name C4')
       (resid 2 and name C3')
       (resid 2 and name C2')
       (resid 2 and name C1') 30.0 37.3 10.0 2
assign (resid 2 and name C3')
       (resid 2 and name C2')
       (resid 2 and name C1')
       (resid 2 and name O4') 30.0 -25.8 10.0 2

assign (resid 3 and name O4')
       (resid 3 and name C4')
       (resid 3 and name C3')
       (resid 3 and name C2') 30.0 -36.1 10.0 2
assign (resid 3 and name C4')
       (resid 3 and name C3')
       (resid 3 and name C2')
       (resid 3 and name C1') 30.0 37.3 10.0 2
assign (resid 3 and name C3')
       (resid 3 and name C2')
       (resid 3 and name C1')
       (resid 3 and name O4') 30.0 -25.8 10.0 2

assign (resid 4 and name O4')
       (resid 4 and name C4')
       (resid 4 and name C3')
       (resid 4 and name C2') 30.0 -36.1 10.0 2
assign (resid 4 and name C4')
       (resid 4 and name C3')
       (resid 4 and name C2')
       (resid 4 and name C1') 30.0 37.3 10.0 2
assign (resid 4 and name C3')
       (resid 4 and name C2')
       (resid 4 and name C1')
       (resid 4 and name O4') 30.0 -25.8 10.0 2

assign (resid 5 and name O4')
       (resid 5 and name C4')
       (resid 5 and name C3')
       (resid 5 and name C2') 30.0 -36.1 10.0 2
assign (resid 5 and name C4')
       (resid 5 and name C3')
       (resid 5 and name C2')
       (resid 5 and name C1') 30.0 37.3 10.0 2
assign (resid 5 and name C3')
       (resid 5 and name C2')
       (resid 5 and name C1')
       (resid 5 and name O4') 30.0 -25.8 10.0 2

assign (resid 6 and name O4')
       (resid 6 and name C4')
       (resid 6 and name C3')
       (resid 6 and name C2') 30.0 -36.1 10.0 2
assign (resid 6 and name C4')
       (resid 6 and name C3')
       (resid 6 and name C2')
       (resid 6 and name C1') 30.0 37.3 10.0 2
assign (resid 6 and name C3')
       (resid 6 and name C2')
       (resid 6 and name C1')
       (resid 6 and name O4') 30.0 -25.8 10.0 2

assign (resid 7 and name O4')
       (resid 7 and name C4')
       (resid 7 and name C3')
       (resid 7 and name C2') 30.0 -36.1 10.0 2
assign (resid 7 and name C4')
       (resid 7 and name C3')
       (resid 7 and name C2')
       (resid 7 and name C1') 30.0 37.3 10.0 2
assign (resid 7 and name C3')
       (resid 7 and name C2')
       (resid 7 and name C1')
       (resid 7 and name O4') 30.0 -25.8 10.0 2

!assign (resid 8 and name O4')
!       (resid 8 and name C4')
!       (resid 8 and name C3')
!       (resid 8 and name C2') 30.0 -36.1 10.0 2
!assign (resid 8 and name C4')
!       (resid 8 and name C3')
!       (resid 8 and name C2')
!       (resid 8 and name C1') 30.0 37.3 10.0 2
!assign (resid 8 and name C3')
!       (resid 8 and name C2')
!       (resid 8 and name C1')
!       (resid 8 and name O4') 30.0 -25.8 10.0 2

assign (resid 9 and name O4')
       (resid 9 and name C4')
       (resid 9 and name C3')
       (resid 9 and name C2') 30.0 -36.1 10.0 2
assign (resid 9 and name C4')
       (resid 9 and name C3')
       (resid 9 and name C2')
       (resid 9 and name C1') 30.0 37.3 10.0 2
assign (resid 9 and name C3')
       (resid 9 and name C2')
       (resid 9 and name C1')
       (resid 9 and name O4') 30.0 -25.8 10.0 2

assign (resid 10 and name O4')
       (resid 10 and name C4')
       (resid 10 and name C3')
       (resid 10 and name C2') 30.0 -36.1 10.0 2
assign (resid 10 and name C4')
       (resid 10 and name C3')
       (resid 10 and name C2')
       (resid 10 and name C1') 30.0 37.3 10.0 2
assign (resid 10 and name C3')
       (resid 10 and name C2')
       (resid 10 and name C1')
       (resid 10 and name O4') 30.0 -25.8 10.0 2

!assign (resid 11 and name O4')
!       (resid 11 and name C4')
!       (resid 11 and name C3')
!       (resid 11 and name C2') 30.0 -36.1 10.0 2
!assign (resid 11 and name C4')
!       (resid 11 and name C3')
!       (resid 11 and name C2')
!       (resid 11 and name C1') 30.0 37.3 10.0 2
!assign (resid 11 and name C3')
!       (resid 11 and name C2')
!       (resid 11 and name C1')
!       (resid 11 and name O4') 30.0 -25.8 10.0 2

!assign (resid 12 and name O4')
!       (resid 12 and name C4')
!       (resid 12 and name C3')
!       (resid 12 and name C2') 30.0 -36.1 10.0 2
!assign (resid 12 and name C4')
!       (resid 12 and name C3')
!       (resid 12 and name C2')
!       (resid 12 and name C1') 30.0 37.3 10.0 2
!assign (resid 12 and name C3')
!       (resid 12 and name C2')
!       (resid 12 and name C1')
!       (resid 12 and name O4') 30.0 -25.8 10.0 2

!assign (resid 13 and name O4')
!       (resid 13 and name C4')
!       (resid 13 and name C3')
!       (resid 13 and name C2') 30.0 -36.1 10.0 2
!assign (resid 13 and name C4')
!       (resid 13 and name C3')
!       (resid 13 and name C2')
!       (resid 13 and name C1') 30.0 37.3 10.0 2
!assign (resid 13 and name C3')
!       (resid 13 and name C2')
!       (resid 13 and name C1')
!       (resid 13 and name O4') 30.0 -25.8 10.0 2

!assign (resid 14 and name O4')
!       (resid 14 and name C4')
!       (resid 14 and name C3')
!       (resid 14 and name C2') 30.0 -36.1 10.0 2
!assign (resid 14 and name C4')
!       (resid 14 and name C3')
!       (resid 14 and name C2')
!       (resid 14 and name C1') 30.0 37.3 10.0 2
!assign (resid 14 and name C3')
!       (resid 14 and name C2')
!       (resid 14 and name C1')
!       (resid 14 and name O4') 30.0 -25.8 10.0 2

assign (resid 15 and name O4')
       (resid 15 and name C4')
       (resid 15 and name C3')
       (resid 15 and name C2') 30.0 -36.1 10.0 2
assign (resid 15 and name C4')
       (resid 15 and name C3')
       (resid 15 and name C2')
       (resid 15 and name C1') 30.0 37.3 10.0 2
assign (resid 15 and name C3')
       (resid 15 and name C2')
       (resid 15 and name C1')
       (resid 15 and name O4') 30.0 -25.8 10.0 2

assign (resid 16 and name O4')
       (resid 16 and name C4')
       (resid 16 and name C3')
       (resid 16 and name C2') 30.0 -36.1 10.0 2
assign (resid 16 and name C4')
       (resid 16 and name C3')
       (resid 16 and name C2')
       (resid 16 and name C1') 30.0 37.3 10.0 2
assign (resid 16 and name C3')
       (resid 16 and name C2')
       (resid 16 and name C1')
       (resid 16 and name O4') 30.0 -25.8 10.0 2

!assign (resid 17 and name O4')
!       (resid 17 and name C4')
!       (resid 17 and name C3')
!       (resid 17 and name C2') 30.0 -36.1 10.0 2
!assign (resid 17 and name C4')
!       (resid 17 and name C3')
!       (resid 17 and name C2')
!       (resid 17 and name C1') 30.0 37.3 10.0 2
!assign (resid 17 and name C3')
!       (resid 17 and name C2')
!       (resid 17 and name C1')
!       (resid 17 and name O4') 30.0 -25.8 10.0 2

assign (resid 18 and name O4')
       (resid 18 and name C4')
       (resid 18 and name C3')
       (resid 18 and name C2') 30.0 -36.1 10.0 2
assign (resid 18 and name C4')
       (resid 18 and name C3')
       (resid 18 and name C2')
       (resid 18 and name C1') 30.0 37.3 10.0 2
assign (resid 18 and name C3')
       (resid 18 and name C2')
       (resid 18 and name C1')
       (resid 18 and name O4') 30.0 -25.8 10.0 2

assign (resid 19 and name O4')
       (resid 19 and name C4')
       (resid 19 and name C3')
       (resid 19 and name C2') 30.0 -36.1 10.0 2
assign (resid 19 and name C4')
       (resid 19 and name C3')
       (resid 19 and name C2')
       (resid 19 and name C1') 30.0 37.3 10.0 2
assign (resid 19 and name C3')
       (resid 19 and name C2')
       (resid 19 and name C1')
       (resid 19 and name O4') 30.0 -25.8 10.0 2

assign (resid 20 and name O4')
       (resid 20 and name C4')
       (resid 20 and name C3')
       (resid 20 and name C2') 30.0 -36.1 10.0 2
assign (resid 20 and name C4')
       (resid 20 and name C3')
       (resid 20 and name C2')
       (resid 20 and name C1') 30.0 37.3 10.0 2
assign (resid 20 and name C3')
       (resid 20 and name C2')
       (resid 20 and name C1')
       (resid 20 and name O4') 30.0 -25.8 10.0 2

assign (resid 21 and name O4')
       (resid 21 and name C4')
       (resid 21 and name C3')
       (resid 21 and name C2') 30.0 -36.1 10.0 2
assign (resid 21 and name C4')
       (resid 21 and name C3')
       (resid 21 and name C2')
       (resid 21 and name C1') 30.0 37.3 10.0 2
assign (resid 21 and name C3')
       (resid 21 and name C2')
       (resid 21 and name C1')
       (resid 21 and name O4') 30.0 -25.8 10.0 2

assign (resid 22 and name O4')
       (resid 22 and name C4')
       (resid 22 and name C3')
       (resid 22 and name C2') 30.0 -36.1 10.0 2
assign (resid 22 and name C4')
       (resid 22 and name C3')
       (resid 22 and name C2')
       (resid 22 and name C1') 30.0 37.3 10.0 2
assign (resid 22 and name C3')
       (resid 22 and name C2')
       (resid 22 and name C1')
       (resid 22 and name O4') 30.0 -25.8 10.0 2

assign (resid 23 and name O4')
       (resid 23 and name C4')
       (resid 23 and name C3')
       (resid 23 and name C2') 30.0 -36.1 10.0 2
assign (resid 23 and name C4')
       (resid 23 and name C3')
       (resid 23 and name C2')
       (resid 23 and name C1') 30.0 37.3 10.0 2
assign (resid 23 and name C3')
       (resid 23 and name C2')
       (resid 23 and name C1')
       (resid 23 and name O4') 30.0 -25.8 10.0 2

!
!Base pairs
!

!
!G1-C23
!
assign (resid 1 and name C5 )
       (resid 1 and name C6 )
       (resid 1 and name N1 )
       (resid 23 and name N3 )  30.0 180.0 20.0 2
assign (resid 1 and name C5 )
       (resid 1 and name C6 )
       (resid 1 and name O6 )
       (resid 23 and name N4 )  30.0 180.0 20.0 2

!
!G2-C22
!
assign (resid 2 and name C5 )
       (resid 2 and name C6 )
       (resid 2 and name N1 )
       (resid 22 and name N3 )  30.0 180.0 20.0 2
assign (resid 2 and name C5 )
       (resid 2 and name C6 )
       (resid 2 and name O6 )
       (resid 22 and name N4 )  30.0 180.0 20.0 2

!
!A3-U21
!
assign (resid 3 and name C5 )
       (resid 3 and name C6 )
       (resid 3 and name N1 )
       (resid 21 and name N3 ) 30.0 180 20.0 2
assign (resid 3 and name C5 )
       (resid 3 and name C6 )
       (resid 3 and name N6 )
       (resid 21 and name O4 ) 30.0 180 20.0 2

!
!G20-C4
!
assign (resid 20 and name C5 )
       (resid 20 and name C6 )
       (resid 20 and name N1 )
       (resid 4 and name N3 )  30.0 180.0 20.0 2
assign (resid 20 and name C5 )
       (resid 20 and name C6 )
       (resid 20 and name O6 )
       (resid 4 and name N4 )  30.0 180.0 20.0 2

!
!A5-U19
!
assign (resid 5 and name C5 )
       (resid 5 and name C6 )
       (resid 5 and name N1 )
       (resid 19 and name N3 ) 30.0 180 20.0 2
assign (resid 5 and name C5 )
       (resid 5 and name C6 )
       (resid 5 and name N6 )
       (resid 19 and name O4 ) 30.0 180 20.0 2

!
!A7-U17
!
assign (resid 7 and name C5 )
       (resid 7 and name C6 )
       (resid 7 and name N1 )
       (resid 17 and name N3 ) 30.0 180 20.0 2
assign (resid 7 and name C5 )
       (resid 7 and name C6 )
       (resid 7 and name N6 )
       (resid 17 and name O4 ) 30.0 180 20.0 2

!
!A8-U17
!
!assign (resid 8 and name C5 )
!       (resid 8 and name C6 )
!       (resid 8 and name N1 )
!       (resid 17 and name N3 ) 30.0 180 20.0 2
!assign (resid 8 and name C5 )
!       (resid 8 and name C6 )
!       (resid 8 and name N6 )
!       (resid 17 and name O4 ) 30.0 180 20.0 2

!
!G9-C16
!
assign (resid 9 and name C5 )
       (resid 9 and name C6 )
       (resid 9 and name N1 )
       (resid 16 and name N3 )  30.0 180.0 20.0 2
assign (resid 9 and name C5 )
       (resid 9 and name C6 )
       (resid 9 and name O6 )
       (resid 16 and name N4 )  30.0 180.0 20.0 2
assign (resid 9 and name O6 )
       (resid 16 and name H41 )
       (resid 16 and name N4 )
       (resid 16 and name C4 )  30.0 180.0 20.0 2

!
!G10-C15
!
assign (resid 10 and name C5 )
       (resid 10 and name C6 )
       (resid 10 and name N1 )
       (resid 15 and name N3 )  30.0 180.0 20.0 2
assign (resid 10 and name C5 )
       (resid 10 and name C6 )
       (resid 10 and name O6 )
       (resid 15 and name N4 )  30.0 180.0 20.0 2
assign (resid 15 and name C4 )
       (resid 15 and name N4 )
       (resid 15 and name H41 )
       (resid 10 and name O6 )  30.0 180.0 20.0 2
assign (resid 15 and name O2 )
       (resid 10 and name H21 )
       (resid 15 and name H41 )
       (resid 10 and name O6 )  30.0 180.0 20.0 2

# Restraints file 3: phagega_noe.tbl
!
Base to H1'
!
assign (resid 1 and name H8 ) (resid 1 and name H1' ) 4.5 2.7 0 !M
assign (resid 1 and name H1' ) (resid 2 and name H8 ) 4.5 2.7 0 !M
assign (resid 2 and name H8 ) (resid 2 and name H1' ) 4.5 2.7 0 !M
assign (resid 2 and name H1' ) (resid 3 and name H8 ) 4.5 2.7 0 !M
assign (resid 3 and name H8 ) (resid 3 and name H1' ) 4.5 2.7 0 !M
assign (resid 3 and name H1' ) (resid 4 and name H6 ) 5.5 3.7 0 !W
assign (resid 4 and name H6 ) (resid 4 and name H1' ) 4.5 2.7 0 !M
assign (resid 4 and name H1' ) (resid 5 and name H8 ) 4.5 2.7 0 !M
assign (resid 5 and name H8 ) (resid 5 and name H1' ) 4.5 2.7 0 !M
assign (resid 5 and name H1' ) (resid 6 and name H6 ) 4.5 2.7 0 !M
assign (resid 6 and name H6 ) (resid 6 and name H1' ) 4.5 2.7 0 !M
assign (resid 6 and name H1' ) (resid 7 and name H8 ) 4.5 2.7 0 !M
assign (resid 7 and name H8 ) (resid 7 and name H1' ) 4.5 2.7 0 !M
assign (resid 7 and name H1' ) (resid 8 and name H8 ) 5.5 3.7 0 !W
assign (resid 8 and name H8 ) (resid 8 and name H1' ) 5.5 3.7 0 !W
assign (resid 8 and name H1' ) (resid 9 and name H8 ) 5.5 3.7 0 !W
assign (resid 9 and name H8 ) (resid 9 and name H1' ) 5.5 3.7 0 !W
assign (resid 9 and name H1' ) (resid 10 and name H8 ) 5.5 3.7 0 !W
assign (resid 10 and name H8 ) (resid 10 and name H1' ) 5.5 3.7 0 !W
assign (resid 12 and name H8 ) (resid 12 and name H1' ) 5.5 3.7 0 !W
assign (resid 12 and name H1' ) (resid 13 and name H8 ) 6.5 4.7 0 !VW
assign (resid 13 and name H8 ) (resid 13 and name H1' ) 5.5 3.7 0 !W
assign (resid 13 and name H1' ) (resid 14 and name H8 ) 5.5 3.7 0 !W
assign (resid 14 and name H8 ) (resid 14 and name H1' ) 4.5 2.7 0 !M
assign (resid 14 and name H1' ) (resid 15 and name H6 ) 5.5 3.7 0 !W
assign (resid 15 and name H6 ) (resid 15 and name H1' ) 4.5 2.7 0 !M
assign (resid 15 and name H1' ) (resid 16 and name H6 ) 5.5 3.7 0 !W
assign (resid 16 and name H6 ) (resid 16 and name H1' ) 4.5 2.7 0 !M
assign (resid 16 and name H1' ) (resid 17 and name H6 ) 5.5 3.7 0 !W
assign (resid 17 and name H6 ) (resid 17 and name H1' ) 4.5 2.7 0 !M
assign (resid 17 and name H1' ) (resid 18 and name H8 ) 4.5 2.7 0 !M
assign (resid 18 and name H8 ) (resid 18 and name H1' ) 4.5 2.7 0 !M
assign (resid 18 and name H1' ) (resid 19 and name H6 ) 5.5 3.7 0 !W
assign (resid 19 and name H6 ) (resid 19 and name H1' ) 5.5 3.7 0 !W
assign (resid 19 and name H1' ) (resid 20 and name H8 ) 5.5 3.7 0 !W
assign (resid 20 and name H8 ) (resid 20 and name H1' ) 4.5 2.7 0 !M
assign (resid 20 and name H1' ) (resid 21 and name H6 ) 4.5 2.7 0 !M
assign (resid 21 and name H6 ) (resid 21 and name H1' ) 4.5 2.7 0 !M
assign (resid 21 and name H1' ) (resid 22 and name H6 ) 4.5 2.7 0 !M
assign (resid 22 and name H6 ) (resid 22 and name H1' ) 4.5 2.7 0 !M
assign (resid 22 and name H1' ) (resid 23 and name H6 ) 5.5 3.7 0 !W
assign (resid 23 and name H6 ) (resid 23 and name H1' ) 4.5 2.7 0 !M
!
H1' to H1'
!
assign (resid 1 and name H1' ) (resid 2 and name H1' ) 6.5 4.7 0 !VW
assign (resid 2 and name H1' ) (resid 3 and name H1' ) 6.5 4.7 0 !VW
!assign (resid 3 and name H1' ) (resid 4 and name H1' ) 6.5 4.7 0 !VW
assign (resid 4 and name H1' ) (resid 5 and name H1' ) 5.5 3.7 0 !W
assign (resid 5 and name H1' ) (resid 6 and name H1' ) 5.5 3.7 0 !W
assign (resid 6 and name H1' ) (resid 7 and name H1' ) 5.5 3.7 0 !W
!assign (resid 7 and name H1' ) (resid 8 and name H1' ) 5.5 3.7 0 !W
!assign (resid 8 and name H1' ) (resid 9 and name H1' ) 5.5 3.7 0 !W
!assign (resid 9 and name H1' ) (resid 10 and name H1' ) 5.5 3.7 0 !W
!assign (resid 11 and name H1' ) (resid 12 and name H1' ) 5.5 3.7 0 !W
!assign (resid 12 and name H1' ) (resid 13 and name H1' ) 5.5 3.7 0 !W
!assign (resid 13 and name H1' ) (resid 14 and name H1' ) 5.5 3.7 0 !W
!assign (resid 14 and name H1' ) (resid 15 and name H1' ) 5.5 3.7 0 !W
!assign (resid 15 and name H1' ) (resid 16 and name H1' ) 5.5 3.7 0 !W
!assign (resid 16 and name H1' ) (resid 17 and name H1' ) 5.5 3.7 0 !W
!assign (resid 17 and name H1' ) (resid 18 and name H1' ) 5.5 3.7 0 !W
!assign (resid 18 and name H1' ) (resid 19 and name H1' ) 5.5 3.7 0 !W
assign (resid 19 and name H1' ) (resid 20 and name H1' ) 5.5 3.7 0 !W
assign (resid 20 and name H1' ) (resid 21 and name H1' ) 6.5 4.7 0 !VW
assign (resid 21 and name H1' ) (resid 22 and name H1' ) 6.5 4.7 0 !VW
assign (resid 22 and name H1' ) (resid 23 and name H1' ) 6.5 4.7 0 !VW
!
base to base
!
assign (resid 1 and name H8 ) (resid 2 and name H8 ) 5.5 3.7 0 !W
assign (resid 2 and name H8 ) (resid 3 and name H8 ) 5.5 3.7 0 !W
assign (resid 3 and name H8 ) (resid 4 and name H6 ) 5.5 3.7 0 !W
assign (resid 4 and name H6 ) (resid 5 and name H8 ) 5.5 3.7 0 !W
assign (resid 5 and name H8 ) (resid 6 and name H6 ) 5.5 3.7 0 !W
assign (resid 6 and name H6 ) (resid 7 and name H8 ) 5.5 3.7 0 !W
assign (resid 7 and name H8 ) (resid 8 and name H8 ) 5.5 3.7 0 !W
assign (resid 8 and name H8 ) (resid 9 and name H8 ) 5.5 3.7 0 !W
assign (resid 9 and name H8 ) (resid 10 and name H8 ) 5.5 3.7 0 !W
assign (resid 12 and name H8 ) (resid 13 and name H8 ) 5.5 3.7 0 !W
assign (resid 13 and name H8 ) (resid 14 and name H8 ) 5.5 3.7 0 !W
assign (resid 14 and name H8 ) (resid 15 and name H6 ) 5.5 3.7 0 !W
assign (resid 15 and name H6 ) (resid 16 and name H6 ) 5.5 3.7 0 !W
assign (resid 16 and name H6 ) (resid 17 and name H6 ) 5.5 3.7 0 !W
assign (resid 17 and name H6 ) (resid 18 and name H8 ) 5.5 3.7 0 !W
assign (resid 18 and name H8 ) (resid 19 and name H6 ) 5.5 3.7 0 !W
assign (resid 19 and name H6 ) (resid 20 and name H8 ) 5.5 3.7 0 !W
assign (resid 20 and name H8 ) (resid 21 and name H6 ) 5.5 3.7 0 !W
assign (resid 21 and name H6 ) (resid 22 and name H6 ) 5.5 3.7 0 !W
assign (resid 22 and name H6 ) (resid 23 and name H6 ) 5.5 3.7 0 !W
!
base to ribose
!
assign (resid 1 and name H8 ) (resid 1 and name H2'' ) 3.5 1.7 0 !S
assign (resid 1 and name H8 ) (resid 1 and name H3' ) 2.5 0.7 0 !VS
assign (resid 1 and name H8 ) (resid 1 and name H4' ) 4.5 2.7 0 !M
assign (resid 1 and name H8 ) (resid 1 and name H5' ) 3.5 1.7 0 !S
assign (resid 1 and name H8 ) (resid 1 and name H5'' ) 4.5 2.7 0 !M

assign (resid 2 and name H8 ) (resid 1 and name H2'' ) 4.5 2.7 0 !M
assign (resid 2 and name H8 ) (resid 1 and name H3' ) 4.5 2.7 0 !M
assign (resid 2 and name H8 ) (resid 1 and name H4' ) 5.5 3.7 0 !W
assign (resid 2 and name H8 ) (resid 1 and name H5' ) 6.5 4.7 0 !VW
assign (resid 2 and name H8 ) (resid 1 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 2 and name H8 ) (resid 2 and name H2'' ) 3.5 1.7 0 !S
assign (resid 2 and name H8 ) (resid 2 and name H3' ) 2.5 0.7 0 !VS
assign (resid 2 and name H8 ) (resid 2 and name H4' ) 4.5 2.7 0 !M
assign (resid 2 and name H8 ) (resid 2 and name H5' ) 3.5 1.7 0 !S
assign (resid 2 and name H8 ) (resid 2 and name H5'' ) 4.5 2.7 0 !M

assign (resid 3 and name H8 ) (resid 2 and name H2'' ) 4.5 2.7 0 !M
assign (resid 3 and name H8 ) (resid 2 and name H3' ) 4.5 2.7 0 !M
!assign (resid 3 and name H8 ) (resid 2 and name H4' ) 5.5 3.7 0 !W
!assign (resid 3 and name H8 ) (resid 2 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 3 and name H8 ) (resid 2 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 3 and name H8 ) (resid 3 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 3 and name H8 ) (resid 3 and name H3' ) 2.5 0.7 0 !VS
assign (resid 3 and name H8 ) (resid 3 and name H4' ) 4.5 2.7 0 !M
assign (resid 3 and name H8 ) (resid 3 and name H5' ) 3.5 1.7 0 !S
assign (resid 3 and name H8 ) (resid 3 and name H5'' ) 4.5 2.7 0 !M

assign (resid 4 and name H6 ) (resid 3 and name H2'' ) 4.5 2.7 0 !M
assign (resid 4 and name H6 ) (resid 3 and name H3' ) 4.5 2.7 0 !M
assign (resid 4 and name H6 ) (resid 3 and name H4' ) 5.5 3.7 0 !W
!assign (resid 4 and name H6 ) (resid 3 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 4 and name H6 ) (resid 3 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 4 and name H6 ) (resid 4 and name H2'' ) 3.5 1.7 0 !S
assign (resid 4 and name H6 ) (resid 4 and name H3' ) 2.5 0.7 0 !VS
assign (resid 4 and name H6 ) (resid 4 and name H4' ) 4.5 2.7 0 !M
assign (resid 4 and name H6 ) (resid 4 and name H5' ) 3.5 1.7 0 !S
assign (resid 4 and name H6 ) (resid 4 and name H5'' ) 4.5 2.7 0 !M

assign (resid 5 and name H8 ) (resid 4 and name H2'' ) 4.5 2.7 0 !M
assign (resid 5 and name H8 ) (resid 4 and name H3' ) 4.5 2.7 0 !M
assign (resid 5 and name H8 ) (resid 4 and name H4' ) 5.5 3.7 0 !W
!assign (resid 5 and name H8 ) (resid 4 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 5 and name H8 ) (resid 4 and name H5'' ) 6.5 4.7 0 !VW

!assign (resid 5 and name H8 ) (resid 5 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 5 and name H8 ) (resid 5 and name H3' ) 2.5 0.7 0 !VS
!assign (resid 5 and name H8 ) (resid 5 and name H4' ) 4.5 2.7 0 !M
!assign (resid 5 and name H8 ) (resid 5 and name H5' ) 3.5 1.7 0 !S
!assign (resid 5 and name H8 ) (resid 5 and name H5'' ) 4.5 2.7 0 !M

assign (resid 6 and name H6 ) (resid 5 and name H2'' ) 4.5 2.7 0 !M
assign (resid 6 and name H6 ) (resid 5 and name H3' ) 4.5 2.7 0 !M
assign (resid 6 and name H6 ) (resid 5 and name H4' ) 5.5 3.7 0 !W
!assign (resid 6 and name H6 ) (resid 5 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 6 and name H6 ) (resid 5 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 6 and name H6 ) (resid 6 and name H2'' ) 3.5 1.7 0 !S
assign (resid 6 and name H6 ) (resid 6 and name H3' ) 2.5 0.7 0 !VS
assign (resid 6 and name H6 ) (resid 6 and name H4' ) 4.5 2.7 0 !M
assign (resid 6 and name H6 ) (resid 6 and name H5' ) 3.5 1.7 0 !S
assign (resid 6 and name H6 ) (resid 6 and name H5'' ) 4.5 2.7 0 !M

assign (resid 7 and name H8 ) (resid 6 and name H2'' ) 4.5 2.7 0 !M
assign (resid 7 and name H8 ) (resid 6 and name H3' ) 4.5 2.7 0 !M
!assign (resid 7 and name H8 ) (resid 6 and name H4' ) 5.5 3.7 0 !W
!assign (resid 7 and name H8 ) (resid 6 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 7 and name H8 ) (resid 6 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 7 and name H8 ) (resid 7 and name H2'' ) 4.5 2.7 0 !M
assign (resid 7 and name H8 ) (resid 7 and name H3' ) 2.5 0.7 0 !VS
assign (resid 7 and name H8 ) (resid 7 and name H4' ) 4.5 2.7 0 !M
assign (resid 7 and name H8 ) (resid 7 and name H5' ) 3.5 1.7 0 !S
assign (resid 7 and name H8 ) (resid 7 and name H5'' ) 4.5 2.7 0 !M

assign (resid 8 and name H8 ) (resid 7 and name H2'' ) 4.5 2.7 0 !M
!assign (resid 8 and name H8 ) (resid 7 and name H3' ) 4.5 2.7 0 !M
!assign (resid 8 and name H8 ) (resid 7 and name H4' ) 5.5 3.7 0 !W
!assign (resid 8 and name H8 ) (resid 7 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 8 and name H8 ) (resid 7 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 8 and name H8 ) (resid 8 and name H2'' ) 3.5 1.7 0 !S
assign (resid 8 and name H8 ) (resid 8 and name H3' ) 2.5 0.7 0 !VS
assign (resid 8 and name H8 ) (resid 8 and name H4' ) 4.5 2.7 0 !M
assign (resid 8 and name H8 ) (resid 8 and name H5' ) 3.5 1.7 0 !S
assign (resid 8 and name H8 ) (resid 8 and name H5'' ) 4.5 2.7 0 !M

!assign (resid 9 and name H8 ) (resid 8 and name H2'' ) 4.5 2.7 0 !M
!assign (resid 9 and name H8 ) (resid 8 and name H3' ) 4.5 2.7 0 !M
!assign (resid 9 and name H8 ) (resid 8 and name H4' ) 5.5 3.7 0 !W
!assign (resid 9 and name H8 ) (resid 8 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 9 and name H8 ) (resid 8 and name H5'' ) 6.5 4.7 0 !VW

!assign (resid 9 and name H8 ) (resid 9 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 9 and name H8 ) (resid 9 and name H3' ) 2.5 0.7 0 !VS
!assign (resid 9 and name H8 ) (resid 9 and name H4' ) 4.5 2.7 0 !M
!assign (resid 9 and name H8 ) (resid 9 and name H5' ) 3.5 1.7 0 !S
!assign (resid 9 and name H8 ) (resid 9 and name H5'' ) 4.5 2.7 0 !M

!assign (resid 10 and name H8 ) (resid 9 and name H2'' ) 4.5 2.7 0 !M
!assign (resid 10 and name H8 ) (resid 9 and name H3' ) 4.5 2.7 0 !M
!assign (resid 10 and name H8 ) (resid 9 and name H4' ) 5.5 3.7 0 !W
!assign (resid 10 and name H8 ) (resid 9 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 10 and name H8 ) (resid 9 and name H5'' ) 6.5 4.7 0 !VW

!assign (resid 10 and name H8 ) (resid 10 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 10 and name H8 ) (resid 10 and name H3' ) 2.5 0.7 0 !VS
!assign (resid 10 and name H8 ) (resid 10 and name H4' ) 4.5 2.7 0 !M
!assign (resid 10 and name H8 ) (resid 10 and name H5' ) 3.5 1.7 0 !S
!assign (resid 10 and name H8 ) (resid 10 and name H5'' ) 4.5 2.7 0 !M

!assign (resid 12 and name H8 ) (resid 12 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 12 and name H8 ) (resid 12 and name H3' ) 2.5 0.7 0 !VS
!assign (resid 12 and name H8 ) (resid 12 and name H4' ) 4.5 2.7 0 !M
!assign (resid 12 and name H8 ) (resid 12 and name H5' ) 3.5 1.7 0 !S
!assign (resid 12 and name H8 ) (resid 12 and name H5'' ) 4.5 2.7 0 !M

assign (resid 13 and name H8 ) (resid 12 and name H2'' ) 4.5 2.7 0 !M
assign (resid 13 and name H8 ) (resid 12 and name H3' ) 4.5 2.7 0 !M
!assign (resid 13 and name H8 ) (resid 12 and name H4' ) 5.5 3.7 0 !W
!assign (resid 13 and name H8 ) (resid 12 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 13 and name H8 ) (resid 12 and name H5'' ) 6.5 4.7 0 !VW

!assign (resid 13 and name H8 ) (resid 13 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 13 and name H8 ) (resid 13 and name H3' ) 2.5 0.7 0 !VS
!assign (resid 13 and name H8 ) (resid 13 and name H4' ) 4.5 2.7 0 !M
!assign (resid 13 and name H8 ) (resid 13 and name H5' ) 3.5 1.7 0 !S
assign (resid 13 and name H8 ) (resid 13 and name H5'' ) 4.5 2.7 0 !M

assign (resid 14 and name H8 ) (resid 13 and name H2'' ) 4.5 2.7 0 !M
assign (resid 14 and name H8 ) (resid 13 and name H3' ) 4.5 2.7 0 !M
!assign (resid 14 and name H8 ) (resid 13 and name H4' ) 5.5 3.7 0 !W
!assign (resid 14 and name H8 ) (resid 13 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 14 and name H8 ) (resid 13 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 14 and name H8 ) (resid 14 and name H2'' ) 3.5 1.7 0 !S
assign (resid 14 and name H8 ) (resid 14 and name H3' ) 2.5 0.7 0 !VS
!assign (resid 14 and name H8 ) (resid 14 and name H4' ) 4.5 2.7 0 !M
assign (resid 14 and name H8 ) (resid 14 and name H5' ) 3.5 1.7 0 !S
assign (resid 14 and name H8 ) (resid 14 and name H5'' ) 4.5 2.7 0 !M

assign (resid 15 and name H6 ) (resid 14 and name H2'' ) 4.5 2.7 0 !M
assign (resid 15 and name H6 ) (resid 14 and name H3' ) 4.5 2.7 0 !M
!assign (resid 15 and name H6 ) (resid 14 and name H4' ) 5.5 3.7 0 !W
!assign (resid 15 and name H6 ) (resid 14 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 15 and name H6 ) (resid 14 and name H5'' ) 6.5 4.7 0 !VW

!assign (resid 15 and name H6 ) (resid 15 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 15 and name H6 ) (resid 15 and name H3' ) 2.5 0.7 0 !VS
assign (resid 15 and name H6 ) (resid 15 and name H4' ) 4.5 2.7 0 !M
assign (resid 15 and name H6 ) (resid 15 and name H5' ) 3.5 1.7 0 !S
assign (resid 15 and name H6 ) (resid 15 and name H5'' ) 4.5 2.7 0 !M

assign (resid 16 and name H6 ) (resid 15 and name H2'' ) 4.5 2.7 0 !M
assign (resid 16 and name H6 ) (resid 15 and name H3' ) 4.5 2.7 0 !M
!assign (resid 16 and name H6 ) (resid 15 and name H4' ) 5.5 3.7 0 !W
!assign (resid 16 and name H6 ) (resid 15 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 16 and name H6 ) (resid 15 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 16 and name H6 ) (resid 16 and name H2'' ) 3.5 1.7 0 !S
assign (resid 16 and name H6 ) (resid 16 and name H3' ) 2.5 0.7 0 !VS
assign (resid 16 and name H6 ) (resid 16 and name H4' ) 4.5 2.7 0 !M
assign (resid 16 and name H6 ) (resid 16 and name H5' ) 3.5 1.7 0 !S
assign (resid 16 and name H6 ) (resid 16 and name H5'' ) 4.5 2.7 0 !M

assign (resid 17 and name H6 ) (resid 16 and name H2'' ) 4.5 2.7 0 !M
!assign (resid 17 and name H6 ) (resid 16 and name H3' ) 4.5 2.7 0 !M
!assign (resid 17 and name H6 ) (resid 16 and name H4' ) 5.5 3.7 0 !W
!assign (resid 17 and name H6 ) (resid 16 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 17 and name H6 ) (resid 16 and name H5'' ) 6.5 4.7 0 !VW

!assign (resid 17 and name H6 ) (resid 17 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 17 and name H6 ) (resid 17 and name H3' ) 2.5 0.7 0 !VS
!assign (resid 17 and name H6 ) (resid 17 and name H4' ) 4.5 2.7 0 !M
!assign (resid 17 and name H6 ) (resid 17 and name H5' ) 3.5 1.7 0 !S
!assign (resid 17 and name H6 ) (resid 17 and name H5'' ) 4.5 2.7 0 !M

assign (resid 18 and name H8 ) (resid 17 and name H2'' ) 3.5 1.4 0 !S
assign (resid 18 and name H8 ) (resid 17 and name H3' ) 4.5 2.7 0 !M
!assign (resid 18 and name H8 ) (resid 17 and name H4' ) 5.5 3.7 0 !W
!assign (resid 18 and name H8 ) (resid 17 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 18 and name H8 ) (resid 17 and name H5'' ) 6.5 4.7 0 !VW

!assign (resid 18 and name H8 ) (resid 18 and name H2'' ) 3.5 1.7 0 !S
!assign (resid 18 and name H8 ) (resid 18 and name H3' ) 2.5 0.7 0 !VS
!assign (resid 18 and name H8 ) (resid 18 and name H4' ) 4.5 2.7 0 !M
!assign (resid 18 and name H8 ) (resid 18 and name H5' ) 3.5 1.7 0 !S
!assign (resid 18 and name H8 ) (resid 18 and name H5'' ) 4.5 2.7 0 !M

!assign (resid 19 and name H6 ) (resid 18 and name H2'' ) 5.5 1.7 0 !W
!assign (resid 19 and name H6 ) (resid 18 and name H3' ) 4.5 2.7 0 !M
!assign (resid 19 and name H6 ) (resid 18 and name H4' ) 5.5 3.7 0 !W
!assign (resid 19 and name H6 ) (resid 18 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 19 and name H6 ) (resid 18 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 19 and name H6 ) (resid 19 and name H2'' ) 3.5 1.7 0 !S
assign (resid 19 and name H6 ) (resid 19 and name H3' ) 2.5 0.7 0 !VS
assign (resid 19 and name H6 ) (resid 19 and name H4' ) 4.5 2.7 0 !M
assign (resid 19 and name H6 ) (resid 19 and name H5' ) 3.5 1.7 0 !S
assign (resid 19 and name H6 ) (resid 19 and name H5'' ) 4.5 2.7 0 !M

assign (resid 20 and name H8 ) (resid 19 and name H2'' ) 4.5 2.7 0 !M
assign (resid 20 and name H8 ) (resid 19 and name H3' ) 4.5 2.7 0 !M
assign (resid 20 and name H8 ) (resid 19 and name H4' ) 5.5 3.7 0 !W
!assign (resid 20 and name H8 ) (resid 19 and name H5' ) 6.5 4.7 0 !VW
assign (resid 20 and name H8 ) (resid 19 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 20 and name H8 ) (resid 20 and name H2'' ) 3.5 1.7 0 !S
assign (resid 20 and name H8 ) (resid 20 and name H3' ) 2.5 0.7 0 !VS
assign (resid 20 and name H8 ) (resid 20 and name H4' ) 4.5 2.7 0 !M
assign (resid 20 and name H8 ) (resid 20 and name H5' ) 3.5 1.7 0 !S
assign (resid 20 and name H8 ) (resid 20 and name H5'' ) 4.5 2.7 0 !M

assign (resid 21 and name H6 ) (resid 20 and name H2'' ) 4.5 2.7 0 !M
assign (resid 21 and name H6 ) (resid 20 and name H3' ) 4.5 2.7 0 !M
assign (resid 21 and name H6 ) (resid 20 and name H4' ) 5.5 3.7 0 !W
assign (resid 21 and name H6 ) (resid 20 and name H5' ) 6.5 4.7 0 !VW
assign (resid 21 and name H6 ) (resid 20 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 21 and name H6 ) (resid 21 and name H2'' ) 3.5 1.7 0 !S
assign (resid 21 and name H6 ) (resid 21 and name H3' ) 2.5 0.7 0 !VS
assign (resid 21 and name H6 ) (resid 21 and name H4' ) 4.5 2.7 0 !M
!assign (resid 21 and name H6 ) (resid 21 and name H5' ) 3.5 1.7 0 !S
assign (resid 21 and name H6 ) (resid 21 and name H5'' ) 4.5 2.7 0 !M

assign (resid 22 and name H6 ) (resid 21 and name H2'' ) 4.5 2.7 0 !M
assign (resid 22 and name H6 ) (resid 21 and name H3' ) 4.5 2.7 0 !M
!assign (resid 22 and name H6 ) (resid 21 and name H4' ) 5.5 3.7 0 !W
!assign (resid 22 and name H6 ) (resid 21 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 22 and name H6 ) (resid 21 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 22 and name H6 ) (resid 22 and name H2'' ) 3.5 1.7 0 !S
assign (resid 22 and name H6 ) (resid 22 and name H3' ) 2.5 0.7 0 !VS
assign (resid 22 and name H6 ) (resid 22 and name H4' ) 4.5 2.7 0 !M
assign (resid 22 and name H6 ) (resid 22 and name H5' ) 3.5 1.7 0 !S
assign (resid 22 and name H6 ) (resid 22 and name H5'' ) 4.5 2.7 0 !M

assign (resid 23 and name H6 ) (resid 22 and name H2'' ) 4.5 2.7 0 !M
assign (resid 23 and name H6 ) (resid 22 and name H3' ) 4.5 2.7 0 !M
assign (resid 23 and name H6 ) (resid 22 and name H4' ) 5.5 3.7 0 !W
!assign (resid 23 and name H6 ) (resid 22 and name H5' ) 6.5 4.7 0 !VW
!assign (resid 23 and name H6 ) (resid 22 and name H5'' ) 6.5 4.7 0 !VW

assign (resid 23 and name H6 ) (resid 23 and name H2'' ) 3.5 1.7 0 !S
assign (resid 23 and name H6 ) (resid 23 and name H3' ) 2.5 0.7 0 !VS
assign (resid 23 and name H6 ) (resid 23 and name H4' ) 4.5 2.7 0 !M
assign (resid 23 and name H6 ) (resid 23 and name H5' ) 3.5 1.7 0 !S
assign (resid 23 and name H6 ) (resid 23 and name H5'' ) 4.5 2.7 0 !M

!
H1' to ribose
!
assign (resid 1 and name H1') (resid 1 and name H2'') 4.5 2.7 0 !M
!assign (resid 1 and name H1') (resid 1 and name H3') 4.5 2.7 0 !M
assign (resid 1 and name H1') (resid 1 and name H4') 5.5 3.7 0 !W
assign (resid 1 and name H1') (resid 1 and name H5') 5.5 3.7 0 !W
assign (resid 1 and name H1') (resid 1 and name H5'') 5.5 3.7 0 !W

assign (resid 2 and name H1') (resid 1 and name H2'') 4.5 2.7 0 !M
!assign (resid 2 and name H1') (resid 1 and name H3') 5.5 3.7 0 !VW

assign (resid 2 and name H1') (resid 2 and name H2'') 4.5 2.7 0 !M
assign (resid 2 and name H1') (resid 2 and name H3') 4.5 2.7 0 !M
assign (resid 2 and name H1') (resid 2 and name H4') 5.5 3.7 0 !W
assign (resid 2 and name H1') (resid 2 and name H5') 5.5 3.7 0 !W
assign (resid 2 and name H1') (resid 2 and name H5'') 5.5 3.7 0 !W

assign (resid 3 and name H1') (resid 2 and name H2'') 4.5 2.7 0 !M
!assign (resid 3 and name H1') (resid 2 and name H3') 5.5 3.7 0 !W

assign (resid 3 and name H1') (resid 3 and name H2'') 4.5 2.7 0 !M
assign (resid 3 and name H1') (resid 3 and name H3') 4.5 2.7 0 !M
assign (resid 3 and name H1') (resid 3 and name H4') 5.5 3.7 0 !W
assign (resid 3 and name H1') (resid 3 and name H5') 5.5 3.7 0 !W
assign (resid 3 and name H1') (resid 3 and name H5'') 5.5 3.7 0 !W

!assign (resid 4 and name H1') (resid 3 and name H2'') 4.5 2.7 0 !M
!assign (resid 4 and name H1') (resid 3 and name H3') 5.5 3.7 0 !W

assign (resid 4 and name H1') (resid 4 and name H2'') 4.5 2.7 0 !M
assign (resid 4 and name H1') (resid 4 and name H3') 4.5 2.7 0 !M
assign (resid 4 and name H1') (resid 4 and name H4') 5.5 3.7 0 !W
assign (resid 4 and name H1') (resid 4 and name H5') 5.5 3.7 0 !W
assign (resid 4 and name H1') (resid 4 and name H5'') 5.5 3.7 0 !W

assign (resid 5 and name H1') (resid 4 and name H2'') 4.5 2.7 0 !M
assign (resid 5 and name H1') (resid 4 and name H3') 5.5 3.7 0 !W

assign (resid 5 and name H1') (resid 5 and name H2'') 4.5 2.7 0 !M
assign (resid 5 and name H1') (resid 5 and name H3') 4.5 2.7 0 !M
assign (resid 5 and name H1') (resid 5 and name H4') 5.5 3.7 0 !W
assign (resid 5 and name H1') (resid 5 and name H5') 5.5 3.7 0 !W
assign (resid 5 and name H1') (resid 5 and name H5'') 5.5 3.7 0 !W

!assign (resid 6 and name H1') (resid 5 and name H2'') 4.5 2.7 0 !M
!assign (resid 6 and name H1') (resid 5 and name H3') 5.5 3.7 0 !W

assign (resid 6 and name H1') (resid 6 and name H2'') 4.5 2.7 0 !M
assign (resid 6 and name H1') (resid 6 and name H3') 4.5 2.7 0 !M
assign (resid 6 and name H1') (resid 6 and name H4') 5.5 3.7 0 !W
assign (resid 6 and name H1') (resid 6 and name H5') 5.5 3.7 0 !W
assign (resid 6 and name H1') (resid 6 and name H5'') 5.5 3.7 0 !W

!assign (resid 7 and name H1') (resid 6 and name H2'') 4.5 2.7 0 !M
!assign (resid 7 and name H1') (resid 6 and name H3') 5.5 3.7 0 !W

assign (resid 7 and name H1') (resid 7 and name H2'') 4.5 2.7 0 !M
assign (resid 7 and name H1') (resid 7 and name H3') 4.5 2.7 0 !M
assign (resid 7 and name H1') (resid 7 and name H4') 5.5 3.7 0 !W
assign (resid 7 and name H1') (resid 7 and name H5') 5.5 3.7 0 !W
assign (resid 7 and name H1') (resid 7 and name H5'') 5.5 3.7 0 !W

assign (resid 8 and name H1') (resid 7 and name H2'') 4.5 2.7 0 !M
assign (resid 8 and name H1') (resid 7 and name H3') 5.5 3.7 0 !W

assign (resid 8 and name H1') (resid 8 and name H2'') 4.5 2.7 0 !M
assign (resid 8 and name H1') (resid 8 and name H3') 4.5 2.7 0 !M
assign (resid 8 and name H1') (resid 8 and name H4') 5.5 3.7 0 !W
assign (resid 8 and name H1') (resid 8 and name H5') 5.5 3.7 0 !W
assign (resid 8 and name H1') (resid 8 and name H5'') 5.5 3.7 0 !W

!assign (resid 9 and name H1') (resid 8 and name H2'') 4.5 2.7 0 !M
!assign (resid 9 and name H1') (resid 8 and name H3') 5.5 3.7 0 !W

!assign (resid 9 and name H1') (resid 9 and name H2'') 4.5 2.7 0 !M
!assign (resid 9 and name H1') (resid 9 and name H3') 4.5 2.7 0 !M
!assign (resid 9 and name H1') (resid 9 and name H4') 5.5 3.7 0 !W
!assign (resid 9 and name H1') (resid 9 and name H5') 5.5 3.7 0 !W
!assign (resid 9 and name H1') (resid 9 and name H5'') 5.5 3.7 0 !W

!assign (resid 10 and name H1') (resid 9 and name H2'') 4.5 2.7 0 !M
!assign (resid 10 and name H1') (resid 9 and name H3') 5.5 3.7 0 !W

!assign (resid 10 and name H1') (resid 10 and name H2'') 4.5 2.7 0 !M
!assign (resid 10 and name H1') (resid 10 and name H3') 4.5 2.7 0 !M
!assign (resid 10 and name H1') (resid 10 and name H4') 5.5 3.7 0 !W
!assign (resid 10 and name H1') (resid 10 and name H5') 5.5 3.7 0 !W
!assign (resid 10 and name H1') (resid 10 and name H5'') 5.5 3.7 0 !W

!assign (resid 12 and name H1') (resid 12 and name H2'') 4.5 2.7 0 !M
!assign (resid 12 and name H1') (resid 12 and name H3') 4.5 2.7 0 !M
!assign (resid 12 and name H1') (resid 12 and name H4') 5.5 3.7 0 !W
!assign (resid 12 and name H1') (resid 12 and name H5') 5.5 3.7 0 !W
!assign (resid 12 and name H1') (resid 12 and name H5'') 5.5 3.7 0 !W

!assign (resid 13 and name H1') (resid 12 and name H2'') 4.5 2.7 0 !M
!assign (resid 13 and name H1') (resid 12 and name H3') 5.5 3.7 0 !W

assign (resid 13 and name H1') (resid 13 and name H2'') 4.5 2.7 0 !M
assign (resid 13 and name H1') (resid 13 and name H3') 4.5 2.7 0 !M
assign (resid 13 and name H1') (resid 13 and name H4') 5.5 3.7 0 !W
assign (resid 13 and name H1') (resid 13 and name H5') 5.5 3.7 0 !W
assign (resid 13 and name H1') (resid 13 and name H5'') 5.5 3.7 0 !W

!assign (resid 14 and name H1') (resid 13 and name H2'') 4.5 2.7 0 !M
!assign (resid 14 and name H1') (resid 13 and name H3') 5.5 3.7 0 !W

assign (resid 14 and name H1') (resid 14 and name H2'') 4.5 2.7 0 !M
assign (resid 14 and name H1') (resid 14 and name H3') 4.5 2.7 0 !M
assign (resid 14 and name H1') (resid 14 and name H4') 5.5 3.7 0 !W
assign (resid 14 and name H1') (resid 14 and name H5') 5.5 3.7 0 !W
assign (resid 14 and name H1') (resid 14 and name H5'') 5.5 3.7 0 !W

assign (resid 15 and name H1') (resid 14 and name H2'') 4.5 2.7 0 !M
assign (resid 15 and name H1') (resid 14 and name H3') 5.5 3.7 0 !W

assign (resid 15 and name H1') (resid 15 and name H2'') 4.5 2.7 0 !M
assign (resid 15 and name H1') (resid 15 and name H3') 4.5 2.7 0 !M
assign (resid 15 and name H1') (resid 15 and name H4') 5.5 3.7 0 !W
assign (resid 15 and name H1') (resid 15 and name H5') 5.5 3.7 0 !W
assign (resid 15 and name H1') (resid 15 and name H5'') 5.5 3.7 0 !W

assign (resid 16 and name H1') (resid 15 and name H2'') 4.5 2.7 0 !M
assign (resid 16 and name H1') (resid 15 and name H3') 5.5 3.7 0 !W

assign (resid 16 and name H1') (resid 16 and name H2'') 4.5 2.7 0 !M
assign (resid 16 and name H1') (resid 16 and name H3') 4.5 2.7 0 !M
assign (resid 16 and name H1') (resid 16 and name H4') 5.5 3.7 0 !W
assign (resid 16 and name H1') (resid 16 and name H5') 5.5 3.7 0 !W
assign (resid 16 and name H1') (resid 16 and name H5'') 5.5 3.7 0 !W

assign (resid 17 and name H1') (resid 16 and name H2'') 4.5 2.7 0 !M
assign (resid 17 and name H1') (resid 16 and name H3') 5.5 3.7 0 !W

assign (resid 17 and name H1') (resid 17 and name H2'') 4.5 2.7 0 !M
assign (resid 17 and name H1') (resid 17 and name H3') 4.5 2.7 0 !M
assign (resid 17 and name H1') (resid 17 and name H4') 5.5 3.7 0 !W
assign (resid 17 and name H1') (resid 17 and name H5') 5.5 3.7 0 !W
assign (resid 17 and name H1') (resid 17 and name H5'') 5.5 3.7 0 !W

!assign (resid 18 and name H1') (resid 17 and name H2'') 4.5 2.7 0 !M
!assign (resid 18 and name H1') (resid 17 and name H3') 5.5 3.7 0 !W

assign (resid 18 and name H1') (resid 18 and name H2'') 4.5 2.7 0 !M
assign (resid 18 and name H1') (resid 18 and name H3') 4.5 2.7 0 !M
assign (resid 18 and name H1') (resid 18 and name H4') 5.5 3.7 0 !W
assign (resid 18 and name H1') (resid 18 and name H5') 5.5 3.7 0 !W
assign (resid 18 and name H1') (resid 18 and name H5'') 5.5 3.7 0 !W

!assign (resid 19 and name H1') (resid 18 and name H2'') 4.5 2.7 0 !M
!assign (resid 19 and name H1') (resid 18 and name H3') 5.5 3.7 0 !W

assign (resid 19 and name H1') (resid 19 and name H2'') 4.5 2.7 0 !M
assign (resid 19 and name H1') (resid 19 and name H3') 4.5 2.7 0 !M
assign (resid 19 and name H1') (resid 19 and name H4') 5.5 3.7 0 !W
assign (resid 19 and name H1') (resid 19 and name H5') 5.5 3.7 0 !W
assign (resid 19 and name H1') (resid 19 and name H5'') 5.5 3.7 0 !W

assign (resid 20 and name H1') (resid 19 and name H2'') 4.5 2.7 0 !M
!assign (resid 20 and name H1') (resid 19 and name H3') 5.5 3.7 0 !W

assign (resid 20 and name H1') (resid 20 and name H2'') 4.5 2.7 0 !M
assign (resid 20 and name H1') (resid 20 and name H3') 4.5 2.7 0 !M
assign (resid 20 and name H1') (resid 20 and name H4') 5.5 3.7 0 !W
assign (resid 20 and name H1') (resid 20 and name H5') 5.5 3.7 0 !W
assign (resid 20 and name H1') (resid 20 and name H5'') 5.5 3.7 0 !W

assign (resid 21 and name H1') (resid 20 and name H2'') 4.5 2.7 0 !M
!assign (resid 21 and name H1') (resid 20 and name H3') 5.5 3.7 0 !W

assign (resid 21 and name H1') (resid 21 and name H2'') 4.5 2.7 0 !M
assign (resid 21 and name H1') (resid 21 and name H3') 4.5 2.7 0 !M
assign (resid 21 and name H1') (resid 21 and name H4') 5.5 3.7 0 !W
assign (resid 21 and name H1') (resid 21 and name H5') 5.5 3.7 0 !W
assign (resid 21 and name H1') (resid 21 and name H5'') 5.5 3.7 0 !W

assign (resid 22 and name H1') (resid 21 and name H2'') 4.5 2.7 0 !M
assign (resid 22 and name H1') (resid 21 and name H3') 5.5 3.7 0 !W

assign (resid 22 and name H1') (resid 22 and name H2'') 4.5 2.7 0 !M
assign (resid 22 and name H1') (resid 22 and name H3') 4.5 2.7 0 !M
assign (resid 22 and name H1') (resid 22 and name H4') 5.5 3.7 0 !W
assign (resid 22 and name H1') (resid 22 and name H5') 5.5 3.7 0 !W
assign (resid 22 and name H1') (resid 22 and name H5'') 5.5 3.7 0 !W

assign (resid 23 and name H1') (resid 22 and name H2'') 4.5 2.7 0 !M
assign (resid 23 and name H1') (resid 22 and name H3') 5.5 3.7 0 !W

assign (resid 23 and name H1') (resid 23 and name H2'') 4.5 2.7 0 !M
assign (resid 23 and name H1') (resid 23 and name H3') 4.5 2.7 0 !M
assign (resid 23 and name H1') (resid 23 and name H4') 5.5 3.7 0 !W
assign (resid 23 and name H1') (resid 23 and name H5') 5.5 3.7 0 !W
assign (resid 23 and name H1') (resid 23 and name H5'') 5.5 3.7 0 !W

!
!H2
!
assign (resid 5 and name H2) (resid 6 and name H6) 5.5 3.7 0 !W
assign (resid 5 and name H2) (resid 19 and name H6) 6.5 4.7 0 !VW
assign (resid 5 and name H2) (resid 20 and name H8) 5.5 3.7 0 !W
assign (resid 5 and name H2) (resid 20 and name H1') 4.5 2.7 0 !M

assign (resid 12 and name H2) (resid 13 and name H2) 5.5 3.7 0 !W
assign (resid 13 and name H2) (resid 14 and name H2) 5.5 3.7 0 !W

assign (resid 14 and name H2) (resid 13 and name H1') 6.5 4.7 0 !VW
assign (resid 14 and name H2) (resid 14 and name H1') 5.5 3.7 0 !W

assign (resid 18 and name H2) (resid 5 and name H2) 6.5 4.7 0 !VW
assign (resid 18 and name H2) (resid 6 and name H1') 5.5 3.7 0 !W
assign (resid 18 and name H2) (resid 7 and name H8) 5.5 3.7 0 !W
assign (resid 18 and name H2) (resid 7 and name H1') 5.5 3.7 0 !W
assign (resid 18 and name H2) (resid 19 and name H1') 5.5 3.7 0 !W
assign (resid 18 and name H2) (resid 19 and name H6) 5.5 3.7 0 !W

!
!H5
!
assign (resid 4 and name H5) (resid 5 and name H8) 6.5 4.7 0 !VW
assign (resid 6 and name H5) (resid 5 and name H8) 4.5 2.7 0 !M
assign (resid 6 and name H5) (resid 5 and name H1') 5.5 3.7 0 !W
assign (resid 6 and name H5) (resid 6 and name H1') 5.5 3.7 0 !W
assign (resid 15 and name H5) (resid 15 and name H3') 5.5 3.7 0 !W
assign (resid 17 and name H5) (resid 18 and name H8) 6.5 4.7 0 !VW
assign (resid 19 and name H5) (resid 18 and name H8) 6.5 4.7 0 !VW
assign (resid 21 and name H5) (resid 20 and name H1') 5.5 3.7 0 !W
assign (resid 21 and name H5) (resid 22 and name H6) 5.5 3.7 0 !W
assign (resid 22 and name H5) (resid 21 and name H6) 5.5 3.7 0 !W
assign (resid 22 and name H5) (resid 21 and name H3') 5.5 3.7 0 !W
assign (resid 22 and name H5) (resid 23 and name H6) 5.5 3.7 0 !W
assign (resid 23 and name H5) (resid 22 and name H6) 5.5 3.7 0 !W

# Restraints file 4: phagega_rdc.tbl
assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 2 and name H8)
 (resid 2 and name C8) 1.7 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 2 and name H1')
 (resid 2 and name C1') -15.9 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 3 and name H8)
 (resid 3 and name C8) 3.1 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 3 and name H2)
 (resid 3 and name C2) 1.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 3 and name H1')
 (resid 3 and name C1') -17.3 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 4 and name H6)
 (resid 4 and name C6) 11.4 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 4 and name H5)
 (resid 4 and name C5) -1.1 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 4 and name H1')
 (resid 4 and name C1') -8.6 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 5 and name H8)
 (resid 5 and name C8) 15.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 5 and name H2)
 (resid 5 and name C2) 10.0 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 5 and name H1')
 (resid 5 and name C1') -12.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 6 and name H6)
 (resid 6 and name C6) 15.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 6 and name H5)
 (resid 6 and name C5) 11.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 6 and name H1')
 (resid 6 and name C1') -0.4 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 7 and name H8)
 (resid 7 and name C8) 10.7 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 7 and name H1')
 (resid 7 and name C1') 5.2 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 10 and name H8)
 (resid 10 and name C8) 4.0 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 12 and name H8)
 (resid 12 and name C8) 4.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 12 and name H2)
 (resid 12 and name C2) 3.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 12 and name H1')
 (resid 12 and name C1') 0.0 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 13 and name H8)
 (resid 13 and name C8) 3.9 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 13 and name H2)
 (resid 13 and name C2) 1.0 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 13 and name H1')
 (resid 13 and name C1') -5.4 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 14 and name H8)
 (resid 14 and name C8) 5.8 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 14 and name H2)
 (resid 14 and name C2) 2.3 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 14 and name H1')
 (resid 14 and name C1') -1.0 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 15 and name H6)
 (resid 15 and name C6) 4.4 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 15 and name H5)
 (resid 15 and name C5) 8.8 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 16 and name H5)
 (resid 16 and name C5) 7.0 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 17 and name H6)
 (resid 17 and name C6) 6.9 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 17 and name H5)
 (resid 17 and name C5) 6.8 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 17 and name H1')
 (resid 17 and name C1') 0.8 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 18 and name H8)
 (resid 18 and name C8) 13.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 18 and name H2)
 (resid 18 and name C2) 5.2 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 18 and name H1')
 (resid 18 and name C1') -3.0 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 19 and name H6)
 (resid 19 and name C6) 16.4 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 19 and name H5)
 (resid 19 and name C5) 14.0 1.0 1.0

!assign (resid 600 and name OO)
! (resid 600 and name Z)
! (resid 600 and name X)
! (resid 600 and name Y)
! (resid 19 and name H1')
! (resid 19 and name C1') 6.2 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 20 and name H8)
 (resid 20 and name C8) 12.4 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 20 and name H1')
 (resid 20 and name C1') 2.6 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 21 and name H5)
 (resid 21 and name C5) 8.5 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 21 and name H1')
 (resid 21 and name C1') 11.0 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 22 and name H5)
 (resid 22 and name C5) 9.3 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 22 and name H1')
 (resid 22 and name C1') 0.8 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 23 and name H6)
 (resid 23 and name C6) -0.9 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 23 and name H5)
 (resid 23 and name C5) 5.9 1.0 1.0

assign (resid 600 and name OO)
 (resid 600 and name Z)
 (resid 600 and name X)
 (resid 600 and name Y)
 (resid 23 and name H1')
 (resid 23 and name C1') -5.5 1.0 1.0# Restraints file 5: phagega_hbonds.tbl
!
!G1-C23
!
assign (resid 1 and name O6 ) (resid 23 and name H41) 2.0 0.5 0.5
assign (resid 1 and name O6 ) (resid 23 and name N4 ) 3.0 0.5 0.5
assign (resid 1 and name H1 ) (resid 23 and name N3 ) 2.0 0.5 0.5
assign (resid 1 and name N1 ) (resid 23 and name N3 ) 3.0 0.5 0.5
assign (resid 1 and name H21) (resid 23 and name O2 ) 2.0 0.5 0.5
assign (resid 1 and name N2 ) (resid 23 and name O2 ) 3.0 0.5 0.5

!
!G2-C22
!
assign (resid 2 and name O6 ) (resid 22 and name H41) 2.0 0.5 0.5
assign (resid 2 and name O6 ) (resid 22 and name N4 ) 3.0 0.5 0.5
assign (resid 2 and name H1 ) (resid 22 and name N3 ) 2.0 0.5 0.5
assign (resid 2 and name N1 ) (resid 22 and name N3 ) 3.0 0.5 0.5
assign (resid 2 and name H21) (resid 22 and name O2 ) 2.0 0.5 0.5
assign (resid 2 and name N2 ) (resid 22 and name O2 ) 3.0 0.5 0.5
!
!A3-U21
!
assign (resid 3 and name H61) (resid 21 and name O4 ) 2.00 0.5 0.5
assign (resid 3 and name N6 ) (resid 21 and name O4 ) 3.00 0.5 0.5
assign (resid 3 and name N1 ) (resid 21 and name H3 ) 2.00 0.5 0.5
assign (resid 3 and name N1 ) (resid 21 and name N3 ) 3.00 0.5 0.5

!
!G20-C4
!
assign (resid 20 and name O6 ) (resid 4 and name H41) 2.0 0.5 0.5
assign (resid 20 and name O6 ) (resid 4 and name N4 ) 3.0 0.5 0.5
assign (resid 20 and name H1 ) (resid 4 and name N3 ) 2.0 0.5 0.5
assign (resid 20 and name N1 ) (resid 4 and name N3 ) 3.0 0.5 0.5
assign (resid 20 and name H21) (resid 4 and name O2 ) 2.0 0.5 0.5
assign (resid 20 and name N2 ) (resid 4 and name O2 ) 3.0 0.5 0.5

!
!A5-U19
!
assign (resid 5 and name H61) (resid 19 and name O4 ) 2.00 0.5 0.5
assign (resid 5 and name N6 ) (resid 19 and name O4 ) 3.00 0.5 0.5
assign (resid 5 and name N1 ) (resid 19 and name H3 ) 2.00 0.5 0.5
assign (resid 5 and name N1 ) (resid 19 and name N3 ) 3.00 0.5 0.5

!
!A18-U6
!
assign (resid 18 and name H61) (resid 6 and name O4 ) 2.00 0.5 0.5
assign (resid 18 and name N6 ) (resid 6 and name O4 ) 3.00 0.5 0.5
assign (resid 18 and name N1 ) (resid 6 and name H3 ) 2.00 0.5 0.5
assign (resid 18 and name N1 ) (resid 6 and name N3 ) 3.00 0.5 0.5

!
!A7-U17
!
assign (resid 7 and name H61) (resid 17 and name O4 ) 2.00 0.5 0.5
assign (resid 7 and name N6 ) (resid 17 and name O4 ) 3.00 0.5 0.5
assign (resid 7 and name N1 ) (resid 17 and name H3 ) 2.00 0.5 0.5
assign (resid 7 and name N1 ) (resid 17 and name N3 ) 3.00 0.5 0.5

!
!G9-C16
!
assign (resid 9 and name O6 ) (resid 16 and name H41) 2.0 0.5 0.5
assign (resid 9 and name O6 ) (resid 16 and name N4 ) 3.0 0.5 0.5
assign (resid 9 and name H1 ) (resid 16 and name N3 ) 2.0 0.5 0.5
assign (resid 9 and name N1 ) (resid 16 and name N3 ) 3.0 0.5 0.5
assign (resid 9 and name H21) (resid 16 and name O2 ) 2.0 0.5 0.5
assign (resid 9 and name N2 ) (resid 16 and name O2 ) 3.0 0.5 0.5

!
!G10-C15
!
assign (resid 10 and name O6 ) (resid 15 and name H41) 2.0 0.5 0.5
assign (resid 10 and name O6 ) (resid 15 and name N4 ) 3.0 0.5 0.5
assign (resid 10 and name H1 ) (resid 15 and name N3 ) 2.0 0.5 0.5
assign (resid 10 and name N1 ) (resid 15 and name N3 ) 3.0 0.5 0.5
assign (resid 10 and name H21) (resid 15 and name O2 ) 2.0 0.5 0.5
assign (resid 10 and name N2 ) (resid 15 and name O2 ) 3.0 0.5 0.5

  Entry H atom name         Submitted Coord H atom name
  Start of MODEL    1
    1    H5'    G   1           H5'        G   1  14.666  25.343 -21.471
    2   H5''    G   1          H5''        G   1  14.533  23.992 -20.334
    3    H4'    G   1           H4'        G   1  13.843  25.594 -18.948
    4    H3'    G   1           H3'        G   1  11.315  24.917 -20.421
    5    H2'    G   1           H2'        G   1  10.213  26.599 -19.125
    6   HO2'    G   1          HO2'        G   1  10.956  27.163 -17.206
    7    H1'    G   1           H1'        G   1  12.168  28.533 -19.535
    8    H8     G   1           H8         G   1  11.978  26.364 -22.555
    9    H1     G   1           H1         G   1   7.241  30.691 -22.263
   10    H21    G   1           H21        G   1   7.233  31.669 -20.298
   11    H22    G   1           H22        G   1   8.387  31.266 -19.044
   12   HO5'    G   1          HO5'        G   1  12.808  23.264 -21.356
   13    H5'    G   2           H5'        G   2  10.339  25.248 -16.599
   14   H5''    G   2          H5''        G   2   9.507  23.833 -15.935
   15    H4'    G   2           H4'        G   2   8.265  25.721 -15.302
   16    H3'    G   2           H3'        G   2   6.901  24.202 -17.512
   17    H2'    G   2           H2'        G   2   5.067  25.747 -17.301
   18   HO2'    G   2          HO2'        G   2   4.738  26.800 -15.478
   19    H1'    G   2           H1'        G   2   6.685  28.004 -17.283
   20    H8     G   2           H8         G   2   8.503  25.788 -19.572
   21    H1     G   2           H1         G   2   3.163  28.167 -22.229
   22    H21    G   2           H21        G   2   1.898  29.084 -20.687
   23    H22    G   2           H22        G   2   2.352  29.113 -18.998
   24    H5'    A   3           H5'        A   3   4.141  24.855 -14.692
   25   H5''    A   3          H5''        A   3   3.273  23.387 -14.208
   26    H4'    A   3           H4'        A   3   1.650  25.022 -14.666
   27    H3'    A   3           H3'        A   3   1.803  23.001 -16.892
   28    H2'    A   3           H2'        A   3  -0.067  24.153 -17.898
   29   HO2'    A   3          HO2'        A   3  -1.229  25.687 -16.807
   30    H1'    A   3           H1'        A   3   1.064  26.688 -17.571
   31    H8     A   3           H8         A   3   3.948  24.451 -18.219
   32    H61    A   3           H61        A   3   2.598  24.856 -24.249
   33    H62    A   3           H62        A   3   3.787  24.334 -23.077
   34    H2     A   3           H2         A   3  -0.831  26.588 -21.937
   35    H5'    C   4           H5'        C   4  -2.151  23.231 -16.097
   36   H5''    C   4          H5''        C   4  -2.822  21.625 -15.752
   37    H4'    C   4           H4'        C   4  -4.226  22.597 -17.342
   38    H3'    C   4           H3'        C   4  -2.457  20.531 -18.609
   39    H2'    C   4           H2'        C   4  -3.610  20.921 -20.670
   40   HO2'    C   4          HO2'        C   4  -5.532  21.905 -18.956
   41    H1'    C   4           H1'        C   4  -3.641  23.666 -20.492
   42    H41    C   4           H41        C   4   1.554  22.189 -23.879
   43    H42    C   4           H42        C   4   2.401  21.694 -22.428
   44    H5     C   4           H5         C   4   1.360  21.679 -20.237
   45    H6     C   4           H6         C   4  -0.704  22.108 -19.008
   46    H5'    A   5           H5'        A   5  -6.146  19.941 -19.686
   47   H5''    A   5          H5''        A   5  -6.690  18.264 -19.753
   48    H4'    A   5           H4'        A   5  -7.146  19.348 -21.836
   49    H3'    A   5           H3'        A   5  -4.987  17.255 -22.052
   50    H2'    A   5           H2'        A   5  -4.981  17.701 -24.424
   51   HO2'    A   5          HO2'        A   5  -7.511  18.491 -23.909
   52    H1'    A   5           H1'        A   5  -5.075  20.508 -24.104
   53    H8     A   5           H8         A   5  -2.703  19.411 -21.507
   54    H61    A   5           H61        A   5   1.612  18.959 -25.932
   55    H62    A   5           H62        A   5   1.323  18.974 -24.207
   56    H2     A   5           H2         A   5  -2.380  19.416 -27.922
   57    H5'    U   6           H5'        U   6  -7.822  16.683 -24.897
   58   H5''    U   6          H5''        U   6  -8.494  15.046 -24.847
   59    H4'    U   6           H4'        U   6  -8.121  15.543 -27.096
   60    H3'    U   6           H3'        U   6  -6.040  13.665 -26.028
   61    H2'    U   6           H2'        U   6  -5.150  13.533 -28.231
   62   HO2'    U   6          HO2'        U   6  -6.238  14.283 -30.019
   63    H1'    U   6           H1'        U   6  -5.279  16.241 -28.761
   64    H3     U   6           H3         U   6  -0.908  15.103 -28.282
   65    H5     U   6           H5         U   6  -2.328  15.739 -24.379
   66    H6     U   6           H6         U   6  -4.551  15.876 -25.295
   67    H5'    A   7           H5'        A   7  -7.631  12.228 -29.424
   68   H5''    A   7          H5''        A   7  -8.155  10.544 -29.313
   69    H4'    A   7           H4'        A   7  -6.969  10.756 -31.311
   70    H3'    A   7           H3'        A   7  -5.336   9.315 -29.245
   71    H2'    A   7           H2'        A   7  -3.675   8.981 -30.962
   72   HO2'    A   7          HO2'        A   7  -4.462  10.383 -33.008
   73    H1'    A   7           H1'        A   7  -3.594  11.615 -31.690
   74    H8     A   7           H8         A   7  -4.559  11.721 -28.108
   75    H61    A   7           H61        A   7   1.433  11.033 -26.692
   76    H62    A   7           H62        A   7  -0.157  11.403 -26.062
   77    H2     A   7           H2         A   7   0.943  10.274 -31.084
   78    H5'    A   8           H5'        A   8  -5.940   7.438 -32.950
   79   H5''    A   8          H5''        A   8  -6.176   5.687 -32.886
   80    H4'    A   8           H4'        A   8  -4.699   6.180 -34.666
   81    H3'    A   8           H3'        A   8  -3.226   4.897 -32.366
   82    H2'    A   8           H2'        A   8  -1.279   4.931 -33.789
   83   HO2'    A   8          HO2'        A   8  -1.570   5.778 -36.001
   84    H1'    A   8           H1'        A   8  -1.721   7.556 -34.703
   85    H8     A   8           H8         A   8  -2.550   7.508 -31.073
   86    H61    A   8           H61        A   8   3.519   7.995 -29.937
   87    H62    A   8           H62        A   8   1.919   8.054 -29.233
   88    H2     A   8           H2         A   8   2.985   7.137 -34.306
   89    H5'    G   9           H5'        G   9  -2.206   2.981 -35.667
   90   H5''    G   9          H5''        G   9  -2.203   1.213 -35.533
   91    H4'    G   9           H4'        G   9  -0.097   1.869 -36.374
   92    H3'    G   9           H3'        G   9   0.086   1.013 -33.494
   93    H2'    G   9           H2'        G   9   2.456   1.366 -33.643
   94   HO2'    G   9          HO2'        G   9   3.509   1.546 -35.573
   95    H1'    G   9           H1'        G   9   2.249   3.784 -35.100
   96    H8     G   9           H8         G   9  -0.405   3.788 -32.499
   97    H1     G   9           H1         G   9   5.404   5.276 -30.197
   98    H21    G   9           H21        G   9   6.943   4.840 -31.698
   99    H22    G   9           H22        G   9   6.558   4.178 -33.272
  100    H5'    G  10           H5'        G  10   3.003  -0.906 -35.396
  101   H5''    G  10          H5''        G  10   3.009  -2.655 -35.096
  102    H4'    G  10           H4'        G  10   5.191  -1.873 -34.675
  103    H3'    G  10           H3'        G  10   3.711  -2.465 -32.122
  104    H2'    G  10           H2'        G  10   5.706  -1.885 -30.933
  105   HO2'    G  10          HO2'        G  10   7.276  -1.453 -33.192
  106    H1'    G  10           H1'        G  10   6.419   0.279 -32.670
  107    H8     G  10           H8         G  10   2.805   0.494 -31.830
  108    H1     G  10           H1         G  10   6.611   2.724 -27.164
  109    H21    G  10           H21        G  10   8.701   2.193 -27.574
  110    H22    G  10           H22        G  10   9.171   1.271 -28.987
  111    H5'    A  11           H5'        A  11   7.427  -4.432 -30.774
  112   H5''    A  11          H5''        A  11   7.012  -5.457 -32.163
  113    H4'    A  11           H4'        A  11   6.384  -7.235 -30.472
  114    H3'    A  11           H3'        A  11   6.642  -5.467 -28.472
  115    H2'    A  11           H2'        A  11   8.984  -4.962 -28.796
  116   HO2'    A  11          HO2'        A  11   8.418  -6.693 -26.817
  117    H1'    A  11           H1'        A  11   9.492  -7.950 -29.284
  118    H8     A  11           H8         A  11  10.231  -4.544 -30.999
  119    H61    A  11           H61        A  11  16.097  -6.525 -31.141
  120    H62    A  11           H62        A  11  15.009  -5.228 -31.585
  121    H2     A  11           H2         A  11  13.621  -9.652 -29.093
  122    H5'    A  12           H5'        A  12   4.401  -5.160 -26.359
  123   H5''    A  12          H5''        A  12   6.165  -5.299 -26.453
  124    H4'    A  12           H4'        A  12   4.388  -5.639 -24.064
  125    H3'    A  12           H3'        A  12   6.378  -3.551 -24.825
  126    H2'    A  12           H2'        A  12   7.103  -3.363 -22.564
  127   HO2'    A  12          HO2'        A  12   4.692  -4.682 -22.096
  128    H1'    A  12           H1'        A  12   7.456  -6.030 -22.136
  129    H8     A  12           H8         A  12   7.792  -4.565 -25.701
  130    H61    A  12           H61        A  12  13.903  -4.890 -24.775
  131    H62    A  12           H62        A  12  12.646  -4.476 -25.918
  132    H2     A  12           H2         A  12  11.854  -6.247 -21.024
  133    H5'    A  13           H5'        A  13   4.534  -2.248 -21.620
  134   H5''    A  13          H5''        A  13   4.029  -0.550 -21.650
  135    H4'    A  13           H4'        A  13   5.373  -0.884 -19.735
  136    H3'    A  13           H3'        A  13   6.847   0.673 -21.848
  137    H2'    A  13           H2'        A  13   8.704   0.807 -20.304
  138   HO2'    A  13          HO2'        A  13   6.757  -0.164 -18.496
  139    H1'    A  13           H1'        A  13   8.713  -1.946 -19.835
  140    H8     A  13           H8         A  13   7.465  -0.618 -23.229
  141    H61    A  13           H61        A  13  13.061  -2.245 -25.316
  142    H62    A  13           H62        A  13  11.494  -1.606 -25.759
  143    H2     A  13           H2         A  13  12.962  -2.968 -20.890
  144    H5'    A  14           H5'        A  14   7.366   2.725 -18.488
  145   H5''    A  14          H5''        A  14   7.098   4.475 -18.626
  146    H4'    A  14           H4'        A  14   9.284   4.173 -17.818
  147    H3'    A  14           H3'        A  14   9.230   4.997 -20.698
  148    H2'    A  14           H2'        A  14  11.635   4.907 -20.729
  149   HO2'    A  14          HO2'        A  14  12.023   5.736 -18.625
  150    H1'    A  14           H1'        A  14  11.845   2.461 -19.541
  151    H8     A  14           H8         A  14   8.858   3.361 -21.830
  152    H61    A  14           H61        A  14  11.986   0.327 -26.230
  153    H62    A  14           H62        A  14  10.511   1.192 -25.857
  154    H2     A  14           H2         A  14  14.461   0.304 -22.493
  155    H5'    C  15           H5'        C  15  11.709   6.952 -20.555
  156   H5''    C  15          H5''        C  15  11.591   8.565 -21.283
  157    H4'    C  15           H4'        C  15  12.904   7.061 -22.678
  158    H3'    C  15           H3'        C  15  10.289   7.967 -23.878
  159    H2'    C  15           H2'        C  15  10.961   6.791 -25.886
  160   HO2'    C  15          HO2'        C  15  13.024   5.917 -26.097
  161    H1'    C  15           H1'        C  15  11.730   4.474 -24.518
  162    H41    C  15           H41        C  15   5.578   3.794 -26.100
  163    H42    C  15           H42        C  15   5.105   4.612 -24.628
  164    H5     C  15           H5         C  15   6.708   5.611 -23.108
  165    H6     C  15           H6         C  15   9.079   6.022 -22.698
  166    H5'    C  16           H5'        C  16  12.910   8.440 -26.675
  167   H5''    C  16          H5''        C  16  12.990  10.063 -27.390
  168    H4'    C  16           H4'        C  16  12.753   8.496 -29.161
  169    H3'    C  16           H3'        C  16  10.229  10.064 -28.640
  170    H2'    C  16           H2'        C  16   9.279   8.920 -30.565
  171   HO2'    C  16          HO2'        C  16  10.643   8.452 -32.124
  172    H1'    C  16           H1'        C  16  10.281   6.378 -29.815
  173    H41    C  16           H41        C  16   4.354   6.629 -27.518
  174    H42    C  16           H42        C  16   4.834   7.774 -26.285
  175    H5     C  16           H5         C  16   7.079   8.668 -26.123
  176    H6     C  16           H6         C  16   9.310   8.644 -27.107
  177    H5'    U  17           H5'        U  17  10.716  10.459 -32.598
  178   H5''    U  17          H5''        U  17  10.984  12.151 -33.061
  179    H4'    U  17           H4'        U  17   9.338  11.305 -34.509
  180    H3'    U  17           H3'        U  17   8.156  13.096 -32.392
  181    H2'    U  17           H2'        U  17   6.051  12.826 -33.485
  182   HO2'    U  17          HO2'        U  17   7.653  12.434 -35.638
  183    H1'    U  17           H1'        U  17   6.460  10.130 -34.160
  184    H3     U  17           H3         U  17   2.764  10.562 -31.422
  185    H5     U  17           H5         U  17   6.086  10.180 -28.879
  186    H6     U  17           H6         U  17   7.499  10.434 -30.813
  187    H5'    A  18           H5'        A  18   6.698  14.313 -35.781
  188   H5''    A  18          H5''        A  18   6.755  16.058 -36.040
  189    H4'    A  18           H4'        A  18   4.536  15.341 -36.406
  190    H3'    A  18           H3'        A  18   4.842  16.879 -33.841
  191    H2'    A  18           H2'        A  18   2.480  16.669 -33.522
  192   HO2'    A  18          HO2'        A  18   2.531  16.463 -36.249
  193    H1'    A  18           H1'        A  18   2.316  14.005 -34.486
  194    H8     A  18           H8         A  18   5.152  13.842 -32.195
  195    H61    A  18           H61        A  18   1.166  13.791 -27.456
  196    H62    A  18           H62        A  18   2.823  13.509 -27.938
  197    H2     A  18           H2         A  18  -1.084  14.962 -31.152
  198    H5'    U  19           H5'        U  19   1.845  18.410 -36.007
  199   H5''    U  19          H5''        U  19   1.997  20.142 -36.321
  200    H4'    U  19           H4'        U  19  -0.226  19.740 -35.689
  201    H3'    U  19           H3'        U  19   1.334  21.072 -33.496
  202    H2'    U  19           H2'        U  19  -0.693  21.171 -32.235
  203   HO2'    U  19          HO2'        U  19  -1.819  20.882 -34.749
  204    H1'    U  19           H1'        U  19  -1.502  18.561 -32.837
  205    H3     U  19           H3         U  19  -0.317  18.722 -28.438
  206    H5     U  19           H5         U  19   3.284  18.243 -30.547
  207    H6     U  19           H6         U  19   2.047  18.597 -32.583
  208    H5'    G  20           H5'        G  20  -2.074  23.017 -34.326
  209   H5''    G  20          H5''        G  20  -1.899  24.762 -34.552
  210    H4'    G  20           H4'        G  20  -3.747  24.432 -33.154
  211    H3'    G  20           H3'        G  20  -1.365  25.403 -31.597
  212    H2'    G  20           H2'        G  20  -2.796  25.464 -29.675
  213   HO2'    G  20          HO2'        G  20  -4.712  25.806 -31.519
  214    H1'    G  20           H1'        G  20  -3.971  22.966 -30.161
  215    H8     G  20           H8         G  20  -0.380  22.858 -31.134
  216    H1     G  20           H1         G  20  -1.295  22.470 -24.789
  217    H21    G  20           H21        G  20  -3.392  22.896 -24.302
  218    H22    G  20           H22        G  20  -4.579  23.284 -25.530
  219    H5'    U  21           H5'        U  21  -4.464  27.796 -30.585
  220   H5''    U  21          H5''        U  21  -4.119  29.511 -30.868
  221    H4'    U  21           H4'        U  21  -5.035  29.343 -28.716
  222    H3'    U  21           H3'        U  21  -2.061  29.799 -28.589
  223    H2'    U  21           H2'        U  21  -2.282  29.915 -26.212
  224   HO2'    U  21          HO2'        U  21  -5.081  30.016 -26.756
  225    H1'    U  21           H1'        U  21  -4.112  27.800 -26.021
  226    H3     U  21           H3         U  21  -0.116  26.791 -23.973
  227    H5     U  21           H5         U  21   0.100  25.330 -27.906
  228    H6     U  21           H6         U  21  -1.900  26.580 -28.398
  229    H5'    C  22           H5'        C  22  -3.717  32.347 -26.138
  230   H5''    C  22          H5''        C  22  -3.044  33.981 -26.176
  231    H4'    C  22           H4'        C  22  -2.955  33.168 -23.936
  232    H3'    C  22           H3'        C  22  -0.232  33.294 -25.221
  233    H2'    C  22           H2'        C  22   0.659  32.621 -23.087
  234   HO2'    C  22          HO2'        C  22  -0.553  32.636 -21.228
  235    H1'    C  22           H1'        C  22  -1.238  30.574 -22.696
  236    H41    C  22           H41        C  22   3.823  27.815 -25.316
  237    H42    C  22           H42        C  22   3.206  28.190 -26.909
  238    H5     C  22           H5         C  22   1.246  29.564 -27.270
  239    H6     C  22           H6         C  22  -0.531  30.828 -26.177
  240    H5'    C  23           H5'        C  23   0.096  35.114 -21.702
  241   H5''    C  23          H5''        C  23   0.827  36.730 -21.781
  242    H4'    C  23           H4'        C  23   1.997  35.504 -20.135
  243    H3'    C  23           H3'        C  23   3.599  35.783 -22.668
  244   HO3'    C  23          HO3'        C  23   3.397  37.071 -20.187
  245    H2'    C  23           H2'        C  23   5.394  34.686 -21.525
  246   HO2'    C  23          HO2'        C  23   3.928  34.458 -19.130
  247    H1'    C  23           H1'        C  23   3.762  32.706 -20.370
  248    H41    C  23           H41        C  23   6.166  30.188 -25.676
  249    H42    C  23           H42        C  23   4.847  30.872 -26.602
  250    H5     C  23           H5         C  23   3.201  32.368 -25.637
  251    H6     C  23           H6         C  23   2.506  33.521 -23.600
  Start of MODEL    2
    1    H5'    G   1           H5'        G   1  14.832  25.646 -21.155
    2   H5''    G   1          H5''        G   1  14.669  24.288 -20.031
    3    H4'    G   1           H4'        G   1  13.878  25.871 -18.678
    4    H3'    G   1           H3'        G   1  11.447  25.138 -20.278
    5    H2'    G   1           H2'        G   1  10.237  26.795 -19.058
    6   HO2'    G   1          HO2'        G   1  10.995  27.713 -17.209
    7    H1'    G   1           H1'        G   1  12.171  28.777 -19.345
    8    H8     G   1           H8         G   1  12.205  26.601 -22.364
    9    H1     G   1           H1         G   1   7.398  30.859 -22.395
   10    H21    G   1           H21        G   1   7.251  31.847 -20.439
   11    H22    G   1           H22        G   1   8.329  31.468 -19.115
   12   HO5'    G   1          HO5'        G   1  13.437  23.444 -21.488
   13    H5'    G   2           H5'        G   2  10.350  25.402 -16.466
   14   H5''    G   2          H5''        G   2   9.539  23.957 -15.842
   15    H4'    G   2           H4'        G   2   8.254  25.807 -15.184
   16    H3'    G   2           H3'        G   2   6.934  24.316 -17.440
   17    H2'    G   2           H2'        G   2   5.067  25.827 -17.190
   18   HO2'    G   2          HO2'        G   2   4.725  26.737 -15.300
   19    H1'    G   2           H1'        G   2   6.655  28.102 -17.162
   20    H8     G   2           H8         G   2   8.523  25.912 -19.438
   21    H1     G   2           H1         G   2   3.173  28.229 -22.129
   22    H21    G   2           H21        G   2   1.884  29.127 -20.594
   23    H22    G   2           H22        G   2   2.327  29.160 -18.902
   24    H5'    A   3           H5'        A   3   4.152  24.858 -14.635
   25   H5''    A   3          H5''        A   3   3.297  23.373 -14.186
   26    H4'    A   3           H4'        A   3   1.662  25.005 -14.623
   27    H3'    A   3           H3'        A   3   1.839  23.022 -16.885
   28    H2'    A   3           H2'        A   3  -0.043  24.177 -17.869
   29   HO2'    A   3          HO2'        A   3  -0.118  26.090 -15.809
   30    H1'    A   3           H1'        A   3   1.080  26.710 -17.510
   31    H8     A   3           H8         A   3   3.987  24.511 -18.171
   32    H61    A   3           H61        A   3   2.658  24.967 -24.203
   33    H62    A   3           H62        A   3   3.848  24.448 -23.031
   34    H2     A   3           H2         A   3  -0.804  26.626 -21.886
   35    H5'    C   4           H5'        C   4  -2.112  23.228 -16.105
   36   H5''    C   4          H5''        C   4  -2.778  21.619 -15.767
   37    H4'    C   4           H4'        C   4  -4.190  22.594 -17.346
   38    H3'    C   4           H3'        C   4  -2.415  20.538 -18.620
   39    H2'    C   4           H2'        C   4  -3.586  20.921 -20.676
   40   HO2'    C   4          HO2'        C   4  -5.302  22.666 -19.200
   41    H1'    C   4           H1'        C   4  -3.589  23.661 -20.515
   42    H41    C   4           H41        C   4   1.615  22.156 -23.862
   43    H42    C   4           H42        C   4   2.439  21.618 -22.416
   44    H5     C   4           H5         C   4   1.381  21.587 -20.232
   45    H6     C   4           H6         C   4  -0.682  22.041 -19.009
   46    H5'    A   5           H5'        A   5  -6.092  19.930 -19.676
   47   H5''    A   5          H5''        A   5  -6.637  18.252 -19.730
   48    H4'    A   5           H4'        A   5  -7.107  19.322 -21.815
   49    H3'    A   5           H3'        A   5  -4.945  17.236 -22.041
   50    H2'    A   5           H2'        A   5  -4.950  17.678 -24.412
   51   HO2'    A   5          HO2'        A   5  -6.897  19.660 -24.324
   52    H1'    A   5           H1'        A   5  -5.051  20.490 -24.094
   53    H8     A   5           H8         A   5  -2.684  19.383 -21.499
   54    H61    A   5           H61        A   5   1.655  19.007 -25.906
   55    H62    A   5           H62        A   5   1.358  19.004 -24.183
   56    H2     A   5           H2         A   5  -2.330  19.446 -27.911
   57    H5'    U   6           H5'        U   6  -7.804  16.658 -24.859
   58   H5''    U   6          H5''        U   6  -8.473  15.021 -24.807
   59    H4'    U   6           H4'        U   6  -8.127  15.525 -27.057
   60    H3'    U   6           H3'        U   6  -6.025  13.647 -26.029
   61    H2'    U   6           H2'        U   6  -5.171  13.531 -28.249
   62   HO2'    U   6          HO2'        U   6  -7.575  14.887 -28.946
   63    H1'    U   6           H1'        U   6  -5.300  16.238 -28.754
   64    H3     U   6           H3         U   6  -0.931  15.085 -28.325
   65    H5     U   6           H5         U   6  -2.304  15.728 -24.407
   66    H6     U   6           H6         U   6  -4.537  15.867 -25.298
   67    H5'    A   7           H5'        A   7  -7.630  12.222 -29.437
   68   H5''    A   7          H5''        A   7  -8.141  10.535 -29.323
   69    H4'    A   7           H4'        A   7  -6.973  10.756 -31.331
   70    H3'    A   7           H3'        A   7  -5.312   9.320 -29.284
   71    H2'    A   7           H2'        A   7  -3.658   8.996 -31.017
   72   HO2'    A   7          HO2'        A   7  -4.233  10.180 -33.110
   73    H1'    A   7           H1'        A   7  -3.599  11.638 -31.731
   74    H8     A   7           H8         A   7  -4.561  11.721 -28.147
   75    H61    A   7           H61        A   7   1.448  11.152 -26.752
   76    H62    A   7           H62        A   7  -0.147  11.489 -26.116
   77    H2     A   7           H2         A   7   0.957  10.372 -31.140
   78    H5'    A   8           H5'        A   8  -5.852   7.483 -32.954
   79   H5''    A   8          H5''        A   8  -6.104   5.733 -32.907
   80    H4'    A   8           H4'        A   8  -4.591   6.229 -34.658
   81    H3'    A   8           H3'        A   8  -3.167   4.914 -32.343
   82    H2'    A   8           H2'        A   8  -1.201   4.946 -33.736
   83   HO2'    A   8          HO2'        A   8  -2.253   6.192 -35.929
   84    H1'    A   8           H1'        A   8  -1.640   7.569 -34.681
   85    H8     A   8           H8         A   8  -2.399   7.544 -31.032
   86    H61    A   8           H61        A   8   3.697   7.993 -30.029
   87    H62    A   8           H62        A   8   2.113   8.064 -29.291
   88    H2     A   8           H2         A   8   3.062   7.124 -34.383
   89    H5'    G   9           H5'        G   9  -2.151   2.997 -35.657
   90   H5''    G   9          H5''        G   9  -2.182   1.230 -35.532
   91    H4'    G   9           H4'        G   9  -0.066   1.851 -36.371
   92    H3'    G   9           H3'        G   9   0.106   0.976 -33.498
   93    H2'    G   9           H2'        G   9   2.479   1.294 -33.643
   94   HO2'    G   9          HO2'        G   9   2.481   2.071 -36.319
   95    H1'    G   9           H1'        G   9   2.314   3.710 -35.120
   96    H8     G   9           H8         G   9  -0.312   3.776 -32.491
   97    H1     G   9           H1         G   9   5.542   5.186 -30.261
   98    H21    G   9           H21        G   9   7.059   4.717 -31.776
   99    H22    G   9           H22        G   9   6.647   4.055 -33.341
  100    H5'    G  10           H5'        G  10   2.978  -1.000 -35.420
  101   H5''    G  10          H5''        G  10   2.967  -2.746 -35.111
  102    H4'    G  10           H4'        G  10   5.158  -1.983 -34.696
  103    H3'    G  10           H3'        G  10   3.675  -2.552 -32.138
  104    H2'    G  10           H2'        G  10   5.670  -1.973 -30.953
  105   HO2'    G  10          HO2'        G  10   7.231  -1.617 -33.246
  106    H1'    G  10           H1'        G  10   6.413   0.161 -32.721
  107    H8     G  10           H8         G  10   2.808   0.409 -31.847
  108    H1     G  10           H1         G  10   6.681   2.670 -27.251
  109    H21    G  10           H21        G  10   8.763   2.131 -27.683
  110    H22    G  10           H22        G  10   9.213   1.195 -29.094
  111    H5'    A  11           H5'        A  11   7.363  -4.548 -30.731
  112   H5''    A  11          H5''        A  11   6.954  -5.583 -32.113
  113    H4'    A  11           H4'        A  11   6.266  -7.331 -30.418
  114    H3'    A  11           H3'        A  11   6.504  -5.543 -28.424
  115    H2'    A  11           H2'        A  11   8.866  -5.097 -28.684
  116   HO2'    A  11          HO2'        A  11   9.019  -7.509 -27.186
  117    H1'    A  11           H1'        A  11   9.312  -8.097 -29.146
  118    H8     A  11           H8         A  11  10.196  -4.717 -30.845
  119    H61    A  11           H61        A  11  16.011  -6.849 -30.787
  120    H62    A  11           H62        A  11  14.974  -5.524 -31.264
  121    H2     A  11           H2         A  11  13.386  -9.907 -28.820
  122    H5'    A  12           H5'        A  12   4.206  -5.211 -26.281
  123   H5''    A  12          H5''        A  12   5.968  -5.368 -26.375
  124    H4'    A  12           H4'        A  12   4.175  -5.701 -23.997
  125    H3'    A  12           H3'        A  12   6.231  -3.664 -24.718
  126    H2'    A  12           H2'        A  12   6.948  -3.531 -22.449
  127   HO2'    A  12          HO2'        A  12   4.473  -4.665 -22.009
  128    H1'    A  12           H1'        A  12   7.212  -6.203 -22.047
  129    H8     A  12           H8         A  12   7.613  -4.731 -25.596
  130    H61    A  12           H61        A  12  13.710  -4.997 -24.557
  131    H62    A  12           H62        A  12  12.469  -4.584 -25.719
  132    H2     A  12           H2         A  12  11.606  -6.439 -20.869
  133    H5'    A  13           H5'        A  13   4.510  -2.325 -21.495
  134   H5''    A  13          H5''        A  13   4.018  -0.622 -21.525
  135    H4'    A  13           H4'        A  13   5.412  -0.955 -19.641
  136    H3'    A  13           H3'        A  13   6.838   0.576 -21.808
  137    H2'    A  13           H2'        A  13   8.730   0.724 -20.303
  138   HO2'    A  13          HO2'        A  13   6.825  -0.246 -18.444
  139    H1'    A  13           H1'        A  13   8.746  -2.031 -19.822
  140    H8     A  13           H8         A  13   7.421  -0.710 -23.190
  141    H61    A  13           H61        A  13  12.953  -2.384 -25.406
  142    H62    A  13           H62        A  13  11.378  -1.742 -25.814
  143    H2     A  13           H2         A  13  12.967  -3.062 -20.972
  144    H5'    A  14           H5'        A  14   7.468   2.659 -18.502
  145   H5''    A  14          H5''        A  14   7.224   4.411 -18.664
  146    H4'    A  14           H4'        A  14   9.428   4.092 -17.920
  147    H3'    A  14           H3'        A  14   9.302   4.837 -20.822
  148    H2'    A  14           H2'        A  14  11.706   4.729 -20.899
  149   HO2'    A  14          HO2'        A  14  11.812   5.553 -18.591
  150    H1'    A  14           H1'        A  14  11.911   2.306 -19.662
  151    H8     A  14           H8         A  14   8.882   3.197 -21.898
  152    H61    A  14           H61        A  14  11.955   0.231 -26.383
  153    H62    A  14           H62        A  14  10.489   1.093 -25.979
  154    H2     A  14           H2         A  14  14.469   0.136 -22.671
  155    H5'    C  15           H5'        C  15  11.837   6.791 -20.713
  156   H5''    C  15          H5''        C  15  11.739   8.420 -21.412
  157    H4'    C  15           H4'        C  15  13.058   6.960 -22.831
  158    H3'    C  15           H3'        C  15  10.426   7.822 -24.030
  159    H2'    C  15           H2'        C  15  11.142   6.679 -26.049
  160   HO2'    C  15          HO2'        C  15  13.529   5.821 -24.808
  161    H1'    C  15           H1'        C  15  11.891   4.361 -24.690
  162    H41    C  15           H41        C  15   5.741   3.693 -26.266
  163    H42    C  15           H42        C  15   5.268   4.503 -24.795
  164    H5     C  15           H5         C  15   6.867   5.501 -23.272
  165    H6     C  15           H6         C  15   9.237   5.912 -22.857
  166    H5'    C  16           H5'        C  16  13.018   8.388 -26.848
  167   H5''    C  16          H5''        C  16  13.059  10.027 -27.535
  168    H4'    C  16           H4'        C  16  12.829   8.475 -29.327
  169    H3'    C  16           H3'        C  16  10.289  10.002 -28.754
  170    H2'    C  16           H2'        C  16   9.327   8.872 -30.677
  171   HO2'    C  16          HO2'        C  16  11.860   7.648 -31.150
  172    H1'    C  16           H1'        C  16  10.390   6.338 -29.984
  173    H41    C  16           H41        C  16   4.470   6.416 -27.687
  174    H42    C  16           H42        C  16   4.909   7.582 -26.463
  175    H5     C  16           H5         C  16   7.126   8.540 -26.292
  176    H6     C  16           H6         C  16   9.363   8.575 -27.262
  177    H5'    U  17           H5'        U  17  10.719  10.430 -32.704
  178   H5''    U  17          H5''        U  17  10.974  12.124 -33.169
  179    H4'    U  17           H4'        U  17   9.320  11.263 -34.602
  180    H3'    U  17           H3'        U  17   8.152  13.061 -32.483
  181    H2'    U  17           H2'        U  17   6.038  12.784 -33.558
  182   HO2'    U  17          HO2'        U  17   5.869  12.287 -35.642
  183    H1'    U  17           H1'        U  17   6.439  10.094 -34.224
  184    H3     U  17           H3         U  17   2.767  10.596 -31.458
  185    H5     U  17           H5         U  17   6.099  10.169 -28.936
  186    H6     U  17           H6         U  17   7.503  10.384 -30.883
  187    H5'    A  18           H5'        A  18   6.639  14.253 -35.860
  188   H5''    A  18          H5''        A  18   6.702  15.995 -36.137
  189    H4'    A  18           H4'        A  18   4.473  15.291 -36.462
  190    H3'    A  18           H3'        A  18   4.833  16.842 -33.913
  191    H2'    A  18           H2'        A  18   2.476  16.654 -33.549
  192   HO2'    A  18          HO2'        A  18   1.320  15.456 -35.421
  193    H1'    A  18           H1'        A  18   2.274  13.982 -34.483
  194    H8     A  18           H8         A  18   5.164  13.816 -32.265
  195    H61    A  18           H61        A  18   1.293  13.802 -27.429
  196    H62    A  18           H62        A  18   2.938  13.510 -27.951
  197    H2     A  18           H2         A  18  -1.036  14.986 -31.072
  198    H5'    U  19           H5'        U  19   1.806  18.385 -36.030
  199   H5''    U  19          H5''        U  19   1.972  20.113 -36.357
  200    H4'    U  19           H4'        U  19  -0.243  19.743 -35.685
  201    H3'    U  19           H3'        U  19   1.365  21.069 -33.526
  202    H2'    U  19           H2'        U  19  -0.638  21.191 -32.228
  203   HO2'    U  19          HO2'        U  19  -2.587  21.176 -33.130
  204    H1'    U  19           H1'        U  19  -1.502  18.590 -32.832
  205    H3     U  19           H3         U  19  -0.285  18.703 -28.437
  206    H5     U  19           H5         U  19   3.296  18.206 -30.573
  207    H6     U  19           H6         U  19   2.050  18.586 -32.598
  208    H5'    G  20           H5'        G  20  -2.027  23.053 -34.351
  209   H5''    G  20          H5''        G  20  -1.843  24.796 -34.586
  210    H4'    G  20           H4'        G  20  -3.691  24.475 -33.179
  211    H3'    G  20           H3'        G  20  -1.307  25.460 -31.631
  212    H2'    G  20           H2'        G  20  -2.739  25.527 -29.705
  213   HO2'    G  20          HO2'        G  20  -5.055  24.786 -30.164
  214    H1'    G  20           H1'        G  20  -3.915  23.021 -30.192
  215    H8     G  20           H8         G  20  -0.317  22.923 -31.142
  216    H1     G  20           H1         G  20  -1.280  22.508 -24.806
  217    H21    G  20           H21        G  20  -3.382  22.930 -24.334
  218    H22    G  20           H22        G  20  -4.559  23.317 -25.568
  219    H5'    U  21           H5'        U  21  -4.422  27.868 -30.662
  220   H5''    U  21          H5''        U  21  -4.075  29.581 -30.947
  221    H4'    U  21           H4'        U  21  -5.017  29.419 -28.804
  222    H3'    U  21           H3'        U  21  -2.045  29.884 -28.639
  223    H2'    U  21           H2'        U  21  -2.310  30.006 -26.263
  224   HO2'    U  21          HO2'        U  21  -5.130  29.859 -26.663
  225    H1'    U  21           H1'        U  21  -4.162  27.895 -26.110
  226    H3     U  21           H3         U  21  -0.261  26.897 -23.898
  227    H5     U  21           H5         U  21   0.150  25.452 -27.820
  228    H6     U  21           H6         U  21  -1.838  26.681 -28.399
  229    H5'    C  22           H5'        C  22  -3.763  32.452 -26.251
  230   H5''    C  22          H5''        C  22  -3.090  34.086 -26.278
  231    H4'    C  22           H4'        C  22  -3.073  33.279 -24.033
  232    H3'    C  22           H3'        C  22  -0.302  33.412 -25.212
  233    H2'    C  22           H2'        C  22   0.494  32.756 -23.032
  234   HO2'    C  22          HO2'        C  22  -2.223  33.003 -22.172
  235    H1'    C  22           H1'        C  22  -1.394  30.692 -22.733
  236    H41    C  22           H41        C  22   3.820  28.021 -25.137
  237    H42    C  22           H42        C  22   3.262  28.385 -26.755
  238    H5     C  22           H5         C  22   1.293  29.721 -27.198
  239    H6     C  22           H6         C  22  -0.551  30.953 -26.182
  240    H5'    C  23           H5'        C  23  -0.118  35.217 -21.683
  241   H5''    C  23          H5''        C  23   0.596  36.840 -21.727
  242    H4'    C  23           H4'        C  23   1.706  35.619 -20.033
  243    H3'    C  23           H3'        C  23   3.422  35.925 -22.491
  244   HO3'    C  23          HO3'        C  23   2.923  37.271 -20.118
  245    H2'    C  23           H2'        C  23   5.175  34.857 -21.250
  246   HO2'    C  23          HO2'        C  23   4.762  35.890 -19.219
  247    H1'    C  23           H1'        C  23   3.517  32.843 -20.204
  248    H41    C  23           H41        C  23   6.279  30.444 -25.387
  249    H42    C  23           H42        C  23   4.999  31.106 -26.380
  250    H5     C  23           H5         C  23   3.261  32.547 -25.497
  251    H6     C  23           H6         C  23   2.418  33.658 -23.493
  Start of MODEL    3
    1    H5'    G   1           H5'        G   1  14.732  25.241 -21.314
    2   H5''    G   1          H5''        G   1  14.454  23.849 -20.253
    3    H4'    G   1           H4'        G   1  13.830  25.485 -18.851
    4    H3'    G   1           H3'        G   1  11.312  24.847 -20.357
    5    H2'    G   1           H2'        G   1  10.207  26.525 -19.058
    6   HO2'    G   1          HO2'        G   1  12.492  26.253 -17.449
    7    H1'    G   1           H1'        G   1  12.174  28.448 -19.434
    8    H8     G   1           H8         G   1  12.035  26.308 -22.474
    9    H1     G   1           H1         G   1   7.308  30.649 -22.225
   10    H21    G   1           H21        G   1   7.260  31.600 -20.247
   11    H22    G   1           H22        G   1   8.384  31.178 -18.976
   12   HO5'    G   1          HO5'        G   1  13.042  23.171 -21.626
   13    H5'    G   2           H5'        G   2  10.289  25.142 -16.541
   14   H5''    G   2          H5''        G   2   9.437  23.724 -15.904
   15    H4'    G   2           H4'        G   2   8.204  25.620 -15.265
   16    H3'    G   2           H3'        G   2   6.856  24.126 -17.500
   17    H2'    G   2           H2'        G   2   5.027  25.679 -17.304
   18   HO2'    G   2          HO2'        G   2   4.679  26.726 -15.483
   19    H1'    G   2           H1'        G   2   6.661  27.927 -17.266
   20    H8     G   2           H8         G   2   8.495  25.706 -19.535
   21    H1     G   2           H1         G   2   3.182  28.094 -22.237
   22    H21    G   2           H21        G   2   1.902  29.006 -20.706
   23    H22    G   2           H22        G   2   2.346  29.045 -19.014
   24    H5'    A   3           H5'        A   3   4.070  24.763 -14.675
   25   H5''    A   3          H5''        A   3   3.195  23.292 -14.215
   26    H4'    A   3           H4'        A   3   1.579  24.944 -14.642
   27    H3'    A   3           H3'        A   3   1.717  22.956 -16.899
   28    H2'    A   3           H2'        A   3  -0.155  24.130 -17.880
   29   HO2'    A   3          HO2'        A   3  -1.448  25.352 -16.693
   30    H1'    A   3           H1'        A   3   0.999  26.652 -17.535
   31    H8     A   3           H8         A   3   3.870  24.407 -18.198
   32    H61    A   3           H61        A   3   2.508  24.826 -24.225
   33    H62    A   3           H62        A   3   3.696  24.295 -23.056
   34    H2     A   3           H2         A   3  -0.908  26.571 -21.902
   35    H5'    C   4           H5'        C   4  -2.241  23.202 -16.064
   36   H5''    C   4          H5''        C   4  -2.911  21.589 -15.756
   37    H4'    C   4           H4'        C   4  -4.329  22.603 -17.310
   38    H3'    C   4           H3'        C   4  -2.555  20.582 -18.638
   39    H2'    C   4           H2'        C   4  -3.718  21.020 -20.680
   40   HO2'    C   4          HO2'        C   4  -5.641  21.978 -18.921
   41    H1'    C   4           H1'        C   4  -3.850  23.776 -20.373
   42    H41    C   4           H41        C   4   1.219  22.414 -24.049
   43    H42    C   4           H42        C   4   2.156  22.002 -22.631
   44    H5     C   4           H5         C   4   1.224  22.006 -20.390
   45    H6     C   4           H6         C   4  -0.796  22.376 -19.071
   46    H5'    A   5           H5'        A   5  -6.226  19.954 -19.700
   47   H5''    A   5          H5''        A   5  -6.751  18.272 -19.771
   48    H4'    A   5           H4'        A   5  -7.235  19.358 -21.846
   49    H3'    A   5           H3'        A   5  -5.049  17.296 -22.080
   50    H2'    A   5           H2'        A   5  -5.061  17.748 -24.451
   51   HO2'    A   5          HO2'        A   5  -7.582  18.706 -23.845
   52    H1'    A   5           H1'        A   5  -5.191  20.555 -24.125
   53    H8     A   5           H8         A   5  -2.786  19.493 -21.546
   54    H61    A   5           H61        A   5   1.504  19.092 -25.998
   55    H62    A   5           H62        A   5   1.228  19.107 -24.271
   56    H2     A   5           H2         A   5  -2.506  19.487 -27.961
   57    H5'    U   6           H5'        U   6  -7.897  16.692 -24.900
   58   H5''    U   6          H5''        U   6  -8.561  15.052 -24.841
   59    H4'    U   6           H4'        U   6  -8.207  15.542 -27.094
   60    H3'    U   6           H3'        U   6  -6.105  13.684 -26.033
   61    H2'    U   6           H2'        U   6  -5.236  13.544 -28.246
   62   HO2'    U   6          HO2'        U   6  -7.693  14.774 -28.937
   63    H1'    U   6           H1'        U   6  -5.368  16.244 -28.779
   64    H3     U   6           H3         U   6  -1.000  15.113 -28.314
   65    H5     U   6           H5         U   6  -2.394  15.814 -24.414
   66    H6     U   6           H6         U   6  -4.625  15.922 -25.316
   67    H5'    A   7           H5'        A   7  -7.655  12.213 -29.426
   68   H5''    A   7          H5''        A   7  -8.161  10.525 -29.298
   69    H4'    A   7           H4'        A   7  -6.964  10.726 -31.291
   70    H3'    A   7           H3'        A   7  -5.325   9.330 -29.200
   71    H2'    A   7           H2'        A   7  -3.650   8.993 -30.902
   72   HO2'    A   7          HO2'        A   7  -4.040   9.784 -33.047
   73    H1'    A   7           H1'        A   7  -3.599  11.615 -31.671
   74    H8     A   7           H8         A   7  -4.576  11.767 -28.094
   75    H61    A   7           H61        A   7   1.426  11.232 -26.658
   76    H62    A   7           H62        A   7  -0.171  11.583 -26.038
   77    H2     A   7           H2         A   7   0.957  10.362 -31.032
   78    H5'    A   8           H5'        A   8  -5.856   7.476 -32.890
   79   H5''    A   8          H5''        A   8  -6.110   5.728 -32.841
   80    H4'    A   8           H4'        A   8  -4.622   6.213 -34.612
   81    H3'    A   8           H3'        A   8  -3.161   4.916 -32.310
   82    H2'    A   8           H2'        A   8  -1.216   4.938 -33.738
   83   HO2'    A   8          HO2'        A   8  -2.750   6.054 -35.845
   84    H1'    A   8           H1'        A   8  -1.649   7.561 -34.660
   85    H8     A   8           H8         A   8  -2.422   7.581 -31.025
   86    H61    A   8           H61        A   8   3.670   7.983 -29.986
   87    H62    A   8           H62        A   8   2.082   8.085 -29.260
   88    H2     A   8           H2         A   8   3.058   7.033 -34.325
   89    H5'    G   9           H5'        G   9  -2.183   2.982 -35.619
   90   H5''    G   9          H5''        G   9  -2.194   1.214 -35.486
   91    H4'    G   9           H4'        G   9  -0.091   1.859 -36.343
   92    H3'    G   9           H3'        G   9   0.112   0.989 -33.471
   93    H2'    G   9           H2'        G   9   2.482   1.329 -33.635
   94   HO2'    G   9          HO2'        G   9   3.416   1.853 -35.711
   95    H1'    G   9           H1'        G   9   2.278   3.755 -35.080
   96    H8     G   9           H8         G   9  -0.361   3.772 -32.466
   97    H1     G   9           H1         G   9   5.467   5.222 -30.190
   98    H21    G   9           H21        G   9   6.997   4.782 -31.701
   99    H22    G   9           H22        G   9   6.602   4.116 -33.269
  100    H5'    G  10           H5'        G  10   3.007  -0.932 -35.396
  101   H5''    G  10          H5''        G  10   3.012  -2.680 -35.095
  102    H4'    G  10           H4'        G  10   5.194  -1.898 -34.673
  103    H3'    G  10           H3'        G  10   3.703  -2.488 -32.125
  104    H2'    G  10           H2'        G  10   5.686  -1.902 -30.926
  105   HO2'    G  10          HO2'        G  10   7.285  -1.487 -33.165
  106    H1'    G  10           H1'        G  10   6.424   0.242 -32.685
  107    H8     G  10           H8         G  10   2.818   0.498 -31.821
  108    H1     G  10           H1         G  10   6.686   2.735 -27.209
  109    H21    G  10           H21        G  10   8.768   2.184 -27.635
  110    H22    G  10           H22        G  10   9.216   1.239 -29.039
  111    H5'    A  11           H5'        A  11   7.394  -4.443 -30.765
  112   H5''    A  11          H5''        A  11   6.990  -5.483 -32.147
  113    H4'    A  11           H4'        A  11   6.372  -7.253 -30.442
  114    H3'    A  11           H3'        A  11   6.615  -5.469 -28.453
  115    H2'    A  11           H2'        A  11   8.955  -4.952 -28.770
  116   HO2'    A  11          HO2'        A  11   9.859  -7.051 -27.397
  117    H1'    A  11           H1'        A  11   9.482  -7.938 -29.247
  118    H8     A  11           H8         A  11  10.203  -4.532 -30.972
  119    H61    A  11           H61        A  11  16.065  -6.516 -31.182
  120    H62    A  11           H62        A  11  14.974  -5.219 -31.611
  121    H2     A  11           H2         A  11  13.612  -9.636 -29.094
  122    H5'    A  12           H5'        A  12   4.391  -5.138 -26.321
  123   H5''    A  12          H5''        A  12   6.156  -5.272 -26.419
  124    H4'    A  12           H4'        A  12   4.378  -5.593 -24.025
  125    H3'    A  12           H3'        A  12   6.385  -3.519 -24.785
  126    H2'    A  12           H2'        A  12   7.106  -3.334 -22.522
  127   HO2'    A  12          HO2'        A  12   5.028  -5.200 -21.894
  128    H1'    A  12           H1'        A  12   7.445  -5.998 -22.093
  129    H8     A  12           H8         A  12   7.787  -4.543 -25.663
  130    H61    A  12           H61        A  12  13.897  -4.900 -24.733
  131    H62    A  12           H62        A  12  12.642  -4.486 -25.879
  132    H2     A  12           H2         A  12  11.838  -6.243 -20.982
  133    H5'    A  13           H5'        A  13   4.592  -2.202 -21.574
  134   H5''    A  13          H5''        A  13   4.090  -0.503 -21.605
  135    H4'    A  13           H4'        A  13   5.448  -0.831 -19.701
  136    H3'    A  13           H3'        A  13   6.915   0.708 -21.833
  137    H2'    A  13           H2'        A  13   8.776   0.849 -20.291
  138   HO2'    A  13          HO2'        A  13   7.026  -0.487 -18.455
  139    H1'    A  13           H1'        A  13   8.781  -1.906 -19.817
  140    H8     A  13           H8         A  13   7.525  -0.581 -23.209
  141    H61    A  13           H61        A  13  13.101  -2.256 -25.312
  142    H62    A  13           H62        A  13  11.536  -1.610 -25.753
  143    H2     A  13           H2         A  13  13.015  -2.958 -20.884
  144    H5'    A  14           H5'        A  14   7.470   2.762 -18.505
  145   H5''    A  14          H5''        A  14   7.205   4.513 -18.647
  146    H4'    A  14           H4'        A  14   9.397   4.208 -17.854
  147    H3'    A  14           H3'        A  14   9.321   5.007 -20.743
  148    H2'    A  14           H2'        A  14  11.727   4.933 -20.776
  149   HO2'    A  14          HO2'        A  14  11.369   4.892 -17.986
  150    H1'    A  14           H1'        A  14  11.938   2.484 -19.577
  151    H8     A  14           H8         A  14   8.953   3.390 -21.864
  152    H61    A  14           H61        A  14  12.051   0.318 -26.259
  153    H62    A  14           H62        A  14  10.581   1.191 -25.885
  154    H2     A  14           H2         A  14  14.533   0.294 -22.527
  155    H5'    C  15           H5'        C  15  11.786   6.984 -20.621
  156   H5''    C  15          H5''        C  15  11.655   8.589 -21.365
  157    H4'    C  15           H4'        C  15  12.977   7.082 -22.747
  158    H3'    C  15           H3'        C  15  10.361   7.976 -23.948
  159    H2'    C  15           H2'        C  15  11.022   6.791 -25.952
  160   HO2'    C  15          HO2'        C  15  13.195   5.582 -25.617
  161    H1'    C  15           H1'        C  15  11.802   4.480 -24.579
  162    H41    C  15           H41        C  15   5.634   3.804 -26.113
  163    H42    C  15           H42        C  15   5.175   4.625 -24.639
  164    H5     C  15           H5         C  15   6.791   5.630 -23.138
  165    H6     C  15           H6         C  15   9.166   6.037 -22.748
  166    H5'    C  16           H5'        C  16  12.960   8.441 -26.766
  167   H5''    C  16          H5''        C  16  13.032  10.065 -27.481
  168    H4'    C  16           H4'        C  16  12.765   8.504 -29.252
  169    H3'    C  16           H3'        C  16  10.248  10.065 -28.679
  170    H2'    C  16           H2'        C  16   9.255   8.924 -30.578
  171   HO2'    C  16          HO2'        C  16  10.866   7.311 -31.622
  172    H1'    C  16           H1'        C  16  10.312   6.382 -29.879
  173    H41    C  16           H41        C  16   4.412   6.516 -27.512
  174    H42    C  16           H42        C  16   4.873   7.695 -26.305
  175    H5     C  16           H5         C  16   7.099   8.643 -26.176
  176    H6     C  16           H6         C  16   9.322   8.654 -27.177
  177    H5'    U  17           H5'        U  17  10.668  10.453 -32.631
  178   H5''    U  17          H5''        U  17  10.936  12.142 -33.105
  179    H4'    U  17           H4'        U  17   9.280  11.291 -34.537
  180    H3'    U  17           H3'        U  17   8.111  13.093 -32.422
  181    H2'    U  17           H2'        U  17   6.002  12.826 -33.519
  182   HO2'    U  17          HO2'        U  17   5.886  12.418 -35.610
  183    H1'    U  17           H1'        U  17   6.397  10.125 -34.163
  184    H3     U  17           H3         U  17   2.728  10.582 -31.394
  185    H5     U  17           H5         U  17   6.071  10.204 -28.879
  186    H6     U  17           H6         U  17   7.468  10.448 -30.826
  187    H5'    A  18           H5'        A  18   6.639  14.290 -35.801
  188   H5''    A  18          H5''        A  18   6.703  16.032 -36.075
  189    H4'    A  18           H4'        A  18   4.479  15.324 -36.421
  190    H3'    A  18           H3'        A  18   4.813  16.878 -33.870
  191    H2'    A  18           H2'        A  18   2.456  16.684 -33.525
  192   HO2'    A  18          HO2'        A  18   1.175  15.677 -35.284
  193    H1'    A  18           H1'        A  18   2.265  14.017 -34.472
  194    H8     A  18           H8         A  18   5.122  13.848 -32.208
  195    H61    A  18           H61        A  18   1.178  13.837 -27.433
  196    H62    A  18           H62        A  18   2.830  13.543 -27.929
  197    H2     A  18           H2         A  18  -1.097  15.007 -31.113
  198    H5'    U  19           H5'        U  19   1.807  18.407 -36.029
  199   H5''    U  19          H5''        U  19   1.970  20.135 -36.356
  200    H4'    U  19           H4'        U  19  -0.255  19.752 -35.718
  201    H3'    U  19           H3'        U  19   1.312  21.091 -33.532
  202    H2'    U  19           H2'        U  19  -0.723  21.214 -32.281
  203   HO2'    U  19          HO2'        U  19  -1.870  20.687 -34.801
  204    H1'    U  19           H1'        U  19  -1.549  18.603 -32.881
  205    H3     U  19           H3         U  19  -0.424  18.767 -28.466
  206    H5     U  19           H5         U  19   3.204  18.269 -30.522
  207    H6     U  19           H6         U  19   1.998  18.624 -32.576
  208    H5'    G  20           H5'        G  20  -2.083  23.055 -34.370
  209   H5''    G  20          H5''        G  20  -1.897  24.800 -34.587
  210    H4'    G  20           H4'        G  20  -3.746  24.477 -33.190
  211    H3'    G  20           H3'        G  20  -1.357  25.426 -31.635
  212    H2'    G  20           H2'        G  20  -2.775  25.489 -29.705
  213   HO2'    G  20          HO2'        G  20  -5.115  24.636 -30.379
  214    H1'    G  20           H1'        G  20  -3.981  23.010 -30.196
  215    H8     G  20           H8         G  20  -0.394  22.859 -31.176
  216    H1     G  20           H1         G  20  -1.304  22.447 -24.832
  217    H21    G  20           H21        G  20  -3.393  22.904 -24.340
  218    H22    G  20           H22        G  20  -4.576  23.314 -25.561
  219    H5'    U  21           H5'        U  21  -4.445  27.832 -30.598
  220   H5''    U  21          H5''        U  21  -4.082  29.544 -30.879
  221    H4'    U  21           H4'        U  21  -4.996  29.390 -28.727
  222    H3'    U  21           H3'        U  21  -2.015  29.801 -28.610
  223    H2'    U  21           H2'        U  21  -2.231  29.927 -26.231
  224   HO2'    U  21          HO2'        U  21  -5.060  29.831 -26.577
  225    H1'    U  21           H1'        U  21  -4.108  27.842 -26.040
  226    H3     U  21           H3         U  21  -0.146  26.766 -23.958
  227    H5     U  21           H5         U  21   0.074  25.296 -27.887
  228    H6     U  21           H6         U  21  -1.899  26.579 -28.395
  229    H5'    C  22           H5'        C  22  -3.638  32.399 -26.182
  230   H5''    C  22          H5''        C  22  -2.931  34.020 -26.229
  231    H4'    C  22           H4'        C  22  -2.878  33.221 -23.982
  232    H3'    C  22           H3'        C  22  -0.138  33.293 -25.240
  233    H2'    C  22           H2'        C  22   0.713  32.628 -23.085
  234   HO2'    C  22          HO2'        C  22  -0.769  32.424 -21.289
  235    H1'    C  22           H1'        C  22  -1.212  30.604 -22.712
  236    H41    C  22           H41        C  22   3.837  27.772 -25.278
  237    H42    C  22           H42        C  22   3.240  28.150 -26.878
  238    H5     C  22           H5         C  22   1.301  29.549 -27.261
  239    H6     C  22           H6         C  22  -0.470  30.838 -26.188
  240    H5'    C  23           H5'        C  23   0.188  35.129 -21.724
  241   H5''    C  23          H5''        C  23   0.929  36.740 -21.807
  242    H4'    C  23           H4'        C  23   2.084  35.512 -20.149
  243    H3'    C  23           H3'        C  23   3.693  35.777 -22.678
  244   HO3'    C  23          HO3'        C  23   3.000  37.503 -21.109
  245    H2'    C  23           H2'        C  23   5.481  34.673 -21.533
  246   HO2'    C  23          HO2'        C  23   5.667  35.070 -19.454
  247    H1'    C  23           H1'        C  23   3.835  32.705 -20.369
  248    H41    C  23           H41        C  23   6.278  30.157 -25.641
  249    H42    C  23           H42        C  23   4.972  30.841 -26.583
  250    H5     C  23           H5         C  23   3.316  32.342 -25.641
  251    H6     C  23           H6         C  23   2.602  33.503 -23.616
  Start of MODEL    4
    1    H5'    G   1           H5'        G   1  14.727  25.471 -21.093
    2   H5''    G   1          H5''        G   1  14.580  24.087 -20.000
    3    H4'    G   1           H4'        G   1  13.852  25.618 -18.568
    4    H3'    G   1           H3'        G   1  11.354  25.058 -20.142
    5    H2'    G   1           H2'        G   1  10.252  26.706 -18.789
    6   HO2'    G   1          HO2'        G   1  12.017  26.061 -16.975
    7    H1'    G   1           H1'        G   1  12.206  28.629 -19.142
    8    H8     G   1           H8         G   1  12.172  26.477 -22.182
    9    H1     G   1           H1         G   1   7.383  30.755 -22.082
   10    H21    G   1           H21        G   1   7.271  31.719 -20.110
   11    H22    G   1           H22        G   1   8.367  31.315 -18.810
   12   HO5'    G   1          HO5'        G   1  13.557  24.107 -22.261
   13    H5'    G   2           H5'        G   2  10.224  25.274 -16.363
   14   H5''    G   2          H5''        G   2   9.371  23.834 -15.782
   15    H4'    G   2           H4'        G   2   8.104  25.707 -15.128
   16    H3'    G   2           H3'        G   2   6.816  24.251 -17.428
   17    H2'    G   2           H2'        G   2   4.962  25.783 -17.205
   18   HO2'    G   2          HO2'        G   2   6.340  27.068 -15.071
   19    H1'    G   2           H1'        G   2   6.574  28.030 -17.163
   20    H8     G   2           H8         G   2   8.495  25.796 -19.355
   21    H1     G   2           H1         G   2   3.252  28.120 -22.244
   22    H21    G   2           H21        G   2   1.923  29.047 -20.763
   23    H22    G   2           H22        G   2   2.312  29.100 -19.058
   24    H5'    A   3           H5'        A   3   3.980  24.806 -14.628
   25   H5''    A   3          H5''        A   3   3.122  23.315 -14.205
   26    H4'    A   3           H4'        A   3   1.491  24.959 -14.602
   27    H3'    A   3           H3'        A   3   1.647  23.014 -16.898
   28    H2'    A   3           H2'        A   3  -0.247  24.191 -17.847
   29   HO2'    A   3          HO2'        A   3  -0.254  26.059 -15.731
   30    H1'    A   3           H1'        A   3   0.913  26.701 -17.503
   31    H8     A   3           H8         A   3   3.798  24.456 -18.122
   32    H61    A   3           H61        A   3   2.534  24.886 -24.169
   33    H62    A   3           H62        A   3   3.705  24.358 -22.982
   34    H2     A   3           H2         A   3  -0.927  26.612 -21.898
   35    H5'    C   4           H5'        C   4  -2.322  23.188 -16.046
   36   H5''    C   4          H5''        C   4  -2.967  21.559 -15.767
   37    H4'    C   4           H4'        C   4  -4.403  22.589 -17.299
   38    H3'    C   4           H3'        C   4  -2.618  20.607 -18.676
   39    H2'    C   4           H2'        C   4  -3.815  21.074 -20.695
   40   HO2'    C   4          HO2'        C   4  -5.531  22.963 -19.609
   41    H1'    C   4           H1'        C   4  -3.941  23.813 -20.347
   42    H41    C   4           H41        C   4   1.096  22.430 -24.068
   43    H42    C   4           H42        C   4   2.046  22.029 -22.655
   44    H5     C   4           H5         C   4   1.137  22.051 -20.406
   45    H6     C   4           H6         C   4  -0.870  22.432 -19.071
   46    H5'    A   5           H5'        A   5  -6.280  19.982 -19.768
   47   H5''    A   5          H5''        A   5  -6.802  18.301 -19.858
   48    H4'    A   5           H4'        A   5  -7.281  19.397 -21.928
   49    H3'    A   5           H3'        A   5  -5.073  17.356 -22.150
   50    H2'    A   5           H2'        A   5  -5.083  17.805 -24.522
   51   HO2'    A   5          HO2'        A   5  -7.184  19.677 -24.228
   52    H1'    A   5           H1'        A   5  -5.218  20.605 -24.195
   53    H8     A   5           H8         A   5  -2.833  19.559 -21.596
   54    H61    A   5           H61        A   5   1.483  19.120 -26.017
   55    H62    A   5           H62        A   5   1.201  19.166 -24.292
   56    H2     A   5           H2         A   5  -2.511  19.504 -28.010
   57    H5'    U   6           H5'        U   6  -7.913  16.697 -24.959
   58   H5''    U   6          H5''        U   6  -8.542  15.044 -24.886
   59    H4'    U   6           H4'        U   6  -8.220  15.534 -27.142
   60    H3'    U   6           H3'        U   6  -6.072  13.720 -26.096
   61    H2'    U   6           H2'        U   6  -5.230  13.588 -28.320
   62   HO2'    U   6          HO2'        U   6  -7.503  15.109 -29.125
   63    H1'    U   6           H1'        U   6  -5.384  16.282 -28.845
   64    H3     U   6           H3         U   6  -1.010  15.149 -28.355
   65    H5     U   6           H5         U   6  -2.424  15.858 -24.463
   66    H6     U   6           H6         U   6  -4.649  15.974 -25.379
   67    H5'    A   7           H5'        A   7  -7.670  12.240 -29.481
   68   H5''    A   7          H5''        A   7  -8.169  10.550 -29.343
   69    H4'    A   7           H4'        A   7  -7.021  10.754 -31.362
   70    H3'    A   7           H3'        A   7  -5.343   9.367 -29.298
   71    H2'    A   7           H2'        A   7  -3.703   9.012 -31.047
   72   HO2'    A   7          HO2'        A   7  -4.122   9.558 -33.168
   73    H1'    A   7           H1'        A   7  -3.629  11.642 -31.770
   74    H8     A   7           H8         A   7  -4.634  11.784 -28.203
   75    H61    A   7           H61        A   7   1.355  11.237 -26.716
   76    H62    A   7           H62        A   7  -0.247  11.589 -26.109
   77    H2     A   7           H2         A   7   0.922  10.373 -31.096
   78    H5'    A   8           H5'        A   8  -5.930   7.422 -32.883
   79   H5''    A   8          H5''        A   8  -6.172   5.674 -32.792
   80    H4'    A   8           H4'        A   8  -4.673   6.144 -34.563
   81    H3'    A   8           H3'        A   8  -3.226   4.869 -32.237
   82    H2'    A   8           H2'        A   8  -1.282   4.880 -33.669
   83   HO2'    A   8          HO2'        A   8  -1.609   5.753 -35.889
   84    H1'    A   8           H1'        A   8  -1.727   7.490 -34.621
   85    H8     A   8           H8         A   8  -2.455   7.564 -30.977
   86    H61    A   8           H61        A   8   3.653   7.979 -30.036
   87    H62    A   8           H62        A   8   2.075   8.098 -29.290
   88    H2     A   8           H2         A   8   2.974   6.953 -34.349
   89    H5'    G   9           H5'        G   9  -2.244   2.921 -35.542
   90   H5''    G   9          H5''        G   9  -2.249   1.154 -35.399
   91    H4'    G   9           H4'        G   9  -0.155   1.797 -36.279
   92    H3'    G   9           H3'        G   9   0.080   0.951 -33.401
   93    H2'    G   9           H2'        G   9   2.451   1.285 -33.604
   94   HO2'    G   9          HO2'        G   9   2.300   2.036 -36.304
   95    H1'    G   9           H1'        G   9   2.224   3.708 -35.048
   96    H8     G   9           H8         G   9  -0.394   3.744 -32.418
   97    H1     G   9           H1         G   9   5.451   5.206 -30.192
   98    H21    G   9           H21        G   9   6.972   4.733 -31.700
   99    H22    G   9           H22        G   9   6.566   4.057 -33.262
  100    H5'    G  10           H5'        G  10   2.960  -0.982 -35.354
  101   H5''    G  10          H5''        G  10   2.957  -2.729 -35.046
  102    H4'    G  10           H4'        G  10   5.152  -1.968 -34.660
  103    H3'    G  10           H3'        G  10   3.692  -2.522 -32.087
  104    H2'    G  10           H2'        G  10   5.703  -1.956 -30.922
  105   HO2'    G  10          HO2'        G  10   7.543  -2.526 -31.804
  106    H1'    G  10           H1'        G  10   6.433   0.178 -32.693
  107    H8     G  10           H8         G  10   2.837   0.452 -31.793
  108    H1     G  10           H1         G  10   6.753   2.682 -27.220
  109    H21    G  10           H21        G  10   8.830   2.126 -27.665
  110    H22    G  10           H22        G  10   9.262   1.181 -29.075
  111    H5'    A  11           H5'        A  11   7.363  -4.497 -30.717
  112   H5''    A  11          H5''        A  11   6.950  -5.526 -32.104
  113    H4'    A  11           H4'        A  11   6.305  -7.292 -30.404
  114    H3'    A  11           H3'        A  11   6.580  -5.521 -28.408
  115    H2'    A  11           H2'        A  11   8.925  -5.031 -28.733
  116   HO2'    A  11          HO2'        A  11   9.498  -7.371 -27.346
  117    H1'    A  11           H1'        A  11   9.421  -8.020 -29.224
  118    H8     A  11           H8         A  11  10.153  -4.607 -30.933
  119    H61    A  11           H61        A  11  16.002  -6.628 -31.194
  120    H62    A  11           H62        A  11  14.916  -5.321 -31.607
  121    H2     A  11           H2         A  11  13.540  -9.750 -29.120
  122    H5'    A  12           H5'        A  12   4.364  -5.200 -26.270
  123   H5''    A  12          H5''        A  12   6.124  -5.363 -26.371
  124    H4'    A  12           H4'        A  12   4.349  -5.668 -23.973
  125    H3'    A  12           H3'        A  12   6.370  -3.614 -24.739
  126    H2'    A  12           H2'        A  12   7.113  -3.441 -22.485
  127   HO2'    A  12          HO2'        A  12   4.650  -4.518 -21.983
  128    H1'    A  12           H1'        A  12   7.419  -6.107 -22.047
  129    H8     A  12           H8         A  12   7.749  -4.675 -25.621
  130    H61    A  12           H61        A  12  13.866  -5.006 -24.726
  131    H62    A  12           H62        A  12  12.603  -4.595 -25.864
  132    H2     A  12           H2         A  12  11.835  -6.349 -20.961
  133    H5'    A  13           H5'        A  13   4.594  -2.249 -21.521
  134   H5''    A  13          H5''        A  13   4.104  -0.546 -21.572
  135    H4'    A  13           H4'        A  13   5.480  -0.861 -19.672
  136    H3'    A  13           H3'        A  13   6.940   0.642 -21.833
  137    H2'    A  13           H2'        A  13   8.817   0.785 -20.311
  138   HO2'    A  13          HO2'        A  13   7.049  -0.483 -18.446
  139    H1'    A  13           H1'        A  13   8.805  -1.966 -19.810
  140    H8     A  13           H8         A  13   7.524  -0.654 -23.198
  141    H61    A  13           H61        A  13  13.062  -2.388 -25.351
  142    H62    A  13           H62        A  13  11.498  -1.731 -25.778
  143    H2     A  13           H2         A  13  13.021  -3.056 -20.916
  144    H5'    A  14           H5'        A  14   7.572   2.766 -18.537
  145   H5''    A  14          H5''        A  14   7.353   4.519 -18.725
  146    H4'    A  14           H4'        A  14   9.542   4.173 -17.948
  147    H3'    A  14           H3'        A  14   9.458   4.914 -20.850
  148    H2'    A  14           H2'        A  14  11.857   4.761 -20.920
  149   HO2'    A  14          HO2'        A  14  11.689   4.346 -18.095
  150    H1'    A  14           H1'        A  14  12.024   2.348 -19.659
  151    H8     A  14           H8         A  14   9.025   3.249 -21.932
  152    H61    A  14           H61        A  14  12.120   0.206 -26.351
  153    H62    A  14           H62        A  14  10.655   1.084 -25.972
  154    H2     A  14           H2         A  14  14.592   0.129 -22.611
  155    H5'    C  15           H5'        C  15  11.965   6.827 -20.739
  156   H5''    C  15          H5''        C  15  11.901   8.463 -21.424
  157    H4'    C  15           H4'        C  15  13.174   6.995 -22.870
  158    H3'    C  15           H3'        C  15  10.543   7.903 -24.031
  159    H2'    C  15           H2'        C  15  11.190   6.748 -26.059
  160   HO2'    C  15          HO2'        C  15  13.601   5.858 -24.898
  161    H1'    C  15           H1'        C  15  11.971   4.419 -24.722
  162    H41    C  15           H41        C  15   5.789   3.781 -26.216
  163    H42    C  15           H42        C  15   5.342   4.599 -24.738
  164    H5     C  15           H5         C  15   6.972   5.584 -23.237
  165    H6     C  15           H6         C  15   9.350   5.975 -22.855
  166    H5'    C  16           H5'        C  16  13.081   8.445 -26.911
  167   H5''    C  16          H5''        C  16  13.115  10.087 -27.583
  168    H4'    C  16           H4'        C  16  12.838   8.576 -29.387
  169    H3'    C  16           H3'        C  16  10.287  10.057 -28.741
  170    H2'    C  16           H2'        C  16   9.318   8.941 -30.677
  171   HO2'    C  16          HO2'        C  16  11.913   7.833 -31.152
  172    H1'    C  16           H1'        C  16  10.381   6.410 -30.002
  173    H41    C  16           H41        C  16   4.525   6.605 -27.519
  174    H42    C  16           H42        C  16   5.033   7.756 -26.303
  175    H5     C  16           H5         C  16   7.276   8.662 -26.203
  176    H6     C  16           H6         C  16   9.480   8.646 -27.244
  177    H5'    U  17           H5'        U  17  10.645  10.516 -32.689
  178   H5''    U  17          H5''        U  17  10.885  12.213 -33.147
  179    H4'    U  17           H4'        U  17   9.242  11.337 -34.589
  180    H3'    U  17           H3'        U  17   8.051  13.120 -32.470
  181    H2'    U  17           H2'        U  17   5.945  12.826 -33.564
  182   HO2'    U  17          HO2'        U  17   7.583  11.936 -35.689
  183    H1'    U  17           H1'        U  17   6.377  10.133 -34.218
  184    H3     U  17           H3         U  17   2.693  10.568 -31.460
  185    H5     U  17           H5         U  17   6.029  10.222 -28.931
  186    H6     U  17           H6         U  17   7.431  10.464 -30.875
  187    H5'    A  18           H5'        A  18   6.578  14.303 -35.866
  188   H5''    A  18          H5''        A  18   6.638  16.045 -36.145
  189    H4'    A  18           H4'        A  18   4.416  15.336 -36.497
  190    H3'    A  18           H3'        A  18   4.752  16.883 -33.942
  191    H2'    A  18           H2'        A  18   2.391  16.697 -33.606
  192   HO2'    A  18          HO2'        A  18   2.440  16.272 -36.359
  193    H1'    A  18           H1'        A  18   2.200  14.028 -34.544
  194    H8     A  18           H8         A  18   5.054  13.844 -32.283
  195    H61    A  18           H61        A  18   1.109  13.840 -27.509
  196    H62    A  18           H62        A  18   2.759  13.532 -28.006
  197    H2     A  18           H2         A  18  -1.156  15.046 -31.184
  198    H5'    U  19           H5'        U  19   1.766  18.416 -36.093
  199   H5''    U  19          H5''        U  19   1.923  20.148 -36.405
  200    H4'    U  19           H4'        U  19  -0.300  19.752 -35.759
  201    H3'    U  19           H3'        U  19   1.285  21.071 -33.573
  202    H2'    U  19           H2'        U  19  -0.756  21.198 -32.321
  203   HO2'    U  19          HO2'        U  19  -1.913  20.595 -34.834
  204    H1'    U  19           H1'        U  19  -1.566  18.582 -32.912
  205    H3     U  19           H3         U  19  -0.424  18.760 -28.507
  206    H5     U  19           H5         U  19   3.200  18.275 -30.576
  207    H6     U  19           H6         U  19   1.985  18.624 -32.626
  208    H5'    G  20           H5'        G  20  -2.066  23.047 -34.356
  209   H5''    G  20          H5''        G  20  -1.882  24.792 -34.572
  210    H4'    G  20           H4'        G  20  -3.706  24.461 -33.140
  211    H3'    G  20           H3'        G  20  -1.287  25.407 -31.623
  212    H2'    G  20           H2'        G  20  -2.683  25.466 -29.675
  213   HO2'    G  20          HO2'        G  20  -4.854  24.933 -31.457
  214    H1'    G  20           H1'        G  20  -3.897  22.985 -30.166
  215    H8     G  20           H8         G  20  -0.317  22.846 -31.168
  216    H1     G  20           H1         G  20  -1.186  22.406 -24.819
  217    H21    G  20           H21        G  20  -3.274  22.849 -24.312
  218    H22    G  20           H22        G  20  -4.465  23.264 -25.524
  219    H5'    U  21           H5'        U  21  -4.377  27.809 -30.570
  220   H5''    U  21          H5''        U  21  -4.015  29.520 -30.853
  221    H4'    U  21           H4'        U  21  -4.935  29.371 -28.702
  222    H3'    U  21           H3'        U  21  -1.953  29.773 -28.574
  223    H2'    U  21           H2'        U  21  -2.191  29.916 -26.194
  224   HO2'    U  21          HO2'        U  21  -4.878  30.358 -26.883
  225    H1'    U  21           H1'        U  21  -4.041  27.818 -26.005
  226    H3     U  21           H3         U  21  -0.058  26.775 -23.944
  227    H5     U  21           H5         U  21   0.149  25.299 -27.871
  228    H6     U  21           H6         U  21  -1.836  26.569 -28.371
  229    H5'    C  22           H5'        C  22  -3.584  32.358 -26.166
  230   H5''    C  22          H5''        C  22  -2.895  33.985 -26.222
  231    H4'    C  22           H4'        C  22  -2.833  33.218 -23.970
  232    H3'    C  22           H3'        C  22  -0.097  33.259 -25.231
  233    H2'    C  22           H2'        C  22   0.744  32.627 -23.056
  234   HO2'    C  22          HO2'        C  22  -1.724  33.605 -22.254
  235    H1'    C  22           H1'        C  22  -1.173  30.600 -22.676
  236    H41    C  22           H41        C  22   3.917  27.801 -25.176
  237    H42    C  22           H42        C  22   3.327  28.156 -26.785
  238    H5     C  22           H5         C  22   1.373  29.525 -27.199
  239    H6     C  22           H6         C  22  -0.422  30.805 -26.153
  240    H5'    C  23           H5'        C  23   0.255  35.170 -21.776
  241   H5''    C  23          H5''        C  23   0.990  36.780 -21.901
  242    H4'    C  23           H4'        C  23   2.148  35.589 -20.214
  243    H3'    C  23           H3'        C  23   3.772  35.801 -22.748
  244   HO3'    C  23          HO3'        C  23   3.227  37.662 -21.577
  245    H2'    C  23           H2'        C  23   5.555  34.739 -21.541
  246   HO2'    C  23          HO2'        C  23   4.013  34.595 -19.179
  247    H1'    C  23           H1'        C  23   3.906  32.772 -20.393
  248    H41    C  23           H41        C  23   6.457  30.241 -25.612
  249    H42    C  23           H42        C  23   5.166  30.915 -26.584
  250    H5     C  23           H5         C  23   3.481  32.407 -25.676
  251    H6     C  23           H6         C  23   2.714  33.563 -23.668
  Start of MODEL    5
    1    H5'    G   1           H5'        G   1  14.566  25.138 -21.601
    2   H5''    G   1          H5''        G   1  14.462  23.809 -20.435
    3    H4'    G   1           H4'        G   1  13.789  25.411 -19.054
    4    H3'    G   1           H3'        G   1  11.237  24.779 -20.510
    5    H2'    G   1           H2'        G   1  10.180  26.485 -19.210
    6   HO2'    G   1          HO2'        G   1  11.248  27.515 -17.499
    7    H1'    G   1           H1'        G   1  12.163  28.378 -19.647
    8    H8     G   1           H8         G   1  11.916  26.207 -22.661
    9    H1     G   1           H1         G   1   7.254  30.613 -22.329
   10    H21    G   1           H21        G   1   7.277  31.591 -20.361
   11    H22    G   1           H22        G   1   8.427  31.164 -19.115
   12   HO5'    G   1          HO5'        G   1  13.082  24.190 -22.715
   13    H5'    G   2           H5'        G   2  10.289  25.133 -16.679
   14   H5''    G   2          H5''        G   2   9.442  23.725 -16.015
   15    H4'    G   2           H4'        G   2   8.225  25.623 -15.368
   16    H3'    G   2           H3'        G   2   6.839  24.128 -17.580
   17    H2'    G   2           H2'        G   2   5.018  25.688 -17.350
   18   HO2'    G   2          HO2'        G   2   5.885  25.889 -14.870
   19    H1'    G   2           H1'        G   2   6.655  27.929 -17.338
   20    H8     G   2           H8         G   2   8.449  25.702 -19.637
   21    H1     G   2           H1         G   2   3.116  28.118 -22.275
   22    H21    G   2           H21        G   2   1.861  29.042 -20.727
   23    H22    G   2           H22        G   2   2.324  29.071 -19.040
   24    H5'    A   3           H5'        A   3   4.096  24.773 -14.729
   25   H5''    A   3          H5''        A   3   3.228  23.302 -14.256
   26    H4'    A   3           H4'        A   3   1.607  24.947 -14.677
   27    H3'    A   3           H3'        A   3   1.737  22.953 -16.930
   28    H2'    A   3           H2'        A   3  -0.144  24.119 -17.902
   29   HO2'    A   3          HO2'        A   3  -0.278  26.151 -16.041
   30    H1'    A   3           H1'        A   3   1.004  26.645 -17.569
   31    H8     A   3           H8         A   3   3.873  24.395 -18.252
   32    H61    A   3           H61        A   3   2.478  24.832 -24.269
   33    H62    A   3           H62        A   3   3.673  24.297 -23.108
   34    H2     A   3           H2         A   3  -0.922  26.577 -21.922
   35    H5'    C   4           H5'        C   4  -2.216  23.164 -16.056
   36   H5''    C   4          H5''        C   4  -2.870  21.543 -15.758
   37    H4'    C   4           H4'        C   4  -4.304  22.562 -17.293
   38    H3'    C   4           H3'        C   4  -2.534  20.552 -18.645
   39    H2'    C   4           H2'        C   4  -3.716  21.000 -20.674
   40   HO2'    C   4          HO2'        C   4  -5.495  22.568 -19.077
   41    H1'    C   4           H1'        C   4  -3.844  23.752 -20.354
   42    H41    C   4           H41        C   4   1.206  22.422 -24.064
   43    H42    C   4           H42        C   4   2.157  22.025 -22.651
   44    H5     C   4           H5         C   4   1.239  22.019 -20.404
   45    H6     C   4           H6         C   4  -0.776  22.370 -19.072
   46    H5'    A   5           H5'        A   5  -6.212  19.929 -19.677
   47   H5''    A   5          H5''        A   5  -6.737  18.248 -19.758
   48    H4'    A   5           H4'        A   5  -7.220  19.350 -21.825
   49    H3'    A   5           H3'        A   5  -5.037  17.286 -22.059
   50    H2'    A   5           H2'        A   5  -5.059  17.736 -24.432
   51   HO2'    A   5          HO2'        A   5  -7.483  19.053 -23.775
   52    H1'    A   5           H1'        A   5  -5.176  20.545 -24.097
   53    H8     A   5           H8         A   5  -2.764  19.470 -21.530
   54    H61    A   5           H61        A   5   1.505  19.072 -26.003
   55    H62    A   5           H62        A   5   1.237  19.084 -24.274
   56    H2     A   5           H2         A   5  -2.513  19.480 -27.947
   57    H5'    U   6           H5'        U   6  -7.879  16.682 -24.873
   58   H5''    U   6          H5''        U   6  -8.531  15.037 -24.823
   59    H4'    U   6           H4'        U   6  -8.176  15.539 -27.073
   60    H3'    U   6           H3'        U   6  -6.064  13.687 -26.020
   61    H2'    U   6           H2'        U   6  -5.194  13.566 -28.235
   62   HO2'    U   6          HO2'        U   6  -6.321  14.194 -30.001
   63    H1'    U   6           H1'        U   6  -5.337  16.268 -28.748
   64    H3     U   6           H3         U   6  -0.967  15.148 -28.276
   65    H5     U   6           H5         U   6  -2.377  15.812 -24.375
   66    H6     U   6           H6         U   6  -4.605  15.923 -25.283
   67    H5'    A   7           H5'        A   7  -7.620  12.234 -29.416
   68   H5''    A   7          H5''        A   7  -8.114  10.541 -29.305
   69    H4'    A   7           H4'        A   7  -6.927  10.772 -31.299
   70    H3'    A   7           H3'        A   7  -5.282   9.359 -29.226
   71    H2'    A   7           H2'        A   7  -3.609   9.041 -30.932
   72   HO2'    A   7          HO2'        A   7  -4.231  10.278 -33.029
   73    H1'    A   7           H1'        A   7  -3.559  11.669 -31.674
   74    H8     A   7           H8         A   7  -4.536  11.793 -28.097
   75    H61    A   7           H61        A   7   1.464  11.241 -26.665
   76    H62    A   7           H62        A   7  -0.133  11.587 -26.041
   77    H2     A   7           H2         A   7   0.996  10.403 -31.045
   78    H5'    A   8           H5'        A   8  -5.802   7.553 -32.938
   79   H5''    A   8          H5''        A   8  -6.066   5.806 -32.903
   80    H4'    A   8           H4'        A   8  -4.576   6.289 -34.668
   81    H3'    A   8           H3'        A   8  -3.123   4.982 -32.370
   82    H2'    A   8           H2'        A   8  -1.176   5.000 -33.793
   83   HO2'    A   8          HO2'        A   8  -2.233   6.265 -35.966
   84    H1'    A   8           H1'        A   8  -1.592   7.628 -34.707
   85    H8     A   8           H8         A   8  -2.396   7.645 -31.081
   86    H61    A   8           H61        A   8   3.689   8.023 -29.983
   87    H62    A   8           H62        A   8   2.092   8.134 -29.274
   88    H2     A   8           H2         A   8   3.113   7.076 -34.329
   89    H5'    G   9           H5'        G   9  -2.127   3.061 -35.675
   90   H5''    G   9          H5''        G   9  -2.155   1.293 -35.547
   91    H4'    G   9           H4'        G   9  -0.038   1.915 -36.382
   92    H3'    G   9           H3'        G   9   0.128   1.056 -33.504
   93    H2'    G   9           H2'        G   9   2.503   1.371 -33.647
   94   HO2'    G   9          HO2'        G   9   2.637   2.209 -36.263
   95    H1'    G   9           H1'        G   9   2.337   3.791 -35.108
   96    H8     G   9           H8         G   9  -0.324   3.842 -32.517
   97    H1     G   9           H1         G   9   5.494   5.268 -30.201
   98    H21    G   9           H21        G   9   7.034   4.801 -31.692
   99    H22    G   9           H22        G   9   6.647   4.137 -33.263
  100    H5'    G  10           H5'        G  10   3.020  -0.905 -35.393
  101   H5''    G  10          H5''        G  10   3.003  -2.655 -35.095
  102    H4'    G  10           H4'        G  10   5.192  -1.897 -34.657
  103    H3'    G  10           H3'        G  10   3.683  -2.485 -32.120
  104    H2'    G  10           H2'        G  10   5.665  -1.922 -30.908
  105   HO2'    G  10          HO2'        G  10   7.399  -2.757 -31.840
  106    H1'    G  10           H1'        G  10   6.439   0.222 -32.654
  107    H8     G  10           H8         G  10   2.830   0.495 -31.803
  108    H1     G  10           H1         G  10   6.685   2.701 -27.166
  109    H21    G  10           H21        G  10   8.767   2.146 -27.585
  110    H22    G  10           H22        G  10   9.220   1.213 -28.997
  111    H5'    A  11           H5'        A  11   7.358  -4.502 -30.744
  112   H5''    A  11          H5''        A  11   6.946  -5.535 -32.129
  113    H4'    A  11           H4'        A  11   6.253  -7.276 -30.413
  114    H3'    A  11           H3'        A  11   6.561  -5.487 -28.438
  115    H2'    A  11           H2'        A  11   8.918  -5.054 -28.766
  116   HO2'    A  11          HO2'        A  11   9.414  -7.392 -27.338
  117    H1'    A  11           H1'        A  11   9.336  -8.062 -29.216
  118    H8     A  11           H8         A  11  10.182  -4.689 -30.950
  119    H61    A  11           H61        A  11  15.971  -6.879 -31.131
  120    H62    A  11           H62        A  11  14.929  -5.543 -31.566
  121    H2     A  11           H2         A  11  13.398  -9.914 -29.065
  122    H5'    A  12           H5'        A  12   4.297  -5.118 -26.282
  123   H5''    A  12          H5''        A  12   6.056  -5.277 -26.422
  124    H4'    A  12           H4'        A  12   4.338  -5.600 -23.986
  125    H3'    A  12           H3'        A  12   6.331  -3.531 -24.794
  126    H2'    A  12           H2'        A  12   7.100  -3.347 -22.546
  127   HO2'    A  12          HO2'        A  12   4.689  -4.650 -22.034
  128    H1'    A  12           H1'        A  12   7.437  -6.012 -22.125
  129    H8     A  12           H8         A  12   7.718  -4.560 -25.697
  130    H61    A  12           H61        A  12  13.844  -4.965 -24.898
  131    H62    A  12           H62        A  12  12.567  -4.548 -26.019
  132    H2     A  12           H2         A  12  11.856  -6.269 -21.096
  133    H5'    A  13           H5'        A  13   4.550  -2.198 -21.544
  134   H5''    A  13          H5''        A  13   4.077  -0.489 -21.572
  135    H4'    A  13           H4'        A  13   5.443  -0.842 -19.679
  136    H3'    A  13           H3'        A  13   6.903   0.689 -21.818
  137    H2'    A  13           H2'        A  13   8.795   0.795 -20.328
  138   HO2'    A  13          HO2'        A  13   8.621   0.383 -18.211
  139    H1'    A  13           H1'        A  13   8.769  -1.954 -19.833
  140    H8     A  13           H8         A  13   7.478  -0.630 -23.214
  141    H61    A  13           H61        A  13  13.025  -2.324 -25.378
  142    H62    A  13           H62        A  13  11.460  -1.663 -25.798
  143    H2     A  13           H2         A  13  12.983  -3.033 -20.949
  144    H5'    A  14           H5'        A  14   7.514   2.734 -18.462
  145   H5''    A  14          H5''        A  14   7.264   4.487 -18.597
  146    H4'    A  14           H4'        A  14   9.463   4.163 -17.833
  147    H3'    A  14           H3'        A  14   9.351   4.968 -20.718
  148    H2'    A  14           H2'        A  14  11.754   4.876 -20.791
  149   HO2'    A  14          HO2'        A  14  11.465   4.719 -17.981
  150    H1'    A  14           H1'        A  14  11.968   2.425 -19.609
  151    H8     A  14           H8         A  14   8.942   3.354 -21.832
  152    H61    A  14           H61        A  14  11.920   0.250 -26.287
  153    H62    A  14           H62        A  14  10.468   1.138 -25.883
  154    H2     A  14           H2         A  14  14.489   0.224 -22.613
  155    H5'    C  15           H5'        C  15  11.785   6.938 -20.590
  156   H5''    C  15          H5''        C  15  11.672   8.556 -21.308
  157    H4'    C  15           H4'        C  15  12.971   7.059 -22.720
  158    H3'    C  15           H3'        C  15  10.354   7.981 -23.895
  159    H2'    C  15           H2'        C  15  11.005   6.816 -25.917
  160   HO2'    C  15          HO2'        C  15  13.435   6.044 -24.658
  161    H1'    C  15           H1'        C  15  11.762   4.483 -24.571
  162    H41    C  15           H41        C  15   5.582   3.848 -26.063
  163    H42    C  15           H42        C  15   5.138   4.659 -24.579
  164    H5     C  15           H5         C  15   6.770   5.643 -23.080
  165    H6     C  15           H6         C  15   9.149   6.042 -22.706
  166    H5'    C  16           H5'        C  16  12.948   8.447 -26.700
  167   H5''    C  16          H5''        C  16  13.028  10.073 -27.410
  168    H4'    C  16           H4'        C  16  12.767   8.525 -29.188
  169    H3'    C  16           H3'        C  16  10.250  10.082 -28.615
  170    H2'    C  16           H2'        C  16   9.263   8.953 -30.528
  171   HO2'    C  16          HO2'        C  16  10.893   7.330 -31.552
  172    H1'    C  16           H1'        C  16  10.298   6.404 -29.832
  173    H41    C  16           H41        C  16   4.414   6.572 -27.422
  174    H42    C  16           H42        C  16   4.899   7.728 -26.203
  175    H5     C  16           H5         C  16   7.133   8.657 -26.085
  176    H6     C  16           H6         C  16   9.347   8.659 -27.107
  177    H5'    U  17           H5'        U  17  10.699  10.499 -32.567
  178   H5''    U  17          H5''        U  17  10.972  12.192 -33.025
  179    H4'    U  17           H4'        U  17   9.321  11.355 -34.471
  180    H3'    U  17           H3'        U  17   8.153  13.146 -32.345
  181    H2'    U  17           H2'        U  17   6.045  12.895 -33.444
  182   HO2'    U  17          HO2'        U  17   7.696  12.229 -35.581
  183    H1'    U  17           H1'        U  17   6.432  10.198 -34.112
  184    H3     U  17           H3         U  17   2.754  10.635 -31.361
  185    H5     U  17           H5         U  17   6.086  10.232 -28.833
  186    H6     U  17           H6         U  17   7.492  10.496 -30.771
  187    H5'    A  18           H5'        A  18   6.702  14.372 -35.727
  188   H5''    A  18          H5''        A  18   6.767  16.116 -35.989
  189    H4'    A  18           H4'        A  18   4.547  15.406 -36.356
  190    H3'    A  18           H3'        A  18   4.856  16.950 -33.795
  191    H2'    A  18           H2'        A  18   2.491  16.752 -33.481
  192   HO2'    A  18          HO2'        A  18   2.570  16.354 -36.233
  193    H1'    A  18           H1'        A  18   2.319  14.085 -34.430
  194    H8     A  18           H8         A  18   5.160  13.928 -32.141
  195    H61    A  18           H61        A  18   1.173  13.874 -27.402
  196    H62    A  18           H62        A  18   2.830  13.592 -27.884
  197    H2     A  18           H2         A  18  -1.078  15.037 -31.101
  198    H5'    U  19           H5'        U  19   1.880  18.463 -35.989
  199   H5''    U  19          H5''        U  19   2.021  20.195 -36.298
  200    H4'    U  19           H4'        U  19  -0.206  19.776 -35.694
  201    H3'    U  19           H3'        U  19   1.318  21.116 -33.478
  202    H2'    U  19           H2'        U  19  -0.739  21.210 -32.257
  203   HO2'    U  19          HO2'        U  19  -1.811  20.850 -34.800
  204    H1'    U  19           H1'        U  19  -1.518  18.592 -32.872
  205    H3     U  19           H3         U  19  -0.439  18.765 -28.450
  206    H5     U  19           H5         U  19   3.216  18.316 -30.469
  207    H6     U  19           H6         U  19   2.027  18.656 -32.535
  208    H5'    G  20           H5'        G  20  -2.091  23.055 -34.355
  209   H5''    G  20          H5''        G  20  -1.905  24.802 -34.563
  210    H4'    G  20           H4'        G  20  -3.772  24.471 -33.190
  211    H3'    G  20           H3'        G  20  -1.400  25.413 -31.604
  212    H2'    G  20           H2'        G  20  -2.841  25.470 -29.692
  213   HO2'    G  20          HO2'        G  20  -4.914  25.109 -31.613
  214    H1'    G  20           H1'        G  20  -4.023  22.985 -30.194
  215    H8     G  20           H8         G  20  -0.437  22.856 -31.173
  216    H1     G  20           H1         G  20  -1.337  22.442 -24.827
  217    H21    G  20           H21        G  20  -3.428  22.885 -24.332
  218    H22    G  20           H22        G  20  -4.615  23.287 -25.553
  219    H5'    U  21           H5'        U  21  -4.497  27.812 -30.586
  220   H5''    U  21          H5''        U  21  -4.135  29.525 -30.862
  221    H4'    U  21           H4'        U  21  -5.070  29.366 -28.720
  222    H3'    U  21           H3'        U  21  -2.093  29.784 -28.572
  223    H2'    U  21           H2'        U  21  -2.335  29.918 -26.195
  224   HO2'    U  21          HO2'        U  21  -5.131  30.009 -26.761
  225    H1'    U  21           H1'        U  21  -4.165  27.808 -26.009
  226    H3     U  21           H3         U  21  -0.153  26.773 -23.990
  227    H5     U  21           H5         U  21   0.014  25.311 -27.924
  228    H6     U  21           H6         U  21  -1.979  26.578 -28.397
  229    H5'    C  22           H5'        C  22  -3.719  32.355 -26.129
  230   H5''    C  22          H5''        C  22  -3.026  33.981 -26.175
  231    H4'    C  22           H4'        C  22  -2.940  33.181 -23.931
  232    H3'    C  22           H3'        C  22  -0.220  33.253 -25.227
  233    H2'    C  22           H2'        C  22   0.664  32.585 -23.086
  234   HO2'    C  22          HO2'        C  22  -0.833  32.341 -21.281
  235    H1'    C  22           H1'        C  22  -1.247  30.556 -22.690
  236    H41    C  22           H41        C  22   3.762  27.754 -25.369
  237    H42    C  22           H42        C  22   3.138  28.147 -26.956
  238    H5     C  22           H5         C  22   1.189  29.544 -27.293
  239    H6     C  22           H6         C  22  -0.567  30.818 -26.178
  240    H5'    C  23           H5'        C  23   0.163  35.110 -21.726
  241   H5''    C  23          H5''        C  23   0.914  36.714 -21.834
  242    H4'    C  23           H4'        C  23   2.077  35.494 -20.177
  243    H3'    C  23           H3'        C  23   3.668  35.725 -22.723
  244   HO3'    C  23          HO3'        C  23   3.397  37.081 -20.303
  245    H2'    C  23           H2'        C  23   5.458  34.623 -21.574
  246   HO2'    C  23          HO2'        C  23   5.620  35.152 -19.513
  247    H1'    C  23           H1'        C  23   3.817  32.668 -20.409
  248    H41    C  23           H41        C  23   6.165  30.134 -25.733
  249    H42    C  23           H42        C  23   4.845  30.827 -26.649
  250    H5     C  23           H5         C  23   3.214  32.333 -25.672
  251    H6     C  23           H6         C  23   2.539  33.489 -23.631
  Start of MODEL    6
    1    H5'    G   1           H5'        G   1  14.746  25.624 -21.285
    2   H5''    G   1          H5''        G   1  14.552  24.238 -20.199
    3    H4'    G   1           H4'        G   1  13.847  25.842 -18.802
    4    H3'    G   1           H3'        G   1  11.353  25.138 -20.326
    5    H2'    G   1           H2'        G   1  10.206  26.774 -19.003
    6   HO2'    G   1          HO2'        G   1  10.928  27.285 -17.061
    7    H1'    G   1           H1'        G   1  12.126  28.751 -19.372
    8    H8     G   1           H8         G   1  12.007  26.620 -22.424
    9    H1     G   1           H1         G   1   7.178  30.843 -22.131
   10    H21    G   1           H21        G   1   7.127  31.793 -20.151
   11    H22    G   1           H22        G   1   8.272  31.399 -18.894
   12   HO5'    G   1          HO5'        G   1  12.814  23.593 -21.283
   13    H5'    G   2           H5'        G   2  10.324  25.402 -16.525
   14   H5''    G   2          H5''        G   2   9.521  23.956 -15.888
   15    H4'    G   2           H4'        G   2   8.223  25.802 -15.237
   16    H3'    G   2           H3'        G   2   6.918  24.295 -17.490
   17    H2'    G   2           H2'        G   2   5.041  25.794 -17.252
   18   HO2'    G   2          HO2'        G   2   5.949  27.547 -15.445
   19    H1'    G   2           H1'        G   2   6.602  28.077 -17.226
   20    H8     G   2           H8         G   2   8.509  25.896 -19.487
   21    H1     G   2           H1         G   2   3.156  28.158 -22.222
   22    H21    G   2           H21        G   2   1.844  29.032 -20.696
   23    H22    G   2           H22        G   2   2.277  29.083 -19.003
   24    H5'    A   3           H5'        A   3   4.132  24.823 -14.670
   25   H5''    A   3          H5''        A   3   3.287  23.330 -14.219
   26    H4'    A   3           H4'        A   3   1.640  24.948 -14.653
   27    H3'    A   3           H3'        A   3   1.831  22.968 -16.913
   28    H2'    A   3           H2'        A   3  -0.054  24.108 -17.905
   29   HO2'    A   3          HO2'        A   3  -0.115  25.579 -15.450
   30    H1'    A   3           H1'        A   3   1.035  26.657 -17.526
   31    H8     A   3           H8         A   3   3.956  24.482 -18.212
   32    H61    A   3           H61        A   3   2.594  24.946 -24.236
   33    H62    A   3           H62        A   3   3.794  24.434 -23.071
   34    H2     A   3           H2         A   3  -0.863  26.587 -21.897
   35    H5'    C   4           H5'        C   4  -2.123  23.145 -16.118
   36   H5''    C   4          H5''        C   4  -2.777  21.530 -15.789
   37    H4'    C   4           H4'        C   4  -4.196  22.507 -17.365
   38    H3'    C   4           H3'        C   4  -2.413  20.465 -18.649
   39    H2'    C   4           H2'        C   4  -3.600  20.848 -20.697
   40   HO2'    C   4          HO2'        C   4  -5.455  22.115 -20.768
   41    H1'    C   4           H1'        C   4  -3.570  23.577 -20.552
   42    H41    C   4           H41        C   4   1.683  22.094 -23.812
   43    H42    C   4           H42        C   4   2.478  21.524 -22.363
   44    H5     C   4           H5         C   4   1.385  21.475 -20.196
   45    H6     C   4           H6         C   4  -0.695  21.923 -19.001
   46    H5'    A   5           H5'        A   5  -6.090  19.873 -19.720
   47   H5''    A   5          H5''        A   5  -6.642  18.198 -19.773
   48    H4'    A   5           H4'        A   5  -7.120  19.258 -21.856
   49    H3'    A   5           H3'        A   5  -4.934  17.197 -22.093
   50    H2'    A   5           H2'        A   5  -4.974  17.641 -24.466
   51   HO2'    A   5          HO2'        A   5  -7.453  18.746 -23.792
   52    H1'    A   5           H1'        A   5  -5.064  20.446 -24.130
   53    H8     A   5           H8         A   5  -2.695  19.311 -21.536
   54    H61    A   5           H61        A   5   1.628  18.938 -25.959
   55    H62    A   5           H62        A   5   1.335  18.922 -24.234
   56    H2     A   5           H2         A   5  -2.359  19.430 -27.949
   57    H5'    U   6           H5'        U   6  -7.799  16.621 -24.888
   58   H5''    U   6          H5''        U   6  -8.449  14.976 -24.842
   59    H4'    U   6           H4'        U   6  -8.129  15.500 -27.092
   60    H3'    U   6           H3'        U   6  -6.000  13.643 -26.090
   61    H2'    U   6           H2'        U   6  -5.161  13.545 -28.317
   62   HO2'    U   6          HO2'        U   6  -6.840  15.299 -29.539
   63    H1'    U   6           H1'        U   6  -5.306  16.253 -28.796
   64    H3     U   6           H3         U   6  -0.929  15.127 -28.373
   65    H5     U   6           H5         U   6  -2.312  15.706 -24.449
   66    H6     U   6           H6         U   6  -4.546  15.843 -25.341
   67    H5'    A   7           H5'        A   7  -7.627  12.239 -29.489
   68   H5''    A   7          H5''        A   7  -8.119  10.543 -29.392
   69    H4'    A   7           H4'        A   7  -6.970  10.801 -31.409
   70    H3'    A   7           H3'        A   7  -5.286   9.363 -29.386
   71    H2'    A   7           H2'        A   7  -3.641   9.067 -31.130
   72   HO2'    A   7          HO2'        A   7  -4.263  10.312 -33.197
   73    H1'    A   7           H1'        A   7  -3.599  11.708 -31.816
   74    H8     A   7           H8         A   7  -4.545  11.742 -28.222
   75    H61    A   7           H61        A   7   1.466  11.123 -26.860
   76    H62    A   7           H62        A   7  -0.122  11.474 -26.214
   77    H2     A   7           H2         A   7   0.959  10.438 -31.262
   78    H5'    A   8           H5'        A   8  -5.809   7.553 -33.094
   79   H5''    A   8          H5''        A   8  -6.079   5.807 -33.044
   80    H4'    A   8           H4'        A   8  -4.557   6.270 -34.790
   81    H3'    A   8           H3'        A   8  -3.150   4.976 -32.453
   82    H2'    A   8           H2'        A   8  -1.182   4.975 -33.845
   83   HO2'    A   8          HO2'        A   8  -2.196   6.203 -36.056
   84    H1'    A   8           H1'        A   8  -1.592   7.590 -34.814
   85    H8     A   8           H8         A   8  -2.389   7.635 -31.183
   86    H61    A   8           H61        A   8   3.696   8.038 -30.100
   87    H62    A   8           H62        A   8   2.102   8.147 -29.388
   88    H2     A   8           H2         A   8   3.115   7.071 -34.441
   89    H5'    G   9           H5'        G   9  -2.121   3.018 -35.730
   90   H5''    G   9          H5''        G   9  -2.165   1.250 -35.589
   91    H4'    G   9           H4'        G   9  -0.032   1.851 -36.401
   92    H3'    G   9           H3'        G   9   0.082   1.008 -33.516
   93    H2'    G   9           H2'        G   9   2.459   1.315 -33.618
   94   HO2'    G   9          HO2'        G   9   2.507   2.047 -36.311
   95    H1'    G   9           H1'        G   9   2.333   3.714 -35.131
   96    H8     G   9           H8         G   9  -0.344   3.816 -32.557
   97    H1     G   9           H1         G   9   5.459   5.257 -30.214
   98    H21    G   9           H21        G   9   7.008   4.771 -31.690
   99    H22    G   9           H22        G   9   6.632   4.087 -33.255
  100    H5'    G  10           H5'        G  10   2.959  -1.027 -35.378
  101   H5''    G  10          H5''        G  10   2.919  -2.772 -35.050
  102    H4'    G  10           H4'        G  10   5.115  -2.034 -34.612
  103    H3'    G  10           H3'        G  10   3.594  -2.555 -32.065
  104    H2'    G  10           H2'        G  10   5.594  -2.005 -30.869
  105   HO2'    G  10          HO2'        G  10   7.176  -1.669 -33.148
  106    H1'    G  10           H1'        G  10   6.373   0.112 -32.641
  107    H8     G  10           H8         G  10   2.761   0.408 -31.790
  108    H1     G  10           H1         G  10   6.632   2.663 -27.191
  109    H21    G  10           H21        G  10   8.709   2.093 -27.602
  110    H22    G  10           H22        G  10   9.158   1.144 -29.008
  111    H5'    A  11           H5'        A  11   7.224  -4.630 -30.605
  112   H5''    A  11          H5''        A  11   6.811  -5.651 -31.999
  113    H4'    A  11           H4'        A  11   6.056  -7.378 -30.279
  114    H3'    A  11           H3'        A  11   6.435  -5.598 -28.304
  115    H2'    A  11           H2'        A  11   8.799  -5.236 -28.641
  116   HO2'    A  11          HO2'        A  11   9.111  -7.639 -27.214
  117    H1'    A  11           H1'        A  11   9.139  -8.248 -29.116
  118    H8     A  11           H8         A  11  10.030  -4.891 -30.854
  119    H61    A  11           H61        A  11  15.787  -7.166 -31.049
  120    H62    A  11           H62        A  11  14.760  -5.821 -31.492
  121    H2     A  11           H2         A  11  13.173 -10.163 -28.976
  122    H5'    A  12           H5'        A  12   4.115  -5.207 -26.098
  123   H5''    A  12          H5''        A  12   5.868  -5.342 -26.301
  124    H4'    A  12           H4'        A  12   4.236  -5.680 -23.809
  125    H3'    A  12           H3'        A  12   6.208  -3.616 -24.684
  126    H2'    A  12           H2'        A  12   7.042  -3.429 -22.462
  127   HO2'    A  12          HO2'        A  12   4.639  -4.689 -21.872
  128    H1'    A  12           H1'        A  12   7.398  -6.097 -22.055
  129    H8     A  12           H8         A  12   7.547  -4.662 -25.639
  130    H61    A  12           H61        A  12  13.703  -4.969 -25.058
  131    H62    A  12           H62        A  12  12.382  -4.566 -26.132
  132    H2     A  12           H2         A  12  11.872  -6.290 -21.185
  133    H5'    A  13           H5'        A  13   4.554  -2.277 -21.399
  134   H5''    A  13          H5''        A  13   4.068  -0.572 -21.413
  135    H4'    A  13           H4'        A  13   5.505  -0.914 -19.562
  136    H3'    A  13           H3'        A  13   6.871   0.623 -21.762
  137    H2'    A  13           H2'        A  13   8.805   0.762 -20.325
  138   HO2'    A  13          HO2'        A  13   7.104  -0.491 -18.392
  139    H1'    A  13           H1'        A  13   8.833  -1.988 -19.836
  140    H8     A  13           H8         A  13   7.417  -0.674 -23.170
  141    H61    A  13           H61        A  13  12.897  -2.328 -25.526
  142    H62    A  13           H62        A  13  11.310  -1.691 -25.894
  143    H2     A  13           H2         A  13  13.020  -3.021 -21.097
  144    H5'    A  14           H5'        A  14   7.577   2.671 -18.467
  145   H5''    A  14          H5''        A  14   7.312   4.425 -18.583
  146    H4'    A  14           H4'        A  14   9.540   4.115 -17.909
  147    H3'    A  14           H3'        A  14   9.320   4.914 -20.790
  148    H2'    A  14           H2'        A  14  11.722   4.820 -20.945
  149   HO2'    A  14          HO2'        A  14  11.594   4.447 -18.121
  150    H1'    A  14           H1'        A  14  11.985   2.379 -19.762
  151    H8     A  14           H8         A  14   8.880   3.286 -21.889
  152    H61    A  14           H61        A  14  11.769   0.271 -26.462
  153    H62    A  14           H62        A  14  10.316   1.133 -26.006
  154    H2     A  14           H2         A  14  14.429   0.210 -22.853
  155    H5'    C  15           H5'        C  15  11.870   6.872 -20.732
  156   H5''    C  15          H5''        C  15  11.734   8.495 -21.434
  157    H4'    C  15           H4'        C  15  13.026   7.021 -22.875
  158    H3'    C  15           H3'        C  15  10.385   7.924 -24.019
  159    H2'    C  15           H2'        C  15  11.044   6.790 -26.057
  160   HO2'    C  15          HO2'        C  15  13.441   5.838 -24.952
  161    H1'    C  15           H1'        C  15  11.821   4.452 -24.738
  162    H41    C  15           H41        C  15   5.627   3.849 -26.210
  163    H42    C  15           H42        C  15   5.191   4.653 -24.720
  164    H5     C  15           H5         C  15   6.832   5.620 -23.220
  165    H6     C  15           H6         C  15   9.214   5.998 -22.848
  166    H5'    C  16           H5'        C  16  12.953   8.431 -26.839
  167   H5''    C  16          H5''        C  16  13.024  10.063 -27.530
  168    H4'    C  16           H4'        C  16  12.786   8.529 -29.323
  169    H3'    C  16           H3'        C  16  10.254  10.068 -28.766
  170    H2'    C  16           H2'        C  16   9.293   8.946 -30.697
  171   HO2'    C  16          HO2'        C  16  11.709   7.567 -31.204
  172    H1'    C  16           H1'        C  16  10.332   6.398 -30.003
  173    H41    C  16           H41        C  16   4.427   6.548 -27.634
  174    H42    C  16           H42        C  16   4.905   7.694 -26.402
  175    H5     C  16           H5         C  16   7.144   8.608 -26.252
  176    H6     C  16           H6         C  16   9.365   8.615 -27.260
  177    H5'    U  17           H5'        U  17  10.717  10.490 -32.719
  178   H5''    U  17          H5''        U  17  10.992  12.182 -33.182
  179    H4'    U  17           H4'        U  17   9.337  11.344 -34.625
  180    H3'    U  17           H3'        U  17   8.171  13.132 -32.500
  181    H2'    U  17           H2'        U  17   6.062  12.871 -33.573
  182   HO2'    U  17          HO2'        U  17   7.680  12.273 -35.740
  183    H1'    U  17           H1'        U  17   6.452  10.180 -34.267
  184    H3     U  17           H3         U  17   2.776  10.659 -31.505
  185    H5     U  17           H5         U  17   6.108  10.213 -28.986
  186    H6     U  17           H6         U  17   7.512  10.451 -30.929
  187    H5'    A  18           H5'        A  18   6.692  14.360 -35.873
  188   H5''    A  18          H5''        A  18   6.754  16.105 -36.121
  189    H4'    A  18           H4'        A  18   4.530  15.403 -36.486
  190    H3'    A  18           H3'        A  18   4.849  16.911 -33.907
  191    H2'    A  18           H2'        A  18   2.479  16.722 -33.600
  192   HO2'    A  18          HO2'        A  18   1.113  16.303 -35.252
  193    H1'    A  18           H1'        A  18   2.312  14.053 -34.527
  194    H8     A  18           H8         A  18   5.201  13.926 -32.293
  195    H61    A  18           H61        A  18   1.303  13.849 -27.481
  196    H62    A  18           H62        A  18   2.953  13.580 -27.995
  197    H2     A  18           H2         A  18  -1.025  14.989 -31.140
  198    H5'    U  19           H5'        U  19   1.859  18.471 -36.042
  199   H5''    U  19          H5''        U  19   2.020  20.205 -36.343
  200    H4'    U  19           H4'        U  19  -0.205  19.810 -35.701
  201    H3'    U  19           H3'        U  19   1.373  21.114 -33.506
  202    H2'    U  19           H2'        U  19  -0.655  21.218 -32.243
  203   HO2'    U  19          HO2'        U  19  -1.793  20.894 -34.761
  204    H1'    U  19           H1'        U  19  -1.471  18.612 -32.862
  205    H3     U  19           H3         U  19  -0.283  18.721 -28.463
  206    H5     U  19           H5         U  19   3.318  18.276 -30.578
  207    H6     U  19           H6         U  19   2.080  18.651 -32.609
  208    H5'    G  20           H5'        G  20  -2.016  23.074 -34.331
  209   H5''    G  20          H5''        G  20  -1.841  24.821 -34.549
  210    H4'    G  20           H4'        G  20  -3.694  24.484 -33.151
  211    H3'    G  20           H3'        G  20  -1.316  25.440 -31.581
  212    H2'    G  20           H2'        G  20  -2.765  25.496 -29.668
  213   HO2'    G  20          HO2'        G  20  -4.827  25.916 -29.973
  214    H1'    G  20           H1'        G  20  -3.919  22.989 -30.175
  215    H8     G  20           H8         G  20  -0.325  22.922 -31.137
  216    H1     G  20           H1         G  20  -1.256  22.475 -24.798
  217    H21    G  20           H21        G  20  -3.356  22.889 -24.315
  218    H22    G  20           H22        G  20  -4.544  23.260 -25.541
  219    H5'    U  21           H5'        U  21  -4.431  27.816 -30.576
  220   H5''    U  21          H5''        U  21  -4.090  29.532 -30.847
  221    H4'    U  21           H4'        U  21  -5.038  29.357 -28.710
  222    H3'    U  21           H3'        U  21  -2.069  29.821 -28.530
  223    H2'    U  21           H2'        U  21  -2.341  29.939 -26.156
  224   HO2'    U  21          HO2'        U  21  -4.524  29.830 -25.273
  225    H1'    U  21           H1'        U  21  -4.137  27.798 -25.998
  226    H3     U  21           H3         U  21  -0.123  26.828 -23.948
  227    H5     U  21           H5         U  21   0.115  25.403 -27.892
  228    H6     U  21           H6         U  21  -1.903  26.627 -28.375
  229    H5'    C  22           H5'        C  22  -3.770  32.342 -26.092
  230   H5''    C  22          H5''        C  22  -3.108  33.979 -26.124
  231    H4'    C  22           H4'        C  22  -3.043  33.176 -23.881
  232    H3'    C  22           H3'        C  22  -0.302  33.299 -25.131
  233    H2'    C  22           H2'        C  22   0.554  32.648 -22.971
  234   HO2'    C  22          HO2'        C  22  -2.102  32.680 -21.941
  235    H1'    C  22           H1'        C  22  -1.317  30.577 -22.623
  236    H41    C  22           H41        C  22   3.820  27.930 -25.211
  237    H42    C  22           H42        C  22   3.205  28.294 -26.809
  238    H5     C  22           H5         C  22   1.228  29.642 -27.180
  239    H6     C  22           H6         C  22  -0.580  30.869 -26.096
  240    H5'    C  23           H5'        C  23  -0.029  35.141 -21.633
  241   H5''    C  23          H5''        C  23   0.674  36.768 -21.710
  242    H4'    C  23           H4'        C  23   1.840  35.571 -20.043
  243    H3'    C  23           H3'        C  23   3.475  35.851 -22.558
  244   HO3'    C  23          HO3'        C  23   3.701  37.695 -21.739
  245    H2'    C  23           H2'        C  23   5.266  34.785 -21.385
  246   HO2'    C  23          HO2'        C  23   3.953  34.357 -18.996
  247    H1'    C  23           H1'        C  23   3.648  32.781 -20.260
  248    H41    C  23           H41        C  23   6.144  30.371 -25.575
  249    H42    C  23           H42        C  23   4.816  31.030 -26.499
  250    H5     C  23           H5         C  23   3.132  32.485 -25.533
  251    H6     C  23           H6         C  23   2.400  33.602 -23.490
  Start of MODEL    7
    1    H5'    G   1           H5'        G   1  14.694  25.453 -21.498
    2   H5''    G   1          H5''        G   1  14.572  24.094 -20.371
    3    H4'    G   1           H4'        G   1  13.841  25.662 -18.976
    4    H3'    G   1           H3'        G   1  11.341  24.995 -20.496
    5    H2'    G   1           H2'        G   1  10.206  26.656 -19.207
    6   HO2'    G   1          HO2'        G   1  12.508  27.402 -17.785
    7    H1'    G   1           H1'        G   1  12.157  28.606 -19.555
    8    H8     G   1           H8         G   1  12.053  26.469 -22.598
    9    H1     G   1           H1         G   1   7.272  30.750 -22.376
   10    H21    G   1           H21        G   1   7.210  31.711 -20.401
   11    H22    G   1           H22        G   1   8.337  31.307 -19.126
   12   HO5'    G   1          HO5'        G   1  13.505  23.403 -22.122
   13    H5'    G   2           H5'        G   2  10.353  25.264 -16.656
   14   H5''    G   2          H5''        G   2   9.524  23.831 -16.024
   15    H4'    G   2           H4'        G   2   8.289  25.705 -15.331
   16    H3'    G   2           H3'        G   2   6.907  24.239 -17.568
   17    H2'    G   2           H2'        G   2   5.068  25.774 -17.283
   18   HO2'    G   2          HO2'        G   2   4.823  26.936 -15.487
   19    H1'    G   2           H1'        G   2   6.688  28.029 -17.279
   20    H8     G   2           H8         G   2   8.485  25.812 -19.587
   21    H1     G   2           H1         G   2   3.131  28.221 -22.191
   22    H21    G   2           H21        G   2   1.881  29.135 -20.635
   23    H22    G   2           H22        G   2   2.352  29.160 -18.949
   24    H5'    A   3           H5'        A   3   4.183  24.800 -14.709
   25   H5''    A   3          H5''        A   3   3.322  23.320 -14.253
   26    H4'    A   3           H4'        A   3   1.695  24.966 -14.658
   27    H3'    A   3           H3'        A   3   1.832  22.987 -16.924
   28    H2'    A   3           H2'        A   3  -0.061  24.151 -17.881
   29   HO2'    A   3          HO2'        A   3  -1.331  25.400 -16.686
   30    H1'    A   3           H1'        A   3   1.090  26.673 -17.553
   31    H8     A   3           H8         A   3   3.966  24.430 -18.223
   32    H61    A   3           H61        A   3   2.587  24.853 -24.245
   33    H62    A   3           H62        A   3   3.779  24.324 -23.080
   34    H2     A   3           H2         A   3  -0.827  26.588 -21.911
   35    H5'    C   4           H5'        C   4  -2.104  23.206 -16.074
   36   H5''    C   4          H5''        C   4  -2.773  21.596 -15.751
   37    H4'    C   4           H4'        C   4  -4.196  22.598 -17.304
   38    H3'    C   4           H3'        C   4  -2.436  20.559 -18.621
   39    H2'    C   4           H2'        C   4  -3.606  20.981 -20.667
   40   HO2'    C   4          HO2'        C   4  -5.550  21.946 -20.726
   41    H1'    C   4           H1'        C   4  -3.667  23.727 -20.429
   42    H41    C   4           H41        C   4   1.475  22.237 -23.929
   43    H42    C   4           H42        C   4   2.347  21.753 -22.492
   44    H5     C   4           H5         C   4   1.348  21.761 -20.281
   45    H6     C   4           H6         C   4  -0.691  22.204 -19.016
   46    H5'    A   5           H5'        A   5  -6.120  19.966 -19.661
   47   H5''    A   5          H5''        A   5  -6.666  18.290 -19.720
   48    H4'    A   5           H4'        A   5  -7.147  19.366 -21.800
   49    H3'    A   5           H3'        A   5  -4.976  17.287 -22.028
   50    H2'    A   5           H2'        A   5  -4.994  17.724 -24.402
   51   HO2'    A   5          HO2'        A   5  -6.770  18.428 -25.337
   52    H1'    A   5           H1'        A   5  -5.090  20.534 -24.085
   53    H8     A   5           H8         A   5  -2.708  19.449 -21.496
   54    H61    A   5           H61        A   5   1.595  19.001 -25.933
   55    H62    A   5           H62        A   5   1.313  19.020 -24.206
   56    H2     A   5           H2         A   5  -2.404  19.433 -27.911
   57    H5'    U   6           H5'        U   6  -7.836  16.678 -24.823
   58   H5''    U   6          H5''        U   6  -8.494  15.036 -24.763
   59    H4'    U   6           H4'        U   6  -8.153  15.534 -27.015
   60    H3'    U   6           H3'        U   6  -6.039  13.676 -25.975
   61    H2'    U   6           H2'        U   6  -5.191  13.549 -28.198
   62   HO2'    U   6          HO2'        U   6  -6.363  14.075 -29.936
   63    H1'    U   6           H1'        U   6  -5.308  16.251 -28.704
   64    H3     U   6           H3         U   6  -0.950  15.089 -28.235
   65    H5     U   6           H5         U   6  -2.351  15.747 -24.330
   66    H6     U   6           H6         U   6  -4.578  15.888 -25.237
   67    H5'    A   7           H5'        A   7  -7.636  12.234 -29.360
   68   H5''    A   7          H5''        A   7  -8.144  10.546 -29.244
   69    H4'    A   7           H4'        A   7  -6.980  10.764 -31.251
   70    H3'    A   7           H3'        A   7  -5.317   9.340 -29.202
   71    H2'    A   7           H2'        A   7  -3.670   9.011 -30.936
   72   HO2'    A   7          HO2'        A   7  -4.254  10.211 -33.025
   73    H1'    A   7           H1'        A   7  -3.594  11.643 -31.646
   74    H8     A   7           H8         A   7  -4.587  11.749 -28.071
   75    H61    A   7           H61        A   7   1.404  11.147 -26.616
   76    H62    A   7           H62        A   7  -0.194  11.499 -25.996
   77    H2     A   7           H2         A   7   0.949  10.342 -31.003
   78    H5'    A   8           H5'        A   8  -5.859   7.523 -32.884
   79   H5''    A   8          H5''        A   8  -6.106   5.774 -32.851
   80    H4'    A   8           H4'        A   8  -4.608   6.280 -34.606
   81    H3'    A   8           H3'        A   8  -3.160   4.966 -32.305
   82    H2'    A   8           H2'        A   8  -1.208   5.003 -33.724
   83   HO2'    A   8          HO2'        A   8  -2.313   6.287 -35.880
   84    H1'    A   8           H1'        A   8  -1.632   7.639 -34.609
   85    H8     A   8           H8         A   8  -2.453   7.570 -30.978
   86    H61    A   8           H61        A   8   3.625   7.971 -29.856
   87    H62    A   8           H62        A   8   2.027   8.044 -29.147
   88    H2     A   8           H2         A   8   3.068   7.149 -34.229
   89    H5'    G   9           H5'        G   9  -2.160   3.084 -35.628
   90   H5''    G   9          H5''        G   9  -2.168   1.314 -35.518
   91    H4'    G   9           H4'        G   9  -0.065   1.971 -36.365
   92    H3'    G   9           H3'        G   9   0.133   1.069 -33.501
   93    H2'    G   9           H2'        G   9   2.507   1.405 -33.666
   94   HO2'    G   9          HO2'        G   9   3.428   1.973 -35.743
   95    H1'    G   9           H1'        G   9   2.302   3.856 -35.066
   96    H8     G   9           H8         G   9  -0.348   3.821 -32.461
   97    H1     G   9           H1         G   9   5.470   5.231 -30.136
   98    H21    G   9           H21        G   9   7.006   4.818 -31.647
   99    H22    G   9           H22        G   9   6.617   4.192 -33.235
  100    H5'    G  10           H5'        G  10   3.015  -0.835 -35.452
  101   H5''    G  10          H5''        G  10   3.026  -2.587 -35.181
  102    H4'    G  10           H4'        G  10   5.208  -1.804 -34.752
  103    H3'    G  10           H3'        G  10   3.730  -2.449 -32.211
  104    H2'    G  10           H2'        G  10   5.717  -1.877 -31.009
  105   HO2'    G  10          HO2'        G  10   7.718  -1.614 -32.104
  106    H1'    G  10           H1'        G  10   6.435   0.308 -32.724
  107    H8     G  10           H8         G  10   2.827   0.502 -31.848
  108    H1     G  10           H1         G  10   6.672   2.703 -27.199
  109    H21    G  10           H21        G  10   8.758   2.186 -27.636
  110    H22    G  10           H22        G  10   9.219   1.286 -29.066
  111    H5'    A  11           H5'        A  11   7.410  -4.309 -30.849
  112   H5''    A  11          H5''        A  11   7.063  -5.353 -32.243
  113    H4'    A  11           H4'        A  11   6.477  -7.151 -30.557
  114    H3'    A  11           H3'        A  11   6.642  -5.363 -28.555
  115    H2'    A  11           H2'        A  11   8.978  -4.801 -28.824
  116   HO2'    A  11          HO2'        A  11   9.474  -7.175 -27.409
  117    H1'    A  11           H1'        A  11   9.563  -7.773 -29.322
  118    H8     A  11           H8         A  11  10.269  -4.339 -30.996
  119    H61    A  11           H61        A  11  16.181  -6.184 -30.997
  120    H62    A  11           H62        A  11  15.077  -4.907 -31.457
  121    H2     A  11           H2         A  11  13.724  -9.383 -29.038
  122    H5'    A  12           H5'        A  12   4.443  -5.106 -26.483
  123   H5''    A  12          H5''        A  12   6.204  -5.302 -26.496
  124    H4'    A  12           H4'        A  12   4.301  -5.634 -24.202
  125    H3'    A  12           H3'        A  12   6.382  -3.589 -24.822
  126    H2'    A  12           H2'        A  12   6.995  -3.465 -22.521
  127   HO2'    A  12          HO2'        A  12   4.528  -4.719 -22.207
  128    H1'    A  12           H1'        A  12   7.253  -6.137 -22.124
  129    H8     A  12           H8         A  12   7.809  -4.640 -25.644
  130    H61    A  12           H61        A  12  13.855  -4.991 -24.362
  131    H62    A  12           H62        A  12  12.667  -4.558 -25.572
  132    H2     A  12           H2         A  12  11.587  -6.413 -20.766
  133    H5'    A  13           H5'        A  13   4.497  -2.290 -21.677
  134   H5''    A  13          H5''        A  13   4.015  -0.582 -21.709
  135    H4'    A  13           H4'        A  13   5.314  -0.942 -19.766
  136    H3'    A  13           H3'        A  13   6.840   0.603 -21.850
  137    H2'    A  13           H2'        A  13   8.668   0.731 -20.269
  138   HO2'    A  13          HO2'        A  13   6.818  -0.528 -18.481
  139    H1'    A  13           H1'        A  13   8.659  -2.025 -19.803
  140    H8     A  13           H8         A  13   7.469  -0.692 -23.212
  141    H61    A  13           H61        A  13  13.094  -2.315 -25.222
  142    H62    A  13           H62        A  13  11.532  -1.677 -25.687
  143    H2     A  13           H2         A  13  12.933  -3.043 -20.800
  144    H5'    A  14           H5'        A  14   7.312   2.666 -18.495
  145   H5''    A  14          H5''        A  14   7.061   4.418 -18.653
  146    H4'    A  14           H4'        A  14   9.233   4.102 -17.807
  147    H3'    A  14           H3'        A  14   9.224   4.904 -20.694
  148    H2'    A  14           H2'        A  14  11.628   4.804 -20.689
  149   HO2'    A  14          HO2'        A  14  11.296   4.479 -17.875
  150    H1'    A  14           H1'        A  14  11.808   2.366 -19.484
  151    H8     A  14           H8         A  14   8.853   3.265 -21.814
  152    H61    A  14           H61        A  14  12.046   0.257 -26.186
  153    H62    A  14           H62        A  14  10.565   1.116 -25.828
  154    H2     A  14           H2         A  14  14.469   0.216 -22.413
  155    H5'    C  15           H5'        C  15  11.720   6.847 -20.526
  156   H5''    C  15          H5''        C  15  11.614   8.466 -21.241
  157    H4'    C  15           H4'        C  15  12.946   7.004 -22.642
  158    H3'    C  15           H3'        C  15  10.314   7.849 -23.848
  159    H2'    C  15           H2'        C  15  11.030   6.700 -25.862
  160   HO2'    C  15          HO2'        C  15  13.423   5.830 -24.668
  161    H1'    C  15           H1'        C  15  11.816   4.389 -24.501
  162    H41    C  15           H41        C  15   5.662   3.669 -26.076
  163    H42    C  15           H42        C  15   5.186   4.491 -24.608
  164    H5     C  15           H5         C  15   6.784   5.498 -23.088
  165    H6     C  15           H6         C  15   9.153   5.918 -22.677
  166    H5'    C  16           H5'        C  16  12.912   8.399 -26.639
  167   H5''    C  16          H5''        C  16  12.954  10.029 -27.339
  168    H4'    C  16           H4'        C  16  12.744   8.474 -29.123
  169    H3'    C  16           H3'        C  16  10.197   9.991 -28.571
  170    H2'    C  16           H2'        C  16   9.254   8.853 -30.502
  171   HO2'    C  16          HO2'        C  16  10.509   7.905 -32.004
  172    H1'    C  16           H1'        C  16  10.304   6.319 -29.788
  173    H41    C  16           H41        C  16   4.375   6.485 -27.489
  174    H42    C  16           H42        C  16   4.835   7.646 -26.262
  175    H5     C  16           H5         C  16   7.067   8.572 -26.100
  176    H6     C  16           H6         C  16   9.302   8.571 -27.077
  177    H5'    U  17           H5'        U  17  10.659  10.398 -32.503
  178   H5''    U  17          H5''        U  17  10.928  12.088 -32.976
  179    H4'    U  17           H4'        U  17   9.280  11.233 -34.418
  180    H3'    U  17           H3'        U  17   8.120  13.044 -32.309
  181    H2'    U  17           H2'        U  17   6.007  12.784 -33.390
  182   HO2'    U  17          HO2'        U  17   7.616  12.283 -35.545
  183    H1'    U  17           H1'        U  17   6.389  10.088 -34.052
  184    H3     U  17           H3         U  17   2.708  10.577 -31.307
  185    H5     U  17           H5         U  17   6.028  10.166 -28.768
  186    H6     U  17           H6         U  17   7.442  10.392 -30.705
  187    H5'    A  18           H5'        A  18   6.674  14.242 -35.699
  188   H5''    A  18          H5''        A  18   6.740  15.983 -35.976
  189    H4'    A  18           H4'        A  18   4.515  15.273 -36.326
  190    H3'    A  18           H3'        A  18   4.851  16.839 -33.783
  191    H2'    A  18           H2'        A  18   2.494  16.652 -33.437
  192   HO2'    A  18          HO2'        A  18   2.529  16.209 -36.189
  193    H1'    A  18           H1'        A  18   2.297  13.979 -34.370
  194    H8     A  18           H8         A  18   5.155  13.827 -32.099
  195    H61    A  18           H61        A  18   1.193  13.801 -27.341
  196    H62    A  18           H62        A  18   2.847  13.514 -27.829
  197    H2     A  18           H2         A  18  -1.073  14.962 -31.030
  198    H5'    U  19           H5'        U  19   1.863  18.351 -35.971
  199   H5''    U  19          H5''        U  19   2.014  20.082 -36.292
  200    H4'    U  19           H4'        U  19  -0.210  19.683 -35.666
  201    H3'    U  19           H3'        U  19   1.346  21.020 -33.475
  202    H2'    U  19           H2'        U  19  -0.688  21.132 -32.223
  203   HO2'    U  19          HO2'        U  19  -1.812  20.753 -34.748
  204    H1'    U  19           H1'        U  19  -1.502  18.519 -32.820
  205    H3     U  19           H3         U  19  -0.344  18.693 -28.414
  206    H5     U  19           H5         U  19   3.271  18.214 -30.498
  207    H6     U  19           H6         U  19   2.047  18.558 -32.542
  208    H5'    G  20           H5'        G  20  -2.044  22.976 -34.332
  209   H5''    G  20          H5''        G  20  -1.858  24.720 -34.560
  210    H4'    G  20           H4'        G  20  -3.717  24.399 -33.171
  211    H3'    G  20           H3'        G  20  -1.338  25.367 -31.608
  212    H2'    G  20           H2'        G  20  -2.781  25.446 -29.693
  213   HO2'    G  20          HO2'        G  20  -4.904  24.859 -31.518
  214    H1'    G  20           H1'        G  20  -3.951  22.946 -30.168
  215    H8     G  20           H8         G  20  -0.359  22.839 -31.137
  216    H1     G  20           H1         G  20  -1.276  22.466 -24.792
  217    H21    G  20           H21        G  20  -3.374  22.888 -24.308
  218    H22    G  20           H22        G  20  -4.561  23.268 -25.534
  219    H5'    U  21           H5'        U  21  -4.439  27.759 -30.631
  220   H5''    U  21          H5''        U  21  -4.092  29.472 -30.921
  221    H4'    U  21           H4'        U  21  -5.038  29.323 -28.783
  222    H3'    U  21           H3'        U  21  -2.064  29.773 -28.617
  223    H2'    U  21           H2'        U  21  -2.328  29.917 -26.242
  224   HO2'    U  21          HO2'        U  21  -5.112  30.024 -26.850
  225    H1'    U  21           H1'        U  21  -4.156  27.800 -26.062
  226    H3     U  21           H3         U  21  -0.188  26.811 -23.949
  227    H5     U  21           H5         U  21   0.092  25.332 -27.869
  228    H6     U  21           H6         U  21  -1.905  26.571 -28.397
  229    H5'    C  22           H5'        C  22  -3.753  32.354 -26.224
  230   H5''    C  22          H5''        C  22  -3.070  33.985 -26.276
  231    H4'    C  22           H4'        C  22  -3.015  33.209 -24.023
  232    H3'    C  22           H3'        C  22  -0.274  33.292 -25.276
  233    H2'    C  22           H2'        C  22   0.579  32.659 -23.110
  234   HO2'    C  22          HO2'        C  22  -1.401  32.250 -21.528
  235    H1'    C  22           H1'        C  22  -1.314  30.609 -22.734
  236    H41    C  22           H41        C  22   3.796  27.878 -25.292
  237    H42    C  22           H42        C  22   3.191  28.241 -26.895
  238    H5     C  22           H5         C  22   1.220  29.592 -27.282
  239    H6     C  22           H6         C  22  -0.580  30.845 -26.212
  240    H5'    C  23           H5'        C  23   0.029  35.177 -21.800
  241   H5''    C  23          H5''        C  23   0.769  36.785 -21.902
  242    H4'    C  23           H4'        C  23   1.906  35.578 -20.214
  243    H3'    C  23           H3'        C  23   3.557  35.811 -22.724
  244   HO3'    C  23          HO3'        C  23   3.108  37.223 -20.394
  245    H2'    C  23           H2'        C  23   5.326  34.734 -21.515
  246   HO2'    C  23          HO2'        C  23   3.770  34.555 -19.167
  247    H1'    C  23           H1'        C  23   3.667  32.759 -20.401
  248    H41    C  23           H41        C  23   6.218  30.286 -25.663
  249    H42    C  23           H42        C  23   4.923  30.969 -26.618
  250    H5     C  23           H5         C  23   3.240  32.448 -25.687
  251    H6     C  23           H6         C  23   2.479  33.576 -23.662
  Start of MODEL    8
    1    H5'    G   1           H5'        G   1  14.414  24.789 -21.313
    2   H5''    G   1          H5''        G   1  14.427  23.496 -20.104
    3    H4'    G   1           H4'        G   1  13.696  25.053 -18.714
    4    H3'    G   1           H3'        G   1  11.138  24.446 -20.171
    5    H2'    G   1           H2'        G   1  10.100  26.152 -18.857
    6   HO2'    G   1          HO2'        G   1  10.867  26.694 -16.939
    7    H1'    G   1           H1'        G   1  12.143  28.016 -19.221
    8    H8     G   1           H8         G   1  11.769  25.991 -22.321
    9    H1     G   1           H1         G   1   7.245  30.506 -21.695
   10    H21    G   1           H21        G   1   7.338  31.397 -19.689
   11    H22    G   1           H22        G   1   8.504  30.884 -18.490
   12   HO5'    G   1          HO5'        G   1  13.148  23.434 -22.312
   13    H5'    G   2           H5'        G   2  10.177  24.845 -16.388
   14   H5''    G   2          H5''        G   2   9.311  23.462 -15.696
   15    H4'    G   2           H4'        G   2   8.107  25.394 -15.110
   16    H3'    G   2           H3'        G   2   6.725  23.860 -17.300
   17    H2'    G   2           H2'        G   2   4.918  25.444 -17.119
   18   HO2'    G   2          HO2'        G   2   4.616  26.542 -15.317
   19    H1'    G   2           H1'        G   2   6.584  27.662 -17.154
   20    H8     G   2           H8         G   2   8.367  25.369 -19.389
   21    H1     G   2           H1         G   2   3.063  27.765 -22.102
   22    H21    G   2           H21        G   2   1.807  28.727 -20.581
   23    H22    G   2           H22        G   2   2.259  28.784 -18.892
   24    H5'    A   3           H5'        A   3   3.964  24.646 -14.580
   25   H5''    A   3          H5''        A   3   3.047  23.218 -14.070
   26    H4'    A   3           H4'        A   3   1.476  24.880 -14.599
   27    H3'    A   3           H3'        A   3   1.625  22.812 -16.785
   28    H2'    A   3           H2'        A   3  -0.195  23.997 -17.845
   29   HO2'    A   3          HO2'        A   3  -1.563  25.034 -16.597
   30    H1'    A   3           H1'        A   3   0.982  26.523 -17.491
   31    H8     A   3           H8         A   3   3.815  24.237 -18.173
   32    H61    A   3           H61        A   3   2.412  24.677 -24.188
   33    H62    A   3           H62        A   3   3.603  24.133 -23.030
   34    H2     A   3           H2         A   3  -0.957  26.479 -21.838
   35    H5'    C   4           H5'        C   4  -2.345  23.098 -16.074
   36   H5''    C   4          H5''        C   4  -3.031  21.500 -15.729
   37    H4'    C   4           H4'        C   4  -4.388  22.469 -17.370
   38    H3'    C   4           H3'        C   4  -2.601  20.378 -18.572
   39    H2'    C   4           H2'        C   4  -3.693  20.772 -20.664
   40   HO2'    C   4          HO2'        C   4  -5.624  21.794 -20.820
   41    H1'    C   4           H1'        C   4  -3.794  23.542 -20.435
   42    H41    C   4           H41        C   4   1.393  22.285 -23.933
   43    H42    C   4           H42        C   4   2.284  21.843 -22.493
   44    H5     C   4           H5         C   4   1.274  21.773 -20.289
   45    H6     C   4           H6         C   4  -0.796  22.085 -19.032
   46    H5'    A   5           H5'        A   5  -6.248  19.787 -19.721
   47   H5''    A   5          H5''        A   5  -6.786  18.111 -19.798
   48    H4'    A   5           H4'        A   5  -7.197  19.179 -21.897
   49    H3'    A   5           H3'        A   5  -5.005  17.117 -22.055
   50    H2'    A   5           H2'        A   5  -4.954  17.569 -24.425
   51   HO2'    A   5          HO2'        A   5  -7.501  18.540 -23.874
   52    H1'    A   5           H1'        A   5  -5.187  20.388 -24.102
   53    H8     A   5           H8         A   5  -2.705  19.321 -21.582
   54    H61    A   5           H61        A   5   1.501  19.121 -26.128
   55    H62    A   5           H62        A   5   1.260  19.083 -24.396
   56    H2     A   5           H2         A   5  -2.552  19.522 -28.000
   57    H5'    U   6           H5'        U   6  -7.776  16.448 -24.926
   58   H5''    U   6          H5''        U   6  -8.428  14.806 -24.840
   59    H4'    U   6           H4'        U   6  -8.044  15.243 -27.098
   60    H3'    U   6           H3'        U   6  -5.914  13.447 -25.972
   61    H2'    U   6           H2'        U   6  -5.045  13.267 -28.183
   62   HO2'    U   6          HO2'        U   6  -6.764  14.927 -29.495
   63    H1'    U   6           H1'        U   6  -5.278  15.958 -28.789
   64    H3     U   6           H3         U   6  -0.875  14.932 -28.470
   65    H5     U   6           H5         U   6  -2.126  15.813 -24.558
   66    H6     U   6           H6         U   6  -4.395  15.796 -25.364
   67    H5'    A   7           H5'        A   7  -7.397  11.847 -29.336
   68   H5''    A   7          H5''        A   7  -7.837  10.145 -29.169
   69    H4'    A   7           H4'        A   7  -6.628  10.336 -31.151
   70    H3'    A   7           H3'        A   7  -4.960   9.063 -29.009
   71    H2'    A   7           H2'        A   7  -3.245   8.768 -30.653
   72   HO2'    A   7          HO2'        A   7  -4.092   9.931 -32.828
   73    H1'    A   7           H1'        A   7  -3.387  11.336 -31.642
   74    H8     A   7           H8         A   7  -4.166  11.606 -28.021
   75    H61    A   7           H61        A   7   1.930  11.527 -26.922
   76    H62    A   7           H62        A   7   0.349  11.794 -26.221
   77    H2     A   7           H2         A   7   1.276  10.445 -31.225
   78    H5'    A   8           H5'        A   8  -5.521   7.211 -32.776
   79   H5''    A   8          H5''        A   8  -5.730   5.458 -32.736
   80    H4'    A   8           H4'        A   8  -4.351   5.978 -34.578
   81    H3'    A   8           H3'        A   8  -2.735   4.733 -32.356
   82    H2'    A   8           H2'        A   8  -0.861   4.807 -33.874
   83   HO2'    A   8          HO2'        A   8  -2.008   6.036 -36.002
   84    H1'    A   8           H1'        A   8  -1.405   7.419 -34.771
   85    H8     A   8           H8         A   8  -2.069   7.460 -31.128
   86    H61    A   8           H61        A   8   4.035   8.045 -30.251
   87    H62    A   8           H62        A   8   2.462   8.123 -29.489
   88    H2     A   8           H2         A   8   3.341   6.991 -34.554
   89    H5'    G   9           H5'        G   9  -1.836   2.802 -35.685
   90   H5''    G   9          H5''        G   9  -1.817   1.034 -35.538
   91    H4'    G   9           H4'        G   9   0.253   1.698 -36.459
   92    H3'    G   9           H3'        G   9   0.546   0.873 -33.579
   93    H2'    G   9           H2'        G   9   2.903   1.260 -33.809
   94   HO2'    G   9          HO2'        G   9   3.863   1.019 -35.692
   95    H1'    G   9           H1'        G   9   2.616   3.636 -35.340
   96    H8     G   9           H8         G   9   0.103   3.675 -32.597
   97    H1     G   9           H1         G   9   5.992   5.361 -30.669
   98    H21    G   9           H21        G   9   7.457   4.915 -32.240
   99    H22    G   9           H22        G   9   7.003   4.197 -33.770
  100    H5'    G  10           H5'        G  10   3.428  -1.036 -35.506
  101   H5''    G  10          H5''        G  10   3.480  -2.780 -35.179
  102    H4'    G  10           H4'        G  10   5.644  -1.929 -34.776
  103    H3'    G  10           H3'        G  10   4.187  -2.540 -32.214
  104    H2'    G  10           H2'        G  10   6.145  -1.865 -31.026
  105   HO2'    G  10          HO2'        G  10   8.049  -2.288 -31.858
  106    H1'    G  10           H1'        G  10   6.820   0.269 -32.824
  107    H8     G  10           H8         G  10   3.214   0.447 -31.944
  108    H1     G  10           H1         G  10   7.041   2.830 -27.371
  109    H21    G  10           H21        G  10   9.135   2.329 -27.803
  110    H22    G  10           H22        G  10   9.601   1.383 -29.197
  111    H5'    A  11           H5'        A  11   7.199  -5.566 -30.640
  112   H5''    A  11          H5''        A  11   6.572  -6.667 -31.884
  113    H4'    A  11           H4'        A  11   5.095  -7.677 -30.158
  114    H3'    A  11           H3'        A  11   6.535  -5.809 -28.288
  115    H2'    A  11           H2'        A  11   6.439  -7.553 -26.627
  116   HO2'    A  11          HO2'        A  11   5.018  -9.208 -28.449
  117    H1'    A  11           H1'        A  11   7.248  -9.586 -28.383
  118    H8     A  11           H8         A  11   9.158  -6.545 -29.365
  119    H61    A  11           H61        A  11  13.125  -7.861 -24.794
  120    H62    A  11           H62        A  11  12.840  -6.866 -26.204
  121    H2     A  11           H2         A  11   9.532 -10.504 -24.325
  122    H5'    A  12           H5'        A  12   3.669  -6.164 -25.416
  123   H5''    A  12          H5''        A  12   2.861  -4.584 -25.410
  124    H4'    A  12           H4'        A  12   3.507  -4.944 -23.220
  125    H3'    A  12           H3'        A  12   5.358  -3.012 -24.557
  126    H2'    A  12           H2'        A  12   6.570  -2.787 -22.526
  127   HO2'    A  12          HO2'        A  12   4.359  -4.209 -21.446
  128    H1'    A  12           H1'        A  12   6.792  -5.462 -22.006
  129    H8     A  12           H8         A  12   6.647  -4.194 -25.652
  130    H61    A  12           H61        A  12  12.786  -4.982 -25.711
  131    H62    A  12           H62        A  12  11.387  -4.537 -26.661
  132    H2     A  12           H2         A  12  11.302  -5.928 -21.586
  133    H5'    A  13           H5'        A  13   4.217  -1.495 -21.099
  134   H5''    A  13          H5''        A  13   3.839   0.236 -21.097
  135    H4'    A  13           H4'        A  13   5.447  -0.162 -19.426
  136    H3'    A  13           H3'        A  13   6.663   1.245 -21.788
  137    H2'    A  13           H2'        A  13   8.752   1.250 -20.594
  138   HO2'    A  13          HO2'        A  13   7.220   0.148 -18.440
  139    H1'    A  13           H1'        A  13   8.630  -1.469 -20.001
  140    H8     A  13           H8         A  13   6.973  -0.186 -23.237
  141    H61    A  13           H61        A  13  12.087  -2.270 -26.036
  142    H62    A  13           H62        A  13  10.515  -1.539 -26.275
  143    H2     A  13           H2         A  13  12.594  -2.829 -21.614
  144    H5'    A  14           H5'        A  14   7.845   3.262 -18.570
  145   H5''    A  14          H5''        A  14   7.670   5.027 -18.680
  146    H4'    A  14           H4'        A  14   9.926   4.602 -18.212
  147    H3'    A  14           H3'        A  14   9.498   5.372 -21.080
  148    H2'    A  14           H2'        A  14  11.881   5.180 -21.407
  149   HO2'    A  14          HO2'        A  14  11.910   4.879 -18.578
  150    H1'    A  14           H1'        A  14  12.099   2.720 -20.275
  151    H8     A  14           H8         A  14   8.857   3.811 -22.082
  152    H61    A  14           H61        A  14  10.943   0.364 -26.786
  153    H62    A  14           H62        A  14   9.623   1.360 -26.213
  154    H2     A  14           H2         A  14  14.025   0.292 -23.530
  155    H5'    C  15           H5'        C  15  12.271   7.217 -21.136
  156   H5''    C  15          H5''        C  15  12.199   8.870 -21.786
  157    H4'    C  15           H4'        C  15  13.418   7.413 -23.294
  158    H3'    C  15           H3'        C  15  10.778   8.374 -24.379
  159    H2'    C  15           H2'        C  15  11.335   7.229 -26.432
  160   HO2'    C  15          HO2'        C  15  13.839   6.502 -25.281
  161    H1'    C  15           H1'        C  15  12.190   4.882 -25.147
  162    H41    C  15           H41        C  15   5.988   4.071 -26.433
  163    H42    C  15           H42        C  15   5.564   4.930 -24.967
  164    H5     C  15           H5         C  15   7.213   5.990 -23.542
  165    H6     C  15           H6         C  15   9.592   6.444 -23.241
  166    H5'    C  16           H5'        C  16  13.358   8.870 -27.208
  167   H5''    C  16          H5''        C  16  13.386  10.481 -27.953
  168    H4'    C  16           H4'        C  16  13.108   8.879 -29.686
  169    H3'    C  16           H3'        C  16  10.599  10.433 -29.082
  170    H2'    C  16           H2'        C  16   9.552   9.250 -30.917
  171   HO2'    C  16          HO2'        C  16  12.189   8.286 -31.482
  172    H1'    C  16           H1'        C  16  10.671   6.729 -30.227
  173    H41    C  16           H41        C  16   4.868   6.653 -27.644
  174    H42    C  16           H42        C  16   5.298   7.921 -26.517
  175    H5     C  16           H5         C  16   7.462   9.008 -26.521
  176    H6     C  16           H6         C  16   9.648   9.094 -27.599
  177    H5'    U  17           H5'        U  17  10.916  10.745 -33.052
  178   H5''    U  17          H5''        U  17  11.112  12.433 -33.565
  179    H4'    U  17           H4'        U  17   9.412  11.509 -34.903
  180    H3'    U  17           H3'        U  17   8.308  13.316 -32.759
  181    H2'    U  17           H2'        U  17   6.151  12.969 -33.714
  182   HO2'    U  17          HO2'        U  17   6.176  11.591 -35.761
  183    H1'    U  17           H1'        U  17   6.610  10.268 -34.390
  184    H3     U  17           H3         U  17   3.018  10.622 -31.504
  185    H5     U  17           H5         U  17   6.456  10.261 -29.116
  186    H6     U  17           H6         U  17   7.776  10.584 -31.105
  187    H5'    A  18           H5'        A  18   6.604  14.434 -36.050
  188   H5''    A  18          H5''        A  18   6.627  16.171 -36.350
  189    H4'    A  18           H4'        A  18   4.400  15.441 -36.562
  190    H3'    A  18           H3'        A  18   4.854  17.016 -34.046
  191    H2'    A  18           H2'        A  18   2.528  16.790 -33.560
  192   HO2'    A  18          HO2'        A  18   2.403  16.526 -36.295
  193    H1'    A  18           H1'        A  18   2.297  14.134 -34.539
  194    H8     A  18           H8         A  18   5.228  13.920 -32.378
  195    H61    A  18           H61        A  18   1.469  13.898 -27.456
  196    H62    A  18           H62        A  18   3.098  13.598 -28.018
  197    H2     A  18           H2         A  18  -0.935  15.120 -31.038
  198    H5'    U  19           H5'        U  19   1.721  18.491 -36.082
  199   H5''    U  19          H5''        U  19   1.856  20.216 -36.424
  200    H4'    U  19           H4'        U  19  -0.339  19.825 -35.703
  201    H3'    U  19           H3'        U  19   1.300  21.174 -33.577
  202    H2'    U  19           H2'        U  19  -0.692  21.297 -32.264
  203   HO2'    U  19          HO2'        U  19  -1.880  21.047 -34.738
  204    H1'    U  19           H1'        U  19  -1.548  18.696 -32.840
  205    H3     U  19           H3         U  19  -0.360  18.890 -28.449
  206    H5     U  19           H5         U  19   3.232  18.321 -30.550
  207    H6     U  19           H6         U  19   2.004  18.677 -32.591
  208    H5'    G  20           H5'        G  20  -2.240  23.136 -34.358
  209   H5''    G  20          H5''        G  20  -1.996  24.874 -34.574
  210    H4'    G  20           H4'        G  20  -3.858  24.617 -33.186
  211    H3'    G  20           H3'        G  20  -1.446  25.481 -31.618
  212    H2'    G  20           H2'        G  20  -2.869  25.587 -29.696
  213   HO2'    G  20          HO2'        G  20  -5.162  25.220 -29.938
  214    H1'    G  20           H1'        G  20  -4.150  23.158 -30.182
  215    H8     G  20           H8         G  20  -0.579  22.886 -31.193
  216    H1     G  20           H1         G  20  -1.446  22.447 -24.844
  217    H21    G  20           H21        G  20  -3.512  22.977 -24.328
  218    H22    G  20           H22        G  20  -4.691  23.443 -25.535
  219    H5'    U  21           H5'        U  21  -4.472  27.994 -30.617
  220   H5''    U  21          H5''        U  21  -4.041  29.692 -30.882
  221    H4'    U  21           H4'        U  21  -5.006  29.567 -28.755
  222    H3'    U  21           H3'        U  21  -2.016  29.862 -28.553
  223    H2'    U  21           H2'        U  21  -2.306  29.993 -26.181
  224   HO2'    U  21          HO2'        U  21  -5.124  29.926 -26.578
  225    H1'    U  21           H1'        U  21  -4.240  27.989 -26.041
  226    H3     U  21           H3         U  21  -0.382  26.714 -23.882
  227    H5     U  21           H5         U  21  -0.157  25.241 -27.810
  228    H6     U  21           H6         U  21  -2.046  26.631 -28.356
  229    H5'    C  22           H5'        C  22  -3.615  32.479 -26.155
  230   H5''    C  22          H5''        C  22  -2.860  34.078 -26.159
  231    H4'    C  22           H4'        C  22  -2.899  33.257 -23.923
  232    H3'    C  22           H3'        C  22  -0.122  33.236 -25.092
  233    H2'    C  22           H2'        C  22   0.634  32.506 -22.920
  234   HO2'    C  22          HO2'        C  22  -2.017  32.634 -21.918
  235    H1'    C  22           H1'        C  22  -1.399  30.573 -22.623
  236    H41    C  22           H41        C  22   3.592  27.493 -25.015
  237    H42    C  22           H42        C  22   3.091  27.927 -26.634
  238    H5     C  22           H5         C  22   1.250  29.434 -27.082
  239    H6     C  22           H6         C  22  -0.495  30.805 -26.068
  240    H5'    C  23           H5'        C  23   0.159  35.012 -21.540
  241   H5''    C  23          H5''        C  23   0.938  36.605 -21.596
  242    H4'    C  23           H4'        C  23   2.015  35.363 -19.904
  243    H3'    C  23           H3'        C  23   3.691  35.575 -22.392
  244   HO3'    C  23          HO3'        C  23   4.480  37.243 -21.387
  245    H2'    C  23           H2'        C  23   5.428  34.442 -21.209
  246   HO2'    C  23          HO2'        C  23   5.513  35.096 -19.159
  247    H1'    C  23           H1'        C  23   3.723  32.516 -20.068
  248    H41    C  23           H41        C  23   6.183  29.883 -25.289
  249    H42    C  23           H42        C  23   4.885  30.563 -26.244
  250    H5     C  23           H5         C  23   3.243  32.095 -25.328
  251    H6     C  23           H6         C  23   2.535  33.294 -23.323