job.id 953 job.name {Structure_OPT_(C129N6O21H85)2 (P1)_BPADAODA_6} job.description { } job.status finished job.submitted {2025-07-15 06:40:28} job.started {2025-07-15 06:40:29} job.finished {2025-07-15 12:16:19} job.queue 18 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-0f9236b0-18ce-4867-bcb0-c6ab71cd9d24 {} ::MD::Stage::Start { Class ::MD::Stage::Start Version 1.2 Id md-stage-start-0f9236b0-18ce-4867-bcb0-c6ab71cd9d24 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-03faac13-e9ec-4e81-9cea-8dbd359a4a80 MD::VASP6api::Batch ::MD::VASP6api::Stage { Base { Class ::MD::VASP6api::Stage Version 1.2 Id md-vasp6api-stage-03faac13-e9ec-4e81-9cea-8dbd359a4a80 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.358 0.358 0.358} 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 {Tetrahedron method} 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 {Structure_OPT_(C129N6O21H85)2 (P1)_BPADAODA_6} tebeg {} teend {} thomasFermi 1.8 thomasFermi_choice {average valence density} thomasFermi_fromDensity 1.8 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-0f9236b0-18ce-4867-bcb0-c6ab71cd9d24,md-vasp6api-stage-03faac13-e9ec-4e81-9cea-8dbd359a4a80 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.0208042543141 0.0895504975325 0.804432964313} Untitled_1::C1 1 1 1 {} H 0.0 {0.0223807044334 0.268932334747 0.733543467501} Untitled_1::H1 2 1 6 {} C 0.0 {0.019918709796 0.16781443095 0.801234388049} Untitled_1::C2 3 1 6 {} C 0.0 {0.0266099023881 0.207074398237 0.734542098338} Untitled_1::C3 4 1 6 {} C 0.0 {0.0332409647869 0.0451421542823 0.740549645482} Untitled_1::C4 5 1 1 {} H 0.0 {0.0326973415531 0.982973727062 0.743732128929} Untitled_1::H3 6 1 6 {} C 0.0 {0.0470424765007 0.0840067937414 0.670607018847} Untitled_1::C5 7 1 6 {} C 0.0 {0.0395378319285 0.165298213373 0.667330404645} Untitled_1::C6 8 1 1 {} H 0.0 {0.0436548983908 0.194642879491 0.612968892167} Untitled_1::H5 9 1 6 {} C 0.0 {0.0104207986054 0.200800414414 0.881371245649} Untitled_1::C7 10 1 6 {} C 0.0 {0.00835759535108 0.0635383210072 0.887210965477} Untitled_1::C8 11 1 7 {} N 0.0 {0.00644053035205 0.13462352712 0.935330559179} Untitled_1::N1 12 1 8 {} O 0.0 {0.0076048395554 0.283636925734 0.902043007701} Untitled_1::O1 13 1 8 {} O 0.0 {0.00313939351024 0.983414794973 0.915060657049} Untitled_1::O2 14 1 8 {} O 0.0 {0.0705716587198 0.0422725042962 0.59989368156} Untitled_1::O3 15 1 6 {} C 0.0 {0.0174801040442 0.980032457218 0.577117108963} Untitled_1::C9 16 1 1 {} H 0.0 {0.0270634766904 0.806303348767 0.491497101726} Untitled_1::H6 17 1 6 {} C 0.0 {0.0487149393388 0.912827649104 0.548087361662} Untitled_1::C10 18 1 1 {} H 0.0 {0.109968902359 0.9030007974 0.552118933145} Untitled_1::H7 19 1 6 {} C 0.0 {0.00219800883368 0.858513722444 0.514069533218} Untitled_1::C11 20 1 6 {} C 0.0 {0.938383758835 0.989788282927 0.579715042393} Untitled_1::C12 21 1 1 {} H 0.0 {0.913759886526 0.0397807531885 0.607529270522} Untitled_1::H9 22 1 6 {} C 0.0 {0.890925539575 0.934642631123 0.546062060126} Untitled_1::C13 23 1 1 {} H 0.0 {0.829061007761 0.940800704212 0.548831732331} Untitled_1::H10 24 1 6 {} C 0.0 {0.923935265952 0.870898393534 0.508963634913} Untitled_1::C14 25 1 6 {} C 0.0 {0.873864238775 0.814644189253 0.463314824223} Untitled_1::C15 26 1 6 {} C 0.0 {0.850496859645 0.854813481908 0.389138348419} Untitled_1::C16 27 1 1 {} H 0.0 {0.697927253117 0.879143058885 0.272224599787} Untitled_1::H11 28 1 6 {} C 0.0 {0.77833388174 0.844113775649 0.358866677891} Untitled_1::C17 29 1 1 {} H 0.0 {0.7396582497 0.803498988572 0.385042943932} Untitled_1::H12 30 1 6 {} C 0.0 {0.755436352619 0.885573032014 0.294244684109} Untitled_1::C18 31 1 6 {} C 0.0 {0.901850109068 0.904211059346 0.353599905766} Untitled_1::C19 32 1 1 {} H 0.0 {0.958773781945 0.9114191482 0.377052297417} Untitled_1::H13 33 1 6 {} C 0.0 {0.880217733804 0.944534090355 0.28834921527} Untitled_1::C20 34 1 1 {} H 0.0 {0.920556758323 0.982747579532 0.260821028956} Untitled_1::H14 35 1 6 {} C 0.0 {0.806777347943 0.935801064482 0.258631863414} Untitled_1::C21 36 1 8 {} O 0.0 {0.782822144175 0.98098648019 0.188928863313} Untitled_1::O4 37 1 6 {} C 0.0 {0.787467583707 0.933331760911 0.116905855624} Untitled_1::C22 38 1 1 {} H 0.0 {0.695144953959 0.909048807102 0.943946348805} Untitled_1::H15 39 1 6 {} C 0.0 {0.732578363429 0.94507089207 0.0571678085925} Untitled_1::C23 40 1 1 {} H 0.0 {0.68884869295 0.988881953808 0.0633187167581} Untitled_1::H16 41 1 6 {} C 0.0 {0.734761573668 0.899127670468 0.990433049929} Untitled_1::C24 42 1 6 {} C 0.0 {0.844366915132 0.875605068635 0.108369173221} Untitled_1::C25 43 1 1 {} H 0.0 {0.888427648026 0.868409064778 0.150736029059} Untitled_1::H17 44 1 6 {} C 0.0 {0.840855216352 0.828893378196 0.0435509723229} Untitled_1::C26 45 1 6 {} C 0.0 {0.788845563935 0.841410529256 0.986429819138} Untitled_1::C27 46 1 6 {} C 0.0 {0.802698144191 0.793825873517 0.51001874526} Untitled_1::C28 47 1 6 {} C 0.0 {0.920533796792 0.741413468243 0.445607576036} Untitled_1::C29 48 1 6 {} C 0.0 {0.890164075482 0.756781461546 0.0236664555273} Untitled_1::C30 49 1 6 {} C 0.0 {0.80017049363 0.781300972689 0.922254120216} Untitled_1::C31 50 1 7 {} N 0.0 {0.863405457672 0.728057304417 0.948271699689} Untitled_1::N2 51 1 1 {} H 0.0 {0.820152238315 0.769855478049 0.564377646018} Untitled_1::H18 52 1 1 {} H 0.0 {0.768693118603 0.752034496049 0.478900067056} Untitled_1::H19 53 1 1 {} H 0.0 {0.768976129335 0.844956560593 0.520267523325} Untitled_1::H20 54 1 1 {} H 0.0 {0.969745922803 0.75574230144 0.410439710798} Untitled_1::H21 55 1 1 {} H 0.0 {0.884568284022 0.70075746474 0.415058819335} Untitled_1::H22 56 1 1 {} H 0.0 {0.939607840856 0.715547502234 0.498665121329} Untitled_1::H23 57 1 8 {} O 0.0 {0.755351918827 0.77561336925 0.849504832793} Untitled_1::O5 58 1 8 {} O 0.0 {0.95233696766 0.721372364252 0.0713586176189} Untitled_1::O6 59 1 6 {} C 0.0 {0.893019784634 0.657310769543 0.907974847565} Untitled_1::C32 60 1 1 {} H 0.0 {0.87608167443 0.561420330162 0.740861536952} Untitled_1::H24 61 1 6 {} C 0.0 {0.867882176794 0.639644654992 0.835041709686} Untitled_1::C33 62 1 1 {} H 0.0 {0.827149869201 0.676604311111 0.806634403945} Untitled_1::H25 63 1 6 {} C 0.0 {0.894916677392 0.57439947734 0.798164943633} Untitled_1::C34 64 1 6 {} C 0.0 {0.945898810618 0.609655819399 0.944750980879} Untitled_1::C35 65 1 1 {} H 0.0 {0.966879486883 0.62432626629 0.00140659084667} Untitled_1::H26 66 1 6 {} C 0.0 {0.971788021038 0.54331349321 0.908510018176} Untitled_1::C36 67 1 1 {} H 0.0 {0.0112580139902 0.505374463351 0.93785807861} Untitled_1::H27 68 1 6 {} C 0.0 {0.946383658314 0.525890938698 0.83462961923} Untitled_1::C37 69 1 8 {} O 0.0 {0.974839379268 0.455281721614 0.793965491874} Untitled_1::O7 70 1 6 {} C 0.0 {0.92668431664 0.386841636658 0.814733757894} Untitled_1::C38 71 1 1 {} H 0.0 {0.822997236504 0.315565224576 0.96247900942} Untitled_1::H28 72 1 6 {} C 0.0 {0.892697529965 0.38262158349 0.886294033637} Untitled_1::C39 73 1 1 {} H 0.0 {0.900158411033 0.428793440286 0.926670161533} Untitled_1::H29 74 1 6 {} C 0.0 {0.848994505172 0.318768005831 0.906300186669} Untitled_1::C40 75 1 6 {} C 0.0 {0.916677668755 0.326921780211 0.762233393231} Untitled_1::C41 76 1 1 {} H 0.0 {0.942940038696 0.330044317469 0.706078398467} Untitled_1::H30 77 1 6 {} C 0.0 {0.872839302984 0.262974614929 0.782408511439} Untitled_1::C42 78 1 1 {} H 0.0 {0.865314610311 0.216199024209 0.742024411752} Untitled_1::H31 79 1 6 {} C 0.0 {0.838823048809 0.259296366913 0.854325418164} Untitled_1::C43 80 1 6 {} C 0.0 {0.169145312547 0.0936955249567 0.959235793231} Untitled_2::C1 81 1 1 {} H 0.0 {0.220064406561 0.18451316229 0.122636582831} Untitled_2::H1 82 1 6 {} C 0.0 {0.174528632673 0.111031314328 0.0356694547317} Untitled_2::C2 83 1 6 {} C 0.0 {0.218534557343 0.170250020829 0.0622483372984} Untitled_2::C3 84 1 6 {} C 0.0 {0.208420038629 0.134302973948 0.904240256384} Untitled_2::C4 85 1 1 {} H 0.0 {0.201138369103 0.122035747399 0.843821025931} Untitled_2::H3 86 1 6 {} C 0.0 {0.258666399497 0.192794900374 0.929867263061} Untitled_2::C5 87 1 6 {} C 0.0 {0.261748500622 0.212103677563 0.00885065711622} Untitled_2::C6 88 1 1 {} H 0.0 {0.297478497645 0.25914010735 0.0277265124307} Untitled_2::H5 89 1 6 {} C 0.0 {0.12535122949 0.0552196759952 0.0823273106985} Untitled_2::C7 90 1 6 {} C 0.0 {0.115762432277 0.0250041668327 0.948206950835} Untitled_2::C8 91 1 7 {} N 0.0 {0.0899054875181 0.000668469170173 0.0271125120378} Untitled_2::N1 92 1 8 {} O 0.0 {0.114993630671 0.0549842653567 0.167214546756} Untitled_2::O1 93 1 8 {} O 0.0 {0.0948062924707 0.988588219245 0.873571725631} Untitled_2::O2 94 1 8 {} O 0.0 {0.308475215019 0.234356099312 0.875267791148} Untitled_2::O3 95 1 6 {} C 0.0 {0.262725257899 0.271898648178 0.815656286879} Untitled_2::C9 96 1 1 {} H 0.0 {0.156258599953 0.228212060687 0.660412492748} Untitled_2::H6 97 1 6 {} C 0.0 {0.223380949328 0.227837243219 0.762611392306} Untitled_2::C10 98 1 1 {} H 0.0 {0.221399516353 0.16608588987 0.768749830838} Untitled_2::H7 99 1 6 {} C 0.0 {0.186531506585 0.262678099833 0.702104261184} Untitled_2::C11 100 1 6 {} C 0.0 {0.26131924163 0.351391962046 0.811079487262} Untitled_2::C12 101 1 1 {} H 0.0 {0.288762065792 0.385755950143 0.855368863906} Untitled_2::H9 102 1 6 {} C 0.0 {0.224452232342 0.386716108722 0.750006431002} Untitled_2::C13 103 1 1 {} H 0.0 {0.223897499818 0.448865236388 0.74534163307} Untitled_2::H10 104 1 6 {} C 0.0 {0.188178672335 0.341568949277 0.694552629606} Untitled_2::C14 105 1 6 {} C 0.0 {0.149369831325 0.37783839012 0.625793607033} Untitled_2::C15 106 1 6 {} C 0.0 {0.193781602689 0.354668401283 0.552003603767} Untitled_2::C16 107 1 1 {} H 0.0 {0.287658485874 0.434895555527 0.401705148911} Untitled_2::H11 108 1 6 {} C 0.0 {0.223845388807 0.41099738238 0.504397813506} Untitled_2::C17 109 1 1 {} H 0.0 {0.214121388586 0.470505083097 0.517365190992} Untitled_2::H12 110 1 6 {} C 0.0 {0.26664898581 0.390844262817 0.439900971491} Untitled_2::C18 111 1 6 {} C 0.0 {0.205172012428 0.277551220285 0.533891275369} Untitled_2::C19 112 1 1 {} H 0.0 {0.178614361562 0.233446048623 0.568334456959} Untitled_2::H13 113 1 6 {} C 0.0 {0.250476792554 0.257374578778 0.470612140082} Untitled_2::C20 114 1 1 {} H 0.0 {0.26132605526 0.197528749696 0.457995689057} Untitled_2::H14 115 1 6 {} C 0.0 {0.281609384315 0.314187130967 0.424094992074} Untitled_2::C21 116 1 8 {} O 0.0 {0.330202424802 0.29293222967 0.356353945466} Untitled_2::O4 117 1 6 {} C 0.0 {0.411797215985 0.281855665538 0.380189963263} Untitled_2::C22 118 1 1 {} H 0.0 {0.530655886002 0.295311920373 0.536714739187} Untitled_2::H15 119 1 6 {} C 0.0 {0.434459412035 0.294231213528 0.457666687217} Untitled_2::C23 120 1 1 {} H 0.0 {0.392338990511 0.309829342769 0.500320979392} Untitled_2::H16 121 1 6 {} C 0.0 {0.512013548284 0.285889526744 0.478376202914} Untitled_2::C24 122 1 6 {} C 0.0 {0.466961199751 0.259493911896 0.325503497215} Untitled_2::C25 123 1 1 {} H 0.0 {0.451172007735 0.249348673174 0.266519873192} Untitled_2::H17 124 1 6 {} C 0.0 {0.540718827214 0.251311220814 0.348991735618} Untitled_2::C26 125 1 6 {} C 0.0 {0.563011337376 0.26539679491 0.422250077942} Untitled_2::C27 126 1 6 {} C 0.0 {0.149654647773 0.465843243685 0.634367363129} Untitled_2::C28 127 1 6 {} C 0.0 {0.0664547231823 0.347809788983 0.622040570809} Untitled_2::C29 128 1 6 {} C 0.0 {0.609744550021 0.227546130561 0.300703643815} Untitled_2::C30 129 1 6 {} C 0.0 {0.649790969377 0.254329626541 0.42924732349} Untitled_2::C31 130 1 7 {} N 0.0 {0.678596558604 0.230891511308 0.351332220402} Untitled_2::N2 131 1 1 {} H 0.0 {0.118420755777 0.481997937412 0.68560414637} Untitled_2::H18 132 1 1 {} H 0.0 {0.1226725344 0.491534538779 0.584785651493} Untitled_2::H19 133 1 1 {} H 0.0 {0.20833163349 0.486138674927 0.638441627573} Untitled_2::H20 134 1 1 {} H 0.0 {0.0669136662865 0.286068541932 0.615769904548} Untitled_2::H21 135 1 1 {} H 0.0 {0.0376260345495 0.372524712075 0.574698651723} Untitled_2::H22 136 1 1 {} H 0.0 {0.0365573998152 0.362998829986 0.674323490921} Untitled_2::H23 137 1 8 {} O 0.0 {0.69608721973 0.265723628059 0.499476512574} Untitled_2::O5 138 1 8 {} O 0.0 {0.608485476674 0.206217098294 0.218368483741} Untitled_2::O6 139 1 6 {} C 0.0 {0.761266992602 0.214868670152 0.327731865076} Untitled_2::C32 140 1 1 {} H 0.0 {0.86694041416 0.158585857435 0.17395858205} Untitled_2::H24 141 1 6 {} C 0.0 {0.778551340616 0.1948158722 0.252113792966} Untitled_2::C33 142 1 1 {} H 0.0 {0.733916207094 0.194647563527 0.209019948285} Untitled_2::H25 143 1 6 {} C 0.0 {0.853594266478 0.176042104465 0.23194253696} Untitled_2::C34 144 1 6 {} C 0.0 {0.819858318671 0.219899600524 0.38122169259} Untitled_2::C35 145 1 1 {} H 0.0 {0.807308039671 0.237096303037 0.439193009258} Untitled_2::H26 146 1 6 {} C 0.0 {0.895014240406 0.202937141276 0.359789800678} Untitled_2::C36 147 1 1 {} H 0.0 {0.940513716701 0.208496265894 0.40034515832} Untitled_2::H27 148 1 6 {} C 0.0 {0.911225066396 0.179651942383 0.286034143068} Untitled_2::C37 149 1 8 {} O 0.0 {0.990911468535 0.159138796684 0.264545508659} Untitled_2::O7 150 1 6 {} C 0.0 {0.996063271908 0.152528229722 0.179596874436} Untitled_2::C38 151 1 1 {} H 0.0 {0.991214517707 0.0188249540279 0.0381201241537} Untitled_2::H28 152 1 6 {} C 0.0 {0.989411493071 0.0812058721339 0.145055101404} Untitled_2::C39 153 1 1 {} H 0.0 {0.980332861211 0.0311630761826 0.179838709077} Untitled_2::H29 154 1 6 {} C 0.0 {0.994363561398 0.0746693024168 0.0653106289402} Untitled_2::C40 155 1 6 {} C 0.0 {0.00771709090179 0.217526257637 0.134803771768} Untitled_2::C41 156 1 1 {} H 0.0 {0.0127942166209 0.273608269948 0.161582935115} Untitled_2::H30 157 1 6 {} C 0.0 {0.0127547742391 0.210366055433 0.0553570241242} Untitled_2::C42 158 1 1 {} H 0.0 {0.0246064684624 0.259760399071 0.0203375721246} Untitled_2::H31 159 1 6 {} C 0.0 {0.0040791300038 0.139756328759 0.0210287943224} Untitled_2::C43 160 1 6 {} C 0.0 {0.0873457212498 0.399242850123 0.0900416358318} Untitled_3::C1 161 1 1 {} H 0.0 {0.0931357654424 0.283068350164 0.93565829271} Untitled_3::H1 162 1 6 {} C 0.0 {0.0638058675861 0.349220168985 0.0344273655068} Untitled_3::C2 163 1 6 {} C 0.0 {0.110434787031 0.327184684631 0.975724419046} Untitled_3::C3 164 1 6 {} C 0.0 {0.155963945956 0.435941737432 0.0867456106582} Untitled_3::C4 165 1 1 {} H 0.0 {0.173853274927 0.474831763487 0.131951420881} Untitled_3::H3 166 1 6 {} C 0.0 {0.202706835338 0.421693778555 0.0231175449737} Untitled_3::C5 167 1 6 {} C 0.0 {0.181864013856 0.363525139198 0.969252024649} Untitled_3::C6 168 1 1 {} H 0.0 {0.221061369815 0.347357110202 0.924046459949} Untitled_3::H5 169 1 6 {} C 0.0 {0.981957209879 0.322766399657 0.0515002693804} Untitled_3::C7 170 1 6 {} C 0.0 {0.0258049628828 0.40610106666 0.15114923563} Untitled_3::C8 171 1 7 {} N 0.0 {0.959748264066 0.358151614129 0.125201576481} Untitled_3::N1 172 1 8 {} O 0.0 {0.934184636146 0.269800019991 0.00385528648552} Untitled_3::O1 173 1 8 {} O 0.0 {0.0303777897076 0.452353713483 0.222990371403} Untitled_3::O2 174 1 8 {} O 0.0 {0.272924133477 0.467040819317 0.0114612740368} Untitled_3::O3 175 1 6 {} C 0.0 {0.250435920002 0.530731690583 0.959513937464} Untitled_3::C9 176 1 1 {} H 0.0 {0.106556356309 0.659662327419 0.936876049701} Untitled_3::H6 177 1 6 {} C 0.0 {0.183722703687 0.571634970015 0.974899690871} Untitled_3::C10 178 1 1 {} H 0.0 {0.151392123382 0.559625419491 0.02673041297} Untitled_3::H7 179 1 6 {} C 0.0 {0.158194276438 0.627700480916 0.924058297269} Untitled_3::C11 180 1 6 {} C 0.0 {0.293481224115 0.54732695588 0.8948861611} Untitled_3::C12 181 1 1 {} H 0.0 {0.346499027823 0.516973820247 0.884600997317} Untitled_3::H9 182 1 6 {} C 0.0 {0.26835093752 0.603230035028 0.843028691666} Untitled_3::C13 183 1 1 {} H 0.0 {0.302122059895 0.615960537419 0.792480235273} Untitled_3::H10 184 1 6 {} C 0.0 {0.199375263483 0.64274608794 0.856764225202} Untitled_3::C14 185 1 6 {} C 0.0 {0.16922263586 0.703671011338 0.798490107979} Untitled_3::C15 186 1 6 {} C 0.0 {0.200340390896 0.782671028198 0.820600573384} Untitled_3::C16 187 1 1 {} H 0.0 {0.15102311766 0.938794131451 0.922999007265} Untitled_3::H11 188 1 6 {} C 0.0 {0.155250311158 0.832653136763 0.862618018284} Untitled_3::C17 189 1 1 {} H 0.0 {0.0967278710268 0.817765450979 0.876182922859} Untitled_3::H12 190 1 6 {} C 0.0 {0.184698781497 0.902162126082 0.886495422031} Untitled_3::C18 191 1 6 {} C 0.0 {0.274570442567 0.804067885771 0.799538380587} Untitled_3::C19 192 1 1 {} H 0.0 {0.309798300506 0.765375506508 0.766009319682} Untitled_3::H13 193 1 6 {} C 0.0 {0.303077907435 0.875088781275 0.821587893242} Untitled_3::C20 194 1 1 {} H 0.0 {0.360529319008 0.892003561124 0.805466977657} Untitled_3::H14 195 1 6 {} C 0.0 {0.257523327928 0.924367074668 0.864603672694} Untitled_3::C21 196 1 8 {} O 0.0 {0.286409357404 0.00107495373834 0.887376362506} Untitled_3::O4 197 1 6 {} C 0.0 {0.356258703666 0.994407115694 0.935088194554} Untitled_3::C22 198 1 1 {} H 0.0 {0.474015142824 0.104991116857 0.0477159763878} Untitled_3::H15 199 1 6 {} C 0.0 {0.382896922368 0.059233521249 0.97614987009} Untitled_3::C23 200 1 1 {} H 0.0 {0.349989263248 0.111041471205 0.975963018292} Untitled_3::H16 201 1 6 {} C 0.0 {0.451485468176 0.0551621136309 0.0182044987966} Untitled_3::C24 202 1 6 {} C 0.0 {0.396546307878 0.925271540172 0.939472288559} Untitled_3::C25 203 1 1 {} H 0.0 {0.377349425336 0.874987760904 0.908578043308} Untitled_3::H17 204 1 6 {} C 0.0 {0.461266898472 0.923458976786 0.983972089933} Untitled_3::C26 205 1 6 {} C 0.0 {0.488645709569 0.986770679208 0.0203778115519} Untitled_3::C27 206 1 6 {} C 0.0 {0.081385063189 0.705316777335 0.799007173341} Untitled_3::C28 207 1 6 {} C 0.0 {0.195099074474 0.684417355724 0.717650392831} Untitled_3::C29 208 1 6 {} C 0.0 {0.513674913073 0.855707050097 0.99943626169} Untitled_3::C30 209 1 6 {} C 0.0 {0.563740594779 0.967386792219 0.0615351239212} Untitled_3::C31 210 1 7 {} N 0.0 {0.581270861296 0.885341393401 0.0448049916865} Untitled_3::N2 211 1 1 {} H 0.0 {0.059628019131 0.649807182243 0.781401852133} Untitled_3::H18 212 1 1 {} H 0.0 {0.0613603565027 0.748770120702 0.759226627979} Untitled_3::H19 213 1 1 {} H 0.0 {0.061037832666 0.718540483375 0.855850944129} Untitled_3::H20 214 1 1 {} H 0.0 {0.25673103324 0.682276066842 0.715694358218} Untitled_3::H21 215 1 1 {} H 0.0 {0.174453150986 0.728264810876 0.678618739701} Untitled_3::H22 216 1 1 {} H 0.0 {0.171774443666 0.629344654015 0.70121913613} Untitled_3::H23 217 1 8 {} O 0.0 {0.611415285164 0.0207735433122 0.107602334146} Untitled_3::O5 218 1 8 {} O 0.0 {0.500182735688 0.776256734298 0.974244902936} Untitled_3::O6 219 1 6 {} C 0.0 {0.655438667822 0.843185262129 0.0673970644708} Untitled_3::C32 220 1 1 {} H 0.0 {0.77142431743 0.693910649317 0.0174347215163} Untitled_3::H24 221 1 6 {} C 0.0 {0.679999248326 0.776078114673 0.029597646889} Untitled_3::C33 222 1 1 {} H 0.0 {0.643858330433 0.748109032404 0.987972589246} Untitled_3::H25 223 1 6 {} C 0.0 {0.752163241749 0.745475657252 0.0461368270046} Untitled_3::C34 224 1 6 {} C 0.0 {0.700593260253 0.874618733464 0.124249064203} Untitled_3::C35 225 1 1 {} H 0.0 {0.680802550868 0.924916233375 0.154803306417} Untitled_3::H26 226 1 6 {} C 0.0 {0.771048406657 0.842248349252 0.142187464355} Untitled_3::C36 227 1 1 {} H 0.0 {0.804045678747 0.864424253168 0.189840105934} Untitled_3::H27 228 1 6 {} C 0.0 {0.799097050156 0.781129532784 0.099573184541} Untitled_3::C37 229 1 8 {} O 0.0 {0.880208068862 0.753649799508 0.111891418546} Untitled_3::O7 230 1 6 {} C 0.0 {0.937975875013 0.816494859868 0.0883563391172} Untitled_3::C38 231 1 1 {} H 0.0 {0.021587266404 0.899363459581 0.931882389215} Untitled_3::H28 232 1 6 {} C 0.0 {0.955148438571 0.831725200021 0.0100305713233} Untitled_3::C39 233 1 1 {} H 0.0 {0.928674445048 0.798924120506 0.964753547748} Untitled_3::H29 234 1 6 {} C 0.0 {0.00641763378162 0.889706831794 0.991098211011} Untitled_3::C40 235 1 6 {} C 0.0 {0.973965171308 0.859710298532 0.144804353251} Untitled_3::C41 236 1 1 {} H 0.0 {0.963284305383 0.847429646018 0.204641489728} Untitled_3::H30 237 1 6 {} C 0.0 {0.0237824194746 0.918740646597 0.124547829661} Untitled_3::C42 238 1 1 {} H 0.0 {0.0512886516159 0.952527956182 0.168777904606} Untitled_3::H31 239 1 6 {} C 0.0 {0.0384777651434 0.934487424986 0.0477713953641} Untitled_3::C43 240 1 6 {} C 0.0 {0.935154006382 0.314561359439 0.505571207429} Untitled_4::C1 241 1 1 {} H 0.0 {0.115971035864 0.265667450185 0.458629619044} Untitled_4::H1 242 1 6 {} C 0.0 {0.996667883154 0.270598624566 0.485630162257} Untitled_4::C2 243 1 6 {} C 0.0 {0.0682522058199 0.300820516254 0.477083537814} Untitled_4::C3 244 1 6 {} C 0.0 {0.940943604389 0.390097898679 0.521627930192} Untitled_4::C4 245 1 1 {} H 0.0 {0.890967995804 0.423034427272 0.538290589796} Untitled_4::H3 246 1 6 {} C 0.0 {0.0131142237437 0.424138326256 0.516450467236} Untitled_4::C5 247 1 6 {} C 0.0 {0.0776603250257 0.379411934532 0.492766894864} Untitled_4::C6 248 1 1 {} H 0.0 {0.13309111165 0.40579609674 0.48704492237} Untitled_4::H5 249 1 6 {} C 0.0 {0.970642152139 0.187556086113 0.474278212228} Untitled_4::C7 250 1 6 {} C 0.0 {0.86345592827 0.266429136338 0.506874846066} Untitled_4::C8 251 1 7 {} N 0.0 {0.885642391919 0.187196837539 0.486760912798} Untitled_4::N1 252 1 8 {} O 0.0 {0.0197021877904 0.120913943118 0.453500152412} Untitled_4::O1 253 1 8 {} O 0.0 {0.785018453583 0.293548141044 0.52491509175} Untitled_4::O2 254 1 8 {} O 0.0 {0.0225895047997 0.50576792161 0.535469527809} Untitled_4::O3 255 1 6 {} C 0.0 {0.00142323763767 0.551315973166 0.468293096507} Untitled_4::C9 256 1 1 {} H 0.0 {0.876224403322 0.551320502693 0.320433840177} Untitled_4::H6 257 1 6 {} C 0.0 {0.941941573797 0.526962949784 0.420997881998} Untitled_4::C10 258 1 1 {} H 0.0 {0.910682693979 0.474877714969 0.434330787217} Untitled_4::H7 259 1 6 {} C 0.0 {0.923223972871 0.569152576633 0.357143186839} Untitled_4::C11 260 1 6 {} C 0.0 {0.0410342714183 0.617984452998 0.451856181399} Untitled_4::C12 261 1 1 {} H 0.0 {0.0867686889347 0.63724846476 0.489170099255} Untitled_4::H9 262 1 6 {} C 0.0 {0.022314813314 0.659667685559 0.387907822058} Untitled_4::C13 263 1 1 {} H 0.0 {0.0527743234337 0.712237328405 0.374974350952} Untitled_4::H10 264 1 6 {} C 0.0 {0.964509176123 0.634803298394 0.340183871827} Untitled_4::C14 265 1 6 {} C 0.0 {0.946897857637 0.679659460445 0.269875668363} Untitled_4::C15 266 1 6 {} C 0.0 {0.0228478847591 0.706373290964 0.235822618456} Untitled_4::C16 267 1 1 {} H 0.0 {0.165984570736 0.648987200286 0.116578423054} Untitled_4::H11 268 1 6 {} C 0.0 {0.0638010586701 0.659526570729 0.185247062956} Untitled_4::C17 269 1 1 {} H 0.0 {0.0412083363918 0.60374921883 0.168676238767} Untitled_4::H12 270 1 6 {} C 0.0 {0.134118555624 0.68452483862 0.156620394908} Untitled_4::C18 271 1 6 {} C 0.0 {0.0517766948221 0.777499833807 0.256814344083} Untitled_4::C19 272 1 1 {} H 0.0 {0.0195454895633 0.813766034178 0.295482592826} Untitled_4::H13 273 1 6 {} C 0.0 {0.121738320541 0.802051075514 0.228879722007} Untitled_4::C20 274 1 1 {} H 0.0 {0.143888848413 0.85756527142 0.245657819491} Untitled_4::H14 275 1 6 {} C 0.0 {0.163498516643 0.755757227354 0.179599657037} Untitled_4::C21 276 1 8 {} O 0.0 {0.239948259005 0.781638093675 0.152129298762} Untitled_4::O4 277 1 6 {} C 0.0 {0.297941582271 0.74198190886 0.199439103319} Untitled_4::C22 278 1 1 {} H 0.0 {0.35126797833 0.719386289558 0.388276734756} Untitled_4::H15 279 1 6 {} C 0.0 {0.301563683005 0.756576410777 0.280089176602} Untitled_4::C23 280 1 1 {} H 0.0 {0.268186169717 0.802802402952 0.305083489768} Untitled_4::H16 281 1 6 {} C 0.0 {0.349113123951 0.711007163637 0.326678008293} Untitled_4::C24 282 1 6 {} C 0.0 {0.346243008724 0.686925805441 0.166282039083} Untitled_4::C25 283 1 1 {} H 0.0 {0.34797356456 0.67864847935 0.104844000508} Untitled_4::H17 284 1 6 {} C 0.0 {0.391166876722 0.644368241021 0.213861197096} Untitled_4::C26 285 1 6 {} C 0.0 {0.39219094881 0.655169145222 0.291407746537} Untitled_4::C27 286 1 6 {} C 0.0 {0.898668459512 0.75004347316 0.292274829204} Untitled_4::C28 287 1 6 {} C 0.0 {0.903847387045 0.628281559838 0.212946450938} Untitled_4::C29 288 1 6 {} C 0.0 {0.445497921465 0.578972239067 0.192141060687} Untitled_4::C30 289 1 6 {} C 0.0 {0.446786361824 0.59701506376 0.32818912869} Untitled_4::C31 290 1 7 {} N 0.0 {0.477769517815 0.548229753526 0.26455853916} Untitled_4::N2 291 1 1 {} H 0.0 {0.845727930378 0.731472914965 0.318720653177} Untitled_4::H18 292 1 1 {} H 0.0 {0.886089644043 0.783732353258 0.241919691555} Untitled_4::H19 293 1 1 {} H 0.0 {0.930780896237 0.784919326617 0.332819789874} Untitled_4::H20 294 1 1 {} H 0.0 {0.938833596021 0.578465904305 0.199590662403} Untitled_4::H21 295 1 1 {} H 0.0 {0.892048265672 0.659711109571 0.160882220077} Untitled_4::H22 296 1 1 {} H 0.0 {0.850530901863 0.609347866718 0.238516832303} Untitled_4::H23 297 1 8 {} O 0.0 {0.465103316806 0.589765556431 0.41113079082} Untitled_4::O5 298 1 8 {} O 0.0 {0.462105341147 0.550580076096 0.113588713714} Untitled_4::O6 299 1 6 {} C 0.0 {0.531202614686 0.481404241266 0.272295111826} Untitled_4::C32 300 1 1 {} H 0.0 {0.626252091314 0.350224785492 0.165042938666} Untitled_4::H24 301 1 6 {} C 0.0 {0.556830109366 0.442309307085 0.207052232165} Untitled_4::C33 302 1 1 {} H 0.0 {0.537643156877 0.459609965238 0.150441361243} Untitled_4::H25 303 1 6 {} C 0.0 {0.606775359065 0.381748028601 0.215082613903} Untitled_4::C34 304 1 6 {} C 0.0 {0.555315248601 0.458629197136 0.344394879145} Untitled_4::C35 305 1 1 {} H 0.0 {0.534525457383 0.487795743223 0.394877963849} Untitled_4::H26 306 1 6 {} C 0.0 {0.605860747915 0.398497768432 0.35174087293} Untitled_4::C36 307 1 1 {} H 0.0 {0.625000911386 0.380862589778 0.408083763496} Untitled_4::H27 308 1 6 {} C 0.0 {0.632154722401 0.360847075252 0.287169106215} Untitled_4::C37 309 1 8 {} O 0.0 {0.687283487556 0.298705129654 0.294523317747} Untitled_4::O7 310 1 6 {} C 0.0 {0.755043686774 0.318488953736 0.248159147498} Untitled_4::C38 311 1 1 {} H 0.0 {0.920412296141 0.418515819774 0.25940265153} Untitled_4::H28 312 1 6 {} C 0.0 {0.811589436424 0.365707274479 0.278548381154} Untitled_4::C39 313 1 1 {} H 0.0 {0.804619621965 0.390863455606 0.334989411766} Untitled_4::H29 314 1 6 {} C 0.0 {0.876886477916 0.380585446176 0.236740589407} Untitled_4::C40 315 1 6 {} C 0.0 {0.762630069644 0.289277101342 0.174252921349} Untitled_4::C41 316 1 1 {} H 0.0 {0.716854629486 0.255379570767 0.149327697944} Untitled_4::H30 317 1 6 {} C 0.0 {0.828548869367 0.303955388592 0.132944359865} Untitled_4::C42 318 1 1 {} H 0.0 {0.834908829732 0.281973529768 0.0747606767939} Untitled_4::H31 319 1 6 {} C 0.0 {0.886664048954 0.347388688909 0.16590959605} Untitled_4::C43 320 1 6 {} C 0.0 {0.403700667264 0.588477533408 0.766357045117} Untitled_5::C1 321 1 1 {} H 0.0 {0.381430594046 0.725079182875 0.63063805705} Untitled_5::H1 322 1 6 {} C 0.0 {0.410185087125 0.657164778442 0.729074539019} Untitled_5::C2 323 1 6 {} C 0.0 {0.379221368344 0.66917597155 0.657749489074} Untitled_5::C3 324 1 6 {} C 0.0 {0.370328289102 0.525777855856 0.733160768395} Untitled_5::C4 325 1 1 {} H 0.0 {0.365605038425 0.47205897881 0.763852916622} Untitled_5::H3 326 1 6 {} C 0.0 {0.342193140193 0.533260522752 0.657881671648} Untitled_5::C5 327 1 6 {} C 0.0 {0.344122086933 0.606414287113 0.620860298569} Untitled_5::C6 328 1 1 {} H 0.0 {0.318351251264 0.613635032077 0.564954157746} Untitled_5::H5 329 1 6 {} C 0.0 {0.454273540659 0.714299167807 0.779568957839} Untitled_5::C7 330 1 6 {} C 0.0 {0.439232549039 0.594616454318 0.84646219905} Untitled_5::C8 331 1 7 {} N 0.0 {0.472095512983 0.674165467314 0.853255422476} Untitled_5::N1 332 1 8 {} O 0.0 {0.474417765766 0.795038559876 0.759713088237} Untitled_5::O1 333 1 8 {} O 0.0 {0.441504730283 0.532837121779 0.905722113451} Untitled_5::O2 334 1 8 {} O 0.0 {0.310011909432 0.465114654801 0.617411281008} Untitled_5::O3 335 1 6 {} C 0.0 {0.355038044401 0.395424279223 0.639676757366} Untitled_5::C9 336 1 1 {} H 0.0 {0.508061074281 0.342878069859 0.746094942118} Untitled_5::H6 337 1 6 {} C 0.0 {0.418849470895 0.402551460289 0.686045652796} Untitled_5::C10 338 1 1 {} H 0.0 {0.438550766346 0.458521208318 0.702791096684} Untitled_5::H7 339 1 6 {} C 0.0 {0.457443883386 0.337392720498 0.711042617256} Untitled_5::C11 340 1 6 {} C 0.0 {0.331983316954 0.323607771288 0.615383678738} Untitled_5::C12 341 1 1 {} H 0.0 {0.285538592769 0.3181221653 0.575597410419} Untitled_5::H9 342 1 6 {} C 0.0 {0.369194922585 0.258716529007 0.641894449824} Untitled_5::C13 343 1 1 {} H 0.0 {0.349659487535 0.202709483097 0.624699438298} Untitled_5::H10 344 1 6 {} C 0.0 {0.430845877928 0.265423111792 0.690510078964} Untitled_5::C14 345 1 6 {} C 0.0 {0.468980420793 0.193163005924 0.721661437954} Untitled_5::C15 346 1 6 {} C 0.0 {0.417208470994 0.161103283118 0.785586025566} Untitled_5::C16 347 1 1 {} H 0.0 {0.369602585141 0.191561909467 0.972751663819} Untitled_5::H11 348 1 6 {} C 0.0 {0.419555490492 0.192445096684 0.859880981152} Untitled_5::C17 349 1 1 {} H 0.0 {0.461010024198 0.236314062686 0.874122674872} Untitled_5::H12 350 1 6 {} C 0.0 {0.368317351827 0.167028846571 0.915401491221} Untitled_5::C18 351 1 6 {} C 0.0 {0.366155414889 0.102498530747 0.76892050655} Untitled_5::C19 352 1 1 {} H 0.0 {0.366420390689 0.0762511263002 0.712434660245} Untitled_5::H13 353 1 6 {} C 0.0 {0.314774315182 0.0774082263967 0.824316169651} Untitled_5::C20 354 1 1 {} H 0.0 {0.274143325055 0.0325790105524 0.810504896538} Untitled_5::H14 355 1 6 {} C 0.0 {0.315157450697 0.110371634173 0.897505497857} Untitled_5::C21 356 1 8 {} O 0.0 {0.257351358624 0.0855056246745 0.95620215214} Untitled_5::O4 357 1 6 {} C 0.0 {0.291822184463 0.043451097075 0.0220011666492} Untitled_5::C22 358 1 1 {} H 0.0 {0.263033890462 0.879109566775 0.126393561965} Untitled_5::H15 359 1 6 {} C 0.0 {0.259566393945 0.971868754376 0.0439314729574} Untitled_5::C23 360 1 1 {} H 0.0 {0.213371339359 0.947264114129 0.0106344976411} Untitled_5::H16 361 1 6 {} C 0.0 {0.287567814284 0.933245536807 0.108567199162} Untitled_5::C24 362 1 6 {} C 0.0 {0.354066651049 0.0743136316595 0.0640345667099} Untitled_5::C25 363 1 1 {} H 0.0 {0.380267553055 0.128284494553 0.0479378397665} Untitled_5::H17 364 1 6 {} C 0.0 {0.379930454631 0.0336725513632 0.126105522711} Untitled_5::C26 365 1 6 {} C 0.0 {0.346952115195 0.96599138284 0.148250516407} Untitled_5::C27 366 1 6 {} C 0.0 {0.547847014471 0.212285856273 0.75481376879} Untitled_5::C28 367 1 6 {} C 0.0 {0.476836693932 0.13244558193 0.656958985639} Untitled_5::C29 368 1 6 {} C 0.0 {0.446596110213 0.0534357202264 0.180422103254} Untitled_5::C30 369 1 6 {} C 0.0 {0.387263262915 0.935499683608 0.219945996598} Untitled_5::C31 370 1 7 {} N 0.0 {0.451024384683 0.989989855088 0.238075625857} Untitled_5::N2 371 1 1 {} H 0.0 {0.584881826579 0.233279901249 0.709572375199} Untitled_5::H18 372 1 1 {} H 0.0 {0.572568406521 0.161262828373 0.779733382892} Untitled_5::H19 373 1 1 {} H 0.0 {0.541893518426 0.255765344815 0.798832709607} Untitled_5::H20 374 1 1 {} H 0.0 {0.420911294593 0.121498633457 0.631958010027} Untitled_5::H21 375 1 1 {} H 0.0 {0.499582676652 0.0795738917914 0.680283812269} Untitled_5::H22 376 1 1 {} H 0.0 {0.514826859106 0.153889810616 0.612562034728} Untitled_5::H23 377 1 8 {} O 0.0 {0.368034307399 0.863845463629 0.262789695323} Untitled_5::O5 378 1 8 {} O 0.0 {0.497598788864 0.122045299168 0.176084552542} Untitled_5::O6 379 1 6 {} C 0.0 {0.508959099797 0.979672709813 0.300575176} Untitled_5::C32 380 1 1 {} H 0.0 {0.544430450393 0.860498008265 0.448676622059} Untitled_5::H24 381 1 6 {} C 0.0 {0.498955108595 0.920381311815 0.351958540651} Untitled_5::C33 382 1 1 {} H 0.0 {0.448480937295 0.884760992028 0.348128444707} Untitled_5::H25 383 1 6 {} C 0.0 {0.55301057684 0.906572762411 0.408034309882} Untitled_5::C34 384 1 6 {} C 0.0 {0.572389484947 0.0277560008895 0.306576791953} Untitled_5::C35 385 1 1 {} H 0.0 {0.578971630508 0.0760769451929 0.268011894552} Untitled_5::H26 386 1 6 {} C 0.0 {0.627460948896 0.0132965483694 0.362464991862} Untitled_5::C36 387 1 1 {} H 0.0 {0.677675914305 0.0496744971816 0.367010022551} Untitled_5::H27 388 1 6 {} C 0.0 {0.618046036741 0.951766848437 0.412406069641} Untitled_5::C37 389 1 8 {} O 0.0 {0.677457943685 0.934965272102 0.47053233745} Untitled_5::O7 390 1 6 {} C 0.0 {0.731484813085 0.9997942198 0.472740191903} Untitled_5::C38 391 1 1 {} H 0.0 {0.920621538478 0.0399877925518 0.457131082456} Untitled_5::H28 392 1 6 {} C 0.0 {0.809383389566 0.987927153697 0.460911121924} Untitled_5::C39 393 1 1 {} H 0.0 {0.83040744047 0.93148928283 0.447970057002} Untitled_5::H29 394 1 6 {} C 0.0 {0.859913265915 0.0489324104502 0.465495735587} Untitled_5::C40 395 1 6 {} C 0.0 {0.704369761136 0.072071174172 0.486945526622} Untitled_5::C41 396 1 1 {} H 0.0 {0.643416849114 0.0813067271941 0.494457744263} Untitled_5::H30 397 1 6 {} C 0.0 {0.754506783982 0.132671746301 0.491294167341} Untitled_5::C42 398 1 1 {} H 0.0 {0.733338652706 0.189272810416 0.502644783392} Untitled_5::H31 399 1 6 {} C 0.0 {0.832381834012 0.120942349747 0.480914979593} Untitled_5::C43 400 1 6 {} C 0.0 {0.787751084445 0.0599092811627 0.143898938215} Untitled_6::C1 401 1 1 {} H 0.0 {0.772214726209 0.0223731923871 0.954646059451} Untitled_6::H1 402 1 6 {} C 0.0 {0.803901474182 0.0317963229316 0.072619186707} Untitled_6::C2 403 1 6 {} C 0.0 {0.75773933126 0.045099668208 0.0106079559105} Untitled_6::C3 404 1 6 {} C 0.0 {0.722330886867 0.101179642943 0.158701416508} Untitled_6::C4 405 1 1 {} H 0.0 {0.708964517527 0.120563098451 0.216001763737} Untitled_6::H3 406 1 6 {} C 0.0 {0.672429527119 0.116588815933 0.0967118506375} Untitled_6::C5 407 1 6 {} C 0.0 {0.69088319212 0.0886615545573 0.0216893880721} Untitled_6::C6 408 1 1 {} H 0.0 {0.653634502151 0.101130567243 0.973607940376} Untitled_6::H5 409 1 6 {} C 0.0 {0.878100511143 0.985293848474 0.0749685743357} Untitled_6::C7 410 1 6 {} C 0.0 {0.851862368786 0.0360848408731 0.200340958868} Untitled_6::C8 411 1 7 {} N 0.0 {0.906572027168 0.986649897585 0.155965970689} Untitled_6::N1 412 1 8 {} O 0.0 {0.914606315518 0.945425695344 0.00913335707145} Untitled_6::O1 413 1 8 {} O 0.0 {0.857474433881 0.0562863224562 0.283415407415} Untitled_6::O2 414 1 8 {} O 0.0 {0.600752582566 0.161874927111 0.109304514641} Untitled_6::O3 415 1 6 {} C 0.0 {0.611157960313 0.239569137281 0.0759485032857} Untitled_6::C9 416 1 1 {} H 0.0 {0.526411110709 0.415004090911 0.0676861058943} Untitled_6::H6 417 1 6 {} C 0.0 {0.558043476289 0.297818187459 0.0909147141989} Untitled_6::C10 418 1 1 {} H 0.0 {0.50907977141 0.286923694847 0.127932723172} Untitled_6::H7 419 1 6 {} C 0.0 {0.568559100811 0.370228116653 0.0584146679913} Untitled_6::C11 420 1 6 {} C 0.0 {0.674272112027 0.254137779823 0.0296772334083} Untitled_6::C12 421 1 1 {} H 0.0 {0.715073688423 0.208827997801 0.01769463517} Untitled_6::H9 422 1 6 {} C 0.0 {0.685270551383 0.326348683278 0.99873209795} Untitled_6::C13 423 1 1 {} H 0.0 {0.734598756278 0.337427628338 0.962863594745} Untitled_6::H10 424 1 6 {} C 0.0 {0.633614230005 0.384463926214 0.0133474599339} Untitled_6::C14 425 1 6 {} C 0.0 {0.648532407402 0.463897183531 0.979448687879} Untitled_6::C15 426 1 6 {} C 0.0 {0.633018326718 0.461488530807 0.893788358306} Untitled_6::C16 427 1 1 {} H 0.0 {0.710093771359 0.396659339286 0.727835945189} Untitled_6::H11 428 1 6 {} C 0.0 {0.687924666389 0.433117131912 0.843392930733} Untitled_6::C17 429 1 1 {} H 0.0 {0.745967603054 0.422974037942 0.86283922294} Untitled_6::H12 430 1 6 {} C 0.0 {0.667925345697 0.418665715449 0.767659989999} Untitled_6::C18 431 1 6 {} C 0.0 {0.562722962495 0.483842048971 0.866924711902} Untitled_6::C19 432 1 1 {} H 0.0 {0.524052894939 0.513919548551 0.904213976094} Untitled_6::H13 433 1 6 {} C 0.0 {0.542094687351 0.468776847019 0.791991738401} Untitled_6::C20 434 1 1 {} H 0.0 {0.486048487481 0.484873061896 0.771739555163} Untitled_6::H14 435 1 6 {} C 0.0 {0.593600035919 0.432883917279 0.743107669728} Untitled_6::C21 436 1 8 {} O 0.0 {0.569928134027 0.41067486711 0.664134265939} Untitled_6::O4 437 1 6 {} C 0.0 {0.559988473388 0.479962907069 0.615545363461} Untitled_6::C22 438 1 1 {} H 0.0 {0.473831615753 0.657363765536 0.61743103833} Untitled_6::H15 439 1 6 {} C 0.0 {0.519711905143 0.545279412549 0.644714729854} Untitled_6::C23 440 1 1 {} H 0.0 {0.500836467522 0.546451811043 0.703546510304} Untitled_6::H16 441 1 6 {} C 0.0 {0.505291360407 0.607893410623 0.596867626496} Untitled_6::C24 442 1 6 {} C 0.0 {0.58869611877 0.480970486017 0.539570255658} Untitled_6::C25 443 1 1 {} H 0.0 {0.622304321582 0.433492248109 0.516971166074} Untitled_6::H17 444 1 6 {} C 0.0 {0.572954647817 0.544245118832 0.495725897456} Untitled_6::C26 445 1 6 {} C 0.0 {0.53177861716 0.60500102343 0.523753757844} Untitled_6::C27 446 1 6 {} C 0.0 {0.732178690805 0.484987495515 0.993769420043} Untitled_6::C28 447 1 6 {} C 0.0 {0.595032154389 0.52235897231 0.0168971849279} Untitled_6::C29 448 1 6 {} C 0.0 {0.595716101562 0.560319756672 0.412021149964} Untitled_6::C30 449 1 6 {} C 0.0 {0.522415023925 0.665374367647 0.462177027236} Untitled_6::C31 450 1 7 {} N 0.0 {0.564034101994 0.637450234928 0.392876265743} Untitled_6::N2 451 1 1 {} H 0.0 {0.743145724854 0.486001390086 0.0548770518893} Untitled_6::H18 452 1 1 {} H 0.0 {0.74404096334 0.540712112737 0.96958672865} Untitled_6::H19 453 1 1 {} H 0.0 {0.768903395699 0.442503441041 0.966942091086} Untitled_6::H20 454 1 1 {} H 0.0 {0.53597498919 0.506443251941 0.0055457365411} Untitled_6::H21 455 1 1 {} H 0.0 {0.606098787337 0.578562091054 0.993236138571} Untitled_6::H22 456 1 1 {} H 0.0 {0.604800205653 0.523335973692 0.0781060155539} Untitled_6::H23 457 1 8 {} O 0.0 {0.479699766892 0.73933040398 0.469575473258} Untitled_6::O5 458 1 8 {} O 0.0 {0.640940643125 0.509437451753 0.360149580881} Untitled_6::O6 459 1 6 {} C 0.0 {0.570832796884 0.679930613698 0.319796876761} Untitled_6::C32 460 1 1 {} H 0.0 {0.641499633497 0.668216910727 0.139271862826} Untitled_6::H24 461 1 6 {} C 0.0 {0.605084976588 0.647549401574 0.255523299843} Untitled_6::C33 462 1 1 {} H 0.0 {0.624177930427 0.588251421825 0.256450608018} Untitled_6::H25 463 1 6 {} C 0.0 {0.614175962144 0.691949715482 0.189685772611} Untitled_6::C34 464 1 6 {} C 0.0 {0.542885776694 0.753202875091 0.317394625599} Untitled_6::C35 465 1 1 {} H 0.0 {0.514836090272 0.776852603368 0.367291077532} Untitled_6::H26 466 1 6 {} C 0.0 {0.550727942475 0.796643036556 0.252422772788} Untitled_6::C36 467 1 1 {} H 0.0 {0.527610382576 0.853847575445 0.250901541103} Untitled_6::H27 468 1 6 {} C 0.0 {0.587909942609 0.767321550871 0.189172184425} Untitled_6::C37 469 1 8 {} O 0.0 {0.599287903454 0.816980162345 0.121266187564} Untitled_6::O7 470 1 6 {} C 0.0 {0.577391383842 0.77565611537 0.0498412432322} Untitled_6::C38 471 1 1 {} H 0.0 {0.485853384428 0.614978471293 0.995832458944} Untitled_6::H28 472 1 6 {} C 0.0 {0.543544363839 0.704631666009 0.0553620174965} Untitled_6::C39 473 1 1 {} H 0.0 {0.541393694756 0.675595920707 0.110131549116} Untitled_6::H29 474 1 6 {} C 0.0 {0.512491878259 0.670312700469 0.990998240778} Untitled_6::C40 475 1 6 {} C 0.0 {0.588140010692 0.810080459081 0.977103447164} Untitled_6::C41 476 1 1 {} H 0.0 {0.620626906489 0.862847165566 0.971649187489} Untitled_6::H30 477 1 6 {} C 0.0 {0.556871617707 0.775522948188 0.912279786657} Untitled_6::C42 478 1 1 {} H 0.0 {0.564776543681 0.801110055136 0.856286493251} Untitled_6::H31 479 1 6 {} C 0.0 {0.515237944672 0.707138193622 0.920344503298} Untitled_6::C43 480 1 1 {} H 0.0 {0.804411804951 0.210023429713 0.869959772392} H_head 481 1 1 {} H 0.0 {0.954325057025 0.956011957347 0.178166892715} 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.5623299224 17.5623299224 17.5623299224 90 90 90} {{1 0 0} {0 1 0} {0 0 1}} {{1 0 0} {0 1 0} {0 0 1}} P1 1 {{17.5623299224 0 0} {0 17.5623299224 0} {0 0 17.5623299224}} {{0.0569400531945 0 0} {0 0.0569400531945 0} {0 0 0.0569400531945}} @end @Columns AsymmetricBond Atom1 reference AsymmetricAtom Atom2 reference AsymmetricAtom Key int 0 Order int 0 @end @data 3 1 0 0 3 2 0 1 7 3 0 1 2 0 0 1 4 0 0 1 5 4 0 0 6 4 0 1 7 6 0 1 8 7 0 0 9 2 0 0 10 0 0 0 11 10 0 0 11 9 0 0 12 9 0 0 13 10 0 0 14 6 0 0 15 14 0 0 19 16 0 0 19 17 0 1 24 19 0 1 18 17 0 0 17 15 0 1 20 15 0 1 21 20 0 0 22 20 0 1 23 22 0 0 24 22 0 1 25 24 0 0 26 25 0 0 30 27 0 0 30 28 0 1 35 30 0 1 29 28 0 0 28 26 0 1 31 26 0 1 32 31 0 0 33 31 0 1 34 33 0 0 35 33 0 1 36 35 0 0 37 36 0 0 41 38 0 0 41 39 0 1 45 41 0 1 40 39 0 0 39 37 0 1 42 37 0 1 43 42 0 0 44 42 0 1 45 44 0 1 46 25 0 0 47 25 0 0 48 44 0 0 49 45 0 0 50 49 0 0 50 48 0 0 51 46 0 0 52 46 0 0 53 46 0 0 54 47 0 0 55 47 0 0 56 47 0 0 57 49 0 0 58 48 0 0 59 50 0 0 63 60 0 0 63 61 0 1 68 63 0 1 62 61 0 0 61 59 0 1 64 59 0 1 65 64 0 0 66 64 0 1 67 66 0 0 68 66 0 1 69 68 0 0 70 69 0 0 74 71 0 0 74 72 0 1 79 74 0 1 73 72 0 0 72 70 0 1 75 70 0 1 76 75 0 0 77 75 0 1 78 77 0 0 79 77 0 1 83 81 0 0 83 82 0 1 87 83 0 1 82 80 0 1 84 80 0 1 85 84 0 0 86 84 0 1 87 86 0 1 88 87 0 0 89 82 0 0 90 80 0 0 91 90 0 0 91 89 0 0 92 89 0 0 93 90 0 0 94 86 0 0 95 94 0 0 99 96 0 0 99 97 0 1 104 99 0 1 98 97 0 0 97 95 0 1 100 95 0 1 101 100 0 0 102 100 0 1 103 102 0 0 104 102 0 1 105 104 0 0 106 105 0 0 110 107 0 0 110 108 0 1 115 110 0 1 109 108 0 0 108 106 0 1 111 106 0 1 112 111 0 0 113 111 0 1 114 113 0 0 115 113 0 1 116 115 0 0 117 116 0 0 121 118 0 0 121 119 0 1 125 121 0 1 120 119 0 0 119 117 0 1 122 117 0 1 123 122 0 0 124 122 0 1 125 124 0 1 126 105 0 0 127 105 0 0 128 124 0 0 129 125 0 0 130 129 0 0 130 128 0 0 131 126 0 0 132 126 0 0 133 126 0 0 134 127 0 0 135 127 0 0 136 127 0 0 137 129 0 0 138 128 0 0 139 130 0 0 143 140 0 0 143 141 0 1 148 143 0 1 142 141 0 0 141 139 0 1 144 139 0 1 145 144 0 0 146 144 0 1 147 146 0 0 148 146 0 1 149 148 0 0 150 149 0 0 154 151 0 0 154 152 0 1 159 154 0 1 153 152 0 0 152 150 0 1 155 150 0 1 156 155 0 0 157 155 0 1 158 157 0 0 159 157 0 1 159 11 0 0 163 161 0 0 163 162 0 1 167 163 0 1 162 160 0 1 164 160 0 1 165 164 0 0 166 164 0 1 167 166 0 1 168 167 0 0 169 162 0 0 170 160 0 0 171 170 0 0 171 169 0 0 172 169 0 0 173 170 0 0 174 166 0 0 175 174 0 0 179 176 0 0 179 177 0 1 184 179 0 1 178 177 0 0 177 175 0 1 180 175 0 1 181 180 0 0 182 180 0 1 183 182 0 0 184 182 0 1 185 184 0 0 186 185 0 0 190 187 0 0 190 188 0 1 195 190 0 1 189 188 0 0 188 186 0 1 191 186 0 1 192 191 0 0 193 191 0 1 194 193 0 0 195 193 0 1 196 195 0 0 197 196 0 0 201 198 0 0 201 199 0 1 205 201 0 1 200 199 0 0 199 197 0 1 202 197 0 1 203 202 0 0 204 202 0 1 205 204 0 1 206 185 0 0 207 185 0 0 208 204 0 0 209 205 0 0 210 209 0 0 210 208 0 0 211 206 0 0 212 206 0 0 213 206 0 0 214 207 0 0 215 207 0 0 216 207 0 0 217 209 0 0 218 208 0 0 219 210 0 0 223 220 0 0 223 221 0 1 228 223 0 1 222 221 0 0 221 219 0 1 224 219 0 1 225 224 0 0 226 224 0 1 227 226 0 0 228 226 0 1 229 228 0 0 230 229 0 0 234 231 0 0 234 232 0 1 239 234 0 1 233 232 0 0 232 230 0 1 235 230 0 1 236 235 0 0 237 235 0 1 238 237 0 0 239 237 0 1 239 91 0 0 243 241 0 0 243 242 0 1 247 243 0 1 242 240 0 1 244 240 0 1 245 244 0 0 246 244 0 1 247 246 0 1 248 247 0 0 249 242 0 0 250 240 0 0 251 250 0 0 251 249 0 0 252 249 0 0 253 250 0 0 254 246 0 0 255 254 0 0 259 256 0 0 259 257 0 1 264 259 0 1 258 257 0 0 257 255 0 1 260 255 0 1 261 260 0 0 262 260 0 1 263 262 0 0 264 262 0 1 265 264 0 0 266 265 0 0 270 267 0 0 270 268 0 1 275 270 0 1 269 268 0 0 268 266 0 1 271 266 0 1 272 271 0 0 273 271 0 1 274 273 0 0 275 273 0 1 276 275 0 0 277 276 0 0 281 278 0 0 281 279 0 1 285 281 0 1 280 279 0 0 279 277 0 1 282 277 0 1 283 282 0 0 284 282 0 1 285 284 0 1 286 265 0 0 287 265 0 0 288 284 0 0 289 285 0 0 290 289 0 0 290 288 0 0 291 286 0 0 292 286 0 0 293 286 0 0 294 287 0 0 295 287 0 0 296 287 0 0 297 289 0 0 298 288 0 0 299 290 0 0 303 300 0 0 303 301 0 1 308 303 0 1 302 301 0 0 301 299 0 1 304 299 0 1 305 304 0 0 306 304 0 1 307 306 0 0 308 306 0 1 309 308 0 0 310 309 0 0 314 311 0 0 314 312 0 1 319 314 0 1 313 312 0 0 312 310 0 1 315 310 0 1 316 315 0 0 317 315 0 1 318 317 0 0 319 317 0 1 319 171 0 0 323 321 0 0 323 322 0 1 327 323 0 1 322 320 0 1 324 320 0 1 325 324 0 0 326 324 0 1 327 326 0 1 328 327 0 0 329 322 0 0 330 320 0 0 331 330 0 0 331 329 0 0 332 329 0 0 333 330 0 0 334 326 0 0 335 334 0 0 339 336 0 0 339 337 0 1 344 339 0 1 338 337 0 0 337 335 0 1 340 335 0 1 341 340 0 0 342 340 0 1 343 342 0 0 344 342 0 1 345 344 0 0 346 345 0 0 350 347 0 0 350 348 0 1 355 350 0 1 349 348 0 0 348 346 0 1 351 346 0 1 352 351 0 0 353 351 0 1 354 353 0 0 355 353 0 1 356 355 0 0 357 356 0 0 361 358 0 0 361 359 0 1 365 361 0 1 360 359 0 0 359 357 0 1 362 357 0 1 363 362 0 0 364 362 0 1 365 364 0 1 366 345 0 0 367 345 0 0 368 364 0 0 369 365 0 0 370 369 0 0 370 368 0 0 371 366 0 0 372 366 0 0 373 366 0 0 374 367 0 0 375 367 0 0 376 367 0 0 377 369 0 0 378 368 0 0 379 370 0 0 383 380 0 0 383 381 0 1 388 383 0 1 382 381 0 0 381 379 0 1 384 379 0 1 385 384 0 0 386 384 0 1 387 386 0 0 388 386 0 1 389 388 0 0 390 389 0 0 394 391 0 0 394 392 0 1 399 394 0 1 393 392 0 0 392 390 0 1 395 390 0 1 396 395 0 0 397 395 0 1 398 397 0 0 399 397 0 1 399 251 0 0 403 401 0 0 403 402 0 1 407 403 0 1 402 400 0 1 404 400 0 1 405 404 0 0 406 404 0 1 407 406 0 1 408 407 0 0 409 402 0 0 410 400 0 0 411 410 0 0 411 409 0 0 412 409 0 0 413 410 0 0 414 406 0 0 415 414 0 0 419 416 0 0 419 417 0 1 424 419 0 1 418 417 0 0 417 415 0 1 420 415 0 1 421 420 0 0 422 420 0 1 423 422 0 0 424 422 0 1 425 424 0 0 426 425 0 0 430 427 0 0 430 428 0 1 435 430 0 1 429 428 0 0 428 426 0 1 431 426 0 1 432 431 0 0 433 431 0 1 434 433 0 0 435 433 0 1 436 435 0 0 437 436 0 0 441 438 0 0 441 439 0 1 445 441 0 1 440 439 0 0 439 437 0 1 442 437 0 1 443 442 0 0 444 442 0 1 445 444 0 1 446 425 0 0 447 425 0 0 448 444 0 0 449 445 0 0 450 449 0 0 450 448 0 0 451 446 0 0 452 446 0 0 453 446 0 0 454 447 0 0 455 447 0 0 456 447 0 0 457 449 0 0 458 448 0 0 459 450 0 0 463 460 0 0 463 461 0 1 468 463 0 1 462 461 0 0 461 459 0 1 464 459 0 1 465 464 0 0 466 464 0 1 467 466 0 0 468 466 0 1 469 468 0 0 470 469 0 0 474 471 0 0 474 472 0 1 479 474 0 1 473 472 0 0 472 470 0 1 475 470 0 1 476 475 0 0 477 475 0 1 478 477 0 0 479 477 0 1 479 331 0 0 480 79 0 0 481 411 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 3 1 {0 0 0} 0 1 3 2 {0 0 0} 0 2 7 3 {0 0 0} 0 3 2 0 {0 0 0} 0 4 4 0 {0 0 0} 0 5 5 4 {0 1 0} 0 6 6 4 {0 0 0} 0 7 7 6 {0 0 0} 0 8 8 7 {0 0 0} 0 9 9 2 {0 0 0} 0 10 10 0 {0 0 0} 0 11 11 10 {0 0 0} 0 12 11 9 {0 0 0} 0 13 12 9 {0 0 0} 0 14 13 10 {0 1 0} 0 15 14 6 {0 0 0} 0 16 15 14 {0 1 0} 0 17 19 16 {0 0 0} 0 18 19 17 {0 0 0} 0 19 24 19 {1 0 0} 0 20 18 17 {0 0 0} 0 21 17 15 {0 0 0} 0 22 20 15 {1 0 0} 0 23 21 20 {0 -1 0} 0 24 22 20 {0 0 0} 0 25 23 22 {0 0 0} 0 26 24 22 {0 0 0} 0 27 25 24 {0 0 0} 0 28 26 25 {0 0 0} 0 29 30 27 {0 0 0} 0 30 30 28 {0 0 0} 0 31 35 30 {0 0 0} 0 32 29 28 {0 0 0} 0 33 28 26 {0 0 0} 0 34 31 26 {0 0 0} 0 35 32 31 {0 0 0} 0 36 33 31 {0 0 0} 0 37 34 33 {0 0 0} 0 38 35 33 {0 0 0} 0 39 36 35 {0 0 0} 0 40 37 36 {0 0 0} 0 41 41 38 {0 0 0} 0 42 41 39 {0 0 1} 0 43 45 41 {0 0 0} 0 44 40 39 {0 0 0} 0 45 39 37 {0 0 0} 0 46 42 37 {0 0 0} 0 47 43 42 {0 0 0} 0 48 44 42 {0 0 0} 0 49 45 44 {0 0 1} 0 50 46 25 {0 0 0} 0 51 47 25 {0 0 0} 0 52 48 44 {0 0 0} 0 53 49 45 {0 0 0} 0 54 50 49 {0 0 0} 0 55 50 48 {0 0 1} 0 56 51 46 {0 0 0} 0 57 52 46 {0 0 0} 0 58 53 46 {0 0 0} 0 59 54 47 {0 0 0} 0 60 55 47 {0 0 0} 0 61 56 47 {0 0 0} 0 62 57 49 {0 0 0} 0 63 58 48 {0 0 0} 0 64 59 50 {0 0 0} 0 65 63 60 {0 0 0} 0 66 63 61 {0 0 0} 0 67 68 63 {0 0 0} 0 68 62 61 {0 0 0} 0 69 61 59 {0 0 0} 0 70 64 59 {0 0 0} 0 71 65 64 {0 0 -1} 0 72 66 64 {0 0 0} 0 73 67 66 {-1 0 0} 0 74 68 66 {0 0 0} 0 75 69 68 {0 0 0} 0 76 70 69 {0 0 0} 0 77 74 71 {0 0 0} 0 78 74 72 {0 0 0} 0 79 79 74 {0 0 0} 0 80 73 72 {0 0 0} 0 81 72 70 {0 0 0} 0 82 75 70 {0 0 0} 0 83 76 75 {0 0 0} 0 84 77 75 {0 0 0} 0 85 78 77 {0 0 0} 0 86 79 77 {0 0 0} 0 87 83 81 {0 0 0} 0 88 83 82 {0 0 0} 0 89 87 83 {0 0 0} 0 90 82 80 {0 0 -1} 0 91 84 80 {0 0 0} 0 92 85 84 {0 0 0} 0 93 86 84 {0 0 0} 0 94 87 86 {0 0 -1} 0 95 88 87 {0 0 0} 0 96 89 82 {0 0 0} 0 97 90 80 {0 0 0} 0 98 91 90 {0 0 -1} 0 99 91 89 {0 0 0} 0 100 92 89 {0 0 0} 0 101 93 90 {0 1 0} 0 102 94 86 {0 0 0} 0 103 95 94 {0 0 0} 0 104 99 96 {0 0 0} 0 105 99 97 {0 0 0} 0 106 104 99 {0 0 0} 0 107 98 97 {0 0 0} 0 108 97 95 {0 0 0} 0 109 100 95 {0 0 0} 0 110 101 100 {0 0 0} 0 111 102 100 {0 0 0} 0 112 103 102 {0 0 0} 0 113 104 102 {0 0 0} 0 114 105 104 {0 0 0} 0 115 106 105 {0 0 0} 0 116 110 107 {0 0 0} 0 117 110 108 {0 0 0} 0 118 115 110 {0 0 0} 0 119 109 108 {0 0 0} 0 120 108 106 {0 0 0} 0 121 111 106 {0 0 0} 0 122 112 111 {0 0 0} 0 123 113 111 {0 0 0} 0 124 114 113 {0 0 0} 0 125 115 113 {0 0 0} 0 126 116 115 {0 0 0} 0 127 117 116 {0 0 0} 0 128 121 118 {0 0 0} 0 129 121 119 {0 0 0} 0 130 125 121 {0 0 0} 0 131 120 119 {0 0 0} 0 132 119 117 {0 0 0} 0 133 122 117 {0 0 0} 0 134 123 122 {0 0 0} 0 135 124 122 {0 0 0} 0 136 125 124 {0 0 0} 0 137 126 105 {0 0 0} 0 138 127 105 {0 0 0} 0 139 128 124 {0 0 0} 0 140 129 125 {0 0 0} 0 141 130 129 {0 0 0} 0 142 130 128 {0 0 0} 0 143 131 126 {0 0 0} 0 144 132 126 {0 0 0} 0 145 133 126 {0 0 0} 0 146 134 127 {0 0 0} 0 147 135 127 {0 0 0} 0 148 136 127 {0 0 0} 0 149 137 129 {0 0 0} 0 150 138 128 {0 0 0} 0 151 139 130 {0 0 0} 0 152 143 140 {0 0 0} 0 153 143 141 {0 0 0} 0 154 148 143 {0 0 0} 0 155 142 141 {0 0 0} 0 156 141 139 {0 0 0} 0 157 144 139 {0 0 0} 0 158 145 144 {0 0 0} 0 159 146 144 {0 0 0} 0 160 147 146 {0 0 0} 0 161 148 146 {0 0 0} 0 162 149 148 {0 0 0} 0 163 150 149 {0 0 0} 0 164 154 151 {0 0 0} 0 165 154 152 {0 0 0} 0 166 159 154 {-1 0 0} 0 167 153 152 {0 0 0} 0 168 152 150 {0 0 0} 0 169 155 150 {-1 0 0} 0 170 156 155 {0 0 0} 0 171 157 155 {0 0 0} 0 172 158 157 {0 0 0} 0 173 159 157 {0 0 0} 0 174 159 11 {0 0 -1} 0 175 163 161 {0 0 0} 0 176 163 162 {0 0 1} 0 177 167 163 {0 0 0} 0 178 162 160 {0 0 0} 0 179 164 160 {0 0 0} 0 180 165 164 {0 0 0} 0 181 166 164 {0 0 0} 0 182 167 166 {0 0 1} 0 183 168 167 {0 0 0} 0 184 169 162 {1 0 0} 0 185 170 160 {0 0 0} 0 186 171 170 {1 0 0} 0 187 171 169 {0 0 0} 0 188 172 169 {0 0 0} 0 189 173 170 {0 0 0} 0 190 174 166 {0 0 0} 0 191 175 174 {0 0 1} 0 192 179 176 {0 0 0} 0 193 179 177 {0 0 0} 0 194 184 179 {0 0 0} 0 195 178 177 {0 0 -1} 0 196 177 175 {0 0 0} 0 197 180 175 {0 0 0} 0 198 181 180 {0 0 0} 0 199 182 180 {0 0 0} 0 200 183 182 {0 0 0} 0 201 184 182 {0 0 0} 0 202 185 184 {0 0 0} 0 203 186 185 {0 0 0} 0 204 190 187 {0 0 0} 0 205 190 188 {0 0 0} 0 206 195 190 {0 0 0} 0 207 189 188 {0 0 0} 0 208 188 186 {0 0 0} 0 209 191 186 {0 0 0} 0 210 192 191 {0 0 0} 0 211 193 191 {0 0 0} 0 212 194 193 {0 0 0} 0 213 195 193 {0 0 0} 0 214 196 195 {0 -1 0} 0 215 197 196 {0 1 0} 0 216 201 198 {0 0 0} 0 217 201 199 {0 0 -1} 0 218 205 201 {0 1 0} 0 219 200 199 {0 0 0} 0 220 199 197 {0 -1 0} 0 221 202 197 {0 0 0} 0 222 203 202 {0 0 0} 0 223 204 202 {0 0 0} 0 224 205 204 {0 0 -1} 0 225 206 185 {0 0 0} 0 226 207 185 {0 0 0} 0 227 208 204 {0 0 0} 0 228 209 205 {0 0 0} 0 229 210 209 {0 0 0} 0 230 210 208 {0 0 -1} 0 231 211 206 {0 0 0} 0 232 212 206 {0 0 0} 0 233 213 206 {0 0 0} 0 234 214 207 {0 0 0} 0 235 215 207 {0 0 0} 0 236 216 207 {0 0 0} 0 237 217 209 {0 -1 0} 0 238 218 208 {0 0 0} 0 239 219 210 {0 0 0} 0 240 223 220 {0 0 0} 0 241 223 221 {0 0 0} 0 242 228 223 {0 0 0} 0 243 222 221 {0 0 1} 0 244 221 219 {0 0 0} 0 245 224 219 {0 0 0} 0 246 225 224 {0 0 0} 0 247 226 224 {0 0 0} 0 248 227 226 {0 0 0} 0 249 228 226 {0 0 0} 0 250 229 228 {0 0 0} 0 251 230 229 {0 0 0} 0 252 234 231 {0 0 0} 0 253 234 232 {-1 0 1} 0 254 239 234 {0 0 -1} 0 255 233 232 {0 0 1} 0 256 232 230 {0 0 0} 0 257 235 230 {0 0 0} 0 258 236 235 {0 0 0} 0 259 237 235 {-1 0 0} 0 260 238 237 {0 0 0} 0 261 239 237 {0 0 0} 0 262 239 91 {0 1 0} 0 263 243 241 {0 0 0} 0 264 243 242 {-1 0 0} 0 265 247 243 {0 0 0} 0 266 242 240 {0 0 0} 0 267 244 240 {0 0 0} 0 268 245 244 {0 0 0} 0 269 246 244 {-1 0 0} 0 270 247 246 {0 0 0} 0 271 248 247 {0 0 0} 0 272 249 242 {0 0 0} 0 273 250 240 {0 0 0} 0 274 251 250 {0 0 0} 0 275 251 249 {0 0 0} 0 276 252 249 {-1 0 0} 0 277 253 250 {0 0 0} 0 278 254 246 {0 0 0} 0 279 255 254 {0 0 0} 0 280 259 256 {0 0 0} 0 281 259 257 {0 0 0} 0 282 264 259 {0 0 0} 0 283 258 257 {0 0 0} 0 284 257 255 {1 0 0} 0 285 260 255 {0 0 0} 0 286 261 260 {0 0 0} 0 287 262 260 {0 0 0} 0 288 263 262 {0 0 0} 0 289 264 262 {1 0 0} 0 290 265 264 {0 0 0} 0 291 266 265 {-1 0 0} 0 292 270 267 {0 0 0} 0 293 270 268 {0 0 0} 0 294 275 270 {0 0 0} 0 295 269 268 {0 0 0} 0 296 268 266 {0 0 0} 0 297 271 266 {0 0 0} 0 298 272 271 {0 0 0} 0 299 273 271 {0 0 0} 0 300 274 273 {0 0 0} 0 301 275 273 {0 0 0} 0 302 276 275 {0 0 0} 0 303 277 276 {0 0 0} 0 304 281 278 {0 0 0} 0 305 281 279 {0 0 0} 0 306 285 281 {0 0 0} 0 307 280 279 {0 0 0} 0 308 279 277 {0 0 0} 0 309 282 277 {0 0 0} 0 310 283 282 {0 0 0} 0 311 284 282 {0 0 0} 0 312 285 284 {0 0 0} 0 313 286 265 {0 0 0} 0 314 287 265 {0 0 0} 0 315 288 284 {0 0 0} 0 316 289 285 {0 0 0} 0 317 290 289 {0 0 0} 0 318 290 288 {0 0 0} 0 319 291 286 {0 0 0} 0 320 292 286 {0 0 0} 0 321 293 286 {0 0 0} 0 322 294 287 {0 0 0} 0 323 295 287 {0 0 0} 0 324 296 287 {0 0 0} 0 325 297 289 {0 0 0} 0 326 298 288 {0 0 0} 0 327 299 290 {0 0 0} 0 328 303 300 {0 0 0} 0 329 303 301 {0 0 0} 0 330 308 303 {0 0 0} 0 331 302 301 {0 0 0} 0 332 301 299 {0 0 0} 0 333 304 299 {0 0 0} 0 334 305 304 {0 0 0} 0 335 306 304 {0 0 0} 0 336 307 306 {0 0 0} 0 337 308 306 {0 0 0} 0 338 309 308 {0 0 0} 0 339 310 309 {0 0 0} 0 340 314 311 {0 0 0} 0 341 314 312 {0 0 0} 0 342 319 314 {0 0 0} 0 343 313 312 {0 0 0} 0 344 312 310 {0 0 0} 0 345 315 310 {0 0 0} 0 346 316 315 {0 0 0} 0 347 317 315 {0 0 0} 0 348 318 317 {0 0 0} 0 349 319 317 {0 0 0} 0 350 319 171 {0 0 0} 0 351 323 321 {0 0 0} 0 352 323 322 {0 0 0} 0 353 327 323 {0 0 0} 0 354 322 320 {0 0 0} 0 355 324 320 {0 0 0} 0 356 325 324 {0 0 0} 0 357 326 324 {0 0 0} 0 358 327 326 {0 0 0} 0 359 328 327 {0 0 0} 0 360 329 322 {0 0 0} 0 361 330 320 {0 0 0} 0 362 331 330 {0 0 0} 0 363 331 329 {0 0 0} 0 364 332 329 {0 0 0} 0 365 333 330 {0 0 0} 0 366 334 326 {0 0 0} 0 367 335 334 {0 0 0} 0 368 339 336 {0 0 0} 0 369 339 337 {0 0 0} 0 370 344 339 {0 0 0} 0 371 338 337 {0 0 0} 0 372 337 335 {0 0 0} 0 373 340 335 {0 0 0} 0 374 341 340 {0 0 0} 0 375 342 340 {0 0 0} 0 376 343 342 {0 0 0} 0 377 344 342 {0 0 0} 0 378 345 344 {0 0 0} 0 379 346 345 {0 0 0} 0 380 350 347 {0 0 0} 0 381 350 348 {0 0 0} 0 382 355 350 {0 0 0} 0 383 349 348 {0 0 0} 0 384 348 346 {0 0 0} 0 385 351 346 {0 0 0} 0 386 352 351 {0 0 0} 0 387 353 351 {0 0 0} 0 388 354 353 {0 0 0} 0 389 355 353 {0 0 0} 0 390 356 355 {0 0 0} 0 391 357 356 {0 0 -1} 0 392 361 358 {0 0 0} 0 393 361 359 {0 0 0} 0 394 365 361 {0 0 0} 0 395 360 359 {0 0 0} 0 396 359 357 {0 1 0} 0 397 362 357 {0 0 0} 0 398 363 362 {0 0 0} 0 399 364 362 {0 0 0} 0 400 365 364 {0 1 0} 0 401 366 345 {0 0 0} 0 402 367 345 {0 0 0} 0 403 368 364 {0 0 0} 0 404 369 365 {0 0 0} 0 405 370 369 {0 0 0} 0 406 370 368 {0 1 0} 0 407 371 366 {0 0 0} 0 408 372 366 {0 0 0} 0 409 373 366 {0 0 0} 0 410 374 367 {0 0 0} 0 411 375 367 {0 0 0} 0 412 376 367 {0 0 0} 0 413 377 369 {0 0 0} 0 414 378 368 {0 0 0} 0 415 379 370 {0 0 0} 0 416 383 380 {0 0 0} 0 417 383 381 {0 0 0} 0 418 388 383 {0 0 0} 0 419 382 381 {0 0 0} 0 420 381 379 {0 0 0} 0 421 384 379 {0 -1 0} 0 422 385 384 {0 0 0} 0 423 386 384 {0 0 0} 0 424 387 386 {0 0 0} 0 425 388 386 {0 1 0} 0 426 389 388 {0 0 0} 0 427 390 389 {0 0 0} 0 428 394 391 {0 0 0} 0 429 394 392 {0 -1 0} 0 430 399 394 {0 0 0} 0 431 393 392 {0 0 0} 0 432 392 390 {0 0 0} 0 433 395 390 {0 -1 0} 0 434 396 395 {0 0 0} 0 435 397 395 {0 0 0} 0 436 398 397 {0 0 0} 0 437 399 397 {0 0 0} 0 438 399 251 {0 0 0} 0 439 403 401 {0 0 -1} 0 440 403 402 {0 0 0} 0 441 407 403 {0 0 0} 0 442 402 400 {0 0 0} 0 443 404 400 {0 0 0} 0 444 405 404 {0 0 0} 0 445 406 404 {0 0 0} 0 446 407 406 {0 0 0} 0 447 408 407 {0 0 1} 0 448 409 402 {0 1 0} 0 449 410 400 {0 0 0} 0 450 411 410 {0 1 0} 0 451 411 409 {0 0 0} 0 452 412 409 {0 0 0} 0 453 413 410 {0 0 0} 0 454 414 406 {0 0 0} 0 455 415 414 {0 0 0} 0 456 419 416 {0 0 0} 0 457 419 417 {0 0 0} 0 458 424 419 {0 0 0} 0 459 418 417 {0 0 0} 0 460 417 415 {0 0 0} 0 461 420 415 {0 0 0} 0 462 421 420 {0 0 0} 0 463 422 420 {0 0 1} 0 464 423 422 {0 0 0} 0 465 424 422 {0 0 -1} 0 466 425 424 {0 0 1} 0 467 426 425 {0 0 0} 0 468 430 427 {0 0 0} 0 469 430 428 {0 0 0} 0 470 435 430 {0 0 0} 0 471 429 428 {0 0 0} 0 472 428 426 {0 0 0} 0 473 431 426 {0 0 0} 0 474 432 431 {0 0 0} 0 475 433 431 {0 0 0} 0 476 434 433 {0 0 0} 0 477 435 433 {0 0 0} 0 478 436 435 {0 0 0} 0 479 437 436 {0 0 0} 0 480 441 438 {0 0 0} 0 481 441 439 {0 0 0} 0 482 445 441 {0 0 0} 0 483 440 439 {0 0 0} 0 484 439 437 {0 0 0} 0 485 442 437 {0 0 0} 0 486 443 442 {0 0 0} 0 487 444 442 {0 0 0} 0 488 445 444 {0 0 0} 0 489 446 425 {0 0 0} 0 490 447 425 {0 0 -1} 0 491 448 444 {0 0 0} 0 492 449 445 {0 0 0} 0 493 450 449 {0 0 0} 0 494 450 448 {0 0 0} 0 495 451 446 {0 0 -1} 0 496 452 446 {0 0 0} 0 497 453 446 {0 0 0} 0 498 454 447 {0 0 0} 0 499 455 447 {0 0 1} 0 500 456 447 {0 0 0} 0 501 457 449 {0 0 0} 0 502 458 448 {0 0 0} 0 503 459 450 {0 0 0} 0 504 463 460 {0 0 0} 0 505 463 461 {0 0 0} 0 506 468 463 {0 0 0} 0 507 462 461 {0 0 0} 0 508 461 459 {0 0 0} 0 509 464 459 {0 0 0} 0 510 465 464 {0 0 0} 0 511 466 464 {0 0 0} 0 512 467 466 {0 0 0} 0 513 468 466 {0 0 0} 0 514 469 468 {0 0 0} 0 515 470 469 {0 0 0} 0 516 474 471 {0 0 0} 0 517 474 472 {0 0 1} 0 518 479 474 {0 0 0} 0 519 473 472 {0 0 0} 0 520 472 470 {0 0 0} 0 521 475 470 {0 0 1} 0 522 476 475 {0 0 0} 0 523 477 475 {0 0 0} 0 524 478 477 {0 0 0} 0 525 479 477 {0 0 0} 0 526 479 331 {0 0 0} 0 527 480 79 {0 0 0} 0 528 481 411 {0 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 ? {} {} {} {}}} } } }