job.id 990 job.name Structure_opt_PMDA6FPDA_6 job.description {} job.status finished job.submitted {2025-07-23 06:45:14} job.started {2025-07-23 06:45:14} job.finished {2025-07-24 06:10:00} 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-e9d70a33-f7b4-4e3f-8942-155d5d8f16ad {} ::MD::Stage::Start { Class ::MD::Stage::Start Version 1.2 Id md-stage-start-e9d70a33-f7b4-4e3f-8942-155d5d8f16ad 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-b09f7048-e024-429f-b526-36a0a1c596ae MD::VASP6api::Batch ::MD::VASP6api::Stage { Base { Class ::MD::VASP6api::Stage Version 1.2 Id md-vasp6api-stage-b09f7048-e024-429f-b526-36a0a1c596ae 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.409 0.409 0.409} 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 200 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 9 F 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_PMDA_6 tebeg {} teend {} thomasFermi 1.8 thomasFermi_choice {average valence density} thomasFermi_fromDensity 1.6313289294367472 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 800 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-e9d70a33-f7b4-4e3f-8942-155d5d8f16ad,md-vasp6api-stage-b09f7048-e024-429f-b526-36a0a1c596ae 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)) 1 @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.475402821261 0.84806365627 0.821205753243} Untitled_1::C1 1 -1 1 {} H 0.0 {0.471451717812 0.834139591146 0.597738416916} Untitled_1::H1 2 -1 6 {} C 0.0 {0.499248407763 0.86113120881 0.734061334327} Untitled_1::C2 3 -1 6 {} C 0.0 {0.455736848438 0.820574639802 0.665543392675} Untitled_1::C3 4 -1 6 {} C 0.0 {0.408906274919 0.7912063514 0.845268286463} Untitled_1::C4 5 -1 1 {} H 0.0 {0.389244292483 0.782605567761 0.912902173303} Untitled_1::H2 6 -1 6 {} C 0.0 {0.369204559537 0.746077108008 0.777463491481} Untitled_1::C5 7 -1 6 {} C 0.0 {0.390423473462 0.761251360296 0.689856746649} Untitled_1::C6 8 -1 6 {} C 0.0 {0.533607666129 0.903435507586 0.880416256098} Untitled_1::C7 9 -1 6 {} C 0.0 {0.577094807375 0.923758750237 0.729817918353} Untitled_1::C8 10 -1 7 {} N 0.0 {0.601256528084 0.945824881412 0.82314644746} Untitled_1::N1 11 -1 6 {} C 0.0 {0.333975540439 0.701822015686 0.631377028834} Untitled_1::C9 12 -1 6 {} C 0.0 {0.299477194284 0.67449094118 0.783254630735} Untitled_1::C10 13 -1 7 {} N 0.0 {0.281046632206 0.644476028129 0.691847237092} Untitled_1::N2 14 -1 8 {} O 0.0 {0.621280216931 0.955477749361 0.648845575419} Untitled_1::O1 15 -1 8 {} O 0.0 {0.526767026696 0.911081617254 0.976937609713} Untitled_1::O2 16 -1 8 {} O 0.0 {0.259623955122 0.638827057776 0.864635268121} Untitled_1::O3 17 -1 8 {} O 0.0 {0.334366924627 0.698325464735 0.533807797116} Untitled_1::O4 18 -1 6 {} C 0.0 {0.223790340398 0.568506642774 0.666136151427} Untitled_1::C11 19 -1 1 {} H 0.0 {0.149649209208 0.461908484096 0.485832033865} Untitled_1::H3 20 -1 6 {} C 0.0 {0.20983586569 0.549883400579 0.578305437799} Untitled_1::C12 21 -1 1 {} H 0.0 {0.236947120941 0.592747718183 0.528317053584} Untitled_1::H4 22 -1 6 {} C 0.0 {0.161136913771 0.475716181142 0.554186697247} Untitled_1::C13 23 -1 6 {} C 0.0 {0.186966254924 0.515403316909 0.730804114184} Untitled_1::C14 24 -1 1 {} H 0.0 {0.195646115384 0.531808756692 0.79960061772} Untitled_1::H5 25 -1 6 {} C 0.0 {0.139343203405 0.441071710192 0.707377701757} Untitled_1::C15 26 -1 1 {} H 0.0 {0.111651841962 0.399388931129 0.757814694448} Untitled_1::H6 27 -1 6 {} C 0.0 {0.127350916901 0.419870223178 0.61922570605} Untitled_1::C16 28 -1 6 {} C 0.0 {0.0766565573145 0.334285812476 0.595220862087} Untitled_1::C17 29 -1 6 {} C 0.0 {0.996800091416 0.326614235426 0.65688639089} Untitled_1::C18 30 -1 1 {} H 0.0 {0.903514795905 0.425625127942 0.833264550906} Untitled_1::H7 31 -1 6 {} C 0.0 {0.982324779856 0.389194508524 0.721942272605} Untitled_1::C19 32 -1 1 {} H 0.0 {0.0234527892036 0.446878083018 0.725662369222} Untitled_1::H8 33 -1 6 {} C 0.0 {0.913939919361 0.377902528424 0.781574565984} Untitled_1::C20 34 -1 6 {} C 0.0 {0.939741000297 0.256237729237 0.648299782739} Untitled_1::C21 35 -1 1 {} H 0.0 {0.947254703681 0.211585234586 0.594491115232} Untitled_1::H9 36 -1 6 {} C 0.0 {0.872225898484 0.244217112658 0.708214229791} Untitled_1::C22 37 -1 1 {} H 0.0 {0.830090442368 0.187034276246 0.703239994053} Untitled_1::H10 38 -1 6 {} C 0.0 {0.859160702442 0.305164830537 0.774906486759} Untitled_1::C23 39 -1 6 {} C 0.0 {0.0401561078303 0.33881117284 0.499720255256} Untitled_1::C25 40 -1 6 {} C 0.0 {0.142346190359 0.251670795803 0.611210669518} Untitled_1::C26 41 -1 9 {} F 0.0 {0.0959491832028 0.164066130683 0.60822640617} Untitled_1::F1 42 -1 9 {} F 0.0 {0.214946044681 0.249968860694 0.544085907321} Untitled_1::F2 43 -1 9 {} F 0.0 {0.17915125704 0.261270086049 0.701318491659} Untitled_1::F3 44 -1 9 {} F 0.0 {0.113305375349 0.35176464805 0.436408247817} Untitled_1::F4 45 -1 9 {} F 0.0 {0.992806280847 0.256812252069 0.478461504922} Untitled_1::F5 46 -1 9 {} F 0.0 {0.979323370487 0.413683616392 0.492521097189} Untitled_1::F6 47 -1 6 {} C 0.0 {0.741004591044 0.223272494733 0.614779023262} Untitled_2::C1 48 -1 1 {} H 0.0 {0.859267692981 0.395614134805 0.532976688895} Untitled_2::H1 49 -1 6 {} C 0.0 {0.783175066099 0.304401455555 0.611116795719} Untitled_2::C2 50 -1 6 {} C 0.0 {0.825298393242 0.333448868787 0.535790239584} Untitled_2::C3 51 -1 6 {} C 0.0 {0.738211594188 0.167149056005 0.543642508499} Untitled_2::C4 52 -1 1 {} H 0.0 {0.707426991413 0.10333181142 0.546951826404} Untitled_2::H2 53 -1 6 {} C 0.0 {0.777587165893 0.197190617295 0.468338435867} Untitled_2::C5 54 -1 6 {} C 0.0 {0.821147184237 0.277304426261 0.464449175056} Untitled_2::C6 55 -1 6 {} C 0.0 {0.701721101061 0.209783098366 0.705834434844} Untitled_2::C7 56 -1 6 {} C 0.0 {0.774600151521 0.350460013029 0.699806002842} Untitled_2::C8 57 -1 7 {} N 0.0 {0.724480999281 0.289095318227 0.759407180497} Untitled_2::N1 58 -1 6 {} C 0.0 {0.85921103184 0.289719036855 0.372729719996} Untitled_2::C9 59 -1 6 {} C 0.0 {0.782195441915 0.152229154934 0.379940921055} Untitled_2::C10 60 -1 7 {} N 0.0 {0.83270949582 0.21090987505 0.320125836673} Untitled_2::N2 61 -1 8 {} O 0.0 {0.808850141917 0.439000405564 0.722694173862} Untitled_2::O1 62 -1 8 {} O 0.0 {0.650808969696 0.132216099083 0.736011457148} Untitled_2::O2 63 -1 8 {} O 0.0 {0.743011728444 0.0661823401282 0.356984354954} Untitled_2::O3 64 -1 8 {} O 0.0 {0.911946802452 0.365365437434 0.341376699875} Untitled_2::O4 65 -1 6 {} C 0.0 {0.852994474961 0.193381168286 0.225838599778} Untitled_2::C11 66 -1 1 {} H 0.0 {0.945199662026 0.289380254904 0.0488865455954} Untitled_2::H3 67 -1 6 {} C 0.0 {0.89529446316 0.256257887664 0.175815663711} Untitled_2::C12 68 -1 1 {} H 0.0 {0.915151764834 0.31743335472 0.205279873182} Untitled_2::H4 69 -1 6 {} C 0.0 {0.911838715175 0.240675637477 0.0877285360759} Untitled_2::C13 70 -1 6 {} C 0.0 {0.828030956781 0.114604437195 0.188485616909} Untitled_2::C14 71 -1 1 {} H 0.0 {0.795348239095 0.0653215030017 0.227981157166} Untitled_2::H5 72 -1 6 {} C 0.0 {0.844736939194 0.0987212877804 0.100811434151} Untitled_2::C15 73 -1 1 {} H 0.0 {0.826197917415 0.0366684940319 0.0720269595481} Untitled_2::H6 74 -1 6 {} C 0.0 {0.885608235982 0.162465980083 0.0498073142364} Untitled_2::C16 75 -1 6 {} C 0.0 {0.901699283182 0.145285255675 0.952090463157} Untitled_2::C17 76 -1 6 {} C 0.0 {0.821061782969 0.0970247713459 0.914869634776} Untitled_2::C18 77 -1 1 {} H 0.0 {0.628184851557 0.0136685091195 0.985438376654} Untitled_2::H7 78 -1 6 {} C 0.0 {0.752885697381 0.0766459366399 0.97085193384} Untitled_2::C19 79 -1 1 {} H 0.0 {0.755230818049 0.098348493739 0.0381580516809} Untitled_2::H8 80 -1 6 {} C 0.0 {0.681406626188 0.0289058302157 0.941003371177} Untitled_2::C20 81 -1 6 {} C 0.0 {0.816181760207 0.0725873357704 0.826218896328} Untitled_2::C21 82 -1 1 {} H 0.0 {0.867621452761 0.0907886317457 0.781259946271} Untitled_2::H9 83 -1 6 {} C 0.0 {0.744008226962 0.0245163433547 0.796071394303} Untitled_2::C22 84 -1 1 {} H 0.0 {0.739851088676 0.00523417750308 0.727746763173} Untitled_2::H10 85 -1 6 {} C 0.0 {0.677825656876 0.000924512421542 0.854156591715} Untitled_2::C23 86 -1 6 {} C 0.0 {0.914577886675 0.232758390492 0.903427784127} Untitled_2::C25 87 -1 6 {} C 0.0 {0.983499708182 0.087649865384 0.942672871487} Untitled_2::C26 88 -1 9 {} F 0.0 {0.00388836385983 0.073538148531 0.849326294317} Untitled_2::F1 89 -1 9 {} F 0.0 {0.0585672223049 0.131790733861 0.985943551729} Untitled_2::F2 90 -1 9 {} F 0.0 {0.967986214394 0.00252551434658 0.986644038691} Untitled_2::F3 91 -1 9 {} F 0.0 {0.994328986154 0.277876326976 0.935276200383} Untitled_2::F4 92 -1 9 {} F 0.0 {0.923419645179 0.215296676601 0.808750763518} Untitled_2::F5 93 -1 9 {} F 0.0 {0.836910143392 0.289017647889 0.917413649171} Untitled_2::F6 94 -1 6 {} C 0.0 {0.534775423645 0.733776189047 0.378742170289} Untitled_3::C1 95 -1 1 {} H 0.0 {0.529853598391 0.888809240291 0.540765383846} Untitled_3::H1 96 -1 6 {} C 0.0 {0.519008211005 0.771506284549 0.460174320541} Untitled_3::C2 97 -1 6 {} C 0.0 {0.538137814296 0.859486897486 0.476839468092} Untitled_3::C3 98 -1 6 {} C 0.0 {0.567180500384 0.780264748506 0.3093881128} Untitled_3::C4 99 -1 1 {} H 0.0 {0.578999032501 0.749906979031 0.246312874959} Untitled_3::H2 100 -1 6 {} C 0.0 {0.582876265316 0.867719980092 0.323982498561} Untitled_3::C5 101 -1 6 {} C 0.0 {0.568733801832 0.906896798612 0.405010747415} Untitled_3::C6 102 -1 6 {} C 0.0 {0.509518819792 0.638129565157 0.379806759506} Untitled_3::C7 103 -1 6 {} C 0.0 {0.479507350333 0.701899937795 0.521348196539} Untitled_3::C8 104 -1 7 {} N 0.0 {0.47153265646 0.618389460569 0.467415487695} Untitled_3::N1 105 -1 6 {} C 0.0 {0.589533257826 0.00466506229377 0.398314154496} Untitled_3::C9 106 -1 6 {} C 0.0 {0.613457985922 0.936113504333 0.257954191507} Untitled_3::C10 107 -1 7 {} N 0.0 {0.61249467588 0.0222610035978 0.303391313347} Untitled_3::N2 108 -1 8 {} O 0.0 {0.453632815164 0.71418616201 0.614519994418} Untitled_3::O1 109 -1 8 {} O 0.0 {0.519107084015 0.57591846643 0.305908870082} Untitled_3::O2 110 -1 8 {} O 0.0 {0.634765003416 0.920885306617 0.164233583142} Untitled_3::O3 111 -1 8 {} O 0.0 {0.583823315503 0.0702696062658 0.47030279395} Untitled_3::O4 112 -1 6 {} C 0.0 {0.627762282887 0.109547121644 0.260611086712} Untitled_3::C11 113 -1 1 {} H 0.0 {0.592952335879 0.324866074869 0.296799669721} Untitled_3::H3 114 -1 6 {} C 0.0 {0.609363940051 0.185774350357 0.306007392226} Untitled_3::C12 115 -1 1 {} H 0.0 {0.594785817474 0.183266941929 0.375272220525} Untitled_3::H4 116 -1 6 {} C 0.0 {0.609481323712 0.265394384126 0.262218841821} Untitled_3::C13 117 -1 6 {} C 0.0 {0.653371704043 0.113466828654 0.173067915237} Untitled_3::C14 118 -1 1 {} H 0.0 {0.672529463388 0.054374715769 0.138810139056} Untitled_3::H5 119 -1 6 {} C 0.0 {0.65439445315 0.192932066905 0.129942999594} Untitled_3::C15 120 -1 1 {} H 0.0 {0.674012410202 0.196204227908 0.061806572821} Untitled_3::H6 121 -1 6 {} C 0.0 {0.630304250403 0.268395088564 0.173603714045} Untitled_3::C16 122 -1 6 {} C 0.0 {0.627100111675 0.354301911092 0.123772256317} Untitled_3::C17 123 -1 6 {} C 0.0 {0.652700867496 0.336751054663 0.0279377049442} Untitled_3::C18 124 -1 1 {} H 0.0 {0.612648187413 0.194396846596 0.860704240957} Untitled_3::H7 125 -1 6 {} C 0.0 {0.616715476998 0.265370102681 0.98277971917} Untitled_3::C19 126 -1 1 {} H 0.0 {0.570282665663 0.222450395658 0.0151460823952} Untitled_3::H8 127 -1 6 {} C 0.0 {0.640474635665 0.249621777199 0.895850501873} Untitled_3::C20 128 -1 6 {} C 0.0 {0.711387846131 0.391649465524 0.986131015365} Untitled_3::C21 129 -1 1 {} H 0.0 {0.739674463671 0.446192798511 0.0212961016041} Untitled_3::H9 130 -1 6 {} C 0.0 {0.734286946692 0.376631862934 0.899060494917} Untitled_3::C22 131 -1 1 {} H 0.0 {0.778978955691 0.420613468428 0.86632037675} Untitled_3::H10 132 -1 6 {} C 0.0 {0.699606513204 0.305084874106 0.854104968351} Untitled_3::C23 133 -1 6 {} C 0.0 {0.533843525609 0.390981600778 0.126873722588} Untitled_3::C25 134 -1 6 {} C 0.0 {0.690665237091 0.42134915601 0.165035053226} Untitled_3::C26 135 -1 9 {} F 0.0 {0.685829789552 0.504792275137 0.115696323182} Untitled_3::F1 136 -1 9 {} F 0.0 {0.665397579337 0.437276573404 0.257372620635} Untitled_3::F2 137 -1 9 {} F 0.0 {0.781512535345 0.387304502977 0.162089355996} Untitled_3::F3 138 -1 9 {} F 0.0 {0.508480379678 0.408360930715 0.219016568267} Untitled_3::F4 139 -1 9 {} F 0.0 {0.530882574478 0.473500070633 0.0765112731186} Untitled_3::F5 140 -1 9 {} F 0.0 {0.472127707839 0.326999534918 0.0877857374747} Untitled_3::F6 141 -1 6 {} C 0.0 {0.439729128989 0.793986365847 0.0988380596774} Untitled_4::C1 142 -1 1 {} H 0.0 {0.219141670958 0.803981179477 0.143198283589} Untitled_4::H1 143 -1 6 {} C 0.0 {0.351069702106 0.774626442082 0.0933953816741} Untitled_4::C2 144 -1 6 {} C 0.0 {0.288405591811 0.819135662903 0.145809892071} Untitled_4::C3 145 -1 6 {} C 0.0 {0.472288417347 0.85856508488 0.153231759231} Untitled_4::C4 146 -1 1 {} H 0.0 {0.541551006742 0.870897611914 0.158919511339} Untitled_4::H2 147 -1 6 {} C 0.0 {0.411833536102 0.905461344411 0.201186629806} Untitled_4::C5 148 -1 6 {} C 0.0 {0.32302913996 0.885161261864 0.201508707751} Untitled_4::C6 149 -1 6 {} C 0.0 {0.491282079163 0.735093239584 0.0365395569986} Untitled_4::C7 150 -1 6 {} C 0.0 {0.33813967539 0.700730937064 0.0237742273565} Untitled_4::C8 151 -1 7 {} N 0.0 {0.429005342496 0.679199674078 0.988646352379} Untitled_4::N1 152 -1 6 {} C 0.0 {0.275847650737 0.946214049992 0.268665949905} Untitled_4::C9 153 -1 6 {} C 0.0 {0.429536012343 0.982399566689 0.261925953762} Untitled_4::C10 154 -1 7 {} N 0.0 {0.345867972297 0.0064158836263 0.305594144308} Untitled_4::N2 155 -1 8 {} O 0.0 {0.253876785492 0.661642284637 0.995157511341} Untitled_4::O1 156 -1 8 {} O 0.0 {0.58750612449 0.73548936215 0.0221754914877} Untitled_4::O2 157 -1 8 {} O 0.0 {0.515284765996 0.0254436449602 0.276315039788} Untitled_4::O3 158 -1 8 {} O 0.0 {0.181194244443 0.945698550965 0.292284464149} Untitled_4::O4 159 -1 6 {} C 0.0 {0.33762802246 0.0782970463036 0.373561986486} Untitled_4::C11 160 -1 1 {} H 0.0 {0.199277207634 0.165001876496 0.524954431507} Untitled_4::H3 161 -1 6 {} C 0.0 {0.26019340795 0.0930812494546 0.419560140095} Untitled_4::C12 162 -1 1 {} H 0.0 {0.201514454013 0.0565270666781 0.40336239565} Untitled_4::H4 163 -1 6 {} C 0.0 {0.258775120337 0.155722169064 0.487330515401} Untitled_4::C13 164 -1 6 {} C 0.0 {0.411473249937 0.127724823193 0.391515555123} Untitled_4::C14 165 -1 1 {} H 0.0 {0.470462232314 0.116923803982 0.353953927294} Untitled_4::H5 166 -1 6 {} C 0.0 {0.411064115784 0.190385153129 0.456676840643} Untitled_4::C15 167 -1 1 {} H 0.0 {0.469788776717 0.227920564184 0.469362932206} Untitled_4::H6 168 -1 6 {} C 0.0 {0.33651453637 0.205240465525 0.50611147825} Untitled_4::C16 169 -1 6 {} C 0.0 {0.342049621179 0.274233655415 0.582532481287} Untitled_4::C17 170 -1 6 {} C 0.0 {0.372771819146 0.365778942221 0.548862142534} Untitled_4::C18 171 -1 1 {} H 0.0 {0.471997567968 0.465442336161 0.375156029283} Untitled_4::H7 172 -1 6 {} C 0.0 {0.411570057277 0.375221716151 0.466303949712} Untitled_4::C19 173 -1 1 {} H 0.0 {0.417834572 0.319077831523 0.423049269014} Untitled_4::H8 174 -1 6 {} C 0.0 {0.44222992852 0.45770859985 0.43947581556} Untitled_4::C20 175 -1 6 {} C 0.0 {0.362136282395 0.439842861364 0.602687169995} Untitled_4::C21 176 -1 1 {} H 0.0 {0.329779579491 0.433533757843 0.665427690034} Untitled_4::H9 177 -1 6 {} C 0.0 {0.392880105022 0.521715026861 0.575685762444} Untitled_4::C22 178 -1 1 {} H 0.0 {0.384112633362 0.578476296093 0.617396476332} Untitled_4::H10 179 -1 6 {} C 0.0 {0.434364502485 0.530512124148 0.495458205395} Untitled_4::C23 180 -1 6 {} C 0.0 {0.254821673368 0.283996590227 0.628934996898} Untitled_4::C25 181 -1 6 {} C 0.0 {0.408388019017 0.237170091681 0.647716847035} Untitled_4::C26 182 -1 9 {} F 0.0 {0.417759134072 0.297360657783 0.722917988338} Untitled_4::F1 183 -1 9 {} F 0.0 {0.377673889124 0.150816528744 0.679420639955} Untitled_4::F2 184 -1 9 {} F 0.0 {0.494021290498 0.226774014595 0.603525513482} Untitled_4::F3 185 -1 9 {} F 0.0 {0.221776748225 0.194154729942 0.650555356425} Untitled_4::F4 186 -1 9 {} F 0.0 {0.266650630111 0.335101461621 0.710551778473} Untitled_4::F5 187 -1 9 {} F 0.0 {0.191062920882 0.330553933926 0.570386360585} Untitled_4::F6 188 -1 6 {} C 0.0 {0.160494988545 0.664040784816 0.423905928064} Untitled_5::C1 189 -1 1 {} H 0.0 {0.0441919351806 0.512375184785 0.305466804322} Untitled_5::H1 190 -1 6 {} C 0.0 {0.138842952598 0.605506076818 0.357143870041} Untitled_5::C2 191 -1 6 {} C 0.0 {0.0618811476125 0.555585241828 0.358872500519} Untitled_5::C3 192 -1 6 {} C 0.0 {0.108408032209 0.672543070458 0.499984216819} Untitled_5::C4 193 -1 1 {} H 0.0 {0.126403979229 0.715746437681 0.553368774197} Untitled_5::H2 194 -1 6 {} C 0.0 {0.0315145567592 0.620952215132 0.502258376442} Untitled_5::C5 195 -1 6 {} C 0.0 {0.00901560232524 0.564868784866 0.43338644684} Untitled_5::C6 196 -1 6 {} C 0.0 {0.246663151217 0.712323931577 0.399141944325} Untitled_5::C7 197 -1 6 {} C 0.0 {0.210034336282 0.607723889146 0.285526661609} Untitled_5::C8 198 -1 7 {} N 0.0 {0.277290098703 0.674138281978 0.312178532073} Untitled_5::N1 199 -1 6 {} C 0.0 {0.921417323064 0.518752652916 0.45436329472} Untitled_5::C9 200 -1 6 {} C 0.0 {0.960501227944 0.614972486778 0.574971207358} Untitled_5::C10 201 -1 7 {} N 0.0 {0.891775413898 0.550481450345 0.543432766911} Untitled_5::N2 202 -1 8 {} O 0.0 {0.211708916025 0.554278515673 0.204236568709} Untitled_5::O1 203 -1 8 {} O 0.0 {0.291366034008 0.782332270858 0.450874961956} Untitled_5::O2 204 -1 8 {} O 0.0 {0.959687328336 0.663693648638 0.65971100492} Untitled_5::O3 205 -1 8 {} O 0.0 {0.874890347049 0.453807753863 0.397817534002} Untitled_5::O4 206 -1 6 {} C 0.0 {0.809372009948 0.520629411264 0.592201274285} Untitled_5::C11 207 -1 1 {} H 0.0 {0.622254081761 0.40792446827 0.554082142656} Untitled_5::H3 208 -1 6 {} C 0.0 {0.747429641941 0.471273373236 0.548281174586} Untitled_5::C12 209 -1 1 {} H 0.0 {0.759119579689 0.452253903764 0.481110784964} Untitled_5::H4 210 -1 6 {} C 0.0 {0.670106282619 0.445928587684 0.589762801222} Untitled_5::C13 211 -1 6 {} C 0.0 {0.795261966225 0.543874018877 0.679506379702} Untitled_5::C14 212 -1 1 {} H 0.0 {0.843840827267 0.58223521902 0.714030324514} Untitled_5::H5 213 -1 6 {} C 0.0 {0.717639312602 0.516939589603 0.72295070173} Untitled_5::C15 214 -1 1 {} H 0.0 {0.708454109033 0.53242161553 0.7910388521} Untitled_5::H6 215 -1 6 {} C 0.0 {0.653785025052 0.469043357658 0.676866911926} Untitled_5::C16 216 -1 6 {} C 0.0 {0.564247752452 0.438719252177 0.719416101212} Untitled_5::C17 217 -1 6 {} C 0.0 {0.523144756297 0.507938850799 0.783460748461} Untitled_5::C18 218 -1 1 {} H 0.0 {0.581821290396 0.68092089132 0.907132364066} Untitled_5::H7 219 -1 6 {} C 0.0 {0.573472842742 0.574995464295 0.816013052213} Untitled_5::C19 220 -1 1 {} H 0.0 {0.637772497179 0.586067468941 0.790541373416} Untitled_5::H8 221 -1 6 {} C 0.0 {0.541135191607 0.629022899355 0.881600556506} Untitled_5::C20 222 -1 6 {} C 0.0 {0.435044584165 0.499019425083 0.81251372038} Untitled_5::C21 223 -1 1 {} H 0.0 {0.393173890054 0.449371703814 0.784236851436} Untitled_5::H9 224 -1 6 {} C 0.0 {0.402056612332 0.555107961359 0.878660954009} Untitled_5::C22 225 -1 1 {} H 0.0 {0.33484551322 0.548874499269 0.900870177367} Untitled_5::H10 226 -1 6 {} C 0.0 {0.456985577075 0.617970257537 0.914961421614} Untitled_5::C23 227 -1 6 {} C 0.0 {0.502376301436 0.41921101591 0.644522356052} Untitled_5::C25 228 -1 6 {} C 0.0 {0.578101153041 0.356536263192 0.77195968094} Untitled_5::C26 229 -1 9 {} F 0.0 {0.492914455485 0.325727429575 0.806504080494} Untitled_5::F1 230 -1 9 {} F 0.0 {0.61776666819 0.287595231082 0.716414478403} Untitled_5::F2 231 -1 9 {} F 0.0 {0.636463325486 0.377805992189 0.845215443519} Untitled_5::F3 232 -1 9 {} F 0.0 {0.541055938317 0.350505406222 0.587694061481} Untitled_5::F4 233 -1 9 {} F 0.0 {0.417806966132 0.388590290845 0.679177970885} Untitled_5::F5 234 -1 9 {} F 0.0 {0.48989417327 0.499799535064 0.593131077256} Untitled_5::F6 235 -1 6 {} C 0.0 {0.953238963088 0.113403144129 0.592867295645} Untitled_6::C1 236 -1 1 {} H 0.0 {0.0027429877661 0.170069275177 0.382015874072} Untitled_6::H1 237 -1 6 {} C 0.0 {0.993126532344 0.155525150366 0.522011035921} Untitled_6::C2 238 -1 6 {} C 0.0 {0.974747323834 0.134110811384 0.436072015425} Untitled_6::C3 239 -1 6 {} C 0.0 {0.895279777671 0.0440185723346 0.581339305927} Untitled_6::C4 240 -1 1 {} H 0.0 {0.862941212012 0.0123706527299 0.636336868836} Untitled_6::H2 241 -1 6 {} C 0.0 {0.880694871778 0.0186576908774 0.493676902415} Untitled_6::C5 242 -1 6 {} C 0.0 {0.917991330724 0.0643160366264 0.423490280915} Untitled_6::C6 243 -1 6 {} C 0.0 {0.984542763208 0.155724356874 0.678764241753} Untitled_6::C7 244 -1 6 {} C 0.0 {0.0550867602346 0.22625291674 0.555341489844} Untitled_6::C8 245 -1 7 {} N 0.0 {0.0467884702834 0.228113889209 0.654495702214} Untitled_6::N1 246 -1 6 {} C 0.0 {0.886354783762 0.0245616560052 0.336417197847} Untitled_6::C9 247 -1 6 {} C 0.0 {0.82410893337 0.943048280086 0.457476847517} Untitled_6::C10 248 -1 7 {} N 0.0 {0.826665427468 0.949744126871 0.358658387198} Untitled_6::N2 249 -1 8 {} O 0.0 {0.114624881757 0.280415088865 0.501200430582} Untitled_6::O1 250 -1 8 {} O 0.0 {0.958752391654 0.129901271789 0.7685742023} Untitled_6::O2 251 -1 8 {} O 0.0 {0.775029879356 0.876539798441 0.509634539411} Untitled_6::O3 252 -1 8 {} O 0.0 {0.910427617548 0.0546071330669 0.246391503546} Untitled_6::O4 253 -1 6 {} C 0.0 {0.77868975205 0.8920768694 0.294265456198} Untitled_6::C11 254 -1 1 {} H 0.0 {0.719547082038 0.889459330867 0.0808316696511} Untitled_6::H3 255 -1 6 {} C 0.0 {0.777293885615 0.914345290649 0.206197212332} Untitled_6::C12 256 -1 1 {} H 0.0 {0.819791295671 0.96538964471 0.18186778172} Untitled_6::H4 257 -1 6 {} C 0.0 {0.721761204559 0.870813095317 0.149367387045} Untitled_6::C13 258 -1 6 {} C 0.0 {0.73223546863 0.820048793893 0.323712984451} Untitled_6::C14 259 -1 1 {} H 0.0 {0.737534012465 0.800072026669 0.391285561324} Untitled_6::H5 260 -1 6 {} C 0.0 {0.678863222197 0.773498807733 0.266254976144} Untitled_6::C15 261 -1 1 {} H 0.0 {0.646884138842 0.713879465761 0.288183705393} Untitled_6::H6 262 -1 6 {} C 0.0 {0.668536589902 0.803370120389 0.179984308811} Untitled_6::C16 263 -1 6 {} C 0.0 {0.601394309503 0.762230863314 0.11679195557} Untitled_6::C17 264 -1 6 {} C 0.0 {0.512428415145 0.741524061019 0.165804645397} Untitled_6::C18 265 -1 1 {} H 0.0 {0.390096243559 0.809843149885 0.340487220715} Untitled_6::H7 266 -1 6 {} C 0.0 {0.484440726438 0.79363687098 0.236415581736} Untitled_6::C19 267 -1 1 {} H 0.0 {0.520218018938 0.851817103451 0.253267142357} Untitled_6::H8 268 -1 6 {} C 0.0 {0.409319235013 0.77102613002 0.284226872509} Untitled_6::C20 269 -1 6 {} C 0.0 {0.460953525408 0.669876963462 0.139943186679} Untitled_6::C21 270 -1 1 {} H 0.0 {0.480908186015 0.629653832435 0.0848734701655} Untitled_6::H9 271 -1 6 {} C 0.0 {0.383585416176 0.649884573806 0.185513961633} Untitled_6::C22 272 -1 1 {} H 0.0 {0.342188873611 0.596560216839 0.163095519753} Untitled_6::H10 273 -1 6 {} C 0.0 {0.359442174591 0.698961824941 0.259774850937} Untitled_6::C23 274 -1 6 {} C 0.0 {0.585829124266 0.832005065085 0.0405021018301} Untitled_6::C25 275 -1 6 {} C 0.0 {0.64057962505 0.674692547662 0.0795222805888} Untitled_6::C26 276 -1 9 {} F 0.0 {0.580026864919 0.634948771506 0.0142957593824} Untitled_6::F1 277 -1 9 {} F 0.0 {0.725927304239 0.693146032423 0.0369494357255} Untitled_6::F2 278 -1 9 {} F 0.0 {0.654209512243 0.612054232839 0.152297415579} Untitled_6::F3 279 -1 9 {} F 0.0 {0.669796164397 0.848717516131 0.995241036807} Untitled_6::F4 280 -1 9 {} F 0.0 {0.52110445896 0.800131490346 0.974982113121} Untitled_6::F5 281 -1 9 {} F 0.0 {0.552733392929 0.915397435595 0.0783992143381} Untitled_6::F6 282 -1 1 {} H 0.0 {0.806522299032 0.296112123189 0.821399916039} H_head 283 -1 1 {} H 0.0 {0.0785891436492 0.272157702348 0.698256322954} H_tail 284 -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} {15.362007663 15.362007663 15.362007663 90 90 90} {{1 0 0} {0 1 0} {0 0 1}} {{1 0 0} {0 1 0} {0 0 1}} P1 1 {{15.362007663 0 0} {0 15.362007663 0} {0 0 15.362007663}} {{0.0650956581937 0 0} {0 0.0650956581937 0} {0 0 0.0650956581937}} @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 0 0 0 9 2 0 0 10 9 0 0 10 8 0 0 11 7 0 0 12 6 0 0 13 11 0 0 13 12 0 0 14 9 0 0 15 8 0 0 16 12 0 0 17 11 0 0 18 13 0 0 22 19 0 0 22 20 0 1 27 22 0 1 21 20 0 0 20 18 0 1 23 18 0 1 24 23 0 0 25 23 0 1 26 25 0 0 27 25 0 1 28 27 0 0 29 28 0 0 33 30 0 0 33 31 0 1 38 33 0 1 32 31 0 0 31 29 0 1 34 29 0 1 35 34 0 0 36 34 0 1 37 36 0 0 38 36 0 1 39 28 0 0 40 28 0 0 41 40 0 0 42 40 0 0 43 40 0 0 44 39 0 0 45 39 0 0 46 39 0 0 50 48 0 0 50 49 0 1 54 50 0 1 49 47 0 1 51 47 0 1 52 51 0 0 53 51 0 1 54 53 0 1 55 47 0 0 56 49 0 0 57 56 0 0 57 55 0 0 58 54 0 0 59 53 0 0 60 58 0 0 60 59 0 0 61 56 0 0 62 55 0 0 63 59 0 0 64 58 0 0 65 60 0 0 69 66 0 0 69 67 0 1 74 69 0 1 68 67 0 0 67 65 0 1 70 65 0 1 71 70 0 0 72 70 0 1 73 72 0 0 74 72 0 1 75 74 0 0 76 75 0 0 80 77 0 0 80 78 0 1 85 80 0 1 79 78 0 0 78 76 0 1 81 76 0 1 82 81 0 0 83 81 0 1 84 83 0 0 85 83 0 1 86 75 0 0 87 75 0 0 88 87 0 0 89 87 0 0 90 87 0 0 91 86 0 0 92 86 0 0 93 86 0 0 85 10 0 0 97 95 0 0 97 96 0 1 101 97 0 1 96 94 0 1 98 94 0 1 99 98 0 0 100 98 0 1 101 100 0 1 102 94 0 0 103 96 0 0 104 103 0 0 104 102 0 0 105 101 0 0 106 100 0 0 107 105 0 0 107 106 0 0 108 103 0 0 109 102 0 0 110 106 0 0 111 105 0 0 112 107 0 0 116 113 0 0 116 114 0 1 121 116 0 1 115 114 0 0 114 112 0 1 117 112 0 1 118 117 0 0 119 117 0 1 120 119 0 0 121 119 0 1 122 121 0 0 123 122 0 0 127 124 0 0 127 125 0 1 132 127 0 1 126 125 0 0 125 123 0 1 128 123 0 1 129 128 0 0 130 128 0 1 131 130 0 0 132 130 0 1 133 122 0 0 134 122 0 0 135 134 0 0 136 134 0 0 137 134 0 0 138 133 0 0 139 133 0 0 140 133 0 0 132 57 0 0 144 142 0 0 144 143 0 1 148 144 0 1 143 141 0 1 145 141 0 1 146 145 0 0 147 145 0 1 148 147 0 1 149 141 0 0 150 143 0 0 151 150 0 0 151 149 0 0 152 148 0 0 153 147 0 0 154 152 0 0 154 153 0 0 155 150 0 0 156 149 0 0 157 153 0 0 158 152 0 0 159 154 0 0 163 160 0 0 163 161 0 1 168 163 0 1 162 161 0 0 161 159 0 1 164 159 0 1 165 164 0 0 166 164 0 1 167 166 0 0 168 166 0 1 169 168 0 0 170 169 0 0 174 171 0 0 174 172 0 1 179 174 0 1 173 172 0 0 172 170 0 1 175 170 0 1 176 175 0 0 177 175 0 1 178 177 0 0 179 177 0 1 180 169 0 0 181 169 0 0 182 181 0 0 183 181 0 0 184 181 0 0 185 180 0 0 186 180 0 0 187 180 0 0 179 104 0 0 191 189 0 0 191 190 0 1 195 191 0 1 190 188 0 1 192 188 0 1 193 192 0 0 194 192 0 1 195 194 0 1 196 188 0 0 197 190 0 0 198 197 0 0 198 196 0 0 199 195 0 0 200 194 0 0 201 199 0 0 201 200 0 0 202 197 0 0 203 196 0 0 204 200 0 0 205 199 0 0 206 201 0 0 210 207 0 0 210 208 0 1 215 210 0 1 209 208 0 0 208 206 0 1 211 206 0 1 212 211 0 0 213 211 0 1 214 213 0 0 215 213 0 1 216 215 0 0 217 216 0 0 221 218 0 0 221 219 0 1 226 221 0 1 220 219 0 0 219 217 0 1 222 217 0 1 223 222 0 0 224 222 0 1 225 224 0 0 226 224 0 1 227 216 0 0 228 216 0 0 229 228 0 0 230 228 0 0 231 228 0 0 232 227 0 0 233 227 0 0 234 227 0 0 226 151 0 0 238 236 0 0 238 237 0 1 242 238 0 1 237 235 0 1 239 235 0 1 240 239 0 0 241 239 0 1 242 241 0 1 243 235 0 0 244 237 0 0 245 244 0 0 245 243 0 0 246 242 0 0 247 241 0 0 248 246 0 0 248 247 0 0 249 244 0 0 250 243 0 0 251 247 0 0 252 246 0 0 253 248 0 0 257 254 0 0 257 255 0 1 262 257 0 1 256 255 0 0 255 253 0 1 258 253 0 1 259 258 0 0 260 258 0 1 261 260 0 0 262 260 0 1 263 262 0 0 264 263 0 0 268 265 0 0 268 266 0 1 273 268 0 1 267 266 0 0 266 264 0 1 269 264 0 1 270 269 0 0 271 269 0 1 272 271 0 0 273 271 0 1 274 263 0 0 275 263 0 0 276 275 0 0 277 275 0 0 278 275 0 0 279 274 0 0 280 274 0 0 281 274 0 0 273 198 0 0 282 38 0 0 283 245 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 0 0} 0 6 6 4 {0 0 0} 0 7 7 6 {0 0 0} 0 8 8 0 {0 0 0} 0 9 9 2 {0 0 0} 0 10 10 9 {0 0 0} 0 11 10 8 {0 0 0} 0 12 11 7 {0 0 0} 0 13 12 6 {0 0 0} 0 14 13 11 {0 0 0} 0 15 13 12 {0 0 0} 0 16 14 9 {0 0 0} 0 17 15 8 {0 0 0} 0 18 16 12 {0 0 0} 0 19 17 11 {0 0 0} 0 20 18 13 {0 0 0} 0 21 22 19 {0 0 0} 0 22 22 20 {0 0 0} 0 23 27 22 {0 0 0} 0 24 21 20 {0 0 0} 0 25 20 18 {0 0 0} 0 26 23 18 {0 0 0} 0 27 24 23 {0 0 0} 0 28 25 23 {0 0 0} 0 29 26 25 {0 0 0} 0 30 27 25 {0 0 0} 0 31 28 27 {0 0 0} 0 32 29 28 {1 0 0} 0 33 33 30 {0 0 0} 0 34 33 31 {0 0 0} 0 35 38 33 {0 0 0} 0 36 32 31 {-1 0 0} 0 37 31 29 {0 0 0} 0 38 34 29 {0 0 0} 0 39 35 34 {0 0 0} 0 40 36 34 {0 0 0} 0 41 37 36 {0 0 0} 0 42 38 36 {0 0 0} 0 43 39 28 {0 0 0} 0 44 40 28 {0 0 0} 0 45 41 40 {0 0 0} 0 46 42 40 {0 0 0} 0 47 43 40 {0 0 0} 0 48 44 39 {0 0 0} 0 49 45 39 {1 0 0} 0 50 46 39 {1 0 0} 0 51 50 48 {0 0 0} 0 52 50 49 {0 0 0} 0 53 54 50 {0 0 0} 0 54 49 47 {0 0 0} 0 55 51 47 {0 0 0} 0 56 52 51 {0 0 0} 0 57 53 51 {0 0 0} 0 58 54 53 {0 0 0} 0 59 55 47 {0 0 0} 0 60 56 49 {0 0 0} 0 61 57 56 {0 0 0} 0 62 57 55 {0 0 0} 0 63 58 54 {0 0 0} 0 64 59 53 {0 0 0} 0 65 60 58 {0 0 0} 0 66 60 59 {0 0 0} 0 67 61 56 {0 0 0} 0 68 62 55 {0 0 0} 0 69 63 59 {0 0 0} 0 70 64 58 {0 0 0} 0 71 65 60 {0 0 0} 0 72 69 66 {0 0 0} 0 73 69 67 {0 0 0} 0 74 74 69 {0 0 0} 0 75 68 67 {0 0 0} 0 76 67 65 {0 0 0} 0 77 70 65 {0 0 0} 0 78 71 70 {0 0 0} 0 79 72 70 {0 0 0} 0 80 73 72 {0 0 0} 0 81 74 72 {0 0 0} 0 82 75 74 {0 0 1} 0 83 76 75 {0 0 0} 0 84 80 77 {0 0 0} 0 85 80 78 {0 0 0} 0 86 85 80 {0 0 0} 0 87 79 78 {0 0 -1} 0 88 78 76 {0 0 0} 0 89 81 76 {0 0 0} 0 90 82 81 {0 0 0} 0 91 83 81 {0 0 0} 0 92 84 83 {0 0 0} 0 93 85 83 {0 0 0} 0 94 86 75 {0 0 0} 0 95 87 75 {0 0 0} 0 96 88 87 {-1 0 0} 0 97 89 87 {-1 0 0} 0 98 90 87 {0 0 0} 0 99 91 86 {0 0 0} 0 100 92 86 {0 0 0} 0 101 93 86 {0 0 0} 0 102 85 10 {0 -1 0} 0 103 97 95 {0 0 0} 0 104 97 96 {0 0 0} 0 105 101 97 {0 0 0} 0 106 96 94 {0 0 0} 0 107 98 94 {0 0 0} 0 108 99 98 {0 0 0} 0 109 100 98 {0 0 0} 0 110 101 100 {0 0 0} 0 111 102 94 {0 0 0} 0 112 103 96 {0 0 0} 0 113 104 103 {0 0 0} 0 114 104 102 {0 0 0} 0 115 105 101 {0 -1 0} 0 116 106 100 {0 0 0} 0 117 107 105 {0 0 0} 0 118 107 106 {0 -1 0} 0 119 108 103 {0 0 0} 0 120 109 102 {0 0 0} 0 121 110 106 {0 0 0} 0 122 111 105 {0 0 0} 0 123 112 107 {0 0 0} 0 124 116 113 {0 0 0} 0 125 116 114 {0 0 0} 0 126 121 116 {0 0 0} 0 127 115 114 {0 0 0} 0 128 114 112 {0 0 0} 0 129 117 112 {0 0 0} 0 130 118 117 {0 0 0} 0 131 119 117 {0 0 0} 0 132 120 119 {0 0 0} 0 133 121 119 {0 0 0} 0 134 122 121 {0 0 0} 0 135 123 122 {0 0 0} 0 136 127 124 {0 0 0} 0 137 127 125 {0 0 0} 0 138 132 127 {0 0 0} 0 139 126 125 {0 0 -1} 0 140 125 123 {0 0 1} 0 141 128 123 {0 0 1} 0 142 129 128 {0 0 -1} 0 143 130 128 {0 0 0} 0 144 131 130 {0 0 0} 0 145 132 130 {0 0 0} 0 146 133 122 {0 0 0} 0 147 134 122 {0 0 0} 0 148 135 134 {0 0 0} 0 149 136 134 {0 0 0} 0 150 137 134 {0 0 0} 0 151 138 133 {0 0 0} 0 152 139 133 {0 0 0} 0 153 140 133 {0 0 0} 0 154 132 57 {0 0 0} 0 155 144 142 {0 0 0} 0 156 144 143 {0 0 0} 0 157 148 144 {0 0 0} 0 158 143 141 {0 0 0} 0 159 145 141 {0 0 0} 0 160 146 145 {0 0 0} 0 161 147 145 {0 0 0} 0 162 148 147 {0 0 0} 0 163 149 141 {0 0 0} 0 164 150 143 {0 0 0} 0 165 151 150 {0 0 1} 0 166 151 149 {0 0 1} 0 167 152 148 {0 0 0} 0 168 153 147 {0 0 0} 0 169 154 152 {0 -1 0} 0 170 154 153 {0 -1 0} 0 171 155 150 {0 0 1} 0 172 156 149 {0 0 0} 0 173 157 153 {0 -1 0} 0 174 158 152 {0 0 0} 0 175 159 154 {0 0 0} 0 176 163 160 {0 0 0} 0 177 163 161 {0 0 0} 0 178 168 163 {0 0 0} 0 179 162 161 {0 0 0} 0 180 161 159 {0 0 0} 0 181 164 159 {0 0 0} 0 182 165 164 {0 0 0} 0 183 166 164 {0 0 0} 0 184 167 166 {0 0 0} 0 185 168 166 {0 0 0} 0 186 169 168 {0 0 0} 0 187 170 169 {0 0 0} 0 188 174 171 {0 0 0} 0 189 174 172 {0 0 0} 0 190 179 174 {0 0 0} 0 191 173 172 {0 0 0} 0 192 172 170 {0 0 0} 0 193 175 170 {0 0 0} 0 194 176 175 {0 0 0} 0 195 177 175 {0 0 0} 0 196 178 177 {0 0 0} 0 197 179 177 {0 0 0} 0 198 180 169 {0 0 0} 0 199 181 169 {0 0 0} 0 200 182 181 {0 0 0} 0 201 183 181 {0 0 0} 0 202 184 181 {0 0 0} 0 203 185 180 {0 0 0} 0 204 186 180 {0 0 0} 0 205 187 180 {0 0 0} 0 206 179 104 {0 0 0} 0 207 191 189 {0 0 0} 0 208 191 190 {0 0 0} 0 209 195 191 {0 0 0} 0 210 190 188 {0 0 0} 0 211 192 188 {0 0 0} 0 212 193 192 {0 0 0} 0 213 194 192 {0 0 0} 0 214 195 194 {0 0 0} 0 215 196 188 {0 0 0} 0 216 197 190 {0 0 0} 0 217 198 197 {0 0 0} 0 218 198 196 {0 0 0} 0 219 199 195 {1 0 0} 0 220 200 194 {1 0 0} 0 221 201 199 {0 0 0} 0 222 201 200 {0 0 0} 0 223 202 197 {0 0 0} 0 224 203 196 {0 0 0} 0 225 204 200 {0 0 0} 0 226 205 199 {0 0 0} 0 227 206 201 {0 0 0} 0 228 210 207 {0 0 0} 0 229 210 208 {0 0 0} 0 230 215 210 {0 0 0} 0 231 209 208 {0 0 0} 0 232 208 206 {0 0 0} 0 233 211 206 {0 0 0} 0 234 212 211 {0 0 0} 0 235 213 211 {0 0 0} 0 236 214 213 {0 0 0} 0 237 215 213 {0 0 0} 0 238 216 215 {0 0 0} 0 239 217 216 {0 0 0} 0 240 221 218 {0 0 0} 0 241 221 219 {0 0 0} 0 242 226 221 {0 0 0} 0 243 220 219 {0 0 0} 0 244 219 217 {0 0 0} 0 245 222 217 {0 0 0} 0 246 223 222 {0 0 0} 0 247 224 222 {0 0 0} 0 248 225 224 {0 0 0} 0 249 226 224 {0 0 0} 0 250 227 216 {0 0 0} 0 251 228 216 {0 0 0} 0 252 229 228 {0 0 0} 0 253 230 228 {0 0 0} 0 254 231 228 {0 0 0} 0 255 232 227 {0 0 0} 0 256 233 227 {0 0 0} 0 257 234 227 {0 0 0} 0 258 226 151 {0 0 0} 0 259 238 236 {1 0 0} 0 260 238 237 {0 0 0} 0 261 242 238 {0 0 0} 0 262 237 235 {0 0 0} 0 263 239 235 {0 0 0} 0 264 240 239 {0 0 0} 0 265 241 239 {0 0 0} 0 266 242 241 {0 0 0} 0 267 243 235 {0 0 0} 0 268 244 237 {-1 0 0} 0 269 245 244 {0 0 0} 0 270 245 243 {-1 0 0} 0 271 246 242 {0 0 0} 0 272 247 241 {0 1 0} 0 273 248 246 {0 1 0} 0 274 248 247 {0 0 0} 0 275 249 244 {0 0 0} 0 276 250 243 {0 0 0} 0 277 251 247 {0 0 0} 0 278 252 246 {0 0 0} 0 279 253 248 {0 0 0} 0 280 257 254 {0 0 0} 0 281 257 255 {0 0 0} 0 282 262 257 {0 0 0} 0 283 256 255 {0 0 0} 0 284 255 253 {0 0 0} 0 285 258 253 {0 0 0} 0 286 259 258 {0 0 0} 0 287 260 258 {0 0 0} 0 288 261 260 {0 0 0} 0 289 262 260 {0 0 0} 0 290 263 262 {0 0 0} 0 291 264 263 {0 0 0} 0 292 268 265 {0 0 0} 0 293 268 266 {0 0 0} 0 294 273 268 {0 0 0} 0 295 267 266 {0 0 0} 0 296 266 264 {0 0 0} 0 297 269 264 {0 0 0} 0 298 270 269 {0 0 0} 0 299 271 269 {0 0 0} 0 300 272 271 {0 0 0} 0 301 273 271 {0 0 0} 0 302 274 263 {0 0 0} 0 303 275 263 {0 0 0} 0 304 276 275 {0 0 0} 0 305 277 275 {0 0 0} 0 306 278 275 {0 0 0} 0 307 279 274 {0 0 1} 0 308 280 274 {0 0 1} 0 309 281 274 {0 0 0} 0 310 273 198 {0 0 0} 0 311 282 38 {0 0 0} 0 312 283 245 {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 ? {} {} {} {}}} } } }