mlmm-toolkit 0.2.2.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (372) hide show
  1. hessian_ff/__init__.py +50 -0
  2. hessian_ff/analytical_hessian.py +609 -0
  3. hessian_ff/constants.py +46 -0
  4. hessian_ff/forcefield.py +339 -0
  5. hessian_ff/loaders.py +608 -0
  6. hessian_ff/native/Makefile +8 -0
  7. hessian_ff/native/__init__.py +28 -0
  8. hessian_ff/native/analytical_hessian.py +88 -0
  9. hessian_ff/native/analytical_hessian_ext.cpp +258 -0
  10. hessian_ff/native/bonded.py +82 -0
  11. hessian_ff/native/bonded_ext.cpp +640 -0
  12. hessian_ff/native/loader.py +349 -0
  13. hessian_ff/native/nonbonded.py +118 -0
  14. hessian_ff/native/nonbonded_ext.cpp +1150 -0
  15. hessian_ff/prmtop_parmed.py +23 -0
  16. hessian_ff/system.py +107 -0
  17. hessian_ff/terms/__init__.py +14 -0
  18. hessian_ff/terms/angle.py +73 -0
  19. hessian_ff/terms/bond.py +44 -0
  20. hessian_ff/terms/cmap.py +406 -0
  21. hessian_ff/terms/dihedral.py +141 -0
  22. hessian_ff/terms/nonbonded.py +209 -0
  23. hessian_ff/tests/__init__.py +0 -0
  24. hessian_ff/tests/conftest.py +75 -0
  25. hessian_ff/tests/data/small/complex.parm7 +1346 -0
  26. hessian_ff/tests/data/small/complex.pdb +125 -0
  27. hessian_ff/tests/data/small/complex.rst7 +63 -0
  28. hessian_ff/tests/test_coords_input.py +44 -0
  29. hessian_ff/tests/test_energy_force.py +49 -0
  30. hessian_ff/tests/test_hessian.py +137 -0
  31. hessian_ff/tests/test_smoke.py +18 -0
  32. hessian_ff/tests/test_validation.py +40 -0
  33. hessian_ff/workflows.py +889 -0
  34. mlmm/__init__.py +36 -0
  35. mlmm/__main__.py +7 -0
  36. mlmm/_version.py +34 -0
  37. mlmm/add_elem_info.py +374 -0
  38. mlmm/advanced_help.py +91 -0
  39. mlmm/align_freeze_atoms.py +601 -0
  40. mlmm/all.py +3535 -0
  41. mlmm/bond_changes.py +231 -0
  42. mlmm/bool_compat.py +223 -0
  43. mlmm/cli.py +574 -0
  44. mlmm/cli_utils.py +166 -0
  45. mlmm/default_group.py +337 -0
  46. mlmm/defaults.py +467 -0
  47. mlmm/define_layer.py +526 -0
  48. mlmm/dft.py +1041 -0
  49. mlmm/energy_diagram.py +253 -0
  50. mlmm/extract.py +2213 -0
  51. mlmm/fix_altloc.py +464 -0
  52. mlmm/freq.py +1406 -0
  53. mlmm/harmonic_constraints.py +140 -0
  54. mlmm/hessian_cache.py +44 -0
  55. mlmm/hessian_calc.py +174 -0
  56. mlmm/irc.py +638 -0
  57. mlmm/mlmm_calc.py +2262 -0
  58. mlmm/mm_parm.py +945 -0
  59. mlmm/oniom_export.py +1983 -0
  60. mlmm/oniom_import.py +457 -0
  61. mlmm/opt.py +1742 -0
  62. mlmm/path_opt.py +1353 -0
  63. mlmm/path_search.py +2299 -0
  64. mlmm/preflight.py +88 -0
  65. mlmm/py.typed +1 -0
  66. mlmm/pysis_runner.py +45 -0
  67. mlmm/scan.py +1047 -0
  68. mlmm/scan2d.py +1226 -0
  69. mlmm/scan3d.py +1265 -0
  70. mlmm/scan_common.py +184 -0
  71. mlmm/summary_log.py +736 -0
  72. mlmm/trj2fig.py +448 -0
  73. mlmm/tsopt.py +2871 -0
  74. mlmm/utils.py +2309 -0
  75. mlmm/xtb_embedcharge_correction.py +475 -0
  76. mlmm_toolkit-0.2.2.dev0.dist-info/METADATA +1159 -0
  77. mlmm_toolkit-0.2.2.dev0.dist-info/RECORD +372 -0
  78. mlmm_toolkit-0.2.2.dev0.dist-info/WHEEL +5 -0
  79. mlmm_toolkit-0.2.2.dev0.dist-info/entry_points.txt +2 -0
  80. mlmm_toolkit-0.2.2.dev0.dist-info/licenses/LICENSE +674 -0
  81. mlmm_toolkit-0.2.2.dev0.dist-info/top_level.txt +4 -0
  82. pysisyphus/Geometry.py +1667 -0
  83. pysisyphus/LICENSE +674 -0
  84. pysisyphus/TableFormatter.py +63 -0
  85. pysisyphus/TablePrinter.py +74 -0
  86. pysisyphus/__init__.py +12 -0
  87. pysisyphus/calculators/AFIR.py +452 -0
  88. pysisyphus/calculators/AnaPot.py +20 -0
  89. pysisyphus/calculators/AnaPot2.py +48 -0
  90. pysisyphus/calculators/AnaPot3.py +12 -0
  91. pysisyphus/calculators/AnaPot4.py +20 -0
  92. pysisyphus/calculators/AnaPotBase.py +337 -0
  93. pysisyphus/calculators/AnaPotCBM.py +25 -0
  94. pysisyphus/calculators/AtomAtomTransTorque.py +154 -0
  95. pysisyphus/calculators/CFOUR.py +250 -0
  96. pysisyphus/calculators/Calculator.py +844 -0
  97. pysisyphus/calculators/CerjanMiller.py +24 -0
  98. pysisyphus/calculators/Composite.py +123 -0
  99. pysisyphus/calculators/ConicalIntersection.py +171 -0
  100. pysisyphus/calculators/DFTBp.py +430 -0
  101. pysisyphus/calculators/DFTD3.py +66 -0
  102. pysisyphus/calculators/DFTD4.py +84 -0
  103. pysisyphus/calculators/Dalton.py +61 -0
  104. pysisyphus/calculators/Dimer.py +681 -0
  105. pysisyphus/calculators/Dummy.py +20 -0
  106. pysisyphus/calculators/EGO.py +76 -0
  107. pysisyphus/calculators/EnergyMin.py +224 -0
  108. pysisyphus/calculators/ExternalPotential.py +264 -0
  109. pysisyphus/calculators/FakeASE.py +35 -0
  110. pysisyphus/calculators/FourWellAnaPot.py +28 -0
  111. pysisyphus/calculators/FreeEndNEBPot.py +39 -0
  112. pysisyphus/calculators/Gaussian09.py +18 -0
  113. pysisyphus/calculators/Gaussian16.py +726 -0
  114. pysisyphus/calculators/HardSphere.py +159 -0
  115. pysisyphus/calculators/IDPPCalculator.py +49 -0
  116. pysisyphus/calculators/IPIClient.py +133 -0
  117. pysisyphus/calculators/IPIServer.py +234 -0
  118. pysisyphus/calculators/LEPSBase.py +24 -0
  119. pysisyphus/calculators/LEPSExpr.py +139 -0
  120. pysisyphus/calculators/LennardJones.py +80 -0
  121. pysisyphus/calculators/MOPAC.py +219 -0
  122. pysisyphus/calculators/MullerBrownSympyPot.py +51 -0
  123. pysisyphus/calculators/MultiCalc.py +85 -0
  124. pysisyphus/calculators/NFK.py +45 -0
  125. pysisyphus/calculators/OBabel.py +87 -0
  126. pysisyphus/calculators/ONIOMv2.py +1129 -0
  127. pysisyphus/calculators/ORCA.py +893 -0
  128. pysisyphus/calculators/ORCA5.py +6 -0
  129. pysisyphus/calculators/OpenMM.py +88 -0
  130. pysisyphus/calculators/OpenMolcas.py +281 -0
  131. pysisyphus/calculators/OverlapCalculator.py +908 -0
  132. pysisyphus/calculators/Psi4.py +218 -0
  133. pysisyphus/calculators/PyPsi4.py +37 -0
  134. pysisyphus/calculators/PySCF.py +341 -0
  135. pysisyphus/calculators/PyXTB.py +73 -0
  136. pysisyphus/calculators/QCEngine.py +106 -0
  137. pysisyphus/calculators/Rastrigin.py +22 -0
  138. pysisyphus/calculators/Remote.py +76 -0
  139. pysisyphus/calculators/Rosenbrock.py +15 -0
  140. pysisyphus/calculators/SocketCalc.py +97 -0
  141. pysisyphus/calculators/TIP3P.py +111 -0
  142. pysisyphus/calculators/TransTorque.py +161 -0
  143. pysisyphus/calculators/Turbomole.py +965 -0
  144. pysisyphus/calculators/VRIPot.py +37 -0
  145. pysisyphus/calculators/WFOWrapper.py +333 -0
  146. pysisyphus/calculators/WFOWrapper2.py +341 -0
  147. pysisyphus/calculators/XTB.py +418 -0
  148. pysisyphus/calculators/__init__.py +81 -0
  149. pysisyphus/calculators/cosmo_data.py +139 -0
  150. pysisyphus/calculators/parser.py +150 -0
  151. pysisyphus/color.py +19 -0
  152. pysisyphus/config.py +133 -0
  153. pysisyphus/constants.py +65 -0
  154. pysisyphus/cos/AdaptiveNEB.py +230 -0
  155. pysisyphus/cos/ChainOfStates.py +725 -0
  156. pysisyphus/cos/FreeEndNEB.py +25 -0
  157. pysisyphus/cos/FreezingString.py +103 -0
  158. pysisyphus/cos/GrowingChainOfStates.py +71 -0
  159. pysisyphus/cos/GrowingNT.py +309 -0
  160. pysisyphus/cos/GrowingString.py +508 -0
  161. pysisyphus/cos/NEB.py +189 -0
  162. pysisyphus/cos/SimpleZTS.py +64 -0
  163. pysisyphus/cos/__init__.py +22 -0
  164. pysisyphus/cos/stiffness.py +199 -0
  165. pysisyphus/drivers/__init__.py +17 -0
  166. pysisyphus/drivers/afir.py +855 -0
  167. pysisyphus/drivers/barriers.py +271 -0
  168. pysisyphus/drivers/birkholz.py +138 -0
  169. pysisyphus/drivers/cluster.py +318 -0
  170. pysisyphus/drivers/diabatization.py +133 -0
  171. pysisyphus/drivers/merge.py +368 -0
  172. pysisyphus/drivers/merge_mol2.py +322 -0
  173. pysisyphus/drivers/opt.py +375 -0
  174. pysisyphus/drivers/perf.py +91 -0
  175. pysisyphus/drivers/pka.py +52 -0
  176. pysisyphus/drivers/precon_pos_rot.py +669 -0
  177. pysisyphus/drivers/rates.py +480 -0
  178. pysisyphus/drivers/replace.py +219 -0
  179. pysisyphus/drivers/scan.py +212 -0
  180. pysisyphus/drivers/spectrum.py +166 -0
  181. pysisyphus/drivers/thermo.py +31 -0
  182. pysisyphus/dynamics/Gaussian.py +103 -0
  183. pysisyphus/dynamics/__init__.py +20 -0
  184. pysisyphus/dynamics/colvars.py +136 -0
  185. pysisyphus/dynamics/driver.py +297 -0
  186. pysisyphus/dynamics/helpers.py +256 -0
  187. pysisyphus/dynamics/lincs.py +105 -0
  188. pysisyphus/dynamics/mdp.py +364 -0
  189. pysisyphus/dynamics/rattle.py +121 -0
  190. pysisyphus/dynamics/thermostats.py +128 -0
  191. pysisyphus/dynamics/wigner.py +266 -0
  192. pysisyphus/elem_data.py +3473 -0
  193. pysisyphus/exceptions.py +2 -0
  194. pysisyphus/filtertrj.py +69 -0
  195. pysisyphus/helpers.py +623 -0
  196. pysisyphus/helpers_pure.py +649 -0
  197. pysisyphus/init_logging.py +50 -0
  198. pysisyphus/intcoords/Bend.py +69 -0
  199. pysisyphus/intcoords/Bend2.py +25 -0
  200. pysisyphus/intcoords/BondedFragment.py +32 -0
  201. pysisyphus/intcoords/Cartesian.py +41 -0
  202. pysisyphus/intcoords/CartesianCoords.py +140 -0
  203. pysisyphus/intcoords/Coords.py +56 -0
  204. pysisyphus/intcoords/DLC.py +197 -0
  205. pysisyphus/intcoords/DistanceFunction.py +34 -0
  206. pysisyphus/intcoords/DummyImproper.py +70 -0
  207. pysisyphus/intcoords/DummyTorsion.py +72 -0
  208. pysisyphus/intcoords/LinearBend.py +105 -0
  209. pysisyphus/intcoords/LinearDisplacement.py +80 -0
  210. pysisyphus/intcoords/OutOfPlane.py +59 -0
  211. pysisyphus/intcoords/PrimTypes.py +286 -0
  212. pysisyphus/intcoords/Primitive.py +137 -0
  213. pysisyphus/intcoords/RedundantCoords.py +659 -0
  214. pysisyphus/intcoords/RobustTorsion.py +59 -0
  215. pysisyphus/intcoords/Rotation.py +147 -0
  216. pysisyphus/intcoords/Stretch.py +31 -0
  217. pysisyphus/intcoords/Torsion.py +101 -0
  218. pysisyphus/intcoords/Torsion2.py +25 -0
  219. pysisyphus/intcoords/Translation.py +45 -0
  220. pysisyphus/intcoords/__init__.py +61 -0
  221. pysisyphus/intcoords/augment_bonds.py +126 -0
  222. pysisyphus/intcoords/derivatives.py +10512 -0
  223. pysisyphus/intcoords/eval.py +80 -0
  224. pysisyphus/intcoords/exceptions.py +37 -0
  225. pysisyphus/intcoords/findiffs.py +48 -0
  226. pysisyphus/intcoords/generate_derivatives.py +414 -0
  227. pysisyphus/intcoords/helpers.py +235 -0
  228. pysisyphus/intcoords/logging_conf.py +10 -0
  229. pysisyphus/intcoords/mp_derivatives.py +10836 -0
  230. pysisyphus/intcoords/setup.py +962 -0
  231. pysisyphus/intcoords/setup_fast.py +176 -0
  232. pysisyphus/intcoords/update.py +272 -0
  233. pysisyphus/intcoords/valid.py +89 -0
  234. pysisyphus/interpolate/Geodesic.py +93 -0
  235. pysisyphus/interpolate/IDPP.py +55 -0
  236. pysisyphus/interpolate/Interpolator.py +116 -0
  237. pysisyphus/interpolate/LST.py +70 -0
  238. pysisyphus/interpolate/Redund.py +152 -0
  239. pysisyphus/interpolate/__init__.py +9 -0
  240. pysisyphus/interpolate/helpers.py +34 -0
  241. pysisyphus/io/__init__.py +22 -0
  242. pysisyphus/io/aomix.py +178 -0
  243. pysisyphus/io/cjson.py +24 -0
  244. pysisyphus/io/crd.py +101 -0
  245. pysisyphus/io/cube.py +220 -0
  246. pysisyphus/io/fchk.py +184 -0
  247. pysisyphus/io/hdf5.py +49 -0
  248. pysisyphus/io/hessian.py +72 -0
  249. pysisyphus/io/mol2.py +146 -0
  250. pysisyphus/io/molden.py +293 -0
  251. pysisyphus/io/orca.py +189 -0
  252. pysisyphus/io/pdb.py +269 -0
  253. pysisyphus/io/psf.py +79 -0
  254. pysisyphus/io/pubchem.py +31 -0
  255. pysisyphus/io/qcschema.py +34 -0
  256. pysisyphus/io/sdf.py +29 -0
  257. pysisyphus/io/xyz.py +61 -0
  258. pysisyphus/io/zmat.py +175 -0
  259. pysisyphus/irc/DWI.py +108 -0
  260. pysisyphus/irc/DampedVelocityVerlet.py +134 -0
  261. pysisyphus/irc/Euler.py +22 -0
  262. pysisyphus/irc/EulerPC.py +345 -0
  263. pysisyphus/irc/GonzalezSchlegel.py +187 -0
  264. pysisyphus/irc/IMKMod.py +164 -0
  265. pysisyphus/irc/IRC.py +878 -0
  266. pysisyphus/irc/IRCDummy.py +10 -0
  267. pysisyphus/irc/Instanton.py +307 -0
  268. pysisyphus/irc/LQA.py +53 -0
  269. pysisyphus/irc/ModeKill.py +136 -0
  270. pysisyphus/irc/ParamPlot.py +53 -0
  271. pysisyphus/irc/RK4.py +36 -0
  272. pysisyphus/irc/__init__.py +31 -0
  273. pysisyphus/irc/initial_displ.py +219 -0
  274. pysisyphus/linalg.py +411 -0
  275. pysisyphus/line_searches/Backtracking.py +88 -0
  276. pysisyphus/line_searches/HagerZhang.py +184 -0
  277. pysisyphus/line_searches/LineSearch.py +232 -0
  278. pysisyphus/line_searches/StrongWolfe.py +108 -0
  279. pysisyphus/line_searches/__init__.py +9 -0
  280. pysisyphus/line_searches/interpol.py +15 -0
  281. pysisyphus/modefollow/NormalMode.py +40 -0
  282. pysisyphus/modefollow/__init__.py +10 -0
  283. pysisyphus/modefollow/davidson.py +199 -0
  284. pysisyphus/modefollow/lanczos.py +95 -0
  285. pysisyphus/optimizers/BFGS.py +99 -0
  286. pysisyphus/optimizers/BacktrackingOptimizer.py +113 -0
  287. pysisyphus/optimizers/ConjugateGradient.py +98 -0
  288. pysisyphus/optimizers/CubicNewton.py +75 -0
  289. pysisyphus/optimizers/FIRE.py +113 -0
  290. pysisyphus/optimizers/HessianOptimizer.py +1176 -0
  291. pysisyphus/optimizers/LBFGS.py +228 -0
  292. pysisyphus/optimizers/LayerOpt.py +411 -0
  293. pysisyphus/optimizers/MicroOptimizer.py +169 -0
  294. pysisyphus/optimizers/NCOptimizer.py +90 -0
  295. pysisyphus/optimizers/Optimizer.py +1084 -0
  296. pysisyphus/optimizers/PreconLBFGS.py +260 -0
  297. pysisyphus/optimizers/PreconSteepestDescent.py +7 -0
  298. pysisyphus/optimizers/QuickMin.py +74 -0
  299. pysisyphus/optimizers/RFOptimizer.py +181 -0
  300. pysisyphus/optimizers/RSA.py +99 -0
  301. pysisyphus/optimizers/StabilizedQNMethod.py +248 -0
  302. pysisyphus/optimizers/SteepestDescent.py +23 -0
  303. pysisyphus/optimizers/StringOptimizer.py +173 -0
  304. pysisyphus/optimizers/__init__.py +41 -0
  305. pysisyphus/optimizers/closures.py +301 -0
  306. pysisyphus/optimizers/cls_map.py +58 -0
  307. pysisyphus/optimizers/exceptions.py +6 -0
  308. pysisyphus/optimizers/gdiis.py +280 -0
  309. pysisyphus/optimizers/guess_hessians.py +311 -0
  310. pysisyphus/optimizers/hessian_updates.py +355 -0
  311. pysisyphus/optimizers/poly_fit.py +285 -0
  312. pysisyphus/optimizers/precon.py +153 -0
  313. pysisyphus/optimizers/restrict_step.py +24 -0
  314. pysisyphus/pack.py +172 -0
  315. pysisyphus/peakdetect.py +948 -0
  316. pysisyphus/plot.py +1031 -0
  317. pysisyphus/run.py +2106 -0
  318. pysisyphus/socket_helper.py +74 -0
  319. pysisyphus/stocastic/FragmentKick.py +132 -0
  320. pysisyphus/stocastic/Kick.py +81 -0
  321. pysisyphus/stocastic/Pipeline.py +303 -0
  322. pysisyphus/stocastic/__init__.py +21 -0
  323. pysisyphus/stocastic/align.py +127 -0
  324. pysisyphus/testing.py +96 -0
  325. pysisyphus/thermo.py +156 -0
  326. pysisyphus/trj.py +824 -0
  327. pysisyphus/tsoptimizers/RSIRFOptimizer.py +56 -0
  328. pysisyphus/tsoptimizers/RSPRFOptimizer.py +182 -0
  329. pysisyphus/tsoptimizers/TRIM.py +59 -0
  330. pysisyphus/tsoptimizers/TSHessianOptimizer.py +463 -0
  331. pysisyphus/tsoptimizers/__init__.py +23 -0
  332. pysisyphus/wavefunction/Basis.py +239 -0
  333. pysisyphus/wavefunction/DIIS.py +76 -0
  334. pysisyphus/wavefunction/__init__.py +25 -0
  335. pysisyphus/wavefunction/build_ext.py +42 -0
  336. pysisyphus/wavefunction/cart2sph.py +190 -0
  337. pysisyphus/wavefunction/diabatization.py +304 -0
  338. pysisyphus/wavefunction/excited_states.py +435 -0
  339. pysisyphus/wavefunction/gen_ints.py +1811 -0
  340. pysisyphus/wavefunction/helpers.py +104 -0
  341. pysisyphus/wavefunction/ints/__init__.py +0 -0
  342. pysisyphus/wavefunction/ints/boys.py +193 -0
  343. pysisyphus/wavefunction/ints/boys_table_N_64_xasym_27.1_step_0.01.npy +0 -0
  344. pysisyphus/wavefunction/ints/cart_gto3d.py +176 -0
  345. pysisyphus/wavefunction/ints/coulomb3d.py +25928 -0
  346. pysisyphus/wavefunction/ints/diag_quadrupole3d.py +10036 -0
  347. pysisyphus/wavefunction/ints/dipole3d.py +8762 -0
  348. pysisyphus/wavefunction/ints/int2c2e3d.py +7198 -0
  349. pysisyphus/wavefunction/ints/int3c2e3d_sph.py +65040 -0
  350. pysisyphus/wavefunction/ints/kinetic3d.py +8240 -0
  351. pysisyphus/wavefunction/ints/ovlp3d.py +3777 -0
  352. pysisyphus/wavefunction/ints/quadrupole3d.py +15054 -0
  353. pysisyphus/wavefunction/ints/self_ovlp3d.py +198 -0
  354. pysisyphus/wavefunction/localization.py +458 -0
  355. pysisyphus/wavefunction/multipole.py +159 -0
  356. pysisyphus/wavefunction/normalization.py +36 -0
  357. pysisyphus/wavefunction/pop_analysis.py +134 -0
  358. pysisyphus/wavefunction/shells.py +1171 -0
  359. pysisyphus/wavefunction/wavefunction.py +504 -0
  360. pysisyphus/wrapper/__init__.py +11 -0
  361. pysisyphus/wrapper/exceptions.py +2 -0
  362. pysisyphus/wrapper/jmol.py +120 -0
  363. pysisyphus/wrapper/mwfn.py +169 -0
  364. pysisyphus/wrapper/packmol.py +71 -0
  365. pysisyphus/xyzloader.py +168 -0
  366. pysisyphus/yaml_mods.py +45 -0
  367. thermoanalysis/LICENSE +674 -0
  368. thermoanalysis/QCData.py +244 -0
  369. thermoanalysis/__init__.py +0 -0
  370. thermoanalysis/config.py +3 -0
  371. thermoanalysis/constants.py +20 -0
  372. thermoanalysis/thermo.py +1011 -0
@@ -0,0 +1,1346 @@
1
+ %VERSION VERSION_STAMP = V0001.000 DATE = 02/12/26 16:15:45
2
+ %FLAG TITLE
3
+ %FORMAT(20a4)
4
+ default_name
5
+ %FLAG POINTERS
6
+ %FORMAT(10I8)
7
+ 122 18 59 62 129 84 271 225 0 0
8
+ 643 8 62 84 225 44 94 75 29 0
9
+ 0 0 0 0 0 0 0 0 24 0
10
+ 0
11
+ %FLAG ATOM_NAME
12
+ %FORMAT(20a4)
13
+ N H1 H2 H3 CA HA2 HA3 C O N H CA HA CB HB CG2 HG21HG22HG23CG1
14
+ HG12HG13CD1 HD11HD12HD13C O N H CA HA CB HB2 HB3 CG HG2 HG3 CD HD2
15
+ HD3 NE HE CZ NH1 HH11HH12NH2 HH21HH22C O N H CA HA2 HA3 C O N
16
+ H CA HA CB HB1 HB2 HB3 C O N H CA HA CB HB CG2 HG21HG22HG23OG1
17
+ HG1 C O N H CA HA CB HB CG2 HG21HG22HG23OG1 HG1 C O OXT C1 C2
18
+ C3 C4 O4 C5 C6 C7 O71 O72 C8 C1' O1' C2' O'L O'M HO4 H2 H3 H4 H5 H6
19
+ H7 H8
20
+ %FLAG CHARGE
21
+ %FORMAT(5E16.8)
22
+ 5.36282289E+00 2.99210166E+00 2.99210166E+00 2.99210166E+00 -1.82223000E-01
23
+ 1.63089585E+00 1.63089585E+00 1.12304035E+01 -1.04268001E+01 -7.57501011E+00
24
+ 4.95464337E+00 -1.08787131E+00 1.58351787E+00 2.37436569E+00 3.40757010E-01
25
+ -5.83842492E+00 1.60720686E+00 1.60720686E+00 1.60720686E+00 -7.83558900E-01
26
+ 4.30046280E-01 4.30046280E-01 -1.20267180E+00 3.38934780E-01 3.38934780E-01
27
+ 3.38934780E-01 1.08841798E+01 -1.03484442E+01 -6.33953817E+00 5.00566581E+00
28
+ -4.80522051E+00 2.84267880E+00 -1.27556100E-02 5.95869210E-01 5.95869210E-01
29
+ 7.10669700E-01 5.19335550E-01 5.19335550E-01 8.85603780E-01 1.25187201E+00
30
+ 1.25187201E+00 -9.64870785E+00 6.29762688E+00 1.47163295E+01 -1.57203782E+01
31
+ 8.15994594E+00 8.15994594E+00 -1.57203782E+01 8.15994594E+00 8.15994594E+00
32
+ 1.33769904E+01 -1.07402236E+01 -7.57501011E+00 4.95464337E+00 -4.59201960E-01
33
+ 1.27191654E+00 1.27191654E+00 1.08841798E+01 -1.03484442E+01 -7.57501011E+00
34
+ 4.95464337E+00 6.14091510E-01 1.49969529E+00 -3.32556975E+00 1.09880469E+00
35
+ 1.09880469E+00 1.09880469E+00 1.08841798E+01 -1.03484442E+01 -7.57501011E+00
36
+ 4.95464337E+00 -7.08847470E-01 1.83498561E+00 6.65842842E+00 7.83558900E-02
37
+ -4.44259674E+00 1.16987166E+00 1.16987166E+00 1.16987166E+00 -1.23200970E+01
38
+ 7.47478746E+00 1.08841798E+01 -1.03484442E+01 -6.96274083E+00 4.88539863E+00
39
+ -4.40979660E+00 2.19943161E+00 5.51224575E+00 1.42133940E-01 -3.37659219E+00
40
+ 1.06782678E+00 1.06782678E+00 1.06782678E+00 -1.18372061E+01 7.50576537E+00
41
+ 1.42316163E+01 -1.46580181E+01 -1.46580181E+01 -2.01538638E+00 -1.60720686E+00
42
+ -4.22210691E+00 3.47134815E+00 -1.14399599E+01 -4.22210691E+00 -1.60720686E+00
43
+ 1.68847832E+01 -1.54853105E+01 -1.54853105E+01 -2.68596702E+00 8.71208163E+00
44
+ -1.11174252E+01 1.54998884E+01 -1.52848652E+01 -1.52848652E+01 6.79691790E+00
45
+ 2.56023315E+00 1.75845195E+00 1.75845195E+00 2.56023315E+00 1.06964901E+00
46
+ 1.06964901E+00 1.87143021E+00
47
+ %FLAG ATOMIC_NUMBER
48
+ %FORMAT(10I8)
49
+ 7 1 1 1 6 1 1 6 8 7
50
+ 1 6 1 6 1 6 1 1 1 6
51
+ 1 1 6 1 1 1 6 8 7 1
52
+ 6 1 6 1 1 6 1 1 6 1
53
+ 1 7 1 6 7 1 1 7 1 1
54
+ 6 8 7 1 6 1 1 6 8 7
55
+ 1 6 1 6 1 1 1 6 8 7
56
+ 1 6 1 6 1 6 1 1 1 8
57
+ 1 6 8 7 1 6 1 6 1 6
58
+ 1 1 1 8 1 6 8 8 6 6
59
+ 6 6 8 6 6 6 8 8 6 6
60
+ 8 6 8 8 1 1 1 1 1 1
61
+ 1 1
62
+ %FLAG MASS
63
+ %FORMAT(5E16.8)
64
+ 1.40100000E+01 1.00800000E+00 1.00800000E+00 1.00800000E+00 1.20100000E+01
65
+ 1.00800000E+00 1.00800000E+00 1.20100000E+01 1.60000000E+01 1.40100000E+01
66
+ 1.00800000E+00 1.20100000E+01 1.00800000E+00 1.20100000E+01 1.00800000E+00
67
+ 1.20100000E+01 1.00800000E+00 1.00800000E+00 1.00800000E+00 1.20100000E+01
68
+ 1.00800000E+00 1.00800000E+00 1.20100000E+01 1.00800000E+00 1.00800000E+00
69
+ 1.00800000E+00 1.20100000E+01 1.60000000E+01 1.40100000E+01 1.00800000E+00
70
+ 1.20100000E+01 1.00800000E+00 1.20100000E+01 1.00800000E+00 1.00800000E+00
71
+ 1.20100000E+01 1.00800000E+00 1.00800000E+00 1.20100000E+01 1.00800000E+00
72
+ 1.00800000E+00 1.40100000E+01 1.00800000E+00 1.20100000E+01 1.40100000E+01
73
+ 1.00800000E+00 1.00800000E+00 1.40100000E+01 1.00800000E+00 1.00800000E+00
74
+ 1.20100000E+01 1.60000000E+01 1.40100000E+01 1.00800000E+00 1.20100000E+01
75
+ 1.00800000E+00 1.00800000E+00 1.20100000E+01 1.60000000E+01 1.40100000E+01
76
+ 1.00800000E+00 1.20100000E+01 1.00800000E+00 1.20100000E+01 1.00800000E+00
77
+ 1.00800000E+00 1.00800000E+00 1.20100000E+01 1.60000000E+01 1.40100000E+01
78
+ 1.00800000E+00 1.20100000E+01 1.00800000E+00 1.20100000E+01 1.00800000E+00
79
+ 1.20100000E+01 1.00800000E+00 1.00800000E+00 1.00800000E+00 1.60000000E+01
80
+ 1.00800000E+00 1.20100000E+01 1.60000000E+01 1.40100000E+01 1.00800000E+00
81
+ 1.20100000E+01 1.00800000E+00 1.20100000E+01 1.00800000E+00 1.20100000E+01
82
+ 1.00800000E+00 1.00800000E+00 1.00800000E+00 1.60000000E+01 1.00800000E+00
83
+ 1.20100000E+01 1.60000000E+01 1.60000000E+01 1.20100000E+01 1.20100000E+01
84
+ 1.20100000E+01 1.20100000E+01 1.60000000E+01 1.20100000E+01 1.20100000E+01
85
+ 1.20100000E+01 1.60000000E+01 1.60000000E+01 1.20100000E+01 1.20100000E+01
86
+ 1.60000000E+01 1.20100000E+01 1.60000000E+01 1.60000000E+01 1.00800000E+00
87
+ 1.00800000E+00 1.00800000E+00 1.00800000E+00 1.00800000E+00 1.00800000E+00
88
+ 1.00800000E+00 1.00800000E+00
89
+ %FLAG ATOM_TYPE_INDEX
90
+ %FORMAT(10I8)
91
+ 1 2 2 2 3 4 4 5 6 1
92
+ 2 5 7 3 8 3 8 8 8 3
93
+ 8 8 3 8 8 8 5 6 1 2
94
+ 5 7 3 8 8 3 8 8 3 7
95
+ 7 1 2 5 1 2 2 1 2 2
96
+ 5 6 1 2 5 7 7 5 6 1
97
+ 2 5 7 3 8 8 8 5 6 1
98
+ 2 5 7 3 7 3 8 8 8 9
99
+ 10 5 6 1 2 3 7 3 7 3
100
+ 8 8 8 9 10 5 6 6 11 12
101
+ 12 11 13 12 12 12 14 14 11 12
102
+ 14 12 14 14 15 16 16 16 16 17
103
+ 17 18
104
+ %FLAG NUMBER_EXCLUDED_ATOMS
105
+ %FORMAT(10I8)
106
+ 9 6 5 4 7 4 3 7 3 10
107
+ 4 16 7 15 9 8 3 2 1 7
108
+ 5 4 3 2 1 1 7 3 10 4
109
+ 13 7 12 6 5 9 5 4 7 4
110
+ 3 8 3 6 5 2 1 2 1 1
111
+ 7 3 7 4 7 4 3 7 3 10
112
+ 4 10 7 6 3 2 1 7 3 10
113
+ 4 14 7 10 7 6 3 2 1 2
114
+ 1 7 3 10 4 12 7 10 7 6
115
+ 3 2 1 2 1 2 1 1 18 16
116
+ 11 9 6 8 11 8 2 1 9 6
117
+ 5 4 1 1 1 1 1 2 1 1
118
+ 1 1
119
+ %FLAG NONBONDED_PARM_INDEX
120
+ %FORMAT(10I8)
121
+ 1 2 4 7 11 16 22 29 37 46
122
+ 56 67 79 92 106 121 137 154 2 3
123
+ 5 8 12 17 23 30 38 47 57 68
124
+ 80 93 107 122 138 155 4 5 6 9
125
+ 13 18 24 31 39 48 58 69 81 94
126
+ 108 123 139 156 7 8 9 10 14 19
127
+ 25 32 40 49 59 70 82 95 109 124
128
+ 140 157 11 12 13 14 15 20 26 33
129
+ 41 50 60 71 83 96 110 125 141 158
130
+ 16 17 18 19 20 21 27 34 42 51
131
+ 61 72 84 97 111 126 142 159 22 23
132
+ 24 25 26 27 28 35 43 52 62 73
133
+ 85 98 112 127 143 160 29 30 31 32
134
+ 33 34 35 36 44 53 63 74 86 99
135
+ 113 128 144 161 37 38 39 40 41 42
136
+ 43 44 45 54 64 75 87 100 114 129
137
+ 145 162 46 47 48 49 50 51 52 53
138
+ 54 55 65 76 88 101 115 130 146 163
139
+ 56 57 58 59 60 61 62 63 64 65
140
+ 66 77 89 102 116 131 147 164 67 68
141
+ 69 70 71 72 73 74 75 76 77 78
142
+ 90 103 117 132 148 165 79 80 81 82
143
+ 83 84 85 86 87 88 89 90 91 104
144
+ 118 133 149 166 92 93 94 95 96 97
145
+ 98 99 100 101 102 103 104 105 119 134
146
+ 150 167 106 107 108 109 110 111 112 113
147
+ 114 115 116 117 118 119 120 135 151 168
148
+ 121 122 123 124 125 126 127 128 129 130
149
+ 131 132 133 134 135 136 152 169 137 138
150
+ 139 140 141 142 143 144 145 146 147 148
151
+ 149 150 151 152 153 170 154 155 156 157
152
+ 158 159 160 161 162 163 164 165 166 167
153
+ 168 169 170 171
154
+ %FLAG RESIDUE_LABEL
155
+ %FORMAT(20a4)
156
+ GLY ILE ARG GLY ALA THR THR PRE
157
+ %FLAG RESIDUE_POINTER
158
+ %FORMAT(10I8)
159
+ 1 10 29 53 60 70 84 99
160
+ %FLAG BOND_FORCE_CONSTANT
161
+ %FORMAT(5E16.8)
162
+ 5.70000000E+02 4.90000000E+02 3.40000000E+02 3.17000000E+02 4.34000000E+02
163
+ 3.67000000E+02 3.40000000E+02 3.40000000E+02 3.10000000E+02 3.40000000E+02
164
+ 3.10000000E+02 3.10000000E+02 3.40000000E+02 3.10000000E+02 3.17000000E+02
165
+ 4.34000000E+02 3.37000000E+02 4.34000000E+02 4.81000000E+02 3.40000000E+02
166
+ 3.37000000E+02 3.40000000E+02 3.10000000E+02 3.10000000E+02 3.10000000E+02
167
+ 5.53000000E+02 3.40000000E+02 3.20000000E+02 6.56000000E+02 3.40000000E+02
168
+ 3.10000000E+02 3.37000000E+02 5.90600000E+02 2.19370000E+02 2.34850000E+02
169
+ 3.45250000E+02 3.57290000E+02 4.36000000E+02 5.35510000E+02 2.85250000E+02
170
+ 2.44960000E+02 3.42020000E+02 2.33630000E+02 2.23800000E+02
171
+ %FLAG BOND_EQUIL_VALUE
172
+ %FORMAT(5E16.8)
173
+ 1.22900000E+00 1.33500000E+00 1.09000000E+00 1.52200000E+00 1.01000000E+00
174
+ 1.47100000E+00 1.09000000E+00 1.09000000E+00 1.52600000E+00 1.09000000E+00
175
+ 1.52600000E+00 1.52600000E+00 1.09000000E+00 1.52600000E+00 1.52200000E+00
176
+ 1.01000000E+00 1.44900000E+00 1.01000000E+00 1.34000000E+00 1.09000000E+00
177
+ 1.46300000E+00 1.09000000E+00 1.52600000E+00 1.52600000E+00 1.52600000E+00
178
+ 9.60000000E-01 1.09000000E+00 1.41000000E+00 1.25000000E+00 1.09000000E+00
179
+ 1.52600000E+00 1.44900000E+00 1.21900000E+00 1.54940000E+00 1.52700000E+00
180
+ 1.09620000E+00 1.08820000E+00 1.33790000E+00 9.72500000E-01 1.42410000E+00
181
+ 1.51330000E+00 1.09840000E+00 1.52870000E+00 1.54280000E+00
182
+ %FLAG ANGLE_FORCE_CONSTANT
183
+ %FORMAT(5E16.8)
184
+ 8.00000000E+01 5.00000000E+01 5.00000000E+01 5.00000000E+01 3.50000000E+01
185
+ 8.00000000E+01 7.00000000E+01 5.00000000E+01 3.50000000E+01 5.00000000E+01
186
+ 8.00000000E+01 3.50000000E+01 5.00000000E+01 3.50000000E+01 5.00000000E+01
187
+ 4.00000000E+01 5.00000000E+01 5.00000000E+01 6.30000000E+01 5.00000000E+01
188
+ 5.00000000E+01 4.00000000E+01 5.00000000E+01 5.00000000E+01 5.00000000E+01
189
+ 4.00000000E+01 4.00000000E+01 8.00000000E+01 7.00000000E+01 5.00000000E+01
190
+ 5.00000000E+01 8.00000000E+01 6.30000000E+01 3.50000000E+01 7.00000000E+01
191
+ 5.00000000E+01 5.00000000E+01 3.50000000E+01 5.00000000E+01 5.00000000E+01
192
+ 5.00000000E+01 3.50000000E+01 5.00000000E+01 8.00000000E+01 6.30000000E+01
193
+ 4.00000000E+01 5.00000000E+01 5.00000000E+01 4.00000000E+01 8.00000000E+01
194
+ 3.50000000E+01 6.30000000E+01 5.00000000E+01 5.00000000E+01 8.00000000E+01
195
+ 5.00000000E+01 5.00000000E+01 5.00000000E+01 5.00000000E+01 5.50000000E+01
196
+ 5.00000000E+01 5.00000000E+01 8.00000000E+01 6.30000000E+01 5.00000000E+01
197
+ 5.00000000E+01 5.00000000E+01 4.00000000E+01 5.00000000E+01 7.00000000E+01
198
+ 5.00000000E+01 5.00000000E+01 8.00000000E+01 6.30000000E+01 3.58000000E+01
199
+ 1.04940000E+02 7.62300000E+01 4.36300000E+01 7.64500000E+01 5.87800000E+01
200
+ 6.09300000E+01 6.07500000E+01 6.09300000E+01 4.63700000E+01 4.39000000E+01
201
+ 7.73000000E+01 5.63900000E+01 4.25500000E+01 6.52300000E+01 6.12400000E+01
202
+ 6.08800000E+01 7.65600000E+01 5.98300000E+01 4.28900000E+01
203
+ %FLAG ANGLE_EQUIL_VALUE
204
+ %FORMAT(5E16.8)
205
+ 2.14501057E+00 2.09439600E+00 2.12755727E+00 1.91113635E+00 1.91113635E+00
206
+ 2.10137732E+00 2.03505478E+00 1.91113635E+00 1.91113635E+00 1.91113635E+00
207
+ 1.94080696E+00 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.91113635E+00
208
+ 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.93906163E+00 1.91113635E+00
209
+ 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.91113635E+00
210
+ 1.91113635E+00 1.91113635E+00 2.10137732E+00 2.03505478E+00 2.06018753E+00
211
+ 1.91113635E+00 1.91462701E+00 1.92160833E+00 2.09439600E+00 2.09439600E+00
212
+ 2.09439600E+00 1.91113635E+00 1.91113635E+00 2.06647072E+00 2.15024656E+00
213
+ 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.94080696E+00 1.93906163E+00
214
+ 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.91462701E+00
215
+ 1.91113635E+00 1.93906163E+00 1.91113635E+00 1.91113635E+00 1.91462701E+00
216
+ 2.12755727E+00 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.89368305E+00
217
+ 1.91113635E+00 1.91113635E+00 2.19911580E+00 1.93906163E+00 1.91113635E+00
218
+ 1.91113635E+00 1.91113635E+00 1.91113635E+00 1.91113635E+00 2.04203610E+00
219
+ 2.06018753E+00 1.91113635E+00 1.91462701E+00 1.92160833E+00 1.88024401E+00
220
+ 2.27172153E+00 2.10818411E+00 1.90153704E+00 2.14501057E+00 2.03191319E+00
221
+ 1.89699918E+00 1.94534482E+00 1.91584874E+00 2.10120279E+00 1.90764569E+00
222
+ 1.92091020E+00 1.91916487E+00 2.03453118E+00 1.86872483E+00 2.14710497E+00
223
+ 1.95703853E+00 2.13523672E+00 1.96960490E+00 1.93085858E+00
224
+ %FLAG DIHEDRAL_FORCE_CONSTANT
225
+ %FORMAT(5E16.8)
226
+ 2.00000000E+00 2.50000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
227
+ 0.00000000E+00 1.55555556E-01 1.50000000E-01 1.62000000E-01 7.35000000E-01
228
+ 1.13000000E-01 1.15000000E-01 1.60000000E-01 4.06000000E-01 2.89000000E-01
229
+ 1.48000000E-01 1.12000000E-01 2.02000000E-01 7.70000000E-02 1.07000000E-01
230
+ 2.24000000E-01 0.00000000E+00 4.47000000E-01 5.30000000E-02 2.30000000E-01
231
+ 3.37000000E-01 2.16000000E-01 1.00000000E-03 3.10000000E-01 1.44000000E-01
232
+ 9.70000000E-02 0.00000000E+00 0.00000000E+00 2.40000000E+00 2.00000000E-01
233
+ 2.50000000E-01 1.80000000E-01 1.80000000E+00 8.00000000E-01 2.70000000E-01
234
+ 4.20000000E-01 6.97000000E-01 1.19000000E-01 3.15000000E-01 1.56000000E-01
235
+ 2.50000000E-01 6.43000000E-01 7.90000000E-02 2.36000000E-01 4.80000000E-02
236
+ 1.66666667E-01 6.00000000E-03 2.51000000E-01 1.30000000E-02 6.74000000E-01
237
+ 6.00000000E-03 9.50000000E-02 6.65000000E+00 1.23000000E-01 4.03000000E+00
238
+ 3.66000000E+00 3.00000000E-01 6.80000000E-01 2.00000000E-01 4.40000000E-01
239
+ 1.20000000E+00 3.70000000E-01 2.22222222E-01 1.14000000E+00 1.50000000E-01
240
+ 5.78000000E+00 1.33000000E+00 1.05000000E+01 1.10000000E+00 1.00000000E+00
241
+ %FLAG DIHEDRAL_PERIODICITY
242
+ %FORMAT(5E16.8)
243
+ 1.00000000E+00 2.00000000E+00 2.00000000E+00 1.00000000E+00 3.00000000E+00
244
+ 4.00000000E+00 3.00000000E+00 3.00000000E+00 1.00000000E+00 2.00000000E+00
245
+ 3.00000000E+00 4.00000000E+00 3.00000000E+00 1.00000000E+00 2.00000000E+00
246
+ 3.00000000E+00 4.00000000E+00 1.00000000E+00 2.00000000E+00 3.00000000E+00
247
+ 4.00000000E+00 3.00000000E+00 1.00000000E+00 2.00000000E+00 4.00000000E+00
248
+ 1.00000000E+00 2.00000000E+00 4.00000000E+00 1.00000000E+00 2.00000000E+00
249
+ 4.00000000E+00 1.00000000E+00 2.00000000E+00 2.00000000E+00 1.00000000E+00
250
+ 2.00000000E+00 3.00000000E+00 2.00000000E+00 3.00000000E+00 2.00000000E+00
251
+ 3.00000000E+00 1.00000000E+00 2.00000000E+00 3.00000000E+00 4.00000000E+00
252
+ 1.00000000E+00 1.00000000E+00 2.00000000E+00 3.00000000E+00 4.00000000E+00
253
+ 3.00000000E+00 1.00000000E+00 2.00000000E+00 4.00000000E+00 1.00000000E+00
254
+ 2.00000000E+00 4.00000000E+00 2.00000000E+00 3.00000000E+00 1.00000000E+00
255
+ 2.00000000E+00 2.00000000E+00 1.00000000E+00 2.00000000E+00 3.00000000E+00
256
+ 1.00000000E+00 2.00000000E+00 3.00000000E+00 1.00000000E+00 1.00000000E+00
257
+ 2.00000000E+00 3.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
258
+ %FLAG DIHEDRAL_PHASE
259
+ %FORMAT(5E16.8)
260
+ 0.00000000E+00 3.14159400E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
261
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.14159400E+00
262
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.14159400E+00 3.14159400E+00
263
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.14159400E+00 0.00000000E+00
264
+ 0.00000000E+00 3.14159400E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
265
+ 0.00000000E+00 3.14159400E+00 3.14159400E+00 0.00000000E+00 3.14159400E+00
266
+ 3.14159400E+00 3.14159400E+00 3.14159400E+00 3.14159400E+00 3.14159400E+00
267
+ 3.14159400E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
268
+ 0.00000000E+00 3.14159400E+00 3.14159400E+00 0.00000000E+00 0.00000000E+00
269
+ 0.00000000E+00 0.00000000E+00 3.14159400E+00 0.00000000E+00 0.00000000E+00
270
+ 0.00000000E+00 3.14159400E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
271
+ 0.00000000E+00 0.00000000E+00 3.14159400E+00 0.00000000E+00 0.00000000E+00
272
+ 3.14159400E+00 3.14159400E+00 0.00000000E+00 3.14159400E+00 3.14159400E+00
273
+ 0.00000000E+00 0.00000000E+00 3.14159400E+00 0.00000000E+00 0.00000000E+00
274
+ 3.14159400E+00 3.14159400E+00 3.14159400E+00 3.14159400E+00 3.14159400E+00
275
+ %FLAG SCEE_SCALE_FACTOR
276
+ %FORMAT(5E16.8)
277
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
278
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
279
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
280
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
281
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
282
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
283
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
284
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
285
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
286
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
287
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
288
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
289
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
290
+ 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00 1.20000000E+00
291
+ 1.20000000E+00 1.20000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
292
+ %FLAG SCNB_SCALE_FACTOR
293
+ %FORMAT(5E16.8)
294
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
295
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
296
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
297
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
298
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
299
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
300
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
301
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
302
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
303
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
304
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
305
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
306
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
307
+ 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00 2.00000000E+00
308
+ 2.00000000E+00 2.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
309
+ %FLAG SOLTY
310
+ %FORMAT(5E16.8)
311
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
312
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
313
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
314
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
315
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
316
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
317
+ %FLAG LENNARD_JONES_ACOEF
318
+ %FORMAT(5E16.8)
319
+ 9.44293233E+05 2.12601181E+03 1.39982777E-01 9.95480466E+05 2.56678134E+03
320
+ 1.04308023E+06 2.01791425E+04 9.14716912E+00 2.27401052E+04 2.01823541E+02
321
+ 8.82619071E+05 2.27577561E+03 9.24822270E+05 2.01619733E+04 8.19971662E+05
322
+ 6.06829342E+05 1.02595236E+03 6.47841731E+05 1.12780457E+04 5.74393458E+05
323
+ 3.79876399E+05 6.20665997E+04 5.94667300E+01 6.78771368E+04 8.79040886E+02
324
+ 6.01816484E+04 3.69471530E+04 3.25969625E+03 8.96776989E+04 1.07193646E+02
325
+ 9.71708117E+04 1.41077189E+03 8.61541883E+04 5.44261042E+04 4.98586848E+03
326
+ 7.51607703E+03 7.44975864E+05 1.40467023E+03 7.91544157E+05 1.45985502E+04
327
+ 7.01803794E+05 4.71003287E+05 4.66922514E+04 6.82786631E+04 5.81803229E+05
328
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
329
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
330
+ 9.84684600E+05 2.53456440E+03 1.03184851E+06 2.24743442E+04 9.14863930E+05
331
+ 6.40712560E+05 6.71095195E+04 9.60832554E+04 7.82881336E+05 0.00000000E+00
332
+ 1.02073671E+06 8.11497350E+05 1.94008400E+03 8.53193737E+05 1.78601506E+04
333
+ 7.56463928E+05 5.24402060E+05 5.42099106E+04 7.80065389E+04 6.42430744E+05
334
+ 0.00000000E+00 8.43969952E+05 6.96551276E+05 6.89296946E+05 1.54161417E+03
335
+ 7.26877088E+05 1.46820101E+04 6.44468276E+05 4.42689091E+05 4.52250254E+04
336
+ 6.53734853E+04 5.43595012E+05 0.00000000E+00 7.18991463E+05 5.92438683E+05
337
+ 5.03152404E+05 5.99897901E+05 1.11043914E+03 6.37913494E+05 1.16505362E+04
338
+ 5.65590822E+05 3.78641356E+05 3.74148715E+04 5.47803235E+04 4.68011805E+05
339
+ 0.00000000E+00 6.30925504E+05 5.17507491E+05 4.37717034E+05 3.76435470E+05
340
+ 2.40872585E+02 2.48828086E-03 3.07630260E+02 4.94997704E-01 2.72753051E+02
341
+ 1.02912387E+02 4.62642987E+00 9.22638396E+00 1.47660648E+02 0.00000000E+00
342
+ 3.03553352E+02 2.25372434E+02 1.74176419E+02 1.15813907E+02 1.10360882E-05
343
+ 8.64679274E+04 1.00417924E+02 9.38067954E+04 1.34169202E+03 8.31715633E+04
344
+ 5.23449021E+04 4.77162373E+03 7.20681791E+03 6.57310418E+04 0.00000000E+00
345
+ 9.27554496E+04 7.52549148E+04 6.30298721E+04 5.27277400E+04 8.53132435E+00
346
+ 6.90855956E+03 9.33217616E+04 1.05103439E+02 1.01372942E+05 1.42703904E+03
347
+ 8.98799076E+04 5.63419090E+04 5.10916075E+03 7.73223568E+03 7.08225575E+04
348
+ 0.00000000E+00 1.00235148E+05 8.12662403E+04 6.80216136E+04 5.68021765E+04
349
+ 8.80612241E+00 7.41026906E+03 7.94617769E+03 6.43853349E+04 5.78352684E+01
350
+ 7.06006146E+04 8.84544347E+02 6.25963552E+04 3.81142515E+04 3.32626784E+03
351
+ 5.10916075E+03 4.82692694E+04 0.00000000E+00 6.97998263E+04 5.63013422E+04
352
+ 4.69084694E+04 3.86646725E+04 4.36660257E+00 4.88692384E+03 5.22955465E+03
353
+ 3.39005767E+03
354
+ %FLAG LENNARD_JONES_BCOEF
355
+ %FORMAT(5E16.8)
356
+ 8.01323529E+02 2.09604198E+01 9.37598976E-02 7.36907417E+02 2.06278363E+01
357
+ 6.75612247E+02 6.45756063E+01 7.57919667E-01 6.13981767E+01 3.56012899E+00
358
+ 6.53361429E+02 1.82891803E+01 5.99015525E+02 5.44372326E+01 5.31102864E+02
359
+ 6.77220874E+02 1.53505284E+01 6.26720080E+02 5.08951803E+01 5.55666448E+02
360
+ 5.64885984E+02 1.13252061E+02 1.93248820E+00 1.06076943E+02 7.42992380E+00
361
+ 9.40505980E+01 9.21192136E+01 1.43076527E+01 1.36131731E+02 2.59456373E+00
362
+ 1.26919150E+02 9.41257003E+00 1.12529845E+02 1.11805549E+02 1.76949863E+01
363
+ 2.17257828E+01 7.50714425E+02 1.79702257E+01 6.93079947E+02 5.79323581E+01
364
+ 6.14502845E+02 6.29300710E+02 1.03606917E+02 1.25287818E+02 6.99746810E+02
365
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
366
+ 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00
367
+ 7.30206155E+02 2.04226110E+01 6.69494459E+02 6.08139360E+01 5.93591333E+02
368
+ 6.20970728E+02 1.05087646E+02 1.25742895E+02 6.86742760E+02 0.00000000E+00
369
+ 6.63431737E+02 6.48597119E+02 1.74825352E+01 5.95658566E+02 5.30440533E+01
370
+ 5.28126496E+02 5.49675335E+02 9.24130897E+01 1.10856114E+02 6.08686716E+02
371
+ 0.00000000E+00 5.90251928E+02 5.24668528E+02 5.88797748E+02 1.53501807E+01
372
+ 5.41546250E+02 4.73716383E+01 4.80149098E+02 4.97456336E+02 8.31409640E+01
373
+ 9.99600502E+01 5.51505564E+02 0.00000000E+00 5.36620538E+02 4.76608379E+02
374
+ 4.32634597E+02 6.15165511E+02 1.45902714E+01 5.68167388E+02 4.72594809E+01
375
+ 5.03752097E+02 5.15240418E+02 8.46911674E+01 1.02477444E+02 5.73100668E+02
376
+ 0.00000000E+00 5.62969425E+02 4.98871431E+02 4.51916854E+02 4.69350655E+02
377
+ 5.21867651E+00 9.24653616E-03 5.28230309E+00 1.30416027E-01 4.68342836E+00
378
+ 3.59619399E+00 3.98705627E-01 5.63047631E-01 4.30971229E+00 0.00000000E+00
379
+ 5.22789272E+00 4.40751799E+00 3.81654050E+00 3.48534600E+00 4.55498033E-04
380
+ 1.34516705E+02 2.52706841E+00 1.25489661E+02 9.23714573E+00 1.11262422E+02
381
+ 1.10338858E+02 1.74198525E+01 2.14083478E+01 1.23703833E+02 0.00000000E+00
382
+ 1.24325688E+02 1.09570372E+02 9.87712192E+01 1.01173582E+02 5.44840215E-01
383
+ 2.10929191E+01 1.48987394E+02 2.75631727E+00 1.39078880E+02 1.01563736E+01
384
+ 1.23310980E+02 1.22044000E+02 1.92174397E+01 2.36414051E+01 1.36896727E+02
385
+ 0.00000000E+00 1.37787728E+02 1.21392023E+02 1.09393126E+02 1.11953944E+02
386
+ 5.90150328E-01 2.32899892E+01 2.57122925E+01 1.23751804E+02 2.04464126E+00
387
+ 1.16065835E+02 7.99614292E+00 1.02907011E+02 1.00379343E+02 1.55059847E+01
388
+ 1.92174397E+01 1.13016701E+02 0.00000000E+00 1.14981426E+02 1.01040256E+02
389
+ 9.08431526E+01 9.23664132E+01 4.15568027E-01 1.89134207E+01 2.08590256E+01
390
+ 1.67944276E+01
391
+ %FLAG BONDS_INC_HYDROGEN
392
+ %FORMAT(10I8)
393
+ 12 15 3 12 18 3 0 3 5 0
394
+ 6 5 0 9 5 66 69 7 66 72
395
+ 7 66 75 7 57 60 8 57 63 8
396
+ 45 48 7 45 51 7 45 54 7 39
397
+ 42 10 33 36 13 27 30 16 141 144
398
+ 18 141 147 18 132 135 18 132 138 18
399
+ 123 126 18 114 117 20 114 120 20 105
400
+ 108 22 105 111 22 96 99 22 96 102
401
+ 22 90 93 13 84 87 16 162 165 13
402
+ 162 168 13 156 159 16 189 192 7 189
403
+ 195 7 189 198 7 183 186 13 177 180
404
+ 16 237 240 26 225 228 7 225 231 7
405
+ 225 234 7 219 222 27 213 216 13 207
406
+ 210 16 279 282 26 267 270 7 267 273
407
+ 7 267 276 7 261 264 27 255 258 30
408
+ 249 252 16 324 357 36 324 360 36 312
409
+ 345 37 309 348 37 306 342 39 303 363
410
+ 42 300 351 37 297 354 37
411
+ %FLAG BONDS_WITHOUT_HYDROGEN
412
+ %FORMAT(10I8)
413
+ 21 24 1 21 27 2 12 21 4 0
414
+ 12 6 78 81 1 78 84 2 57 66
415
+ 9 39 45 11 39 57 12 33 39 14
416
+ 33 78 15 27 33 17 150 153 1 150
417
+ 156 2 129 132 19 129 141 19 123 129
418
+ 19 114 123 21 105 114 23 96 105 23
419
+ 90 96 24 90 150 15 84 90 17 171
420
+ 174 1 171 177 2 162 171 15 156 162
421
+ 17 201 204 1 201 207 2 183 189 25
422
+ 183 201 15 177 183 17 243 246 1 243
423
+ 249 2 219 225 11 219 237 28 213 219
424
+ 14 213 243 15 207 213 17 285 288 29
425
+ 285 291 29 261 267 11 261 279 28 255
426
+ 261 31 255 285 4 249 255 32 333 336
427
+ 33 333 339 33 327 330 33 327 333 34
428
+ 324 327 35 315 318 33 315 321 33 309
429
+ 312 38 303 306 40 303 309 41 300 303
430
+ 41 297 300 38 294 297 41 294 312 41
431
+ 294 315 43 294 324 44
432
+ %FLAG ANGLES_INC_HYDROGEN
433
+ %FORMAT(10I8)
434
+ 21 27 30 2 18 12 21 4 15 12
435
+ 18 5 15 12 21 4 9 0 12 8
436
+ 6 0 9 9 6 0 12 8 3 0
437
+ 6 9 3 0 9 9 3 0 12 8
438
+ 0 12 15 10 0 12 18 10 78 84
439
+ 87 2 72 66 75 12 69 66 72 12
440
+ 69 66 75 12 63 57 66 13 60 57
441
+ 63 14 60 57 66 13 57 66 69 15
442
+ 57 66 72 15 57 66 75 15 51 45
443
+ 54 12 48 45 51 12 48 45 54 12
444
+ 42 39 45 17 42 39 57 18 39 45
445
+ 48 20 39 45 51 20 39 45 54 20
446
+ 39 57 60 21 39 57 63 21 36 33
447
+ 39 23 36 33 78 24 33 39 42 25
448
+ 30 27 33 30 27 33 36 31 150 156
449
+ 159 2 144 141 147 34 135 132 138 34
450
+ 129 132 135 36 129 132 138 36 129 141
451
+ 144 36 129 141 147 36 126 123 129 36
452
+ 120 114 123 37 117 114 120 38 117 114
453
+ 123 37 114 123 126 39 111 105 114 41
454
+ 108 105 111 42 108 105 114 41 105 114
455
+ 117 43 105 114 120 43 102 96 105 41
456
+ 99 96 102 42 99 96 105 41 96 105
457
+ 108 41 96 105 111 41 93 90 96 47
458
+ 93 90 150 24 90 96 99 48 90 96
459
+ 102 48 87 84 90 30 84 90 93 31
460
+ 171 177 180 2 168 162 171 24 165 162
461
+ 168 51 165 162 171 24 159 156 162 30
462
+ 156 162 165 31 156 162 168 31 201 207
463
+ 210 2 195 189 198 12 192 189 195 12
464
+ 192 189 198 12 186 183 189 53 186 183
465
+ 201 24 183 189 192 54 183 189 195 54
466
+ 183 189 198 54 180 177 183 30 177 183
467
+ 186 31 243 249 252 2 231 225 234 12
468
+ 228 225 231 12 228 225 234 12 222 219
469
+ 225 58 222 219 237 59 219 225 228 20
470
+ 219 225 231 20 219 225 234 20 219 237
471
+ 240 60 216 213 219 23 216 213 243 24
472
+ 213 219 222 61 210 207 213 30 207 213
473
+ 216 31 273 267 276 12 270 267 273 12
474
+ 270 267 276 12 264 261 267 58 264 261
475
+ 279 59 261 267 270 20 261 267 273 20
476
+ 261 267 276 20 261 279 282 60 258 255
477
+ 261 65 258 255 285 66 255 261 264 67
478
+ 252 249 255 71 249 255 258 72 357 324
479
+ 360 75 327 324 357 78 327 324 360 78
480
+ 312 309 348 84 309 303 363 85 309 312
481
+ 345 84 306 303 363 87 303 300 351 88
482
+ 303 306 342 89 303 309 348 88 300 297
483
+ 354 84 300 303 363 85 297 300 351 84
484
+ 294 297 354 88 294 312 345 88 294 324
485
+ 357 94 294 324 360 94
486
+ %FLAG ANGLES_WITHOUT_HYDROGEN
487
+ %FORMAT(10I8)
488
+ 24 21 27 1 21 27 33 3 12 21
489
+ 24 6 12 21 27 7 0 12 21 11
490
+ 81 78 84 1 78 84 90 3 45 39
491
+ 57 16 39 33 78 19 39 57 66 22
492
+ 33 39 45 26 33 39 57 27 33 78
493
+ 81 28 33 78 84 29 27 33 39 32
494
+ 27 33 78 33 153 150 156 1 150 156
495
+ 162 3 132 129 141 35 123 129 132 35
496
+ 123 129 141 35 114 123 129 40 105 114
497
+ 123 44 96 90 150 45 96 105 114 46
498
+ 90 96 105 49 90 150 153 28 90 150
499
+ 156 29 84 90 96 50 84 90 150 33
500
+ 174 171 177 1 171 177 183 3 162 171
501
+ 174 28 162 171 177 29 156 162 171 33
502
+ 204 201 207 1 201 207 213 3 189 183
503
+ 201 52 183 201 204 28 183 201 207 29
504
+ 177 183 189 55 177 183 201 33 246 243
505
+ 249 1 243 249 255 56 225 219 237 57
506
+ 219 213 243 19 213 219 225 26 213 219
507
+ 237 62 213 243 246 28 213 243 249 29
508
+ 207 213 219 32 207 213 243 33 288 285
509
+ 291 63 267 261 279 57 261 255 285 64
510
+ 255 261 267 68 255 261 279 69 255 285
511
+ 288 70 255 285 291 70 249 255 261 73
512
+ 249 255 285 74 336 333 339 76 330 327
513
+ 333 77 327 333 336 77 327 333 339 77
514
+ 324 327 330 79 324 327 333 80 318 315
515
+ 321 76 315 294 324 81 312 294 315 82
516
+ 312 294 324 83 306 303 309 86 303 309
517
+ 312 90 300 303 306 86 300 303 309 91
518
+ 297 294 312 91 297 294 315 82 297 294
519
+ 324 83 297 300 303 90 294 297 300 90
520
+ 294 312 309 90 294 315 318 92 294 315
521
+ 321 92 294 324 327 93
522
+ %FLAG DIHEDRALS_INC_HYDROGEN
523
+ %FORMAT(10I8)
524
+ 24 21 27 30 1 24 21 -27 30 2
525
+ 21 27 33 36 3 18 12 21 24 3
526
+ 18 12 21 27 3 15 12 21 24 3
527
+ 15 12 21 27 3 12 21 27 30 2
528
+ 9 0 12 15 7 9 0 12 18 7
529
+ 9 0 12 21 7 6 0 12 15 7
530
+ 6 0 12 18 7 6 0 12 21 7
531
+ 3 0 12 15 7 3 0 12 18 7
532
+ 3 0 12 21 7 81 78 84 87 1
533
+ 81 78 -84 87 2 78 84 90 93 3
534
+ 63 57 66 69 8 63 57 66 72 8
535
+ 63 57 66 75 8 60 57 66 69 8
536
+ 60 57 66 72 8 60 57 66 75 8
537
+ 54 45 39 57 13 51 45 39 57 13
538
+ 48 45 39 57 13 45 39 57 60 13
539
+ 45 39 57 63 13 42 39 33 78 7
540
+ 42 39 45 48 8 42 39 45 51 8
541
+ 42 39 45 54 8 42 39 57 60 8
542
+ 42 39 57 63 8 42 39 57 66 13
543
+ 39 57 66 69 13 39 57 66 72 13
544
+ 39 57 66 75 13 36 33 39 42 7
545
+ 36 33 39 45 7 36 33 39 57 7
546
+ 36 33 78 81 4 36 33 -78 81 3
547
+ 36 33 -78 81 22 36 33 78 84 3
548
+ 33 39 45 48 13 33 39 45 51 13
549
+ 33 39 45 54 13 33 39 57 60 13
550
+ 33 39 57 63 13 33 78 84 87 2
551
+ 30 27 33 36 3 30 27 33 39 3
552
+ 30 27 33 78 3 27 33 39 42 7
553
+ 153 150 156 159 1 153 150 -156 159 2
554
+ 150 156 162 165 3 150 156 162 168 3
555
+ 138 132 129 141 34 138 132 -129 141 6
556
+ 135 132 129 141 34 135 132 -129 141 6
557
+ 132 129 141 144 34 132 129 -141 144 6
558
+ 132 129 141 147 34 132 129 -141 147 6
559
+ 126 123 129 132 34 126 123 -129 132 6
560
+ 126 123 129 141 34 126 123 -129 141 6
561
+ 123 129 132 135 34 123 129 -132 135 6
562
+ 123 129 132 138 34 123 129 -132 138 6
563
+ 123 129 141 144 34 123 129 -141 144 6
564
+ 123 129 141 147 34 123 129 -141 147 6
565
+ 120 114 123 126 5 120 114 123 129 5
566
+ 117 114 123 126 5 117 114 123 129 5
567
+ 111 105 114 117 7 111 105 114 120 7
568
+ 111 105 114 123 7 108 105 114 117 7
569
+ 108 105 114 120 7 108 105 114 123 7
570
+ 105 114 123 126 5 102 96 90 150 7
571
+ 102 96 105 108 8 102 96 105 111 8
572
+ 102 96 105 114 13 99 96 90 150 7
573
+ 99 96 105 108 8 99 96 105 111 8
574
+ 99 96 105 114 13 96 105 114 117 7
575
+ 96 105 114 120 7 93 90 96 99 7
576
+ 93 90 96 102 7 93 90 96 105 7
577
+ 93 90 150 153 4 93 90 -150 153 3
578
+ 93 90 -150 153 22 93 90 150 156 3
579
+ 90 96 105 108 13 90 96 105 111 13
580
+ 90 150 156 159 2 87 84 90 93 3
581
+ 87 84 90 96 3 87 84 90 150 3
582
+ 84 90 96 99 7 84 90 96 102 7
583
+ 174 171 177 180 1 174 171 -177 180 2
584
+ 171 177 183 186 3 168 162 171 174 4
585
+ 168 162 -171 174 3 168 162 -171 174 22
586
+ 168 162 171 177 3 165 162 171 174 4
587
+ 165 162 -171 174 3 165 162 -171 174 22
588
+ 165 162 171 177 3 162 171 177 180 2
589
+ 159 156 162 165 3 159 156 162 168 3
590
+ 159 156 162 171 3 204 201 207 210 1
591
+ 204 201 -207 210 2 201 207 213 216 3
592
+ 198 189 183 201 7 195 189 183 201 7
593
+ 192 189 183 201 7 186 183 189 192 7
594
+ 186 183 189 195 7 186 183 189 198 7
595
+ 186 183 201 204 4 186 183 -201 204 3
596
+ 186 183 -201 204 22 186 183 201 207 3
597
+ 183 201 207 210 2 180 177 183 186 3
598
+ 180 177 183 189 3 180 177 183 201 3
599
+ 177 183 189 192 7 177 183 189 195 7
600
+ 177 183 189 198 7 246 243 249 252 1
601
+ 246 243 -249 252 2 243 249 255 258 3
602
+ 234 225 219 237 46 234 225 -219 237 5
603
+ 231 225 219 237 46 231 225 -219 237 5
604
+ 228 225 219 237 46 228 225 -219 237 5
605
+ 225 219 237 240 47 225 219 -237 240 48
606
+ 225 219 -237 240 49 225 219 -237 240 50
607
+ 222 219 213 243 7 222 219 225 228 7
608
+ 222 219 225 231 7 222 219 225 234 7
609
+ 222 219 237 240 51 216 213 219 222 7
610
+ 216 213 219 225 7 216 213 219 237 46
611
+ 216 213 -219 237 5 216 213 243 246 4
612
+ 216 213 -243 246 3 216 213 -243 246 22
613
+ 216 213 243 249 3 213 219 225 228 13
614
+ 213 219 225 231 13 213 219 225 234 13
615
+ 213 219 237 240 52 213 219 -237 240 53
616
+ 213 219 -237 240 49 213 219 -237 240 54
617
+ 213 243 249 252 2 210 207 213 216 3
618
+ 210 207 213 219 3 210 207 213 243 3
619
+ 207 213 219 222 7 276 267 261 279 46
620
+ 276 267 -261 279 5 273 267 261 279 46
621
+ 273 267 -261 279 5 270 267 261 279 46
622
+ 270 267 -261 279 5 267 261 279 282 47
623
+ 267 261 -279 282 48 267 261 -279 282 49
624
+ 267 261 -279 282 50 264 261 255 285 7
625
+ 264 261 267 270 7 264 261 267 273 7
626
+ 264 261 267 276 7 264 261 279 282 51
627
+ 258 255 261 264 7 258 255 261 267 7
628
+ 258 255 261 279 46 258 255 -261 279 5
629
+ 258 255 285 288 3 258 255 285 291 3
630
+ 255 261 267 270 13 255 261 267 273 13
631
+ 255 261 267 276 13 255 261 279 282 52
632
+ 255 261 -279 282 53 255 261 -279 282 49
633
+ 255 261 -279 282 54 252 249 255 258 3
634
+ 252 249 255 261 3 252 249 255 285 3
635
+ 249 255 261 264 7 351 300 297 354 58
636
+ 351 300 303 363 3 348 309 303 363 3
637
+ 345 312 309 348 58 342 306 303 363 59
638
+ 333 327 324 357 33 333 327 324 360 33
639
+ 330 327 324 357 60 330 327 -324 357 61
640
+ 330 327 324 360 60 330 327 -324 360 61
641
+ 324 294 297 354 3 324 294 312 345 3
642
+ 315 294 297 354 3 315 294 312 345 3
643
+ 315 294 324 357 7 315 294 324 360 7
644
+ 312 294 297 354 3 312 294 324 357 7
645
+ 312 294 324 360 7 312 309 303 363 3
646
+ 309 303 300 351 3 309 303 306 342 51
647
+ 306 303 300 351 3 306 303 309 348 3
648
+ 303 300 297 354 58 303 309 312 345 58
649
+ 300 303 306 342 51 300 303 309 348 3
650
+ 297 294 312 345 3 297 294 324 357 7
651
+ 297 294 324 360 7 297 300 303 363 3
652
+ 294 297 300 351 58 294 312 309 348 58
653
+ 21 33 -27 -30 74 129 144 -141 -147 75
654
+ 129 135 -132 -138 75 114 129 -123 -126 75
655
+ 78 87 -84 -90 74 150 159 -156 -162 74
656
+ 171 180 -177 -183 74 201 210 -207 -213 74
657
+ 243 255 -249 -252 74 309 294 -312 -345 74
658
+ 312 303 -309 -348 74 297 303 -300 -351 74
659
+ 300 294 -297 -354 74
660
+ %FLAG DIHEDRALS_WITHOUT_HYDROGEN
661
+ %FORMAT(10I8)
662
+ 24 21 27 33 2 21 27 33 39 4
663
+ 21 27 -33 39 3 21 27 -33 39 5
664
+ 21 27 -33 39 6 21 27 33 78 4
665
+ 21 27 -33 78 3 21 27 -33 78 5
666
+ 21 27 -33 78 6 12 21 27 33 2
667
+ 0 12 21 24 3 0 12 21 27 3
668
+ 81 78 84 90 2 78 84 90 96 4
669
+ 78 84 -90 96 3 78 84 -90 96 5
670
+ 78 84 -90 96 6 78 84 90 150 4
671
+ 78 84 -90 150 3 78 84 -90 150 5
672
+ 78 84 -90 150 6 57 39 33 78 9
673
+ 57 39 -33 78 10 57 39 -33 78 11
674
+ 57 39 -33 78 12 45 39 33 78 14
675
+ 45 39 -33 78 15 45 39 -33 78 16
676
+ 45 39 -33 78 17 45 39 57 66 18
677
+ 45 39 -57 66 19 45 39 -57 66 20
678
+ 45 39 -57 66 21 39 33 78 81 3
679
+ 39 33 78 84 4 39 33 -78 84 3
680
+ 39 33 -78 84 5 39 33 -78 84 6
681
+ 33 39 57 66 23 33 39 -57 66 24
682
+ 33 39 -57 66 20 33 39 -57 66 25
683
+ 33 78 84 90 2 27 33 39 45 26
684
+ 27 33 -39 45 27 27 33 -39 45 16
685
+ 27 33 -39 45 28 27 33 39 57 29
686
+ 27 33 -39 57 30 27 33 -39 57 11
687
+ 27 33 -39 57 31 27 33 78 81 3
688
+ 27 33 78 84 32 27 33 -78 84 33
689
+ 27 33 -78 84 22 27 33 -78 84 6
690
+ 153 150 156 162 2 150 156 162 171 4
691
+ 150 156 -162 171 3 150 156 -162 171 5
692
+ 150 156 -162 171 6 114 123 129 132 34
693
+ 114 123 -129 132 6 114 123 129 141 34
694
+ 114 123 -129 141 6 105 96 90 150 7
695
+ 105 114 123 129 4 105 114 -123 129 5
696
+ 96 90 150 153 3 96 90 150 156 4
697
+ 96 90 -150 156 3 96 90 -150 156 5
698
+ 96 90 -150 156 6 96 105 114 123 7
699
+ 90 96 105 114 35 90 96 -105 114 36
700
+ 90 96 -105 114 37 90 150 156 162 2
701
+ 84 90 96 105 7 84 90 150 153 3
702
+ 84 90 150 156 32 84 90 -150 156 33
703
+ 84 90 -150 156 22 84 90 -150 156 6
704
+ 174 171 177 183 2 171 177 183 189 4
705
+ 171 177 -183 189 3 171 177 -183 189 5
706
+ 171 177 -183 189 6 171 177 183 201 4
707
+ 171 177 -183 201 3 171 177 -183 201 5
708
+ 171 177 -183 201 6 162 171 177 183 2
709
+ 156 162 171 174 3 156 162 171 177 32
710
+ 156 162 -171 177 33 156 162 -171 177 22
711
+ 156 162 -171 177 6 204 201 207 213 2
712
+ 201 207 213 219 4 201 207 -213 219 3
713
+ 201 207 -213 219 5 201 207 -213 219 6
714
+ 201 207 213 243 4 201 207 -213 243 3
715
+ 201 207 -213 243 5 201 207 -213 243 6
716
+ 189 183 201 204 3 189 183 201 207 4
717
+ 189 183 -201 207 3 189 183 -201 207 5
718
+ 189 183 -201 207 6 183 201 207 213 2
719
+ 177 183 201 204 3 177 183 201 207 32
720
+ 177 183 -201 207 33 177 183 -201 207 22
721
+ 177 183 -201 207 6 246 243 249 255 2
722
+ 243 249 255 261 1 243 249 -255 261 38
723
+ 243 249 -255 261 39 243 249 -255 261 6
724
+ 243 249 255 285 4 243 249 -255 285 40
725
+ 243 249 -255 285 41 243 249 -255 285 6
726
+ 237 219 213 243 42 237 219 -213 243 43
727
+ 237 219 -213 243 44 237 219 -213 243 45
728
+ 225 219 213 243 14 225 219 -213 243 15
729
+ 225 219 -213 243 16 225 219 -213 243 17
730
+ 219 213 243 246 3 219 213 243 249 4
731
+ 219 213 -243 249 3 219 213 -243 249 5
732
+ 219 213 -243 249 6 213 243 249 255 2
733
+ 207 213 219 225 26 207 213 -219 225 27
734
+ 207 213 -219 225 16 207 213 -219 225 28
735
+ 207 213 219 237 55 207 213 -219 237 56
736
+ 207 213 -219 237 44 207 213 -219 237 57
737
+ 207 213 243 246 3 207 213 243 249 32
738
+ 207 213 -243 249 33 207 213 -243 249 22
739
+ 207 213 -243 249 6 279 261 255 285 42
740
+ 279 261 -255 285 43 279 261 -255 285 44
741
+ 279 261 -255 285 45 267 261 255 285 14
742
+ 267 261 -255 285 15 267 261 -255 285 16
743
+ 267 261 -255 285 17 261 255 285 288 3
744
+ 261 255 285 291 3 249 255 261 267 26
745
+ 249 255 -261 267 27 249 255 -261 267 16
746
+ 249 255 -261 267 28 249 255 261 279 55
747
+ 249 255 -261 279 56 249 255 -261 279 44
748
+ 249 255 -261 279 57 249 255 285 288 3
749
+ 249 255 285 291 3 330 327 333 336 62
750
+ 330 327 333 339 62 324 327 333 336 62
751
+ 324 327 333 339 62 321 315 294 324 63
752
+ 321 315 -294 324 64 321 315 -294 324 65
753
+ 318 315 294 324 63 318 315 -294 324 64
754
+ 318 315 -294 324 65 315 294 324 327 66
755
+ 315 294 -324 327 67 315 294 -324 327 68
756
+ 312 294 315 318 33 312 294 315 321 33
757
+ 312 294 324 327 7 309 312 294 315 3
758
+ 309 312 294 324 3 306 303 309 312 3
759
+ 300 297 294 312 69 300 297 294 315 3
760
+ 300 297 294 324 3 300 303 -309 312 69
761
+ 297 294 312 309 69 297 294 315 318 33
762
+ 297 294 315 321 33 297 294 324 327 7
763
+ 297 300 303 306 3 297 300 -303 309 69
764
+ 294 297 300 303 70 294 297 -300 303 71
765
+ 294 297 -300 303 72 294 312 -309 303 70
766
+ 294 312 -309 303 71 294 312 -309 303 72
767
+ 294 324 327 330 63 294 324 -327 330 64
768
+ 294 324 -327 330 65 294 324 327 333 33
769
+ 12 27 -21 -24 73 33 84 -78 -81 73
770
+ 90 156 -150 -153 73 123 132 -129 -141 73
771
+ 162 177 -171 -174 73 183 207 -201 -204 73
772
+ 213 249 -243 -246 73 255 288 -285 -291 73
773
+ 327 336 -333 -339 74 333 324 -327 -330 73
774
+ 294 318 -315 -321 74
775
+ %FLAG EXCLUDED_ATOMS_LIST
776
+ %FORMAT(10I8)
777
+ 2 3 4 5 6 7 8 9 10 3
778
+ 4 5 6 7 8 4 5 6 7 8
779
+ 5 6 7 8 6 7 8 9 10 11
780
+ 12 7 8 9 10 8 9 10 9 10
781
+ 11 12 13 14 27 10 11 12 11 12
782
+ 13 14 15 16 20 27 28 29 12 13
783
+ 14 27 13 14 15 16 17 18 19 20
784
+ 21 22 23 27 28 29 30 31 14 15
785
+ 16 20 27 28 29 15 16 17 18 19
786
+ 20 21 22 23 24 25 26 27 28 29
787
+ 16 17 18 19 20 21 22 23 27 17
788
+ 18 19 20 21 22 23 27 18 19 20
789
+ 19 20 20 21 22 23 24 25 26 27
790
+ 22 23 24 25 26 23 24 25 26 24
791
+ 25 26 25 26 26 0 28 29 30 31
792
+ 32 33 51 29 30 31 30 31 32 33
793
+ 34 35 36 51 52 53 31 32 33 51
794
+ 32 33 34 35 36 37 38 39 51 52
795
+ 53 54 55 33 34 35 36 51 52 53
796
+ 34 35 36 37 38 39 40 41 42 51
797
+ 52 53 35 36 37 38 39 51 36 37
798
+ 38 39 51 37 38 39 40 41 42 43
799
+ 44 51 38 39 40 41 42 39 40 41
800
+ 42 40 41 42 43 44 45 48 41 42
801
+ 43 44 42 43 44 43 44 45 46 47
802
+ 48 49 50 44 45 48 45 46 47 48
803
+ 49 50 46 47 48 49 50 47 48 48
804
+ 49 50 50 0 52 53 54 55 56 57
805
+ 58 53 54 55 54 55 56 57 58 59
806
+ 60 55 56 57 58 56 57 58 59 60
807
+ 61 62 57 58 59 60 58 59 60 59
808
+ 60 61 62 63 64 68 60 61 62 61
809
+ 62 63 64 65 66 67 68 69 70 62
810
+ 63 64 68 63 64 65 66 67 68 69
811
+ 70 71 72 64 65 66 67 68 69 70
812
+ 65 66 67 68 69 70 66 67 68 67
813
+ 68 68 69 70 71 72 73 74 82 70
814
+ 71 72 71 72 73 74 75 76 80 82
815
+ 83 84 72 73 74 82 73 74 75 76
816
+ 77 78 79 80 81 82 83 84 85 86
817
+ 74 75 76 80 82 83 84 75 76 77
818
+ 78 79 80 81 82 83 84 76 77 78
819
+ 79 80 81 82 77 78 79 80 81 82
820
+ 78 79 80 79 80 80 81 82 0 83
821
+ 84 85 86 87 88 96 84 85 86 85
822
+ 86 87 88 89 90 94 96 97 98 86
823
+ 87 88 96 87 88 89 90 91 92 93
824
+ 94 95 96 97 98 88 89 90 94 96
825
+ 97 98 89 90 91 92 93 94 95 96
826
+ 97 98 90 91 92 93 94 95 96 91
827
+ 92 93 94 95 96 92 93 94 93 94
828
+ 94 95 96 0 97 98 98 0 100 101
829
+ 102 104 105 106 107 108 109 110 111 112
830
+ 116 117 118 119 120 121 101 102 103 104
831
+ 105 106 107 108 109 110 116 118 119 120
832
+ 121 122 102 103 104 105 106 109 115 117
833
+ 118 119 122 103 104 105 115 116 117 118
834
+ 119 122 104 105 115 117 118 122 105 106
835
+ 109 115 116 117 118 122 106 107 108 109
836
+ 110 116 117 119 120 121 122 107 108 109
837
+ 110 116 119 120 121 108 109 109 110 111
838
+ 112 113 114 116 119 120 121 111 112 113
839
+ 114 120 121 112 113 114 120 121 113 114
840
+ 120 121 114 0 122 117 122 119 122 0
841
+ 121 0 0
842
+ %FLAG HBOND_ACOEF
843
+ %FORMAT(5E16.8)
844
+
845
+ %FLAG HBOND_BCOEF
846
+ %FORMAT(5E16.8)
847
+
848
+ %FLAG HBCUT
849
+ %FORMAT(5E16.8)
850
+
851
+ %FLAG AMBER_ATOM_TYPE
852
+ %FORMAT(20a4)
853
+ N3 H H H CX HP HP C O N H XC H1 3C HC CT HC HC HC 2C
854
+ HC HC CT HC HC HC C O N H XC H1 C8 HC HC C8 HC HC C8 H1
855
+ H1 N2 H CA N2 H H N2 H H C O N H XC H1 H1 C O N
856
+ H XC H1 CT HC HC HC C O N H XC H1 3C H1 CT HC HC HC OH
857
+ HO C O N H CX H1 3C H1 CT HC HC HC OH HO C O2 O2 c6 c2
858
+ c2 c6 oh c2 c2 c o o c3 c o c o o ho ha ha ha ha hc
859
+ hc h1
860
+ %FLAG TREE_CHAIN_CLASSIFICATION
861
+ %FORMAT(20a4)
862
+ BLA BLA BLA BLA BLA BLA BLA BLA BLA M E M E 3 E 3 E E E 3
863
+ E E 3 E E E M E M E M E 3 E E 3 E E 3 E
864
+ E B E B B E E B E E M E M E M E E M E M
865
+ E M E 3 E E E M E M E M E 3 E 3 E E E S
866
+ E M E BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA
867
+ BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA BLA
868
+ BLA BLA
869
+ %FLAG JOIN_ARRAY
870
+ %FORMAT(10I8)
871
+ 0 0 0 0 0 0 0 0 0 0
872
+ 0 0 0 0 0 0 0 0 0 0
873
+ 0 0 0 0 0 0 0 0 0 0
874
+ 0 0 0 0 0 0 0 0 0 0
875
+ 0 0 0 0 0 0 0 0 0 0
876
+ 0 0 0 0 0 0 0 0 0 0
877
+ 0 0 0 0 0 0 0 0 0 0
878
+ 0 0 0 0 0 0 0 0 0 0
879
+ 0 0 0 0 0 0 0 0 0 0
880
+ 0 0 0 0 0 0 0 0 0 0
881
+ 0 0 0 0 0 0 0 0 0 0
882
+ 0 0 0 0 0 0 0 0 0 0
883
+ 0 0
884
+ %FLAG IROTAT
885
+ %FORMAT(10I8)
886
+ 0 0 0 0 0 0 0 0 0 0
887
+ 0 0 0 0 0 0 0 0 0 0
888
+ 0 0 0 0 0 0 0 0 0 0
889
+ 0 0 0 0 0 0 0 0 0 0
890
+ 0 0 0 0 0 0 0 0 0 0
891
+ 0 0 0 0 0 0 0 0 0 0
892
+ 0 0 0 0 0 0 0 0 0 0
893
+ 0 0 0 0 0 0 0 0 0 0
894
+ 0 0 0 0 0 0 0 0 0 0
895
+ 0 0 0 0 0 0 0 0 0 0
896
+ 0 0 0 0 0 0 0 0 0 0
897
+ 0 0 0 0 0 0 0 0 0 0
898
+ 0 0
899
+ %FLAG RADIUS_SET
900
+ %FORMAT(1a80)
901
+ modified Bondi radii (mbondi)
902
+ %FLAG RADII
903
+ %FORMAT(5E16.8)
904
+ 1.55000000E+00 1.30000000E+00 1.30000000E+00 1.30000000E+00 1.70000000E+00
905
+ 1.30000000E+00 1.30000000E+00 1.70000000E+00 1.50000000E+00 1.55000000E+00
906
+ 1.30000000E+00 1.70000000E+00 1.30000000E+00 1.70000000E+00 1.30000000E+00
907
+ 1.70000000E+00 1.30000000E+00 1.30000000E+00 1.30000000E+00 1.70000000E+00
908
+ 1.30000000E+00 1.30000000E+00 1.70000000E+00 1.30000000E+00 1.30000000E+00
909
+ 1.30000000E+00 1.70000000E+00 1.50000000E+00 1.55000000E+00 1.30000000E+00
910
+ 1.70000000E+00 1.30000000E+00 1.70000000E+00 1.30000000E+00 1.30000000E+00
911
+ 1.70000000E+00 1.30000000E+00 1.30000000E+00 1.70000000E+00 1.30000000E+00
912
+ 1.30000000E+00 1.55000000E+00 1.30000000E+00 1.70000000E+00 1.55000000E+00
913
+ 1.30000000E+00 1.30000000E+00 1.55000000E+00 1.30000000E+00 1.30000000E+00
914
+ 1.70000000E+00 1.50000000E+00 1.55000000E+00 1.30000000E+00 1.70000000E+00
915
+ 1.30000000E+00 1.30000000E+00 1.70000000E+00 1.50000000E+00 1.55000000E+00
916
+ 1.30000000E+00 1.70000000E+00 1.30000000E+00 1.70000000E+00 1.30000000E+00
917
+ 1.30000000E+00 1.30000000E+00 1.70000000E+00 1.50000000E+00 1.55000000E+00
918
+ 1.30000000E+00 1.70000000E+00 1.30000000E+00 1.70000000E+00 1.30000000E+00
919
+ 1.70000000E+00 1.30000000E+00 1.30000000E+00 1.30000000E+00 1.50000000E+00
920
+ 8.00000000E-01 1.70000000E+00 1.50000000E+00 1.55000000E+00 1.30000000E+00
921
+ 1.70000000E+00 1.30000000E+00 1.70000000E+00 1.30000000E+00 1.70000000E+00
922
+ 1.30000000E+00 1.30000000E+00 1.30000000E+00 1.50000000E+00 8.00000000E-01
923
+ 1.70000000E+00 1.50000000E+00 1.50000000E+00 1.70000000E+00 1.70000000E+00
924
+ 1.70000000E+00 1.70000000E+00 1.50000000E+00 1.70000000E+00 1.70000000E+00
925
+ 1.70000000E+00 1.50000000E+00 1.50000000E+00 1.70000000E+00 1.70000000E+00
926
+ 1.50000000E+00 1.70000000E+00 1.50000000E+00 1.50000000E+00 8.00000000E-01
927
+ 1.30000000E+00 1.30000000E+00 1.30000000E+00 1.30000000E+00 1.30000000E+00
928
+ 1.30000000E+00 1.30000000E+00
929
+ %FLAG SCREEN
930
+ %FORMAT(5E16.8)
931
+ 7.90000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01 7.20000000E-01
932
+ 8.50000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.90000000E-01
933
+ 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01
934
+ 7.20000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01 7.20000000E-01
935
+ 8.50000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01 8.50000000E-01
936
+ 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.90000000E-01 8.50000000E-01
937
+ 7.20000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01 8.50000000E-01
938
+ 7.20000000E-01 8.50000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01
939
+ 8.50000000E-01 7.90000000E-01 8.50000000E-01 7.20000000E-01 7.90000000E-01
940
+ 8.50000000E-01 8.50000000E-01 7.90000000E-01 8.50000000E-01 8.50000000E-01
941
+ 7.20000000E-01 8.50000000E-01 7.90000000E-01 8.50000000E-01 7.20000000E-01
942
+ 8.50000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.90000000E-01
943
+ 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01
944
+ 8.50000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.90000000E-01
945
+ 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01
946
+ 7.20000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01
947
+ 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.90000000E-01 8.50000000E-01
948
+ 7.20000000E-01 8.50000000E-01 7.20000000E-01 8.50000000E-01 7.20000000E-01
949
+ 8.50000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01
950
+ 7.20000000E-01 8.50000000E-01 8.50000000E-01 7.20000000E-01 7.20000000E-01
951
+ 7.20000000E-01 7.20000000E-01 8.50000000E-01 7.20000000E-01 7.20000000E-01
952
+ 7.20000000E-01 8.50000000E-01 8.50000000E-01 7.20000000E-01 7.20000000E-01
953
+ 8.50000000E-01 7.20000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01
954
+ 8.50000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01 8.50000000E-01
955
+ 8.50000000E-01 8.50000000E-01
956
+ %FLAG IPOL
957
+ %FORMAT(1I8)
958
+ 0
959
+ %FLAG CMAP_COUNT
960
+ %FORMAT(2I8)
961
+ 5 5
962
+ %FLAG CMAP_RESOLUTION
963
+ %FORMAT(20I4)
964
+ 24 24 24 24 24
965
+ %FLAG CMAP_PARAMETER_01
966
+ %COMMENT Gly CMAP
967
+ %FORMAT(8F9.5)
968
+ 0.82366 1.09817 1.13106 1.38658 2.11377 3.63194 5.20835 4.52792
969
+ 4.24857 3.42100 2.57125 2.21561 4.26659 2.21561 2.57125 3.42110
970
+ 4.24858 4.52792 4.29107 3.63184 2.03731 1.32036 1.12797 1.09814
971
+ 1.01976 0.89767 0.89484 1.21525 1.97095 3.70570 4.38855 4.65256
972
+ 4.43948 3.89754 4.21954 2.92219 1.83300 1.61528 2.13407 3.13273
973
+ 4.03304 4.37836 4.21500 3.54162 2.14871 1.44646 1.20387 1.08264
974
+ 0.94294 0.79652 0.83328 1.24136 2.06053 3.43883 4.17385 4.53101
975
+ 4.43115 4.03641 3.71837 2.02965 1.28863 1.21833 1.89263 2.85593
976
+ 4.80291 4.23497 4.08718 3.49858 2.17811 1.53114 1.22608 1.06909
977
+ 1.06124 0.90425 0.95129 1.35925 1.80900 3.18916 3.85055 4.27470
978
+ 4.17515 3.68355 2.71193 1.96823 0.88051 1.02084 1.59189 2.52883
979
+ 3.47767 4.03244 3.86779 3.39508 2.23969 1.66969 1.33019 1.16679
980
+ 1.08157 1.02005 1.10493 1.29605 1.79270 2.88632 3.63402 4.05349
981
+ 3.97657 3.35415 2.24207 1.18576 0.74267 0.67495 1.31122 2.24278
982
+ 3.21905 3.69186 4.76949 4.00571 2.34764 1.77622 1.34849 1.12849
983
+ 1.09360 0.76295 0.64220 1.00733 1.73708 2.50787 3.41571 4.45847
984
+ 3.84910 3.11193 1.97839 1.18177 0.33803 0.43176 1.23577 2.17947
985
+ 2.92428 3.38497 3.39138 3.10177 3.35228 2.15282 1.45287 1.28536
986
+ 0.61764 0.23640 0.15650 0.65857 1.56522 2.44967 3.17669 3.78043
987
+ 4.22216 2.79953 1.66579 0.59084 0.15579 0.43594 1.52040 2.27449
988
+ 2.76979 3.16911 3.12455 2.92674 2.45824 1.88927 1.36443 0.95121
989
+ -0.00243 -0.14438 0.06931 0.84132 1.89921 2.91978 3.46170 3.60722
990
+ 3.77366 2.18724 1.52870 0.20777 0.22187 1.10049 2.08960 2.88893
991
+ 3.46272 3.66327 3.40280 3.02172 2.23074 1.32476 0.62376 0.25154
992
+ -0.24862 0.05886 0.73935 1.98217 3.25167 4.06285 4.21447 3.90130
993
+ 2.90300 1.70374 0.74057 0.52755 1.12943 2.10802 2.78056 3.65981
994
+ 4.30377 4.58476 4.35318 3.65296 2.33204 0.81283 0.00000 -0.29835
995
+ 0.44379 1.32981 2.39709 3.82578 5.02459 5.42450 4.99639 4.00610
996
+ 2.64886 1.63847 1.37610 1.71448 2.28503 2.64949 3.24747 4.17266
997
+ 5.17265 5.75041 5.58476 4.21912 2.20540 0.64843 0.02065 -0.08593
998
+ 2.15530 3.40478 4.51993 5.80241 6.12627 6.00746 5.12631 4.58197
999
+ 2.80154 2.55737 2.87599 2.95502 2.71629 2.60279 3.64721 4.53964
1000
+ 5.90407 6.82108 6.15044 4.18011 2.15201 0.96807 0.81255 1.19704
1001
+ 4.21011 5.19583 5.45356 5.26216 5.22957 4.91772 4.44698 3.93537
1002
+ 3.74038 4.11322 3.92595 2.94210 2.11295 2.42266 3.12536 4.83315
1003
+ 6.43292 6.19670 5.13463 3.65052 2.40663 2.07125 2.29840 3.03351
1004
+ 5.33877 4.55338 3.87255 3.87071 3.62149 3.87069 4.31250 4.77933
1005
+ 5.37137 5.20874 3.65026 2.18763 2.20027 2.18700 3.65026 5.21405
1006
+ 5.24065 4.77943 4.31250 3.87553 3.63325 5.19982 3.88530 4.53465
1007
+ 4.20747 3.02450 2.29840 2.07135 2.40664 3.65062 5.13204 6.19680
1008
+ 6.43292 4.83351 3.12587 2.96667 2.11029 2.93241 3.92594 4.11322
1009
+ 3.74082 3.93551 4.44698 4.92068 5.53058 5.24416 5.35209 5.19605
1010
+ 2.15668 1.19704 0.81255 0.96806 2.15211 4.17062 6.15034 6.82108
1011
+ 5.90407 4.54177 3.63728 2.60267 2.71853 2.95502 2.87589 2.55737
1012
+ 2.80717 3.89294 5.12631 6.00746 6.12372 5.80230 5.01898 3.40679
1013
+ 0.45450 -0.08700 0.02065 0.64843 2.20540 4.21912 5.58476 5.75041
1014
+ 5.17265 4.16788 3.24747 2.64460 2.28503 1.72593 1.37610 1.63847
1015
+ 2.64538 4.01006 5.00425 5.42091 5.02459 3.80593 2.39681 1.32981
1016
+ -0.24862 -0.29835 0.00000 0.81283 2.33214 3.64847 4.35318 4.59008
1017
+ 4.30377 3.65991 2.78056 2.10802 1.84494 0.52754 0.74067 1.61716
1018
+ 2.90300 3.89516 4.21447 4.06285 3.25166 1.98217 0.73946 0.07427
1019
+ -0.00243 0.25154 0.64043 1.82987 2.23143 3.02038 3.40280 3.66327
1020
+ 3.46272 2.88893 2.08960 1.10049 0.22171 0.20862 1.52897 2.18595
1021
+ 3.24376 3.60722 3.46170 2.91968 1.89590 0.84888 0.07066 -0.14460
1022
+ 0.61764 0.94007 1.36444 1.88927 2.45691 2.92674 3.12469 3.16911
1023
+ 2.76979 2.27377 1.52040 0.44049 0.15579 0.59084 1.66579 2.79477
1024
+ 4.25589 3.78043 3.17669 2.45043 1.56512 0.65855 0.15650 0.23719
1025
+ 1.09360 1.28549 1.45287 2.15281 2.67683 3.10177 3.39138 3.38497
1026
+ 2.91731 2.17947 1.23582 0.43170 0.33793 1.00844 1.97383 3.11193
1027
+ 3.84910 4.46392 3.41571 2.50787 1.73708 1.00733 0.64220 0.76295
1028
+ 0.97094 1.11640 1.33640 1.77623 2.30465 3.21763 3.71128 3.69186
1029
+ 3.21905 2.24277 1.31122 0.67238 0.74272 1.18578 2.24207 3.35415
1030
+ 3.97657 4.05349 3.63266 2.88632 1.79270 1.23680 1.00391 1.05657
1031
+ 0.98044 1.16708 1.33038 1.66969 2.23969 3.39508 3.86779 4.03243
1032
+ 3.47590 2.52883 1.59193 1.02084 0.88051 1.46518 2.71203 3.68355
1033
+ 4.17470 4.27471 3.85203 3.18916 1.80900 1.35925 0.95109 0.90998
1034
+ 0.92229 1.06909 1.22608 1.53114 2.17810 3.49858 4.08708 4.23358
1035
+ 3.81032 2.85593 1.89254 1.21833 1.28863 2.03059 3.37664 4.03661
1036
+ 4.43079 4.53101 4.17385 3.43883 2.06053 1.24136 0.83440 0.79652
1037
+ 1.01976 1.08264 1.20394 1.44647 2.14870 3.54162 4.22527 4.37836
1038
+ 4.03304 3.13273 2.13407 1.61528 1.83300 2.92219 4.10899 3.89754
1039
+ 4.43948 4.65256 4.38856 3.70570 1.97095 1.21515 0.89442 0.89767
1040
+ %FLAG CMAP_PARAMETER_02
1041
+ %COMMENT Ala CMAP
1042
+ %FORMAT(8F9.5)
1043
+ -0.40490 -0.91563 -0.66011 -0.12395 0.67400 1.66712 2.29819 2.59327
1044
+ 2.26341 1.68604 1.08454 0.71831 -0.48870 -1.12865 -0.92439 -0.34344
1045
+ 0.32979 0.59769 0.44008 -0.02411 -0.36985 -0.85317 -0.95648 -1.10907
1046
+ -0.57095 -0.51404 -0.20974 0.13143 0.76924 1.59233 2.29037 2.67125
1047
+ 3.36182 2.18892 2.73567 0.45223 -0.65830 -0.99890 -0.71628 0.42576
1048
+ 0.53333 0.77654 0.66928 0.32986 0.00178 -0.28339 -0.35321 -0.52818
1049
+ -0.04441 1.18495 0.28672 0.49834 1.04770 1.74318 2.42981 2.78424
1050
+ 2.83854 2.61585 1.87191 0.41363 -0.42895 -0.65692 0.55228 0.27728
1051
+ 0.92789 1.20682 1.03564 0.82326 0.50898 0.23806 0.20869 0.03162
1052
+ 0.75270 0.92426 0.87815 1.07435 1.34904 1.95311 2.55584 3.01644
1053
+ 2.98774 2.58246 1.60744 0.42752 -0.30354 -0.31446 -0.03375 0.52111
1054
+ 1.16914 1.46572 1.98214 1.17058 0.95531 0.70808 0.78722 1.35766
1055
+ 1.34685 2.28011 1.28633 1.21465 1.51939 2.05226 2.68560 3.11202
1056
+ 2.91890 2.50948 1.45835 0.41028 -0.10582 -0.34705 -0.04464 0.55547
1057
+ 1.11301 1.35870 1.48001 1.35541 1.12115 0.95721 1.12820 1.22585
1058
+ 2.04850 1.37875 1.14784 1.59064 1.72039 1.78908 3.30313 3.04054
1059
+ 2.98842 2.41992 1.44654 0.52504 -0.06270 -0.27801 0.87234 0.67598
1060
+ 0.94307 1.15416 1.20141 1.24110 1.26105 1.20805 1.33113 1.49416
1061
+ 1.04113 0.90852 0.69483 0.85361 1.26559 1.89687 2.63196 4.14974
1062
+ 2.85712 2.19037 1.16979 0.05713 -0.34982 -0.13111 1.14408 0.72916
1063
+ 0.83976 0.87834 2.10017 1.17948 1.17775 1.17175 1.28140 1.31313
1064
+ 0.56020 0.54579 0.70265 1.11648 1.74498 2.34101 3.30438 2.91742
1065
+ 2.51820 1.80071 0.63368 -0.12153 0.06806 0.72937 1.10420 1.35758
1066
+ 1.49864 1.53737 1.46180 1.46294 1.03983 0.71730 0.57013 0.61315
1067
+ 0.24962 0.58339 1.16380 1.97603 2.89121 3.52557 3.68570 3.11960
1068
+ 2.13455 1.15056 0.41716 0.25190 0.90813 1.46041 1.72423 2.08326
1069
+ 2.41176 2.51527 2.40584 2.10326 1.06657 0.24926 0.00000 0.09150
1070
+ 0.69001 1.45869 2.56017 3.51462 4.36327 4.88489 4.44136 3.31773
1071
+ 1.94048 1.18640 1.14388 1.38827 1.99448 1.97586 2.10793 2.62567
1072
+ 3.22808 3.67878 3.65514 2.76833 1.09340 -0.02756 -0.20820 0.11394
1073
+ 2.04863 3.24028 4.45604 5.33890 5.83417 5.62064 4.51400 3.15546
1074
+ 2.11289 2.12474 2.51205 2.64497 2.21088 1.89502 2.06746 3.01892
1075
+ 4.17428 5.04288 4.34485 2.58422 0.91721 0.02839 0.38724 1.08963
1076
+ 3.86396 5.17448 4.99907 4.71176 4.69475 4.40584 3.94871 3.17716
1077
+ 3.06333 3.67246 4.29338 2.44448 1.35877 2.75298 2.01318 3.50593
1078
+ 5.09938 4.27559 3.31646 1.97909 0.94467 0.88095 1.62501 2.60184
1079
+ 5.48793 4.77064 3.78644 3.36104 3.22046 3.45658 3.76845 4.19099
1080
+ 4.55308 4.85880 2.97166 1.40450 1.55754 1.01694 2.55251 4.15890
1081
+ 3.59316 2.89015 2.39954 2.03475 2.02513 2.33480 3.18431 4.21056
1082
+ 4.70559 3.27912 2.28983 1.85924 2.16582 3.20992 4.49444 5.42412
1083
+ 5.98035 4.20595 2.46249 1.80286 1.41486 2.22339 3.40125 3.01974
1084
+ 2.06463 1.98502 2.41985 3.03336 3.42492 3.76647 4.58344 5.51267
1085
+ 2.34028 1.47026 0.70060 0.67110 1.72673 3.69931 5.49162 6.13923
1086
+ 5.15665 3.78295 2.61455 3.27648 2.23785 2.65327 2.09930 0.98357
1087
+ 0.83115 1.73620 2.87719 3.88918 4.40086 4.76522 4.34641 3.40891
1088
+ 0.89883 0.26728 0.50152 0.12164 1.64744 3.66760 4.84258 4.73428
1089
+ 4.15359 3.27829 2.48102 2.07496 1.77587 1.23018 0.22862 -0.17811
1090
+ 0.36837 1.62610 2.66752 3.41452 3.43224 3.08090 2.54957 1.61094
1091
+ 0.32705 -0.14752 -0.38279 -0.00752 1.31062 2.89019 3.39946 3.48428
1092
+ 3.29026 2.66680 1.96417 1.33230 0.70261 -0.31922 -0.88675 -0.59803
1093
+ 0.32944 1.32712 1.88494 2.20282 2.13265 1.82079 1.35338 0.71220
1094
+ -0.03270 -0.18304 -0.26783 0.12774 0.88323 1.96743 2.18027 2.30248
1095
+ 2.25909 1.78219 1.00274 0.24927 -0.80554 -1.41955 -1.17733 -0.22422
1096
+ 1.19834 1.07092 1.05260 0.95885 0.87757 0.60790 0.30853 0.05046
1097
+ 0.08873 0.15910 0.22294 0.37757 0.76603 1.36872 1.54866 1.47050
1098
+ 1.32077 0.90501 0.18754 -0.81180 -1.70050 -1.70896 -0.87307 -0.00331
1099
+ 0.74981 0.73853 0.55032 0.27050 -0.03313 -0.23059 -0.27425 -0.15004
1100
+ 1.38786 0.31030 0.31376 0.30435 0.69516 1.26684 1.67665 1.73040
1101
+ 1.48205 0.83164 0.78021 -1.27092 -1.69247 -1.59919 -0.87185 0.23049
1102
+ 0.75546 0.68419 0.50548 0.18474 -0.18354 -0.22863 -0.03965 0.15614
1103
+ 1.13038 0.28339 0.13603 0.26411 0.64582 1.31757 2.01140 2.13005
1104
+ 1.85723 0.94711 -0.10199 -0.99228 -1.35141 -1.23057 -0.39240 0.63569
1105
+ 1.03002 0.93699 1.12925 0.94167 0.14233 0.14305 0.34318 0.43742
1106
+ -0.18145 -0.18129 -0.36426 -0.02774 0.57160 1.29873 2.16831 2.37053
1107
+ 1.81288 0.84225 -0.13994 -0.87562 -1.03375 -0.75156 0.33665 1.25211
1108
+ 1.11963 1.00266 0.72525 0.87651 0.22308 0.12905 0.05647 -0.10214
1109
+ -1.05110 -0.75879 -0.79562 -0.36879 0.45648 1.36193 2.25739 2.41888
1110
+ 1.79507 0.83030 -0.09049 -0.76021 -0.87672 -0.19067 0.64936 0.61856
1111
+ 0.80179 0.82609 0.68948 0.43884 -0.07529 -0.55654 -0.80787 -1.00697
1112
+ -1.21902 -1.03039 -0.88255 -0.32105 0.49201 1.53828 2.43182 2.53201
1113
+ 1.97701 1.22953 0.40353 -0.11048 -0.00493 -0.40512 -0.63562 -0.14764
1114
+ 0.47545 0.72229 0.59153 0.14907 -0.47001 -0.96318 -1.22829 -1.35376
1115
+ %FLAG CMAP_PARAMETER_03
1116
+ %COMMENT Thr CMAP
1117
+ %FORMAT(8F9.5)
1118
+ -0.04283 0.18161 1.05439 1.03586 1.32935 1.80299 2.39623 2.93329
1119
+ 3.35590 3.57777 3.50914 1.68053 -0.39179 -0.93314 -0.64171 0.11454
1120
+ 0.89169 1.19527 1.06990 0.70217 0.45484 0.13072 -0.22279 -0.64142
1121
+ -0.89041 -0.23409 0.59158 0.55751 0.83342 1.42045 2.21734 3.18185
1122
+ 3.46319 3.49225 2.74426 0.52768 -0.99342 -1.26181 -0.82560 -0.00314
1123
+ 0.89227 1.33370 1.44561 1.23285 0.82708 0.26308 -0.20670 -0.77475
1124
+ -0.77931 -0.21773 0.28830 0.08738 0.88718 0.95262 1.87297 3.11301
1125
+ 3.13164 3.38335 1.75405 0.07220 -1.09686 -1.29826 -0.91328 -0.03110
1126
+ 0.83011 1.32603 1.46471 1.28387 0.67901 0.23347 -0.27939 -0.69694
1127
+ -0.50786 -0.10197 0.06983 -0.17637 0.06763 0.79727 2.28870 2.45490
1128
+ 2.93902 3.31058 1.67194 0.10975 -0.84848 -0.98572 0.03685 -0.00657
1129
+ 0.75442 1.26299 1.46733 1.35576 0.81372 0.99506 -0.07250 -0.48345
1130
+ 0.10617 0.89653 1.01472 0.51464 0.29597 0.97717 1.86119 2.69722
1131
+ 3.25863 3.09958 1.98360 0.61582 -0.27072 -0.59401 -0.33506 0.34299
1132
+ 0.94668 1.38632 1.66220 1.70320 1.34813 1.65038 0.62845 0.23924
1133
+ 0.72889 0.70286 0.50076 0.83792 0.58321 1.37720 2.36342 3.16093
1134
+ 3.64517 3.46287 2.41734 1.11469 0.11040 -0.17882 0.19884 0.95013
1135
+ 1.17771 1.51890 1.83892 2.02544 2.52304 1.54809 1.28633 0.94204
1136
+ 0.44986 0.84132 1.02745 0.44812 0.85346 1.66099 3.07918 3.29722
1137
+ 3.67845 3.42114 2.31098 0.98281 0.09466 0.19679 0.86348 1.00796
1138
+ 1.32832 2.00653 1.85879 2.11827 1.96393 1.65524 1.22698 0.89636
1139
+ -0.16092 -0.07801 0.36742 0.71079 1.37539 2.07819 2.78900 3.25905
1140
+ 3.45281 2.88038 1.70415 0.66784 0.52962 0.91246 1.45720 1.70827
1141
+ 1.96726 2.05687 2.25152 2.69300 1.87895 1.30437 0.67732 0.16373
1142
+ -0.59497 -0.15706 0.87552 1.51129 2.23851 2.99679 3.70183 4.34392
1143
+ 3.11511 2.42327 1.45045 0.88441 1.17792 1.80802 1.89428 2.26153
1144
+ 2.77283 3.04412 3.18064 3.02688 2.74623 0.78666 0.00000 -0.39235
1145
+ -0.35916 0.39315 1.93035 2.81662 3.65827 4.17673 4.19465 4.39392
1146
+ 2.95304 2.23500 1.84732 1.84010 2.40277 2.39122 2.40836 2.83657
1147
+ 3.53179 4.15047 4.32346 3.57356 2.03334 0.38577 -0.25814 -0.48010
1148
+ 0.90231 2.09057 3.75066 4.41890 5.21329 5.48263 4.81077 4.43634
1149
+ 3.32223 3.13901 3.21301 3.48840 3.14705 2.66483 2.64675 3.40492
1150
+ 4.64828 5.45938 5.43806 3.77072 1.88593 0.59482 0.32151 0.46925
1151
+ 2.84623 5.25750 4.89403 4.16235 4.18058 4.25905 4.39881 4.30063
1152
+ 4.27196 6.52030 5.09605 4.18296 2.87596 2.88864 2.98802 4.36666
1153
+ 5.97212 5.37136 4.65053 3.41526 2.12052 1.70730 1.91929 2.22274
1154
+ 5.08537 3.84174 2.58325 2.05517 2.09913 2.76880 4.07500 5.11462
1155
+ 6.04360 6.80346 4.29068 2.24439 1.89996 1.49269 2.85393 4.25936
1156
+ 3.68129 3.16198 3.17712 3.18147 3.06025 3.11939 3.59651 4.06844
1157
+ 2.95875 1.85563 0.75599 0.11936 0.62544 2.16551 4.28956 6.12775
1158
+ 6.83966 4.68973 2.85927 1.53513 0.96538 1.77312 2.68992 2.31815
1159
+ 1.47003 2.17589 2.43707 3.45826 3.94968 4.26320 4.42076 3.92590
1160
+ 1.51557 0.68246 -0.39230 -0.84277 0.04559 2.19451 4.72922 6.95780
1161
+ 5.40020 3.82779 2.18071 1.35124 1.31049 1.70777 2.34439 0.75006
1162
+ 0.44316 1.19441 2.39699 3.43932 4.57651 3.99795 3.91034 2.38687
1163
+ 1.04547 0.30750 -0.67905 -0.95180 0.30970 2.62028 4.94026 5.63370
1164
+ 4.90897 3.64364 2.33340 1.59932 2.28424 1.95144 0.81385 0.18108
1165
+ 0.42251 1.36588 2.52927 3.29540 3.55721 3.32056 2.55338 1.75457
1166
+ 0.60608 0.40626 -0.68634 -0.66328 0.65725 2.77987 4.62553 5.30870
1167
+ 4.70772 3.57993 2.28608 1.50195 1.07282 0.51037 0.02107 0.04398
1168
+ 0.78132 1.81193 2.65223 3.05004 3.29539 2.26809 1.28641 0.82302
1169
+ 0.22184 -0.08581 -0.51518 -0.31218 0.81241 2.48610 4.04241 4.45494
1170
+ 4.00716 2.85112 1.57321 0.70165 -0.02248 -0.39760 -0.36780 0.52170
1171
+ 1.52703 2.32447 2.45530 2.32999 1.42990 0.52248 0.32984 -0.22600
1172
+ -0.84996 -0.35427 -0.56081 -0.65299 -0.35852 0.31584 1.22816 2.03830
1173
+ 2.09882 1.37972 0.15727 -0.97399 -1.60803 -1.26567 -0.30784 0.86931
1174
+ 1.82810 1.99110 1.50663 1.56367 -0.12333 -0.81892 -1.35944 -1.44084
1175
+ -0.71561 -0.48676 -0.90866 -1.05252 -0.76509 -0.25592 1.92498 1.39249
1176
+ 1.46845 0.73400 -0.53906 -1.52276 -1.96454 -1.58268 -0.76508 0.34222
1177
+ 1.68651 1.37652 1.09906 0.28335 -0.35007 0.36504 -1.18170 -1.09588
1178
+ -0.48043 -0.38894 -0.89246 -1.00398 -0.72977 1.23204 2.16417 3.03543
1179
+ 3.37771 0.82671 -0.30503 -1.26073 -1.67429 -1.44717 -0.71385 1.24900
1180
+ 2.08698 2.14998 1.83853 0.59083 0.08661 -0.31277 -0.35513 -0.41066
1181
+ -0.69004 -0.51194 -0.32955 -0.69400 -0.07464 0.92871 2.01875 2.85811
1182
+ 2.77128 1.89030 0.66242 -0.07809 -0.10615 -0.38945 0.85104 1.94679
1183
+ 1.73514 1.93323 1.84929 1.46327 1.10934 0.57034 0.50272 0.41957
1184
+ -1.25344 -1.20087 -1.12615 -1.04924 -0.95384 -0.92645 -0.69918 -0.80083
1185
+ -0.88788 -1.12156 -1.25754 -1.27281 -1.10861 -1.24222 -1.29319 -1.21080
1186
+ -1.23111 -1.26112 -1.27972 -1.28928 -1.24905 -1.24053 -1.23026 -1.26240
1187
+ -0.80998 -0.02949 0.66142 0.58819 0.90096 1.83448 2.35428 2.68721
1188
+ 2.63478 2.57170 2.31832 1.91349 0.98844 -0.33805 -0.39669 0.23525
1189
+ 0.83158 0.85527 0.58471 0.11117 -0.22091 -0.31767 -0.30232 -0.53977
1190
+ %FLAG CMAP_PARAMETER_04
1191
+ %COMMENT Val CMAP
1192
+ %FORMAT(8F9.5)
1193
+ -2.01756 -1.73905 -0.84847 -0.46472 0.56763 1.48277 2.25636 2.19993
1194
+ 1.90981 1.92836 2.09834 0.40342 -1.69535 -2.90033 -2.50948 -1.57682
1195
+ -0.64873 -0.15120 -0.28239 -0.73968 -0.94325 -1.11484 -1.15508 -2.03782
1196
+ -1.34105 -1.11818 -0.89418 -0.53817 0.12131 0.92443 1.83452 1.96102
1197
+ 1.70243 1.69935 1.38644 -0.63952 -2.23904 -2.43926 -2.13880 -1.32255
1198
+ -0.42293 -0.09541 -0.22230 -0.57057 -0.62945 -0.77374 -0.70221 -1.35264
1199
+ -0.30513 -0.50219 -0.51144 -0.19462 0.20036 0.92772 1.73742 1.94165
1200
+ 1.66054 1.57483 0.93993 -0.30497 -1.51733 -1.80347 -1.47901 -0.70849
1201
+ 0.12800 0.42168 0.27324 -0.12805 -0.25468 -0.26176 -0.25964 -0.23486
1202
+ 0.22080 0.11254 -0.09598 -0.02547 0.36470 1.04764 1.78065 1.94793
1203
+ 1.64226 1.47878 0.87840 0.00733 -0.78419 -1.14640 -0.91232 -0.13181
1204
+ 0.55113 0.92382 1.28488 0.38464 0.18091 0.23528 0.21156 0.24920
1205
+ 0.97024 0.77699 0.11389 0.09390 0.43246 1.27421 2.11132 2.36347
1206
+ 2.00982 1.63713 1.04527 0.37080 -0.23589 -0.73011 -0.44336 1.26834
1207
+ 1.79252 1.22128 1.25826 1.13028 0.92625 1.82206 0.89856 0.91110
1208
+ 1.70991 1.32299 0.33417 0.14944 1.16593 1.49896 3.19090 2.76539
1209
+ 2.48088 1.89518 1.28911 0.61864 0.01777 -0.14494 0.22396 0.77031
1210
+ 1.07240 1.26184 1.35849 1.28895 1.97069 1.48297 1.57305 1.85292
1211
+ 1.48800 1.13328 0.11690 0.29064 0.85784 1.77367 2.59189 2.91705
1212
+ 2.42216 1.76483 1.79629 0.86281 0.10283 0.37023 0.86569 0.94069
1213
+ 1.01430 1.21124 1.35219 1.30023 1.22214 1.35322 1.48391 1.69070
1214
+ 0.67909 0.57713 0.02502 0.46770 1.40409 2.27852 3.49476 2.78640
1215
+ 1.95403 1.27900 0.55420 -0.02238 1.20682 1.29930 1.52554 1.64336
1216
+ 1.76775 1.70570 1.67854 1.45650 1.09476 0.82649 1.19884 0.75282
1217
+ 0.07073 0.30572 0.52146 1.36896 2.48099 3.33540 3.59124 2.88171
1218
+ 1.76876 1.19799 0.32459 0.32422 0.95308 2.45034 2.37598 2.40673
1219
+ 2.67534 2.65749 2.51708 2.14912 1.18076 0.39138 0.00000 0.07630
1220
+ 0.04074 1.54419 1.96416 3.13362 4.31575 4.95477 4.44775 3.11538
1221
+ 1.50508 0.72125 0.79846 1.33862 2.42257 3.24290 3.12154 3.35226
1222
+ 3.78456 3.99241 3.82937 2.81100 1.25323 0.16589 -0.28260 -0.12977
1223
+ 1.12864 3.90130 4.63426 5.77403 6.31577 5.96470 4.91642 3.16778
1224
+ 2.26973 1.74060 2.27380 2.97981 3.51359 3.19033 3.33677 4.19992
1225
+ 5.22362 5.87548 4.86276 2.93236 1.19785 0.28507 0.14742 0.63000
1226
+ 3.72001 6.33863 5.35590 4.29996 4.26654 4.32352 3.98104 3.33460
1227
+ 2.91813 3.53218 4.29596 4.51641 2.49249 1.90963 2.83865 4.63489
1228
+ 4.97899 4.16045 3.39890 2.32070 1.48906 1.29139 1.60292 2.24778
1229
+ 6.00854 3.89247 2.89440 2.55025 2.57681 3.10775 3.92241 4.01712
1230
+ 4.49403 5.18578 3.70552 2.38215 2.01401 1.59381 3.04997 4.51111
1231
+ 3.23799 2.70851 2.59259 2.38231 2.40214 2.94886 3.50773 4.54844
1232
+ 4.51937 2.50940 1.61873 1.24925 1.66350 3.66266 4.55456 5.47628
1233
+ 6.13567 4.06242 2.85443 2.03944 2.02600 2.52651 3.62142 2.70641
1234
+ 1.97481 2.07470 2.56879 3.03541 3.69679 4.06367 4.65134 5.55831
1235
+ 2.88814 0.52779 0.16551 0.26664 1.58420 3.71632 5.64144 6.08480
1236
+ 4.85665 3.62841 2.86402 2.75331 3.09330 3.73213 2.16268 1.66846
1237
+ 1.14682 2.60251 3.24104 4.65709 4.40085 4.67183 4.61862 3.96074
1238
+ 1.69027 0.76750 -0.69979 -0.15185 2.22330 4.17638 5.53096 5.17628
1239
+ 4.26174 3.52592 3.19619 4.19572 2.94549 1.11204 0.17610 0.05643
1240
+ 0.98595 2.23581 3.45223 3.88084 3.96450 3.73252 3.28716 2.64029
1241
+ 1.47850 0.63019 -0.95303 -0.13694 1.54363 3.47985 4.19958 4.05565
1242
+ 3.90108 3.18085 3.58033 2.62660 2.22083 -0.31386 -0.74356 -0.27479
1243
+ 1.00826 2.19607 2.74108 2.87658 2.77839 2.65101 2.37288 1.92155
1244
+ 1.07215 0.66669 -0.89125 -0.20060 1.02999 2.38189 2.91480 2.77764
1245
+ 2.48398 2.19059 2.01388 1.58231 0.53487 -1.19678 -1.18562 -0.14882
1246
+ 0.98452 1.69506 1.85226 1.71204 1.57096 1.60872 1.52788 1.43156
1247
+ 1.07875 1.04590 -0.55118 -0.28378 0.64179 1.53005 2.05887 1.60199
1248
+ 1.69739 1.25571 1.02661 0.47784 -0.61980 -1.38623 -0.85945 0.33907
1249
+ 1.15832 1.35313 1.15992 0.81644 0.76079 0.76522 0.89391 1.05876
1250
+ 1.45117 1.22355 0.18022 -0.22437 0.39219 1.28115 1.89920 1.64643
1251
+ 1.36145 1.15488 0.69505 -0.03464 -0.80651 -1.04055 -0.39746 0.64416
1252
+ 1.21429 1.35414 1.10084 0.71349 0.62948 0.72070 1.07327 1.35814
1253
+ 1.45821 1.01290 0.30532 -0.11668 0.26191 1.81248 2.13486 2.25298
1254
+ 1.74419 1.24135 0.75222 -0.00108 -0.54822 -0.71040 -0.08108 1.02502
1255
+ 1.44087 1.54881 1.35073 1.01930 0.87623 1.09706 1.50032 1.74125
1256
+ 1.24172 0.70146 0.38540 0.25065 0.37446 1.32984 2.22978 2.81617
1257
+ 2.19013 1.26923 0.57654 0.22218 -0.25813 -0.26505 0.64873 1.84887
1258
+ 1.79747 1.73430 1.57205 1.21116 1.04895 1.15718 1.33818 1.58324
1259
+ 0.52985 0.37156 0.33331 0.30703 0.70760 1.27012 2.34003 3.12435
1260
+ 2.75444 1.71103 0.77398 0.27700 0.07276 0.30492 1.97301 3.06719
1261
+ 2.42419 1.91835 1.82997 1.59237 1.96213 1.07834 0.58274 0.44102
1262
+ -1.78231 -0.90400 -0.83905 0.00646 1.08505 1.99726 2.71747 2.45290
1263
+ 1.86533 2.24530 1.12274 -0.76075 -1.12759 -1.47736 -1.09815 -1.10064
1264
+ -0.11997 0.30194 0.03016 -0.49455 -0.85448 -1.11224 -0.54136 -0.66678
1265
+ %FLAG CMAP_PARAMETER_05
1266
+ %COMMENT Arg CMAP
1267
+ %FORMAT(8F9.5)
1268
+ -0.82019 -0.32734 0.03808 0.23228 0.76963 1.60165 2.36816 2.61664
1269
+ 2.38271 2.02874 1.62850 0.62939 -1.20602 -1.83289 -1.46232 -0.53771
1270
+ 0.32243 0.59859 0.35225 -0.12119 -0.69002 -1.04545 -1.05428 -0.93403
1271
+ -0.41932 -0.15004 0.12826 0.27661 0.72913 1.42432 2.81129 2.67254
1272
+ 2.49050 2.27083 1.72637 -0.18382 -1.46783 -1.77855 -1.39836 -0.44895
1273
+ 0.41819 0.77443 0.57485 0.18351 -0.24581 -0.49794 -0.49109 -0.43134
1274
+ -0.03181 0.09212 0.26463 0.30730 0.67123 1.37932 2.23082 2.63856
1275
+ 2.62596 2.24643 1.07404 -0.34650 -1.22123 -1.37293 -0.94649 -0.06868
1276
+ 0.66814 1.02349 0.90096 0.51091 0.83242 -0.12064 -0.13937 -0.06630
1277
+ 0.30911 0.38230 0.41571 0.35150 0.71886 1.40113 2.24835 2.61976
1278
+ 2.60263 2.19910 1.02051 -0.13725 -0.80984 -0.51727 -0.60832 0.14925
1279
+ 0.95520 2.31597 1.28238 0.95905 0.58435 1.06596 0.36760 0.32559
1280
+ 0.97700 0.87938 0.70298 0.56028 0.90637 1.63130 2.48708 2.91633
1281
+ 2.84540 2.37176 1.28724 0.25600 -0.35258 -0.57629 -0.17251 1.24378
1282
+ 1.33817 1.69485 1.73420 2.41743 1.23425 1.05948 1.01644 1.03179
1283
+ 1.47846 1.26136 0.92101 0.72122 1.88398 1.95481 3.43952 3.26274
1284
+ 3.17158 2.54918 1.49397 0.45059 -0.22429 -0.29407 0.28140 0.97521
1285
+ 1.35309 1.59629 1.79401 1.76556 1.67262 2.50523 2.84585 1.85480
1286
+ 1.12701 0.88950 0.68010 0.70824 1.23056 2.08392 2.94066 3.33371
1287
+ 3.08117 2.31234 1.22116 0.15414 0.31991 -0.02302 0.71736 0.99887
1288
+ 1.27471 1.45474 1.70706 1.63244 1.46896 1.34033 1.41944 1.38113
1289
+ 0.40271 0.40149 0.56144 1.00706 1.81004 2.53536 3.12806 3.21290
1290
+ 2.72394 1.84719 0.67139 -0.10650 -0.16555 1.22354 1.25868 1.63725
1291
+ 1.94073 2.02029 1.96543 1.75902 1.20561 0.79429 1.12809 0.54953
1292
+ -0.02017 0.24010 0.82234 1.78670 2.71108 3.57624 3.89674 3.41370
1293
+ 2.50308 1.42332 0.49400 0.27081 0.71342 1.50828 1.84817 2.30340
1294
+ 2.73753 2.88432 2.72089 2.33911 1.26274 0.32927 0.00000 -0.02509
1295
+ 0.22019 0.81524 1.99565 3.20174 4.27697 4.99287 4.68537 3.60993
1296
+ 2.33489 1.49104 1.20599 1.49948 2.05487 2.09847 2.37240 2.91429
1297
+ 3.57365 4.03015 4.09469 3.12549 1.52656 0.13471 -0.13981 0.05364
1298
+ 1.56488 2.47517 3.89322 5.01126 6.12448 6.24176 5.27335 3.81489
1299
+ 2.73700 2.63495 2.81724 3.07612 2.69272 2.36363 2.58824 3.57488
1300
+ 4.75866 5.70992 5.22088 3.35499 1.49211 0.43632 0.68075 0.99862
1301
+ 3.71466 4.97633 5.03644 4.63092 4.88438 4.95132 4.74947 4.22219
1302
+ 3.96003 4.36300 4.49487 3.50231 2.33286 2.82232 2.84070 4.64427
1303
+ 5.80231 4.93210 4.03654 3.69286 1.82345 1.53744 2.11349 3.00377
1304
+ 5.69846 4.31879 3.48555 3.08843 3.12750 3.84986 4.74837 5.15704
1305
+ 5.69924 5.70772 3.79753 2.20228 2.02020 1.66881 3.16529 4.71910
1306
+ 3.98793 3.46162 3.23644 3.01487 2.85594 3.17651 3.88235 5.08322
1307
+ 4.33361 3.05845 2.15191 1.76674 2.26019 4.62310 5.27599 6.41105
1308
+ 6.57469 4.72069 2.90873 2.58442 1.84659 2.59955 3.75670 3.29872
1309
+ 2.50633 2.64921 3.13213 3.69368 4.11672 4.56694 5.22661 5.41481
1310
+ 2.47932 1.47708 0.92934 0.82583 1.97560 4.09763 6.02009 6.63700
1311
+ 5.63097 4.28706 3.44779 2.55291 2.63996 2.96895 2.52734 1.57697
1312
+ 1.52061 2.36918 3.49937 4.35064 4.63186 4.93333 4.58764 3.87984
1313
+ 1.14030 0.54805 0.15255 0.42318 1.94772 4.16250 5.55489 5.40328
1314
+ 4.90248 3.93201 3.16772 2.77740 2.39321 1.78501 0.79513 0.47158
1315
+ 1.16020 2.17993 3.37552 4.72366 3.82546 3.46230 2.81778 1.93161
1316
+ 0.52749 0.13567 -0.16778 0.12719 1.66181 3.37787 4.18059 4.18535
1317
+ 3.93313 3.28620 3.40583 1.93871 1.19386 0.14108 -0.35986 0.36760
1318
+ 1.06184 1.94671 2.60114 2.72622 2.44593 2.05922 1.56750 1.02523
1319
+ 0.01900 -0.06224 -0.20394 0.11955 1.23281 2.36006 2.79433 2.78651
1320
+ 2.70084 2.19348 1.35765 0.56943 -0.54495 -1.21964 -0.99636 0.01972
1321
+ 1.13276 1.52104 1.46857 1.29408 0.96868 0.64095 0.41292 0.19068
1322
+ -0.07976 0.08211 -0.00959 0.19096 0.86141 1.55762 1.91521 1.67178
1323
+ 1.42661 0.97985 0.22429 -0.82647 -1.22594 -1.79632 -0.99661 0.16885
1324
+ 1.06280 1.09088 0.71015 0.35652 -0.05923 -0.25897 -0.27967 0.15156
1325
+ 0.31643 0.34879 0.03351 0.07730 0.59951 1.35053 1.84798 2.38209
1326
+ 1.48242 0.87376 -0.33412 -1.31902 -1.88732 -1.66595 -0.85111 0.29401
1327
+ 1.01849 1.07281 0.71179 0.25448 -0.16867 -0.19324 -0.07485 0.14014
1328
+ 0.30578 0.18396 0.41854 0.12605 1.31596 1.40698 2.13744 2.31775
1329
+ 1.90841 1.01589 -0.13190 -1.04639 -1.40035 -1.53108 -0.70658 0.55931
1330
+ 1.00526 0.97097 1.46250 0.60875 0.25602 0.27253 1.23801 0.50623
1331
+ -0.21577 -0.32939 -0.28555 -0.12925 0.37096 1.31081 2.17516 2.51541
1332
+ 2.07043 1.07046 0.00522 -0.78938 -1.37985 -1.38712 -0.37447 0.94060
1333
+ 1.21850 1.07708 0.94808 0.67328 0.65820 0.28861 0.37647 0.19858
1334
+ -0.94918 -1.09353 -0.88094 -0.51772 0.10892 1.12433 2.25381 3.33302
1335
+ 2.38527 1.24435 0.47731 -0.27468 -0.92392 -0.73854 0.62725 0.76038
1336
+ 0.86756 0.93678 0.99157 1.26267 0.40698 -0.06675 -0.28978 -0.57344
1337
+ -1.55826 -1.71934 -0.87065 -0.80793 0.11462 1.20435 2.36674 2.85621
1338
+ 2.50426 1.35577 0.89560 -0.29658 -0.31092 -0.83895 -1.29321 -0.66979
1339
+ 0.16650 0.68020 1.64189 0.50936 -0.05755 -0.64713 -0.91307 -1.12834
1340
+ %FLAG CMAP_INDEX
1341
+ %FORMAT(6I8)
1342
+ 8 10 12 27 29 4
1343
+ 27 29 31 51 53 5
1344
+ 51 53 55 58 60 1
1345
+ 58 60 62 68 70 2
1346
+ 68 70 72 82 84 3