job.id 1026 job.name XXXOptical_6FDABAPP_6_geofrom1020 job.description {} job.status finished job.submitted {2025-07-25 23:21:43} job.started {2025-07-25 23:21:44} job.finished {2025-07-26 04:17:54} job.queue 2 job.errormsg {} job.pid 0 job.userid 1 job.priority 5 job.jobserverid 2 data.joboptions {_protocol_type_ JobControl _description_ {} passwd {} _name_ {} nproc 3 priority 5 _protocol_id_ 0 _protocol_pid_ 0 _version_ 1.1 context {} user user} data.script {# # Basic script for running batch jobs # package require logger package require MD::Stage package require MD::TaskManager package require MD.Results package require memory package require MD::Workspace package require jobcontrol package require JobOptions package require base64 package require md5 proc task {args} {} namespace eval ::MD {} logger::setlevel notice set gLog [logger::init MD] ::logger::import -all -prefix "log_" -namespace ::MD MD # # Get the version of the Jobs database in use # set JobDBVersion [join [db "SELECT value FROM info WHERE item ='Version'"]] # If we want to start child jobs, we need a jobcontrol object, on the localhost Jobcontrol::JobcontrolProxy ::jobcontrol # # The workspace # set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND item = 'workspace'"] 0]] ::MD::Workspace ::workspace ::workspace fromString $tmp # # Any input files? # set lfiles "" if {[catch { set lfiles [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'input_file'"]] } err_msg]} { error "Failed while getting input files:\n $err_msg" } set linput_files "" foreach elem $lfiles { set fname [file join [pwd] [lindex $elem 0]] set stage_id [lindex $elem 1] set fdata [lindex $elem 2] # See if this is base64 encoded if {![catch {set decode64_data [::base64::decode $fdata]}]} { # Succesfully decoded from base64 set fdata $decode64_data unset decode64_data } if {[catch { set fd [open $fname "w"] fconfigure $fd -encoding binary -translation binary puts -nonewline $fd $fdata close $fd } err_msg]} { error "Failed to write Job input file $fname:\n $err_msg" } unset fdata lappend linput_files [list $stage_id $fname] } # # Get info about this job # if {$JobDBVersion < 3.0} { set jdata [join [db "SELECT name, queue, userid, priority, jobserverid FROM job WHERE id = $::job::id"]] set ::job::name [lindex $jdata 0] set ::job::queueid [lindex $jdata 1] set ::job::userid [lindex $jdata 2] set ::job::priority [lindex $jdata 3] set ::job::parent 0 } else { set jdata [join [db "SELECT name, queue, userid, priority, jobserverid, parent FROM job WHERE id = $::job::id"]] set ::job::name [lindex $jdata 0] set ::job::queueid [lindex $jdata 1] set ::job::userid [lindex $jdata 2] set ::job::priority [lindex $jdata 3] set ::job::parent [lindex $jdata 5] } set ::job::username "" set ::job::queue "" if {[string is integer -strict $::job::userid]} { # Get the username from the user id if {[catch {set ::job::username [join [db "SELECT name FROM user WHERE id = $::job::userid"]]}]} { set ::job::username [join [db "SELECT name FROM \[user\] WHERE id = $::job::userid"]] } } if {[string is integer -strict $::job::queueid]} { # Get the queue name from the queue id set ::job::queue [join [join [db "SELECT name FROM queue WHERE id = $::job::queueid"]]] } # # Get the nproc option in order to pass it along to subjobs if any # set ::job::nproc 1 set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND item = 'joboptions'"] 0]] foreach {opt_name opt_value} $tmp { if {$opt_name == "nproc"} { set ::job::nproc $opt_value } } # # Set up information about the job in the workspace # ::workspace eval namespace eval ::job [list set id $::job::id] ::workspace eval [list set ::job::parent $::job::parent] ::workspace eval [list set ::job::serverId [info hostname]] ::workspace eval [list set ::job::dir [pwd]] ::workspace eval [list set ::job::name [join $::job::name "_"]] ::workspace eval [list set ::job::queueid $::job::queueid] ::workspace eval [list set ::job::queue $::job::queue] ::workspace eval [list set ::job::userid $::job::userid] ::workspace eval [list set ::job::username $::job::username] ::workspace eval [list set ::job::priority $::job::priority] ::workspace eval [list set ::job::nproc $::job::nproc] # Prepare a list of command to execute from the calling job. ::workspace eval [::list set ::subjob_commands ""] # # And forcefield, if required # set ff_local [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_local'"]] if {[::workspace eval {info exists __fffile}]} { package require MD::FF ::MD::FF ::FF ::FF configure -silent 1 catch { if {$ff_local != ""} { # Load a local forcefield set fname [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_file'"]] if {[string range $fname 0 0] == "\{"} { set fname [join $fname] } set fdata [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_content'"]] if {[string range $fdata 0 0] == "\{"} { set fdata [join $fdata] } # See if this is base64 encoded if {![catch {set decode64_data [::base64::decode $fdata]}]} { # Succesfully decoded from base64 set fdata $decode64_data unset decode64_data } set fd [open $fname "w"] puts -nonewline $fd $fdata close $fd ::FF readFF [file join [pwd] $fname] ::FF configure -forcefield $ff_local # Update the workspace for sub-jobs if any ::workspace eval [list set __fffile [::FF fffile]] ::workspace eval [list set __ff $ff_local] } else { # Setup a forcefield from Forcefield.kit set __fffile [::workspace eval {set __fffile}] ::FF readFF $__fffile set __ff [::workspace eval {set __ff}] ::FF configure -forcefield $__ff } set ::FF ::FF set fdata "" # On old JS the ff_file_content might not be available catch {set fdata [::FF ff_file_content]} if {$fdata != ""} { set ffmd5 [::md5::md5 -hex $fdata] unset fdata set cur_ff [::FF cget -forcefield] set cur_file [::FF fffile] puts "\nForcefield set to: $cur_ff\n File: $cur_file \t md5 sum: $ffmd5\n" } } } # # The stages, ignoring everything else like the flowchart # set ok 0 set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND LOWER(item) = 'flowchart'"] 0]] if {[string length $tmp] > 2} { foreach {item data} $tmp { switch $item { "StageHandler" { ::MD::Stage::Handler stageHandler -workspace ::workspace stageHandler fromString $data set ok 1 } } } } else { # No flowchart, but maybe a stagehandler... set data [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND LOWER(item) = 'stagehandler'"] 0]] if {[string length $data] > 2} { ::MD::Stage::Handler stageHandler -workspace ::workspace stageHandler fromString $data set ok 1 } } unset -nocomplain tmp if {!$ok} { error "Could not find the stage information!" } # # Other tools that we need # ::MD::TaskManager taskmanager if {[file exists Job.xml]} { file delete -force Job.xml } ::MD::Results::Handler Results -file Job.xml # # Finally, do the real work # set stage [stageHandler getInitialStage] $stage configure -workspace ::workspace -workingdirectory [pwd] $stage run 0 # # And save any unsaved results # Results save # # Write down the final workspace if this job was started by another # if {$::job::parent > 0} { set fd [open "final_workspace.txt" "w"] puts $fd [::workspace toString] close $fd } } data.StageHandler {Class ::MD::Stage::Handler Version 1.2 Stages { md-stage-start-67618c3b-69d6-4113-b4d6-912e95c43089 {} ::MD::Stage::Start { Class ::MD::Stage::Start Version 1.2 Id md-stage-start-67618c3b-69d6-4113-b4d6-912e95c43089 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-0baa973c-9f21-4ec0-8d36-15663c2062db MD::VASP6api::Batch ::MD::VASP6api::Stage { Base { Class ::MD::VASP6api::Stage Version 1.2 Id md-vasp6api-stage-0baa973c-9f21-4ec0-8d36-15663c2062db Options {-system {$system} -results ::Results -stageid 1 -stdout stdout -master {} -debug 0 -iteration {} -stderr stderr -Base::system {$system} -workingdirectory .} } Class ::MD::VASP6api::Stage Version 1.0 VASPOptions { ACFDT-RPARmode 0 ACFDT-RPAmode 0 ActualKMesh {1 1 1} ActualKSpacings {0.366 0.366 0.366} BandStructure/_description_ {} BandStructure/_name_ {} BandStructure/_protocol_id_ 0 BandStructure/_protocol_pid_ 0 BandStructure/_protocol_type_ BandStructure BandStructure/_version_ 2.1 BandStructure/explicitpath 0 BandStructure/labels {} BandStructure/maxpoints 40 BandStructure/module VASP BandStructure/npertask 40 BandStructure/npoints {} BandStructure/symmetrypoints {} BandStructure/vertices {} DDH-DSH_decay 1.26 DDH-DSH_longrange 0.1 DimerVASP 0 Efield_direction x-axis ElPhonmode 0 FFTcharges 0 GWRcalc {quasiparticle shifts} GWRmode 0 GW_ismear Gaussian GW_metals 0 GW_mporder 1 GW_sigma 0.2 GW_sigmaGauss 0.05 GWalgorithm {eigenvalues for G (GW0)} GWcalc {quasiparticle shifts} GWmode 0 Gshift 1 HF_Gshift 1 HF_amix 0.2 HF_bstr_kmesh {as for non-local exchange} HF_kInputmode {set spacing between k-points} HF_kPointMode 0 HF_kSpacing 0.5 HF_nk1_base 1 HF_nk2_base 1 HF_nk3_base 1 HF_nkodd 0 HF_nkx 4 HF_nky 4 HF_nkz 4 HF_timestep 0.4 HF_timestep_initial 0.4 MLFF_Task_MD {Create forcefield by on-the-fly learning} ML_Gwidth_angular {} ML_Gwidth_radial 0.5 ML_Rcut_angular 5.0 ML_Rcut_radial 8.0 ML_atomicEnergy 0 ML_atomicenergy {} ML_energyscaling {average energy of training data} ML_handleOverflow 1 ML_heatFlux 0 ML_lmax 3 ML_nMLFFstepsmin {} ML_nbasisfunct_angular 8 ML_nbasisfunct_radial 12 ML_nconfigstemp 5 ML_nrefconfigsmax {} ML_nstructuremax {} ML_output_frequency 1 ML_pair-correlation 1 ML_thresholdconfigfactor 0.6 ML_thresholdfactor {} ML_thresholdforceserror 0.002 ML_thresholdsparsification {} ML_thresholdupdate automatic ML_thresholdupdatefactor 1.0 ML_weight_energy 1.0 ML_weight_forces 1.0 ML_weight_radial 0.1 ML_weight_stress 1.0 MP2mode 0 NEBinVASP 0 TDHFmode 0 TimeEv_nbands_occ {} TimeEv_nbands_unocc {} TimeEvmode 0 TimeStep_definition {via complex shift} _description_ {} _name_ {} _protocol_id_ 0 _protocol_pid_ 0 _protocol_type_ VASP _version_ 2.4 acfdt-rpa_metals 0 addgrid 0 algo {Normal (blocked Davidson)} algoHF {Damped molecular dynamics} amix 0.2 apaco {} applyMLFF_ElPhon 0 applyMLFF_MT 0 applyMLFF_OPT 0 applyMLFF_SP 0 apply_localization immediately apply_solvation 0 backgroundCharge 0 bandstructure 0 cshift 0.1 cshiftGW {} cshiftTimeEv {} default_encut 400.000 delayeach 0 description {} displacement 0.015 displacement_number 1 dos 1 dos_Gshift 1 dos_ismear Gaussian dos_kInputmode {set spacing between k-points} dos_kSpacing 0.25 dos_mporder 1 dos_nkodd 0 dos_nkx 9 dos_nkxmult 2 dos_nky 9 dos_nkymult 2 dos_nkz 9 dos_nkzmult 2 dos_projection {automatic choice} dos_sigma 0.2 dos_sigmaGauss 0.05 ediff 1.0e-05 ediffg -0.02 efield 0 efield_dir none elastic 0 elements_sites elements elphon_calculation {Single configuration (Zacharias-Giustino)} elphon_nstruct 100 elphon_temperature 0.0 emax {} emin {} enaug {} encut {} encutGW {} encut_nmr {} engine {for GPUs} explicitKPoints 0 extrainput {} file_return Normal fixcharg 0 functional {Density functional} gwr_nomega 16 gwr_sigma 0.1 gwr_tempmode {T = 0K (systems with band gap)} hybrid_functional HSE06 ibrion -1 icharg {Atomic charge densities} images 3 increase_encut 0 indepParticleApprox_TimeEv 0 initialDimerDir {} iniwav {Random numbers} involveMLFF_MD 0 isif {} ismear Methfessel-Paxton ispin 0 istart 0 isym {} iwave {from scratch} iwaveder 0 iwtmp 0 j_parameter {} kInputmode {set spacing between k-points} kSpacing 0.5 kblock {} kpoints {} lEoF 0 l_parameter {} laechg 0 lcharg 0 ldapu {Standard LDA or GGA} lefg 0 lelf 0 lepsilon 0 lhyperfine 0 lmaxHF {lmax = 4} lmaxaeGW {full shape up to lmax = 4} lmaxmp2 {up to lmax = 2} localization_ediff 1.0e-03 localization_steps 10 lpead 0 lreal {Reciprocal space} lscalapack 0 lsol 0 lspectral 1 ltmp2_nomega 6 lvhar 1 lvtot 0 lwave 0 lwaveder 0 magmom 1 magnetism {Defined by model} maxbandpoints 40 maxmem {} meta-GGA revTPSS modelBSE 0 modelBSE_AEXX {} modelBSE_HFSCREEN {} modelBSE_nbands_occ {} modelBSE_nbands_unocc {} mp2_calculation {Møller-Plesset perturbation theory (MP2)} mporder 1 nTimeSteps 100 napaco {} nbands {} nbandsGW {} nbands_GW {} nbands_TDHF {} nbands_TimeEv {} nbands_occ {} nbands_opt {} nbands_unocc {} nblk {} nblock 1 nedos 3000 nelm 60 nelmGW 4 nelmdl {} nelmin 2 nfree 2 ngx 0 ngy 0 ngz 0 nkodd 0 nkx 4 nkxmult 1 nky 4 nkymult 1 nkz 4 nkzmult 1 nmr 0 nmr_maxkpoints 10 nomega 50 nomega_acfdt 12 nomega_tdhf 50 nosymmetry 0 nsw 0 nuj {} nwrite 1 oddonlyGW 0 optical_matrix_elements 0 optics 1 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 Optical_6FDABAPP_6_geofrom1020 tebeg {} teend {} thomasFermi 1.8 thomasFermi_choice {average valence density} thomasFermi_fromDensity 1.7422206399905908 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 {Single Point} 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-67618c3b-69d6-4113-b4d6-912e95c43089,md-vasp6api-stage-0baa973c-9f21-4ec0-8d36-15663c2062db 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.84312712507 0.357637229527 0.0117235088822} Untitled_1::C1 1 1 1 {} H 0.0 {0.885896673487 0.267374219102 0.862312613906} Untitled_1::H1 2 1 6 {} C 0.0 {0.8956938207 0.337615397287 0.959200211644} Untitled_1::C2 3 1 6 {} C 0.0 {0.858826188008 0.321796239351 0.880461845164} Untitled_1::C3 4 1 6 {} C 0.0 {0.774754767448 0.405816129627 0.0040980053533} Untitled_1::C4 5 1 1 {} H 0.0 {0.801702821487 0.463534013946 0.00627148165935} Untitled_1::H2 6 1 6 {} C 0.0 {0.740808687723 0.396436347005 0.920994393867} Untitled_1::C5 7 1 1 {} H 0.0 {0.675344848582 0.404520417634 0.911387168369} Untitled_1::H3 8 1 6 {} C 0.0 {0.767054912616 0.316384839859 0.885379513046} Untitled_1::C6 9 1 6 {} C 0.0 {0.969460681854 0.310861671352 -0.00560379956252} Untitled_1::C7 10 1 6 {} C 0.0 {0.923201286827 0.368932647257 0.124954911191} Untitled_1::C8 11 1 8 {} O 0.0 {0.0191505897302 0.274786233299 0.958251127609} Untitled_1::O1 12 1 8 {} O 0.0 {0.93631705165 0.401114947121 0.186688982867} Untitled_1::O2 13 1 6 {} C 0.0 {0.766144750954 0.306448184324 0.796232659484} Untitled_1::C9 14 1 9 {} F 0.0 {0.581811557762 0.388540359729 0.903624244058} Untitled_1::F1 15 1 9 {} F 0.0 {0.700301893892 0.332409537196 0.757918258365} Untitled_1::F2 16 1 6 {} C 0.0 {0.779108073031 0.220234628877 0.780192600761} Untitled_1::C10 17 1 6 {} C 0.0 {0.853203547826 0.174913700429 0.781437154044} Untitled_1::C11 18 1 1 {} H 0.0 {0.906264760809 0.207351558796 0.794271717808} Untitled_1::H5 19 1 6 {} C 0.0 {0.845705009537 0.102165379587 0.827783170987} Untitled_1::C12 20 1 6 {} C 0.0 {0.710954555994 0.177627284617 0.777884529689} Untitled_1::C13 21 1 1 {} H 0.0 {0.657521022775 0.211167775245 0.771854804401} Untitled_1::H6 22 1 6 {} C 0.0 {0.705043918716 0.100090171131 0.801536511141} Untitled_1::C14 23 1 1 {} H 0.0 {0.648648403721 0.073496539388 0.80777688972} Untitled_1::H7 24 1 6 {} C 0.0 {0.771777068982 0.0642576470061 0.833322977996} Untitled_1::C15 25 1 6 {} C 0.0 {0.900375630656 0.0516067827019 0.858850996596} Untitled_1::C16 26 1 6 {} C 0.0 {0.783559245664 0.991403849647 0.865544213123} Untitled_1::C17 27 1 7 {} N 0.0 {0.862654590148 0.982649770219 0.880404389431} Untitled_1::N2 28 1 1 {} H 0.0 {0.963309677643 0.0545068874734 0.860479428622} Untitled_1::H8 29 1 1 {} H 0.0 {0.741055788066 0.946897333542 0.880339516779} Untitled_1::H9 30 1 6 {} C 0.0 {0.899415927848 0.908232360502 0.890151468644} Untitled_1::C18 31 1 1 {} H 0.0 {0.0802388549602 0.827235878324 0.900485342697} Untitled_1::H10 32 1 6 {} C 0.0 {0.977651462751 0.899470179907 0.91179950411} Untitled_1::C19 33 1 1 {} H 0.0 {0.00821591987175 0.946117605183 0.941701125357} Untitled_1::H11 34 1 6 {} C 0.0 {0.0180537554569 0.832503863738 0.889139457957} Untitled_1::C20 35 1 6 {} C 0.0 {0.860271763433 0.840763102546 0.866583816879} Untitled_1::C21 36 1 1 {} H 0.0 {0.798315058 0.843295212988 0.854124703906} Untitled_1::H12 37 1 6 {} C 0.0 {0.899784996754 0.773669133413 0.844463539628} Untitled_1::C22 38 1 1 {} H 0.0 {0.864890944777 0.728928651503 0.816441958704} Untitled_1::H13 39 1 6 {} C 0.0 {0.981638299525 0.773078222857 0.847024339576} Untitled_1::C23 40 1 8 {} O 0.0 {0.0293158244758 0.712708155745 0.821186396891} Untitled_1::O3 41 1 6 {} C 0.0 {0.0666852832317 0.688517246055 0.753688692098} Untitled_1::C24 42 1 1 {} H 0.0 {0.25260636711 0.646001781299 0.701886564748} Untitled_1::H14 43 1 6 {} C 0.0 {0.148872489995 0.686591786042 0.753943200883} Untitled_1::C25 44 1 1 {} H 0.0 {0.181083983835 0.716601959824 0.799909254606} Untitled_1::H15 45 1 6 {} C 0.0 {0.189648874519 0.644351932324 0.698081539509} Untitled_1::C26 46 1 6 {} C 0.0 {0.0292179763252 0.648349260951 0.693000137615} Untitled_1::C27 47 1 1 {} H 0.0 {0.96684593491 0.649984561074 0.689837035249} Untitled_1::H16 48 1 6 {} C 0.0 {0.0698081081861 0.602729032852 0.64038977663} Untitled_1::C28 49 1 1 {} H 0.0 {0.0381529970722 0.565751481076 0.5998253694} Untitled_1::H17 50 1 6 {} C 0.0 {0.152560581302 0.599901430953 0.637922091855} Untitled_1::C29 51 1 6 {} C 0.0 {0.190935162866 0.566743263763 0.57240581535} Untitled_1::C30 52 1 6 {} C 0.0 {0.372543514338 0.755598790289 0.535899015435} Untitled_1::C31 53 1 6 {} C 0.0 {0.414291561606 0.741556422735 0.598759921999} Untitled_1::C32 54 1 1 {} H 0.0 {0.446916284297 0.68784185098 0.604847477975} Untitled_1::H19 55 1 6 {} C 0.0 {0.336737199523 0.833518503563 0.520959729028} Untitled_1::C34 56 1 1 {} H 0.0 {0.221321256635 0.780970411509 0.456311234879} Untitled_1::H20 57 1 6 {} C 0.0 {0.398726065512 0.894230929637 0.503585712263} Untitled_1::C35 58 1 1 {} H 0.0 {0.364502000811 0.947162515467 0.489627960616} Untitled_1::H21 59 1 6 {} C 0.0 {0.452266824293 0.917624083085 0.567175402952} Untitled_1::C36 60 1 8 {} O 0.0 {0.517145522273 0.963575793389 0.541852839583} Untitled_1::O4 61 1 6 {} C 0.0 {0.493914392495 0.0357725732269 0.506950717508} Untitled_1::C37 62 1 1 {} H 0.0 {0.361299398218 0.114036551154 0.38058127303} Untitled_1::H22 63 1 6 {} C 0.0 {0.44366013901 0.0422953225784 0.442641078193} Untitled_1::C38 64 1 1 {} H 0.0 {0.434162381315 -0.00665208330028 0.40427761883} Untitled_1::H23 65 1 6 {} C 0.0 {0.404952892811 0.112305118243 0.426902095183} Untitled_1::C39 66 1 6 {} C 0.0 {0.520258644376 0.104979675448 0.539905700274} Untitled_1::C40 67 1 1 {} H 0.0 {0.566883780599 0.103100688434 0.582423576257} Untitled_1::H24 68 1 6 {} C 0.0 {0.483029760371 0.175490339542 0.523614019529} Untitled_1::C41 69 1 1 {} H 0.0 {0.499020021804 0.228503266626 0.554950802156} Untitled_1::H25 70 1 6 {} C 0.0 {0.149641752365 0.535809875236 0.501632106427} Untitled_1::C44 71 1 1 {} H 0.0 {0.185323005671 0.550459639497 0.449940942026} Untitled_1::H28 72 1 1 {} H 0.0 {0.092005723571 0.561738747643 0.492366448552} Untitled_1::H29 73 1 1 {} H 0.0 {0.14256852876 0.47163985601 0.501448684771} Untitled_1::H30 74 1 6 {} C 0.0 {0.276339206443 0.568718927366 0.55976536237} Untitled_1::C45 75 1 1 {} H 0.0 {0.309102762571 0.601989532513 0.602908494956} Untitled_1::H31 76 1 1 {} H 0.0 {0.285874492391 0.59323219857 0.501603258977} Untitled_1::H32 77 1 1 {} H 0.0 {0.300607709645 0.509114924223 0.55643260738} Untitled_1::H33 78 1 7 {} N 0.0 {0.983257891981 0.335511231131 0.0766027855829} Untitled_1::N3 79 1 6 {} C 0.0 {0.420254620296 0.178024148698 0.471834230018} Untitled_1::C43 80 1 6 {} C 0.0 {0.863962338162 0.516384281335 0.560288844035} Untitled_2::C1 81 1 1 {} H 0.0 {0.754929039189 0.682857522105 0.553474888653} Untitled_2::H1 82 1 6 {} C 0.0 {0.827261009919 0.584731943368 0.583281046021} Untitled_2::C2 83 1 6 {} C 0.0 {0.780600495327 0.628270237339 0.533948670853} Untitled_2::C3 84 1 6 {} C 0.0 {0.850389035163 0.485799261281 0.48697336964} Untitled_2::C4 85 1 1 {} H 0.0 {0.877333886318 0.431791969193 0.467991568996} Untitled_2::H2 86 1 6 {} C 0.0 {0.800021017941 0.52712538668 0.43717781028} Untitled_2::C5 87 1 1 {} H 0.0 {0.785639675549 0.50260602529 0.380532601304} Untitled_2::H3 88 1 6 {} C 0.0 {0.767830606283 0.59906307668 0.458659095382} Untitled_2::C6 89 1 6 {} C 0.0 {0.849289793687 0.601630321884 0.663997493374} Untitled_2::C7 90 1 6 {} C 0.0 {0.914731448956 0.489561426313 0.625601900073} Untitled_2::C8 91 1 8 {} O 0.0 {0.832623067746 0.662482783943 0.698094225956} Untitled_2::O1 92 1 8 {} O 0.0 {0.964071174785 0.438674619971 0.623865210404} Untitled_2::O2 93 1 6 {} C 0.0 {0.717603920661 0.646180158557 0.402173147723} Untitled_2::C9 94 1 9 {} F 0.0 {0.710485218435 0.603929501244 0.333055273968} Untitled_2::F1 95 1 9 {} F 0.0 {0.642363946053 0.648638276597 0.43369247118} Untitled_2::F2 96 1 6 {} C 0.0 {0.745762338884 0.727815827003 0.383241960919} Untitled_2::C10 97 1 6 {} C 0.0 {0.701977244813 0.793496462767 0.400456988104} Untitled_2::C11 98 1 1 {} H 0.0 {0.645230627015 0.787449576298 0.427322666311} Untitled_2::H5 99 1 6 {} C 0.0 {0.731657261561 0.868848815202 0.382615903533} Untitled_2::C12 100 1 6 {} C 0.0 {0.820465956901 0.734628430729 0.347745306401} Untitled_2::C13 101 1 1 {} H 0.0 {0.854888345528 0.682790149751 0.334666280872} Untitled_2::H6 102 1 6 {} C 0.0 {0.852541444951 0.806713001675 0.335722259091} Untitled_2::C14 103 1 1 {} H 0.0 {0.912717245995 0.811996662437 0.316924924628} Untitled_2::H7 104 1 6 {} C 0.0 {0.810891433794 0.87376411929 0.355715260084} Untitled_2::C15 105 1 6 {} C 0.0 {0.70557193067 0.945976969293 0.38994102579} Untitled_2::C16 106 1 6 {} C 0.0 {0.832225545824 0.951602862433 0.354561238605} Untitled_2::C17 107 1 7 {} N 0.0 {0.76731908513 0.994997567822 0.372070842616} Untitled_2::N2 108 1 1 {} H 0.0 {0.648620291022 0.968587274371 0.405003556168} Untitled_2::H8 109 1 1 {} H 0.0 {0.889014754858 0.977443971853 0.345438962063} Untitled_2::H9 110 1 6 {} C 0.0 {0.768007775309 0.0780410278064 0.372637122667} Untitled_2::C18 111 1 1 {} H 0.0 {0.890047935939 0.228630906882 0.332717217797} Untitled_2::H10 112 1 6 {} C 0.0 {0.835630167049 0.117693770939 0.349957174798} Untitled_2::C19 113 1 1 {} H 0.0 {0.887579747412 0.0862826944182 0.332383052287} Untitled_2::H11 114 1 6 {} C 0.0 {0.837771033365 0.198055840144 0.350398574224} Untitled_2::C20 115 1 6 {} C 0.0 {0.703376848106 0.121706436194 0.396152641486} Untitled_2::C21 116 1 1 {} H 0.0 {0.650463296565 0.0928359710139 0.416224473447} Untitled_2::H12 117 1 6 {} C 0.0 {0.705234994678 0.202936308333 0.396128102429} Untitled_2::C22 118 1 1 {} H 0.0 {0.652145969502 0.233947253926 0.411253736275} Untitled_2::H13 119 1 6 {} C 0.0 {0.772718737934 0.241539020135 0.371635422375} Untitled_2::C23 120 1 8 {} O 0.0 {0.782250016066 0.321290916883 0.36428425306} Untitled_2::O3 121 1 6 {} C 0.0 {0.717441244767 0.365236533531 0.342097217587} Untitled_2::C24 122 1 1 {} H 0.0 {0.648564935557 0.457557008878 0.182642372396} Untitled_2::H14 123 1 6 {} C 0.0 {0.717996670498 0.400577770352 0.269377316907} Untitled_2::C25 124 1 1 {} H 0.0 {0.770988329186 0.399410708045 0.234432863421} Untitled_2::H15 125 1 6 {} C 0.0 {0.649070969418 0.433574790736 0.241341678357} Untitled_2::C26 126 1 6 {} C 0.0 {0.65437048037 0.375409488752 0.391920040521} Untitled_2::C27 127 1 1 {} H 0.0 {0.65732347539 0.353625004231 0.451319189886} Untitled_2::H16 128 1 6 {} C 0.0 {0.587916798574 0.41194111464 0.364171147102} Untitled_2::C28 129 1 1 {} H 0.0 {0.539479698952 0.420479803808 0.404102651071} Untitled_2::H17 130 1 6 {} C 0.0 {0.58096043811 0.434349336665 0.285871796012} Untitled_2::C29 131 1 6 {} C 0.0 {0.501450220231 0.458778353897 0.253863225667} Untitled_2::C30 132 1 6 {} C 0.0 {0.439788618175 0.396528024876 0.266272678773} Untitled_2::C31 133 1 6 {} C 0.0 {0.372336625683 0.389011898194 0.220791939034} Untitled_2::C32 134 1 1 {} H 0.0 {0.356147598583 0.418849817482 0.167657150433} Untitled_2::H19 135 1 6 {} C 0.0 {0.436032442285 0.339124543624 0.328982513211} Untitled_2::C34 136 1 1 {} H 0.0 {0.479248104063 0.328526168747 0.373691043717} Untitled_2::H20 137 1 6 {} C 0.0 {0.368000393211 0.297478885325 0.322335743328} Untitled_2::C35 138 1 1 {} H 0.0 {0.346838972541 0.250380248267 0.358481379186} Untitled_2::H21 139 1 6 {} C 0.0 {0.329369632172 0.327765765372 0.255157686872} Untitled_2::C36 140 1 8 {} O 0.0 {0.266962533746 0.289232096344 0.22805686957} Untitled_2::O4 141 1 6 {} C 0.0 {0.208249929335 0.316671921399 0.180316435888} Untitled_2::C37 142 1 1 {} H 0.0 {0.0986164576296 0.231763347598 0.0393457123571} Untitled_2::H22 143 1 6 {} C 0.0 {0.187365540009 0.266686562184 0.119833688636} Untitled_2::C38 144 1 1 {} H 0.0 {0.226997579575 0.21920661461 0.104952383372} Untitled_2::H23 145 1 6 {} C 0.0 {0.114413831255 0.272481997073 0.0846400582176} Untitled_2::C39 146 1 6 {} C 0.0 {0.158232043067 0.377016850835 0.202609356484} Untitled_2::C40 147 1 1 {} H 0.0 {0.172070198072 0.415641240506 0.251592291887} Untitled_2::H24 148 1 6 {} C 0.0 {0.0862873188583 0.382977608416 0.166237408433} Untitled_2::C41 149 1 1 {} H 0.0 {0.0485201453879 0.429147706786 0.185262255068} Untitled_2::H25 150 1 6 {} C 0.0 {0.504556492216 0.479361245727 0.16617764333} Untitled_2::C44 151 1 1 {} H 0.0 {0.447136323254 0.499437713456 0.14571779237} Untitled_2::H28 152 1 1 {} H 0.0 {0.518856167954 0.428092589479 0.130417546092} Untitled_2::H29 153 1 1 {} H 0.0 {0.547257226459 0.525761409374 0.153786309589} Untitled_2::H30 154 1 6 {} C 0.0 {0.47773289753 0.531902869047 0.300872528985} Untitled_2::C45 155 1 1 {} H 0.0 {0.470965592475 0.517967582303 0.362893594859} Untitled_2::H31 156 1 1 {} H 0.0 {0.422047703018 0.555825567293 0.279978897762} Untitled_2::H32 157 1 1 {} H 0.0 {0.524473474262 0.575020116964 0.295020949557} Untitled_2::H33 158 1 7 {} N 0.0 {0.898173449314 0.539747084008 0.690043707222} Untitled_2::N3 159 1 6 {} C 0.0 {0.0613137824423 0.329959237338 0.108593904949} Untitled_2::C43 160 1 6 {} C 0.0 {0.652306896947 0.114542608167 -0.0266485070657} Untitled_3::C1 161 1 1 {} H 0.0 {0.610429965545 0.296168352467 0.892004786756} Untitled_3::H1 162 1 6 {} C 0.0 {0.611160774581 0.173655744473 0.933013371342} Untitled_3::C2 163 1 6 {} C 0.0 {0.644380799786 0.24337485368 0.909831555866} Untitled_3::C3 164 1 6 {} C 0.0 {0.730307310013 0.126626727305 -0.00964761940232} Untitled_3::C4 165 1 1 {} H 0.0 {0.855956188582 0.219840929643 0.0973051281376} Untitled_3::H2 166 1 6 {} C 0.0 {0.766114242425 0.192299676822 0.959350055668} Untitled_3::C5 167 1 1 {} H 0.0 {0.826446377744 0.204585831499 0.974199839902} Untitled_3::H3 168 1 6 {} C 0.0 {0.725378220146 0.250020439929 0.920627547055} Untitled_3::C6 169 1 6 {} C 0.0 {0.529191984251 0.155223180521 0.934828143665} Untitled_3::C7 170 1 6 {} C 0.0 {0.597267961394 0.0653448904082 0.00665739020718} Untitled_3::C8 171 1 8 {} O 0.0 {0.475113075166 0.18667082696 0.900472786951} Untitled_3::O1 172 1 8 {} O 0.0 {0.605522128683 -0.000222423793915 0.0502245177231} Untitled_3::O2 173 1 6 {} C 0.0 {0.835070188802 0.363269364476 0.79306117164} Untitled_3::C9 174 1 9 {} F 0.0 {0.884424821686 0.350019210182 0.730379625132} Untitled_3::F1 175 1 9 {} F 0.0 {0.868442489925 0.151860978868 0.699126327617} Untitled_3::F2 176 1 6 {} C 0.0 {0.800091380358 0.444129341378 0.798015275135} Untitled_3::C10 177 1 6 {} C 0.0 {0.787314626658 0.463723781305 0.879983469069} Untitled_3::C11 178 1 1 {} H 0.0 {0.846360730264 0.462078145353 0.906039745437} Untitled_3::H5 179 1 6 {} C 0.0 {0.754407819431 0.541086970528 0.894855643758} Untitled_3::C12 180 1 6 {} C 0.0 {0.753102987313 0.482961516374 0.742553560744} Untitled_3::C13 181 1 1 {} H 0.0 {0.747245548142 0.460780691589 0.683058961102} Untitled_3::H6 182 1 6 {} C 0.0 {0.714115261662 0.552364882004 0.760852070008} Untitled_3::C14 183 1 1 {} H 0.0 {0.679687483098 0.58049681173 0.715356918497} Untitled_3::H7 184 1 6 {} C 0.0 {0.719930948506 0.587608063518 0.835141331699} Untitled_3::C15 185 1 6 {} C 0.0 {0.761506635648 0.585096536544 0.959901945254} Untitled_3::C16 186 1 6 {} C 0.0 {0.707583494225 0.66176986782 0.868379669955} Untitled_3::C17 187 1 7 {} N 0.0 {0.733828857097 0.659253442441 0.943942954402} Untitled_3::N2 188 1 1 {} H 0.0 {0.789909609026 0.572794560012 0.0143787008374} Untitled_3::H8 189 1 1 {} H 0.0 {0.687546832799 0.716515690374 0.843694513559} Untitled_3::H9 190 1 6 {} C 0.0 {0.749281104076 0.721626501076 -0.0041409468194} Untitled_3::C18 191 1 1 {} H 0.0 {0.866184336429 0.761861942466 0.152711347595} Untitled_3::H10 192 1 6 {} C 0.0 {0.798006132288 0.708712990731 0.0605188278088} Untitled_3::C19 193 1 1 {} H 0.0 {0.815811281025 0.650821662815 0.0782503515277} Untitled_3::H11 194 1 6 {} C 0.0 {0.828721876314 0.770126847814 0.102289378767} Untitled_3::C20 195 1 6 {} C 0.0 {0.722168605586 0.797058719588 0.984045496386} Untitled_3::C21 196 1 1 {} H 0.0 {0.679577186311 0.809344502695 0.939018516007} Untitled_3::H12 197 1 6 {} C 0.0 {0.752973687532 0.859250117145 0.025546193371} Untitled_3::C22 198 1 1 {} H 0.0 {0.733220424769 0.917895540708 0.0126591242444} Untitled_3::H13 199 1 6 {} C 0.0 {0.813309694747 0.845955471084 0.0781468791929} Untitled_3::C23 200 1 8 {} O 0.0 {0.861093416687 0.902608000499 0.109451614361} Untitled_3::O3 201 1 6 {} C 0.0 {0.828149508057 0.976428525974 0.114207330125} Untitled_3::C24 202 1 1 {} H 0.0 {0.652718626231 -0.00319208522138 0.0812934345629} Untitled_3::H14 203 1 6 {} C 0.0 {0.811911156387 0.0208873120158 0.0487190860846} Untitled_3::C25 204 1 1 {} H 0.0 {0.834159620381 0.00257547684145 -0.00713837627326} Untitled_3::H15 205 1 6 {} C 0.0 {0.763462693465 0.0856705794374 0.0562718972995} Untitled_3::C26 206 1 6 {} C 0.0 {0.805116607645 0.00149755759437 0.186221212582} Untitled_3::C27 207 1 1 {} H 0.0 {0.821071216953 -0.0326667775233 0.236803845216} Untitled_3::H16 208 1 6 {} C 0.0 {0.759330964611 0.0676074287549 0.192930019517} Untitled_3::C28 209 1 1 {} H 0.0 {0.739744545345 0.0849776142603 0.249380724155} Untitled_3::H17 210 1 6 {} C 0.0 {0.736209943401 0.111723950769 0.129777761862} Untitled_3::C29 211 1 6 {} C 0.0 {0.687800077767 0.18628354565 0.144790234601} Untitled_3::C30 212 1 6 {} C 0.0 {0.73464769946 0.258583922533 0.120711529319} Untitled_3::C31 213 1 6 {} C 0.0 {0.821810190206 0.265202249034 0.129559051767} Untitled_3::C32 214 1 1 {} H 0.0 {0.839843656314 0.261237700654 0.190083692907} Untitled_3::H19 215 1 6 {} C 0.0 {0.70258138445 0.328053361289 0.105482850773} Untitled_3::C34 216 1 1 {} H 0.0 {0.640628947104 0.338358307932 0.096070269135} Untitled_3::H20 217 1 6 {} C 0.0 {0.759128466083 0.391149088267 0.0927505685581} Untitled_3::C35 218 1 1 {} H 0.0 {0.750423574055 0.446490755322 0.122193107337} Untitled_3::H21 219 1 6 {} C 0.0 {0.842131829489 0.347687808164 0.0963218450799} Untitled_3::C36 220 1 8 {} O 0.0 {0.949951957994 0.500642170602 0.00578130671917} Untitled_3::O4 221 1 6 {} C 0.0 {0.953658548 0.513691393632 0.933238976343} Untitled_3::C37 222 1 1 {} H 0.0 {0.879678263049 0.639809761948 0.800104826221} Untitled_3::H22 223 1 6 {} C 0.0 {0.927034430193 0.585558736427 0.899881605255} Untitled_3::C38 224 1 1 {} H 0.0 {0.916215920956 0.63489966797 0.938610853794} Untitled_3::H23 225 1 6 {} C 0.0 {0.908372510766 0.589375208691 0.822605822254} Untitled_3::C39 226 1 6 {} C 0.0 {0.982831807917 0.459019046772 0.874821282281} Untitled_3::C40 227 1 1 {} H 0.0 {0.0141786809528 0.408110905451 0.894843665188} Untitled_3::H24 228 1 6 {} C 0.0 {0.970849829886 0.466533217795 0.795702893122} Untitled_3::C41 229 1 1 {} H 0.0 {0.993194644472 0.4229150752 0.755428171898} Untitled_3::H25 230 1 6 {} C 0.0 {0.674813359926 0.197557456082 0.231591718397} Untitled_3::C44 231 1 1 {} H 0.0 {0.640398615936 0.250282425419 0.24159485985} Untitled_3::H28 232 1 1 {} H 0.0 {0.729635259073 0.203431020958 0.261857569462} Untitled_3::H29 233 1 1 {} H 0.0 {0.641728876716 0.149816624074 0.257843476526} Untitled_3::H30 234 1 6 {} C 0.0 {0.605619232394 0.191295892254 0.111299396905} Untitled_3::C45 235 1 1 {} H 0.0 {0.604117498252 0.203769148666 0.049367012492} Untitled_3::H31 236 1 1 {} H 0.0 {0.572117439076 0.238756400897 0.138696046666} Untitled_3::H32 237 1 1 {} H 0.0 {0.573890130928 0.137923975847 0.12531180695} Untitled_3::H33 238 1 7 {} N 0.0 {0.524144064249 0.089629645412 -0.00893062291805} Untitled_3::N3 239 1 6 {} C 0.0 {0.923200812159 0.528753327347 0.768719647706} Untitled_3::C43 240 1 6 {} C 0.0 {0.201894722128 0.927924534023 0.955697777679} Untitled_4::C1 241 1 1 {} H 0.0 {0.387870859926 0.993768121262 0.952815593859} Untitled_4::H1 242 1 6 {} C 0.0 {0.278395044934 0.941517479342 0.975462674097} Untitled_4::C2 243 1 6 {} C 0.0 {0.331700301787 0.979116378995 0.929738767607} Untitled_4::C3 244 1 6 {} C 0.0 {0.178552832611 0.953281712614 0.880548999485} Untitled_4::C4 245 1 1 {} H 0.0 {0.119911060158 0.945189481363 0.857981411112} Untitled_4::H2 246 1 6 {} C 0.0 {0.234449176369 0.985654389686 0.829995103049} Untitled_4::C5 247 1 1 {} H 0.0 {0.217259630351 0.000848776045201 0.770431189263} Untitled_4::H3 248 1 6 {} C 0.0 {0.312768095908 0.99727948077 0.85399252005} Untitled_4::C6 249 1 6 {} C 0.0 {0.301771596899 0.901853222646 0.0448730926621} Untitled_4::C7 250 1 6 {} C 0.0 {0.169426845997 0.888551422896 0.026646749233} Untitled_4::C8 251 1 8 {} O 0.0 {0.369834887309 0.890836248625 0.0644864478964} Untitled_4::O1 252 1 8 {} O 0.0 {0.100125239631 0.875875709232 0.0436737532107} Untitled_4::O2 253 1 6 {} C 0.0 {0.38487869082 0.0218266772428 0.816552386281} Untitled_4::C9 254 1 9 {} F 0.0 {0.283216023179 0.844597662485 0.73138780699} Untitled_4::F1 255 1 9 {} F 0.0 {0.381568796884 0.0974911135818 0.791620927394} Untitled_4::F2 256 1 6 {} C 0.0 {0.454606008044 0.97909643671 0.817850576179} Untitled_4::C10 257 1 6 {} C 0.0 {0.522857718451 0.0133594167051 0.783549270768} Untitled_4::C11 258 1 1 {} H 0.0 {0.528355916455 0.0761110154188 0.781190336608} Untitled_4::H5 259 1 6 {} C 0.0 {0.582761052765 0.96466805191 0.754101560134} Untitled_4::C12 260 1 6 {} C 0.0 {0.462586627886 0.893846578647 0.841694017832} Untitled_4::C13 261 1 1 {} H 0.0 {0.507371165991 0.788102942796 0.817292679599} Untitled_4::H6 262 1 6 {} C 0.0 {0.535105592588 0.845212757595 0.826610878293} Untitled_4::C14 263 1 1 {} H 0.0 {0.567893365302 0.835494909056 0.88105981065} Untitled_4::H7 264 1 6 {} C 0.0 {0.588238436031 0.881987299936 0.770685448978} Untitled_4::C15 265 1 6 {} C 0.0 {0.643401798218 0.981137028471 0.701243426936} Untitled_4::C16 266 1 6 {} C 0.0 {0.650184211813 0.853329726249 0.731433273892} Untitled_4::C17 267 1 7 {} N 0.0 {0.686040743392 0.913879379586 0.689687481238} Untitled_4::N2 268 1 1 {} H 0.0 {0.654584375772 0.0356669397406 0.670260476286} Untitled_4::H8 269 1 1 {} H 0.0 {0.671746086457 0.794112277104 0.729079734674} Untitled_4::H9 270 1 6 {} C 0.0 {0.76864987415 0.913671855798 0.68729572461} Untitled_4::C18 271 1 1 {} H 0.0 {0.920265299177 0.789064587027 0.699525505436} Untitled_4::H10 272 1 6 {} C 0.0 {0.810036726048 0.844167344661 0.685755265093} Untitled_4::C19 273 1 1 {} H 0.0 {0.780914512054 0.788653621907 0.673737611193} Untitled_4::H11 274 1 6 {} C 0.0 {0.890000716266 0.844766340947 0.700414718944} Untitled_4::C20 275 1 6 {} C 0.0 {0.808772277566 -0.0162586855479 0.694154354403} Untitled_4::C21 276 1 1 {} H 0.0 {0.778792429397 0.0392316845604 0.687391017145} Untitled_4::H12 277 1 6 {} C 0.0 {0.887183186941 -0.0168891279194 0.711653904928} Untitled_4::C22 278 1 1 {} H 0.0 {0.917303473299 0.0380537107705 0.71916727263} Untitled_4::H13 279 1 6 {} C 0.0 {0.929566455612 0.913617891692 0.716557760567} Untitled_4::C23 280 1 8 {} O 0.0 {0.0882675388488 0.963768876842 0.58407710458} Untitled_4::O3 281 1 6 {} C 0.0 {0.0543786090359 0.0153900220893 0.5283789793} Untitled_4::C24 282 1 1 {} H 0.0 {0.00327585820686 0.0282491931976 0.338045590133} Untitled_4::H14 283 1 6 {} C 0.0 {0.0494802536491 0.982304676067 0.445576842858} Untitled_4::C25 284 1 1 {} H 0.0 {0.998937848289 0.944546418801 0.442189662904} Untitled_4::H15 285 1 6 {} C 0.0 {0.0360497844853 0.0452946259557 0.389220462691} Untitled_4::C26 286 1 6 {} C 0.0 {0.097369265285 0.091813517378 0.530667459839} Untitled_4::C27 287 1 1 {} H 0.0 {0.120350534776 0.11053911527 0.586409781347} Untitled_4::H16 288 1 6 {} C 0.0 {0.105943869223 0.137622289865 0.467134899684} Untitled_4::C28 289 1 1 {} H 0.0 {0.137393032774 0.192689312495 0.472306713232} Untitled_4::H17 290 1 6 {} C 0.0 {0.0697020706329 0.117236322788 0.393513064026} Untitled_4::C29 291 1 6 {} C 0.0 {0.0844706773129 0.163723145365 0.317584924286} Untitled_4::C30 292 1 6 {} C 0.0 {0.12679885099 0.105313088693 0.266358776721} Untitled_4::C31 293 1 6 {} C 0.0 {0.204881054399 0.10340296052 0.245375628017} Untitled_4::C32 294 1 1 {} H 0.0 {0.248702079693 0.147852169669 0.256456723332} Untitled_4::H19 295 1 6 {} C 0.0 {0.0883018432619 0.0376017368493 0.233063965232} Untitled_4::C34 296 1 1 {} H 0.0 {0.0269704684227 0.022915062873 0.234378787697} Untitled_4::H20 297 1 6 {} C 0.0 {0.143085700473 0.992122833445 0.196902771407} Untitled_4::C35 298 1 1 {} H 0.0 {0.130888854926 0.93998880469 0.163957095182} Untitled_4::H21 299 1 6 {} C 0.0 {0.214453815364 0.0337344519528 0.203659325096} Untitled_4::C36 300 1 8 {} O 0.0 {0.283270069692 0.00381670623849 0.178440860135} Untitled_4::O4 301 1 6 {} C 0.0 {0.338836371037 0.0461795237196 0.140514114548} Untitled_4::C37 302 1 1 {} H 0.0 {0.383295922117 0.13564307204 0.967744449142} Untitled_4::H22 303 1 6 {} C 0.0 {0.325823744969 0.0907353719419 0.0731230703151} Untitled_4::C38 304 1 1 {} H 0.0 {0.268124929141 0.110886829555 0.0565692571198} Untitled_4::H23 305 1 6 {} C 0.0 {0.388113451712 0.106303839487 0.0236203639229} Untitled_4::C39 306 1 6 {} C 0.0 {0.414718225669 0.0307844791058 0.16556297853} Untitled_4::C40 307 1 1 {} H 0.0 {0.429351359587 0.00683911990634 0.22296016997} Untitled_4::H24 308 1 6 {} C 0.0 {0.47588465227 0.0460041708777 0.116839931166} Untitled_4::C41 309 1 1 {} H 0.0 {0.533314000363 0.0286920488391 0.135748047683} Untitled_4::H25 310 1 6 {} C 0.0 {0.132735331859 0.235739601033 0.33749749019} Untitled_4::C44 311 1 1 {} H 0.0 {0.141843779064 0.270981767512 0.285640533373} Untitled_4::H28 312 1 1 {} H 0.0 {0.189839033712 0.220471208235 0.361624782308} Untitled_4::H29 313 1 1 {} H 0.0 {0.102229989441 0.272209905491 0.380545087302} Untitled_4::H30 314 1 6 {} C 0.0 {0.0148175137252 0.18963163 0.267244097614} Untitled_4::C45 315 1 1 {} H 0.0 {-0.0245613332682 0.141415678913 0.254317957204} Untitled_4::H31 316 1 1 {} H 0.0 {0.0384198188421 0.207866136436 0.210778744607} Untitled_4::H32 317 1 1 {} H 0.0 {0.983521235364 0.238703749893 0.293246665603} Untitled_4::H33 318 1 7 {} N 0.0 {0.234280509385 0.871697838726 0.0784179835528} Untitled_4::N3 319 1 6 {} C 0.0 {0.462186184426 0.0785048800316 0.0433620850858} Untitled_4::C43 320 1 6 {} C 0.0 {0.162237318378 0.489497559858 0.919719067672} Untitled_5::C1 321 1 1 {} H 0.0 {0.290277928747 0.599038280719 0.81844975273} Untitled_5::H1 322 1 6 {} C 0.0 {0.200998701753 0.556194661848 0.896126337102} Untitled_5::C2 323 1 6 {} C 0.0 {0.252059013988 0.551224454726 0.834408797195} Untitled_5::C3 324 1 6 {} C 0.0 {0.160754462744 0.419308439851 0.880817421393} Untitled_5::C4 325 1 1 {} H 0.0 {0.127023244796 0.370304181955 0.902417729925} Untitled_5::H2 326 1 6 {} C 0.0 {0.201045528302 0.418375306835 0.811043435184} Untitled_5::C5 327 1 1 {} H 0.0 {0.196241056548 0.369771859333 0.770462112398} Untitled_5::H3 328 1 6 {} C 0.0 {0.249383506169 0.481427806502 0.792489639669} Untitled_5::C6 329 1 6 {} C 0.0 {0.172915154527 0.622912567413 0.944161933603} Untitled_5::C7 330 1 6 {} C 0.0 {0.123241397936 0.506769291863 0.992592259648} Untitled_5::C8 331 1 8 {} O 0.0 {0.188213477952 0.692156118609 0.938916709304} Untitled_5::O1 332 1 8 {} O 0.0 {0.102938475895 0.458453713918 0.038720072498} Untitled_5::O2 333 1 6 {} C 0.0 {0.299562438935 0.472162731896 0.723654699595} Untitled_5::C9 334 1 9 {} F 0.0 {0.24989209508 0.449106761007 0.660782605629} Untitled_5::F1 335 1 9 {} F 0.0 {0.329888049165 0.544393614221 0.7051279028} Untitled_5::F2 336 1 6 {} C 0.0 {0.364317720232 0.416788809444 0.725520305626} Untitled_5::C10 337 1 6 {} C 0.0 {0.423880824762 0.435755712326 0.675133997849} Untitled_5::C11 338 1 1 {} H 0.0 {0.425873679516 0.490418143236 0.643662731268} Untitled_5::H5 339 1 6 {} C 0.0 {0.483150431098 0.381827143977 0.666902287426} Untitled_5::C12 340 1 6 {} C 0.0 {0.360865348051 0.347004824326 0.769761723052} Untitled_5::C13 341 1 1 {} H 0.0 {0.313902873848 0.336513184269 0.810613037972} Untitled_5::H6 342 1 6 {} C 0.0 {0.419003561979 0.293121114028 0.763444415516} Untitled_5::C14 343 1 1 {} H 0.0 {0.421015426544 0.240059936094 0.797229506458} Untitled_5::H7 344 1 6 {} C 0.0 {0.47985011166 0.310947408932 0.71217623004} Untitled_5::C15 345 1 6 {} C 0.0 {0.551228047237 0.381102938306 0.623422307643} Untitled_5::C16 346 1 6 {} C 0.0 {0.546204251558 0.270286061519 0.695623925539} Untitled_5::C17 347 1 7 {} N 0.0 {0.587876428524 0.313145167633 0.642552373095} Untitled_5::N2 348 1 1 {} H 0.0 {0.574955698027 0.420389293127 0.579711052303} Untitled_5::H8 349 1 1 {} H 0.0 {0.566815286572 0.216647908603 0.720257446977} Untitled_5::H9 350 1 6 {} C 0.0 {0.656247977869 0.285441829159 0.610048031068} Untitled_5::C18 351 1 1 {} H 0.0 {0.821984997682 0.328053184429 0.513028724855} Untitled_5::H10 352 1 6 {} C 0.0 {0.711923856966 0.332910804542 0.574806126088} Untitled_5::C19 353 1 1 {} H 0.0 {0.704474763154 0.395978798325 0.57190657318} Untitled_5::H11 354 1 6 {} C 0.0 {0.776748464779 0.29645713207 0.543743804581} Untitled_5::C20 355 1 6 {} C 0.0 {0.66618399111 0.205971783937 0.618005352071} Untitled_5::C21 356 1 1 {} H 0.0 {0.622615906669 0.171450734914 0.647172933444} Untitled_5::H12 357 1 6 {} C 0.0 {0.731453701558 0.171011729771 0.590328446653} Untitled_5::C22 358 1 1 {} H 0.0 {0.739753560941 0.109844339463 0.600987511295} Untitled_5::H13 359 1 6 {} C 0.0 {0.784627178226 0.216166859854 0.549892007307} Untitled_5::C23 360 1 8 {} O 0.0 {0.846246312554 0.185110486797 0.51130668934} Untitled_5::O3 361 1 6 {} C 0.0 {0.862535983632 0.107813226441 0.523826875207} Untitled_5::C24 362 1 1 {} H 0.0 {0.791275403737 0.922893131398 0.525755977779} Untitled_5::H14 363 1 6 {} C 0.0 {0.809749833569 0.0446904110343 0.523155306109} Untitled_5::C25 364 1 1 {} H 0.0 {0.748362076075 0.0550084748289 0.510731967445} Untitled_5::H15 365 1 6 {} C 0.0 {0.834703145028 0.969124228929 0.53507741174} Untitled_5::C26 366 1 6 {} C 0.0 {0.937386103086 0.0958019997055 0.540630581214} Untitled_5::C27 367 1 1 {} H 0.0 {0.970662348539 0.148575016993 0.549327186108} Untitled_5::H16 368 1 6 {} C 0.0 {0.968147130938 0.0202002043574 0.559505051349} Untitled_5::C28 369 1 1 {} H 0.0 {-0.0202411841068 0.0215671723939 0.622582257682} Untitled_5::H17 370 1 6 {} C 0.0 {0.913755864101 0.951907829335 0.54719453399} Untitled_5::C29 371 1 6 {} C 0.0 {0.936755363756 0.873559140016 0.539511026296} Untitled_5::C30 372 1 6 {} C 0.0 {0.0137396829562 0.853529565993 0.520807196697} Untitled_5::C31 373 1 6 {} C 0.0 {0.0239397598095 0.809947724762 0.448825260689} Untitled_5::C32 374 1 1 {} H 0.0 {-0.0263220983122 0.782401173887 0.421180180105} Untitled_5::H19 375 1 6 {} C 0.0 {0.087818143473 0.886933820378 0.556888194755} Untitled_5::C34 376 1 1 {} H 0.0 {0.101291449094 0.852266944837 0.608626782335} Untitled_5::H20 377 1 6 {} C 0.0 {0.150968348058 0.881484163847 0.495070230957} Untitled_5::C35 378 1 1 {} H 0.0 {0.199833308765 0.915015960386 0.516114910676} Untitled_5::H21 379 1 6 {} C 0.0 {0.118980757741 0.920186372244 0.420560018974} Untitled_5::C36 380 1 8 {} O 0.0 {0.290572747847 0.702717279359 0.351977452622} Untitled_5::O4 381 1 6 {} C 0.0 {0.273291222199 0.744638520323 0.284079103039} Untitled_5::C37 382 1 1 {} H 0.0 {0.352996252082 0.887671584483 0.178886104751} Untitled_5::H22 383 1 6 {} C 0.0 {0.32501554898 0.801684199513 0.260379091949} Untitled_5::C38 384 1 1 {} H 0.0 {0.379940881007 0.811224337466 0.290240750812} Untitled_5::H23 385 1 6 {} C 0.0 {0.309523556165 0.845620494737 0.194479290544} Untitled_5::C39 386 1 6 {} C 0.0 {0.207270197139 0.728948500784 0.240291695083} Untitled_5::C40 387 1 1 {} H 0.0 {0.165670072805 0.684941992201 0.258890630745} Untitled_5::H24 388 1 6 {} C 0.0 {0.190944171388 0.773251530932 0.174236185052} Untitled_5::C41 389 1 1 {} H 0.0 {0.137835018041 0.762371178351 0.140583406601} Untitled_5::H25 390 1 6 {} C 0.0 {0.878036820496 0.810208670292 0.524161271702} Untitled_5::C44 391 1 1 {} H 0.0 {0.902505164329 0.752912639294 0.538616813754} Untitled_5::H28 392 1 1 {} H 0.0 {0.859798595734 0.809990895923 0.463364114838} Untitled_5::H29 393 1 1 {} H 0.0 {0.825284258662 0.816014875858 0.558651576257} Untitled_5::H30 394 1 6 {} C 0.0 {0.0159819343207 0.920892084165 0.728090657229} Untitled_5::C45 395 1 1 {} H 0.0 {0.0339104066477 0.975738408797 0.700351808578} Untitled_5::H31 396 1 1 {} H 0.0 {0.0484928196598 0.872006962474 0.705416297133} Untitled_5::H32 397 1 1 {} H 0.0 {0.0341702887834 0.927590627099 0.788473256201} Untitled_5::H33 398 1 7 {} N 0.0 {0.120939700155 0.58921041577 0.998505026105} Untitled_5::N3 399 1 6 {} C 0.0 {0.242282454274 0.831660024796 0.150074087738} Untitled_5::C43 400 1 6 {} C 0.0 {0.317075107035 0.943252842936 0.616327420853} Untitled_6::C1 401 1 1 {} H 0.0 {0.501374595357 0.888090537403 0.68276313244} Untitled_6::H1 402 1 6 {} C 0.0 {0.399208906094 0.950019518173 0.63750678005} Untitled_6::C2 403 1 6 {} C 0.0 {0.449603017372 0.878014791898 0.647810896743} Untitled_6::C3 404 1 6 {} C 0.0 {0.291833492088 0.863719021493 0.595945204666} Untitled_6::C4 405 1 1 {} H 0.0 {0.228664185416 0.861309706839 0.592690808225} Untitled_6::H2 406 1 6 {} C 0.0 {0.315213521458 0.810607577124 0.663741757909} Untitled_6::C5 407 1 1 {} H 0.0 {0.286825279156 0.753959659895 0.658477084511} Untitled_6::H3 408 1 6 {} C 0.0 {0.405165056907 0.797235982101 0.665616589792} Untitled_6::C6 409 1 6 {} C 0.0 {0.410413952614 0.034280906556 0.654134610534} Untitled_6::C7 410 1 6 {} C 0.0 {0.2865638599 0.0189391579716 0.600946325179} Untitled_6::C8 411 1 8 {} O 0.0 {0.473012958126 0.0703881700496 0.673599961109} Untitled_6::O1 412 1 8 {} O 0.0 {0.231769444329 0.0457503309547 0.562862763814} Untitled_6::O2 413 1 6 {} C 0.0 {0.424122193646 0.73680754611 0.733865783163} Untitled_6::C9 414 1 9 {} F 0.0 {0.372142936804 0.675927917831 0.721429562761} Untitled_6::F1 415 1 9 {} F 0.0 {0.49767868684 0.703849975865 0.71523712724} Untitled_6::F2 416 1 6 {} C 0.0 {0.41893420296 0.753321436124 0.819558556563} Untitled_6::C10 417 1 6 {} C 0.0 {0.419027318636 0.694523502047 0.874467674092} Untitled_6::C11 418 1 1 {} H 0.0 {0.410518984163 0.633806784164 0.857144882938} Untitled_6::H5 419 1 6 {} C 0.0 {0.440704748526 0.716825762693 0.953686231573} Untitled_6::C12 420 1 6 {} C 0.0 {0.395814502291 0.83414835777 0.84233061282} Untitled_6::C13 421 1 1 {} H 0.0 {0.335001255963 0.848984142686 0.8310934877} Untitled_6::H6 422 1 6 {} C 0.0 {0.432310589144 0.858714493655 0.915992833071} Untitled_6::C14 423 1 1 {} H 0.0 {0.403903432229 0.895997914356 0.95703145109} Untitled_6::H7 424 1 6 {} C 0.0 {0.469322477225 0.796241241343 0.957876816535} Untitled_6::C15 425 1 6 {} C 0.0 {0.463750930716 0.682245471335 0.0247224235596} Untitled_6::C16 426 1 6 {} C 0.0 {0.517513314276 0.802508610058 0.0184416463939} Untitled_6::C17 427 1 7 {} N 0.0 {0.511274411671 0.735587944134 0.0638634335395} Untitled_6::N2 428 1 1 {} H 0.0 {0.45093219752 0.625207021258 0.0495494209657} Untitled_6::H8 429 1 1 {} H 0.0 {0.550489642608 0.852802475562 0.0357381079288} Untitled_6::H9 430 1 6 {} C 0.0 {0.525363764061 0.747598663837 0.144233583242} Untitled_6::C18 431 1 1 {} H 0.0 {0.484613673294 0.67472112056 0.321617079838} Untitled_6::H10 432 1 6 {} C 0.0 {0.501693649139 0.69491167694 0.200582946736} Untitled_6::C19 433 1 1 {} H 0.0 {0.473586099863 0.6401993652 0.185417451375} Untitled_6::H11 434 1 6 {} C 0.0 {0.508917232771 0.714338795376 0.278818948777} Untitled_6::C20 435 1 6 {} C 0.0 {0.556171492199 0.81972676754 0.168353716652} Untitled_6::C21 436 1 1 {} H 0.0 {0.569408035713 0.865665963858 0.127983960493} Untitled_6::H12 437 1 6 {} C 0.0 {0.563525186427 0.838921626029 0.245989589492} Untitled_6::C22 438 1 1 {} H 0.0 {0.582484646211 0.896797694637 0.26423225198} Untitled_6::H13 439 1 6 {} C 0.0 {0.538999115265 0.786132976337 0.301574243913} Untitled_6::C23 440 1 8 {} O 0.0 {0.538606894886 0.813003694733 0.37775455663} Untitled_6::O3 441 1 6 {} C 0.0 {0.471928642441 0.791811850835 0.416784861772} Untitled_6::C24 442 1 1 {} H 0.0 {0.365714106209 0.64229909667 0.478766990011} Untitled_6::H14 443 1 6 {} C 0.0 {0.456810824193 0.717572723428 0.435339004517} Untitled_6::C25 444 1 1 {} H 0.0 {0.499583808082 0.670876950624 0.431043739222} Untitled_6::H15 445 1 6 {} C 0.0 {0.375755233296 0.703976579849 0.466381714151} Untitled_6::C26 446 1 6 {} C 0.0 {0.414045029956 0.856769035912 0.423122821662} Untitled_6::C27 447 1 1 {} H 0.0 {0.425205039573 0.898423627725 0.37591171999} Untitled_6::H16 448 1 6 {} C 0.0 {0.32633294994 0.827688761829 0.42755480896} Untitled_6::C28 449 1 1 {} H 0.0 {0.286609760135 0.867229827996 0.398321431789} Untitled_6::H17 450 1 6 {} C 0.0 {0.32014235051 0.74289136266 0.412416421938} Untitled_6::C29 451 1 6 {} C 0.0 {0.163758544689 0.794135733943 0.480837209362} Untitled_6::C30 452 1 6 {} C 0.0 {0.101773698524 0.774861691455 0.420333437098} Untitled_6::C31 453 1 6 {} C 0.0 {0.0742604343352 0.851857730299 0.386882900392} Untitled_6::C32 454 1 1 {} H 0.0 {0.0451890792672 0.853666653618 0.330906880865} Untitled_6::H19 455 1 6 {} C 0.0 {0.0977448399398 0.697520894777 0.386794312535} Untitled_6::C34 456 1 1 {} H 0.0 {0.139491227665 0.65365460025 0.408490868217} Untitled_6::H20 457 1 6 {} C 0.0 {0.0493480366861 0.673546983824 0.327491218851} Untitled_6::C35 458 1 1 {} H 0.0 {0.0596579260995 0.614526743732 0.305353198627} Untitled_6::H21 459 1 6 {} C 0.0 {0.993077639164 0.72913155093 0.304984063801} Untitled_6::C36 460 1 8 {} O 0.0 {0.964351915922 0.738202963946 0.233244754414} Untitled_6::O4 461 1 6 {} C 0.0 {-0.00630227806016 0.698265512664 0.168924567299} Untitled_6::C37 462 1 1 {} H 0.0 {0.0582095208582 0.522393918312 0.116380995235} Untitled_6::H22 463 1 6 {} C 0.0 {0.00391115386965 0.618851626511 0.173624698936} Untitled_6::C38 464 1 1 {} H 0.0 {0.979860110788 0.584965132229 0.221279235446} Untitled_6::H23 465 1 6 {} C 0.0 {0.046760404059 0.584034730238 0.115893885861} Untitled_6::C39 466 1 6 {} C 0.0 {0.0124544942387 0.742334026385 0.10383372756} Untitled_6::C40 467 1 1 {} H 0.0 {-0.000750307185245 0.804314210655 0.101084400439} Untitled_6::H24 468 1 6 {} C 0.0 {0.05346993257 0.706293980234 0.0438914734149} Untitled_6::C41 469 1 1 {} H 0.0 {0.0707589937388 0.739109092532 -0.00732448313944} Untitled_6::H25 470 1 6 {} C 0.0 {0.186171744002 0.956300514499 0.37421143299} Untitled_6::C44 471 1 1 {} H 0.0 {0.170199801668 0.0147672466516 0.355032701042} Untitled_6::H28 472 1 1 {} H 0.0 {0.195939227574 0.927280005043 0.319039071564} Untitled_6::H29 473 1 1 {} H 0.0 {0.235706285915 0.967194447263 0.411652158231} Untitled_6::H30 474 1 6 {} C 0.0 {0.149448572597 0.739748563233 0.548573586869} Untitled_6::C45 475 1 1 {} H 0.0 {0.174910189991 0.682382214903 0.536709483765} Untitled_6::H31 476 1 1 {} H 0.0 {0.0871348561494 0.729059427243 0.558305758569} Untitled_6::H32 477 1 1 {} H 0.0 {0.174757272128 0.757832126855 0.604480365047} Untitled_6::H33 478 1 7 {} N 0.0 {0.343049241921 0.0697459474201 0.636424859056} Untitled_6::N3 479 1 6 {} C 0.0 {0.074789930455 0.62821988286 0.0534189410339} Untitled_6::C43 480 1 1 {} H 0.0 {0.385004361092 0.230705551562 0.467575617472} H_head 481 1 1 {} H 0.0 {0.338991012523 0.128706844924 0.631700725768} 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.17283473 17.17283473 17.17283473 90 90 90} {{1 0 0} {0 1 0} {0 0 1}} {{1 0 0} {0 1 0} {0 0 1}} P1 1 {{17.17283473 0 0} {0 17.17283473 0} {0 0 17.17283473}} {{0.0582315043336 0 0} {0 0.0582315043336 0} {0 0 0.0582315043336}} @end @Columns AsymmetricBond Atom1 reference AsymmetricAtom Atom2 reference AsymmetricAtom Key int 0 Order int 0 @end @data 2 0 0 0 4 0 0 0 219 0 0 0 3 1 0 0 3 2 0 0 9 2 0 0 8 3 0 0 5 4 0 0 6 4 0 0 217 4 0 0 7 6 0 0 8 6 0 0 177 6 0 0 13 8 0 0 168 8 0 0 11 9 0 0 78 9 0 0 12 10 0 0 78 10 0 0 219 10 0 0 15 13 0 0 16 13 0 0 173 13 0 0 17 16 0 0 20 16 0 0 18 17 0 0 19 17 0 0 175 17 0 0 24 19 0 0 25 19 0 0 21 20 0 0 22 20 0 0 23 22 0 0 24 22 0 0 26 24 0 0 27 25 0 0 28 25 0 0 27 26 0 0 29 26 0 0 30 27 0 0 32 30 0 0 35 30 0 0 34 31 0 0 33 32 0 0 34 32 0 0 39 34 0 0 36 35 0 0 37 35 0 0 38 37 0 0 39 37 0 0 40 39 0 0 41 40 0 0 43 41 0 0 46 41 0 0 45 42 0 0 44 43 0 0 45 43 0 0 50 45 0 0 47 46 0 0 48 46 0 0 49 48 0 0 50 48 0 0 51 50 0 0 70 51 0 0 74 51 0 0 53 52 0 0 55 52 0 0 445 52 0 0 54 53 0 0 408 53 0 0 57 55 0 0 404 55 0 0 448 55 0 0 451 56 0 0 58 57 0 0 59 57 0 0 446 57 0 0 60 59 0 0 402 59 0 0 403 59 0 0 61 60 0 0 63 61 0 0 66 61 0 0 65 62 0 0 64 63 0 0 65 63 0 0 79 65 0 0 67 66 0 0 68 66 0 0 69 68 0 0 79 68 0 0 71 70 0 0 72 70 0 0 73 70 0 0 75 74 0 0 76 74 0 0 77 74 0 0 159 78 0 0 480 79 0 0 82 80 0 0 84 80 0 0 90 80 0 0 83 81 0 0 83 82 0 0 89 82 0 0 88 83 0 0 85 84 0 0 86 84 0 0 87 86 0 0 88 86 0 0 93 88 0 0 91 89 0 0 158 89 0 0 92 90 0 0 158 90 0 0 94 93 0 0 95 93 0 0 96 93 0 0 97 96 0 0 100 96 0 0 98 97 0 0 99 97 0 0 104 99 0 0 105 99 0 0 101 100 0 0 102 100 0 0 103 102 0 0 104 102 0 0 106 104 0 0 107 105 0 0 108 105 0 0 107 106 0 0 109 106 0 0 110 107 0 0 112 110 0 0 115 110 0 0 114 111 0 0 113 112 0 0 114 112 0 0 119 114 0 0 116 115 0 0 117 115 0 0 118 117 0 0 119 117 0 0 120 119 0 0 121 120 0 0 123 121 0 0 126 121 0 0 125 122 0 0 124 123 0 0 125 123 0 0 130 125 0 0 127 126 0 0 128 126 0 0 129 128 0 0 130 128 0 0 131 130 0 0 132 131 0 0 150 131 0 0 154 131 0 0 133 132 0 0 135 132 0 0 134 133 0 0 139 133 0 0 136 135 0 0 137 135 0 0 138 137 0 0 139 137 0 0 140 139 0 0 141 140 0 0 143 141 0 0 146 141 0 0 145 142 0 0 144 143 0 0 145 143 0 0 159 145 0 0 147 146 0 0 148 146 0 0 149 148 0 0 159 148 0 0 151 150 0 0 152 150 0 0 153 150 0 0 155 154 0 0 156 154 0 0 157 154 0 0 239 158 0 0 162 160 0 0 164 160 0 0 170 160 0 0 163 161 0 0 163 162 0 0 169 162 0 0 168 163 0 0 166 164 0 0 205 164 0 0 213 165 0 0 167 166 0 0 168 166 0 0 171 169 0 0 238 169 0 0 172 170 0 0 238 170 0 0 202 172 0 0 174 173 0 0 176 173 0 0 177 176 0 0 180 176 0 0 178 177 0 0 179 177 0 0 184 179 0 0 185 179 0 0 181 180 0 0 182 180 0 0 183 182 0 0 184 182 0 0 186 184 0 0 187 185 0 0 188 185 0 0 187 186 0 0 189 186 0 0 190 187 0 0 192 190 0 0 195 190 0 0 194 191 0 0 193 192 0 0 194 192 0 0 199 194 0 0 196 195 0 0 197 195 0 0 198 197 0 0 199 197 0 0 200 199 0 0 201 200 0 0 203 201 0 0 206 201 0 0 204 203 0 0 205 203 0 0 210 205 0 0 207 206 0 0 208 206 0 0 209 208 0 0 210 208 0 0 211 210 0 0 212 211 0 0 230 211 0 0 234 211 0 0 213 212 0 0 215 212 0 0 214 213 0 0 219 213 0 0 216 215 0 0 217 215 0 0 218 217 0 0 219 217 0 0 221 220 0 0 223 221 0 0 226 221 0 0 225 222 0 0 224 223 0 0 225 223 0 0 239 225 0 0 227 226 0 0 228 226 0 0 229 228 0 0 239 228 0 0 231 230 0 0 232 230 0 0 233 230 0 0 235 234 0 0 236 234 0 0 237 234 0 0 319 238 0 0 242 240 0 0 244 240 0 0 250 240 0 0 243 241 0 0 243 242 0 0 249 242 0 0 248 243 0 0 245 244 0 0 246 244 0 0 247 246 0 0 248 246 0 0 253 248 0 0 251 249 0 0 318 249 0 0 252 250 0 0 318 250 0 0 255 253 0 0 256 253 0 0 406 254 0 0 257 256 0 0 260 256 0 0 258 257 0 0 259 257 0 0 264 259 0 0 265 259 0 0 262 260 0 0 420 260 0 0 422 260 0 0 262 261 0 0 263 262 0 0 264 262 0 0 266 264 0 0 267 265 0 0 268 265 0 0 267 266 0 0 269 266 0 0 270 267 0 0 272 270 0 0 275 270 0 0 274 271 0 0 273 272 0 0 274 272 0 0 279 274 0 0 276 275 0 0 277 275 0 0 278 277 0 0 279 277 0 0 394 279 0 0 281 280 0 0 375 280 0 0 283 281 0 0 286 281 0 0 368 281 0 0 285 282 0 0 284 283 0 0 285 283 0 0 379 283 0 0 290 285 0 0 287 286 0 0 288 286 0 0 289 288 0 0 290 288 0 0 291 290 0 0 292 291 0 0 310 291 0 0 314 291 0 0 293 292 0 0 295 292 0 0 294 293 0 0 299 293 0 0 296 295 0 0 297 295 0 0 298 297 0 0 299 297 0 0 300 299 0 0 301 300 0 0 303 301 0 0 306 301 0 0 305 302 0 0 304 303 0 0 305 303 0 0 319 305 0 0 307 306 0 0 308 306 0 0 309 308 0 0 319 308 0 0 311 310 0 0 312 310 0 0 313 310 0 0 315 314 0 0 316 314 0 0 317 314 0 0 399 318 0 0 322 320 0 0 324 320 0 0 330 320 0 0 323 321 0 0 323 322 0 0 329 322 0 0 328 323 0 0 325 324 0 0 326 324 0 0 327 326 0 0 328 326 0 0 333 328 0 0 331 329 0 0 398 329 0 0 332 330 0 0 398 330 0 0 334 333 0 0 335 333 0 0 336 333 0 0 337 336 0 0 340 336 0 0 338 337 0 0 339 337 0 0 344 339 0 0 345 339 0 0 341 340 0 0 342 340 0 0 343 342 0 0 344 342 0 0 346 344 0 0 347 345 0 0 348 345 0 0 347 346 0 0 349 346 0 0 350 347 0 0 352 350 0 0 355 350 0 0 354 351 0 0 353 352 0 0 354 352 0 0 359 354 0 0 356 355 0 0 357 355 0 0 358 357 0 0 359 357 0 0 360 359 0 0 361 360 0 0 363 361 0 0 366 361 0 0 365 362 0 0 364 363 0 0 365 363 0 0 370 365 0 0 367 366 0 0 368 366 0 0 369 368 0 0 370 368 0 0 371 370 0 0 372 371 0 0 390 371 0 0 373 372 0 0 375 372 0 0 374 373 0 0 452 373 0 0 453 373 0 0 376 375 0 0 377 375 0 0 378 377 0 0 379 377 0 0 451 377 0 0 453 379 0 0 470 379 0 0 381 380 0 0 450 380 0 0 383 381 0 0 386 381 0 0 385 382 0 0 384 383 0 0 385 383 0 0 399 385 0 0 387 386 0 0 388 386 0 0 389 388 0 0 399 388 0 0 391 390 0 0 392 390 0 0 393 390 0 0 395 394 0 0 396 394 0 0 397 394 0 0 479 398 0 0 402 400 0 0 404 400 0 0 410 400 0 0 403 401 0 0 403 402 0 0 409 402 0 0 408 403 0 0 405 404 0 0 406 404 0 0 407 406 0 0 408 406 0 0 413 408 0 0 411 409 0 0 478 409 0 0 412 410 0 0 478 410 0 0 414 413 0 0 415 413 0 0 416 413 0 0 417 416 0 0 420 416 0 0 418 417 0 0 419 417 0 0 424 419 0 0 425 419 0 0 421 420 0 0 422 420 0 0 423 422 0 0 424 422 0 0 426 424 0 0 427 425 0 0 428 425 0 0 427 426 0 0 429 426 0 0 430 427 0 0 432 430 0 0 435 430 0 0 434 431 0 0 433 432 0 0 434 432 0 0 439 434 0 0 436 435 0 0 437 435 0 0 438 437 0 0 439 437 0 0 440 439 0 0 441 440 0 0 443 441 0 0 446 441 0 0 445 442 0 0 444 443 0 0 445 443 0 0 450 445 0 0 447 446 0 0 448 446 0 0 449 448 0 0 450 448 0 0 452 451 0 0 474 451 0 0 453 452 0 0 455 452 0 0 454 453 0 0 456 455 0 0 457 455 0 0 458 457 0 0 459 457 0 0 460 459 0 0 461 460 0 0 463 461 0 0 466 461 0 0 465 462 0 0 464 463 0 0 465 463 0 0 479 465 0 0 467 466 0 0 468 466 0 0 469 468 0 0 479 468 0 0 471 470 0 0 472 470 0 0 473 470 0 0 475 474 0 0 476 474 0 0 477 474 0 0 481 478 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 2 0 {0 0 1} 0 1 4 0 {0 0 0} 0 2 219 0 {0 0 0} 0 3 3 1 {0 0 0} 0 4 3 2 {0 0 0} 0 5 9 2 {0 0 0} 0 6 8 3 {0 0 0} 0 7 5 4 {0 0 0} 0 8 6 4 {0 0 1} 0 9 217 4 {0 0 0} 0 10 7 6 {0 0 0} 0 11 8 6 {0 0 0} 0 12 177 6 {0 0 0} 0 13 13 8 {0 0 0} 0 14 168 8 {0 0 0} 0 15 9 11 {1 0 0} 0 16 9 78 {0 0 1} 0 17 12 10 {0 0 0} 0 18 78 10 {0 0 0} 0 19 219 10 {0 0 0} 0 20 15 13 {0 0 0} 0 21 16 13 {0 0 0} 0 22 173 13 {0 0 0} 0 23 17 16 {0 0 0} 0 24 20 16 {0 0 0} 0 25 18 17 {0 0 0} 0 26 19 17 {0 0 0} 0 27 175 17 {0 0 0} 0 28 24 19 {0 0 0} 0 29 25 19 {0 0 0} 0 30 21 20 {0 0 0} 0 31 22 20 {0 0 0} 0 32 23 22 {0 0 0} 0 33 24 22 {0 0 0} 0 34 26 24 {0 1 0} 0 35 27 25 {0 1 0} 0 36 28 25 {0 0 0} 0 37 27 26 {0 0 0} 0 38 29 26 {0 0 0} 0 39 30 27 {0 0 0} 0 40 32 30 {0 0 0} 0 41 35 30 {0 0 0} 0 42 34 31 {0 0 0} 0 43 32 33 {1 0 0} 0 44 32 34 {1 0 0} 0 45 39 34 {1 0 0} 0 46 36 35 {0 0 0} 0 47 37 35 {0 0 0} 0 48 38 37 {0 0 0} 0 49 39 37 {0 0 0} 0 50 39 40 {1 0 0} 0 51 41 40 {0 0 0} 0 52 43 41 {0 0 0} 0 53 46 41 {0 0 0} 0 54 45 42 {0 0 0} 0 55 44 43 {0 0 0} 0 56 45 43 {0 0 0} 0 57 50 45 {0 0 0} 0 58 47 46 {1 0 0} 0 59 48 46 {0 0 0} 0 60 49 48 {0 0 0} 0 61 50 48 {0 0 0} 0 62 51 50 {0 0 0} 0 63 70 51 {0 0 0} 0 64 74 51 {0 0 0} 0 65 53 52 {0 0 0} 0 66 55 52 {0 0 0} 0 67 445 52 {0 0 0} 0 68 54 53 {0 0 0} 0 69 408 53 {0 0 0} 0 70 57 55 {0 0 0} 0 71 404 55 {0 0 0} 0 72 448 55 {0 0 0} 0 73 451 56 {0 0 0} 0 74 58 57 {0 0 0} 0 75 59 57 {0 0 0} 0 76 446 57 {0 0 0} 0 77 60 59 {0 0 0} 0 78 402 59 {0 0 0} 0 79 403 59 {0 0 0} 0 80 60 61 {0 1 0} 0 81 63 61 {0 0 0} 0 82 66 61 {0 0 0} 0 83 65 62 {0 0 0} 0 84 64 63 {0 1 0} 0 85 65 63 {0 0 0} 0 86 79 65 {0 0 0} 0 87 67 66 {0 0 0} 0 88 68 66 {0 0 0} 0 89 69 68 {0 0 0} 0 90 79 68 {0 0 0} 0 91 71 70 {0 0 0} 0 92 72 70 {0 0 0} 0 93 73 70 {0 0 0} 0 94 75 74 {0 0 0} 0 95 76 74 {0 0 0} 0 96 77 74 {0 0 0} 0 97 78 159 {1 0 0} 0 98 480 79 {0 0 0} 0 99 82 80 {0 0 0} 0 100 84 80 {0 0 0} 0 101 90 80 {0 0 0} 0 102 83 81 {0 0 0} 0 103 83 82 {0 0 0} 0 104 89 82 {0 0 0} 0 105 88 83 {0 0 0} 0 106 85 84 {0 0 0} 0 107 86 84 {0 0 0} 0 108 87 86 {0 0 0} 0 109 88 86 {0 0 0} 0 110 93 88 {0 0 0} 0 111 91 89 {0 0 0} 0 112 158 89 {0 0 0} 0 113 92 90 {0 0 0} 0 114 158 90 {0 0 0} 0 115 94 93 {0 0 0} 0 116 95 93 {0 0 0} 0 117 96 93 {0 0 0} 0 118 97 96 {0 0 0} 0 119 100 96 {0 0 0} 0 120 98 97 {0 0 0} 0 121 99 97 {0 0 0} 0 122 104 99 {0 0 0} 0 123 105 99 {0 0 0} 0 124 101 100 {0 0 0} 0 125 102 100 {0 0 0} 0 126 103 102 {0 0 0} 0 127 104 102 {0 0 0} 0 128 106 104 {0 0 0} 0 129 107 105 {0 0 0} 0 130 108 105 {0 0 0} 0 131 107 106 {0 0 0} 0 132 109 106 {0 0 0} 0 133 107 110 {0 1 0} 0 134 112 110 {0 0 0} 0 135 115 110 {0 0 0} 0 136 114 111 {0 0 0} 0 137 113 112 {0 0 0} 0 138 114 112 {0 0 0} 0 139 119 114 {0 0 0} 0 140 116 115 {0 0 0} 0 141 117 115 {0 0 0} 0 142 118 117 {0 0 0} 0 143 119 117 {0 0 0} 0 144 120 119 {0 0 0} 0 145 121 120 {0 0 0} 0 146 123 121 {0 0 0} 0 147 126 121 {0 0 0} 0 148 125 122 {0 0 0} 0 149 124 123 {0 0 0} 0 150 125 123 {0 0 0} 0 151 130 125 {0 0 0} 0 152 127 126 {0 0 0} 0 153 128 126 {0 0 0} 0 154 129 128 {0 0 0} 0 155 130 128 {0 0 0} 0 156 131 130 {0 0 0} 0 157 132 131 {0 0 0} 0 158 150 131 {0 0 0} 0 159 154 131 {0 0 0} 0 160 133 132 {0 0 0} 0 161 135 132 {0 0 0} 0 162 134 133 {0 0 0} 0 163 139 133 {0 0 0} 0 164 136 135 {0 0 0} 0 165 137 135 {0 0 0} 0 166 138 137 {0 0 0} 0 167 139 137 {0 0 0} 0 168 140 139 {0 0 0} 0 169 141 140 {0 0 0} 0 170 143 141 {0 0 0} 0 171 146 141 {0 0 0} 0 172 145 142 {0 0 0} 0 173 144 143 {0 0 0} 0 174 145 143 {0 0 0} 0 175 159 145 {0 0 0} 0 176 147 146 {0 0 0} 0 177 148 146 {0 0 0} 0 178 149 148 {0 0 0} 0 179 159 148 {0 0 0} 0 180 151 150 {0 0 0} 0 181 152 150 {0 0 0} 0 182 153 150 {0 0 0} 0 183 155 154 {0 0 0} 0 184 156 154 {0 0 0} 0 185 157 154 {0 0 0} 0 186 239 158 {0 0 0} 0 187 162 160 {0 0 0} 0 188 164 160 {0 0 0} 0 189 160 170 {0 0 1} 0 190 163 161 {0 0 0} 0 191 163 162 {0 0 0} 0 192 169 162 {0 0 0} 0 193 168 163 {0 0 0} 0 194 166 164 {0 0 0} 0 195 164 205 {0 0 1} 0 196 213 165 {0 0 0} 0 197 167 166 {0 0 0} 0 198 168 166 {0 0 0} 0 199 171 169 {0 0 0} 0 200 238 169 {0 0 0} 0 201 172 170 {0 1 0} 0 202 238 170 {0 0 1} 0 203 202 172 {0 0 0} 0 204 174 173 {0 0 0} 0 205 176 173 {0 0 0} 0 206 177 176 {0 0 0} 0 207 180 176 {0 0 0} 0 208 178 177 {0 0 0} 0 209 179 177 {0 0 0} 0 210 184 179 {0 0 0} 0 211 185 179 {0 0 0} 0 212 181 180 {0 0 0} 0 213 182 180 {0 0 0} 0 214 183 182 {0 0 0} 0 215 184 182 {0 0 0} 0 216 186 184 {0 0 0} 0 217 187 185 {0 0 0} 0 218 185 188 {0 0 1} 0 219 187 186 {0 0 0} 0 220 189 186 {0 0 0} 0 221 190 187 {0 0 0} 0 222 190 192 {0 0 1} 0 223 195 190 {0 0 0} 0 224 194 191 {0 0 0} 0 225 193 192 {0 0 0} 0 226 194 192 {0 0 0} 0 227 199 194 {0 0 0} 0 228 196 195 {0 0 0} 0 229 195 197 {0 0 1} 0 230 198 197 {0 0 0} 0 231 199 197 {0 0 0} 0 232 200 199 {0 0 0} 0 233 201 200 {0 0 0} 0 234 201 203 {0 1 0} 0 235 201 206 {0 1 0} 0 236 204 203 {0 0 1} 0 237 205 203 {0 0 0} 0 238 210 205 {0 0 0} 0 239 207 206 {0 1 0} 0 240 208 206 {0 0 0} 0 241 209 208 {0 0 0} 0 242 210 208 {0 0 0} 0 243 211 210 {0 0 0} 0 244 212 211 {0 0 0} 0 245 230 211 {0 0 0} 0 246 234 211 {0 0 0} 0 247 213 212 {0 0 0} 0 248 215 212 {0 0 0} 0 249 214 213 {0 0 0} 0 250 219 213 {0 0 0} 0 251 216 215 {0 0 0} 0 252 217 215 {0 0 0} 0 253 218 217 {0 0 0} 0 254 219 217 {0 0 0} 0 255 221 220 {0 0 1} 0 256 223 221 {0 0 0} 0 257 226 221 {0 0 0} 0 258 225 222 {0 0 0} 0 259 224 223 {0 0 0} 0 260 225 223 {0 0 0} 0 261 239 225 {0 0 0} 0 262 226 227 {1 0 0} 0 263 228 226 {0 0 0} 0 264 229 228 {0 0 0} 0 265 239 228 {0 0 0} 0 266 231 230 {0 0 0} 0 267 232 230 {0 0 0} 0 268 233 230 {0 0 0} 0 269 235 234 {0 0 0} 0 270 236 234 {0 0 0} 0 271 237 234 {0 0 0} 0 272 238 319 {0 0 1} 0 273 242 240 {0 0 0} 0 274 244 240 {0 0 0} 0 275 240 250 {0 0 1} 0 276 243 241 {0 0 0} 0 277 243 242 {0 0 0} 0 278 242 249 {0 0 1} 0 279 248 243 {0 0 0} 0 280 245 244 {0 0 0} 0 281 246 244 {0 0 0} 0 282 246 247 {0 1 0} 0 283 248 246 {0 0 0} 0 284 248 253 {0 1 0} 0 285 251 249 {0 0 0} 0 286 318 249 {0 0 0} 0 287 252 250 {0 0 0} 0 288 318 250 {0 0 0} 0 289 255 253 {0 0 0} 0 290 256 253 {0 1 0} 0 291 406 254 {0 0 0} 0 292 256 257 {0 1 0} 0 293 260 256 {0 0 0} 0 294 258 257 {0 0 0} 0 295 259 257 {0 1 0} 0 296 264 259 {0 0 0} 0 297 265 259 {0 0 0} 0 298 262 260 {0 0 0} 0 299 420 260 {0 0 0} 0 300 422 260 {0 0 0} 0 301 262 261 {0 0 0} 0 302 263 262 {0 0 0} 0 303 264 262 {0 0 0} 0 304 266 264 {0 0 0} 0 305 267 265 {0 0 0} 0 306 265 268 {0 1 0} 0 307 267 266 {0 0 0} 0 308 269 266 {0 0 0} 0 309 270 267 {0 0 0} 0 310 272 270 {0 0 0} 0 311 275 270 {0 0 0} 0 312 274 271 {0 0 0} 0 313 273 272 {0 0 0} 0 314 274 272 {0 0 0} 0 315 279 274 {0 0 0} 0 316 275 276 {0 1 0} 0 317 277 275 {0 0 0} 0 318 277 278 {0 1 0} 0 319 279 277 {0 0 0} 0 320 279 394 {1 0 0} 0 321 280 281 {0 1 0} 0 322 375 280 {0 0 0} 0 323 283 281 {0 1 0} 0 324 286 281 {0 0 0} 0 325 368 281 {1 0 0} 0 326 285 282 {0 0 0} 0 327 284 283 {1 0 0} 0 328 283 285 {0 1 0} 0 329 379 283 {0 0 0} 0 330 290 285 {0 0 0} 0 331 287 286 {0 0 0} 0 332 288 286 {0 0 0} 0 333 289 288 {0 0 0} 0 334 290 288 {0 0 0} 0 335 291 290 {0 0 0} 0 336 292 291 {0 0 0} 0 337 310 291 {0 0 0} 0 338 314 291 {0 0 0} 0 339 293 292 {0 0 0} 0 340 295 292 {0 0 0} 0 341 294 293 {0 0 0} 0 342 299 293 {0 0 0} 0 343 296 295 {0 0 0} 0 344 297 295 {0 1 0} 0 345 298 297 {0 0 0} 0 346 297 299 {0 1 0} 0 347 300 299 {0 0 0} 0 348 301 300 {0 0 0} 0 349 303 301 {0 0 0} 0 350 306 301 {0 0 0} 0 351 302 305 {0 0 1} 0 352 304 303 {0 0 0} 0 353 305 303 {0 0 0} 0 354 319 305 {0 0 0} 0 355 307 306 {0 0 0} 0 356 308 306 {0 0 0} 0 357 309 308 {0 0 0} 0 358 319 308 {0 0 0} 0 359 311 310 {0 0 0} 0 360 312 310 {0 0 0} 0 361 313 310 {0 0 0} 0 362 315 314 {1 0 0} 0 363 316 314 {0 0 0} 0 364 317 314 {1 0 0} 0 365 399 318 {0 0 0} 0 366 322 320 {0 0 0} 0 367 324 320 {0 0 0} 0 368 330 320 {0 0 0} 0 369 323 321 {0 0 0} 0 370 323 322 {0 0 0} 0 371 329 322 {0 0 0} 0 372 328 323 {0 0 0} 0 373 325 324 {0 0 0} 0 374 326 324 {0 0 0} 0 375 327 326 {0 0 0} 0 376 328 326 {0 0 0} 0 377 333 328 {0 0 0} 0 378 331 329 {0 0 0} 0 379 398 329 {0 0 0} 0 380 330 332 {0 0 1} 0 381 398 330 {0 0 0} 0 382 334 333 {0 0 0} 0 383 335 333 {0 0 0} 0 384 336 333 {0 0 0} 0 385 337 336 {0 0 0} 0 386 340 336 {0 0 0} 0 387 338 337 {0 0 0} 0 388 339 337 {0 0 0} 0 389 344 339 {0 0 0} 0 390 345 339 {0 0 0} 0 391 341 340 {0 0 0} 0 392 342 340 {0 0 0} 0 393 343 342 {0 0 0} 0 394 344 342 {0 0 0} 0 395 346 344 {0 0 0} 0 396 347 345 {0 0 0} 0 397 348 345 {0 0 0} 0 398 347 346 {0 0 0} 0 399 349 346 {0 0 0} 0 400 350 347 {0 0 0} 0 401 352 350 {0 0 0} 0 402 355 350 {0 0 0} 0 403 354 351 {0 0 0} 0 404 353 352 {0 0 0} 0 405 354 352 {0 0 0} 0 406 359 354 {0 0 0} 0 407 356 355 {0 0 0} 0 408 357 355 {0 0 0} 0 409 358 357 {0 0 0} 0 410 359 357 {0 0 0} 0 411 360 359 {0 0 0} 0 412 361 360 {0 0 0} 0 413 363 361 {0 0 0} 0 414 366 361 {0 0 0} 0 415 365 362 {0 0 0} 0 416 364 363 {0 0 0} 0 417 365 363 {0 1 0} 0 418 370 365 {0 0 0} 0 419 367 366 {0 0 0} 0 420 368 366 {0 0 0} 0 421 369 368 {0 0 0} 0 422 370 368 {0 1 0} 0 423 371 370 {0 0 0} 0 424 371 372 {1 0 0} 0 425 390 371 {0 0 0} 0 426 373 372 {0 0 0} 0 427 375 372 {0 0 0} 0 428 374 373 {1 0 0} 0 429 452 373 {0 0 0} 0 430 453 373 {0 0 0} 0 431 376 375 {0 0 0} 0 432 377 375 {0 0 0} 0 433 378 377 {0 0 0} 0 434 379 377 {0 0 0} 0 435 451 377 {0 0 0} 0 436 453 379 {0 0 0} 0 437 470 379 {0 0 0} 0 438 381 380 {0 0 0} 0 439 450 380 {0 0 0} 0 440 383 381 {0 0 0} 0 441 386 381 {0 0 0} 0 442 385 382 {0 0 0} 0 443 384 383 {0 0 0} 0 444 385 383 {0 0 0} 0 445 399 385 {0 0 0} 0 446 387 386 {0 0 0} 0 447 388 386 {0 0 0} 0 448 389 388 {0 0 0} 0 449 399 388 {0 0 0} 0 450 391 390 {0 0 0} 0 451 392 390 {0 0 0} 0 452 393 390 {0 0 0} 0 453 395 394 {0 0 0} 0 454 396 394 {0 0 0} 0 455 397 394 {0 0 0} 0 456 398 479 {0 0 1} 0 457 402 400 {0 0 0} 0 458 404 400 {0 0 0} 0 459 400 410 {0 1 0} 0 460 403 401 {0 0 0} 0 461 403 402 {0 0 0} 0 462 402 409 {0 1 0} 0 463 408 403 {0 0 0} 0 464 405 404 {0 0 0} 0 465 406 404 {0 0 0} 0 466 407 406 {0 0 0} 0 467 408 406 {0 0 0} 0 468 413 408 {0 0 0} 0 469 411 409 {0 0 0} 0 470 478 409 {0 0 0} 0 471 412 410 {0 0 0} 0 472 478 410 {0 0 0} 0 473 414 413 {0 0 0} 0 474 415 413 {0 0 0} 0 475 416 413 {0 0 0} 0 476 417 416 {0 0 0} 0 477 420 416 {0 0 0} 0 478 418 417 {0 0 0} 0 479 419 417 {0 0 0} 0 480 424 419 {0 0 0} 0 481 419 425 {0 0 1} 0 482 421 420 {0 0 0} 0 483 422 420 {0 0 0} 0 484 423 422 {0 0 0} 0 485 424 422 {0 0 0} 0 486 424 426 {0 0 1} 0 487 427 425 {0 0 0} 0 488 428 425 {0 0 0} 0 489 427 426 {0 0 0} 0 490 429 426 {0 0 0} 0 491 430 427 {0 0 0} 0 492 432 430 {0 0 0} 0 493 435 430 {0 0 0} 0 494 434 431 {0 0 0} 0 495 433 432 {0 0 0} 0 496 434 432 {0 0 0} 0 497 439 434 {0 0 0} 0 498 436 435 {0 0 0} 0 499 437 435 {0 0 0} 0 500 438 437 {0 0 0} 0 501 439 437 {0 0 0} 0 502 440 439 {0 0 0} 0 503 441 440 {0 0 0} 0 504 443 441 {0 0 0} 0 505 446 441 {0 0 0} 0 506 445 442 {0 0 0} 0 507 444 443 {0 0 0} 0 508 445 443 {0 0 0} 0 509 450 445 {0 0 0} 0 510 447 446 {0 0 0} 0 511 448 446 {0 0 0} 0 512 449 448 {0 0 0} 0 513 450 448 {0 0 0} 0 514 452 451 {0 0 0} 0 515 474 451 {0 0 0} 0 516 453 452 {0 0 0} 0 517 455 452 {0 0 0} 0 518 454 453 {0 0 0} 0 519 456 455 {0 0 0} 0 520 457 455 {0 0 0} 0 521 458 457 {0 0 0} 0 522 459 457 {1 0 0} 0 523 460 459 {0 0 0} 0 524 461 460 {0 0 0} 0 525 461 463 {1 0 0} 0 526 461 466 {1 0 0} 0 527 465 462 {0 0 0} 0 528 464 463 {1 0 0} 0 529 465 463 {0 0 0} 0 530 479 465 {0 0 0} 0 531 467 466 {1 0 0} 0 532 468 466 {0 0 0} 0 533 469 468 {0 0 1} 0 534 479 468 {0 0 0} 0 535 470 471 {0 1 0} 0 536 472 470 {0 0 0} 0 537 473 470 {0 0 0} 0 538 475 474 {0 0 0} 0 539 476 474 {0 0 0} 0 540 477 474 {0 0 0} 0 541 481 478 {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 ? {} {} {} {}}} } } }