job.id 948 job.name {* (C129N6O21H85)2 (P1)_ODPABAPP_6_opt} job.description { } job.status finished job.submitted {2025-07-14 12:57:38} job.started {2025-07-14 12:57:39} job.finished {2025-07-14 17:02:43} job.queue 2 job.errormsg {} job.pid 0 job.userid 1 job.priority 5 job.jobserverid 2 data.joboptions {_protocol_type_ JobControl _description_ {} passwd {} _name_ {} nproc 3 priority 5 _protocol_id_ 0 _protocol_pid_ 0 _version_ 1.1 context {} user user} data.script {# # Basic script for running batch jobs # package require logger package require MD::Stage package require MD::TaskManager package require MD.Results package require memory package require MD::Workspace package require jobcontrol package require JobOptions package require base64 package require md5 proc task {args} {} namespace eval ::MD {} logger::setlevel notice set gLog [logger::init MD] ::logger::import -all -prefix "log_" -namespace ::MD MD # # Get the version of the Jobs database in use # set JobDBVersion [join [db "SELECT value FROM info WHERE item ='Version'"]] # If we want to start child jobs, we need a jobcontrol object, on the localhost Jobcontrol::JobcontrolProxy ::jobcontrol # # The workspace # set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND item = 'workspace'"] 0]] ::MD::Workspace ::workspace ::workspace fromString $tmp # # Any input files? # set lfiles "" if {[catch { set lfiles [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'input_file'"]] } err_msg]} { error "Failed while getting input files:\n $err_msg" } set linput_files "" foreach elem $lfiles { set fname [file join [pwd] [lindex $elem 0]] set stage_id [lindex $elem 1] set fdata [lindex $elem 2] # See if this is base64 encoded if {![catch {set decode64_data [::base64::decode $fdata]}]} { # Succesfully decoded from base64 set fdata $decode64_data unset decode64_data } if {[catch { set fd [open $fname "w"] fconfigure $fd -encoding binary -translation binary puts -nonewline $fd $fdata close $fd } err_msg]} { error "Failed to write Job input file $fname:\n $err_msg" } unset fdata lappend linput_files [list $stage_id $fname] } # # Get info about this job # if {$JobDBVersion < 3.0} { set jdata [join [db "SELECT name, queue, userid, priority, jobserverid FROM job WHERE id = $::job::id"]] set ::job::name [lindex $jdata 0] set ::job::queueid [lindex $jdata 1] set ::job::userid [lindex $jdata 2] set ::job::priority [lindex $jdata 3] set ::job::parent 0 } else { set jdata [join [db "SELECT name, queue, userid, priority, jobserverid, parent FROM job WHERE id = $::job::id"]] set ::job::name [lindex $jdata 0] set ::job::queueid [lindex $jdata 1] set ::job::userid [lindex $jdata 2] set ::job::priority [lindex $jdata 3] set ::job::parent [lindex $jdata 5] } set ::job::username "" set ::job::queue "" if {[string is integer -strict $::job::userid]} { # Get the username from the user id if {[catch {set ::job::username [join [db "SELECT name FROM user WHERE id = $::job::userid"]]}]} { set ::job::username [join [db "SELECT name FROM \[user\] WHERE id = $::job::userid"]] } } if {[string is integer -strict $::job::queueid]} { # Get the queue name from the queue id set ::job::queue [join [join [db "SELECT name FROM queue WHERE id = $::job::queueid"]]] } # # Get the nproc option in order to pass it along to subjobs if any # set ::job::nproc 1 set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND item = 'joboptions'"] 0]] foreach {opt_name opt_value} $tmp { if {$opt_name == "nproc"} { set ::job::nproc $opt_value } } # # Set up information about the job in the workspace # ::workspace eval namespace eval ::job [list set id $::job::id] ::workspace eval [list set ::job::parent $::job::parent] ::workspace eval [list set ::job::serverId [info hostname]] ::workspace eval [list set ::job::dir [pwd]] ::workspace eval [list set ::job::name [join $::job::name "_"]] ::workspace eval [list set ::job::queueid $::job::queueid] ::workspace eval [list set ::job::queue $::job::queue] ::workspace eval [list set ::job::userid $::job::userid] ::workspace eval [list set ::job::username $::job::username] ::workspace eval [list set ::job::priority $::job::priority] ::workspace eval [list set ::job::nproc $::job::nproc] # Prepare a list of command to execute from the calling job. ::workspace eval [::list set ::subjob_commands ""] # # And forcefield, if required # set ff_local [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_local'"]] if {[::workspace eval {info exists __fffile}]} { package require MD::FF ::MD::FF ::FF ::FF configure -silent 1 catch { if {$ff_local != ""} { # Load a local forcefield set fname [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_file'"]] if {[string range $fname 0 0] == "\{"} { set fname [join $fname] } set fdata [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_content'"]] if {[string range $fdata 0 0] == "\{"} { set fdata [join $fdata] } # See if this is base64 encoded if {![catch {set decode64_data [::base64::decode $fdata]}]} { # Succesfully decoded from base64 set fdata $decode64_data unset decode64_data } set fd [open $fname "w"] puts -nonewline $fd $fdata close $fd ::FF readFF [file join [pwd] $fname] ::FF configure -forcefield $ff_local # Update the workspace for sub-jobs if any ::workspace eval [list set __fffile [::FF fffile]] ::workspace eval [list set __ff $ff_local] } else { # Setup a forcefield from Forcefield.kit set __fffile [::workspace eval {set __fffile}] ::FF readFF $__fffile set __ff [::workspace eval {set __ff}] ::FF configure -forcefield $__ff } set ::FF ::FF set fdata "" # On old JS the ff_file_content might not be available catch {set fdata [::FF ff_file_content]} if {$fdata != ""} { set ffmd5 [::md5::md5 -hex $fdata] unset fdata set cur_ff [::FF cget -forcefield] set cur_file [::FF fffile] puts "\nForcefield set to: $cur_ff\n File: $cur_file \t md5 sum: $ffmd5\n" } } } # # The stages, ignoring everything else like the flowchart # set ok 0 set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND LOWER(item) = 'flowchart'"] 0]] if {[string length $tmp] > 2} { foreach {item data} $tmp { switch $item { "StageHandler" { ::MD::Stage::Handler stageHandler -workspace ::workspace stageHandler fromString $data set ok 1 } } } } else { # No flowchart, but maybe a stagehandler... set data [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND LOWER(item) = 'stagehandler'"] 0]] if {[string length $data] > 2} { ::MD::Stage::Handler stageHandler -workspace ::workspace stageHandler fromString $data set ok 1 } } unset -nocomplain tmp if {!$ok} { error "Could not find the stage information!" } # # Other tools that we need # ::MD::TaskManager taskmanager if {[file exists Job.xml]} { file delete -force Job.xml } ::MD::Results::Handler Results -file Job.xml # # Finally, do the real work # set stage [stageHandler getInitialStage] $stage configure -workspace ::workspace -workingdirectory [pwd] $stage run 0 # # And save any unsaved results # Results save # # Write down the final workspace if this job was started by another # if {$::job::parent > 0} { set fd [open "final_workspace.txt" "w"] puts $fd [::workspace toString] close $fd } } data.StageHandler {Class ::MD::Stage::Handler Version 1.2 Stages { md-stage-start-83fa4be0-c8c6-41da-8095-837e3c874566 {} ::MD::Stage::Start { Class ::MD::Stage::Start Version 1.2 Id md-stage-start-83fa4be0-c8c6-41da-8095-837e3c874566 Options {-description {Replace this with a description of this flowchart!} -summary {A one-line summary of this flowchart!} -stageid 1 -stdout stdout -master {} -debug 0 -iteration {} -stderr stderr -system {$system} -workingdirectory .} } md-vasp6api-stage-d9c73643-910d-4f2c-9d61-355c66b24f0b MD::VASP6api::Batch ::MD::VASP6api::Stage { Base { Class ::MD::VASP6api::Stage Version 1.2 Id md-vasp6api-stage-d9c73643-910d-4f2c-9d61-355c66b24f0b Options {-system {$system} -results ::Results -stageid 1 -stdout stdout -master {} -debug 0 -iteration {} -stderr stderr -Base::system {$system} -workingdirectory .} } Class ::MD::VASP6api::Stage Version 1.0 VASPOptions { ACFDT-RPARmode 0 ACFDT-RPAmode 0 ActualKMesh {1 1 1} ActualKSpacings {0.366 0.366 0.366} BandStructure/_description_ {} BandStructure/_name_ {} BandStructure/_protocol_id_ 0 BandStructure/_protocol_pid_ 0 BandStructure/_protocol_type_ BandStructure BandStructure/_version_ 2.1 BandStructure/explicitpath 0 BandStructure/labels {} BandStructure/maxpoints 40 BandStructure/module VASP BandStructure/npertask 40 BandStructure/npoints {} BandStructure/symmetrypoints {} BandStructure/vertices {} DDH-DSH_decay 1.26 DDH-DSH_longrange 0.1 DimerVASP 0 Efield_direction x-axis ElPhonmode 0 FFTcharges 0 GWRcalc {quasiparticle shifts} GWRmode 0 GW_ismear Gaussian GW_metals 0 GW_mporder 1 GW_sigma 0.2 GW_sigmaGauss 0.05 GWalgorithm {eigenvalues for G (GW0)} GWcalc {quasiparticle shifts} GWmode 0 Gshift 1 HF_Gshift 1 HF_amix 0.2 HF_bstr_kmesh {as for non-local exchange} HF_kInputmode {set spacing between k-points} HF_kPointMode 0 HF_kSpacing 0.5 HF_nk1_base 1 HF_nk2_base 1 HF_nk3_base 1 HF_nkodd 0 HF_nkx 4 HF_nky 4 HF_nkz 4 HF_timestep 0.4 HF_timestep_initial 0.4 MLFF_Task_MD {Create forcefield by on-the-fly learning} ML_Gwidth_angular {} ML_Gwidth_radial 0.5 ML_Rcut_angular 5.0 ML_Rcut_radial 8.0 ML_atomicEnergy 0 ML_atomicenergy {} ML_energyscaling {average energy of training data} ML_handleOverflow 1 ML_heatFlux 0 ML_lmax 3 ML_nMLFFstepsmin {} ML_nbasisfunct_angular 8 ML_nbasisfunct_radial 12 ML_nconfigstemp 5 ML_nrefconfigsmax {} ML_nstructuremax {} ML_output_frequency 1 ML_pair-correlation 1 ML_thresholdconfigfactor 0.6 ML_thresholdfactor {} ML_thresholdforceserror 0.002 ML_thresholdsparsification {} ML_thresholdupdate automatic ML_thresholdupdatefactor 1.0 ML_weight_energy 1.0 ML_weight_forces 1.0 ML_weight_radial 0.1 ML_weight_stress 1.0 MP2mode 0 NEBinVASP 0 TDHFmode 0 TimeEv_nbands_occ {} TimeEv_nbands_unocc {} TimeEvmode 0 TimeStep_definition {via complex shift} _description_ {} _name_ {} _protocol_id_ 0 _protocol_pid_ 0 _protocol_type_ VASP _version_ 2.4 acfdt-rpa_metals 0 addgrid 0 algo {Normal (blocked Davidson)} algoHF {Damped molecular dynamics} amix 0.2 apaco {} applyMLFF_ElPhon 0 applyMLFF_MT 0 applyMLFF_OPT 0 applyMLFF_SP 0 apply_localization immediately apply_solvation 0 backgroundCharge 0 bandstructure 0 cshift 0.1 cshiftGW {} cshiftTimeEv {} default_encut 400.000 delayeach 0 description {} displacement 0.015 displacement_number 1 dos 0 dos_Gshift 1 dos_ismear Gaussian dos_kInputmode {set spacing between k-points} dos_kSpacing 0.25 dos_mporder 1 dos_nkodd 0 dos_nkx 9 dos_nkxmult 2 dos_nky 9 dos_nkymult 2 dos_nkz 9 dos_nkzmult 2 dos_projection {automatic choice} dos_sigma 0.2 dos_sigmaGauss 0.05 ediff 1.0e-05 ediffg -0.02 efield 0 efield_dir none elastic 0 elements_sites elements elphon_calculation {Single configuration (Zacharias-Giustino)} elphon_nstruct 100 elphon_temperature 0.0 emax {} emin {} enaug {} encut {} encutGW {} encut_nmr {} engine {for GPUs} explicitKPoints 0 extrainput {} file_return Normal fixcharg 0 functional {Density functional} gwr_nomega 16 gwr_sigma 0.1 gwr_tempmode {T = 0K (systems with band gap)} hybrid_functional HSE06 ibrion -1 icharg {Atomic charge densities} images 3 increase_encut 0 indepParticleApprox_TimeEv 0 initialDimerDir {} iniwav {Random numbers} involveMLFF_MD 0 isif {} ismear Methfessel-Paxton ispin 0 istart 0 isym {} iwave {from scratch} iwaveder 0 iwtmp 0 j_parameter {} kInputmode {set spacing between k-points} kSpacing 0.5 kblock {} kpoints {} lEoF 0 l_parameter {} laechg 0 lcharg 0 ldapu {Standard LDA or GGA} lefg 0 lelf 0 lepsilon 0 lhyperfine 0 lmaxHF {lmax = 4} lmaxaeGW {full shape up to lmax = 4} lmaxmp2 {up to lmax = 2} localization_ediff 1.0e-03 localization_steps 10 lpead 0 lreal {Reciprocal space} lscalapack 0 lsol 0 lspectral 1 ltmp2_nomega 6 lvhar 1 lvtot 0 lwave 0 lwaveder 0 magmom 1 magnetism {Defined by model} maxbandpoints 40 maxmem {} meta-GGA revTPSS modelBSE 0 modelBSE_AEXX {} modelBSE_HFSCREEN {} modelBSE_nbands_occ {} modelBSE_nbands_unocc {} mp2_calculation {Møller-Plesset perturbation theory (MP2)} mporder 1 nTimeSteps 100 napaco {} nbands {} nbandsGW {} nbands_GW {} nbands_TDHF {} nbands_TimeEv {} nbands_occ {} nbands_opt {} nbands_unocc {} nblk {} nblock 1 nedos 3000 nelm 60 nelmGW 4 nelmdl {} nelmin 2 nfree 2 ngx 0 ngy 0 ngz 0 nkodd 0 nkx 4 nkxmult 1 nky 4 nkymult 1 nkz 4 nkzmult 1 nmr 0 nmr_maxkpoints 10 nomega 50 nomega_acfdt 12 nomega_tdhf 50 nosymmetry 0 nsw 0 nuj {} nwrite 1 oddonlyGW 0 optical_matrix_elements 0 optics 0 phonons_ismear Methfessel-Paxton phonons_mporder 1 phonons_sigma 0.2 phonons_sigmaGauss 0.05 poscar_filename {} potentials {GGA-PBE PAW {8 O 1 H 6 C 7 N}} potentials_version {Version 54} potim {} prec Accurate precision Accurate precisionHF Normal precsym 1.0E-05 pressure 0 protHF_MD {DFT Single Point + Non-local Molecular Dynamics} protHF_Opt {DFT Single Point + Non-local Structure Optimization} protHF_SP {DFT Single Point + Non-local Single Point} read_poscar 0 reducedFFTHF 0 refit_MLFF {for fast running applications} response 0 response_ismear {Tetrahedron with Bloechl corrections} response_kmesh {as for DOS and optics} response_mporder 1 response_sigma 0.2 response_sigmaGauss 0.05 restart_MLFF {} restart_MLFF_prefix {} restart_chg {} restart_chg_prefix {} restart_type {constant energy cutoff} restart_wave {} restart_wave_prefix {} restart_waveder {} restart_wtmp {} rpar_calculation {single point energy (all systems)} rpar_convergence 0.02 rpar_mintrjfrequency 1 rpar_nomega 12 rpar_nsteps 100 rpar_sigma 0.1 rpar_tempmode {T = 0K (systems with band gap)} scissors {} sigma 0.2 sigmaGauss 0.05 sltmp2_estop {} sltmp2_nstorb {} smass {} smass_real {} solvation_energy 0 solvent_dielectric 78.4 spinaxis_x {} spinaxis_y {} spinaxis_z {} spininterpol Vosko-Wilk-Nusair spring -5 summary {* (C129N6O21H85)2 (P1)_ODPABAPP_6_opt} tebeg {} teend {} thomasFermi 1.8 thomasFermi_choice {average valence density} thomasFermi_fromDensity 1.5868334412533085 timestep 0.4 timestep_initial 0.4 totalmoment {} u-j_parameter {} u_parameter {} van_der_Waals None van_der_Waals_functional optB86b-vdW vibrations 0 voskown {} weights {} workfunction 0} SimulationOptions { _description_ {} _name_ {} _protocol_id_ 0 _protocol_pid_ 0 _protocol_type_ Simulation _version_ 2.0 a 1 alpha 1 andersen_prob 0.1 averagefrequency 40.0 b 1 beta 1 c 1 calculation {Structure Optimization} convergence 0.02 eachstep 0 econvergence 1.0e-03 endtemperature {} ensemble {micro canonical (nVE)} gamma 1 mintrjfile trajectory.data mintrjfrequency 1 nosemass {} npt_alpha constrain npt_aparam none npt_beta constrain npt_bparam none npt_constraints isotropic npt_cparam none npt_gamma constrain npt_monitoralpha none npt_monitoraparam none npt_monitorbeta none npt_monitorbparam none npt_monitorcparam none npt_monitorgamma none npt_monitorvolume monitor npt_volume none nsteps 100 nve_thermostat Nosé-Hoover nvt_thermostat Nosé-Hoover paircorrdistance 16.0 paircorrslots 256 pmass {} relaxalgo {Conjugate Gradient} relaxatompos 1 relaxatoms 1 relaxcell 0 relaxvolume 0 restart_md {} restart_md_prefix {} strain 0.01 strains 0.005 temperature 298.0 time 120.0 timestep 4.0 trjfile trajectory.data trjfrequency 1 use_wavecars 0 version 6 yinatoms {} yinyang 0 } } } Connections { md-stage-start-83fa4be0-c8c6-41da-8095-837e3c874566,md-vasp6api-stage-d9c73643-910d-4f2c-9d61-355c66b24f0b 1 } } data.workspace {Class ::MD::Workspace Version 1.0 Packages { MD::Db::MaterialsDesign 1.0 MD::Db::ICSD 1.0 MD::Db::COD 1.0 jobcontrol 3.0 Thread 2.8.7 MD::FF 1.0.1 MD::Db 1.1 MD::Db::Pearson 1.0 database 1.0 MD::Db::MetaDb 1.1 MD::Db::NCD 1.0 MD::Db::Pauling 1.0 Utility 1.0 } Variables { scalar ::MedeADb C:/MD_3.10.0/Databases/MedeA.db array ::Units {scalar energy eV} object ::system {::System {@Title amorphous(poly(Untitled)) @Columns AsymmetricAtom AtomicNumber int 0 Connections string {{}} FFAtomType string {{}} FFCharge double 0.0 Fractional double {{0.0 0.0 0.0}} Name string {{}} Site int 1 WyckoffPosition int -1 @end @data 6 {} C 0.0 {0.573579685741 0.0477224428297 0.459810987469} Untitled_1::C1 1 -1 1 {} H 0.0 {0.728503765014 0.0684251557331 0.338633350401} Untitled_1::H1 2 -1 6 {} C 0.0 {0.64687449574 0.0709706984277 0.434061433021} Untitled_1::C2 3 -1 1 {} H 0.0 {0.684605950117 0.104778896137 0.471987880916} Untitled_1::H2 4 -1 6 {} C 0.0 {0.671325484448 0.0507534157897 0.359375391527} Untitled_1::C3 5 -1 6 {} C 0.0 {0.528652052059 0.996820803433 0.414944245463} Untitled_1::C4 6 -1 1 {} H 0.0 {0.474495333582 0.973140668462 0.437986979265} Untitled_1::H3 7 -1 6 {} C 0.0 {0.55309803864 0.976542239378 0.341390783855} Untitled_1::C5 8 -1 1 {} H 0.0 {0.518681359192 0.935907144943 0.306256173351} Untitled_1::H4 9 -1 6 {} C 0.0 {0.621434386889 0.00781381077707 0.31162532316} Untitled_1::C6 10 -1 8 {} O 0.0 {0.638016758546 0.995570635073 0.228996723756} Untitled_1::O1 11 -1 6 {} C 0.0 {0.567607323386 0.0293847569689 0.193129876327} Untitled_1::C7 12 -1 1 {} H 0.0 {0.490589633759 0.206147511426 0.155307123434} Untitled_1::H5 13 -1 6 {} C 0.0 {0.564077536314 0.109196794342 0.18148318417} Untitled_1::C8 14 -1 1 {} H 0.0 {0.616622511302 0.144440454558 0.185537880578} Untitled_1::H6 15 -1 6 {} C 0.0 {0.493588398638 0.143867272025 0.165329336832} Untitled_1::C9 16 -1 6 {} C 0.0 {0.502305074509 0.982988455538 0.179470499813} Untitled_1::C10 17 -1 1 {} H 0.0 {0.507260906704 0.919803614656 0.180088589752} Untitled_1::H7 18 -1 6 {} C 0.0 {0.430715479965 0.0183832327379 0.164904254078} Untitled_1::C11 19 -1 1 {} H 0.0 {0.378540023515 0.983130105304 0.156353600347} Untitled_1::H8 20 -1 6 {} C 0.0 {0.426357775232 0.0991789285787 0.161701463317} Untitled_1::C12 21 -1 6 {} C 0.0 {0.348874857508 0.139877981909 0.153184013393} Untitled_1::C13 22 -1 6 {} C 0.0 {0.357281900621 0.204511053231 0.0907664757201} Untitled_1::C14 23 -1 1 {} H 0.0 {0.301442319415 0.250843872358 0.904706180138} Untitled_1::H9 24 -1 6 {} C 0.0 {0.319205937669 0.198273875477 0.0187372394047} Untitled_1::C15 25 -1 1 {} H 0.0 {0.281101372731 0.148874549614 0.00714875877257} Untitled_1::H10 26 -1 6 {} C 0.0 {0.330207387593 0.256203831195 0.961330217237} Untitled_1::C16 27 -1 6 {} C 0.0 {0.404706755847 0.269078236768 0.106214426123} Untitled_1::C17 28 -1 1 {} H 0.0 {0.433687149231 0.274116610645 0.16251547944} Untitled_1::H11 29 -1 6 {} C 0.0 {0.415154271614 0.327320413238 0.0494930497245} Untitled_1::C18 30 -1 1 {} H 0.0 {0.451683938786 0.377351924204 0.0621220309515} Untitled_1::H12 31 -1 6 {} C 0.0 {0.378387885665 0.320881159311 0.976867323665} Untitled_1::C19 32 -1 8 {} O 0.0 {0.389966771441 0.38298798157 0.914947668566} Untitled_1::O2 33 -1 6 {} C 0.0 {0.438272642533 0.450425474692 0.945693096749} Untitled_1::C20 34 -1 1 {} H 0.0 {0.448520895143 0.649079247795 0.935130112323} Untitled_1::H13 35 -1 6 {} C 0.0 {0.417605689926 0.527452074417 0.926520558887} Untitled_1::C21 36 -1 1 {} H 0.0 {0.365631874369 0.538742476657 0.892031297234} Untitled_1::H14 37 -1 6 {} C 0.0 {0.463360456814 0.589779239662 0.952108158405} Untitled_1::C22 38 -1 6 {} C 0.0 {0.503853354652 0.436686076541 0.992341495393} Untitled_1::C23 39 -1 1 {} H 0.0 {0.521212962882 0.377157985938 0.00610415894633} Untitled_1::H15 40 -1 6 {} C 0.0 {0.547790259377 0.499854480337 0.0206497381841} Untitled_1::C24 41 -1 1 {} H 0.0 {0.597173654168 0.489382376854 0.0590496926167} Untitled_1::H16 42 -1 6 {} C 0.0 {0.527968583214 0.576441948083 0.999086378255} Untitled_1::C25 43 -1 6 {} C 0.0 {0.285330040651 0.0815671506563 0.130878855857} Untitled_1::C26 44 -1 6 {} C 0.0 {0.32803736701 0.175696575765 0.231824675954} Untitled_1::C27 45 -1 1 {} H 0.0 {0.229538740062 0.111767858565 0.127385273827} Untitled_1::H17 46 -1 1 {} H 0.0 {0.28197575689 0.03615872344 0.175352624544} Untitled_1::H18 47 -1 1 {} H 0.0 {0.298993869479 0.055543182467 0.0750031335616} Untitled_1::H19 48 -1 1 {} H 0.0 {0.272637943548 0.203010437077 0.227283552189} Untitled_1::H20 49 -1 1 {} H 0.0 {0.371871236847 0.218547806162 0.248184968059} Untitled_1::H21 50 -1 1 {} H 0.0 {0.325183731757 0.129980878977 0.276024397295} Untitled_1::H22 51 -1 8 {} O 0.0 {0.0470807480626 0.331671199623 0.627776363813} Untitled_1::O3 52 -1 6 {} C 0.0 {0.0718990403396 0.260599358966 0.652963275487} Untitled_1::C28 53 -1 7 {} N 0.0 {0.0329973120826 0.183241244578 0.637661757535} Untitled_1::N1 54 -1 6 {} C 0.0 {0.0829303692617 0.122117818545 0.676451803998} Untitled_1::C29 55 -1 8 {} O 0.0 {0.0699276426171 0.0438374535375 0.67648769922} Untitled_1::O4 56 -1 6 {} C 0.0 {0.15178752308 0.165408845503 0.715951421953} Untitled_1::C30 57 -1 6 {} C 0.0 {0.212790064601 0.13416450413 0.758719924829} Untitled_1::C31 58 -1 6 {} C 0.0 {0.271632276149 0.1861901788 0.786153334374} Untitled_1::C32 59 -1 8 {} O 0.0 {0.34210352391 0.15479691237 0.827987413147} Untitled_1::O5 60 -1 6 {} C 0.0 {0.408168119271 0.144635241481 0.770876477217} Untitled_1::C33 61 -1 6 {} C 0.0 {0.482699308414 0.17735169992 0.787912613272} Untitled_1::C34 62 -1 6 {} C 0.0 {0.542139572396 0.176277472096 0.731416231401} Untitled_1::C35 63 -1 6 {} C 0.0 {0.527968189209 0.138468795602 0.663322243901} Untitled_1::C36 64 -1 6 {} C 0.0 {0.583765221772 0.127716731329 0.594733060557} Untitled_1::C37 65 -1 8 {} O 0.0 {0.656643251869 0.158803471507 0.588223645203} Untitled_1::O6 66 -1 6 {} C 0.0 {0.462776962727 0.0609672510209 0.568319330458} Untitled_1::C38 67 -1 8 {} O 0.0 {0.405222179483 0.0188465162529 0.533040518813} Untitled_1::O7 68 -1 6 {} C 0.0 {0.458326982165 0.102063838743 0.64804845145} Untitled_1::C39 69 -1 6 {} C 0.0 {0.396746128334 0.104462152991 0.699568074798} Untitled_1::C40 70 -1 6 {} C 0.0 {0.263672730202 0.268711696241 0.772704762362} Untitled_1::C41 71 -1 6 {} C 0.0 {0.198804611012 0.297287312702 0.730054073121} Untitled_1::C42 72 -1 6 {} C 0.0 {0.145318148213 0.244169066433 0.702260543117} Untitled_1::C43 73 -1 1 {} H 0.0 {0.2156539566 0.0719629054671 0.771456927817} Untitled_1::H23 74 -1 1 {} H 0.0 {0.493875236378 0.200914751882 0.844219988727} Untitled_1::H24 75 -1 1 {} H 0.0 {0.597543715985 0.205269753695 0.741541459899} Untitled_1::H25 76 -1 1 {} H 0.0 {0.341570789236 0.07630703251 0.686169476271} Untitled_1::H26 77 -1 1 {} H 0.0 {0.307180506391 0.30916042565 0.795375940142} Untitled_1::H27 78 -1 1 {} H 0.0 {0.191443550956 0.359251982481 0.719695424035} Untitled_1::H28 79 -1 7 {} N 0.0 {0.542418943506 0.0767898771501 0.536126869903} Untitled_1::N2 80 -1 6 {} C 0.0 {0.812182696388 0.309168968593 0.235058585763} Untitled_2::C1 81 -1 1 {} H 0.0 {0.869180018797 0.494356663352 0.197208079423} Untitled_2::H1 82 -1 6 {} C 0.0 {0.852250734218 0.37050869985 0.200290943163} Untitled_2::C2 83 -1 1 {} H 0.0 {0.893026197159 0.359362142561 0.153613187006} Untitled_2::H2 84 -1 6 {} C 0.0 {0.840057527154 0.446461112506 0.225917420998} Untitled_2::C3 85 -1 6 {} C 0.0 {0.759427402012 0.324231960635 0.295354388587} Untitled_2::C4 86 -1 1 {} H 0.0 {0.725326035987 0.276828978335 0.320175236907} Untitled_2::H3 87 -1 6 {} C 0.0 {0.750177502834 0.400125602981 0.323214244276} Untitled_2::C5 88 -1 1 {} H 0.0 {0.712267894143 0.411468195758 0.372788261248} Untitled_2::H4 89 -1 6 {} C 0.0 {0.790338460747 0.461139007759 0.28783491402} Untitled_2::C6 90 -1 8 {} O 0.0 {0.780311268137 0.542516742742 0.315805179481} Untitled_2::O1 91 -1 6 {} C 0.0 {0.829059885283 0.595803443666 0.265963264677} Untitled_2::C7 92 -1 1 {} H 0.0 {0.823389069393 0.776315597923 0.184349879844} Untitled_2::H5 93 -1 6 {} C 0.0 {0.800856231946 0.669069533272 0.246175811477} Untitled_2::C8 94 -1 1 {} H 0.0 {0.743707249973 0.68755550332 0.266993992765} Untitled_2::H6 95 -1 6 {} C 0.0 {0.845705131187 0.719297201482 0.199676292622} Untitled_2::C9 96 -1 6 {} C 0.0 {0.902776706369 0.571817291122 0.239295057264} Untitled_2::C10 97 -1 1 {} H 0.0 {0.925550030148 0.51471740349 0.255688337219} Untitled_2::H7 98 -1 6 {} C 0.0 {0.947372354684 0.621748432709 0.191875761947} Untitled_2::C11 99 -1 1 {} H 0.0 {0.00384627165268 0.602537103574 0.169606712821} Untitled_2::H8 100 -1 6 {} C 0.0 {0.918795129888 0.696323615296 0.173063783996} Untitled_2::C12 101 -1 6 {} C 0.0 {0.968036504716 0.753483635994 0.123237552368} Untitled_2::C13 102 -1 6 {} C 0.0 {0.925618714781 0.77073824969 0.0454046449553} Untitled_2::C14 103 -1 1 {} H 0.0 {0.913245228541 0.706346244379 0.857364342842} Untitled_2::H9 104 -1 6 {} C 0.0 {0.942506134393 0.727088259941 0.978200068536} Untitled_2::C15 105 -1 1 {} H 0.0 {0.98827566725 0.683194553532 0.979270967906} Untitled_2::H10 106 -1 6 {} C 0.0 {0.900430650631 0.740278048091 0.909664770009} Untitled_2::C16 107 -1 6 {} C 0.0 {0.86916220096 0.829785167262 0.0423763334097} Untitled_2::C17 108 -1 1 {} H 0.0 {0.856963125669 0.864683310106 0.0938985214066} Untitled_2::H11 109 -1 6 {} C 0.0 {0.828380545606 0.843679421521 0.973461397588} Untitled_2::C18 110 -1 1 {} H 0.0 {0.786189038299 0.891196785175 0.970465842863} Untitled_2::H12 111 -1 6 {} C 0.0 {0.841968570572 0.797090601508 0.908153901452} Untitled_2::C19 112 -1 8 {} O 0.0 {0.794224812014 0.808126427758 0.836703782677} Untitled_2::O2 113 -1 6 {} C 0.0 {0.731005515654 0.747833305679 0.836752251823} Untitled_2::C20 114 -1 1 {} H 0.0 {0.707587118932 0.550748816759 0.836529951116} Untitled_2::H13 115 -1 6 {} C 0.0 {0.750505551436 0.66885951067 0.839016210002} Untitled_2::C21 116 -1 1 {} H 0.0 {0.811322613786 0.651311398813 0.844095894602} Untitled_2::H14 117 -1 6 {} C 0.0 {0.69214108818 0.612354721305 0.834997009128} Untitled_2::C22 118 -1 6 {} C 0.0 {0.65270968416 0.770452024827 0.834127424781} Untitled_2::C23 119 -1 1 {} H 0.0 {0.637555811153 0.832025857298 0.833990628369} Untitled_2::H15 120 -1 6 {} C 0.0 {0.593806682296 0.713648719236 0.831446871426} Untitled_2::C24 121 -1 1 {} H 0.0 {0.532725507337 0.730985664241 0.831631498903} Untitled_2::H16 122 -1 6 {} C 0.0 {0.613807304392 0.634748125091 0.828926546014} Untitled_2::C25 123 -1 6 {} C 0.0 {0.978380891195 0.830286812116 0.169197770904} Untitled_2::C26 124 -1 6 {} C 0.0 {0.0483471173471 0.717275052432 0.107780192898} Untitled_2::C27 125 -1 1 {} H 0.0 {0.0149792603678 0.870252562684 0.136239628959} Untitled_2::H17 126 -1 1 {} H 0.0 {0.00571692288892 0.817798062901 0.225070607998} Untitled_2::H18 127 -1 1 {} H 0.0 {0.921568293664 0.856833486259 0.179228165911} Untitled_2::H19 128 -1 1 {} H 0.0 {0.0839524213756 0.758099395303 0.0746399765138} Untitled_2::H20 129 -1 1 {} H 0.0 {0.0415670102041 0.663427227045 0.0748431078493} Untitled_2::H21 130 -1 1 {} H 0.0 {0.0765534069398 0.704875397612 0.163247889517} Untitled_2::H22 131 -1 8 {} O 0.0 {0.530554264415 0.752946820557 0.934341927817} Untitled_2::O3 132 -1 6 {} C 0.0 {0.575027963483 0.727100189136 0.994330158929} Untitled_2::C28 133 -1 7 {} N 0.0 {0.575574319464 0.645651337761 0.0280133449594} Untitled_2::N1 134 -1 6 {} C 0.0 {0.635100228307 0.646073166645 0.0924671854552} Untitled_2::C29 135 -1 8 {} O 0.0 {0.65436198668 0.58472135532 0.139506877228} Untitled_2::O4 136 -1 6 {} C 0.0 {0.669676857739 0.729878010738 0.0954981563718} Untitled_2::C30 137 -1 6 {} C 0.0 {0.726965896636 0.758145996997 0.143780353196} Untitled_2::C31 138 -1 6 {} C 0.0 {0.752085570603 0.83650284331 0.133389368312} Untitled_2::C32 139 -1 8 {} O 0.0 {0.818107222933 0.867019187054 0.182754087759} Untitled_2::O5 140 -1 6 {} C 0.0 {0.834756227495 0.950834432708 0.1664354656} Untitled_2::C33 141 -1 6 {} C 0.0 {0.893450429391 0.972633512421 0.110466726765} Untitled_2::C34 142 -1 6 {} C 0.0 {0.913279377983 0.0527270858283 0.100994996835} Untitled_2::C35 143 -1 6 {} C 0.0 {0.873076881312 0.106317887058 0.145622026965} Untitled_2::C36 144 -1 6 {} C 0.0 {0.882860816739 0.195740956804 0.14820315078} Untitled_2::C37 145 -1 8 {} O 0.0 {0.934075238969 0.23887086934 0.105318110305} Untitled_2::O6 146 -1 6 {} C 0.0 {0.782749004936 0.155532072718 0.23910323917} Untitled_2::C38 147 -1 8 {} O 0.0 {0.725631117592 0.15521249417 0.294392907145} Untitled_2::O7 148 -1 6 {} C 0.0 {0.815851412489 0.0841479486727 0.197280514753} Untitled_2::C39 149 -1 6 {} C 0.0 {0.794892586742 0.00839678852928 0.208167569393} Untitled_2::C40 150 -1 6 {} C 0.0 {0.714587769921 0.884715129943 0.0753918289697} Untitled_2::C41 151 -1 6 {} C 0.0 {0.654571052493 0.852300187812 0.0285360674622} Untitled_2::C42 152 -1 6 {} C 0.0 {0.635060022797 0.775304243313 0.0398326961954} Untitled_2::C43 153 -1 1 {} H 0.0 {0.752007269183 0.721969283066 0.188596434215} Untitled_2::H23 154 -1 1 {} H 0.0 {0.922135639104 0.928113596362 0.0756178101042} Untitled_2::H24 155 -1 1 {} H 0.0 {0.958922208781 0.0710634081547 0.0603042204485} Untitled_2::H25 156 -1 1 {} H 0.0 {0.748396087658 0.99304425295 0.248270308157} Untitled_2::H26 157 -1 1 {} H 0.0 {0.732061071765 0.945449405348 0.0673936631585} Untitled_2::H27 158 -1 1 {} H 0.0 {0.624965448668 0.887039880339 0.984821504926} Untitled_2::H28 159 -1 7 {} N 0.0 {0.824856916972 0.225687303763 0.208326397315} Untitled_2::N2 160 -1 6 {} C 0.0 {0.284335081398 0.296094662881 0.309880050531} Untitled_3::C1 161 -1 1 {} H 0.0 {0.39273883297 0.383007935558 0.168709349557} Untitled_3::H1 162 -1 6 {} C 0.0 {0.341048390241 0.343560556334 0.275801169527} Untitled_3::C2 163 -1 1 {} H 0.0 {0.380260602417 0.377900219468 0.312464091097} Untitled_3::H2 164 -1 6 {} C 0.0 {0.347611741239 0.347194075439 0.19504489737} Untitled_3::C3 165 -1 6 {} C 0.0 {0.225629456187 0.262117485103 0.262600200579} Untitled_3::C4 166 -1 1 {} H 0.0 {0.17628009153 0.232108310556 0.289100405868} Untitled_3::H3 167 -1 6 {} C 0.0 {0.231801807626 0.267199507773 0.180308233321} Untitled_3::C5 168 -1 1 {} H 0.0 {0.186588289671 0.242204708132 0.142903405877} Untitled_3::H4 169 -1 6 {} C 0.0 {0.296590961091 0.304845521389 0.147439891543} Untitled_3::C6 170 -1 8 {} O 0.0 {0.312749957582 0.301685676533 0.0615366032716} Untitled_3::O1 171 -1 6 {} C 0.0 {0.240924827566 0.29969920473 0.0127677047686} Untitled_3::C7 172 -1 1 {} H 0.0 {0.0866492607885 0.183740316654 0.96484449115} Untitled_3::H5 173 -1 6 {} C 0.0 {0.189220836848 0.236558200251 0.0161699902814} Untitled_3::C8 174 -1 1 {} H 0.0 {0.197534782574 0.190451545786 0.0591943544653} Untitled_3::H6 175 -1 6 {} C 0.0 {0.126660675307 0.233191423601 0.96371482256} Untitled_3::C9 176 -1 6 {} C 0.0 {0.227977657703 0.360112751673 0.960613833745} Untitled_3::C10 177 -1 1 {} H 0.0 {0.266304899508 0.410348164155 0.960723267296} Untitled_3::H7 178 -1 6 {} C 0.0 {0.166552582903 0.356711308319 0.908670152312} Untitled_3::C11 179 -1 1 {} H 0.0 {0.158026271534 0.403363173329 0.866717323197} Untitled_3::H8 180 -1 6 {} C 0.0 {0.116096586477 0.293974217252 0.909456989108} Untitled_3::C12 181 -1 6 {} C 0.0 {0.0489181370049 0.292224357013 0.851237341451} Untitled_3::C13 182 -1 6 {} C 0.0 {0.97334728695 0.30515868832 0.895352058945} Untitled_3::C14 183 -1 1 {} H 0.0 {0.77812172125 0.319011079183 0.867740081339} Untitled_3::H9 184 -1 6 {} C 0.0 {0.902644695239 0.309352578425 0.855775140672} Untitled_3::C15 185 -1 1 {} H 0.0 {0.901214143753 0.307436809882 0.792180257445} Untitled_3::H10 186 -1 6 {} C 0.0 {0.833925312281 0.31588557636 0.897922301773} Untitled_3::C16 187 -1 6 {} C 0.0 {0.975296420659 0.310944317245 0.976429429148} Untitled_3::C17 188 -1 1 {} H 0.0 {0.0307305593346 0.309753768639 0.00694898656112} Untitled_3::H11 189 -1 6 {} C 0.0 {0.906784932015 0.317839778904 0.0180040664374} Untitled_3::C18 190 -1 1 {} H 0.0 {0.908259308702 0.32293071051 0.0809524580148} Untitled_3::H12 191 -1 6 {} C 0.0 {0.836454142953 0.318167192196 0.979240605448} Untitled_3::C19 192 -1 8 {} O 0.0 {0.7637927716 0.319557262398 0.0235090161498} Untitled_3::O2 193 -1 6 {} C 0.0 {0.72965802337 0.241818936781 0.01238507786} Untitled_3::C20 194 -1 1 {} H 0.0 {0.626683206048 0.103467254839 0.107672906755} Untitled_3::H13 195 -1 6 {} C 0.0 {0.690179587033 0.205404886606 0.0725181705249} Untitled_3::C21 196 -1 1 {} H 0.0 {0.685451394283 0.233585092952 0.129214362381} Untitled_3::H14 197 -1 6 {} C 0.0 {0.656566519811 0.132876032921 0.0602616687252} Untitled_3::C22 198 -1 6 {} C 0.0 {0.738217016459 0.204933133978 0.939925500511} Untitled_3::C23 199 -1 1 {} H 0.0 {0.771720249061 0.233013930299 0.893759093656} Untitled_3::H15 200 -1 6 {} C 0.0 {0.704291847636 0.132632858879 0.927114447989} Untitled_3::C24 201 -1 1 {} H 0.0 {0.711661765113 0.103252962694 0.870823199662} Untitled_3::H16 202 -1 6 {} C 0.0 {0.660954586583 0.0974409633389 0.987254601807} Untitled_3::C25 203 -1 6 {} C 0.0 {0.0615333448582 0.356915338701 0.789941250015} Untitled_3::C26 204 -1 6 {} C 0.0 {0.046638577133 0.213164869973 0.810969709182} Untitled_3::C27 205 -1 1 {} H 0.0 {0.014265491592 0.35585841214 0.747577676535} Untitled_3::H17 206 -1 1 {} H 0.0 {0.116492515137 0.346951862645 0.760271828863} Untitled_3::H18 207 -1 1 {} H 0.0 {0.0631048104746 0.413506406705 0.818658936056} Untitled_3::H19 208 -1 1 {} H 0.0 {0.999769673648 0.212678803363 0.768142882497} Untitled_3::H20 209 -1 1 {} H 0.0 {0.0365704877162 0.167755566641 0.854018611769} Untitled_3::H21 210 -1 1 {} H 0.0 {0.101653904672 0.203106720552 0.781982306666} Untitled_3::H22 211 -1 8 {} O 0.0 {0.424317995189 0.653040848937 0.811571087275} Untitled_3::O3 212 -1 6 {} C 0.0 {0.464212516615 0.584138461208 0.808371563099} Untitled_3::C28 213 -1 7 {} N 0.0 {0.551448159338 0.572545599666 0.818869180444} Untitled_3::N1 214 -1 6 {} C 0.0 {0.565495166686 0.486282956432 0.815018947002} Untitled_3::C29 215 -1 8 {} O 0.0 {0.63507817128 0.44915629477 0.825785680487} Untitled_3::O4 216 -1 6 {} C 0.0 {0.48690221653 0.447452895544 0.796581245665} Untitled_3::C30 217 -1 6 {} C 0.0 {0.473207998496 0.370395417151 0.783023164458} Untitled_3::C31 218 -1 6 {} C 0.0 {0.396686198081 0.346729629283 0.764745348881} Untitled_3::C32 219 -1 8 {} O 0.0 {0.380556589061 0.26213023767 0.748606094547} Untitled_3::O5 220 -1 6 {} C 0.0 {0.343380268055 0.250093369034 0.669718309196} Untitled_3::C33 221 -1 6 {} C 0.0 {0.290087122268 0.186541340432 0.659084961568} Untitled_3::C34 222 -1 6 {} C 0.0 {0.253918109956 0.174469944134 0.58663769738} Untitled_3::C35 223 -1 6 {} C 0.0 {0.273129338342 0.223059825756 0.527024815232} Untitled_3::C36 224 -1 6 {} C 0.0 {0.243651086017 0.219705780366 0.442832191883} Untitled_3::C37 225 -1 8 {} O 0.0 {0.18948421195 0.169350234281 0.414465967144} Untitled_3::O6 226 -1 6 {} C 0.0 {0.340514019887 0.32119684578 0.455864909347} Untitled_3::C38 227 -1 8 {} O 0.0 {0.391926883353 0.379711904081 0.440706386642} Untitled_3::O7 228 -1 6 {} C 0.0 {0.326116127616 0.282529929608 0.535400660707} Untitled_3::C39 229 -1 6 {} C 0.0 {0.361009198004 0.299401858148 0.605832978037} Untitled_3::C40 230 -1 6 {} C 0.0 {0.335452066401 0.403222817851 0.762403392617} Untitled_3::C41 231 -1 6 {} C 0.0 {0.352526026045 0.482658713981 0.778029312008} Untitled_3::C42 232 -1 6 {} C 0.0 {0.42907204329 0.502349661136 0.793529041663} Untitled_3::C43 233 -1 1 {} H 0.0 {0.519962090103 0.328351648688 0.78577211086} Untitled_3::H23 234 -1 1 {} H 0.0 {0.278775411556 0.147263665347 0.706143858349} Untitled_3::H24 235 -1 1 {} H 0.0 {0.212238282168 0.127023339155 0.578231212481} Untitled_3::H25 236 -1 1 {} H 0.0 {0.400419201614 0.348704571657 0.612023060534} Untitled_3::H26 237 -1 1 {} H 0.0 {0.276356460679 0.385401605495 0.748911562726} Untitled_3::H27 238 -1 1 {} H 0.0 {0.306966088492 0.526143812986 0.778234787157} Untitled_3::H28 239 -1 7 {} N 0.0 {0.287417449216 0.281292510954 0.39769352148} Untitled_3::N2 240 -1 6 {} C 0.0 {0.26133915614 0.79595512528 0.455265652884} Untitled_4::C1 241 -1 1 {} H 0.0 {0.284289427425 0.816479976927 0.654305687867} Untitled_4::H1 242 -1 6 {} C 0.0 {0.29912565011 0.809333230079 0.527587233232} Untitled_4::C2 243 -1 1 {} H 0.0 {0.361338296225 0.821435106809 0.529233374918} Untitled_4::H2 244 -1 6 {} C 0.0 {0.255312472659 0.807108052769 0.59819868735} Untitled_4::C3 245 -1 6 {} C 0.0 {0.179925491252 0.787634047213 0.453820959793} Untitled_4::C4 246 -1 1 {} H 0.0 {0.149979835977 0.781382433586 0.398476885584} Untitled_4::H3 247 -1 6 {} C 0.0 {0.13679771472 0.787213965957 0.523624605548} Untitled_4::C5 248 -1 1 {} H 0.0 {0.0733964056353 0.782931064719 0.52161958559} Untitled_4::H4 249 -1 6 {} C 0.0 {0.174478223918 0.792806004615 0.595518281262} Untitled_4::C6 250 -1 8 {} O 0.0 {0.127138157389 0.783918138947 0.669246858745} Untitled_4::O1 251 -1 6 {} C 0.0 {0.15193063251 0.84040924758 0.730703930343} Untitled_4::C7 252 -1 1 {} H 0.0 {0.132942247508 0.0319559654583 0.781289677265} Untitled_4::H5 253 -1 6 {} C 0.0 {0.131497138245 0.919172583719 0.724541435735} Untitled_4::C8 254 -1 1 {} H 0.0 {0.102124932797 0.940472803112 0.672226501351} Untitled_4::H6 255 -1 6 {} C 0.0 {0.148602527549 0.97039761298 0.785856989424} Untitled_4::C9 256 -1 6 {} C 0.0 {0.193176703985 0.813748850206 0.795856626329} Untitled_4::C10 257 -1 1 {} H 0.0 {0.211458526292 0.753084792341 0.799241495366} Untitled_4::H7 258 -1 6 {} C 0.0 {0.210601551764 0.864624907086 0.856621775235} Untitled_4::C11 259 -1 1 {} H 0.0 {0.243567187073 0.843938285583 0.906725628927} Untitled_4::H8 260 -1 6 {} C 0.0 {0.185973918493 0.942049481858 0.853330398524} Untitled_4::C12 261 -1 6 {} C 0.0 {0.199253659605 0.995640901824 0.924074088747} Untitled_4::C13 262 -1 6 {} C 0.0 {0.28644214977 0.0131872231871 0.93777966897} Untitled_4::C14 263 -1 1 {} H 0.0 {0.428565001749 0.988053214374 0.0748062384856} Untitled_4::H9 264 -1 6 {} C 0.0 {0.324833890977 0.982754458342 0.00340125395902} Untitled_4::C15 265 -1 1 {} H 0.0 {0.297258060885 0.937529767596 0.0384757710098} Untitled_4::H10 266 -1 6 {} C 0.0 {0.399031135255 0.0105117150472 0.0233925191792} Untitled_4::C16 267 -1 6 {} C 0.0 {0.325361562369 0.0636521714683 0.888097631345} Untitled_4::C17 268 -1 1 {} H 0.0 {0.298145624295 0.0815548843561 0.833870679566} Untitled_4::H11 269 -1 6 {} C 0.0 {0.399613570203 0.0910698882931 0.907717458136} Untitled_4::C18 270 -1 1 {} H 0.0 {0.429875537193 0.130953317216 0.869065560939} Untitled_4::H12 271 -1 6 {} C 0.0 {0.434939077235 0.0672438005813 0.976893274853} Untitled_4::C19 272 -1 8 {} O 0.0 {0.511957286376 0.101698136843 0.000179405642881} Untitled_4::O2 273 -1 6 {} C 0.0 {0.536630545384 0.159874780416 0.939228001778} Untitled_4::C20 274 -1 1 {} H 0.0 {0.480078081112 0.331989078378 0.858676792497} Untitled_4::H13 275 -1 6 {} C 0.0 {0.493724922606 0.228268907666 0.927958646689} Untitled_4::C21 276 -1 1 {} H 0.0 {0.44497670368 0.241969331271 0.966337893214} Untitled_4::H14 277 -1 6 {} C 0.0 {0.51369558909 0.279354197434 0.867178894715} Untitled_4::C22 278 -1 6 {} C 0.0 {0.601969159022 0.144677347798 0.893079239609} Untitled_4::C23 279 -1 1 {} H 0.0 {0.634013871904 0.0910755397463 0.901339578608} Untitled_4::H15 280 -1 6 {} C 0.0 {0.625049371535 0.197481584349 0.835054670164} Untitled_4::C24 281 -1 1 {} H 0.0 {0.679525857289 0.188385447649 0.80350491731} Untitled_4::H16 282 -1 6 {} C 0.0 {0.57823225004 0.261688444362 0.817698457143} Untitled_4::C25 283 -1 6 {} C 0.0 {0.156317011371 0.0734004256001 0.912041594974} Untitled_4::C26 284 -1 6 {} C 0.0 {0.165982930364 0.955475289473 0.996177947289} Untitled_4::C27 285 -1 1 {} H 0.0 {0.16547548835 0.110443987424 0.962812095875} Untitled_4::H17 286 -1 1 {} H 0.0 {0.0942433875583 0.0623713248629 0.904865450355} Untitled_4::H18 287 -1 1 {} H 0.0 {0.178961996112 0.102565627311 0.860356104331} Untitled_4::H19 288 -1 1 {} H 0.0 {0.17598833786 0.991337562936 0.0474178694018} Untitled_4::H20 289 -1 1 {} H 0.0 {0.194190150704 0.898916667224 0.00381357055017} Untitled_4::H21 290 -1 1 {} H 0.0 {0.104021395664 0.946853210982 0.987828899415} Untitled_4::H22 291 -1 8 {} O 0.0 {0.614359681081 0.00671264236836 0.825932539768} Untitled_4::O3 292 -1 6 {} C 0.0 {0.593229076862 0.984133409026 0.898876800892} Untitled_4::C28 293 -1 7 {} N 0.0 {0.616240437049 0.0224194769145 0.974830980045} Untitled_4::N1 294 -1 6 {} C 0.0 {0.580748768302 0.974559124859 0.0380775070853} Untitled_4::C29 295 -1 8 {} O 0.0 {0.58847492631 0.986554018929 0.115206432398} Untitled_4::O4 296 -1 6 {} C 0.0 {0.5348244946 0.90940680736 0.000301140883635} Untitled_4::C30 297 -1 6 {} C 0.0 {0.49282184264 0.853822277787 0.0372432771087} Untitled_4::C31 298 -1 6 {} C 0.0 {0.453379610784 0.798619271193 0.992039528026} Untitled_4::C32 299 -1 8 {} O 0.0 {0.40914402047 0.736164274295 0.031720669998} Untitled_4::O5 300 -1 6 {} C 0.0 {0.410790048621 0.75283630727 0.11748954845} Untitled_4::C33 301 -1 6 {} C 0.0 {0.483658888235 0.769307531071 0.156360270748} Untitled_4::C34 302 -1 6 {} C 0.0 {0.484173935939 0.784642111523 0.23828346619} Untitled_4::C35 303 -1 6 {} C 0.0 {0.41297946173 0.784251238563 0.27714230636} Untitled_4::C36 304 -1 6 {} C 0.0 {0.396063378882 0.799565121142 0.365605783089} Untitled_4::C37 305 -1 8 {} O 0.0 {0.449465024924 0.817577440224 0.421534065694} Untitled_4::O6 306 -1 6 {} C 0.0 {0.275522841116 0.772173387728 0.296718066147} Untitled_4::C38 307 -1 8 {} O 0.0 {0.199322854287 0.761059702722 0.278318097303} Untitled_4::O7 308 -1 6 {} C 0.0 {0.344240279945 0.768932658577 0.238989017461} Untitled_4::C39 309 -1 6 {} C 0.0 {0.340923775839 0.752897378592 0.160226669184} Untitled_4::C40 310 -1 6 {} C 0.0 {0.456392380074 0.803167453551 0.908452329623} Untitled_4::C41 311 -1 6 {} C 0.0 {0.502420860393 0.862162096744 0.872615791908} Untitled_4::C42 312 -1 6 {} C 0.0 {0.540673611247 0.913872413279 0.920948374474} Untitled_4::C43 313 -1 1 {} H 0.0 {0.489472171217 0.852624495466 0.100670483851} Untitled_4::H23 314 -1 1 {} H 0.0 {0.53804958991 0.770690002412 0.123105451295} Untitled_4::H24 315 -1 1 {} H 0.0 {0.538646850728 0.795613868549 0.269256479983} Untitled_4::H25 316 -1 1 {} H 0.0 {0.285604041559 0.740656583465 0.131780892146} Untitled_4::H26 317 -1 1 {} H 0.0 {0.423405881652 0.762175897506 0.872996665313} Untitled_4::H27 318 -1 1 {} H 0.0 {0.507338735543 0.866226362315 0.809561570277} Untitled_4::H28 319 -1 7 {} N 0.0 {0.308583124162 0.790023404255 0.377212100392} Untitled_4::N2 320 -1 6 {} C 0.0 {0.311965031517 0.591968053462 0.155179529432} Untitled_5::C1 321 -1 1 {} H 0.0 {0.159140187279 0.716055714167 0.135464407363} Untitled_5::H1 322 -1 6 {} C 0.0 {0.258692370855 0.65034429476 0.173359642558} Untitled_5::C2 323 -1 1 {} H 0.0 {0.262681143325 0.680549885729 0.229179716827} Untitled_5::H2 324 -1 6 {} C 0.0 {0.20029127507 0.670395110063 0.120686707901} Untitled_5::C3 325 -1 6 {} C 0.0 {0.307662836425 0.553597188262 0.0833847000098} Untitled_5::C4 326 -1 1 {} H 0.0 {0.349366978459 0.507893065443 0.0694863553194} Untitled_5::H3 327 -1 6 {} C 0.0 {0.249106831653 0.574261808145 0.0291632185795} Untitled_5::C5 328 -1 1 {} H 0.0 {0.246804124982 0.545796714663 0.972621660303} Untitled_5::H4 329 -1 6 {} C 0.0 {0.194282937238 0.63230409671 0.0488851777002} Untitled_5::C6 330 -1 8 {} O 0.0 {0.128060163693 0.655277500616 0.994495000346} Untitled_5::O1 331 -1 6 {} C 0.0 {0.140027400117 0.629168040933 0.911377709391} Untitled_5::C7 332 -1 1 {} H 0.0 {0.119769584059 0.697927598024 0.725515505204} Untitled_5::H5 333 -1 6 {} C 0.0 {0.127802560804 0.682518180476 0.850115348683} Untitled_5::C8 334 -1 1 {} H 0.0 {0.116787692858 0.743753332651 0.862816594558} Untitled_5::H6 335 -1 6 {} C 0.0 {0.1299070402 0.656967694195 0.773112201251} Untitled_5::C9 336 -1 6 {} C 0.0 {0.159276613737 0.552029212851 0.894406108647} Untitled_5::C10 337 -1 1 {} H 0.0 {0.172137625417 0.511420509213 0.941105276708} Untitled_5::H7 338 -1 6 {} C 0.0 {0.161841438006 0.527140144443 0.817021775185} Untitled_5::C11 339 -1 1 {} H 0.0 {0.177182437535 0.467148987128 0.803486743627} Untitled_5::H8 340 -1 6 {} C 0.0 {0.144895690992 0.579214923338 0.75688164576} Untitled_5::C12 341 -1 6 {} C 0.0 {0.143530097517 0.550894826138 0.673114863091} Untitled_5::C13 342 -1 6 {} C 0.0 {0.226431005867 0.555156951147 0.63877300377} Untitled_5::C14 343 -1 1 {} H 0.0 {0.414767669503 0.593275477434 0.692227823106} Untitled_5::H9 344 -1 6 {} C 0.0 {0.289390417415 0.577826840145 0.685852174853} Untitled_5::C15 345 -1 1 {} H 0.0 {0.279338514539 0.59519688104 0.746113672733} Untitled_5::H10 346 -1 6 {} C 0.0 {0.365184188792 0.579036868768 0.654885015144} Untitled_5::C16 347 -1 6 {} C 0.0 {0.23874613289 0.536586413873 0.560789672728} Untitled_5::C17 348 -1 1 {} H 0.0 {0.189906391591 0.518712799428 0.524572325986} Untitled_5::H11 349 -1 6 {} C 0.0 {0.313801273324 0.540742413765 0.529059627047} Untitled_5::C18 350 -1 1 {} H 0.0 {0.322911441648 0.528231705661 0.467488791162} Untitled_5::H12 351 -1 6 {} C 0.0 {0.377124165916 0.56126428918 0.576243375923} Untitled_5::C19 352 -1 8 {} O 0.0 {0.457556110146 0.563705819641 0.542311473225} Untitled_5::O2 353 -1 6 {} C 0.0 {0.491964398742 0.643570422896 0.551861033656} Untitled_5::C20 354 -1 1 {} H 0.0 {0.616667510365 0.767595850325 0.461050401675} Untitled_5::H13 355 -1 6 {} C 0.0 {0.543414625586 0.672336929949 0.495617339517} Untitled_5::C21 356 -1 1 {} H 0.0 {0.557108813542 0.637903624946 0.444481654005} Untitled_5::H14 357 -1 6 {} C 0.0 {0.577191728577 0.745027760818 0.505176553145} Untitled_5::C22 358 -1 6 {} C 0.0 {0.473635476329 0.689188626982 0.617218664962} Untitled_5::C23 359 -1 1 {} H 0.0 {0.432310134614 0.668292538424 0.660217805245} Untitled_5::H15 360 -1 6 {} C 0.0 {0.508561646235 0.761785228694 0.626651287724} Untitled_5::C24 361 -1 1 {} H 0.0 {0.495059043856 0.797404935602 0.677510274472} Untitled_5::H16 362 -1 6 {} C 0.0 {0.560610774913 0.789072363936 0.571066117807} Untitled_5::C25 363 -1 6 {} C 0.0 {0.112946973668 0.466936443938 0.670984161574} Untitled_5::C26 364 -1 6 {} C 0.0 {0.0888509897006 0.60229538896 0.625397045469} Untitled_5::C27 365 -1 1 {} H 0.0 {0.111293541418 0.446526799262 0.610974622516} Untitled_5::H17 366 -1 1 {} H 0.0 {0.0542287332265 0.465258185326 0.695537868051} Untitled_5::H18 367 -1 1 {} H 0.0 {0.150934233318 0.429890569093 0.704877780612} Untitled_5::H19 368 -1 1 {} H 0.0 {0.0869967293892 0.581091893275 0.565677038569} Untitled_5::H20 369 -1 1 {} H 0.0 {0.109968158808 0.661963503614 0.626168883595} Untitled_5::H21 370 -1 1 {} H 0.0 {0.0304931806291 0.599969245529 0.650523817255} Untitled_5::H22 371 -1 8 {} O 0.0 {0.7499733014 0.30970506488 0.751274043373} Untitled_5::O3 372 -1 6 {} C 0.0 {0.681263077471 0.337555548184 0.722410376396} Untitled_5::C28 373 -1 7 {} N 0.0 {0.599929255806 0.31532671369 0.748750129775} Untitled_5::N1 374 -1 6 {} C 0.0 {0.544294147584 0.361155178834 0.697004132266} Untitled_5::C29 375 -1 8 {} O 0.0 {0.465166253077 0.357664820533 0.6974446209} Untitled_5::O4 376 -1 6 {} C 0.0 {0.594083514058 0.411227296995 0.642085178293} Untitled_5::C30 377 -1 6 {} C 0.0 {0.568547440105 0.463812547036 0.58649746173} Untitled_5::C31 378 -1 6 {} C 0.0 {0.625636716299 0.508707626227 0.547268167481} Untitled_5::C32 379 -1 8 {} O 0.0 {0.602396382069 0.573245941234 0.493099772567} Untitled_5::O5 380 -1 6 {} C 0.0 {0.557147974218 0.545298128282 0.423383811825} Untitled_5::C33 381 -1 6 {} C 0.0 {0.583892113084 0.480417546605 0.377459232793} Untitled_5::C34 382 -1 6 {} C 0.0 {0.545440743269 0.462485515992 0.305810637518} Untitled_5::C35 383 -1 6 {} C 0.0 {0.483231120795 0.509352225021 0.283957740652} Untitled_5::C36 384 -1 6 {} C 0.0 {0.434260668759 0.506198042749 0.208192550591} Untitled_5::C37 385 -1 8 {} O 0.0 {0.443652477756 0.455537403785 0.147793282313} Untitled_5::O6 386 -1 6 {} C 0.0 {0.387826190629 0.610314189993 0.290877980654} Untitled_5::C38 387 -1 8 {} O 0.0 {0.347174705114 0.672198147258 0.319926380397} Untitled_5::O7 388 -1 6 {} C 0.0 {0.456413308999 0.568793460074 0.330472530244} Untitled_5::C39 389 -1 6 {} C 0.0 {0.489732210155 0.586916709796 0.400229023676} Untitled_5::C40 390 -1 6 {} C 0.0 {0.706923400229 0.494286765299 0.561682051085} Untitled_5::C41 391 -1 6 {} C 0.0 {0.729553929207 0.437347187322 0.617158847288} Untitled_5::C42 392 -1 6 {} C 0.0 {0.671828039445 0.398376505246 0.656574320468} Untitled_5::C43 393 -1 1 {} H 0.0 {0.506603615971 0.470119064535 0.57305685335} Untitled_5::H23 394 -1 1 {} H 0.0 {0.632849694374 0.445310562778 0.397286810178} Untitled_5::H24 395 -1 1 {} H 0.0 {0.564391016454 0.413701125095 0.269497099525} Untitled_5::H25 396 -1 1 {} H 0.0 {0.464737792088 0.632056626211 0.43737429042} Untitled_5::H26 397 -1 1 {} H 0.0 {0.751074701009 0.52716192059 0.530098904903} Untitled_5::H27 398 -1 1 {} H 0.0 {0.790868619167 0.425182769129 0.628515469186} Untitled_5::H28 399 -1 7 {} N 0.0 {0.374252052439 0.570642249409 0.21412131051} Untitled_5::N2 400 -1 6 {} C 0.0 {0.892134302387 0.499363008481 0.447266591305} Untitled_6::C1 401 -1 1 {} H 0.0 {0.0432046505149 0.598203291242 0.368691282448} Untitled_6::H1 402 -1 6 {} C 0.0 {0.96834404548 0.518087614424 0.428619529847} Untitled_6::C2 403 -1 1 {} H 0.0 {0.0158771311679 0.481360711094 0.448788845947} Untitled_6::H2 404 -1 6 {} C 0.0 {0.983764398757 0.583625173484 0.38398732186} Untitled_6::C3 405 -1 6 {} C 0.0 {0.830529094962 0.541382854247 0.415136668893} Untitled_6::C4 406 -1 1 {} H 0.0 {0.770602257917 0.521575675532 0.423420552679} Untitled_6::H3 407 -1 6 {} C 0.0 {0.845788688775 0.60815875987 0.372067905797} Untitled_6::C5 408 -1 1 {} H 0.0 {0.797831978099 0.643091001138 0.349163959934} Untitled_6::H4 409 -1 6 {} C 0.0 {0.922848919166 0.630541066485 0.358739631296} Untitled_6::C6 410 -1 8 {} O 0.0 {0.939986913118 0.704656943126 0.317814689808} Untitled_6::O1 411 -1 6 {} C 0.0 {0.927243671807 0.767522150017 0.375692696833} Untitled_6::C7 412 -1 1 {} H 0.0 {0.0206995845781 0.91702431886 0.466901684244} Untitled_6::H5 413 -1 6 {} C 0.0 {0.987388723939 0.818743844399 0.395413310273} Untitled_6::C8 414 -1 1 {} H 0.0 {0.043865204214 0.814462395855 0.366396247805} Untitled_6::H6 415 -1 6 {} C 0.0 {0.974988141704 0.875154214624 0.452977547129} Untitled_6::C9 416 -1 6 {} C 0.0 {0.855022008631 0.773270554916 0.412026843341} Untitled_6::C10 417 -1 1 {} H 0.0 {0.807590613195 0.735199747435 0.394002102728} Untitled_6::H7 418 -1 6 {} C 0.0 {0.84317646591 0.827533589679 0.47099613793} Untitled_6::C11 419 -1 1 {} H 0.0 {0.787143001693 0.83036946837 0.500553073717} Untitled_6::H8 420 -1 6 {} C 0.0 {0.903151121855 0.878060683093 0.492336966872} Untitled_6::C12 421 -1 6 {} C 0.0 {0.89027337846 0.937446790749 0.558299544881} Untitled_6::C13 422 -1 6 {} C 0.0 {0.94202529036 0.916528624104 0.629043492657} Untitled_6::C14 423 -1 1 {} H 0.0 {0.0299755446691 0.761953277397 0.718781453818} Untitled_6::H9 424 -1 6 {} C 0.0 {0.963391024796 0.83891906309 0.644199979674} Untitled_6::C15 425 -1 1 {} H 0.0 {0.941578215356 0.792176564194 0.607674670014} Untitled_6::H10 426 -1 6 {} C 0.0 {0.0130352219093 0.821972097765 0.706689531643} Untitled_6::C16 427 -1 6 {} C 0.0 {0.968570320392 0.975527999225 0.677261330646} Untitled_6::C17 428 -1 1 {} H 0.0 {0.950773498896 0.035241971654 0.666464747646} Untitled_6::H11 429 -1 6 {} C 0.0 {0.0180344126797 0.958368410659 0.739438180306} Untitled_6::C18 430 -1 1 {} H 0.0 {0.0388336964862 0.00480213208956 0.776901930236} Untitled_6::H12 431 -1 6 {} C 0.0 {0.0408576138317 0.881697850676 0.753367884505} Untitled_6::C19 432 -1 8 {} O 0.0 {0.095497486227 0.863453445493 0.81809063758} Untitled_6::O2 433 -1 6 {} C 0.0 {0.0628598316443 0.889794414948 0.894060497857} Untitled_6::C20 434 -1 1 {} H 0.0 {0.934689700307 0.0199419403546 0.972341262405} Untitled_6::H13 435 -1 6 {} C 0.0 {0.00648929527836 0.948885514317 0.897255001144} Untitled_6::C21 436 -1 1 {} H 0.0 {0.983769026628 0.974256777122 0.843808529727} Untitled_6::H14 437 -1 6 {} C 0.0 {0.979629861503 0.97509281999 0.969397579457} Untitled_6::C22 438 -1 6 {} C 0.0 {0.0900788541196 0.85590640785 0.962117250396} Untitled_6::C23 439 -1 1 {} H 0.0 {0.131754977924 0.808444873016 0.959097515245} Untitled_6::H15 440 -1 6 {} C 0.0 {0.0642312169539 0.882390023009 0.0340119095494} Untitled_6::C24 441 -1 1 {} H 0.0 {0.0861797887083 0.85579243842 0.0869617193122} Untitled_6::H16 442 -1 6 {} C 0.0 {0.0101983226826 0.943197176729 0.0379782191783} Untitled_6::C25 443 -1 6 {} C 0.0 {0.911973940508 0.018625859478 0.529106695402} Untitled_6::C26 444 -1 6 {} C 0.0 {0.804011154612 0.938483975196 0.582253373249} Untitled_6::C27 445 -1 1 {} H 0.0 {0.902508787873 0.060884091256 0.5755767504} Untitled_6::H17 446 -1 1 {} H 0.0 {0.875490254169 0.0333777065402 0.479366493115} Untitled_6::H18 447 -1 1 {} H 0.0 {0.972891856201 0.0193674752008 0.511790034964} Untitled_6::H19 448 -1 1 {} H 0.0 {0.795305465364 0.98206643461 0.62787096052} Untitled_6::H20 449 -1 1 {} H 0.0 {0.78696163217 0.881525232499 0.603834965697} Untitled_6::H21 450 -1 1 {} H 0.0 {0.768671180978 0.953537242369 0.53181782187} Untitled_6::H22 451 -1 8 {} O 0.0 {0.67232877957 0.881781557044 0.452988876669} Untitled_6::O3 452 -1 6 {} C 0.0 {0.651809663711 0.907251921742 0.525755833233} Untitled_6::C28 453 -1 7 {} N 0.0 {0.599484545805 0.866127144706 0.582599016696} Untitled_6::N1 454 -1 6 {} C 0.0 {0.592992817386 0.91767557766 0.653189232574} Untitled_6::C29 455 -1 8 {} O 0.0 {0.550442050918 0.902975364419 0.718868512751} Untitled_6::O4 456 -1 6 {} C 0.0 {0.64367038571 0.989917418075 0.6373997656} Untitled_6::C30 457 -1 6 {} C 0.0 {0.656129193107 0.0529219536064 0.685498083455} Untitled_6::C31 458 -1 6 {} C 0.0 {0.70569880228 0.112814769373 0.658576247142} Untitled_6::C32 459 -1 8 {} O 0.0 {0.720273985029 0.183071678851 0.708598559621} Untitled_6::O5 460 -1 6 {} C 0.0 {0.778338876877 0.234365751244 0.669520837768} Untitled_6::C33 461 -1 6 {} C 0.0 {0.860228165479 0.223398781189 0.68350954029} Untitled_6::C34 462 -1 6 {} C 0.0 {0.915092728724 0.270691842108 0.644292415523} Untitled_6::C35 463 -1 6 {} C 0.0 {0.887274561335 0.326441292741 0.594240346901} Untitled_6::C36 464 -1 6 {} C 0.0 {0.934176531775 0.384950529172 0.545248751919} Untitled_6::C37 465 -1 8 {} O 0.0 {0.0134552086795 0.392115097301 0.542930107676} Untitled_6::O6 466 -1 6 {} C 0.0 {0.796795864638 0.403682224327 0.522430694032} Untitled_6::C38 467 -1 8 {} O 0.0 {0.727477363577 0.430637484545 0.494503112024} Untitled_6::O7 468 -1 6 {} C 0.0 {0.808822521037 0.337377646809 0.581462074412} Untitled_6::C39 469 -1 6 {} C 0.0 {0.753032245199 0.293165157545 0.617898246522} Untitled_6::C40 470 -1 6 {} C 0.0 {0.741937804028 0.106036525352 0.58295357548} Untitled_6::C41 471 -1 6 {} C 0.0 {0.726635995 0.0396757332567 0.535988304205} Untitled_6::C42 472 -1 6 {} C 0.0 {0.677485772029 0.983798413122 0.564985062193} Untitled_6::C43 473 -1 1 {} H 0.0 {0.628848419541 0.0564516082364 0.742536987711} Untitled_6::H23 474 -1 1 {} H 0.0 {0.879899663271 0.179100420723 0.724429900428} Untitled_6::H24 475 -1 1 {} H 0.0 {0.977244146854 0.262960792744 0.653270925313} Untitled_6::H25 476 -1 1 {} H 0.0 {0.691154073072 0.303279802002 0.607625222575} Untitled_6::H26 477 -1 1 {} H 0.0 {0.780942095035 0.151560167398 0.562006679725} Untitled_6::H27 478 -1 1 {} H 0.0 {0.753202256787 0.0331351759166 0.478739383385} Untitled_6::H28 479 -1 7 {} N 0.0 {0.87561042682 0.43314294115 0.500839575298} Untitled_6::N2 480 -1 1 {} H 0.0 {0.979989960121 0.173692491496 0.605892990564} H_head 481 -1 1 {} H 0.0 {0.992861106329 0.966484056589 0.0942769223461} H_tail 482 -1 @end @Columns Cell Constraints string {a b c A B G} Origin int {{0 0 0}} Parameters double {{10.0 10.0 10.0 90.0 90.0 90.0}} PrimitiveData double {{{1.0 0.0 0.0} {0.0 1.0 0.0} {0.0 0.0 1.0}}} RotationMatrix double {{{1.0 0.0 0.0} {0.0 1.0 0.0} {0.0 0.0 1.0}}} SpaceGroup string P1 SpaceGroupNumber int 1 ToCartesians double {{{10.0 0.0 0.0} {0.0 10.0 0.0} {0.0 0.0 10.0}}} ToFractionals double {{{0.10000000000000001 0.0 0.0} {0.0 0.10000000000000001 0.0} {0.0 0.0 0.10000000000000001}}} @end @data {a b c A B G} {0 0 0} {17.1630469431 17.1630469431 17.1630469431 90 90 90} {{1 0 0} {0 1 0} {0 0 1}} {{1 0 0} {0 1 0} {0 0 1}} P1 1 {{17.1630469431 0 0} {0 17.1630469431 0} {0 0 17.1630469431}} {{0.0582647127468 0 0} {0 0.0582647127468 0} {0 0 0.0582647127468}} @end @Columns AsymmetricBond Atom1 reference AsymmetricAtom Atom2 reference AsymmetricAtom Key int 0 Order int 0 @end @data 4 1 0 0 4 2 0 1 9 4 0 1 3 2 0 0 2 0 0 1 5 0 0 1 6 5 0 0 7 5 0 1 8 7 0 0 9 7 0 1 10 9 0 0 11 10 0 0 15 12 0 0 15 13 0 1 20 15 0 1 14 13 0 0 13 11 0 1 16 11 0 1 17 16 0 0 18 16 0 1 19 18 0 0 20 18 0 1 21 20 0 0 22 21 0 0 26 23 0 0 26 24 0 1 31 26 0 1 25 24 0 0 24 22 0 1 27 22 0 1 28 27 0 0 29 27 0 1 30 29 0 0 31 29 0 1 32 31 0 0 33 32 0 0 37 34 0 0 37 35 0 1 42 37 0 1 36 35 0 0 35 33 0 1 38 33 0 1 39 38 0 0 40 38 0 1 41 40 0 0 42 40 0 1 43 21 0 0 44 21 0 0 45 43 0 0 46 43 0 0 47 43 0 0 48 44 0 0 49 44 0 0 50 44 0 0 52 51 0 2 53 52 0 0 54 53 0 0 55 54 0 2 56 54 0 0 57 56 0 1 58 57 0 1 59 58 0 0 60 59 0 0 61 60 0 1 62 61 0 1 63 62 0 1 64 63 0 0 65 64 0 2 67 66 0 2 68 66 0 0 68 63 0 1 69 68 0 1 69 60 0 1 70 58 0 1 71 70 0 1 72 71 0 1 72 52 0 0 72 56 0 1 73 57 0 0 74 61 0 0 75 62 0 0 76 69 0 0 77 70 0 0 78 71 0 0 79 64 0 0 79 66 0 0 79 0 0 0 84 81 0 0 84 82 0 1 89 84 0 1 83 82 0 0 82 80 0 1 85 80 0 1 86 85 0 0 87 85 0 1 88 87 0 0 89 87 0 1 90 89 0 0 91 90 0 0 95 92 0 0 95 93 0 1 100 95 0 1 94 93 0 0 93 91 0 1 96 91 0 1 97 96 0 0 98 96 0 1 99 98 0 0 100 98 0 1 101 100 0 0 102 101 0 0 106 103 0 0 106 104 0 1 111 106 0 1 105 104 0 0 104 102 0 1 107 102 0 1 108 107 0 0 109 107 0 1 110 109 0 0 111 109 0 1 112 111 0 0 113 112 0 0 117 114 0 0 117 115 0 1 122 117 0 1 116 115 0 0 115 113 0 1 118 113 0 1 119 118 0 0 120 118 0 1 121 120 0 0 122 120 0 1 123 101 0 0 124 101 0 0 125 123 0 0 126 123 0 0 127 123 0 0 128 124 0 0 129 124 0 0 130 124 0 0 132 131 0 2 133 132 0 0 134 133 0 0 135 134 0 2 136 134 0 0 137 136 0 1 138 137 0 1 139 138 0 0 140 139 0 0 141 140 0 1 142 141 0 1 143 142 0 1 144 143 0 0 145 144 0 2 147 146 0 2 148 146 0 0 148 143 0 1 149 148 0 1 149 140 0 1 150 138 0 1 151 150 0 1 152 151 0 1 152 132 0 0 152 136 0 1 153 137 0 0 154 141 0 0 155 142 0 0 156 149 0 0 157 150 0 0 158 151 0 0 159 144 0 0 159 146 0 0 159 80 0 0 133 42 0 0 164 161 0 0 164 162 0 1 169 164 0 1 163 162 0 0 162 160 0 1 165 160 0 1 166 165 0 0 167 165 0 1 168 167 0 0 169 167 0 1 170 169 0 0 171 170 0 0 175 172 0 0 175 173 0 1 180 175 0 1 174 173 0 0 173 171 0 1 176 171 0 1 177 176 0 0 178 176 0 1 179 178 0 0 180 178 0 1 181 180 0 0 182 181 0 0 186 183 0 0 186 184 0 1 191 186 0 1 185 184 0 0 184 182 0 1 187 182 0 1 188 187 0 0 189 187 0 1 190 189 0 0 191 189 0 1 192 191 0 0 193 192 0 0 197 194 0 0 197 195 0 1 202 197 0 1 196 195 0 0 195 193 0 1 198 193 0 1 199 198 0 0 200 198 0 1 201 200 0 0 202 200 0 1 203 181 0 0 204 181 0 0 205 203 0 0 206 203 0 0 207 203 0 0 208 204 0 0 209 204 0 0 210 204 0 0 212 211 0 2 213 212 0 0 214 213 0 0 215 214 0 2 216 214 0 0 217 216 0 1 218 217 0 1 219 218 0 0 220 219 0 0 221 220 0 1 222 221 0 1 223 222 0 1 224 223 0 0 225 224 0 2 227 226 0 2 228 226 0 0 228 223 0 1 229 228 0 1 229 220 0 1 230 218 0 1 231 230 0 1 232 231 0 1 232 212 0 0 232 216 0 1 233 217 0 0 234 221 0 0 235 222 0 0 236 229 0 0 237 230 0 0 238 231 0 0 239 224 0 0 239 226 0 0 239 160 0 0 213 122 0 0 244 241 0 0 244 242 0 1 249 244 0 1 243 242 0 0 242 240 0 1 245 240 0 1 246 245 0 0 247 245 0 1 248 247 0 0 249 247 0 1 250 249 0 0 251 250 0 0 255 252 0 0 255 253 0 1 260 255 0 1 254 253 0 0 253 251 0 1 256 251 0 1 257 256 0 0 258 256 0 1 259 258 0 0 260 258 0 1 261 260 0 0 262 261 0 0 266 263 0 0 266 264 0 1 271 266 0 1 265 264 0 0 264 262 0 1 267 262 0 1 268 267 0 0 269 267 0 1 270 269 0 0 271 269 0 1 272 271 0 0 273 272 0 0 277 274 0 0 277 275 0 1 282 277 0 1 276 275 0 0 275 273 0 1 278 273 0 1 279 278 0 0 280 278 0 1 281 280 0 0 282 280 0 1 283 261 0 0 284 261 0 0 285 283 0 0 286 283 0 0 287 283 0 0 288 284 0 0 289 284 0 0 290 284 0 0 292 291 0 2 293 292 0 0 294 293 0 0 295 294 0 2 296 294 0 0 297 296 0 1 298 297 0 1 299 298 0 0 300 299 0 0 301 300 0 1 302 301 0 1 303 302 0 1 304 303 0 0 305 304 0 2 307 306 0 2 308 306 0 0 308 303 0 1 309 308 0 1 309 300 0 1 310 298 0 1 311 310 0 1 312 311 0 1 312 292 0 0 312 296 0 1 313 297 0 0 314 301 0 0 315 302 0 0 316 309 0 0 317 310 0 0 318 311 0 0 319 304 0 0 319 306 0 0 319 240 0 0 293 202 0 0 324 321 0 0 324 322 0 1 329 324 0 1 323 322 0 0 322 320 0 1 325 320 0 1 326 325 0 0 327 325 0 1 328 327 0 0 329 327 0 1 330 329 0 0 331 330 0 0 335 332 0 0 335 333 0 1 340 335 0 1 334 333 0 0 333 331 0 1 336 331 0 1 337 336 0 0 338 336 0 1 339 338 0 0 340 338 0 1 341 340 0 0 342 341 0 0 346 343 0 0 346 344 0 1 351 346 0 1 345 344 0 0 344 342 0 1 347 342 0 1 348 347 0 0 349 347 0 1 350 349 0 0 351 349 0 1 352 351 0 0 353 352 0 0 357 354 0 0 357 355 0 1 362 357 0 1 356 355 0 0 355 353 0 1 358 353 0 1 359 358 0 0 360 358 0 1 361 360 0 0 362 360 0 1 363 341 0 0 364 341 0 0 365 363 0 0 366 363 0 0 367 363 0 0 368 364 0 0 369 364 0 0 370 364 0 0 372 371 0 2 373 372 0 0 374 373 0 0 375 374 0 2 376 374 0 0 377 376 0 1 378 377 0 1 379 378 0 0 380 379 0 0 381 380 0 1 382 381 0 1 383 382 0 1 384 383 0 0 385 384 0 2 387 386 0 2 388 386 0 0 388 383 0 1 389 388 0 1 389 380 0 1 390 378 0 1 391 390 0 1 392 391 0 1 392 372 0 0 392 376 0 1 393 377 0 0 394 381 0 0 395 382 0 0 396 389 0 0 397 390 0 0 398 391 0 0 399 384 0 0 399 386 0 0 399 320 0 0 373 282 0 0 404 401 0 0 404 402 0 1 409 404 0 1 403 402 0 0 402 400 0 1 405 400 0 1 406 405 0 0 407 405 0 1 408 407 0 0 409 407 0 1 410 409 0 0 411 410 0 0 415 412 0 0 415 413 0 1 420 415 0 1 414 413 0 0 413 411 0 1 416 411 0 1 417 416 0 0 418 416 0 1 419 418 0 0 420 418 0 1 421 420 0 0 422 421 0 0 426 423 0 0 426 424 0 1 431 426 0 1 425 424 0 0 424 422 0 1 427 422 0 1 428 427 0 0 429 427 0 1 430 429 0 0 431 429 0 1 432 431 0 0 433 432 0 0 437 434 0 0 437 435 0 1 442 437 0 1 436 435 0 0 435 433 0 1 438 433 0 1 439 438 0 0 440 438 0 1 441 440 0 0 442 440 0 1 443 421 0 0 444 421 0 0 445 443 0 0 446 443 0 0 447 443 0 0 448 444 0 0 449 444 0 0 450 444 0 0 452 451 0 2 453 452 0 0 454 453 0 0 455 454 0 2 456 454 0 0 457 456 0 1 458 457 0 1 459 458 0 0 460 459 0 0 461 460 0 1 462 461 0 1 463 462 0 1 464 463 0 0 465 464 0 2 467 466 0 2 468 466 0 0 468 463 0 1 469 468 0 1 469 460 0 1 470 458 0 1 471 470 0 1 472 471 0 1 472 452 0 0 472 456 0 1 473 457 0 0 474 461 0 0 475 462 0 0 476 469 0 0 477 470 0 0 478 471 0 0 479 464 0 0 479 466 0 0 479 400 0 0 453 362 0 0 480 53 0 0 481 442 0 0 @end @Columns Bond AsymmetricBond reference AsymmetricBond Atom1 reference Atom Atom2 reference Atom CellOffset2 int {{0 0 0}} Key int 0 @end @data 0 4 1 {0 0 0} 0 1 4 2 {0 0 0} 0 2 9 4 {0 0 0} 0 3 3 2 {0 0 0} 0 4 2 0 {0 0 0} 0 5 5 0 {0 1 0} 0 6 6 5 {0 0 0} 0 7 7 5 {0 0 0} 0 8 8 7 {0 0 0} 0 9 9 7 {0 -1 0} 0 10 10 9 {0 1 0} 0 11 11 10 {0 -1 0} 0 12 15 12 {0 0 0} 0 13 15 13 {0 0 0} 0 14 20 15 {0 0 0} 0 15 14 13 {0 0 0} 0 16 13 11 {0 0 0} 0 17 16 11 {0 1 0} 0 18 17 16 {0 0 0} 0 19 18 16 {0 -1 0} 0 20 19 18 {0 1 0} 0 21 20 18 {0 0 0} 0 22 21 20 {0 0 0} 0 23 22 21 {0 0 0} 0 24 26 23 {0 0 0} 0 25 26 24 {0 0 1} 0 26 31 26 {0 0 0} 0 27 25 24 {0 0 0} 0 28 24 22 {0 0 0} 0 29 27 22 {0 0 0} 0 30 28 27 {0 0 0} 0 31 29 27 {0 0 0} 0 32 30 29 {0 0 0} 0 33 31 29 {0 0 1} 0 34 32 31 {0 0 0} 0 35 33 32 {0 0 0} 0 36 37 34 {0 0 0} 0 37 37 35 {0 0 0} 0 38 42 37 {0 0 0} 0 39 36 35 {0 0 0} 0 40 35 33 {0 0 0} 0 41 38 33 {0 0 0} 0 42 39 38 {0 0 -1} 0 43 40 38 {0 0 -1} 0 44 41 40 {0 0 0} 0 45 42 40 {0 0 1} 0 46 43 21 {0 0 0} 0 47 44 21 {0 0 0} 0 48 45 43 {0 0 0} 0 49 46 43 {0 0 0} 0 50 47 43 {0 0 0} 0 51 48 44 {0 0 0} 0 52 49 44 {0 0 0} 0 53 50 44 {0 0 0} 0 54 52 51 {0 0 0} 0 55 53 52 {0 0 0} 0 56 54 53 {0 0 0} 0 57 55 54 {0 0 0} 0 58 56 54 {0 0 0} 0 59 57 56 {0 0 0} 0 60 58 57 {0 0 0} 0 61 59 58 {0 0 0} 0 62 60 59 {0 0 0} 0 63 61 60 {0 0 0} 0 64 62 61 {0 0 0} 0 65 63 62 {0 0 0} 0 66 64 63 {0 0 0} 0 67 65 64 {0 0 0} 0 68 67 66 {0 0 0} 0 69 68 66 {0 0 0} 0 70 68 63 {0 0 0} 0 71 69 68 {0 0 0} 0 72 69 60 {0 0 0} 0 73 70 58 {0 0 0} 0 74 71 70 {0 0 0} 0 75 72 71 {0 0 0} 0 76 72 52 {0 0 0} 0 77 72 56 {0 0 0} 0 78 73 57 {0 0 0} 0 79 74 61 {0 0 0} 0 80 75 62 {0 0 0} 0 81 76 69 {0 0 0} 0 82 77 70 {0 0 0} 0 83 78 71 {0 0 0} 0 84 79 64 {0 0 0} 0 85 79 66 {0 0 0} 0 86 79 0 {0 0 0} 0 87 84 81 {0 0 0} 0 88 84 82 {0 0 0} 0 89 89 84 {0 0 0} 0 90 83 82 {0 0 0} 0 91 82 80 {0 0 0} 0 92 85 80 {0 0 0} 0 93 86 85 {0 0 0} 0 94 87 85 {0 0 0} 0 95 88 87 {0 0 0} 0 96 89 87 {0 0 0} 0 97 90 89 {0 0 0} 0 98 91 90 {0 0 0} 0 99 95 92 {0 0 0} 0 100 95 93 {0 0 0} 0 101 100 95 {0 0 0} 0 102 94 93 {0 0 0} 0 103 93 91 {0 0 0} 0 104 96 91 {0 0 0} 0 105 97 96 {0 0 0} 0 106 98 96 {0 0 0} 0 107 99 98 {-1 0 0} 0 108 100 98 {0 0 0} 0 109 101 100 {0 0 0} 0 110 102 101 {0 0 0} 0 111 106 103 {0 0 0} 0 112 106 104 {0 0 0} 0 113 111 106 {0 0 0} 0 114 105 104 {0 0 0} 0 115 104 102 {0 0 1} 0 116 107 102 {0 0 0} 0 117 108 107 {0 0 0} 0 118 109 107 {0 0 1} 0 119 110 109 {0 0 0} 0 120 111 109 {0 0 0} 0 121 112 111 {0 0 0} 0 122 113 112 {0 0 0} 0 123 117 114 {0 0 0} 0 124 117 115 {0 0 0} 0 125 122 117 {0 0 0} 0 126 116 115 {0 0 0} 0 127 115 113 {0 0 0} 0 128 118 113 {0 0 0} 0 129 119 118 {0 0 0} 0 130 120 118 {0 0 0} 0 131 121 120 {0 0 0} 0 132 122 120 {0 0 0} 0 133 123 101 {0 0 0} 0 134 124 101 {-1 0 0} 0 135 125 123 {-1 0 0} 0 136 126 123 {-1 0 0} 0 137 127 123 {0 0 0} 0 138 128 124 {0 0 0} 0 139 129 124 {0 0 0} 0 140 130 124 {0 0 0} 0 141 132 131 {0 0 0} 0 142 133 132 {0 0 -1} 0 143 134 133 {0 0 0} 0 144 135 134 {0 0 0} 0 145 136 134 {0 0 0} 0 146 137 136 {0 0 0} 0 147 138 137 {0 0 0} 0 148 139 138 {0 0 0} 0 149 140 139 {0 0 0} 0 150 141 140 {0 0 0} 0 151 142 141 {0 -1 0} 0 152 143 142 {0 0 0} 0 153 144 143 {0 0 0} 0 154 145 144 {0 0 0} 0 155 147 146 {0 0 0} 0 156 148 146 {0 0 0} 0 157 148 143 {0 0 0} 0 158 149 148 {0 0 0} 0 159 149 140 {0 -1 0} 0 160 150 138 {0 0 0} 0 161 151 150 {0 0 0} 0 162 152 151 {0 0 0} 0 163 152 132 {0 0 -1} 0 164 152 136 {0 0 0} 0 165 153 137 {0 0 0} 0 166 154 141 {0 0 0} 0 167 155 142 {0 0 0} 0 168 156 149 {0 1 0} 0 169 157 150 {0 0 0} 0 170 158 151 {0 0 1} 0 171 159 144 {0 0 0} 0 172 159 146 {0 0 0} 0 173 159 80 {0 0 0} 0 174 133 42 {0 0 -1} 0 175 164 161 {0 0 0} 0 176 164 162 {0 0 0} 0 177 169 164 {0 0 0} 0 178 163 162 {0 0 0} 0 179 162 160 {0 0 0} 0 180 165 160 {0 0 0} 0 181 166 165 {0 0 0} 0 182 167 165 {0 0 0} 0 183 168 167 {0 0 0} 0 184 169 167 {0 0 0} 0 185 170 169 {0 0 0} 0 186 171 170 {0 0 0} 0 187 175 172 {0 0 0} 0 188 175 173 {0 0 1} 0 189 180 175 {0 0 0} 0 190 174 173 {0 0 0} 0 191 173 171 {0 0 0} 0 192 176 171 {0 0 1} 0 193 177 176 {0 0 0} 0 194 178 176 {0 0 0} 0 195 179 178 {0 0 0} 0 196 180 178 {0 0 0} 0 197 181 180 {0 0 0} 0 198 182 181 {1 0 0} 0 199 186 183 {0 0 0} 0 200 186 184 {0 0 0} 0 201 191 186 {0 0 0} 0 202 185 184 {0 0 0} 0 203 184 182 {0 0 0} 0 204 187 182 {0 0 0} 0 205 188 187 {-1 0 -1} 0 206 189 187 {0 0 -1} 0 207 190 189 {0 0 0} 0 208 191 189 {0 0 1} 0 209 192 191 {0 0 -1} 0 210 193 192 {0 0 0} 0 211 197 194 {0 0 0} 0 212 197 195 {0 0 0} 0 213 202 197 {0 0 1} 0 214 196 195 {0 0 0} 0 215 195 193 {0 0 0} 0 216 198 193 {0 0 1} 0 217 199 198 {0 0 0} 0 218 200 198 {0 0 0} 0 219 201 200 {0 0 0} 0 220 202 200 {0 0 0} 0 221 203 181 {0 0 0} 0 222 204 181 {0 0 0} 0 223 205 203 {0 0 0} 0 224 206 203 {0 0 0} 0 225 207 203 {0 0 0} 0 226 208 204 {1 0 0} 0 227 209 204 {0 0 0} 0 228 210 204 {0 0 0} 0 229 212 211 {0 0 0} 0 230 213 212 {0 0 0} 0 231 214 213 {0 0 0} 0 232 215 214 {0 0 0} 0 233 216 214 {0 0 0} 0 234 217 216 {0 0 0} 0 235 218 217 {0 0 0} 0 236 219 218 {0 0 0} 0 237 220 219 {0 0 0} 0 238 221 220 {0 0 0} 0 239 222 221 {0 0 0} 0 240 223 222 {0 0 0} 0 241 224 223 {0 0 0} 0 242 225 224 {0 0 0} 0 243 227 226 {0 0 0} 0 244 228 226 {0 0 0} 0 245 228 223 {0 0 0} 0 246 229 228 {0 0 0} 0 247 229 220 {0 0 0} 0 248 230 218 {0 0 0} 0 249 231 230 {0 0 0} 0 250 232 231 {0 0 0} 0 251 232 212 {0 0 0} 0 252 232 216 {0 0 0} 0 253 233 217 {0 0 0} 0 254 234 221 {0 0 0} 0 255 235 222 {0 0 0} 0 256 236 229 {0 0 0} 0 257 237 230 {0 0 0} 0 258 238 231 {0 0 0} 0 259 239 224 {0 0 0} 0 260 239 226 {0 0 0} 0 261 239 160 {0 0 0} 0 262 213 122 {0 0 0} 0 263 244 241 {0 0 0} 0 264 244 242 {0 0 0} 0 265 249 244 {0 0 0} 0 266 243 242 {0 0 0} 0 267 242 240 {0 0 0} 0 268 245 240 {0 0 0} 0 269 246 245 {0 0 0} 0 270 247 245 {0 0 0} 0 271 248 247 {0 0 0} 0 272 249 247 {0 0 0} 0 273 250 249 {0 0 0} 0 274 251 250 {0 0 0} 0 275 255 252 {0 1 0} 0 276 255 253 {0 0 0} 0 277 260 255 {0 0 0} 0 278 254 253 {0 0 0} 0 279 253 251 {0 0 0} 0 280 256 251 {0 0 0} 0 281 257 256 {0 0 0} 0 282 258 256 {0 0 0} 0 283 259 258 {0 0 0} 0 284 260 258 {0 0 0} 0 285 261 260 {0 0 0} 0 286 262 261 {0 -1 0} 0 287 266 263 {0 -1 0} 0 288 266 264 {0 -1 0} 0 289 271 266 {0 0 1} 0 290 265 264 {0 0 0} 0 291 264 262 {0 1 -1} 0 292 267 262 {0 0 0} 0 293 268 267 {0 0 0} 0 294 269 267 {0 0 0} 0 295 270 269 {0 0 0} 0 296 271 269 {0 0 0} 0 297 272 271 {0 0 -1} 0 298 273 272 {0 0 1} 0 299 277 274 {0 0 0} 0 300 277 275 {0 0 0} 0 301 282 277 {0 0 0} 0 302 276 275 {0 0 0} 0 303 275 273 {0 0 0} 0 304 278 273 {0 0 0} 0 305 279 278 {0 0 0} 0 306 280 278 {0 0 0} 0 307 281 280 {0 0 0} 0 308 282 280 {0 0 0} 0 309 283 261 {0 -1 0} 0 310 284 261 {0 0 0} 0 311 285 283 {0 0 0} 0 312 286 283 {0 0 0} 0 313 287 283 {0 0 0} 0 314 288 284 {0 0 -1} 0 315 289 284 {0 0 -1} 0 316 290 284 {0 0 0} 0 317 292 291 {0 1 0} 0 318 293 292 {0 -1 0} 0 319 294 293 {0 1 -1} 0 320 295 294 {0 0 0} 0 321 296 294 {0 0 0} 0 322 297 296 {0 0 0} 0 323 298 297 {0 0 1} 0 324 299 298 {0 0 -1} 0 325 300 299 {0 0 0} 0 326 301 300 {0 0 0} 0 327 302 301 {0 0 0} 0 328 303 302 {0 0 0} 0 329 304 303 {0 0 0} 0 330 305 304 {0 0 0} 0 331 307 306 {0 0 0} 0 332 308 306 {0 0 0} 0 333 308 303 {0 0 0} 0 334 309 308 {0 0 0} 0 335 309 300 {0 0 0} 0 336 310 298 {0 0 0} 0 337 311 310 {0 0 0} 0 338 312 311 {0 0 0} 0 339 312 292 {0 0 0} 0 340 312 296 {0 0 1} 0 341 313 297 {0 0 0} 0 342 314 301 {0 0 0} 0 343 315 302 {0 0 0} 0 344 316 309 {0 0 0} 0 345 317 310 {0 0 0} 0 346 318 311 {0 0 0} 0 347 319 304 {0 0 0} 0 348 319 306 {0 0 0} 0 349 319 240 {0 0 0} 0 350 293 202 {0 0 0} 0 351 324 321 {0 0 0} 0 352 324 322 {0 0 0} 0 353 329 324 {0 0 0} 0 354 323 322 {0 0 0} 0 355 322 320 {0 0 0} 0 356 325 320 {0 0 0} 0 357 326 325 {0 0 0} 0 358 327 325 {0 0 0} 0 359 328 327 {0 0 1} 0 360 329 327 {0 0 0} 0 361 330 329 {0 0 1} 0 362 331 330 {0 0 0} 0 363 335 332 {0 0 0} 0 364 335 333 {0 0 0} 0 365 340 335 {0 0 0} 0 366 334 333 {0 0 0} 0 367 333 331 {0 0 0} 0 368 336 331 {0 0 0} 0 369 337 336 {0 0 0} 0 370 338 336 {0 0 0} 0 371 339 338 {0 0 0} 0 372 340 338 {0 0 0} 0 373 341 340 {0 0 0} 0 374 342 341 {0 0 0} 0 375 346 343 {0 0 0} 0 376 346 344 {0 0 0} 0 377 351 346 {0 0 0} 0 378 345 344 {0 0 0} 0 379 344 342 {0 0 0} 0 380 347 342 {0 0 0} 0 381 348 347 {0 0 0} 0 382 349 347 {0 0 0} 0 383 350 349 {0 0 0} 0 384 351 349 {0 0 0} 0 385 352 351 {0 0 0} 0 386 353 352 {0 0 0} 0 387 357 354 {0 0 0} 0 388 357 355 {0 0 0} 0 389 362 357 {0 0 0} 0 390 356 355 {0 0 0} 0 391 355 353 {0 0 0} 0 392 358 353 {0 0 0} 0 393 359 358 {0 0 0} 0 394 360 358 {0 0 0} 0 395 361 360 {0 0 0} 0 396 362 360 {0 0 0} 0 397 363 341 {0 0 0} 0 398 364 341 {0 0 0} 0 399 365 363 {0 0 0} 0 400 366 363 {0 0 0} 0 401 367 363 {0 0 0} 0 402 368 364 {0 0 0} 0 403 369 364 {0 0 0} 0 404 370 364 {0 0 0} 0 405 372 371 {0 0 0} 0 406 373 372 {0 0 0} 0 407 374 373 {0 0 0} 0 408 375 374 {0 0 0} 0 409 376 374 {0 0 0} 0 410 377 376 {0 0 0} 0 411 378 377 {0 0 0} 0 412 379 378 {0 0 0} 0 413 380 379 {0 0 0} 0 414 381 380 {0 0 0} 0 415 382 381 {0 0 0} 0 416 383 382 {0 0 0} 0 417 384 383 {0 0 0} 0 418 385 384 {0 0 0} 0 419 387 386 {0 0 0} 0 420 388 386 {0 0 0} 0 421 388 383 {0 0 0} 0 422 389 388 {0 0 0} 0 423 389 380 {0 0 0} 0 424 390 378 {0 0 0} 0 425 391 390 {0 0 0} 0 426 392 391 {0 0 0} 0 427 392 372 {0 0 0} 0 428 392 376 {0 0 0} 0 429 393 377 {0 0 0} 0 430 394 381 {0 0 0} 0 431 395 382 {0 0 0} 0 432 396 389 {0 0 0} 0 433 397 390 {0 0 0} 0 434 398 391 {0 0 0} 0 435 399 384 {0 0 0} 0 436 399 386 {0 0 0} 0 437 399 320 {0 0 0} 0 438 373 282 {0 0 0} 0 439 404 401 {1 0 0} 0 440 404 402 {0 0 0} 0 441 409 404 {0 0 0} 0 442 403 402 {-1 0 0} 0 443 402 400 {0 0 0} 0 444 405 400 {0 0 0} 0 445 406 405 {0 0 0} 0 446 407 405 {0 0 0} 0 447 408 407 {0 0 0} 0 448 409 407 {0 0 0} 0 449 410 409 {0 0 0} 0 450 411 410 {0 0 0} 0 451 415 412 {1 0 0} 0 452 415 413 {0 0 0} 0 453 420 415 {0 0 0} 0 454 414 413 {-1 0 0} 0 455 413 411 {0 0 0} 0 456 416 411 {0 0 0} 0 457 417 416 {0 0 0} 0 458 418 416 {0 0 0} 0 459 419 418 {0 0 0} 0 460 420 418 {0 0 0} 0 461 421 420 {0 0 0} 0 462 422 421 {0 0 0} 0 463 426 423 {0 0 0} 0 464 426 424 {-1 0 0} 0 465 431 426 {0 0 0} 0 466 425 424 {0 0 0} 0 467 424 422 {0 0 0} 0 468 427 422 {0 0 0} 0 469 428 427 {0 -1 0} 0 470 429 427 {-1 0 0} 0 471 430 429 {0 -1 0} 0 472 431 429 {0 0 0} 0 473 432 431 {0 0 0} 0 474 433 432 {0 0 0} 0 475 437 434 {0 1 0} 0 476 437 435 {1 0 0} 0 477 442 437 {-1 0 -1} 0 478 436 435 {1 0 0} 0 479 435 433 {0 0 0} 0 480 438 433 {0 0 0} 0 481 439 438 {0 0 0} 0 482 440 438 {0 0 -1} 0 483 441 440 {0 0 0} 0 484 442 440 {0 0 0} 0 485 443 421 {0 -1 0} 0 486 444 421 {0 0 0} 0 487 445 443 {0 0 0} 0 488 446 443 {0 0 0} 0 489 447 443 {0 0 0} 0 490 448 444 {0 0 0} 0 491 449 444 {0 0 0} 0 492 450 444 {0 0 0} 0 493 452 451 {0 0 0} 0 494 453 452 {0 0 0} 0 495 454 453 {0 0 0} 0 496 455 454 {0 0 0} 0 497 456 454 {0 0 0} 0 498 457 456 {0 -1 0} 0 499 458 457 {0 0 0} 0 500 459 458 {0 0 0} 0 501 460 459 {0 0 0} 0 502 461 460 {0 0 0} 0 503 462 461 {0 0 0} 0 504 463 462 {0 0 0} 0 505 464 463 {0 0 0} 0 506 465 464 {-1 0 0} 0 507 467 466 {0 0 0} 0 508 468 466 {0 0 0} 0 509 468 463 {0 0 0} 0 510 469 468 {0 0 0} 0 511 469 460 {0 0 0} 0 512 470 458 {0 0 0} 0 513 471 470 {0 0 0} 0 514 472 471 {0 1 0} 0 515 472 452 {0 0 0} 0 516 472 456 {0 0 0} 0 517 473 457 {0 0 0} 0 518 474 461 {0 0 0} 0 519 475 462 {0 0 0} 0 520 476 469 {0 0 0} 0 521 477 470 {0 0 0} 0 522 478 471 {0 0 0} 0 523 479 464 {0 0 0} 0 524 479 466 {0 0 0} 0 525 479 400 {0 0 0} 0 526 453 362 {0 0 0} 0 527 480 53 {1 0 0} 0 528 481 442 {1 0 0} 0 @end @Columns Subset Color string {{#65d9f0}} Criteria string {{}} DisplayLine int 0 IeqJ int 1 IgtJ int 0 IltJ int 0 Length int 1 Name string {{}} Table string {{}} Type string atom UseColor int 0 @end @data @end}} } Namespace { ::thread { } } Namespace { ::tsv { } } Namespace { ::tpool { } } Namespace { ::chemistry { } } Namespace { ::chemistry::PeriodicTable { scalar ::chemistry::PeriodicTable::gProperties {symbol {atomic radius} {covalent radius} {atomic number} {atomic mass} {discovery date} {electrical conductivity} {thermal conductivity} {specific heat} electronegativity {boiling point} {melting point} density {atomic volume} {lattice spacing a} structure {c/a, alpha, b/a} {coherent scattering length} {incoherent X-section} {absorption @1.8A} name state valency {ldf spin-polarization energy} {atomic heat of formation at 0 K} {Pettifor index} {alternate radius}} scalar ::chemistry::PeriodicTable::gSymbols {X H He Li Be B C N O F Ne Na Mg Al Si P S Cl Ar K Ca Sc Ti V Cr Mn Fe Co Ni Cu Zn Ga Ge As Se Br Kr Rb Sr Y Zr Nb Mo Tc Ru Rh Pd Ag Cd In Sn Sb Te I Xe Cs Ba La Ce Pr Nd Pm Sm Eu Gd Tb Dy Ho Er Tm Yb Lu Hf Ta W Re Os Ir Pt Au Hg Tl Pb Bi Po At Rn Fr Ra Ac Th Pa U Np Pu Am Cm Bk Cf Es Fm Md No Lr Rf Db Sg Bh Hs Mt Ds Rg Cn Nh Fl Mc Lv Ts Og } scalar ::chemistry::PeriodicTable::gType {{} continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous discrete {} continuous continuous continuous {} discrete discrete continuous continuous discrete continuous} scalar ::chemistry::PeriodicTable::gUnits {{} Ang Ang {} amu {} {10^6 / (cm * ohm)} {W /(cm * K)} {[J/g/K]} {} K\] K {} {} Ang {} {} {1.0E-12 cm} barn barn {} {} {} kJ/mol kJ/mol {} Ang} scalar ::chemistry::PeriodicTable::gNElements 118 scalar ::chemistry::PeriodicTable::gElementData {{X --- --- 0 0.0 ---- --- ---- --- --- --- --- --- --- --- --- --- --- --- --- Dummy --- --- --- --- 999 1.10} {H 0.79 0.32 1 1.00794 1766 --- 0.001815 14.304 2.20 20.268 14.025 0.0899 14.4 3.75 HEX --- -0.374 79.9 0.3326 Hydrogen gas 1 86.64 216.035 103 0.20} {He 0.49 0.93 2 4.002602 1895 --- 0.00152 5.193 --- 4.215 0.95 0.1787 0.0 3.57 HEX --- 0.326 0.0 0.00747 Helium gas 0 0.00 0 1 1.00} {Li 2.05 1.23 3 6.941 1817 0.108 0.847 3.6 0.98 1615 453.7 0.53 13.10 3.49 BCC --- -0.190 0.91 70.5 Lithium solid 1 23.00 157.735 12 0.90} {Be 1.40 0.90 4 9.012182 1798 0.313 2.00 1.82 1.57 2745 1560.0 1.85 5.0 2.29 HEX 1.567 0.779 0.005 0.0076 Beryllium solid 2 0.00 319.753 77 0.80} {B 1.17 0.82 5 10.811 1828 1.0e-12 0.270 1.02 2.04 4275 2300.0 2.34 4.6 8.73 TET 0.576 0.530 1.7 767.0 Boron solid 3 24.72 559.906 86 0.65} {C 0.91 0.77 6 12.011 ???? 0.00061 1.29 0.71 2.55 4470.0 4100.0 2.62 4.58 3.57 DIA --- 0.6648 0.001 0.0035 Carbon solid 4 116.26 711.194 95 0.70} {N 0.75 0.75 7 14.00674 1772 --- 0.0002598 1.04 3.04 77.35 63.14 1.251 17.3 4.039 HEX 1.051 0.936 0.49 1.90 Nitrogen gas 3 293.49 470.818 100 0.80} {O 0.65 0.73 8 15.9994 1774 --- 0.0002674 0.92 3.44 90.18 50.35 1.429 14.0 6.83 CUB --- 0.5805 0.000 0.00019 Oxygen gas 2 142.65 246.795 101 0.90} {F 0.57 0.72 9 18.9984032 1886 --- 0.000279 0.82 3.98 84.95 53.48 1.696 17.1 --- MCL --- 0.5654 0.0008 0.0096 Fluorine gas 1 38.19 77.2745 102 0.95} {Ne 0.51 0.71 10 20.1797 1898 --- 0.000493 0.904 --- 27.096 24.553 0.901 16.7 4.43 FCC --- 0.4547 0.008 0.039 Neon gas 0 0.00 0 2 1.40} {Na 2.23 1.54 11 22.989768 1807 0.139 1.41 1.23 0.93 1156 371.0 0.97 23.7 4.23 BCC --- 0.363 1.62 0.530 Sodium solid 1 19.86 107.763 11 1.10} {Mg 1.72 1.36 12 24.3050 1808 0.226 1.56 1.02 1.31 1363 922 1.74 13.97 3.21 HEX 1.624 0.5375 0.077 0.063 Magnesium solid 2 0.00 145.901 73 0.95} {Al 1.82 1.18 13 26.981539 1825 0.377 2.37 0.90 1.61 2793 933.25 2.70 10.0 4.05 FCC --- 0.3449 0.0085 0.231 Aluminum solid 3 14.66 327.621 80 0.85} {Si 1.46 1.11 14 28.0855 1823 2.52e-12 1.48 0.71 1.90 3540.0 1685 2.33 12.1 5.43 DIA --- 0.4149 0.015 0.171 Silicon solid 4 64.45 445.667 85 0.80} {P 1.23 1.06 15 30.97362 1669 1.0e-17 0.00235 0.77 2.19 550.0 317.30 1.82 17.0 7.17 CUB --- 0.513 0.006 0.172 Phosphorus solid 3 156.41 315.663 90 0.90} {S 1.09 1.02 16 32.066 ???? 0.5e-23 0.00269 0.71 2.58 717.75 388.36 2.07 15.5 10.47 ORC 2.339/1.229 0.2847 0.007 0.53 Sulfur solid 2 73.16 274.925 94 1.25} {Cl 0.97 0.99 17 35.4527 1774 --- 0.000089 0.48 3.16 239.1 172.16 3.17 22.7 6.24 ORC 1.324/0.718 0.95792 5.2 33.5 Chlorine gas 1 19.12 119.6195 99 1.35} {Ar 0.88 0.98 18 39.948 1894 --- 0.0001772 0.520 --- 87.30 83.81 1.784 28.5 5.26 FCC --- 0.1909 0.22 0.675 Argon gas 0 0.00 0 3 1.70} {K 2.77 2.03 19 39.0983 1807 0.139 1 0.75 0.82 1032 336.35 0.86 45.46 5.23 BCC --- 0.371 0.25 2.1 Potassium solid 1 14.29 89.891 10 1.50} {Ca 2.23 1.91 20 40.078 1808 0.298 2.00 0.63 1.00 1757 1112 1.55 29.9 5.58 FCC --- 0.490 0.03 0.43 Calcium solid 2 0.00 177.339 16 1.30} {Sc 2.09 1.62 21 44.955910 1879 0.0177 0.158 0.6 1 3104 1812 3.0 15.0 3.31 HEX 1.594 1.229 4.5 27.2 Scandium solid 3 15.68 376.22 19 1.05} {Ti 2.00 1.45 22 47.88 1791 0.0234 0.219 0.52 1.54 3562 1943 4.50 10.64 2.95 HEX 1.588 -0.330 2.67 6.09 Titanium solid 4 68.91 470.285 51 1.00} {V 1.92 1.34 23 50.9415 1830 0.0489 0.307 0.49 1.63 3682 2175 5.8 8.78 3.02 BCC --- -0.0382 5.187 5.08 Vanadium solid 5 166.19 514.84 54 0.98} {Cr 1.85 1.18 24 51.9961 1797 0.0774 0.937 0.45 1.66 2945 2130.0 7.19 7.23 2.88 BCC --- 0.3635 1.83 3.07 Chromium solid 3 493.88 394.86 57 0.97} {Mn 1.79 1.17 25 54.93085 1774 0.00695 0.0782 0.48 1.55 2335 1517 7.43 1.39 8.89 FCC --- -0.373 0.40 13.3 Manganese solid 2 511.24 279.8 60 0.96} {Fe 1.72 1.17 26 55.847 ???? 0.0993 0.802 0.44 1.83 3135 1809 7.86 7.1 2.87 BCC --- 0.954 0.39 2.56 Iron solid 2 341.93 411.405 61 0.95} {Co 1.67 1.16 27 58.93320 1737 0.172 1.00 0.42 1.88 3201 1768 8.90 6.7 2.51 HEX 1.622 0.250 4.8 37.18 Cobalt solid 2 199.63 423.41 64 0.94} {Ni 1.62 1.15 28 58.69 1751 0.143 0.907 0.44 1.91 3187 1726 8.90 6.59 3.52 FCC --- 1.03 5.2 4.49 Nickel solid 2 91.65 427.97 67 0.93} {Cu 1.57 1.17 29 63.546 ???? 0.596 4.01 0.38 1.90 2836 1357.6 8.96 7.1 3.61 FCC --- 0.7718 0.52 3.78 Copper solid 2 19.68 336.207 72 0.95} {Zn 1.53 1.25 30 65.39 1746 0.166 1.16 0.39 1.65 1180.0 692.73 7.14 9.2 2.66 HEX 1.856 0.5680 0.077 1.11 Zinc solid 2 0.00 129.86 76 1.00} {Ga 1.81 1.26 31 69.723 1875 0.0678 0.406 0.37 1.81 2478 302.90 5.91 11.8 4.51 ORC 1.695/1.001 0.7288 0.0 2.9 Gallium solid 3 14.36 276.02 81 0.90} {Ge 1.52 1.22 32 72.61 1886 1 0.599 0.32 2.01 3107 1210.4 5.32 13.6 5.66 DIA --- 0.81929 0.17 2.3 Germanium solid 4 59.15 369.238 84 0.85} {As 1.33 1.20 33 74.92159 ???? 0.0345 0.500 0.33 2.18 876 1081 5.72 13.1 4.13 RHL 54\"10' 0.658 0.060 4.5 Arsenic solid 3 136.99 301.93 89 1.00} {Se 1.22 1.16 34 78.96 1817 1.0e-12 0.0204 0.32 2.55 958 494 4.80 16.45 4.36 HEX 1.136 0.797 0.33 11.7 Selenium solid 2 61.67 226.421 93 1.30} {Br 1.12 1.14 35 79.904 1826 --- 0.00122 0.473 2.96 332.25 265.90 3.12 23.5 6.67 ORC 1.307/0.672 0.679 0.10 6.9 Bromine liquid 1 15.62 117.933 98 1.40} {Kr 1.03 1.12 36 83.80 1898 --- 0.0000949 0.248 --- 119.80 115.78 3.74 38.9 5.72 FCC --- 0.780 0.03 25. Krypton gas 0 0.00 0 4 1.90} {Rb 2.98 2.16 37 85.4678 1861 0.0779 0.582 0.363 0.82 961 312.64 1.53 55.9 5.59 BCC --- 0.708 0.3 0.38 Rubidium solid 1 12.78 82.192 9 1.80} {Sr 2.45 1.91 38 87.62 1790 0.0762 0.353 0.30 0.95 1650.0 1041 2.6 33.7 6.08 FCC --- 0.702 0.04 1.28 Strontium solid 2 0.00 164 15 1.60} {Y 2.27 1.62 39 88.90585 1794 0.0166 0.172 0.30 1.22 3611 1799 4.5 19.8 3.65 HEX 1.571 0.775 0.15 1.28 Yttrium solid 3 11.91 420.11 25 1.30} {Zr 2.16 1.45 40 91.224 1789 0.0236 0.227 0.27 1.33 4682 2125 6.49 14.1 3.23 HEX 1.593 0.716 0.16 0.185 Zirconium solid 4 51.13 607.71 49 1.15} {Nb 2.09 1.34 41 92.90638 1801 0.0693 0.537 0.26 1.6 5017 2740.0 8.55 10.87 3.30 BCC --- 0.7054 0.0024 1.15 Niobium solid 5 261.09 722.89 53 1.12} {Mo 2.01 1.30 42 95.94 1778 0.187 1.38 0.25 2.16 4912 2890.0 10.2 9.4 3.15 BCC --- 0.695 0.28 2.55 Molybdenum solid 6 392.14 656.393 56 1.11} {Tc 1.95 1.27 43 98.91 1937 0.067 0.506 0.21 1.9 4538 2473 11.5 8.5 2.74 HEX 1.604 0.68 0.0 20.0 Technetium solid ? 359.05 678 59 1.10} {Ru 1.89 1.25 44 101.07 1844 0.137 1.17 0.238 2.2 4423 2523 12.2 8.3 2.70 HEX 1.584 0.721 0.07 2.56 Ruthenium solid 3 166.40 641.37 62 1.09} {Rh 1.83 1.25 45 102.90550 1803 0.211 1.50 0.242 2.28 3970.0 2236 12.4 8.3 3.90 FCC --- 0.588 0.0 145.0 Rhodium solid 3 88.99 555.71 65 1.08} {Pd 1.79 1.28 46 106.42 1803 0.0950 0.718 0.24 2.20 3237 1825 12.0 8.9 3.89 FCC --- 0.591 0.093 6.9 Palladium solid 2 0.00 377.24 69 1.07} {Ag 1.75 1.34 47 107.8682 ???? 0.630 4.29 0.235 1.93 2436 1234 10.5 10.3 4.09 FCC --- 0.5922 0.58 63.3 Silver solid 1 16.11 284.45 71 1.10} {Cd 1.71 1.48 48 112.411 1817 0.138 0.968 0.23 1.69 1040.0 594.18 8.65 13.1 2.98 HEX 1.886 0.51 2.4 2520.0 Cadmium solid 2 0.00 111.85 75 1.20} {In 2.00 1.44 49 114.82 1863 0.116 0.816 0.23 1.78 2346 429.76 7.31 15.7 4.59 TET 1.076 0.4065 0.54 193.8 Indium solid 3 12.46 243.7 79 1.05} {Sn 1.72 1.41 50 118.710 ???? 0.0917 0.666 0.227 1.96 2876 505.06 7.30 16.3 5.82 TET 0.546 0.6228 0.022 0.626 Tin solid 4 49.86 301.308 83 1.00} {Sb 1.53 1.40 51 121.75 ???? 0.0288 0.243 0.21 2.05 1860.0 904 6.68 18.23 4.51 RHL 58\"6' 0.5641 0.3 5.1 Antimony solid 3 113.05 262.7 88 1.30} {Te 1.42 1.36 52 127.60 1782 2.0e-6 0.0235 0.20 2.1 1261 722.65 6.24 20.5 4.45 HEX 1.33 0.543 0.02 4.7 Tellurium solid 2 50.05 196.62 92 1.70} {I 1.32 1.33 53 126.90447 1804 8.0e-16 0.00449 0.214 2.66 458.4 386.7 4.92 25.74 7.27 ORC 1.347/0.659 0.528 0.0 6.2 Iodine solid 1 12.51 113.759 97 1.80} {Xe 1.24 1.31 54 131.29 1898 --- 0.0000569 0.158 --- 165.03 161.36 5.89 37.3 6.20 FCC --- 0.485 0.0 23.9 Xenon gas 0 0.00 0 5 2.10} {Cs 3.34 2.35 55 132.90543 1860 0.0489 0.359 0.24 0.79 944 301.55 1.87 71.07 6.05 BCC --- 0.542 0.21 29.0 Cesium solid 1 10.91 78.014 8 1.80} {Ba 2.78 1.98 56 137.327 1808 0.030 0.184 0.204 0.89 2171 1002 3.5 39.24 5.02 BCC --- 0.525 0.01 1.2 Barium solid 2 0.00 181.7 14 1.60} {La 2.74 1.69 57 138.9055 1839 0.0126 0.135 0.19 1.10 3730.0 1193 6.7 20.73 3.75 HEX 1.619 0.824 1.13 8.97 Lanthanum solid 3 10.68 431.36 33 1.30} {Ce 2.70 1.65 58 140.115 1803 0.0115 0.114 0.19 1.12 3699 1071 6.78 20.67 5.16 FCC --- 0.484 0.0 0.63 Cerium solid 3 33.37 424.33 32 1.20} {Pr 2.67 1.65 59 140.90765 1885 0.0148 0.125 0.19 1.13 3785 1204 6.77 20.8 3.67 HEX 1.614 0.445 0.016 11.5 Praseodymium solid 3 134.97 357.08 31 1.19} {Nd 2.64 1.64 60 144.24 1925 0.0157 0.165 0.19 1.14 3341 1289 7.00 20.6 3.66 HEX 1.614 0.769 11. 50.5 Neodymium solid 3 248.46 328.93 30 1.18} {Pm 2.62 1.63 61 146.9151 1945 --- 0.179 0.18 1.13 3785 1204 6.475 22.39 --- --- --- 1.26 1.3 168.4 Promethium solid 3 399.56 --- 29 1.17} {Sm 2.59 1.62 62 150.36 1879 0.00956 0.133 0.20 1.17 2064 1345 7.54 19.95 9.00 RHL 23\"13' 0.42 50. 5670. Samarium solid 3 589.70 206.43 28 1.16} {Eu 2.56 1.85 63 151.965 1901 0.0112 0.139 0.18 1.2 1870.0 1090.0 5.26 28.9 4.61 BCC --- 0.668 2.2 4600. Europium solid 3 820.13 176.8 18 1.15} {Gd 2.54 1.61 64 157.25 1880 0.00736 0.106 0.23 1.20 3539 1585 7.89 19.9 3.64 HEX 1.588 0.95 158.0 48890. Gadolinium solid 3 949.67 398.47 27 1.14} {Tb 2.51 1.59 65 158.92534 1843 0.00889 0.111 0.18 1.2 3496 1630.0 8.27 19.2 3.60 HEX 1.581 0.738 0.004 23.4 Terbium solid 3 436.00 390.91 26 1.13} {Dy 2.49 1.59 66 162.50 1886 0.0108 0.107 0.17 1.22 2835 1682 8.54 19.0 3.59 HEX 1.573 1.69 54.5 940. Dysprosium solid 3 283.86 291.8 24 1.12} {Ho 2.47 1.58 67 164.93032 1878 0.0124 0.162 0.16 1.23 2968 1743 8.80 18.7 3.58 HEX 1.570 0.808 0.36 64.7 Holmium solid 3 162.17 302.8 23 1.11} {Er 2.45 1.57 68 167.26 1843 0.0117 0.143 0.17 1.24 3136 1795 9.05 18.4 3.56 HEX 1.570 0.803 1.2 159.2 Erbium solid 3 73.11 318.18 22 1.10} {Tm 2.42 1.56 69 168.93421 1879 0.0150 0.168 0.16 1.25 2220.0 1818 9.33 18.1 3.54 HEX 1.570 0.705 0.41 105. Thulium solid 3 18.52 233.19 21 1.09} {Yb 2.40 1.74 70 173.04 1878 0.0351 0.349 0.15 1.1 1467 1097 6.98 24.79 5.49 FCC --- 1.24 3.0 35.1 Ytterbium solid 3 0.00 152.51 17 1.08} {Lu 2.25 1.56 71 174.967 1907 0.0185 0.164 0.15 1.27 3668 1936 9.84 17.78 3.51 HEX 1.585 0.73 0.1 76.4 Lutetium solid 3 11.53 428.18 20 1.07} {Hf 2.16 1.44 72 178.49 1923 0.0312 0.230 0.14 1.3 4876 2500.0 13.1 13.6 3.20 HEX 1.582 0.777 2.6 104.1 Hafnium solid 4 48.55 618.65 50 1.15} {Ta 2.09 1.34 73 180.9479 1802 0.0761 0.575 0.14 1.5 5731 3287 16.6 10.90 3.31 BCC --- 0.691 0.02 20.6 Tantalum solid 5 112.72 781.44 52 1.12} {W 2.02 1.30 74 183.85 1783 0.189 1.74 0.13 2.36 5828 3680.0 19.3 9.53 3.16 BCC --- 0.477 2.00 18.4 Tungsten solid 6 204.93 847.76 55 1.11} {Re 1.97 1.28 75 186.207 1925 0.0542 0.479 0.13 1.9 5869 3453 21.0 8.85 2.76 HEX 1.615 0.92 0.9 90.7 Rhenium solid 5 325.85 769.22 58 1.10} {Os 1.92 1.26 76 190.2 1804 0.109 0.876 0.13 2.2 5285 3300.0 22.4 8.49 2.74 HEX 1.579 1.10 0.4 16.0 Osmium solid 4 210.26 791 63 1.09} {Ir 1.87 1.27 77 192.22 1804 0.197 1.47 0.130 2.20 4701 2716 22.5 8.54 3.84 FCC --- 1.06 0.2 425.3 Iridium solid 4 119.17 664.07 66 1.08} {Pt 1.83 1.30 78 195.08 1735 0.0966 0.716 0.13 2.28 4100.0 2045 21.4 9.10 3.92 FCC --- 0.963 0.13 10.3 Platinum solid 4 36.06 564.16 68 1.07} {Au 1.79 1.34 79 196.96654 ???? 0.452 3.17 0.128 2.54 3130.0 1337.58 19.3 10.2 4.08 FCC --- 0.763 0.36 98.65 Gold solid 3 14.78 365.81 70 1.10} {Hg 1.76 1.49 80 200.59 ???? 0.0104 0.0834 0.139 2.00 630.0 234.28 13.53 14.82 2.99 RHL 70\"45' 1.266 6.7 372.3 Mercury liquid 2 0.00 64.525 74 1.20} {Tl 2.08 1.48 81 204.3833 1861 0.0617 0.461 0.13 2.04 1746 577 11.85 17.2 3.46 HEX 1.599 0.8785 0.14 3.43 Thallium solid 3 11.75 182.83 78 1.20} {Pb 1.81 1.47 82 207.2 ???? 0.0481 0.353 0.13 2.33 2023 600.6 11.4 18.17 4.95 FCC --- 0.94003 0.003 0.171 Lead solid 4 46.28 195.873 82 1.10} {Bi 1.63 1.46 83 208.98037 ???? 0.00867 0.0787 0.12 2.02 1837 544.52 9.8 21.3 4.75 RHL 58\"14' 0.85256 0.0072 0.0338 Bismuth solid 3 103.69 207.23 87 1.30} {Po 1.53 1.46 84 209.98 1898 0.0219 0.20 0.12 2.0 1235 527 9.4 22.23 3.35 SC --- --- --- --- Polonium solid 2 45.46 --- 91 1.90} {At 1.43 1.45 85 209.9871 1940 --- 0.017 --- 2.2 610.0 575 --- --- --- --- --- --- --- --- Astatine solid 1 11.27 --- 96 2.00} {Rn 1.34 1.43 86 (222) 1898 --- 0.0000364 0.09 --- 211 202 9.91 50.5 --- --- --- --- --- --- Radon gas 0 0.00 0 6 2.20} {Fr 3.50 2.50 87 223.0197 1939 0.03 0.15 --- 0.7 950.0 300.0 --- --- --- --- --- 0.8495 0.0072 0.036 Francium solid 1 10.15 --- 7 2.00} {Ra 3.00 2.40 88 226.025 1898 --- 0.186 0.12 0.9 1809 973 5 45.20 --- --- --- 1.0 0.0 12.8 Radium solid 2 0.00 159 13 1.50} {Ac 3.20 2.20 89 227.028 1899 --- 0.12 --- 1.1 3473 1323 10.07 22.54 5.31 FCC --- --- --- --- Actinium solid 3 9.74 406 48 1.30} {Th 3.16 1.65 90 232.0381 1828 0.0653 0.540 0.12 1.3 5061 2028 11.7 19.9 5.08 FCC --- 0.984 0.0 7.37 Thorium solid 3 39.72 602 47 1.20} {Pa 3.14 1.535 91 231.03588 1917 0.0529 0.47 0.12 1.5 --- --- 15.4 15.0 3.92 TET 0.825 0.91 0.0 200.6 Protactinium solid 3 75.76 607 46 1.10} {U 3.11 1.42 92 238.0289 1789 0.0380 0.276 0.12 1.38 4407 1405 18.90 12.59 2.85 ORC 2.056/1.736 0.8417 0.004 7.57 Uranium solid 3 148.67 533 45 1.10} {Np 3.08 1.42 93 237.048 1940 0.00822 0.063 0.12 1.36 --- 910.0 20.4 11.62 4.72 ORC 1.411/1.035 1.055 0.0 175.9 Neptunium solid 3 {} --- 44 1.10} {Pu 3.05 1.42 94 244.0642 1940 0.00666 0.0674 0.13 1.28 3503 913 19.8 12.32 --- MCL --- 1.41 0.0 558. Plutonium solid 3 {} --- 43 1.10} {Am 3.02 --- 95 243.061375 1945 0.022 0.1 0.11 1.3 2880.0 1268 13.6 17.86 --- --- --- 0.83 0.0 75.3 Americium solid 3 {} --- 42 1.10} {Cm 2.99 --- 96 247.0703 1944 --- 0.1 --- 1.3 --- 1340.0 13.511 18.28 --- --- --- 0.7 0.0 0.0 Curium solid 3 {} --- 41 1.10} {Bk 2.97 --- 97 (247) 1949 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Berkelium solid 3 {} --- 40 1.10} {Cf 2.95 --- 98 (251) 1950 --- 0.1 --- 1.3 --- 900.0 --- --- --- --- --- --- --- --- Californium solid 3 {} --- 39 1.10} {Es 2.92 --- 99 (252) 1952 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Einsteinium solid 3 {} --- 38 1.10} {Fm 2.90 --- 100 257.0951 1953 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Fermium solid 3 {} --- 37 1.10} {Md 2.87 --- 101 (258) 1955 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Mendelevium solid 3 {} --- 36 1.10} {No 2.85 --- 102 (259) 1957 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Nobelium solid 3 {} --- 35 1.10} {Lr 2.82 --- 103 (266) 1961 --- 0.1 --- --- --- --- --- --- --- --- --- --- --- --- Lawrencium solid 3 {} --- 34 1.10} {Rf --- --- 104 261.1087 1964 --- 0.23 --- --- --- --- --- --- --- --- --- --- --- --- Rutherfordium solid ? {} --- 104 1.10} {Db --- --- 105 262.1138 1970 --- 0.58 --- --- --- --- --- --- --- --- --- --- --- --- Dubnium solid ? {} --- 105 1.10} {Sg --- --- 106 263.1182 1974 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Seaborgium solid ? {} --- 106 1.10} {Bh --- --- 107 262.1229 1976 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Bohrium solid ? {} --- 107 1.10} {Hs --- --- 108 (270) 1984 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Hassium solid ? {} --- 108 1.10} {Mt --- --- 109 (268) 1982 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Meitnerium solid ? {} --- 109 1.10} {Ds --- --- 110 (281) 1994 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Darmstadtium solid ? {} --- {} 1.10} {Rg --- --- 111 (280) 1994 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Roentgenium solid ? {} {} {} {}} {Cn --- --- 112 (277) 1996 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Copernicium solid ? {} {} {} {}} {Nh --- --- 113 (287) 2003 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Nihonium solid ? {} {} {} {}} {Fl --- --- 114 (289) 1999 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Flerovium solid ? {} {} {} {}} {Mc --- --- 115 (289) 2004 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Moscovium solid ? {} {} {} {}} {Lv --- --- 116 (293) 2000 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Livermorium solid ? {} {} {} {}} {Ts --- --- 117 (294) 2010 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Tennessine solid ? {} {} {} {}} {Og --- --- 118 (294) 2006 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Oganesson solid ? {} {} {} {}}} } } }