From a2b964586dc47892e56403f7d881258e723e856c Mon Sep 17 00:00:00 2001 From: sgosline Date: Fri, 12 May 2023 15:55:00 -0700 Subject: [PATCH 01/12] added zf expression parsing --- bmd2Samps_v3/parseGexData.R | 31 - buildV3db.sh | 142 ++ zfExp/Dockerfile | 14 + {bmd2Samps_v3/data => zfExp}/ZF_gex.xlsx | Bin zfExp/chemicals.csv | 2575 ++++++++++++++++++++++ zfExp/parseGexData.R | 74 + 6 files changed, 2805 insertions(+), 31 deletions(-) delete mode 100644 bmd2Samps_v3/parseGexData.R create mode 100644 buildV3db.sh create mode 100644 zfExp/Dockerfile rename {bmd2Samps_v3/data => zfExp}/ZF_gex.xlsx (100%) create mode 100644 zfExp/chemicals.csv create mode 100644 zfExp/parseGexData.R diff --git a/bmd2Samps_v3/parseGexData.R b/bmd2Samps_v3/parseGexData.R deleted file mode 100644 index a9cdd7c..0000000 --- a/bmd2Samps_v3/parseGexData.R +++ /dev/null @@ -1,31 +0,0 @@ -##loadGeneExpressionDAta - -library(readxl) -library(dplyr) -library(tidyr) - -tab<-readxl::read_xlsx('data/ZF_gex.xlsx',skip=1) - -ind_res<-tab%>% tidyr::pivot_longer(ends_with("Indication"),names_to='condition',values_to='indication')%>% - dplyr::select(GeneID,Gene,condition,indication)%>% - mutate(condition=stringr::str_remove(condition,'_DEG_Indication')) - -fc_res<-tab%>% - tidyr::pivot_longer(ends_with("Log2FoldChange"),names_to='condition',values_to='Log2FoldChange')%>% - dplyr::select(GeneID,Gene,condition,Log2FoldChange)%>% - mutate(condition=stringr::str_remove(condition,'_Log2FoldChange')) - -pval_res<-tab%>% - tidyr::pivot_longer(ends_with("Adj_p_value"),names_to='condition',values_to='adj_p_value')%>% - dplyr::select(GeneID,Gene,condition,adj_p_value)%>% - mutate(condition=stringr::str_remove(condition,'_Adj_p_value')) - -full_tab<-ind_res%>% - full_join(fc_res)%>% - full_join(pval_res) - -##need to get mapping to drug name -write.table(full_tab,file ='srpDEGstats.tsv',sep='\t',quote=F,row.names=F,col.names=T) - - - \ No newline at end of file diff --git a/buildV3db.sh b/buildV3db.sh new file mode 100644 index 0000000..5201107 --- /dev/null +++ b/buildV3db.sh @@ -0,0 +1,142 @@ +#!/bin/bash +# V3 of the database includes the zebrafish data + +##make a folder if one does not exist +if test -f temp; then + echo "temp directory exists" +else + mkdir temp +fi + +#################################################### phase I,II data +##here we have the data from doo nam/lisa, we need to copy it into the temp directory +#phase12 data +p12_morph='raw_files/zf_morphology_data_335_chemicals_2020DEC16_fixed.csv' +p12_lpr_1='344_zf_LPR_data_phase_1_2_2020JUNE25_updated_plate_id_for_TX_tall_fixed_merged.csv' +#this second file was just a duplicate with data from chemicals that only had 15 time points or so +#p12_lpr_2='344_zf_LPR_data_phase_1_2_2020JUNE25_updated_plate_id_for_TX_tall_fixed_merged_full_240_timepoints.csv' +orig_lpr='raw_files/p12_lpr.tar.gz' + + +cmd='tar -xvzf '$orig_lpr +echo $cmd +$cmd + +cp $p12_morph temp/morph0.csv +cp $p12_lpr_1 temp/lpr0_1.csv +#cp $p12_lpr_2 temp/lpr0_2.csv + +#################################################### phase III data +##phase 3 data is on dropbox, we need to pull it to temp directory +#https://www.dropbox.com/sh/zg0q6wl13a3uo99/AAA0cdAK_fJwkJqpvF_HH6DWa?dl=0/ +p3_morph='wget https://www.dropbox.com/sh/zg0q6wl13a3uo99/AACFZprOKkbvydjfoDI3oZo-a/Tanguay%20Phase%203%20zf%20morphology%20data%20PNNL%202021MAR23.csv -O temp/morph1.csv' +p3_lpr='wget https://www.dropbox.com/sh/zg0q6wl13a3uo99/AADd1QBStMguW9qYgzH2eatJa/Tanguay%20Phase%203%20zf%20LPR%20data%20PNNL%202021MAR23.csv -O temp/lpr1.csv' + +echo $p3_morph +$p3_morph +echo $p3_lpr +$p3_lpr + +#################################################### PFAS data +##PFAS data is also on dropbox, we need to pull it +##downloading files from Lisa's dropbox PFAS data +#epr_cmd="wget https://www.dropbox.com/sh/69ootcq7yyvvx2h/AABgnmHtboM4LevxK1yxPIK-a/zf%20EPA%20PFAS%20EPR_PNNL_05-28-2021.csv" -O temp/epr.csv +#lpr_cmd='wget https://www.dropbox.com/sh/69ootcq7yyvvx2h/AABgzjaRPteU1EZIhnW9zv2Ka/zf%20EPA%20PFAS%20LPR_PNNL_05-28-2021.csv -O temp/lpr2.csv' +#mor_cmd='wget https://www.dropbox.com/sh/69ootcq7yyvvx2h/AABxsOLgwlv7-_HTZ0xaAIlNa/zf%20EPA%20PFAS%20morphology_PNNL_05-28-2021.csv -O temp/morph2.csv' + +lpr_cmd="wget https://www.dropbox.com/s/ha7jduok03j82mf/zf%20EPA%20PFAS%20LPR_PNNL_05-28-2021.csv?dl=0 -O temp/lpr2.csv" +echo $lpr_cmd +$lpr_cmd + +mor_cmd="wget https://www.dropbox.com/s/jma3b9al3u8hcny/zf%20EPA%20PFAS%20morphology_PNNL_05-28-2021.csv?dl=0 -O temp/morph2.csv" +echo $mor_cmd +$mor_cmd + +################################################## run pipeline +#we have 3 pairs of files to run + +dpath='/tmp/' ##path to files in docker images + +all_lpr=$dpath"temp/lpr0_1.csv "$dpath"temp/lpr1.csv "$dpath"temp/lpr2.csv" +all_morph=$dpath"temp/morph0.csv "$dpath"temp/morph1.csv "$dpath"temp/morph2.csv" + +##first we run validation on each +#docker pull sgosline/srp-schemadb +#docker run -v $PWD:/tmp sgosline/schemadb $all_lpr + +##then we get the gene data +gpull="docker pull sgosline/srp-exposome" +echo $gpull +$gpull + +grun="docker run -v "$PWD":/tmp sgosline/srp-exposome" +echo $grun +$grun + +##then we run morph +dpull="docker pull sgosline/srp-zfbmd" +echo $dpull +$dpull + +drun="docker run -v "$PWD":/tmp sgosline/srp-zfbmd --output=/tmp --morpho "$all_morph +echo $drun +$drun + +##now rename these files +cpcmdb='mv new_bmds.csv new_bmds1.csv' +echo $cpcmdb +$cpcmdb + +cpcmdf='mv new_fits.csv new_fits1.csv' +echo $cpcmdf +$cpcmdf + +cpcmdd='mv new_dose.csv new_dose1.csv' +echo $cpcmdd +$cpcmdd + +##then we concatentate them and run lpr + +drun="docker run -v "$PWD":/tmp sgosline/srp-zfbmd --output /tmp --morpho "$all_morph" --LPR "$all_lpr +echo $drun +$drun + +echo "BMDs\n" +cc='wc -l new_bmds.csv' +$cc + +echo "Dose response\n" +wc -l new_dose.csv +echo "New Fits" +wc -l new_fits.csv +catcmd() { + cat $1 >> $2 +} + + +catcmdf='catcmd new_fits1.csv new_fits.csv' +echo $catcmdf +$catcmdf + +catcmdd='catcmd new_dose1.csv new_dose.csv' +echo $catcmdd +$catcmdd + +catcmdb='catcmd new_bmds1.csv new_bmds.csv' +echo $catcmdb +$catcmdb + +##then we use output to build database +dpull="docker pull sgosline/bmd2samps:latest" # -t sgosline/srp-bmd2samps:latest" +echo $dpull +$dpull + +##now build the database files +drun="docker run -v"$PWD":/tmp sgosline/srp-bmd2samps:latest --chemicals=/tmp/new_bmds.csv,/tmp/new_fits.csv,/tmp/new_dose.csv" +echo $drun +$drun +##then validate again and add to db + +trun='tar -cvzf srpCompendiumV2.tar.gz sigGeneStats.csv chemicals.csv samples.csv sampleToChemicals.csv zebrafishSampBMDs.csv zebrafishChemBMDs.csv zebrafishSampXYCoords.csv zebrafishChemXYCoords.csv zebrafishChemDoseResponse.csv zebrafishSampDoseResponse.csv' +echo $trun +$trun diff --git a/zfExp/Dockerfile b/zfExp/Dockerfile new file mode 100644 index 0000000..b783454 --- /dev/null +++ b/zfExp/Dockerfile @@ -0,0 +1,14 @@ +FROM bioconductor/bioconductor_docker +# To setup other dependencies + +#COPY setup.sh /setup.sh +RUN Rscript -e "install.packages('readxl',dependencies=TRUE, repos='http://cran.rstudio.com')" +RUN Rscript -e "install.packages('dplyr',dependencies=TRUE, repos='http://cran.rstudio.com')" +RUN Rscript -e "install.packages('tidyr',dependencies=TRUE, repos='http://cran.rstudio.com')" + +COPY . zfExp +COPY chemicals.csv zfExp +WORKDIR zfExp + +ENTRYPOINT ["Rscript","parseGexData.R"] +VOLUME ["/tmp"] diff --git a/bmd2Samps_v3/data/ZF_gex.xlsx b/zfExp/ZF_gex.xlsx similarity index 100% rename from bmd2Samps_v3/data/ZF_gex.xlsx rename to zfExp/ZF_gex.xlsx diff --git a/zfExp/chemicals.csv b/zfExp/chemicals.csv new file mode 100644 index 0000000..ca177f1 --- /dev/null +++ b/zfExp/chemicals.csv @@ -0,0 +1,2575 @@ +"Chemical_ID","cas_number","DTXSID","PREFERRED_NAME","INCHIKEY","SMILES","MOLECULAR_FORMULA","AVERAGE_MASS","PUBCHEM_DATA_SOURCES","chem_source","chemical_class","chemDescription" +0,"290352-28-2","DTXSID7047306","CP-634384","CEYPDXWCYTVSDN-UHFFFAOYSA-N","CC1=CC(NC(=O)C(O)=O)=CC(C)=C1OC1=CC=C(O)C2=C1CCC2","C19H19NO5","341.363","13",NA,NA,NA +2,"368832-42-2","DTXSID1047283","CP-728663","KDGDTPNBDMVKHC-XIAWMOHYSA-N","CC[C@H]1CC[C@H](NCC2=CC3=C(C=C2OC)[C@H]2C[C@H]2C(=O)N3C)[C@@H](N1)C1=CC=CC=C1","C26H33N3O2","419.56900000000002","10",NA,NA,NA +3,"102409-92-7","DTXSID10858817","FK 317","BUZDGGFWWPZBIN-UHFFFAOYSA-N","COC1=CC(C=O)=CC2=C1C(COC(N)=O)C1(OC(C)=O)ON2CC2C1N2C(C)=O","C19H21N3O8","419.39","23",NA,NA,NA +4,"180084-01-9","DTXSID5047320","SB236057A","LVCMHQCPNBYOGQ-UHFFFAOYSA-N","Cl.CCN1CCC2(COC3=C2C=C2N(CCC2=C3)C(=O)C2=CC=C(C=C2)C2=CC=C(C=C2C)C2=NN=C(C)O2)CC1","C33H35ClN4O3","571.12","8",NA,NA,NA +7,"221671-62-1","DTXSID6047369","SR146131 trifluoroacetate (1:1)","UJGBTZUTZSMGCO-UHFFFAOYSA-N","OC(=O)C(F)(F)F.COC1=CC(C2=C(CCC3CCCCC3)SC(NC(=O)C3=CC4=CC(C)=CC(C)=C4N3CC(O)=O)=N2)=C(OC)C=C1Cl","C34H37ClF3N3O7S","724.19","5",NA,NA,NA +10,"444610-91-7","DTXSID6047315","PharmaGSID_47315","CESIUPFUCGHEPP-UHFFFAOYSA-N","CCC1=C(OCC(O)=O)C=CC(SCC2=C(CN3CCN(CC3)C3=CC=C(OC)C=C3)N=C(S2)C2=CC=C(C=C2)C(F)(F)F)=C1","C33H34F3N3O4S2","657.77","13",NA,NA,NA +11,"588941-45-1","DTXSID5048506","PharmaGSID_48506","QULLOTSYPAOTIW-OAHLLOKOSA-N","CS(=O)(=O)C1=CC=C(C=C1Cl)[C@@H](CC1CCCC1)C(=O)NC1=NC=CN=C1","C19H22ClN3O3S","407.91","10",NA,NA,NA +12,"445295-04-5","DTXSID6047282","CP-671305","CNIGFESSDPOCKS-CYBMUJFWSA-N","C[C@@H](OC1=CC=C(CNC(=O)C2=CC=CN=C2OC2=CC=C3OCOC3=C2)C(F)=C1)C(O)=O","C23H19FN2O7","454.41","28",NA,NA,NA +14,"177785-47-6","DTXSID3047261","(2S,3S)-3-Methyl-2-(3-oxo-1,2-benzothiazol-2(3H)-yl)pentanoic acid","FUSYFEXGXRDJNB-KWQFWETISA-N","CC[C@H](C)[C@H](N1SC2=CC=CC=C2C1=O)C(O)=O","C13H15NO3S","265.33","20",NA,NA,NA +15,"145742-28-5","DTXSID9047251","CP-122721","ZIWFCOIGUNPHPM-HKUYNNGSSA-N","COC1=C(CN[C@H]2CCCN[C@H]2C2=CC=CC=C2)C=C(OC(F)(F)F)C=C1","C20H23F3N2O2","380.411","29",NA,NA,NA +17,"106-25-2","DTXSID3026728","(2Z)-3,7-Dimethylocta-2,6-dien-1-ol","GLZPCOQZEFWAFX-YFHOEESVSA-N","CC(C)=CCC\C(C)=C/CO","C10H18O","154.25299999999999","96",NA,NA,NA +18,"171866-31-2","DTXSID8047264","CP-283097","JGYVZUCCBOVDJE-MJGOQNOKSA-N","O[C@@H]1[C@@H](COC2=CC(O)=CC=C12)N1CCC(O)(CC1)C1=CC=C(F)C=C1","C20H22FNO4","359.39699999999999","20",NA,NA,NA +21,"1191914-21-2","DTXSID8048521","PharmaGSID_48521","CXXVJZRGOOIVOD-SANMLTNESA-N","CCCC[C@H]1CN(CC2CCOCC2)C(=O)OC11CCN(CC1)C1(C)CCN(CC1)C(=O)C1=C(C)N=CN=C1C","C31H49N5O4","555.76400000000001","7",NA,NA,NA +22,"291305-06-1","DTXSID5047295","UK-373911","HGBGXSPIBLZGHS-SJCJKPOMSA-N","CN[C@H]1CC[C@@H](C2=CC=C(Cl)C(Cl)=C2)C2=CC=C(C=C12)S(N)(=O)=O","C17H18Cl2N2O2S","385.3","15",NA,NA,NA +23,"207736-05-8","DTXSID8047262","CI-1029","ZUBPKHVCBGWWGO-NDEPHWFRSA-N","CC(C)[C@]1(CCC2=CC=C(N)C=C2)CC(O)=C(SC2=CC(C)=C(CO)C=C2C(C)(C)C)C(=O)O1","C28H37NO4S","483.67","25",NA,NA,NA +24,"4180-23-8","DTXSID9020087","(E)-Anethole","RUVINXPYWBROJD-ONEGZZNKSA-N","COC1=CC=C(\C=C\C)C=C1","C10H12O","148.20500000000001","197",NA,NA,NA +25,"149413-74-1","DTXSID1048170","FR150011","PSILZZNMGXTOOP-UHFFFAOYSA-N","CC(C)(C)C1=CSC(=N1)C1=CC2=C(O1)C=CC(OCC1=CC=CC=C1CC(O)=O)=C2","C24H23NO4S","421.51","11",NA,NA,NA +26,"113734-18-2","DTXSID2047274","CP-114271","YVIXXPCJZAUQHJ-UHFFFAOYSA-N","CC(CC1=CC=C(OCC(O)=O)C=C1)NCC(O)C1=CSC(=N1)C(F)(F)F","C17H19F3N2O4S","404.4","13",NA,NA,NA +27,"725228-45-5","DTXSID0047371","AVE5638","FTLQSQQQFMZPKO-UHFFFAOYSA-N","NCC1=CC=CC(=C1)C1CCN(CC1)C(=O)C1=CC=C(O1)C#CC1=CC=CC=C1F","C25H23FN2O2","402.46899999999999","20",NA,NA,NA +48,"862243-29-6","DTXSID0047375","AVE9423","OEMJXSVJXPIFMA-UHFFFAOYSA-N","OC(=O)C1=CC=CC=C1N1C=C(C(O)=O)C(=O)C2=C1C=C(Cl)C(NC1=C(F)C=C(F)C=C1Cl)=C2","C23H12Cl2F2N2O5","505.25","11",NA,NA,NA +50,"116-25-6","DTXSID6035152","1-(Hydroxymethyl)-5,5-dimethylhydantoin","SIQZJFKTROUNPI-UHFFFAOYSA-N","CC1(C)N(CO)C(=O)NC1=O","C6H10N2O3","158.15700000000001","98",NA,NA,NA +51,"3194-55-6","DTXSID4027527","1,2,5,6,9,10-Hexabromocyclododecane","DEIGXXQKDWULML-UHFFFAOYSA-N","BrC1CCC(Br)C(Br)CCC(Br)C(Br)CCC1Br","C12H18Br6","641.70000000000005","90","flameRetardant","Unclassified","1,2,5,6,9,10-hexabromocyclododecane is a bromoalkane consisting of cyclododecane bearing six bromo substituents at positions 1, 2, 5, 6, 9 and 10. It has a role as a flame retardant, a neurotoxin, a persistent organic pollutant and a xenobiotic. It is a bromoalkane and a bromohydrocarbon." +53,"573-98-8","DTXSID1058717","1,2-Dimethylnapthalene","QNLZIZAQLLYXTC-UHFFFAOYSA-N","CC1=C(C)C2=CC=CC=C2C=C1","C12H12","156.22800000000001","100",NA,"PAH","1,2-dimethylnaphthalene is a dimethylnaphthalene carrying methyl groups at positions 1 and 2." +54,"524-42-5","DTXSID2060171","1,2-Naphthoquinone","KETQAJRQOHHATG-UHFFFAOYSA-N","O=C1C=CC2=C(C=CC=C2)C1=O","C10H6O2","158.15600000000001","116",NA,NA,"1,2-naphthoquinone is the parent structure of the family of 1,2-naphthoquinones, in which the oxo groups of the quinone moiety are at positions 1 and 2 of the naphthalene ring. It is a metabolite of naphthalene and is found in diesel exhaust particles. It has a role as a carcinogenic agent and an aryl hydrocarbon receptor agonist. It derives from a hydride of a naphthalene." +56,"132-86-5","DTXSID8059631","1,3-Naphthalenediol","XOOMNEFVDUTJPP-UHFFFAOYSA-N","OC1=CC(O)=C2C=CC=CC2=C1","C10H8O2","160.172","145",NA,NA,"Bifunctional compound and reactive chelator" +57,"75321-20-9","DTXSID5074975","1,3-Dinitropyrene","KTNUVDBUEAQUON-UHFFFAOYSA-N","[O-][N+](=O)C1=CC(=C2C=CC3=CC=CC4=CC=C1C2=C34)[N+]([O-])=O","C16H8N2O4","292.25","40",NA,"PAH","1,3-Dinitropyrene is a member of pyrenes." +58,"635-12-1","DTXSID10212899","1,4-Anthraquinone","LSOTZYUVGZKSHR-UHFFFAOYSA-N","O=C1C=CC(=O)C2=CC3=CC=CC=C3C=C12","C14H8O2","208.21600000000001","81",NA,"OPAH","Chemical irritant considered to be a chemical disease marker." +60,"571-58-4","DTXSID8035423","1,4-Dimethylnaphthalene","APQSQLNWAIULLK-UHFFFAOYSA-N","CC1=CC=C(C)C2=C1C=CC=C2","C12H12","156.22800000000001","88",NA,"PAH","1,4-dimethylnaphthalene is a dimethylnaphthalene carrying methyl groups at positions 1 and 4." +61,"130-15-4","DTXSID5040704","1,4-Naphthoquinone","FRASJONUBLZVQX-UHFFFAOYSA-N","O=C1C=CC(=O)C2=C1C=CC=C2","C10H6O2","158.15600000000001","155",NA,"OPAH","1,4-naphthoquinone is the parent structure of the family of 1,4-naphthoquinones, in which the oxo groups of the quinone moiety are at positions 1 and 4 of the naphthalene ring. Derivatives have pharmacological properties. It derives from a hydride of a naphthalene." +62,"569-15-3","DTXSID40205431","1,4-Phenanthrenequinone","POZPGRADIOPGIR-UHFFFAOYSA-N","O=C1C=CC(=O)C2=C1C=CC1=CC=CC=C21","C14H8O2","208.21600000000001","35",NA,"OPAH","Phenanthrenedione is a quinone derivative of a polycyclic aromatic hydrocarbon." +63,"83-56-7","DTXSID2052574","1,5-Dihydroxynaphthalene","BOKGTLAJQHTOKE-UHFFFAOYSA-N","OC1=CC=CC2=C(O)C=CC=C12","C10H8O2","160.172","140",NA,NA,"1,5-Dihydroxynaphthalene is an organic compound with the formula C10H6(OH)2. It is one of several isomers of dihydroxynaphthalene. It exists as colorless crystals that are soluble in polar organic solvents. It is a precursor to certain dyes." +64,"571-61-9","DTXSID0060351","1,5-Dimethylnaphthalene","SDDBCEWUYXVGCQ-UHFFFAOYSA-N","CC1=CC=CC2=C(C)C=CC=C12","C12H12","156.22800000000001","83",NA,"PAH","1,5-dimethylnaphthalene is a dimethylnaphthalene." +65,"575-44-0","DTXSID7052238","1,6-Naphthalenediol","FZZQNEVOYIYFPF-UHFFFAOYSA-N","OC1=CC=C2C(O)=CC=CC2=C1","C10H8O2","160.172","145",NA,NA,"1,6-Naphthalenediol is used as intermediates of dye and medicine." +66,"575-43-9","DTXSID7022415","1,6-Dimethylnaphthalene","CBMXCNPQDUJNHT-UHFFFAOYSA-N","CC1=CC2=C(C=C1)C(C)=CC=C2","C12H12","156.22800000000001","89",NA,"PAH","1,6-dimethylnaphthalene is a dimethylnaphthalene and is a clear pale yellow liquid." +67,"42397-64-8","DTXSID90872819","1,6-Dinitropyrene","GUXACCKTQWVTLG-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C2C=CC3=C(C=CC4=CC=C1C2=C34)[N+]([O-])=O","C16H8N2O4","292.25","54",NA,"PAH","1,6-Dinitropyrene is a synthetic, yellow crystalline solid that is insoluble in water and moderately soluble in toluene. It is not used for any commercial applications and is used only for research purposes. When heated to decomposition, 1,6-dinitropyrene emits toxic fumes of nitrogen oxides. 1,6-dinitropyrene is found in particulate emissions from combustion products, of which diesel exhaust is the principle source. The primary route of potential human exposure to this chemical is inhalation. 1,6-dinitropyrene has been detected at low concentrations in ambient air. It is reasonably anticipated to be a human carcinogen." +69,"569-41-5","DTXSID6060347","1,8-Dimethylnaphthalene","XAABPYINPXYOLM-UHFFFAOYSA-N","CC1=CC=CC2=CC=CC(C)=C12","C12H12","156.22800000000001","83",NA,"PAH","1,8-dimethylnaphthalene is a dimethylnaphthalene. Dimethylnaphthalene is a dark brown liquid." +70,"42397-65-9","DTXSID2073514","1,8-Dinitropyrene","BLYXNIHKOMELAP-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C2C=CC3=CC=C(C4=CC=C1C2=C34)[N+]([O-])=O","C16H8N2O4","292.25","54",NA,"PAH","1,8-Dinitropyrene is a synthetic, yellow crystalline solid that is insoluble in water and moderately soluble in toluene. It is not used for any commercial applications and is used only for research purposes. When heated to decomposition, 1,8-dinitropyrene emits toxic fumes of nitrogen oxides. 1,8-dinitropyrene is found in particulate emissions from combustion products, of which diesel exhaust is the principle source. The primary route of potential human exposure to this chemical is inhalation. Detectable levels of 1,8-dinitropyrene have been found in respirable particulates from ambient atmospheric samples. It is reasonably anticipated to be a human carcinogen." +1166,"82-05-3","DTXSID8052566","Benz[de]anthracen-7-one","HUKPVYBUJRAUAG-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C2=C3C(C=CC=C13)=CC=C2","C17H10O","230.26599999999999","112","industrial","OPAH","7-benzo[a]phenalenone is a member of phenanthrenes." +71,"82-05-3","DTXSID8052566","Benz[de]anthracen-7-one","HUKPVYBUJRAUAG-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C2=C3C(C=CC=C13)=CC=C2","C17H10O","230.26599999999999","112","industrial","OPAH","7-benzo[a]phenalenone is a member of phenanthrenes." +109,"203942-49-8","DTXSID6047288","UK-337312","JEJYYKZPVIEEAS-MWLZSUMNSA-M","CS([O-])(=O)=O.CN(C[C@@H](CC[N+]12CCC(CC1)(CC2)C1CCCCC1)C1=CC(Cl)=C(Cl)C=C1)C(=O)C1=CC(=CC(=C1)C(F)(F)F)C(F)(F)F","C34H42Cl2F6N2O4S","759.67","9",NA,NA,NA +110,"139149-55-6","DTXSID1047318","SB202235","FYAQEFBDKOWIIL-CQSZACIVSA-N","NC(=O)N(O)[C@@H]1COC2=C1C=CC(OCC1=CC=CC=C1)=C2","C16H16N2O4","300.31400000000002","22",NA,NA,NA +111,"158081-99-3","DTXSID7047308","CP-105696","KMNLXCBYBKHKSK-BKMJKUGQSA-N","O[C@@H]1[C@@H](CC2=CC=C(C=C2)C2=CC=CC=C2)COC2=C1C=CC(=C2)C1(CCCC1)C(O)=O","C28H28O4","428.52800000000002","28",NA,NA,NA +112,"648917-13-9","DTXSID5047376","AVE2865","KAJJGOCSAXKXBD-UHFFFAOYSA-N","OC(=O)C1CCN(CC1)C1=C(NC(=O)NC(=O)C2=CC(F)=C(F)C=C2Cl)C=C(F)C=C1","C20H17ClF3N3O4","455.82","18",NA,NA,NA +113,"289716-94-5","DTXSID6047280","CP-607366","FQEBOQLYHASAOY-UHFFFAOYSA-N","CNCC1=C(OC2=CC=C(Cl)C(Cl)=C2)C=CC(F)=C1","C14H12Cl2FNO","300.14999999999998","25",NA,NA,NA +114,"23779-32-0","DTXSID5044493","1-[3-(Triethoxysilyl)propyl]urea","LVNLBBGBASVLLI-UHFFFAOYSA-N","CCO[Si](CCCNC(N)=O)(OCC)OCC","C10H24N2O4Si","264.39699999999999","89",NA,NA,NA +115,"107071-66-9","DTXSID9048512","Ro 23-7637","NHKWRRHZTGQJMT-UHFFFAOYSA-N","O=C(CCCCCCCCC1=CN=CC=C1)N1CCC(CC1)C=C(C1=CC=CC=C1)C1=CC=CC=C1","C33H40N2O","480.69600000000003","22",NA,NA,NA +117,"179465-71-5","DTXSID2047303","CJ-013790","CJFQUWMJNVTKDJ-DYVFJYSZSA-N","NC(=O)N(O)[C@H]1C[C@@H](OC2=CC=CC(OC3=CC=C(F)C=C3)=C2)C=C1","C18H17FN2O4","344.34199999999998","12",NA,NA,NA +129,"56892-31-0","DTXSID40205416","10-Hydroxybenzo(a)pyrene","ANHMWNGBSJFXSA-UHFFFAOYSA-N","OC1=CC=CC2=CC3=C4C(C=CC5=CC=CC(C=C3)=C45)=C12","C20H12O","268.315","26",NA,NA,"10-Hydroxybenzo[a]pyrene is an ortho- and peri-fused polycyclic arene." +138,"112-38-9","DTXSID8035001","10-Undecenoic acid","FRPZMMHWLSIFAZ-UHFFFAOYSA-N","OC(=O)CCCCCCCCC=C","C11H20O2","184.279","166",NA,NA,NA +726,"678-39-7","DTXSID7029904","8:2 Fluorotelomer alcohol","JJUBFBTUBACDHW-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H5F17O","464.12200000000001","96",NA,NA,NA +148,"678-39-7","DTXSID7029904","8:2 Fluorotelomer alcohol","JJUBFBTUBACDHW-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H5F17O","464.12200000000001","96",NA,NA,NA +10014,"428-85-6","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +163,"95-14-7","DTXSID6020147","1,2,3-Benzotriazole","QRUDEWIWKLJBPS-UHFFFAOYSA-N","N1N=NC2=C1C=CC=C2","C6H5N3","119.127","264","industrial","Unclassified","Benzotriazole is the simplest member of the class of benzotriazoles that consists of a benzene nucleus fused to a 1H-1,2,3-triazole ring. It has a role as an environmental contaminant and a xenobiotic." +164,"87-61-6","DTXSID8026193","1,2,3-Trichlorobenzene","RELMFMZEBKVZJC-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1Cl","C6H3Cl3","181.44","151",NA,NA,NA +165,"96-18-4","DTXSID9021390","1,2,3-Trichloropropane","CFXQEHVMCRXUSD-UHFFFAOYSA-N","ClCC(Cl)CCl","C3H5Cl3","147.41999999999999","108",NA,NA,"1,2,3-Trichloropropane is a synthetic, colorless to light yellow liquid that is soluble in polar organic solvents and only slightly soluble in water. 1,2,3-Trichloropropane is used as both a chemical intermediate and cross-linking agent in the production of polymers. 1,2,3-Trichloropropane is flammable and, when heated to decomposition, emits toxic fumes of hydrogen chloride. Exposure of humans to 1,2,3-trichloropropane vapor causes irritation of the eyes and throat. It is reasonably anticipated to be a human carcinogen." +166,"95-94-3","DTXSID7024320","1,2,4,5-Tetrachlorobenzene","JHBKHLUZVFWLAG-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C=C1Cl","C6H2Cl4","215.88","135",NA,NA,NA +167,"120-82-1","DTXSID0021965","1,2,4-Trichlorobenzene","PBKONEOXTCPAFI-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C=C1","C6H3Cl3","181.44","160","industrial;pesticide","Unclassified","1,2,4-Trichlorobenzene is an organochlorine compound, one of three isomers of trichlorobenzene. It is a derivative of benzene with three chloride substituents. It is a colorless liquid used as a solvent for a variety of compounds and materials. Occupational exposure to 1,2,4-trichlorobenzene may occur from inhalation during its manufacture and use." +168,"95-63-6","DTXSID6021402","1,2,4-Trimethylbenzene","GWHJZXXIDMPWGX-UHFFFAOYSA-N","CC1=CC(C)=C(C)C=C1","C9H12","120.19499999999999","152",NA,NA,NA +169,"643-79-8","DTXSID6032514","1,2-Benzenedicarboxaldehyde","ZWLUXSQADUDCSB-UHFFFAOYSA-N","O=CC1=CC=CC=C1C=O","C8H6O2","134.13399999999999","174",NA,NA,NA +170,"68515-49-1","DTXSID0028666","1,2-Benzenedicarboxylic acid, di-C9-11-branched alkyl esters, C10-rich","-","-","-","-","-",NA,NA,NA +171,"2634-33-5","DTXSID5032523","1,2-Benzisothiazolin-3-one","DMSMPAJRVJJAGA-UHFFFAOYSA-N","O=C1NSC2=C1C=CC=C2","C7H5NOS","151.18","167",NA,NA,NA +172,"95-50-1","DTXSID6020430","1,2-Dichlorobenzene","RFFLAFLAYFXFSW-UHFFFAOYSA-N","ClC1=C(Cl)C=CC=C1","C6H4Cl2","147","265","industrial;pesticide;pesticide","Unclassified","1,2-Dichlorobenzene, also named ortho-dichlorobenzene, is an organic compound. It is a non-polar colorless liquid that is miscible in most organic solvents. This derivative of benzene differs from the parent compound by the presence of two adjacent chlorine atoms. 1,2-dichlorobenzene is used as a precursor for agrochemicals, as a solvent for fullerenes, as an insecticide and as an agent to remove carbon-based contamination from metal." +173,"83-41-0","DTXSID7025132","1,2-Dimethyl-3-nitrobenzene","FVHAWXWFPBPFOS-UHFFFAOYSA-N","CC1=CC=CC(=C1C)[N+]([O-])=O","C8H9NO2","151.16499999999999","127",NA,NA,NA +174,"99-51-4","DTXSID2025133","1,2-Dimethyl-4-nitrobenzene","HFZKOYWDLDYELC-UHFFFAOYSA-N","CC1=CC=C(C=C1C)[N+]([O-])=O","C8H9NO2","151.16499999999999","116",NA,NA,NA +175,"528-29-0","DTXSID4024066","1,2-Dinitrobenzene","IZUKQUVSCNEFMJ-UHFFFAOYSA-N","[O-][N+](=O)C1=C(C=CC=C1)[N+]([O-])=O","C6H4N2O4","168.108","131",NA,NA,NA +176,"122-66-7","DTXSID7020710","1,2-Diphenylhydrazine","YBQZXXMEJHZYMB-UHFFFAOYSA-N","N(NC1=CC=CC=C1)C1=CC=CC=C1","C12H12N2","184.24199999999999","118",NA,NA,"1,2-Diphenylhydrazine was used in the past to produce benzidine-based dyes. Currently, the only use for it in the United States is in the production of anti-inflammatory drugs. Limited information is available on the health effects of 1,2-diphenylhydrazine. No information is available on the acute (short-term), chronic (long-term), reproductive, developmental, or carcinogenic effects of 1,2-diphenylhydrazine in humans. In a National Cancer Institute (NCI) study, liver tumors were observed in both sexes of rats and female mice exposed to 1,2-diphenylhydrazine in their diet. EPA has classified 1,2-diphenylhydrazine as a Group B2, probable human carcinogen." +181,"95-54-5","DTXSID3025881","1,2-Phenylenediamine","GEYOCULIXLDCMW-UHFFFAOYSA-N","NC1=C(N)C=CC=C1","C6H8N2","108.14400000000001","192",NA,NA,NA +182,"57-55-6","DTXSID0021206","1,2-Propylene glycol","DNIAPMSPPWPWGF-UHFFFAOYSA-N","CC(O)CO","C3H8O2","76.094999999999999","552",NA,NA,NA +184,"108-67-8","DTXSID6026797","1,3,5-Trimethylbenzene","AUHZEENZYGFFBQ-UHFFFAOYSA-N","CC1=CC(C)=CC(C)=C1","C9H12","120.19499999999999","170",NA,NA,NA +185,"108-45-2","DTXSID4021137","1,3-Benzenediamine","WZCQRUWWHSTZEM-UHFFFAOYSA-N","NC1=CC(N)=CC=C1","C6H8N2","108.14400000000001","166",NA,NA,NA +186,"121-91-5","DTXSID3021485","1,3-Benzenedicarboxylic acid","QQVIHTHCMHWDBS-UHFFFAOYSA-N","OC(=O)C1=CC(=CC=C1)C(O)=O","C8H6O4","166.13200000000001","156",NA,NA,NA +187,"107-88-0","DTXSID8026773","1,3-Butanediol","PUPZLCDOIYMWBV-UHFFFAOYSA-N","CC(O)CCO","C4H10O2","90.122","326",NA,NA,NA +188,"77-48-5","DTXSID3035341","1,3-Dibromo-5,5-dimethylhydantoin","VRLDVERQJMEPIF-UHFFFAOYSA-N","CC1(C)N(Br)C(=O)N(Br)C1=O","C5H6Br2N2O2","285.923","140",NA,NA,NA +189,"96-23-1","DTXSID6025010","1,3-Dichloro-2-propanol","DEWLEGDTCGBNGU-UHFFFAOYSA-N","OC(CCl)CCl","C3H6Cl2O","128.97999999999999","139",NA,NA,NA +190,"118-52-5","DTXSID4024985","1,3-Dichloro-5,5-dimethylhydantoin","KEQGZUUPPQEDPF-UHFFFAOYSA-N","CC1(C)N(Cl)C(=O)N(Cl)C1=O","C5H6Cl2N2O2","197.02","127",NA,NA,NA +191,"149062-75-9","DTXSID9047259","1,3-Dichloro-6,7,8,9,10,12-hexahydroazepino[2,1-b]quinazoline hydrochloride (1:1)","KPVQNWQDBLOUQW-UHFFFAOYSA-N","Cl.ClC1=CC2=C(CN3CCCCCC3=N2)C(Cl)=C1","C13H15Cl3N2","305.63","15",NA,NA,NA +192,"541-73-1","DTXSID6022056","1,3-Dichlorobenzene","ZPQOPVIELGIULI-UHFFFAOYSA-N","ClC1=CC(Cl)=CC=C1","C6H4Cl2","147","160","industrial;pesticide","Unclassified","1,3-Dichlorobenzene is an organic compound with the formula C6H4Cl2. It is the least common of the three isomers of dichlorobenzene, it is a colorless liquid that is insoluble in water. It is produced as a minor byproduct of the chlorination of benzene, but can also be prepared in a directed manner by the Sandmeyer reaction of 3-chloroaniline. It also arises from the isomerization of the other dichlorobenzenes at high temperature." +193,"99-62-7","DTXSID8026640","1,3-Diisopropylbenzene","UNEATYXSUBPPKP-UHFFFAOYSA-N","CC(C)C1=CC(=CC=C1)C(C)C","C12H18","162.27600000000001","112",NA,NA,NA +194,"99-65-0","DTXSID9024065","1,3-Dinitrobenzene","WDCYWAQPCXBPJA-UHFFFAOYSA-N","[O-][N+](=O)C1=CC(=CC=C1)[N+]([O-])=O","C6H4N2O4","168.108","149",NA,NA,NA +195,"102-06-7","DTXSID3025178","1,3-Diphenylguanidine","OWRCNXZUPFZXOS-UHFFFAOYSA-N","N=C(NC1=CC=CC=C1)NC1=CC=CC=C1","C13H13N3","211.268","150",NA,NA,NA +197,"1120-71-4","DTXSID8021195","1,3-Propane sultone","FSSPGSAQUIYDCN-UHFFFAOYSA-N","O=S1(=O)CCCO1","C3H6O3S","122.14","130",NA,NA,"1,3-Propane sultone is used as a chemical intermediate. No information is available on the acute (short- term), chronic (long-term), reproductive, developmental, and carcinogenic effects of 1,3-propane sultone in humans. In rodents exposed to 1,3-propane sultone via gavage (experimentally placing the chemical in the stomach) and intravenous injection, tumors of the brain and other central nervous system (CNS) tissues have been observed. Leukemia, and tumors of the ear duct, small intestine, kidneys, lung, mammary gland, uterus, and skin have been reported in rodents exposed via gavage, injection, or dermal contact. The International Agency for Research on Cancer (IARC) has classified 1,3-propane sultone as a Group 2B, possible human carcinogen." +203,"106-46-7","DTXSID1020431","1,4-Dichlorobenzene","OCJBOOLMMGQPQU-UHFFFAOYSA-N","ClC1=CC=C(Cl)C=C1","C6H4Cl2","147","170","industrial;pesticide;pesticide","Unclassified","Paradichlorobenzene is a synthetic, white crystalline solid that is practically insoluble in water and soluble in ether, chloroform, carbon disulfide, benzene, alcohol and acetone. It is used primarily as a space deodorant in products such as room deodorizers, urinal and toilet bowl blocks, and as an insecticide fumigant for moth control. When 1,4-dichlorobenzene is heated to decomposition, toxic gases and vapors (such as hydrochloric acid and carbon monoxide) are released. The primary route of potential human exposure to this compound is inhalation. Acute inhalation exposure to 1,4-dichlorobenzene can result in coughing and breathing difficulties. Breathing high levels of this chemical can cause headaches, dizziness and liver damage. Contact with 1,4-dichlorobenzene can irritate the eyes, leading to burning and tearing. It is reasonably anticipated to be a human carcinogen." +208,"4904-61-4","DTXSID8027581","1,5,9-Cyclododecatriene","ZOLLIQAKMYWTBR-UHFFFAOYSA-N","C1CC=CCCC=CCCC=C1","C12H18","162.27600000000001","40",NA,NA,NA +209,"851916-42-2","DTXSID4047335","MK-812","WPPJJJUIDYHHSM-PXUYIWLPSA-N","OC(=O)CCC([O-])=O.CO[C@@H]1COCC[C@@H]1[NH2+][C@@H]1CC[C@](C1)(C(C)C)C(=O)N1CCC2=C(C1)C=C(C=N2)C(F)(F)F","C28H40F3N3O7","587.63699999999994","3",NA,NA,NA +210,"2243-62-1","DTXSID3020916","1,5-Naphthalenediamine","KQSABULTKYLFEV-UHFFFAOYSA-N","NC1=CC=CC2=C(N)C=CC=C12","C10H10N2","158.20400000000001","136",NA,NA,NA +214,"822-06-0","DTXSID4024143","1,6-Diisocyanatohexane","RRAMGCGOFNQTLD-UHFFFAOYSA-N","O=C=NCCCCCCN=C=O","C8H12N2O2","168.196","120",NA,NA,NA +219,"57-91-0","DTXSID8022377","17alpha-Estradiol","VOXZDWNPVJITMN-SFFUCWETSA-N","C[C@]12CC[C@H]3[C@@H](CCC4=C3C=CC(O)=C4)[C@@H]1CC[C@H]2O","C18H24O2","272.38799999999998","110",NA,NA,NA +220,"57-63-6","DTXSID5020576","17alpha-Ethinylestradiol","BFPYWIDHMRZLRN-SLHNCBLASA-N","[H][C@@]12CC[C@@](O)(C#C)[C@@]1(C)CC[C@]1([H])C3=C(CC[C@@]21[H])C=C(O)C=C3","C20H24O2","296.41000000000003","180","pharmacological","Unclassified","Ethinyl Estradiol is a semisynthetic estrogen. Ethinyl estradiol binds to the estrogen receptor complex and enters the nucleus, activating DNA transcription of genes involved in estrogenic cellular responses. This agent also inhibits 5-alpha reductase in epididymal tissue, which lowers testosterone levels and may delay progression of prostatic cancer. In addition to its antineoplastic effects, ethinyl estradiol protects against osteoporosis. In animal models, short-term therapy with this agent has been shown to provide long-term protection against breast cancer, mimicking the antitumor effects of pregnancy." +221,"68-96-2","DTXSID6040747","17alpha-Hydroxyprogesterone","DBPWSSGDRRHUNT-CEGNMAFCSA-N","CC(=O)[C@@]1(O)CC[C@H]2[C@@H]3CCC4=CC(=O)CC[C@]4(C)[C@H]3CC[C@]12C","C21H30O3","330.46800000000002","163",NA,NA,NA +223,"10161-33-8","DTXSID0034192","17beta-Trenbolone","MEHHPFQKXOUFFV-OWSLCNJRSA-N","[H][C@@]12CC[C@H](O)[C@@]1(C)C=CC1=C3CCC(=O)C=C3CC[C@@]21[H]","C18H22O2","270.37200000000001","63",NA,NA,NA +224,"58-18-4","DTXSID1033664","17-Methyltestosterone","GCKMFJBGXUYNAG-HLXURNFRSA-N","C[C@]1(O)CC[C@H]2[C@@H]3CCC4=CC(=O)CC[C@]4(C)[C@H]3CC[C@]12C","C20H30O2","302.45800000000003","119",NA,NA,NA +227,"1606-67-3","DTXSID3040932","1-Aminopyrene","YZVWKHVRBDQPMQ-UHFFFAOYSA-N","NC1=CC=C2C=CC3=CC=CC4=CC=C1C2=C34","C16H11N","217.27099999999999","117",NA,NA,"1-Aminopyrene, also known as 1-pyrenamine or pyren-1-ylamine, belongs to the class of organic compounds known as pyrenes. Pyrenes are compounds containing a pyrene moiety, which consists four fused benzene rings, resulting in a flat aromatic system. 1-Aminopyrene is a strong basic compound (based on its pKa)." +228,"146011-65-6","DTXSID6048171","FR145237","GJRPAGNTTAPJCC-UHFFFAOYSA-N","CC1=CC2=C(OC(CN(CC3=CC=CC=C3)C(=O)NC3=C(F)C=C(F)C=C3F)=C2C2=CC=C(Cl)C=C2)C=C1","C30H22ClF3N2O2","534.96","13",NA,NA,NA +229,"15619-48-4","DTXSID8044593","1-Benzylquinolinium chloride","GFEJZIULYONCQB-UHFFFAOYSA-M","[Cl-].C(C1=CC=CC=C1)[N+]1=C2C=CC=CC2=CC=C1","C16H14ClN","255.75","44",NA,NA,NA +230,"100-00-5","DTXSID5020281","1-Chloro-4-nitrobenzene","CZGCEKJOLUNIFY-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(Cl)C=C1","C6H4ClNO2","157.55000000000001","149",NA,NA,NA +231,"112-30-1","DTXSID7021946","1-Decanol","MWKFXSUHUHTGQN-UHFFFAOYSA-N","CCCCCCCCCCO","C10H22O","158.285","180",NA,NA,NA +232,"112-53-8","DTXSID5026918","1-Dodecanol","LQZZUXJYWNFBMV-UHFFFAOYSA-N","CCCCCCCCCCCCO","C12H26O","186.339","172",NA,NA,NA +233,"2687-96-9","DTXSID4042206","1-Dodecyl-2-pyrrolidinone","NJPQAIBZIHNJDO-UHFFFAOYSA-N","CCCCCCCCCCCCN1CCCC1=O","C16H31NO","253.43","67",NA,NA,NA +234,"848641-69-0","DTXSID9047889","1-Ethyl-3-methylimidazolium diethylphosphate","HQWOEDCLDNFWEV-UHFFFAOYSA-M","CCN1C=C[N+](C)=C1.CCOP([O-])(=O)OCC","C10H21N2O4P","264.262","38",NA,NA,NA +235,"349495-42-7","DTXSID3047263","PharmaGSID_47263","BEOZJBLIRPRMJM-UHFFFAOYSA-N","CCN1N=C(C)C2=C1C(=O)NCC(=N2)C1=CC=C(O)C=C1","C15H16N4O2","284.31900000000002","16",NA,NA,NA +239,"288-88-0","DTXSID6027131","1H-1,2,4-Triazole","NSPMIYGKQJPBQR-UHFFFAOYSA-N","N1C=NC=N1","C2H3N3","69.066999999999993","214",NA,NA,NA +240,"2043-57-4","DTXSID2047565","1H,1H,2H,2H-Perfluorooctyl iodide","NVVZEKTVIXIUKW-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CCI","C8H4F13I","474.00400000000002","81",NA,NA,NA +242,"36653-82-4","DTXSID4027991","1-Hexadecanol","BXWNKGSJHAJOGX-UHFFFAOYSA-N","CCCCCCCCCCCCCCCCO","C16H34O","242.447","183",NA,NA,NA +246,"90-15-3","DTXSID6021793","1-Naphthol","KJCVRFUGPWSIIH-UHFFFAOYSA-N","OC1=CC=CC2=CC=CC=C12","C10H8O","144.173","201","industrial","PAH","1-naphthol is a naphthol carrying a hydroxy group at position 1. It has a role as a genotoxin and a human xenobiotic metabolite." +247,"2433-56-9","DTXSID90872758","1-Hydroxyphenanthrene","GTBXZWADMKOZQJ-UHFFFAOYSA-N","OC1=CC=CC2=C3C=CC=CC3=CC=C12","C14H10O","194.233","63",NA,NA,"1-phenanthrol is a phenanthrol. It has a role as a mouse metabolite." +248,"5315-79-7","DTXSID1038298","1-Hydroxypyrene","BIJNHUAPTJVVNQ-UHFFFAOYSA-N","OC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34","C16H10O","218.255","117",NA,NA,"1-Hydroxypyrene is a member of pyrenes." +249,"107-98-2","DTXSID8024284","1-Methoxy-2-propanol","ARXJGSRGQADJSQ-UHFFFAOYSA-N","COCC(C)O","C4H10O2","90.122","152",NA,NA,NA +250,"90-12-0","DTXSID9020877","1-Methylnaphthalene","QPUYECUOLPXSFR-UHFFFAOYSA-N","CC1=C2C=CC=CC2=CC=C1","C11H10","142.20099999999999","177","industrial","PAH","1-methylnaphthalene is a methylnaphthalene carrying a methyl substituent at position 1. It has a role as a carcinogenic agent and a plant metabolite." +251,"86-57-7","DTXSID7020978","1-Nitronaphthalene","RJKGJBPXVHTNJL-UHFFFAOYSA-N","[O-][N+](=O)C1=C2C=CC=CC2=CC=C1","C10H7NO2","173.17099999999999","123","industrial","PAH","1-nitronaphthalene is a mononitronaphthalene substituted by a nitro group at position 1. It has a role as an environmental contaminant and a mouse metabolite." +252,"5522-43-0","DTXSID6020983","1-Nitropyrene","ALRLPDGCPYIVHP-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C2C=CC3=CC=CC4=CC=C1C2=C34","C16H9NO2","247.25299999999999","109",NA,"PAH","1-nitropyrene is a nitroarene that is pyrene substituted at the 1-position by a nitro group. A by-product of combustion, it is the predominant nitrated polycyclic aromatic hydrocarbon emitted in a diesel engine. It has a role as a carcinogenic agent. It derives from a hydride of a pyrene." +254,"111-87-5","DTXSID7021940","1-Octanol","KBPLFHHGFOOTCA-UHFFFAOYSA-N","CCCCCCCCO","C8H18O","130.23099999999999","274",NA,NA,NA +255,"629-76-5","DTXSID0027270","1-Pentadecanol","REIUXOLGHVXAEO-UHFFFAOYSA-N","CCCCCCCCCCCCCCCO","C15H32O","228.42","117",NA,NA,NA +257,"112-72-1","DTXSID9026926","1-Tetradecanol","HLZKNKRTKFSKGZ-UHFFFAOYSA-N","CCCCCCCCCCCCCCO","C14H30O","214.393","179",NA,NA,NA +258,"1120-36-1","DTXSID4027367","1-Tetradecene","HFDVRLIODXPAHB-UHFFFAOYSA-N","CCCCCCCCCCCCC=C","C14H28","196.37799999999999","111",NA,NA,NA +259,"112-70-9","DTXSID2021947","1-Tridecanol","XFRVVPUIAFSTFO-UHFFFAOYSA-N","CCCCCCCCCCCCCO","C13H28O","200.36600000000001","131",NA,NA,NA +260,"112-42-5","DTXSID0026915","1-Undecanol","KJIOQYGWTQBHNH-UHFFFAOYSA-N","CCCCCCCCCCCO","C11H24O","172.31200000000001","121",NA,NA,NA +262,"124378-77-4","DTXSID4047258","Enadoline","JMBYBVLCYODBJQ-HFMPRLQTSA-N","CN([C@H]1CC[C@@]2(CCCO2)C[C@@H]1N1CCCC1)C(=O)CC1=CC=CC2=C1C=CO2","C24H32N2O3","396.53100000000001","43",NA,NA,NA +264,"112-34-5","DTXSID8021519","2-(2-Butoxyethoxy)ethanol","OAYXUHPQHDHDDZ-UHFFFAOYSA-N","CCCCOCCOCCO","C8H18O3","162.22900000000001","134",NA,NA,NA +265,"111-90-0","DTXSID2021941","2-(2-Ethoxyethoxy)ethanol","XXJWXESWEXIICW-UHFFFAOYSA-N","CCOCCOCCO","C6H14O3","134.17500000000001","292",NA,NA,NA +266,"214535-77-0","DTXSID2047278","CP-457677","UHBUSMAHWHZQKS-UHFFFAOYSA-N","CC(C)(O)C1=CC=C(CNC(=O)C2=CC=CN=C2OC2=CC=C(F)C=C2)C=C1","C22H21FN2O3","380.41899999999998","19",NA,NA,NA +267,"89-72-5","DTXSID2022331","2-(Butan-2-yl)phenol","NGFPWHGISWUQOI-UHFFFAOYSA-N","CCC(C)C1=C(O)C=CC=C1","C10H14O","150.221","112","industrial","phenol",NA +268,"112-25-4","DTXSID1026908","2-Hexyloxyethanol","UPGSWASWQBLSKZ-UHFFFAOYSA-N","CCCCCCOCCO","C8H18O2","146.22999999999999","94",NA,NA,NA +269,"126-11-4","DTXSID8027034","2-(Hydroxymethyl)-2-nitro-1,3-propanediol","OLQJQHSAWMFDJE-UHFFFAOYSA-N","OCC(CO)(CO)[N+]([O-])=O","C4H9NO5","151.11799999999999","110",NA,NA,NA +271,"21564-17-0","DTXSID6032647","2-(Thiocyanomethylthio)benzothiazole","TUBQDCKAWGHZPF-UHFFFAOYSA-N","N#CSCSC1=NC2=CC=CC=C2S1","C9H6N2S3","238.34","88","industrial;pesticide","Unclassified","TCMTB is an oily, flammable, red to brown liquid with a pungent odor that is very slightly soluble in water. It decomposes on heating producing hydrogen cyanide, sulfur oxides, and nitrogen oxides. TCMTB is used as wideband microbicide, paint fungicide, and paint gallicide." +275,"68631-49-2","DTXSID4030047","2,2',4,4',5,5'-Hexabromodiphenyl ether","RZXIRSKYBISPGF-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC(Br)=C(Br)C=C2Br)C=C1Br","C12H4Br6O","643.58699999999999","42","flameRetardant","PBDE","2,2',4,4',5,5'-Hexabromodiphenyl ether is an organobromine compound and an aromatic ether." +278,"60348-60-9","DTXSID9030048","2,2',4,4',5-Pentabromodiphenyl ether","WHPVYXDFIXRKLN-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=C(Br)C=C(Br)C(Br)=C2)C=C1","C12H5Br5O","564.69100000000003","64","flameRetardant","PBDE","2,4-dibromophenyl 2,4,5-tribromophenyl ether is a polybromodiphenyl ether that is diphenyl ether in which the hydrogens at the 2, 4, 5, 2', and 4' positions have been replaced by bromines." +279,"5436-43-1","DTXSID3030056","2,2',4,4'-Tetrabromodiphenyl ether","XYBSIYMGXVUVGY-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC=C(Br)C=C2Br)C=C1","C12H6Br4O","485.79500000000002","90","flameRetardant","PBDE","2,2',4,4'-Tetrabromodiphenyl ether is an organobromine compound and an aromatic ether." +280,"79-95-8","DTXSID3021770","2,2',6,6'-Tetrachlorobisphenol A","KYPYTERUKNKOLP-UHFFFAOYSA-N","CC(C)(C1=CC(Cl)=C(O)C(Cl)=C1)C1=CC(Cl)=C(O)C(Cl)=C1","C15H12Cl4O2","366.06","72",NA,NA,NA +281,"3296-90-0","DTXSID9020164","Pentaerythritol dibromide","CHUGKEQJSLOLHL-UHFFFAOYSA-N","OCC(CO)(CBr)CBr","C5H10Br2O2","261.94099999999997","107",NA,NA,"2,2-bis(bromomethyl)-1,3-propanediol is a primary alcohol and is in the form of an off-white powder." +283,"1746-01-6","DTXSID2021315","2,3,7,8-Tetrachlorodibenzo-p-dioxin","HGUFODBRKLSHSI-UHFFFAOYSA-N","ClC1=CC2=C(OC3=C(O2)C=C(Cl)C(Cl)=C3)C=C1Cl","C12H4Cl4O2","321.95999999999998","108","industrial","Unclassified","2,3,7,8-Tetrachlorodibenzo-p-dioxin which is often referred to simply as dioxin and is the reference for a number of compounds which are similar structurally and have dioxin-like toxicity. A substance extremely toxic to mammals, with a wide variation in sensitivity among species. Longer-term exposure of test mammals to lesser amounts can affect reproduction, cause birth defects, damage the liver and suppress the immune system. Several studies suggest that exposure to TCDD increases the risk of several types of cancer in people. Animal studies have also shown an increased risk of cancer from exposure to TCDD. The WHO and the USA DHHS have determined that TCDD is a human carcinogen." +284,"19660-16-3","DTXSID7024950","2,3-Dibromopropyl acrylate","MUKJDVAYJDKPAG-UHFFFAOYSA-N","BrCC(Br)COC(=O)C=C","C6H8Br2O2","271.93599999999998","56",NA,NA,NA +285,"92-44-4","DTXSID2043903","2,3-Dihydroxynaphthalene","JRNGUTKWMSBIBF-UHFFFAOYSA-N","OC1=CC2=C(C=CC=C2)C=C1O","C10H8O2","160.172","139",NA,NA,"Naphthalene-2,3-diol is a naphthalenediol." +286,"613-06-9","DTXSID20210189","2,3-Dimethylanthracene","OGVRJXPGSVLDRD-UHFFFAOYSA-N","CC1=CC2=CC3=CC=CC=C3C=C2C=C1C","C16H14","206.28800000000001","46",NA,"PAH","Endocrine disruptor" +288,"118-79-6","DTXSID6021959","2,4,6-Tribromophenol","BSWWXRFVMJHFBN-UHFFFAOYSA-N","OC1=C(Br)C=C(Br)C=C1Br","C6H3Br3O","330.80099999999999","155","flameRetardant","phenol","2,4,6-tribromophenol is a bromophenol that is phenol in which the hydrogens at positions 2, 4 and 6 have been replaced by bromines. It is commonly used as a fungicide and in the preparation of flame retardants. It has a role as an environmental contaminant, a fungicide and a marine metabolite." +289,"5397-34-2","DTXSID9052183","2,4'-Dihydroxydiphenyl sulfone","LROZSPADHSXFJA-UHFFFAOYSA-N","OC1=CC=C(C=C1)S(=O)(=O)C1=CC=CC=C1O","C12H10O4S","250.27","66",NA,NA,NA +291,"51-28-5","DTXSID0020523","2,4-Dinitrophenol","UFBJCMHMOXMLKC-UHFFFAOYSA-N","OC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O","C6H4N2O5","184.107","183",NA,NA,NA +295,"581-42-0","DTXSID0029187","2,6-Dimethylnaphthalene","YGYNBBAUIYTWBF-UHFFFAOYSA-N","CC1=CC2=C(C=C1)C=C(C)C=C2","C12H12","156.22800000000001","123",NA,"PAH","2,6-Dimethylnaphthalene (2,6-DMN) is a polycyclic aromatic hydrocarbon. It is one of the ten dimethylnaphthalene isomers, which are derived from naphthalene by the addition of two methyl groups. 2,6-DMN is of commercial importance as a starting material for high-performance polyester fibers and films. Polyethylene naphthalate (PEN) is made from the product of oxidation 2,6-DMN." +296,"582-17-2","DTXSID2060387","2,7-Naphthalenediol","DFQICHCWIIJABH-UHFFFAOYSA-N","OC1=CC2=CC(O)=CC=C2C=C1","C10H8O2","160.172","143",NA,NA,"2,7-Naphthalenediol is a reagent used in the preparation of monomers of high carbon materials. Also used in the synthesis of splitomicin analogues. Used as Starting material for the synthesis of sulfonic acids and divinylnaphthalenes. It is also used in making dyes, pigments, fluorescent whiteners, tanning agents, antioxidants, and antiseptics." +297,"109041-38-5","DTXSID60404242","2,8-dinitrodibenzothiophene","VMQHOWOVMXIROE-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=C(SC3=C2C=C(C=C3)[N+]([O-])=O)C=C1","C12H6N2O4S","274.25","21",NA,NA,"Respiratory tract irritant" +299,"112-50-5","DTXSID3024368","2-[2-(2-Ethoxyethoxy)ethoxy]ethanol","WFSMVVDJSNMRAR-UHFFFAOYSA-N","CCOCCOCCOCCO","C8H18O4","178.22800000000001","210",NA,NA,NA +300,"825643-57-0","DTXSID4048513","PharmaGSID_48513","QOOXCQFWUYVSGU-JWQCQUIFSA-N","CN(C(=O)C(C)(C)C1=CC(=CC(=C1)C(F)(F)F)C(F)(F)F)C1=CN=C(C=C1C1=CC=C(F)C=C1C)N1CC[C@@H](O)[C@H]1CO","C30H30F7N3O3","613.577","7",NA,NA,NA +301,"219790-72-4","DTXSID5047324","SB281832","ZDKIAVFEUPUCMR-UHFFFAOYSA-N","OCC(CO)N1C=NC(=C1C1=CC=NC(OC2=CC=CC=C2)=N1)C1=CC=C(F)C=C1","C22H19FN4O3","406.41699999999997","10",NA,NA,NA +302,"344930-95-6","DTXSID1047368","SSR69071","DRZXDZYWZSKFDL-UHFFFAOYSA-N","COC1=CC2=C(C(=O)N(COC3=CC(=O)N4C=CC=C(OCCN5CCCCC5)C4=N3)S2(=O)=O)C(=C1)C(C)C","C27H32N4O7S","556.63","50",NA,NA,NA +315,"929-59-9","DTXSID9044742","2,2'-[Ethane-1,2-diylbis(oxy)]diethanamine","IWBOPFCKHIJFMS-UHFFFAOYSA-N","NCCOCCOCCN","C6H16N2O2","148.20599999999999","113",NA,NA,NA +316,"131-55-5","DTXSID5041306","2,2',4,4'-Tetrahydroxybenzophenone","WXNRYSGJLQFHBR-UHFFFAOYSA-N","OC1=CC(O)=C(C=C1)C(=O)C1=CC=C(O)C=C1O","C13H10O5","246.21799999999999","134",NA,NA,NA +317,"6846-50-0","DTXSID1027635","2,2,4-Trimethyl-1,3-pentanediol diisobutyrate","OMVSWZDEEGIJJI-UHFFFAOYSA-N","CC(C)C(OC(=O)C(C)C)C(C)(C)COC(=O)C(C)C","C16H30O4","286.41199999999998","79",NA,NA,NA +318,"2971-36-0","DTXSID8022325","2,2-Bis(4-hydroxyphenyl)-1,1,1-trichloroethane","IUGDILGOLSSKNE-UHFFFAOYSA-N","OC1=CC=C(C=C1)C(C1=CC=C(O)C=C1)C(Cl)(Cl)Cl","C14H11Cl3O2","317.58999999999997","79",NA,NA,NA +320,"10222-01-2","DTXSID5032361","2,2-Dibromo-3-nitrilopropionamide","UUIVKBHZENILKB-UHFFFAOYSA-N","NC(=O)C(Br)(Br)C#N","C3H2Br2N2O","241.87","96",NA,NA,NA +322,"2416-94-6","DTXSID6022187","2,3,6-Trimethylphenol","QQOMQLYQAXGHSU-UHFFFAOYSA-N","CC1=CC=C(C)C(O)=C1C","C9H12O","136.19399999999999","110","industrial","phenol",NA +324,"2687-25-4","DTXSID4027494","2,3-Diaminotoluene","AXNUJYHFQHQZBE-UHFFFAOYSA-N","CC1=C(N)C(N)=CC=C1","C7H10N2","122.17100000000001","149",NA,NA,NA +325,"69655-05-6","DTXSID6022927","2',3'-Dideoxyinosine","BXZVVICBKDXVGW-NKWVEPMBSA-N","OC[C@@H]1CC[C@@H](O1)N1C=NC2=C1N=CNC2=O","C10H12N4O3","236.23099999999999","207",NA,NA,NA +326,"602-01-7","DTXSID4027236","2,3-Dinitrotoluene","DYSXLQBUUOPLBB-UHFFFAOYSA-N","CC1=CC=CC(=C1[N+]([O-])=O)[N+]([O-])=O","C7H6N2O4","182.13499999999999","91",NA,NA,NA +329,"95-95-4","DTXSID4024359","2,4,5-Trichlorophenol","LHJGJYXLEPZJPM-UHFFFAOYSA-N","OC1=C(Cl)C=C(Cl)C(Cl)=C1","C6H3Cl3O","197.44","145","industrial;pulpAndPaper;pesticide;pesticide","phenol","Exposure to 2,4,5-trichlorophenol may occur during its production or use as a pesticide. Acute (short- term) dermal exposure to 2,4,5-trichlorophenol may burn skin in humans. It also irritates the eyes, nose, pharynx, and lungs in humans. No information is available on the chronic (long-term), reproductive, developmental, or carcinogenic effects of 2,4,5-trichlorophenol in humans. In one study, slight degenerative changes were observed in the liver and kidneys of rats chronically exposed to 2,4,5- trichlorophenol in their diet. EPA has classified 2,4,5-trichlorophenol as a Group D, not classifiable as to human carcinogenicity." +330,"88-06-2","DTXSID5021386","2,4,6-Trichlorophenol","LINPIYWFGCPVIE-UHFFFAOYSA-N","OC1=C(Cl)C=C(Cl)C=C1Cl","C6H3Cl3O","197.44","164","industrial;pulpAndPaper;pesticide;pesticide","phenol","2,4,6-Trichlorophenol is a synthetic, colorless crystalline solid that is slightly soluble in water and soluble in organic solvents. It has been used primarily in pesticide formulations and as a wood preservative, although most uses have been cancelled in the US. When heated to decomposition, 2,4,6-trichlorophenol emits toxic and corrosive fumes of hydrochloric acid and other toxic gases. Exposure of humans to 2,4,6-trichrophenol via inhalation has been reported to cause respiratory effects, altered pulmonary function and pulmonary lesions. It is reasonably anticipated to be a human carcinogen." +331,"527-60-6","DTXSID7022049","2,4,6-Trimethylphenol","BPRYUXCVCCNUFE-UHFFFAOYSA-N","CC1=CC(C)=C(O)C(C)=C1","C9H12O","136.19399999999999","141","industrial;consumerProduct","phenol",NA +332,"732-26-3","DTXSID2021311","2,4,6-Tris(tert-butyl)phenol","PFEFOYRSMXVNEL-UHFFFAOYSA-N","CC(C)(C)C1=CC(=C(O)C(=C1)C(C)(C)C)C(C)(C)C","C18H30O","262.43700000000001","109","industrial","phenol","2,4,6-Tri-tert-butylphenol (2,4,6-TTBP) is a phenol symmetrically substituted with three tert-butyl groups and thus strongly sterically hindered. 2,4,6-TTBP is a readily oxidizable aromatic compound and a weak acid. It oxidizes to give the deep-blue 2,4,6-tri-tert-butylphenoxy radical. 2,4,6-TTBP is related to 2,6-di-tert-butylphenol, which is widely used as an antioxidant in industrial applications. These compounds are colorless solids." +333,"126-86-3","DTXSID7027041","2,4,7,9-Tetramethyl-5-decyne-4,7-diol","LXOFYPKXCSULTL-UHFFFAOYSA-N","CC(C)CC(C)(O)C#CC(C)(O)CC(C)C","C14H26O2","226.36","100",NA,NA,NA +335,"2772-45-4","DTXSID7029241","2,4-Bis(1-methyl-1-phenylethyl)phenol","FMUYQRFTLHAARI-UHFFFAOYSA-N","CC(C)(C1=CC=CC=C1)C1=CC(=C(O)C=C1)C(C)(C)C1=CC=CC=C1","C24H26O","330.471","90","industrial","phenol",NA +336,"120-95-6","DTXSID9026974","2,4-Di-tert-pentylphenol","WMVJWKURWRGJCI-UHFFFAOYSA-N","CCC(C)(C)C1=CC(=C(O)C=C1)C(C)(C)CC","C16H26O","234.38300000000001","88","industrial;consumerProduct","phenol",NA +337,"95-80-7","DTXSID4020402","2,4-Diaminotoluene","VOZKAJLKRJDJLL-UHFFFAOYSA-N","CC1=C(N)C=C(N)C=C1","C7H10N2","122.17100000000001","144",NA,NA,"2,4-toluenediamine appears as a colorless crystalline solid. Toxic by ingestion and inhalation. Irritates skin and eyes. Slightly soluble in water and neutrally buoyant in water. Decomposes with emission of toxic oxides of nitrogen at high temperatures. Used in making dyes." +338,"120-83-2","DTXSID1020439","2,4-Dichlorophenol","HFZWRUODUSTPEG-UHFFFAOYSA-N","OC1=C(Cl)C=C(Cl)C=C1","C6H4Cl2O","163","163","industrial;pulpAndPaper;pesticide;pesticide","phenol","2,4-dichlorophenol is a dichlorophenol that is phenol carrying chloro substituents at positions 2 and 4. Chlorophenols are a group of chemicals that are produced by adding chlorines to phenol. Phenol is an aromatic compound derived from benzene. There are 5 basic types of chlorophenols and 19 different chlorophenols. Most chlorophenols are solid at room temperature. They have a strong, medicinal taste and smell. Small amounts can be tasted in water. Some chlorophenols are used as pesticides. Others are used in antiseptics." +339,"94-75-7","DTXSID0020442","2,4-Dichlorophenoxyacetic acid","OVSKIKFHRZPJSS-UHFFFAOYSA-N","OC(=O)COC1=C(Cl)C=C(Cl)C=C1","C8H6Cl2O3","221.03","216",NA,NA,"2,4-Dichlorophenoxyacetic acid is an organic compound that does not occur naturally in the environment. 2,4- D is the active ingredient in many products used in the United States and throughout the world as an herbicide to kill weeds on land and in the water. There are nine forms of 2,4- D that can be used as an herbicide and it is typically sold as a powder or in a liquid form. 2,4-Dichlorophenoxyacetic acid is an odorless white to tan solid." +340,"105-67-9","DTXSID2021864","2,4-Dimethylphenol","KUFFULVDNCHOFZ-UHFFFAOYSA-N","CC1=CC(C)=C(O)C=C1","C8H10O","122.167","154","pharmacological;industrial","phenol","2,4-Dimethylphenol is a hydroxytoluene." +342,"121-14-2","DTXSID0020529","2,4-Dinitrotoluene","RMBFBMJGBANMMK-UHFFFAOYSA-N","CC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O","C7H6N2O4","182.13499999999999","134",NA,NA,"1-Methyl-2,4-dinitrobenzene, also known as 2,4-Dintirotoluene (DNT), is used as an intermediate in the manufacture of polyurethanes and is an organic compound and a well known precursor to trinitrotoluene (TNT) but is mainly produced as a precursor to toluene diisocyanate. No information is available on the acute (short-term) effects of 2,4-dinitrotoluene in humans. Chronic (long-term) inhalation exposure to 2,4-dinitrotoluene affects the central nervous system (CNS) and blood in humans. DNT is a pale yellow crystalline solid." +343,"96-76-4","DTXSID2026602","2,4-Di-tert-butylphenol","ICKWICRCANNIBI-UHFFFAOYSA-N","CC(C)(C)C1=CC(=C(O)C=C1)C(C)(C)C","C14H22O","206.32900000000001","133","industrial","phenol",NA +345,"78-63-7","DTXSID9025110","2,5-Dimethyl-2,5-di-(tert-butylperoxy)hexane","DMWVYCCGCQPJEA-UHFFFAOYSA-N","CC(C)(C)OOC(C)(C)CCC(C)(C)OOC(C)(C)C","C16H34O4","290.44400000000002","74",NA,NA,NA +346,"95-87-4","DTXSID6025145","2,5-Dimethylphenol","NKTOLZVEWDHZMU-UHFFFAOYSA-N","CC1=CC(O)=C(C)C=C1","C8H10O","122.167","152","industrial;consumerProduct","phenol",NA +347,"88-58-4","DTXSID8041248","2,5-Di-tert-butylbenzene-1,4-diol","JZODKRWQWUWGCD-UHFFFAOYSA-N","CC(C)(C)C1=CC(O)=C(C=C1O)C(C)(C)C","C14H22O2","222.328","180",NA,NA,NA +352,"174185-16-1","DTXSID1048174","FR167356","GCAOVMKRBUCSET-UHFFFAOYSA-N","CC1=C(C2=C(O1)C(NC(=O)C1=C(Cl)C=CC=C1Cl)=CC=C2)C(C)(C)O","C19H17Cl2NO3","378.25","18",NA,NA,NA +353,"579-66-8","DTXSID6027218","2,6-Diethylaniline","FOYHNROGBXVLLX-UHFFFAOYSA-N","CCC1=CC=CC(CC)=C1N","C10H15N","149.23699999999999","128","industrial","aniline",NA +355,"87-62-7","DTXSID8026307","2,6-Dimethylaniline","UFFBMTHBGFGIHF-UHFFFAOYSA-N","CC1=CC=CC(C)=C1N","C8H11N","121.18300000000001","169","industrial","aniline","2,6-dimethylaniline is a primary arylamine that is aniline in which the hydrogens at the 2- and 6-positions are replaced by methyl groups. It is used in the production of some anasthetics and other chemicals. It is a drug metabolite of lidocaine (local anasthetic). It has a role as a carcinogenic agent and a drug metabolite. It is a primary arylamine and a dimethylaniline." +356,"576-26-1","DTXSID9024063","2,6-Dimethylphenol","NXXYKOUNUYWIHA-UHFFFAOYSA-N","CC1=CC=CC(C)=C1O","C8H10O","122.167","172","industrial;consumerProduct","phenol",NA +357,"606-20-2","DTXSID5020528","2,6-Dinitrotoluene","XTRDKALNCIHHNI-UHFFFAOYSA-N","CC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O","C7H6N2O4","182.13499999999999","135",NA,NA,"2,6-dinitrotoluene appears as yellow to red solid or heated liquid with a slight odor. It is listed as a hazardous carcinogen." +358,"128-39-2","DTXSID6027052","2,6-Di-tert-butylphenol","DKCPKDPYUFEZCP-UHFFFAOYSA-N","CC(C)(C)C1=CC=CC(=C1O)C(C)(C)C","C14H22O","206.32900000000001","134","industrial","phenol",NA +360,"23592-74-7","DTXSID40295953","2-Acetylcarbazole","UTQDTPYWVOXWMK-UHFFFAOYSA-N","CC(=O)C1=CC2=C(C=C1)C1=CC=CC=C1N2","C14H11NO","209.24799999999999","67",NA,NA,"Polycyclic aromatic hydrocarbon (PAH)." +362,"97-56-3","DTXSID1020069","o-Aminoazotoluene","PFRYFZZSECNQOL-UHFFFAOYSA-N","CC1=C(N)C=CC(=C1)N=NC1=C(C)C=CC=C1","C14H15N3","225.29499999999999","111","industrial","Unclassified","Ortho-Aminoazotoluene is a member of azobenzenes." +363,"117-79-3","DTXSID6020068","2-Aminoanthraquinone","XOGPDSATLSAZEK-UHFFFAOYSA-N","NC1=CC=C2C(=O)C3=C(C=CC=C3)C(=O)C2=C1","C14H9NO2","223.23099999999999","126",NA,NA,"2-Aminoanthraquinone is a synthetic, red or orange-brown needle-shaped solid that is insoluble in water and soluble in alcohol, acetone, benzene and chloroform. It is used as intermediate for the synthesis of both anthraquinone dyes and pharmaceutical products. When 2-aminoanthraquinone is heated to decomposition, it emits toxic fumes of nitrogen oxides. The primary route of potential human exposure to this chemical is dermal contact. Acute exposure of humans to 2-aminoanthraquinone can cause irritation of the eyes and skin. It is reasonably anticipated to be a human carcinogen." +364,"90-04-0","DTXSID5023877","2-Anisidine","VMPITZXILSNTON-UHFFFAOYSA-N","COC1=CC=CC=C1N","C7H9NO","123.155","159",NA,NA,NA +365,"193-98-6","DTXSID70172900","Naphth(2,1,8-def)isoquinoline","VXNBYQYOFXSMOE-UHFFFAOYSA-N","C1=CC2=C3C(C=CC4=C3C(C=C2)=CN=C4)=C1","C15H9N","203.244","23",NA,NA,"Bacterial mutagen and carcinogen" +366,"101-86-0","DTXSID4026684","2-(Phenylmethylene)octanal","GUUHFMWKWLOQMM-UHFFFAOYSA-N","CCCCCCC(C=O)=CC1=CC=CC=C1","C15H20O","216.32400000000001","34",NA,NA,NA +369,"598-72-1","DTXSID9027233","2-Bromopropionic acid","MONMFXREYOKQTI-UHFFFAOYSA-N","CC(Br)C(O)=O","C3H5BrO2","152.97499999999999","131",NA,NA,NA +370,"96-29-7","DTXSID1021821","2-Butanone oxime","WHIVNJATOVLWBW-UHFFFAOYSA-N","CCC(C)=NO","C4H9NO","87.122","47",NA,NA,"Methyl ethyl ketoxime is a clear colorless liquid with a musty odor." +371,"111-76-2","DTXSID1024097","2-Butoxyethanol","POAOYUHQDCAZBD-UHFFFAOYSA-N","CCCCOCCO","C6H14O2","118.176","163",NA,NA,NA +373,"532-27-4","DTXSID9020293","2-Chloroacetophenone","IMACFCSSMIZSPP-UHFFFAOYSA-N","ClCC(=O)C1=CC=CC=C1","C8H7ClO","154.59","259",NA,NA,"The main uses for 2-chloroacetophenone are in tear gas and in chemical Mace. It is a potent eye, throat, and skin irritant. Acute (short-term) inhalation exposure of humans causes burning of the eyes with lacrimation, some degree of blurred vision, possible corneal damage, irritation and burning of the nose, throat, and skin, and burning in the chest with dyspnea. Acute dermal exposure is irritating and can result in first, second, and third degree chemical burns in humans. Squamous hyperplasia of the nasal respiratory epithelium was reported in rats chronically exposed (long-term) via inhalation. EPA has not classified 2-chloroacetophenone with respect to potential carcinogenicity." +374,"107-07-3","DTXSID1021877","2-Chloroethanol","SZIFAVKTNFCBPC-UHFFFAOYSA-N","OCCCl","C2H5ClO","80.510000000000005","102",NA,NA,NA +375,"742693-38-5","DTXSID3047348","SSR504734","MEZRZVWPLXVLSO-WMZOPIPTSA-N","FC(F)(F)C1=CC=CC(C(=O)N[C@H]([C@@H]2CCCCN2)C2=CC=CC=C2)=C1Cl","C20H20ClF3N2O","396.84","17",NA,NA,NA +376,"95-57-8","DTXSID5021544","2-Chlorophenol","ISPYQTSUDJAMAB-UHFFFAOYSA-N","OC1=CC=CC=C1Cl","C6H5ClO","128.56","164","industrial;pesticide","phenol","Chlorophenols, liquid is a colorless to yellow-brown liquid with an unpleasant penetrating odor. Toxic by ingestion. Used to make other chemicals." +377,"95-49-8","DTXSID8023977","2-Chlorotoluene","IBSQPLPBRSHTTG-UHFFFAOYSA-N","CC1=C(Cl)C=CC=C1","C7H7Cl","126.58","131",NA,NA,NA +378,"110-80-5","DTXSID7024087","2-Ethoxyethanol","ZNQVEEAIQZEUHB-UHFFFAOYSA-N","CCOCCO","C4H10O2","90.122","317",NA,NA,NA +379,"111-15-9","DTXSID9021928","Ethylene glycol monoethyl ether acetate","SVONRAPFKPVNKG-UHFFFAOYSA-N","CCOCCOC(C)=O","C6H12O3","132.15899999999999","104",NA,NA,NA +380,"104-76-7","DTXSID5020605","2-Ethyl-1-hexanol","YIWUKEYIRIRTPP-UHFFFAOYSA-N","CCCCC(CC)CO","C8H18O","130.23099999999999","141",NA,NA,"2-ethylhexan-1-ol is a primary alcohol that is hexan-1-ol substituted by an ethyl group at position 2. It has a role as a volatile oil component and a plant metabolite. Contact may irritate skin, eyes and mucous membranes. May be toxic by ingestion, inhalation and skin absorption." +381,"84-51-5","DTXSID5044994","2-Ethylanthraquinone","SJEBAWHUJDUKQK-UHFFFAOYSA-N","CCC1=CC2=C(C=C1)C(=O)C1=C(C=CC=C1)C2=O","C16H12O2","236.27","109",NA,NA,"2-Ethylanthraquinone is an organic compound that is a derivative of anthraquinone. This pale yellow solid is used in the industrial production of hydrogen peroxide (H2O2)." +383,"149-57-5","DTXSID9025293","2-Ethylhexanoic acid","OBETXYAYXDNJHR-UHFFFAOYSA-N","CCCCC(CC)C(O)=O","C8H16O2","144.214","154",NA,NA,NA +384,"1241-94-7","DTXSID1025300","2-Ethylhexyl diphenyl phosphate","CGSLYBDCEGBZCG-UHFFFAOYSA-N","CCCCC(CC)COP(=O)(OC1=CC=CC=C1)OC1=CC=CC=C1","C20H27O4P","362.40600000000001","85",NA,NA,"2-ethylhexyl diphenyl phosphate is a pale yellow liquid. Insoluble in water." +385,"183658-27-7","DTXSID9052686","2-Ethylhexyl 2,3,4,5-tetrabromobenzoate","HVDXCGSGEQKWGB-UHFFFAOYSA-N","CCCCC(CC)COC(=O)C1=C(Br)C(Br)=C(Br)C(Br)=C1","C15H18Br4O2","549.923","35",NA,NA,NA +391,"6915-15-7","DTXSID0027640","Malic acid","BJEPYKJPYRNKOW-UHFFFAOYSA-N","OC(CC(O)=O)C(O)=O","C4H6O5","134.08699999999999","348",NA,NA,NA +392,"2443-58-5","DTXSID2047569","2-Hydroxyfluorene","ZDOIAPGLORMKTR-UHFFFAOYSA-N","OC1=CC2=C(C=C1)C1=C(C2)C=CC=C1","C13H10O","182.22200000000001","78",NA,NA,"2-Hydroxyfluorene, also known as fluoren-2-ol, belongs to the class of organic compounds known as fluorenes. 2-Hydroxyfluorene is an extremely weak basic (essentially neutral) compound (based on its pKa). 2-Hydroxyfluorene is a potentially toxic compound." +393,"149-30-4","DTXSID1020807","2-Mercaptobenzothiazole","YXIWHUQXZSMYRE-UHFFFAOYSA-N","SC1=NC2=C(S1)C=CC=C2","C7H5NS2","167.24","245","industrial","Unclassified",NA +395,"120-71-8","DTXSID1020350","2-Methoxy-5-methylaniline","WXWCDTXEKCVRRO-UHFFFAOYSA-N","COC1=CC=C(C)C=C1N","C8H11NO","137.18199999999999","141",NA,NA,"Para-Cresidine is a is an organic compound member of methoxybenzenes. It is a white solid that is soluble in organic solvents. The compound features both amine and methoxy functional groups. It is used as an intermediate in preparation of dyes and pigments." +396,"99-59-2","DTXSID0020943","5-Nitro-o-anisidine","NIPDVSLAMPAWTP-UHFFFAOYSA-N","COC1=C(N)C=C(C=C1)[N+]([O-])=O","C7H8N2O3","168.15199999999999","123",NA,NA,"2-methoxy-5-nitroaniline is a member of 4-nitroanisoles and a substituted aniline and appears as orange-red needles or orange powder. 2-methoxy-5-nitroaniline is a structural serivative of anisole and ammonia (CHEBI: 48977)." +397,"109-86-4","DTXSID5024182","2-Methoxyethanol","XNWFRZJHXBZDAG-UHFFFAOYSA-N","COCCO","C3H8O2","76.094999999999999","407",NA,NA,NA +399,"107-41-5","DTXSID5021885","2-Methyl-2,4-pentanediol","SVTBMSDMJJWYQN-UHFFFAOYSA-N","CC(O)CC(C)(C)O","C6H14O2","118.176","141",NA,NA,NA +400,"534-52-1","DTXSID1022053","2-Methyl-4,6-dinitrophenol","ZXVONLUNISGICL-UHFFFAOYSA-N","CC1=C(O)C(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O","C7H6N2O5","198.13399999999999","99","industrial;pesticide;pesticide;pesticide","Unclassified","Dinitrocresols are a class of manufactured chemicals that do not occur naturally in the environment. There are 18 different dinitrocresols. The most commercially important dinitrocresol, 4,6-dinitro-o-cresol (DNOC), is a yellow solid with no smell. It is used primarily for insect control and crop protection. It may be sold under several trade names, including Antinonnin, Detal, and Dinitrol. Use of tradenames is for identification only and does not imply endorsement by the Agency for Toxic Substances and Disease Registry, the Public Health Service, or the U.S. Department of Health and Human Services. DNOC was used in diet pills in the 1930s, but has since been banned for this use." +401,"94-74-6","DTXSID4024195","MCPA","WHKUVVPPKQRRBV-UHFFFAOYSA-N","CC1=C(OCC(O)=O)C=CC(Cl)=C1","C9H9ClO3","200.62","132",NA,NA,"(4-chloro-2-methylphenoxy)acetic acid is a chlorophenoxyacetic acid that is (4-chlorophenoxy)acetic acid substituted by a methyl group at position 2. It has a role as a synthetic auxin, an environmental contaminant and a phenoxy herbicide. It is a chlorophenoxyacetic acid and a member of monochlorobenzenes." +402,"99-55-8","DTXSID4020959","5-Nitro-o-toluidine","DSBIJCMXAIKKKI-UHFFFAOYSA-N","CC1=C(N)C=C(C=C1)[N+]([O-])=O","C7H8N2O2","152.15299999999999","162",NA,NA,NA +403,"95-53-4","DTXSID1026164","2-Methylaniline","RNVCVTLRINQCPJ-UHFFFAOYSA-N","CC1=C(N)C=CC=C1","C7H9N","107.15600000000001","182","industrial","aniline","o-Toluidine is primarily used in the manufacture of dyes. o-Toluidine is highly toxic to humans when absorbed through the skin, inhaled as vapor, or swallowed. Acute (short-term) exposure of humans to o- toluidine affects the blood (i.e., methemoglobinemia), with clinical signs of central nervous system depression. The chronic (long-term) effects in workers exposed to o-toluidine include anemia, anorexia, weight loss, skin lesions, central nervous system depression, cyanosis, and methemoglobinemia. Animal studies indicate that chronic exposure too-toluidine causes effects on the spleen, liver, urinary bladder, and blood. Occupational exposure to dyestuffs (including o-toluidine) is associated with an increased risk of bladder cancer. 2-Methylaniline hydrochloride (the hydrochloride salt of o-toluidine) was carcinogenic in rats and mice. o-Toluidine has been classified by EPA as a Group B2, probable human carcinogen." +404,"613-12-7","DTXSID8060616","2-Methylanthracene","GYMFBYTZOGMSQJ-UHFFFAOYSA-N","CC1=CC2=CC3=CC=CC=C3C=C2C=C1","C15H12","192.261","93",NA,"PAH","Polycyclic Aromatic Hydrocarbon (PAH)." +406,"4265-25-2","DTXSID40863353","2-Methyl-1-benzofuran","GBGPVUAOTCNZPT-UHFFFAOYSA-N","CC1=CC2=CC=CC=C2O1","C9H8O","132.16200000000001","-",NA,NA,"2-Methylcumarone is a member of benzofurans." +409,"91-57-6","DTXSID4020878","2-Methylnaphthalene","QIMMUPPBPVKWKM-UHFFFAOYSA-N","CC1=CC2=CC=CC=C2C=C1","C11H10","142.20099999999999","155","industrial","PAH","2-Methylnaphthalene is a polycyclic aromatic hydrocarbon (PAH)." +410,"95-48-7","DTXSID8021808","o-Cresol","QWVGKYWNOKOFNN-UHFFFAOYSA-N","CC1=C(O)C=CC=C1","C7H8O","108.14","232","industrial","phenol","O-cresol is a cresol that is phenol substituted by a methyl group at position 2. It is a minor urinary metabolite of toluene. It has a role as a human xenobiotic metabolite." +412,"135-19-3","DTXSID5027061","2-Naphthalenol","JWAZRIHNYRIHIV-UHFFFAOYSA-N","OC1=CC2=C(C=CC=C2)C=C1","C10H8O","144.173","194",NA,NA,"2-naphthol is a naphthol carrying a hydroxy group at position 2. It has a role as an antinematodal drug, a genotoxin, a human xenobiotic metabolite and a mouse metabolite." +413,"91-59-8","DTXSID2020921","2-Naphthylamine","JBIJLHTVPXGSAM-UHFFFAOYSA-N","NC1=CC2=C(C=CC=C2)C=C1","C10H9N","143.18899999999999","156","industrial","PAH","Beta-naphthylamine appears as a white to reddish colored solid in the form of flakes. Slightly soluble in hot water and denser than water. Toxic by ingestion, inhalation and skin absorption. Used to make dyes and agricultural chemicals." +414,"3586-69-4","DTXSID30189413","2-Nitroanthracene","NZWGQBVOKHEKLD-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=CC3=CC=CC=C3C=C2C=C1","C14H9NO2","223.23099999999999","32",NA,"PAH","Polycyclic aromatic hydrocarbon (PAH)." +415,"86-00-0","DTXSID9025746","2-Nitro-1,1'-biphenyl","YOJKKXRJMXIKSR-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=CC=C1C1=CC=CC=C1","C12H9NO2","199.209","109","pesticide","Unclassified","Gold to tan crystals or brown solid." +416,"6639-36-7","DTXSID00216609","Dibenzothiophene, 2-nitro-","GXLYVLHWXVRVKI-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=C(SC3=CC=CC=C23)C=C1","C12H7NO2S","229.25","64",NA,NA,"Chemical substance predicted as likely to meet criteria for category 1A or 1B carcinogenicity, mutagenicity, or reproductive toxicity." +417,"13177-29-2","DTXSID0075071","Fluoranthene, 2-nitro-","VBCBFNMZBHKVQN-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=C3C(=CC=C2)C2=CC=CC=C2C3=C1","C16H9NO2","247.25299999999999","35",NA,NA,"2-Nitrofluoranthene categorizes as an air pollutant involving human health effects." +418,"607-57-8","DTXSID2020971","2-Nitrofluorene","XFOHWECQTFIEIX-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=C(C=C1)C1=C(C2)C=CC=C1","C13H9NO2","211.22","134","industrial","PAH","2-nitrofluorene is a nitroarene that is fluorene substituted by a nitro group at position 2. It has a role as a carcinogenic agent and a mutagen. It derives from a fluorene." +419,"581-89-5","DTXSID2073198","2-Nitronaphthalene","ZJYJZEAJZXVAMF-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C2C=CC=CC2=C1","C10H7NO2","173.17099999999999","90","industrial","PAH","2-nitronaphthalene is a yellow crystalline solid. Mp: 76°C; bp: 315°C. Insoluble in water. Very soluble in ethyl alcohol and in diethyl ether. Toxic to aquatic organisms, may cause long-term adverse effects in the environment." +420,"789-07-1","DTXSID30229368","2-Nitropyrene","MAZCGYFIOOIVHE-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=C3C(C=CC4=C3C(C=C2)=CC=C4)=C1","C16H9NO2","247.25299999999999","39",NA,"PAH","Nitrated polycyclic aromatic hydrocarbon, and among the major nitro-PAH present in ambient air." +421,"88-72-2","DTXSID4025791","2-Nitrotoluene","PLAZTCDQAHEYBI-UHFFFAOYSA-N","CC1=CC=CC=C1[N+]([O-])=O","C7H7NO2","137.13800000000001","137",NA,NA,"2-nitrotoluene is a mononitrotoluene that is toluene carrying a nitro substituent at position 2. It has a role as an environmental contaminant and a carcinogenic agent." +424,"122-99-6","DTXSID9021976","2-Phenoxyethanol","QCDWFXQBSFUVSP-UHFFFAOYSA-N","OCCOC1=CC=CC=C1","C8H10O2","138.166","197",NA,NA,NA +425,"90-43-7","DTXSID2021151","2-Phenylphenol","LLEMOWNGBBNAJR-UHFFFAOYSA-N","OC1=C(C=CC=C1)C1=CC=CC=C1","C12H10O","170.21100000000001","189","industrial;pesticide;pesticide","phenol","Biphenyl-2-ol is a member of the class of hydroxybiphenyls that is biphenyl substituted by a hydroxy group at position 2. It is generally used as a post-harvest fungicide for citrus fruits. It has a role as an environmental food contaminant and an antifungal agrochemical. It derives from a hydride of a biphenyl." +428,"96-70-8","DTXSID4044581","2-tert-Butyl-4-ethylphenol","LZHCVNIARUXHAL-UHFFFAOYSA-N","CCC1=CC(=C(O)C=C1)C(C)(C)C","C12H18O","178.27500000000001","87",NA,NA,NA +429,"121-00-6","DTXSID7040788","2-tert-Butyl-4-methoxyphenol","MRBKEAMVRSLQPH-UHFFFAOYSA-N","COC1=CC=C(O)C(=C1)C(C)(C)C","C11H16O2","180.24700000000001","159",NA,NA,NA +430,"88-60-8","DTXSID2026529","2-Tert-Butyl-5-methylphenol","XOUQAVYLRNOXDO-UHFFFAOYSA-N","CC1=CC(O)=C(C=C1)C(C)(C)C","C11H16O","164.24799999999999","113",NA,NA,NA +431,"88-18-6","DTXSID2026525","2-tert-Butylphenol","WJQOZHYUIDYNHM-UHFFFAOYSA-N","CC(C)(C)C1=C(O)C=CC=C1","C10H14O","150.221","123",NA,NA,NA +432,"134002-60-1","DTXSID5047297","CP-085958","RYSLZFOZDSIPHK-VOIUYBSRSA-N","O[C@@H]1[C@H](CC2=CC=CC(=C2)C(O)=O)COC2=C1C=C(OCC1=NC3=C(S1)C=CC(F)=C3)C=C2","C25H20FNO5S","465.5","20",NA,NA,NA +433,"181640-09-5","DTXSID4047339","SR144190","CUYCXSCEWNTJEZ-WAQYZQTGSA-N","Cl.CN(C)C(=O)NC1(CCN(CC[C@]2(CN(CCO2)C(=O)C2=CC=CC=C2)C2=CC(F)=C(F)C=C2)CC1)C1=CC=CC=C1","C33H39ClF2N4O3","613.15","3",NA,NA,NA +434,"264618-44-2","DTXSID8047341","SSR146977","XWPBINGFFFZAOZ-UMSFTDKQSA-N","CN(C)C(=O)NC1(CCN(CCC[C@@]2(CCCN(C2)C(=O)C2=CC=CC=C2)C2=CC(Cl)=C(Cl)C=C2)CC1)C1=CC=CC=C1","C35H42Cl2N4O2","621.65","14",NA,NA,NA +435,"686756-87-6","DTXSID4048519","PharmaGSID_48519","KCIDXSZMKJKCSV-UHFFFAOYSA-N","CN1C(=O)N(CC2=CN=C(NC3=CC4=C(OC(CO)CO4)C=C3)N=C12)C1=CC=CC=C1Br","C22H20BrN5O4","498.33699999999999","11",NA,NA,NA +436,"151506-44-4","DTXSID6048175","Difpas-pyrazole","JJAPPCJXQFKMJL-UHFFFAOYSA-N","COC1=CC=C(C=C1)N1N=C(C=C1C1=CC=C(C=C1)S(C)=O)C(F)F","C18H16F2N2O2S","362.39","27",NA,NA,NA +439,"32598-13-3","DTXSID5022514","3,3',4,4'-Tetrachlorobiphenyl","UQMGJOKDKOLIDP-UHFFFAOYSA-N","ClC1=C(Cl)C=C(C=C1)C1=CC(Cl)=C(Cl)C=C1","C12H6Cl4","291.98","68",NA,"PCB","3,3',4,4'-tetrachlorobiphenyl is a tetrachlorobiphenyl that is biphenyl in which the hydrogens at position 3 and 4 on each phenyl group are replaced by chlorines. It is a tetrachlorobiphenyl and a dichlorobenzene." +467,"79-94-7","DTXSID1026081","3,3',5,5'-Tetrabromobisphenol A","VEORPZCZECFIRK-UHFFFAOYSA-N","CC(C)(C1=CC(Br)=C(O)C(Br)=C1)C1=CC(Br)=C(O)C(Br)=C1","C15H12Br4O2","543.875","141",NA,NA,"Tetrabromobisphenol a is a white powder. A monomer for flame-retardant epoxy, polyester and polycarboante resins." +441,"79-94-7","DTXSID1026081","3,3',5,5'-Tetrabromobisphenol A","VEORPZCZECFIRK-UHFFFAOYSA-N","CC(C)(C1=CC(Br)=C(O)C(Br)=C1)C1=CC(Br)=C(O)C(Br)=C1","C15H12Br4O2","543.875","141",NA,NA,"Tetrabromobisphenol a is a white powder. A monomer for flame-retardant epoxy, polyester and polycarboante resins." +443,"111-94-4","DTXSID2041464","3,3'-Iminobispropanenitrile","SBAJRGRUGUQKAF-UHFFFAOYSA-N","N#CCCNCCC#N","C6H9N3","123.15900000000001","81",NA,NA,NA +444,"95-76-1","DTXSID7021815","3,4-Dichloroaniline","SDYWXFYBZPNOFX-UHFFFAOYSA-N","NC1=CC(Cl)=C(Cl)C=C1","C6H5Cl2N","162.01","169","pharmacological;industrial;pesticide","aniline","3,4-dichloroaniline is a dichloroaniline having the two chloro-substituents at the 3- and 4-positions. It has a role as an epitope and a xenobiotic. It derives from a 1,2-dichlorobenzene." +447,"1576-67-6","DTXSID9052682","3,6-Dimethylphenanthrene","OMIBPZBOAJFEJS-UHFFFAOYSA-N","CC1=CC2=C(C=C1)C=CC1=C2C=C(C)C=C1","C16H14","206.28800000000001","66",NA,"PAH","Endocrine disruptor" +455,"402910-27-4","DTXSID0047290","UK-416244","QIWQQMZFTOCFGF-UHFFFAOYSA-N","CSC1=CC=C(OC2=CC=C(C=C2CN(C)C)S(N)(=O)=O)C=C1C","C17H22N2O3S2","366.49","16",NA,NA,NA +457,"460081-99-6","DTXSID9048510","PharmaGSID_48510","GLUDVMFRXKAGHO-UHFFFAOYSA-N","OC(=O)C1=CC(=CC=C1)N(CC1=CN=CC=C1)C1=CC=C(OC(F)F)C(OC(F)F)=C1","C21H16F4N2O4","436.363","8",NA,NA,NA +458,"501027-49-2","DTXSID2047307","PD-0333941","OMSPUVWUIHNYCS-UHFFFAOYSA-N","CC1=C(CCOC2=CC=CC3=C2C=CN3CCC(O)=O)N=C(O1)C1=CC=CC=C1","C23H22N2O4","390.43900000000002","13",NA,NA,NA +464,"67-30-1","DTXSID5048186","Tetrac","PPJYSSNKSXAVDB-UHFFFAOYSA-N","OC(=O)CC1=CC(I)=C(OC2=CC(I)=C(O)C(I)=C2)C(I)=C1","C14H8I4O4","747.83199999999999","89",NA,NA,NA +4403,"647-42-7","DTXSID5044572","6:2 Fluorotelomer alcohol","GRJRKPMIRMSBNK-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H5F13O","364.10599999999999","96",NA,NA,NA +465,"647-42-7","DTXSID5044572","6:2 Fluorotelomer alcohol","GRJRKPMIRMSBNK-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H5F13O","364.10599999999999","96",NA,NA,NA +4441,"2144-53-8","DTXSID3047558","6:2 Fluorotelomer methacrylate","CDXFIRXEAJABAZ-UHFFFAOYSA-N","CC(=C)C(=O)OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C12H9F13O2","432.18099999999998","79",NA,NA,NA +466,"2144-53-8","DTXSID3047558","6:2 Fluorotelomer methacrylate","CDXFIRXEAJABAZ-UHFFFAOYSA-N","CC(=C)C(=O)OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C12H9F13O2","432.18099999999998","79",NA,NA,NA +470,"119-90-4","DTXSID3025091","3,3'-Dimethoxybenzidine","JRBJSXQPQWSCCF-UHFFFAOYSA-N","COC1=CC(=CC=C1N)C1=CC(OC)=C(N)C=C1","C14H16N2O2","244.29400000000001","134","industrial","Unclassified","Dianisidine is a colorless, highly toxic, crystalline compound that turns violet when exposed to air. Dianisidine is used exclusively as an intermediate for the production of dyes and pigments. Exposure to this substance causes skin irritation and sensitization. Dianisidine is reasonably anticipated to be a human carcinogen based on evidence of carcinogenicity in experimental animals." +471,"20325-40-0","DTXSID1020485","3,3'-Dimethoxybenzidine dihydrochloride","UXTIAFYTYOEQHV-UHFFFAOYSA-N","Cl.Cl.COC1=CC(=CC=C1N)C1=CC=C(N)C(OC)=C1","C14H18Cl2N2O2","317.20999999999998","94",NA,NA,"3,3'-Dimethoxybenzidine dihydrochloride is a chemical substance known to have very high carcinogenicity and human health effects." +472,"119-93-7","DTXSID5024059","3,3'-Dimethylbenzidine","NUIURNJTPRWVAP-UHFFFAOYSA-N","CC1=CC(=CC=C1N)C1=CC=C(N)C(C)=C1","C14H16N2","212.29599999999999","142",NA,NA,"3,3'-Dimethylbenzidine is a member of biphenyls." +473,"496-72-0","DTXSID9024930","3,4-Diaminotoluene","DGRGLKZMKWPMOH-UHFFFAOYSA-N","CC1=CC=C(N)C(N)=C1","C7H10N2","122.17100000000001","160",NA,NA,NA +474,"99-54-7","DTXSID8024999","3,4-Dichloronitrobenzene","NTBYINQTYWZXLH-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(Cl)C(Cl)=C1","C6H3Cl2NO2","192","133",NA,NA,NA +475,"95-65-8","DTXSID4024062","3,4-Dimethylphenol","YCOXTKKNXUZSKD-UHFFFAOYSA-N","CC1=C(C)C=C(O)C=C1","C8H10O","122.167","144","industrial;consumerProduct","phenol",NA +10015,"1823-69-2","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +481,"5392-40-5","DTXSID6024836","3,7-Dimethyl-2,6-octadienal","WTEVQBCEXWBHNA-UHFFFAOYSA-N","CC(C)=CCCC(C)=CC=O","C10H16O","152.23699999999999","53","personalCare;natural;consumerProduct","Unclassified","Citral appears as a clear yellow colored liquid with a lemon-like odor. Less dense than water and insoluble in water. Toxic by ingestion. Used to make other chemicals." +481,"5392-40-5","DTXSID6024836","3,7-Dimethyl-2,6-octadienal","WTEVQBCEXWBHNA-UHFFFAOYSA-N","CC(C)=CCCC(C)=CC=O","C10H16O","152.23699999999999","53","personalCare;natural;consumerProduct","Unclassified","Citral appears as a clear yellow colored liquid with a lemon-like odor. Less dense than water and insoluble in water. Toxic by ingestion. Used to make other chemicals." +487,"826-62-0","DTXSID0047456","2-Norbornene-5,6-dicarboxylic anhydride","KNDQHSIWLOJIGP-UHFFFAOYSA-N","O=C1OC(=O)C2C3CC(C=C3)C12","C9H8O3","164.16","118",NA,NA,NA +488,"30516-87-1","DTXSID8020127","3'-Azido-3'-deoxythymidine","HBOMLICNUCNMMY-XLPZGREQSA-N","CC1=CN([C@H]2C[C@H](N=[N+]=[N-])[C@@H](CO)O2)C(=O)NC1=O","C10H13N5O4","267.245","242",NA,NA,NA +489,"627-18-9","DTXSID3024657","3-Bromo-1-propanol","RQFUZUMFPRMVDX-UHFFFAOYSA-N","OCCCBr","C3H7BrO","138.99199999999999","146",NA,NA,NA +490,"127-51-5","DTXSID7027047","alpha-Isomethylionone","JRJBVWJSTHECJK-UHFFFAOYSA-N","CC(=O)C(C)=CC1C(C)=CCCC1(C)C","C14H22O","206.32900000000001","26",NA,NA,NA +494,"215297-27-1","DTXSID1047289","UK-343664","NIBCDDKWFDEBEP-UHFFFAOYSA-N","CCCOC1=C(C=C(C=C1)S(=O)(=O)N1CCN(CC)CC1)C1=NC2=C(CC)N(CC3=CC=CC=N3)N=C2C(=O)N1","C28H35N7O4S","565.69000000000005","21",NA,NA,NA +500,"4834-35-9","DTXSID2038318","3-Hydroxybenz[a]anthracene","MRRWKFVZIOCJBS-UHFFFAOYSA-N","OC1=CC2=C(C=C1)C1=CC3=C(C=CC=C3)C=C1C=C2","C18H12O","244.29300000000001","28",NA,NA,"Tetraphen-1-ol is a member of the class of tetraphenes that is tetraphene in which the hydrogen at position 1 has been replaced by a hydroxy group. It is a urinary hydroxylated metabolite of tetraphene (benzo[a]anthracene). It has a role as a human xenobiotic metabolite. It is a member of tetraphenes and a member of phenols. It derives from a hydride of a tetraphene." +501,"77508-02-2","DTXSID90228211","Benzo(e)pyren-3-ol","NHSIJWBECBREEQ-UHFFFAOYSA-N","OC1=C2C=CC3=C4C(=CC=C3)C3=CC=CC=C3C(C=C1)=C24","C20H12O","268.315","9",NA,NA,"Benzo(e)pyren-3-ol is a polycyclic aromatic hydrocarbon listed as a Group 3 carcinogen by IARC." +502,"17798-09-3","DTXSID70170406","Fluoranthen-3-ol","PQWYZWVBXAOHOU-UHFFFAOYSA-N","OC1=C2C=CC=C3C4=CC=CC=C4C(C=C1)=C23","C16H10O","218.255","15",NA,NA,"Environmental carcinogen." +503,"6344-67-8","DTXSID9047540","3-Hydroxyfluorene","PVUBSZGNXLNTLX-UHFFFAOYSA-N","OC1=CC2=C(CC3=CC=CC=C23)C=C1","C13H10O","182.22200000000001","36",NA,NA,"3-Hydroxyfluorene is a member of fluorenes." +504,"605-87-8","DTXSID3052723","3-Hydroxyphenanthrene","NGPOABOEXMDQBT-UHFFFAOYSA-N","OC1=CC2=C3C=CC=CC3=CC=C2C=C1","C14H10O","194.233","82",NA,NA,"3-Hydroxyphenanthrene, also known as 3-phenanthrenol, belongs to the class of organic compounds known as phenanthrols. Phenanthrols are compounds containing a phenanthrene (or its hydrogenated derivative) to which a hydroxyl group is attached. These are polycyclic compounds containing a phenanthrene moiety, which is a tricyclic aromatic compound with three non-linearly fused benzene. 3-Hydroxyphenanthrene is an extremely weak basic (essentially neutral) compound (based on its pKa). 3-Hydroxyphenanthrene is a potentially toxic compound." +505,"55406-53-6","DTXSID0028038","3-Iodo-2-propynyl-N-butylcarbamate","WYVVKGNFXHOCQV-UHFFFAOYSA-N","CCCCNC(=O)OCC#CI","C8H12INO2","281.09300000000002","105",NA,NA,NA +507,"108-44-1","DTXSID1026792","3-Methylaniline","JJYPMNFTHPTTDI-UHFFFAOYSA-N","CC1=CC(N)=CC=C1","C7H9N","107.15600000000001","137","industrial","aniline",NA +508,"123-92-2","DTXSID9025453","3-Methylbutyl acetate","MLFHJEHSLIIPHL-UHFFFAOYSA-N","CC(C)CCOC(C)=O","C7H14O2","130.18700000000001","124",NA,NA,NA +511,"17117-34-9","DTXSID60881271","3-Nitrobenzanthrone","QAJOWHGESRCVLY-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C2C3=C(C=CC=C3)C(=O)C3=C2C1=CC=C3","C17H9NO3","275.26299999999998","-",NA,"PAH","3-Nitrobenzanthrone (3-nitro-7H-benz[de]anthracen-7-one) is a chemical compound emitted in diesel exhaust; it is a potent carcinogen. It produced the highest score ever reported in the Ames test, a standard measure of the cancer-causing potential of toxic chemicals, far greater than the previous known strongest (1,8-dinitropyrene, which is also found in diesel exhaust)." +512,"2113-58-8","DTXSID00175363","1,1'-Biphenyl, 3-nitro- (9CI)","FYRPEHRWMVMHQM-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=CC(=C1)C1=CC=CC=C1","C12H9NO2","199.209","92","industrial","Unclassified","3-Nitro-1,1'-biphenyl is a known chemical toxin. Exposure occurs by oral and/or dermal contact and by inhalation." +513,"5410-97-9","DTXSID00202446","3-Nitrodibenzofuran","UVFAHDAUVZRVCC-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=C(C=C1)C1=CC=CC=C1O2","C12H7NO3","213.19200000000001","109",NA,"dioxinsAndFurans","3-Nitrodibenzo[b,d]furan is a known chemical toxin/irritant. Exposure occurs by oral and/or dermal contact and causes eye irritation." +514,"892-21-7","DTXSID0074976","3-Nitrofluoranthene","PIHGQKMEAMSUNA-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C2C3=CC=CC=C3C3=CC=CC1=C23","C16H9NO2","247.25299999999999","82",NA,"PAH","3-Nitrofluoranthene is a nitronaphthalene." +515,"17024-19-0","DTXSID0075073","Phenanthrene, 3-nitro-","CPRHWWUDRYJODK-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C2C=CC3=CC=CC=C3C2=C1","C14H9NO2","223.23099999999999","37",NA,"PAH","3-Nitrophenanthrene is a chemical substance known to have very high ecotoxicity and human health effects." +516,"99-08-1","DTXSID5021831","3-Nitrotoluene","QZYHIOPPLUPUJF-UHFFFAOYSA-N","CC1=CC(=CC=C1)[N+]([O-])=O","C7H7NO2","137.13800000000001","136",NA,NA,NA +517,"4352-88-9","DTXSID80354174","3-Oxo-3H-benzo[f]chromene-2-carbonitrile","DRKGVTRICWHXPE-UHFFFAOYSA-N","O=C1OC2=C(C=C1C#N)C1=CC=CC=C1C=C2","C14H7NO2","221.215","36",NA,NA,"Used for dyeing and printing synthetic and semi-synthetic fibres, such as polyamide and cellulose triacetate materials, especially however polyester materials." +518,"3739-38-6","DTXSID1038321","3-Phenoxybenzoic acid","NXTDJHZGHOFSQG-UHFFFAOYSA-N","OC(=O)C1=CC(OC2=CC=CC=C2)=CC=C1","C13H10O3","214.22","146",NA,NA,NA +519,"100-54-9","DTXSID1026665","3-Pyridinecarbonitrile","GZPHSAQLYPIAIN-UHFFFAOYSA-N","N#CC1=CN=CC=C1","C6H4N2","104.11199999999999","161",NA,NA,NA +520,"353280-07-6","DTXSID1047281","CP-612372","QYZRHDNGOVTVDB-UHFFFAOYSA-N","CC(C)(O)C1=CC=C(CNC(=O)C2=CC=CN=C2OC2=CC3=NON=C3C=C2)C=C1","C22H20N4O4","404.42599999999999","18",NA,NA,NA +527,"230954-09-3","DTXSID8047266","CP-544439","ZBRHTUMWSDPCMI-UHFFFAOYSA-N","ONC(=O)C1(CCOCC1)NS(=O)(=O)C1=CC=C(OC2=CC=C(F)C=C2)C=C1","C18H19FN2O6S","410.42","23",NA,NA,NA +528,"140-66-9","DTXSID9022360","4-(1,1,3,3-Tetramethylbutyl)phenol","ISAVYTVYFVQUDY-UHFFFAOYSA-N","CC(C)(C)CC(C)(C)C1=CC=C(O)C=C1","C14H22O","206.32900000000001","144",NA,NA,NA +529,"94-82-6","DTXSID7024035","2,4-Dichlorophenoxybutyric acid","YIVXMZJTEQBPQO-UHFFFAOYSA-N","OC(=O)CCCOC1=CC=C(Cl)C=C1Cl","C10H10Cl2O3","249.09","121",NA,NA,NA +530,"5349-51-9","DTXSID9040716","4-(2-Methylbutan-2-yl)cyclohexanol","VDQZABQVXYELSI-UHFFFAOYSA-N","CCC(C)(C)C1CCC(O)CC1","C11H22O","170.29599999999999","115",NA,NA,NA +531,"80-46-6","DTXSID8021771","4-(2-Methylbutan-2-yl)phenol","NRZWYNLTFLDQQX-UHFFFAOYSA-N","CCC(C)(C)C1=CC=C(O)C=C1","C11H16O","164.24799999999999","141",NA,NA,NA +532,"249296-43-3","DTXSID2047272","CJ-013610","WRQQAESBKZTAFL-UHFFFAOYSA-N","CS(O)(=O)=O.CC1=NC=CN1C1=CC=C(SC2=CC=CC(=C2)C2(CCOCC2)C(N)=O)C=C1","C23H27N3O5S2","489.61","9",NA,NA,NA +533,"99-71-8","DTXSID7022332","4-(Butan-2-yl)phenol","ZUTYZAFDFLLILI-UHFFFAOYSA-N","CCC(C)C1=CC=C(O)C=C1","C10H14O","150.221","88",NA,NA,NA +537,"1062243-51-9","DTXSID4048511","PharmaGSID_48511","DJNZZLZKAXGMMC-UHFFFAOYSA-N","COC1=C(NC2=NC3=C(C=N2)N(C)C(=O)C(F)(F)CN3C2CCCC2)C=CC(=C1)C(=O)NC1CCN(C)CC1","C27H35F2N7O3","543.62","64",NA,NA,NA +554,"27955-94-8","DTXSID2037712","4,4',4''-Ethane-1,1,1-triyltriphenol","BRPSWMCDEYMRPE-UHFFFAOYSA-N","CC(C1=CC=C(O)C=C1)(C1=CC=C(O)C=C1)C1=CC=C(O)C=C1","C20H18O3","306.36099999999999","97",NA,NA,NA +556,"553-26-4","DTXSID2027200","4,4'-Bipyridine","MWVTWFVJZLCBMC-UHFFFAOYSA-N","C1=CC(=CC=N1)C1=CC=NC=C1","C10H8N2","156.18799999999999","165",NA,NA,NA +557,"838-88-0","DTXSID5020867","4,4'-Diamino-3,3'-dimethyldiphenylmethane","WECDUOXQLAIPQW-UHFFFAOYSA-N","CC1=C(N)C=CC(CC2=CC(C)=C(N)C=C2)=C1","C15H18N2","226.32300000000001","111",NA,NA,"4,4′-Methylene-bis(2-methylaniline) belongs to the primary aromatic amines (PAAs) family of compounds which are toxic in nature and are probable human carcinogens." +558,"101-61-1","DTXSID5020869","4,4'-Methylenebis(N,N-dimethylaniline)","JNRLEMMIVRBKJE-UHFFFAOYSA-N","CN(C)C1=CC=C(CC2=CC=C(C=C2)N(C)C)C=C1","C17H22N2","254.37700000000001","132",NA,NA,NA +559,"101-77-9","DTXSID6022422","4,4'-Diaminobiphenyl methane","YBRVSVVVWCFQMG-UHFFFAOYSA-N","NC1=CC=C(CC2=CC=C(N)C=C2)C=C1","C13H14N2","198.26900000000001","137","industrial;consumerProduct","aniline",NA +560,"101-80-4","DTXSID0021094","4,4'-Oxydianiline","HLBLWEWZXPIGSM-UHFFFAOYSA-N","NC1=CC=C(OC2=CC=C(N)C=C2)C=C1","C12H12N2O","200.24100000000001","157","industrial","aniline","4,4'-Oxydianiline is an aromatic ether and is used in the production of a wide variety of polymer resins. Other applications of 4,4’-oxydianiline include the production of poly(amide)imide resins (which are used in the manufacture of heat-resistant wire enamels and coatings), as an intermediate in the manufacture of epoxy resins and adhesives, and in the production of aromatic polyether imides. 4,4'-diaminodiphenyl ether appears as odorless colorless crystals or an odorless fine, beige powder." +561,"41481-66-7","DTXSID9047598","4,4'-Sulfonylbis[2-(prop-2-en-1-yl)phenol]","MTMKZABGIQJAEX-UHFFFAOYSA-N","OC1=C(CC=C)C=C(C=C1)S(=O)(=O)C1=CC(CC=C)=C(O)C=C1","C18H18O4S","330.4","52",NA,NA,NA +574,"584-13-4","DTXSID9033058","4-Amino-1,2,4-triazole","FMCUPJKTGNBGEC-UHFFFAOYSA-N","NN1C=NN=C1","C2H4N4","84.081999999999994","152",NA,NA,NA +576,"60-09-3","DTXSID6024460","4-Aminoazobenzene","QPQKUYVSJWQSDY-CCEZHUSRSA-N","NC1=CC=C(C=C1)\N=N\C1=CC=CC=C1","C12H11N3","197.24100000000001","115",NA,NA,NA +577,"150-13-0","DTXSID6024466","4-Aminobenzoic acid","ALYNCZNDIQEVRV-UHFFFAOYSA-N","NC1=CC=C(C=C1)C(O)=O","C7H7NO2","137.13800000000001","273",NA,NA,NA +578,"54-62-6","DTXSID3022588","Aminopterin","TVZGACDUOSZQKY-LBPRGKRZSA-N","NC1=NC(N)=C2N=C(CNC3=CC=C(C=C3)C(=O)N[C@@H](CCC(O)=O)C(O)=O)C=NC2=N1","C19H20N8O5","440.42","78",NA,NA,NA +579,"63-05-8","DTXSID8024523","4-Androstene-3,17-dione","AEMFNILZOJDQLW-QAGGRKNESA-N","[H][C@@]12CCC(=O)[C@@]1(C)CC[C@@]1([H])[C@@]2([H])CCC2=CC(=O)CC[C@]12C","C19H26O2","286.41500000000002","150",NA,NA,NA +580,"298198-52-4","DTXSID2047359","SSR180711","RXLOZRCLQMJJLC-UHFFFAOYSA-N","BrC1=CC=C(OC(=O)N2CCN3CCC2CC3)C=C1","C14H17BrN2O2","325.20600000000002","30",NA,NA,NA +581,"96-48-0","DTXSID6020224","4-Butyrolactone","YEJRWHAVMIAJKC-UHFFFAOYSA-N","O=C1CCCO1","C4H6O2","86.09","154",NA,NA,"Gamma-butyrolactone is a butan-4-olide that is tetrahydrofuran substituted by an oxo group at position 2. It has a role as a neurotoxin and a metabolite." +582,"95-83-0","DTXSID5020283","4-Chloro-1,2-diaminobenzene","BXIXXXYDDJVHDL-UHFFFAOYSA-N","NC1=C(N)C=C(Cl)C=C1","C6H7ClN2","142.59","158",NA,NA,NA +584,"59-50-7","DTXSID4021717","4-Chloro-3-methylphenol","CFKMVGJGLGKFKI-UHFFFAOYSA-N","CC1=C(Cl)C=CC(O)=C1","C7H7ClO","142.58000000000001","201","industrial;pesticide","phenol","4-chloro-m-cresol is a hydroxytoluene that is 3-methylphenol which is substituted by a chlorine at position 4. A ryanodine receptor agonist. It has a role as a ryanodine receptor agonist, an antimicrobial agent and a disinfectant. It is a hydroxytoluene and a member of monochlorobenzenes." +585,"106-47-8","DTXSID9020295","4-Chloroaniline","QSNSCYSYFYORTR-UHFFFAOYSA-N","NC1=CC=C(Cl)C=C1","C6H6ClN","127.57","192","industrial;pesticide","aniline","4-chloroaniline is a chloroaniline in which the chloro atom is para to the aniline amino group. It is a chloroaniline and a member of monochlorobenzenes." +586,"5216-25-1","DTXSID2027593","4-Chlorobenzotrichloride","LVZPKYYPPLUECL-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C(Cl)(Cl)Cl","C7H4Cl4","229.91","98",NA,NA,NA +587,"106-43-4","DTXSID8024814","4-Chlorotoluene","NPDACUSDTOMAMK-UHFFFAOYSA-N","CC1=CC=C(Cl)C=C1","C7H7Cl","126.58","134",NA,NA,NA +588,"599-64-4","DTXSID3022536","4-Cumylphenol","QBDSZLJBMIMQRS-UHFFFAOYSA-N","CC(C)(C1=CC=CC=C1)C1=CC=C(O)C=C1","C15H16O","212.292","135","industrial","phenol",NA +589,"2433-14-9","DTXSID3040722","4-Cyclohexylcyclohexanol","AFKMHDZOVNDWLO-UHFFFAOYSA-N","OC1CCC(CC1)C1CCCCC1","C12H22O","182.30699999999999","121",NA,NA,NA +590,"92-68-2","DTXSID8040721","4-Cyclohexylcyclohexanone","JLYNSPSTPQAEAX-UHFFFAOYSA-N","O=C1CCC(CC1)C1CCCCC1","C12H20O","180.291","71",NA,NA,NA +591,"5877-42-9","DTXSID1044697","4-Ethyloct-1-yn-3-ol","CUUQUEAUUPYEKK-UHFFFAOYSA-N","CCCCC(CC)C(O)C#C","C10H18O","154.25299999999999","67",NA,NA,NA +595,"203-64-5","DTXSID1024887","4H-Cyclopenta(def)phenanthrene","RKZDZWJDQTZDLD-UHFFFAOYSA-N","C1C2=CC=CC3=C2C2=C1C=CC=C2C=C3","C15H10","190.245","62",NA,NA,NA +596,"5737-13-3","DTXSID50205967","4H-Cyclopenta(def)phenanthren-4-one","IFCBMPOMNSORDG-UHFFFAOYSA-N","O=C1C2=CC=CC3=C2C2=C(C=CC=C12)C=C3","C15H8O","204.22800000000001","42","industrial","OPAH","Linked to mutagenicity and carcinogenesis for chemical disease co- occurances." +597,"61479-80-9","DTXSID70485582","4H-Cyclopenta[lmn]phenanthridine 5,9-dione","DCGBUHBFDIJJLN-UHFFFAOYSA-N","O=C1C2=C3C4=C1C=CC=C4C(=O)NC3=CC=C2","C14H7NO2","221.215","12",NA,NA,"Light-colored rosin/rosin ester" +598,"1987-50-4","DTXSID2037714","4-Heptylphenol","KNDDEFBFJLKPFE-UHFFFAOYSA-N","CCCCCCCC1=CC=C(O)C=C1","C13H20O","192.30199999999999","94",NA,NA,NA +599,"136-77-6","DTXSID1020699","4-Hexylresorcinol","WFJIVOKAWHGMBH-UHFFFAOYSA-N","CCCCCCC1=C(O)C=C(O)C=C1","C12H18O2","194.274","206",NA,NA,"Hexylresorcinol is a substituted phenol with bactericidal, antihelminthic and potential antineoplastic activities. Hexylresorcinol is used as an antiseptic in mouthwashes and skin wound cleansers. Hexylresorcinol may also inhibit oxidative DNA damage by enhancing the activity of antioxidant enzymes, including glutathione peroxidase and glutathione reductase, which facilitate scavenging reactive oxygen molecules by glutathione (GSH)." +600,"121-33-5","DTXSID0021969","4-Hydroxy-3-methoxybenzaldehyde","MWOOGOJBHIARFG-UHFFFAOYSA-N","COC1=C(O)C=CC(C=O)=C1","C8H8O3","152.149","246",NA,NA,NA +601,"63019-40-9","DTXSID00212267","4-Chrysenol","CZCGRCFUEPALNV-UHFFFAOYSA-N","OC1=CC=CC2=C1C1=C(C=C2)C2=CC=CC=C2C=C1","C18H12O","244.29300000000001","27",NA,NA,"Chrysen-4-ol is a hydroxychrysene that is chrysene in which the hydrogen at position 4 has been replaced by a hydroxy group. It is a metabolite of the polycyclic aromatic hydrocarbon chrysene. It has a role as a xenobiotic metabolite." +602,"7651-86-7","DTXSID30227324","4-Hydroxyphenanthrene","SIMYIUXARJLHEA-UHFFFAOYSA-N","OC1=CC=CC2=C1C1=CC=CC=C1C=C2","C14H10O","194.233","52",NA,NA,"4-Hydroxyphenanthrene, also known as 4-phenanthrenol, belongs to the class of organic compounds known as phenanthrols. Phenanthrols are compounds containing a phenanthrene (or its hydrogenated derivative) to which a hydroxyl group is attached. These are polycyclic compounds containing a phenanthrene moiety, which is a tricyclic aromatic compound with three non-linearly fused benzene. 4-Hydroxyphenanthrene is an extremely weak basic (essentially neutral) compound (based on its pKa). 4-Hydroxyphenanthrene is a potentially toxic compound." +603,"68392-35-8","DTXSID3037094","4-Hydroxytamoxifen","TXUZVZSFRXZGTL-UHFFFAOYSA-N","CCC(=C(C1=CC=C(O)C=C1)C1=CC=C(OCCN(C)C)C=C1)C1=CC=CC=C1","C26H29NO2","387.52300000000002","48",NA,NA,NA +604,"108-11-2","DTXSID2026781","4-Methyl-2-pentanol","WVYWICLMDOOCFB-UHFFFAOYSA-N","CC(C)CC(C)O","C6H14O","102.17700000000001","123",NA,NA,NA +605,"106-49-0","DTXSID6021872","4-Methylaniline","RZXMPPFPUUCRFN-UHFFFAOYSA-N","CC1=CC=C(N)C=C1","C7H9N","107.15600000000001","179","industrial","aniline",NA +606,"106-44-5","DTXSID7021869","p-Cresol","IWDCLRJOBJJRNH-UHFFFAOYSA-N","CC1=CC=C(O)C=C1","C7H8O","108.14","278","industrial","phenol","P-cresol is a cresol that consists of toluene substituted by a hydroxy group at position 4. It is a metabolite of aromatic amino acid metabolism produced by intestinal microflora in humans and animals. It has a role as a uremic toxin, a human metabolite and an Escherichia coli metabolite." +607,"100-01-6","DTXSID8020961","4-Nitroaniline","TYMLOMAKGOJONV-UHFFFAOYSA-N","NC1=CC=C(C=C1)[N+]([O-])=O","C6H6N2O2","138.126","187","industrial","aniline","4-nitroaniline is a nitroaniline carrying a nitro group at position 4. It has a role as a bacterial xenobiotic metabolite." +608,"62-23-7","DTXSID3020966","4-Nitrobenzoic acid","OTLNPYWUJOZPPA-UHFFFAOYSA-N","OC(=O)C1=CC=C(C=C1)[N+]([O-])=O","C7H5NO4","167.12","191",NA,NA,NA +609,"92-93-3","DTXSID9041522","4-Nitrobiphenyl","BAJQRLZAPXASRD-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(C=C1)C1=CC=CC=C1","C12H9NO2","199.209","117","industrial","Unclassified","4-Nitrobiphenyl is no longer manufactured or used in the United States. Limited information is available on the health effects of 4-nitrobiphenyl. Acute (short-term) exposure to 4-nitrobiphenyl in humans results in irritation of the eyes, mucous membranes, and respiratory tract, and headache, nausea, vomiting, and fatigue. Chronic (long-term) exposure to high concentrations of 4-nitrobiphenyl in workers has resulted in effects on the peripheral and central nervous systems and the liver and kidney. No information is available on the reproductive, developmental, or carcinogenic effects of 4-nitrobiphenyl in humans. EPA has not classified 4-nitrobiphenyl for carcinogenicity." +610,"100-02-7","DTXSID0021834","4-Nitrophenol","BTJIUGUIPKRLHP-UHFFFAOYSA-N","OC1=CC=C(C=C1)[N+]([O-])=O","C6H5NO3","139.11000000000001","278","industrial;pesticide","phenol","4-nitrophenol is a member of the class of 4-nitrophenols that is phenol in which the hydrogen that is para to the hydroxy group has been replaced by a nitro group. It has a role as a human xenobiotic metabolite and a mouse metabolite. It is a conjugate acid of a 4-nitrophenolate. 4-Nitrophenol is used to manufacture drugs, fungicides, insecticides, and dyes and to darken leather. Acute (short-term) inhalation or ingestion of 4-nitrophenol in humans causes headaches, drowsiness, nausea, and cyanosis (blue color in lips, ears, and fingernails)." +611,"99-99-0","DTXSID5023792","4-Nitrotoluene","ZPTVNYMJQHSSEA-UHFFFAOYSA-N","CC1=CC=C(C=C1)[N+]([O-])=O","C7H7NO2","137.13800000000001","157","industrial","Unclassified","P-nitrotoluene appears as a yellow liquid with a weak aromatic odor. Toxic. Insoluble in water. Combustible but may take some effort to ignite. Produces toxic oxides of nitrogen when burned. In a spill, immediate steps should be taken to limit its spread to the environment. Can easily penetrate the soil and contaminate groundwater or nearby streams. Used to make other chemicals." +614,"104-40-5","DTXSID5033836","4-Nonylphenol","IGFHQQFPSIBGKE-UHFFFAOYSA-N","CCCCCCCCCC1=CC=C(O)C=C1","C15H24O","220.35599999999999","147","industrial;pesticide","phenol","4-nonylphenol is a member of the class of phenols that is phenol which is para-substituted with a nonyl group. It has a role as an environmental contaminant." +615,"84852-15-3","DTXSID5029055","4-Nonylphenol, branched","-","-","-","-","-",NA,NA,NA +616,"1806-26-4","DTXSID9022312","4-Octylphenol","NTDQQZYCCIDJRK-UHFFFAOYSA-N","CCCCCCCCC1=CC=C(O)C=C1","C14H22O","206.32900000000001","105","industrial;consumerProduct","phenol",NA +617,"33228-44-3","DTXSID0040707","4-Pentylaniline","DGFTWBUZRHAHTH-UHFFFAOYSA-N","CCCCCC1=CC=C(N)C=C1","C11H17N","163.26400000000001","94",NA,NA,NA +618,"42156-92-3","DTXSID10194989","4-Phenanthrenecarboxylic acid","HHZVGTSZLAQRSM-UHFFFAOYSA-N","OC(=O)C1=CC=CC2=C1C1=CC=CC=C1C=C2","C15H10O2","222.24299999999999","30",NA,NA,"Phenanthrene-4-carboxylate is a member of phenanthrenes." +619,"98-54-4","DTXSID1020221","4-tert-Butylphenol","QHPQWRBYOIRBIT-UHFFFAOYSA-N","CC(C)(C)C1=CC=C(O)C=C1","C10H14O","150.221","168","industrial;consumerProduct","phenol",NA +620,"106-87-6","DTXSID0020604","4-Vinyl-1-cyclohexene dioxide","OECTYKWYRCHAKR-UHFFFAOYSA-N","C1OC1C1CCC2OC2C1","C8H12O2","140.18199999999999","95",NA,NA,NA +622,"521-18-6","DTXSID9022364","5alpha-Dihydrotestosterone","NVKAWKQGWWIWPM-ABEVXSGRSA-N","[H][C@@]12CC[C@H](O)[C@@]1(C)CC[C@@]1([H])[C@@]2([H])CC[C@@]2([H])CC(=O)CC[C@]12C","C19H30O2","290.447","171",NA,NA,NA +628,"1090-13-7","DTXSID7061483","5,12-Naphthacenedione","LZPBKINTWROMEA-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C(=O)C2=CC3=CC=CC=C3C=C12","C18H10O2","258.27600000000001","81",NA,"OPAH","5,12-Naphthacenequinone was used to study the phototransformation of phenol in aqueous solution." +629,"85-02-9","DTXSID2024585","Benzo(f)quinoline","HCAUQPZEWLULFJ-UHFFFAOYSA-N","C1=CC=C2C(C=CC3=C2C=CC=N3)=C1","C13H9N","179.22200000000001","120",NA,NA,"Benzo(f)quinoline appears as yellow crystals or white powder. Characteristic irritating odor. (NTP, 1992)" +630,"162706-14-1","DTXSID2047309","UK-156819","MYDPDVXVDQMNLD-UHFFFAOYSA-N","CC1=C(C2=C(C=CC=C2)N1CCCCC(O)=O)C1=CN=CC=C1","C19H20N2O2","308.38099999999997","15",NA,NA,NA +645,"77-71-4","DTXSID5021754","5,5-Dimethylhydantoin","YIROYDNZEPTFOL-UHFFFAOYSA-N","CC1(C)NC(=O)NC1=O","C5H8N2O2","128.131","134",NA,NA,NA +646,"57-41-0","DTXSID8020541","5,5-Diphenylhydantoin","CXOFVDLJLONNDW-UHFFFAOYSA-N","O=C1NC(=O)C(N1)(C1=CC=CC=C1)C1=CC=CC=C1","C15H12N2O2","252.273","281",NA,NA,NA +653,"2835-95-2","DTXSID9024489","5-Amino-2-methylphenol","DBFYESDCPWWCHN-UHFFFAOYSA-N","CC1=C(O)C=C(N)C=C1","C7H9NO","123.155","157",NA,NA,NA +654,"26172-55-4","DTXSID9034286","5-Chloro-2-methyl-3(2H)-isothiazolone","DHNRXBZYEKSXIM-UHFFFAOYSA-N","CN1SC(Cl)=CC1=O","C4H4ClNOS","149.59","116",NA,NA,NA +655,"7747-35-5","DTXSID3029289","7a-Ethyldihydro-1H,3H,5H-oxazolo(3,4-c)oxazole","ZRCMGIXRGFOXNT-UHFFFAOYSA-N","CCC12COCN1COC2","C7H13NO2","143.18600000000001","64",NA,NA,NA +660,"51-21-8","DTXSID2020634","5-Fluorouracil","GHASVSINZRGABV-UHFFFAOYSA-N","FC1=CNC(=O)NC1=O","C4H3FN2O2","130.078","464",NA,NA,NA +661,"104-67-6","DTXSID4034287","5-Heptyldihydro-2(3H)-furanone","PHXATPHONSXBIL-UHFFFAOYSA-N","CCCCCCCC1CCC(=O)O1","C11H20O2","184.279","103",NA,NA,NA +662,"105624-86-0","DTXSID1046970","2-(2,6-Diisopropylphenyl)-5-hydroxy-1H-isoindole-1,3-dione","LAKWINYVWJPHQW-UHFFFAOYSA-N","CC(C)C1=CC=CC(C(C)C)=C1N1C(=O)C2=C(C=C(O)C=C2)C1=O","C20H21NO3","323.392","35",NA,NA,NA +665,"200940-23-4","DTXSID5047322","SB243213A","OOOGUILTDUSZPA-UHFFFAOYSA-N","Cl.CC1=CC2=C(C=C1C(F)(F)F)N(CC2)C(=O)NC1=CC=C(OC2=CC=CN=C2C)N=C1","C22H20ClF3N4O2","464.87","19",NA,NA,NA +667,"602-87-9","DTXSID3020960","5-Nitroacenaphthene","CUARLQDWYSRQDF-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C2CCC3=CC=CC1=C23","C12H9NO2","199.209","106",NA,"PAH","5-Nitroacenaphthene is a nitronaphthalene and is a yellow powder. It has a newly recognized role for the nitro function in environmental mutagenicity." +673,"668981-02-0","DTXSID0047294","CP-863187","UACOXBQBNWQWOK-UHFFFAOYSA-N","CC(C)C1=NN=C2C=CC(=CN12)C1=C(N=CO1)C1=CC(F)=CC=C1F","C18H14F2N4O","340.334","20",NA,NA,NA +674,"91227-09-7","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +675,"676116-04-4","DTXSID7047271","PD 0343701","SRGGJELKHPOIIN-UHFFFAOYSA-N","CS(O)(=O)=O.CC1=CC(CCN2CCN(CC2)C2=NSC3=CC=CC=C23)=CC2=C1NC(=O)CC2(C)C","C26H34N4O4S2","530.70000000000005","9",NA,NA,NA +683,"197077-55-7","DTXSID1047287","UK-333747","IEMAQDHGZOPMNI-UHFFFAOYSA-N","COCC1=NN=C(N1C1=C(Cl)C(Cl)=CC2=C1NC(=O)C(=O)N2)C1=C[N+]([O-])=CC=C1","C17H12Cl2N6O4","435.22","12",NA,NA,NA +688,"135080-03-4","DTXSID7047304","CP-100829","TVBUSVDXSSKDSK-UHFFFAOYSA-N","NC(=O)N1C(=O)C(C(=O)C2=CC(Cl)=CS2)C2=C1C=C(Cl)C(F)=C2","C14H7Cl2FN2O3S","373.18","10",NA,NA,NA +689,"3074-00-8","DTXSID60184759","6H-Benzo(cd)pyren-6-one","CLIKSBRDCNSYNO-UHFFFAOYSA-N","O=C1C2=CC=CC3=C2C2=C(C=C3)C=CC3=C2C1=CC=C3","C19H10O","254.28800000000001","38",NA,"OPAH","Potentially carcinogenic constituent of carbon black." +691,"37515-51-8","DTXSID6038324","6-Hydroxychrysene","VXFDOYXVHRYCGS-UHFFFAOYSA-N","OC1=CC2=C(C=CC3=C2C=CC=C3)C2=C1C=CC=C2","C18H12O","244.29300000000001","37",NA,NA,"Chrysen-6-ol is a hydroxychrysene that is chrysene in which the hydrogen at position 6 has been replaced by a hydroxy group. It is a metabolite of the polycyclic aromatic hydrocarbon chrysene. It has a role as a xenobiotic metabolite." +692,"28094-15-7","DTXSID0045838","Oxidopamine hydrochloride","QLMRJHFAGVFUAC-UHFFFAOYSA-N","Cl.NCCC1=CC(O)=C(O)C=C1O","C8H12ClNO3","205.64","87",NA,NA,NA +693,"56-04-2","DTXSID2020890","6-Methyl-2-thiouracil","HWGBHCRJGXAGEU-UHFFFAOYSA-N","CC1=CC(=O)NC(=S)N1","C5H6N2OS","142.18","271",NA,NA,NA +694,"1705-85-7","DTXSID3074814","6-Methylchrysene","ASVDRLYVNFOSCI-UHFFFAOYSA-N","CC1=CC2=C(C=CC3=CC=CC=C23)C2=CC=CC=C12","C19H14","242.321","79",NA,"PAH","6-Methylchrysene is a carbopolycyclic compound." +695,"91-62-3","DTXSID3020887","6-Methylquinoline","LUYISICIYVKBTA-UHFFFAOYSA-N","CC1=CC2=CC=CN=C2C=C1","C10H9N","143.18899999999999","149",NA,NA,NA +696,"63041-90-7","DTXSID4075083","Benzo[a]pyrene, 6-nitro-","NMMAFYSZGOFZCM-UHFFFAOYSA-N","[O-][N+](=O)C1=C2C=CC3=CC=CC4=CC=C(C5=CC=CC=C15)C2=C34","C20H11NO2","297.31299999999999","44",NA,"PAH","6-Nitrobenzo[a]pyrene is an ortho- and peri-fused polycyclic arene." +10016,"2043-93-7","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +699,"51-52-5","DTXSID5021209","6-Propyl-2-thiouracil","KNAHARQHSZJURB-UHFFFAOYSA-N","CCCC1=CC(=O)NC(=S)N1","C7H10N2OS","170.23","282",NA,NA,NA +700,"154-42-7","DTXSID6023652","6-Thioguanine","WYWHKKSPHMUBEB-UHFFFAOYSA-N","NC1=NC2=C(NC=N2)C(=S)N1","C5H5N5S","167.19","304",NA,NA,NA +702,"57-97-6","DTXSID1020510","7,12-Dimethylbenz(a)anthracene","ARSRBNBHOADGJU-UHFFFAOYSA-N","CC1=C2C=CC=CC2=C(C)C2=C3C=CC=CC3=CC=C12","C20H16","256.34800000000001","110",NA,"PAH","7,12-dimethyltetraphene is a tetraphene having methyl substituents at the 7- and 12-positions. It is a potent carcinogen and is present in tobacco smoke. It has a role as a carcinogenic agent. It is a member of tetraphenes and an ortho-fused polycyclic arene." +721,"20268-51-3","DTXSID0075077","Benz[a]anthracene, 7-nitro-","KOPVBVBUIYTJBG-UHFFFAOYSA-N","[O-][N+](=O)C1=C2C=CC3=CC=CC=C3C2=CC2=CC=CC=C12","C18H11NO2","273.291","42",NA,"PAH","7-Nitrobenz[a]anthracene is an organic polycyclic compound and member of phenanthrenes." +725,"27905-45-9","DTXSID5067348","8:2 Fluorotelomer acrylate","QUKRIOLKOHUUBM-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CCOC(=O)C=C","C13H7F17O2","518.16999999999996","80",NA,NA,NA +726,"678-39-7","DTXSID7029904","8:2 Fluorotelomer alcohol","JJUBFBTUBACDHW-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H5F17O","464.12200000000001","96",NA,NA,NA +148,"678-39-7","DTXSID7029904","8:2 Fluorotelomer alcohol","JJUBFBTUBACDHW-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H5F17O","464.12200000000001","96",NA,NA,NA +726,"678-39-7","DTXSID7029904","8:2 Fluorotelomer alcohol","JJUBFBTUBACDHW-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H5F17O","464.12200000000001","96",NA,NA,NA +148,"678-39-7","DTXSID7029904","8:2 Fluorotelomer alcohol","JJUBFBTUBACDHW-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H5F17O","464.12200000000001","96",NA,NA,NA +740,"148-24-3","DTXSID5020730","8-Hydroxyquinoline","MCJGNVYPOGVAJF-UHFFFAOYSA-N","OC1=CC=CC2=CC=CN=C12","C9H7NO","145.161","328",NA,NA,"Quinolin-8-ol is a monohydroxyquinoline that is quinoline substituted by a hydroxy group at position 8. Its fungicidal properties are used for the control of grey mould on vines and tomatoes. It has a role as an antibacterial agent, an iron chelator, an antiseptic drug and an antifungal agrochemical. It derives from a hydride of a quinoline." +741,"611-32-5","DTXSID8020888","8-Methylquinoline","JRLTTZUODKEYDH-UHFFFAOYSA-N","CC1=CC=CC2=CC=CN=C12","C10H9N","143.18899999999999","159",NA,NA,"Suspected of causing hazardous genetic defects and is listed as GHS H." +746,"84-65-1","DTXSID3020095","Anthraquinone","RZVHIXYEVGDQDX-UHFFFAOYSA-N","O=C1C2=C(C=CC=C2)C(=O)C2=C1C=CC=C2","C14H8O2","208.21600000000001","200","industrial","OPAH","Anthraquinone is a polycyclic aromatic hydrocarbon derived from anthracene or phthalic anhydride. Anthraquinone is used in the manufacture of dyes, in the textile and pulp industries, and as a bird repellant." +747,"84-11-7","DTXSID3058901","9,10-Phenanthrenedione","YYVYAPXYZVYDHN-UHFFFAOYSA-N","O=C1C(=O)C2=C(C=CC=C2)C2=C1C=CC=C2","C14H8O2","208.21600000000001","146","industrial;pesticide","OPAH","9,10-phenanthroquinone is a member of phenanthrenes." +768,"947-73-9","DTXSID60241573","9-Aminophenanthrene","KIHQWOBUUIPWAN-UHFFFAOYSA-N","NC1=CC2=CC=CC=C2C2=CC=CC=C12","C14H11N","193.249","84",NA,NA,"This compound belongs to the class of organic compounds known as phenanthrenes and derivatives. These are polycyclic compounds containing a phenanthrene moiety, which is a tricyclic aromatic compound with three non-linearly fused benzene." +769,"1210-12-4","DTXSID3049209","9-Cyanoanthracene","KEQZHLAEKAVZLY-UHFFFAOYSA-N","N#CC1=C2C=CC=CC2=CC2=C1C=CC=C2","C15H9N","203.244","86",NA,NA,"9-Anthracenecarbonitrile was used to study the mechanism of charge separation within phenothiazine (PTZH) or phenoxazine (PXZH), and 9-cyanoanthracene(electron acceptor), and has fluorescent properties." +770,"723-62-6","DTXSID7049427","9-Anthracenecarboxylic acid","XGWFJBFNAQHLEF-UHFFFAOYSA-N","OC(=O)C1=C2C=CC=CC2=CC2=CC=CC=C12","C15H10O2","222.24299999999999","174",NA,NA,"9-anthroic acid is an anthroic acid carrying the carboxy substituent." +771,"486-25-9","DTXSID6049307","9-Fluorenone","YLQWCDOCJODRMT-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C2=CC=CC=C12","C13H8O","180.20599999999999","159","industrial","OPAH","Fluoren-9-one is the simplest member of the class fluoren-9-ones that is 9H-fluorene bearing an oxo substituent at position 9. It has a role as a fungal xenobiotic metabolite." +774,"1689-64-1","DTXSID4052683","Fluoren-9-ol","AFMVESZOYKHDBJ-UHFFFAOYSA-N","OC1C2=C(C=CC=C2)C2=C1C=CC=C2","C13H10O","182.22200000000001","130",NA,NA,"Fluoren-9-ol is a member of the class of hydroxyfluorenes that is 9H-fluorene substituted by a hydroxy group at position 9 (the non-aromatic carbon). It has a role as an animal metabolite. It is a member of hydroxyfluorenes and a secondary alcohol." +775,"779-02-2","DTXSID3061134","9-Methylanthracene","CPGPAVAKSZHMBP-UHFFFAOYSA-N","CC1=C2C=CC=CC2=CC2=CC=CC=C12","C15H12","192.261","101",NA,"PAH","9-Methylanthracene used as a Intermediates for pharmaceutical and chemical research." +776,"602-60-8","DTXSID5025730","9-Nitroanthracene","LSIKFJXEYJIZNB-UHFFFAOYSA-N","[O-][N+](=O)C1=C2C=CC=CC2=CC2=CC=CC=C12","C14H9NO2","223.23099999999999","106",NA,"PAH","9-Nitroanthracene is a member of anthracenes and is a yellow solid." +777,"954-46-1","DTXSID30241823","9-Nitrophenanthrene","QTTCNQHPKFAYEZ-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=CC=CC=C2C2=CC=CC=C12","C14H9NO2","223.23099999999999","44",NA,"PAH","Environmental polycyclic aromatic hydrocarbon (PAH); found in toxic airborne particulate matter." +778,"484-17-3","DTXSID9047592","9-Phenanthrol","DZKIUEHLEXLYKM-UHFFFAOYSA-N","OC1=CC2=C(C=CC=C2)C2=CC=CC=C12","C14H10O","194.233","108",NA,NA,"9-phenanthrol is a phenanthrol that is phenanthrene in which a hydrogen attached to a carbon in the central ring has been replaced by a hydroxy group. It has a role as a TRPM4 channel inhibitor. It derives from a hydride of a phenanthrene." +944,"71751-41-2","DTXSID8023892","Abamectin","-","-","-","-","-",NA,NA,NA +10017,"1634-03-6","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +947,"83-32-9","DTXSID3021774","Acenaphthene","CWRYPZZKDGJXCA-UHFFFAOYSA-N","C1CC2=C3C1=CC=CC3=CC=C2","C12H10","154.21199999999999","157",NA,"PAH","Acenaphthene appears as white needles. Melting point 93.6°C. Soluble in hot alcohol. Denser than water and insoluble in water. Hence sinks in water. May irritate skin and mucous membranes. Emits acrid smoke and irritating fumes when heated to decomposition. Derived from coal tar and used to make dyes, pharmaceuticals, insecticides, fungicides, and plastics." +948,"82-86-0","DTXSID7049429","Acenaphthenequinone","AFPRJLBZLPBTPZ-UHFFFAOYSA-N","O=C1C(=O)C2=CC=CC3=C2C1=CC=C3","C12H6O2","182.178","130",NA,"OPAH","Acenaphthoquinone is an orthoquinone that is the 1,2-dioxo derivative of acenaphthene. It has a role as an epitope and a chain carrier. It derives from a hydride of an acenaphthene." +949,"208-96-8","DTXSID3023845","Acenaphthylene","HXGDTGSAIMULJN-UHFFFAOYSA-N","C1=CC2=C3C1=CC=CC3=CC=C2","C12H8","152.196","136",NA,"PAH","Acenaphthylene is a colorless crystalline solid. Insoluble in water. Used in dye synthesis, insecticides, fungicides, and in the manufacture of plastics." +950,"30560-19-1","DTXSID8023846","Acephate","YASYVMFAVPKPKE-UHFFFAOYSA-N","COP(=O)(NC(C)=O)SC","C4H10NO3PS","183.16","119","pesticide","Unclassified","Acephate is a phosphoramide that is methamidophos in which one of the hydrogens is replaced by an acetyl group. It has a role as an acaricide, an EC 3.1.1.7 (acetylcholinesterase) inhibitor and an agrochemical. It is a mixed diacylamine, a phosphoramide, an organic thiophosphate and an organothiophosphate insecticide. It derives from a member of methamidophos." +951,"60-35-5","DTXSID7020005","Acetamide","DLFVBJFMPXGRIB-UHFFFAOYSA-N","CC(N)=O","C2H5NO","59.067999999999998","289",NA,NA,"Acetamide is a member of the class of acetamides that results from the formal condensation of acetic acid with ammonia. It is a monocarboxylic acid amide, a N-acylammonia and a member of acetamides. It is a tautomer of an acetimidic acid." +952,"103-90-2","DTXSID2020006","Acetaminophen","RZVAJINKPMORJF-UHFFFAOYSA-N","CC(=O)NC1=CC=C(O)C=C1","C8H9NO2","151.16499999999999","396",NA,NA,"Acetaminophen is a widely used nonprescription analgesic and antipyretic medication for mild-to-moderate pain and fever. Harmless at low doses, acetaminophen has direct hepatotoxic potential when taken as an overdose and can cause acute liver injury and death from acute liver failure. Even in therapeutic doses, acetaminophen can cause transient serum aminotransferase elevations." +953,"135410-20-7","DTXSID0034300","Acetamiprid","WCXDHFDTOYPNIE-RIYZIHGNSA-N","CN(CC1=CN=C(Cl)C=C1)C(\C)=N\C#N","C10H11ClN4","222.68","123","pesticide","Unclassified","Acetamiprid is a carboxamidine that is acetamidine in which the amino hydrogens are substituted by a (6-chloropyridin-3-yl)methyl and a methyl group while the hydrogen attached to the imino nitrogen is replaced by a cyano group. It has a role as a neonicotinoid insectide, an environmental contaminant and a xenobiotic. It is a monochloropyridine, a nitrile and a carboxamidine. It derives from a 2-chloropyridine." +954,"64-19-7","DTXSID5024394","Acetic acid","QTBSBXVTEAMEQO-UHFFFAOYSA-N","CC(O)=O","C2H4O2","60.052","7047",NA,NA,NA +955,"638-38-0","DTXSID5027279","Manganese(II) acetate","UOGMEBQRZBEZQT-UHFFFAOYSA-L","[Mn++].CC([O-])=O.CC([O-])=O","C4H6MnO4","173.02600000000001","54",NA,NA,NA +956,"34256-82-1","DTXSID8023848","Acetochlor","VTNQPKFIQCLBDU-UHFFFAOYSA-N","CCOCN(C(=O)CCl)C1=C(CC)C=CC=C1C","C14H20ClNO2","269.77","120","pesticide;pesticide","Unclassified","Acetochlor is a monocarboxylic acid amide that is N-phenylacetamide carrying an ethyl and a methyl group at positions 2 and 6 respectively on the benzene ring while one of the methyl hydrogens as well as the hydrogen attached to the nitrogen atom have been replaced by a chloro and an ethoxymethyl group respectively. It has a role as a herbicide, a xenobiotic and an environmental contaminant. It is a monocarboxylic acid amide, an organochlorine compound and an aromatic amide. It derives from a N-phenylacetamide." +959,"98-86-2","DTXSID6021828","Acetophenone","KWOLFJPFCHCOCG-UHFFFAOYSA-N","CC(=O)C1=CC=CC=C1","C8H8O","120.151","207",NA,NA,NA +960,"77-90-7","DTXSID2026446","Acetyl tributyl citrate","QZCLKYGREBVARF-UHFFFAOYSA-N","CCCCOC(=O)CC(CC(=O)OCCCC)(OC(C)=O)C(=O)OCCCC","C20H34O8","402.48399999999998","100",NA,NA,NA +961,"50-78-2","DTXSID5020108","Aspirin","BSYNRYMUTXBXSQ-UHFFFAOYSA-N","CC(=O)OC1=C(C=CC=C1)C(O)=O","C9H8O4","180.15899999999999","335",NA,NA,"Aspirin is an orally administered non-steroidal antiinflammatory agent. Acetylsalicylic acid binds to and acetylates serine residues in cyclooxygenases, resulting in decreased synthesis of prostaglandin, platelet aggregation, and inflammation. This agent exhibits analgesic, antipyretic, and anticoagulant properties." +962,"77-89-4","DTXSID5044576","Acetyltriethyl citrate","WEAPVABOECTMGR-UHFFFAOYSA-N","CCOC(=O)CC(CC(=O)OCC)(OC(C)=O)C(=O)OCC","C14H22O8","318.322","84",NA,NA,NA +963,"135158-54-2","DTXSID1032519","Acibenzolar-S-methyl","UELITFHSCLAHKR-UHFFFAOYSA-N","CSC(=O)C1=CC=CC2=C1SN=N2","C8H6N2OS2","210.27","70","pesticide","Unclassified","Acibenzolar-S-methyl is a benzothiadiazole that is the S-methyl thioester derivative of acibenzolar. A profungicide (by hydrolysis of the thioester group to give the corresponding carboxylic acid), it is used as a fungicide and plant activator on a variety of crops, including cotton, chili peppers, lettuce, onions, spinach, tobacco, and tomatoes. It has a role as a plant activator, an antifungal agrochemical and a profungicide. It is a benzothiadiazole and a thioester. It derives from an acibenzolar." +964,"50594-66-6","DTXSID0020022","5-(2-Chloro-4-(trifluoromethyl)phenoxy)-2-nitrobenzoic acid","NUFNQYOELLVIPL-UHFFFAOYSA-N","OC(=O)C1=C(C=CC(OC2=CC=C(C=C2Cl)C(F)(F)F)=C1)[N+]([O-])=O","C14H7ClF3NO5","361.66","98",NA,NA,NA +965,"260-94-6","DTXSID8059766","Acridine","DZBUGLKDJFMEHC-UHFFFAOYSA-N","C1=CC2=CC3=CC=CC=C3N=C2C=C1","C13H9N","179.22200000000001","134",NA,NA,"Acridine is a polycyclic heteroarene that is anthracene in which one of the central CH groups is replaced by a nitrogen atom. It has a role as a genotoxin. It is a mancude organic heterotricyclic parent, a polycyclic heteroarene and a member of acridines." +966,"79-06-1","DTXSID5020027","Acrylamide","HRPVXLWXLXDGHG-UHFFFAOYSA-N","NC(=O)C=C","C3H5NO","71.078999999999994","257",NA,NA,"Acrylamide is a colorless, odorless, crystalline amide that polymerizes rapidly and can form as a byproduct during the heating of starch-rich foods to high temperatures. Acrylamide is used in the production of polymers mainly in the water treatment industry, pulp and paper industry and textile treatment industry and is used as a laboratory reagent. The polymer is nontoxic, but exposure to the monomer can cause central and peripheral nervous system damage resulting in hallucinations, drowsiness and numbness in the hands and legs. Acrylamide is reasonably anticipated to be a human carcinogen." +969,"66456-53-9","DTXSID6047527","Adipic acid, polypropyleneglycol, laurate","-","-","-","-","-",NA,NA,NA +997,"15972-60-8","DTXSID1022265","Alachlor","XCSGPAVHZFQHGE-UHFFFAOYSA-N","CCC1=CC=CC(CC)=C1N(COC)C(=O)CCl","C14H20ClNO2","269.77","122","pesticide","Unclassified","Alachlor is an aromatic amide that is N-(2,6-diethylphenyl)acetamide substituted by a methoxymethyl group at at the nitrogen atom while one of the hydrogens of the methyl group has been replaced by a chlorine atom. It has a role as a herbicide, an environmental contaminant and a xenobiotic. It is an organochlorine compound, a monocarboxylic acid amide and an aromatic amide. It derives from a N-phenylacetamide." +998,"116-06-3","DTXSID0039223","Aldicarb","QGLZXHRNAYXIBU-UHFFFAOYSA-N","CNC(=O)ON=CC(C)(C)SC","C7H14N2O2S","190.26","53",NA,NA,"Aldicarb is a carbamate insecticide which is the active substance in the pesticide Temik. It is effective against thrips, aphids, spider mites, lygus, fleahoppers, and leafminers, but is primarily used as a nematicide. Aldicarb is a cholinesterase inhibitor which prevents the breakdown of acetylcholine in the synapse. In case of severe poisoning, the victim dies of respiratory failure. Aldicarb is one of the most widely used pesticides internationally, and is also one of the most environmentally toxic. Aldicarb poisoning from agricultural water runoff has led to the destruction of healthy ecosystems and the irreversible poisoning of fertile agricultural land." +999,"1646-75-9","DTXSID9024431","Aldicarb oxime","ZFGMCJAXIZTVJA-XQRVVYSFSA-N","CSC(C)(C)C=NO","C5H11NOS","133.21","9",NA,NA,NA +1000,"309-00-2","DTXSID8020040","Aldrin","QBYJBZPUGVGKQQ-SJJAEHHWSA-N","ClC1=C(Cl)[C@]2(Cl)[C@@H]3[C@@H]4C[C@@H](C=C4)[C@@H]3[C@@]1(Cl)C2(Cl)Cl","C12H8Cl6","364.9","48","pesticide","Unclassified","Aldrin is an organochlorine compound resulting from the Diels-Alder reaction of hexachlorocyclopentadiene with norbornadiene. A proinsecticide (by epoxidation of the non-chlorinated double bond to give dieldrin), it was widely used as an insecticide before being banned in the 1970s as a persistent organic pollutant. It has a role as a persistent organic pollutant and a proinsecticide. It is an organochlorine insecticide and an organochlorine compound." +1002,"584-79-2","DTXSID8035180","Allethrin","ZCVAOQKBXKSDMS-UHFFFAOYSA-N","CC(C)=CC1C(C(=O)OC2CC(=O)C(CC=C)=C2C)C1(C)C","C19H26O3","302.41399999999999","107","pesticide","Unclassified","Allethrin appears as a clear amber-colored viscous liquid. Insoluble and denser than water. Toxic by ingestion, inhalation, and skin absorption. A synthetic household insecticide that kills flies, mosquitoes, garden insects, etc." +1006,"25956-17-6","DTXSID4024436","Allura Red C.I.16035","CEZCCHQBSQPRMU-LLIZZRELSA-L","[Na+].[Na+].COC1=C(C=C(C)C(=C1)S([O-])(=O)=O)\N=N\C1=C2C=CC(=CC2=CC=C1O)S([O-])(=O)=O","C18H14N2Na2O8S2","496.42","75",NA,NA,NA +1007,"10016-20-3","DTXSID7030698","alpha-Cyclodextrin","HFHDHCJBZVLPGP-RWMJIURBSA-N","OC[C@H]1O[C@@H]2O[C@@H]3[C@@H](CO)O[C@H](O[C@@H]4[C@@H](CO)O[C@H](O[C@@H]5[C@@H](CO)O[C@H](O[C@@H]6[C@@H](CO)O[C@H](O[C@@H]7[C@@H](CO)O[C@H](O[C@H]1[C@H](O)[C@H]2O)[C@H](O)[C@H]7O)[C@H](O)[C@H]6O)[C@H](O)[C@H]5O)[C@H](O)[C@H]4O)[C@H](O)[C@H]3O","C36H60O30","972.846","107",NA,NA,NA +1010,"834-12-8","DTXSID1023869","Ametryn","RQVYBGPQFYCBGX-UHFFFAOYSA-N","CCNC1=NC(SC)=NC(NC(C)C)=N1","C9H17N5S","227.33","119","pesticide","Unclassified","Ametryn is a methylthio-1,3,5-triazine that is 2-(methylsulfanyl)-1,3,5-triazine substituted by an ethylamino and an isopropylamino group at positions 4 and 6 respectively. It has a role as a herbicide and an environmental contaminant. It is a diamino-1,3,5-triazine and a methylthio-1,3,5-triazine." +1013,"19774-82-4","DTXSID7037185","Amiodarone hydrochloride","ITPDYQOUSLNIHG-UHFFFAOYSA-N","Cl.CCCCC1=C(C(=O)C2=CC(I)=C(OCCN(CC)CC)C(I)=C2)C2=C(O1)C=CC=C2","C25H30ClI2NO3","681.78","134",NA,NA,NA +1014,"33089-61-1","DTXSID5023871","Amitraz","QXAITBQSYVNQDR-ZIOPAAQOSA-N","CN(\C=N\C1=C(C)C=C(C)C=C1)\C=N\C1=C(C)C=C(C)C=C1","C19H23N3","293.41399999999999","155","pesticide","Unclassified","Amitraz is a tertiary amino compound that is 1,3,5-triazapenta-1,4-diene substituted by a methyl group at position 3 and 2,4-dimethylphenyl groups at positions 1 and 5. It has a role as an acaricide, a xenobiotic, an environmental contaminant and an insecticide. It is a tertiary amino compound and a member of formamidines." +1015,"1111-78-0","DTXSID9027360","Ammonium carbamate","BVCZEBOGSOYJJT-UHFFFAOYSA-N","[NH4+].NC([O-])=O","CH6N2O2","78.070999999999998","58",NA,NA,NA +1016,"3825-26-1","DTXSID8037708","Ammonium perfluorooctanoate","YOALFLHFSFEMLP-UHFFFAOYSA-N","[NH4+].[O-]C(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H4F15NO2","431.101","36",NA,NA,NA +1016,"3825-26-1","DTXSID8037708","Ammonium perfluorooctanoate","YOALFLHFSFEMLP-UHFFFAOYSA-N","[NH4+].[O-]C(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H4F15NO2","431.101","36",NA,NA,NA +1017,"26787-78-0","DTXSID3037044","Amoxicillin","LSQZJLSUYDQPKJ-NJBDSQKTSA-N","[H][C@]12SC(C)(C)[C@@H](N1C(=O)[C@H]2NC(=O)[C@H](N)C1=CC=C(O)C=C1)C(O)=O","C16H19N3O5S","365.4","138",NA,NA,NA +1028,"101-05-3","DTXSID9020089","Anilazine","IMHBYKMAHXWHRP-UHFFFAOYSA-N","ClC1=CC=CC=C1NC1=NC(Cl)=NC(Cl)=N1","C9H5Cl3N4","275.52","82","pesticide","Unclassified","Anilazine is a member of the class of triazenes that is dichlorotriazene in which the hydrogen is replaced by an o-chloroanilino group. A fungicide formerly used to control leaf spots and downy mildew, it is no longer approved for use within the European Union. It has a role as an antifungal agrochemical. It is a member of triazines, an organochlorine pesticide, a secondary amino compound and a member of monochlorobenzenes." +1030,"191-26-4","DTXSID9075452","Anthanthrene","YFIJJNAKSZUOLT-UHFFFAOYSA-N","C1=CC2=CC3=CC=C4C=CC=C5C=C6C=CC(=C1)C2=C6C3=C45","C22H12","276.33800000000002","48",NA,"PAH","Anthanthrene is an ortho- and peri-fused polycyclic arene." +1031,"120-12-7","DTXSID0023878","Anthracene","MWPLVEDNUUSJAV-UHFFFAOYSA-N","C1=CC2=CC3=C(C=CC=C3)C=C2C=C1","C14H10","178.23400000000001","207",NA,"PAH","Anthracene is a polycyclic aromatic hydrocarbon (PAH) and is an aromatic hydrocarbon in coal tar. It is on the EPA's priority pollutant list and is ubiquitous in the environment as a product of incomplete combustion of fossil fuels. It has been identified in surface and drinking water, ambient air, exhaust emissions, smoke of cigarettes and cigars, and in smoked foods and edible aquatic organisms. It is primarily used as an intermediate in the production of dyes, smoke screens, scintillation counter crystals, and in organic semiconductor research. Anthracene is a white to yellow solid with a weak aromatic odor and sinks in water." +1032,"1143-38-0","DTXSID7024538","Anthralin","NUZWLKWWNNJHPT-UHFFFAOYSA-N","OC1=C2C(CC3=CC=CC(O)=C3C2=O)=CC=C1","C14H10O3","226.23099999999999","174",NA,NA,NA +1034,"461023-63-2","DTXSID1047316","Aplaviroc hydrochloride","QNNBMSGFNQRUEH-PQQSRXGVSA-N","Cl.CCCCN1C(=O)[C@H](NC(=O)C11CCN(CC2=CC=C(OC3=CC=C(C=C3)C(O)=O)C=C2)CC1)[C@H](O)C1CCCCC1","C33H44ClN3O6","614.17999999999995","22",NA,NA,NA +1075,"3337-71-1","DTXSID8023890","Asulam","VGPYEHKOIGNJKV-UHFFFAOYSA-N","COC(=O)NS(=O)(=O)C1=CC=C(N)C=C1","C8H10N2O4S","230.24","82",NA,NA,NA +1105,"1912-24-9","DTXSID9020112","Atrazine","MXWJVTOOROXGIU-UHFFFAOYSA-N","CCNC1=NC(NC(C)C)=NC(Cl)=N1","C8H14ClN5","215.69","191","pharmacological;pesticide","Unclassified","Atrazine is an herbicide that does not occur naturally. Pure atrazine is an odorless, white powder that is not very volatile, reactive, or flammable and that will dissolve in water. Atrazine is used to kill weeds, primarily on farms, but has also been used on highway and railroad rights-of-way. The EPA now restricts how atrazine can be used and applied; only trained people are allowed to spray it." +1114,"2465-27-2","DTXSID9020114","Auramine hydrochloride","KSCQDDRPFHTIRL-UHFFFAOYSA-N","Cl.CN(C)C1=CC=C(C=C1)C(=N)C1=CC=C(C=C1)N(C)C","C17H22ClN3","303.83","86",NA,NA,"Auramine O is a hydrochloride obtained by combining 4,4'-carbonimidoylbis(N,N-dimethylaniline) with one molar equivalent of hydrogen chloride. A fluorescent stain for demonstrating acid fast organisms in a method similar to the Ziehl Neelsen. It also can be used to make a fluorescent Schiff reagent. It has a role as a fluorochrome and a histological dye. It contains an auramine O(1+)." +1117,"35575-96-3","DTXSID9034818","Azamethiphos","VNKBTWQZTQIWDV-UHFFFAOYSA-N","COP(=O)(OC)SCN1C(=O)OC2=CC(Cl)=CN=C12","C9H10ClN2O5PS","324.67","85","pesticide","Unclassified","Azamethiphos is a synthetic organic thiophosphate compound and organophosphate acetylcholinesterase inhibitor, mutagen, and neurotoxicant that is used as a pesticide. It is characterized as a highly soluble colorless to grey or orange yellow solid, and exposure occurs by inhalation, ingestion, or contact." +1118,"446-86-6","DTXSID4020119","Azathioprine","LMEKQMALGUDUQG-UHFFFAOYSA-N","CN1C=NC(=C1SC1=NC=NC2=C1NC=N2)[N+]([O-])=O","C9H7N7O2S","277.26","325",NA,NA,NA +1119,"86-50-0","DTXSID3020122","Azinphos-methyl","CJJOSEISRRTUQB-UHFFFAOYSA-N","COP(=S)(OC)SCN1N=NC2=C(C=CC=C2)C1=O","C10H12N3O3PS2","317.32","106","pharmacological;pesticide","Unclassified","Azinphos-methyl is a member of the class of benzotriazines that is 1,2,3-benzotriazine substituted by an oxo group at position 4 and a [(dimethoxyphosphorothioyl)sulfanyl]methyl group at position 3. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an EC 3.1.1.8 (cholinesterase) inhibitor and an agrochemical. It is an organic thiophosphate, an organothiophosphate insecticide and a member of benzotriazines. It derives from a hydride of a 1,2,3-benzotriazine." +1120,"103-33-3","DTXSID8020123","Azobenzene","DMLAVOWQYNRWNQ-UHFFFAOYSA-N","C1=CC=C(C=C1)N=NC1=CC=CC=C1","C12H10N2","182.226","200","industrial;pesticide;pesticide","Unclassified","Azobenzene is a molecule whose structure comprises two phenyl rings linked by a N=N double bond; the parent compound of the azobenzene class of compounds." +1121,"131860-33-8","DTXSID0032520","Azoxystrobin","WFDXOXNFNRHQEC-GHRIWEEISA-N","CO\C=C(\C(=O)OC)C1=CC=CC=C1OC1=CC(OC2=CC=CC=C2C#N)=NC=N1","C22H17N3O5","403.39400000000001","105","pesticide","Unclassified","Azoxystrobin is an aryloxypyrimidine having a 4,6-diphenoxypyrimidine skeleton in which one of the phenyl rings is cyano-substituted at C-2 and the other carries a 2-methoxy-1-(methoxycarbonyl)vinyl substituent, also at C-2. An inhibitor of mitochondrial respiration by blocking electron transfer between cytochromes b and c1, it is used widely as a fungicide in agriculture. It has a role as a mitochondrial cytochrome-bc1 complex inhibitor, a xenobiotic, an environmental contaminant, an antifungal agrochemical and a quinone outside inhibitor. It is a nitrile, an aryloxypyrimidine, an enoate ester, an enol ether, a methyl ester and a methoxyacrylate strobilurin antifungal agent." +1154,"22781-23-3","DTXSID9032327","Bendiocarb","XEGGRYVFLWGFHI-UHFFFAOYSA-N","CNC(=O)OC1=CC=CC2=C1OC(C)(C)O2","C11H13NO4","223.22800000000001","110","pesticide","Unclassified","Bendiocarb is a carbamate ester and a member of benzodioxoles. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, a carbamate insecticide and an agrochemical. It derives from a methylcarbamic acid." +1155,"1861-40-1","DTXSID3023899","Benfluralin","SMDHCQAYESWHAE-UHFFFAOYSA-N","CCCCN(CC)C1=C(C=C(C=C1[N+]([O-])=O)C(F)(F)F)[N+]([O-])=O","C13H16F3N3O4","335.28300000000002","108","pesticide","Unclassified","Benfluralin is a tertiany amino compound that is 2,6-dinitro-4-(trifluoromethyl)aniline in which the hydrogens attached to the aniline nitrogen have been replaced by one ethyl and one butyl group. It is used as a pre-emergence herbicide used for the control of grass and other weeds in a range of food and non-food crops. It has a role as a herbicide and an agrochemical. It is a tertiary amino compound, a C-nitro compound, an organofluorine compound and a substituted aniline." +1157,"15310-01-7","DTXSID7041623","Benodanil","LJOZMWRYMKECFF-UHFFFAOYSA-N","IC1=C(C=CC=C1)C(=O)NC1=CC=CC=C1","C13H10INO","323.13299999999998","68","pesticide","Unclassified","Benodanil is a member of the class of benzamides, obtained by formal condensation of the carboxy group of 2-iodobenzoic acid with the amino group of aniline. An obsolete fungicide once used mainly to control rust diseases. It has a role as an EC 1.3.5.1 [succinate dehydrogenase (quinone)] inhibitor and an antifungal agrochemical. It is a member of benzamides, an anilide, an organoiodine compound and a benzanilide fungicide." +1158,"17804-35-2","DTXSID5023900","Benomyl","RIOXQFHNBCKOKP-UHFFFAOYSA-N","CCCCNC(=O)N1C(NC(=O)OC)=NC2=C1C=CC=C2","C14H18N4O3","290.32299999999998","112",NA,NA,NA +1159,"741-58-2","DTXSID9032329","Bensulide","RRNIZKPFKNDSRS-UHFFFAOYSA-N","CC(C)OP(=S)(OC(C)C)SCCNS(=O)(=O)C1=CC=CC=C1","C14H24NO4PS3","397.5","53",NA,NA,NA +1160,"25057-89-0","DTXSID0023901","Bentazone","ZOMSMJKLGFBRBS-UHFFFAOYSA-N","CC(C)N1C(=O)C2=C(NS1(=O)=O)C=CC=C2","C10H12N2O3S","240.28","121","pesticide","Unclassified","3-(Propan-2-yl)-2lambda~6~,1,3-benzothiadiazine-2,2,4(1H,3H)-trione, also known as Bentazone, . It has a role as an environmental contaminant, a xenobiotic and a herbicide." +1163,"2498-66-0","DTXSID8051916","7,12-Benz(a)anthraquinone","LHMRXAIRPKSGDE-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C(=O)C2=C1C=CC1=C2C=CC=C1","C18H10O2","258.27600000000001","82",NA,"OPAH","Benz[a]anthracene-7,12-dione is a polycyclic aromatic hydrocarbon that is present in the emission soot of biomass fuels combustion. Benz[a]anthracene-7,12-dione is an urban air contaminant and also a potential mutagen & carcinogen." +1165,"98-87-3","DTXSID6025014","Benzal chloride","CAHQGWAXKLQREW-UHFFFAOYSA-N","ClC(Cl)C1=CC=CC=C1","C7H6Cl2","161.03","84",NA,NA,NA +1166,"82-05-3","DTXSID8052566","Benz[de]anthracen-7-one","HUKPVYBUJRAUAG-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C2=C3C(C=CC=C13)=CC=C2","C17H10O","230.26599999999999","112","industrial","OPAH","7-benzo[a]phenalenone is a member of phenanthrenes." +71,"82-05-3","DTXSID8052566","Benz[de]anthracen-7-one","HUKPVYBUJRAUAG-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C2=C3C(C=CC=C13)=CC=C2","C17H10O","230.26599999999999","112","industrial","OPAH","7-benzo[a]phenalenone is a member of phenanthrenes." +1167,"92-87-5","DTXSID2020137","Benzidine","HFACYLZERDEVSX-UHFFFAOYSA-N","NC1=CC=C(C=C1)C1=CC=C(N)C=C1","C12H12N2","184.24199999999999","139","industrial","Unclassified","Benzidine is a manufactured chemical that does not occur naturally. It is a crystalline solid that may be grayish-yellow, white, or reddish-gray. In the environment, benzidine is found in either its ""free"" state (as an organic base), or as a salt. Benzidine was used to produce dyes for cloth, paper, and leather. It is no longer produced or used commerically in the U.S." +1171,"56-55-3","DTXSID5023902","Benz(a)anthracene","DXBHBZVCASKNBY-UHFFFAOYSA-N","C1=CC2=C(C=C1)C=C1C(C=CC3=C1C=CC=C3)=C2","C18H12","228.29400000000001","128",NA,"PAH","Benz[a]anthracene is a crystalline, aromatic hydrocarbon consisting of four fused benzene rings, produced by incomplete combustion of organic matter. Benz(a)anthracene is primarily found in gasoline and diesel exhaust, tobacco and cigarette smoke, coal tar and coal tar pitch, coal combustion emissions, charcoal-broiled foods, amino acids, fatty acids and carbohydrate pyrolysis products, wood and soot smoke, and creosote, asphalt and mineral oils. This substance is used only for research purposes. Benz(a)anthracene is reasonably anticipated to be a human carcinogen." +1161,"56-55-3","DTXSID5023902","Benz(a)anthracene","DXBHBZVCASKNBY-UHFFFAOYSA-N","C1=CC2=C(C=C1)C=C1C(C=CC3=C1C=CC=C3)=C2","C18H12","228.29400000000001","128",NA,"PAH","Benz[a]anthracene is a crystalline, aromatic hydrocarbon consisting of four fused benzene rings, produced by incomplete combustion of organic matter. Benz(a)anthracene is primarily found in gasoline and diesel exhaust, tobacco and cigarette smoke, coal tar and coal tar pitch, coal combustion emissions, charcoal-broiled foods, amino acids, fatty acids and carbohydrate pyrolysis products, wood and soot smoke, and creosote, asphalt and mineral oils. This substance is used only for research purposes. Benz(a)anthracene is reasonably anticipated to be a human carcinogen." +1172,"238-84-6","DTXSID3075204","11H-Benzo[a]fluorene","HKMTVMBEALTRRR-UHFFFAOYSA-N","C1C2=CC=CC=C2C2=CC=C3C=CC=CC3=C12","C17H12","216.28299999999999","71",NA,"PAH","Benzo[a]fluorene is a member of fluorenes." +1173,"479-79-8","DTXSID00963964","11H-Benzo[a]fluoren-11-one","RNICURKFVSAHLQ-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C2=C1C1=CC=CC=C1C=C2","C17H10O","230.26599999999999","-",NA,"OPAH","11H-Benzo[a]fluoren-11-one is a chemical substance known to have very high ecotoxicity and human health effects." +1174,"50-32-8","DTXSID2020139","Benzo(a)pyrene","FMMWHPNWAFZXNH-UHFFFAOYSA-N","C1=CC2=CC3=CC=C4C=CC=C5C=CC(=C2C=C1)C3=C45","C20H12","252.316","205",NA,"PAH","3,4-Benzpyrene is a crystalline, aromatic hydrocarbon consisting of five fused benzene rings and formed during the incomplete combustion of organic matter. 3,4-Benzpyrene is primarily found in gasoline and diesel exhaust, cigarette smoke, coal tar and coal tar pitch, charcoal-broiled foods and certain other foods, amino acids, fatty acids and carbohydrate pyrolysis products, soot smoke, creosote oil, petroleum asphalt and shale oils. This substance is used only for research purposes. 3,4-Benzpyrene is reasonably anticipated to be a human carcinogen." +1175,"205-99-2","DTXSID0023907","Benzo(b)fluoranthene","FTOVXSOBNPWTSH-UHFFFAOYSA-N","C1=CC=C2C(=C1)C1=CC=CC3=C4C=CC=CC4=CC2=C13","C20H12","252.316","113",NA,"PAH","Benzo[e]fluoranthene, also known as Benzo[b]fluoranthene, is a polycyclic aromatic hydrocarbon (PAH) consisting of five fused rings and formed by the incomplete burning of organic matter. Benzo(b)fluoranthene is primarily found in gasoline exhaust, tobacco and cigarette smoke, coal tar, soot, amino acids and fatty acid pyrolysis products. It has a role as a mutagen and is reasonably anticipated to be a human carcinogen." +1176,"243-17-4","DTXSID1022477","2,3-Benzofluorene","HAPOJKSPCGLOOD-UHFFFAOYSA-N","C1C2=CC=CC=C2C2=C1C=C1C=CC=CC1=C2","C17H12","216.28299999999999","81",NA,"PAH","Benzo[b]fluorene is a member of fluorenes." +1177,"109699-80-1","DTXSID90571370","Benzo[c]phenanthrene-1,4-dione","OJPQILIJRKPTNG-UHFFFAOYSA-N","O=C1C=CC(=O)C2=C1C=CC1=C2C2=CC=CC=C2C=C1","C18H10O2","258.27600000000001","10",NA,"OPAH","Endocrine disruptor" +1178,"192-97-2","DTXSID3023764","Benzo(e)pyrene","TXVHTIQJNYSSKO-UHFFFAOYSA-N","C1=CC2=C3C=CC=C4C=CC5=CC=CC(=C2C=C1)C5=C34","C20H12","252.316","87",NA,"PAH","Benzo[e]pyrene is an ortho- and peri-fused polycyclic arene consisting of five fused benzene rings. It is listed as a Group 3 carcinogen by the IARC. It has a role as a mutagen and a carcinogenic agent." +1179,"191-24-2","DTXSID5023908","Benzo(g,h,i)perylene","GYFAGKUZYNFMBN-UHFFFAOYSA-N","C1=CC2=C3C(=C1)C1=C4C(C=CC5=C4C3=C(C=C2)C=C5)=CC=C1","C22H12","276.33800000000002","120",NA,"PAH","Benzo[ghi]perylene is a colorless to white crystalline solid. Water insoluble." +1180,"205-82-3","DTXSID8052691","Benzo(j)fluoranthene","KHNYNFUTFKJLDD-UHFFFAOYSA-N","C1=CC2=C(C=C1)C1=C(C=C2)C2=CC=CC3=CC=CC1=C23","C20H12","252.316","57",NA,"PAH","Benzo[j]fluoranthene is an organic compound with the chemical formula C20H12. Classified as a polycyclic aromatic hydrocarbon (PAH), it is a colourless solid that is poorly soluble in most solvents." +1182,"207-08-9","DTXSID0023909","Benzo(k)fluoranthene","HAXBIWFMXWRORI-UHFFFAOYSA-N","C1=CC2=CC3=C(C=C2C=C1)C1=C2C3=CC=CC2=CC=C1","C20H12","252.316","94",NA,"PAH","Benzo[k]fluoranthene is a member of naphthalenes and is a pale yellow aromatic hydrocarbon consisting of five fused rings produced by the incomplete combustion of organic matter. Benzo(k)fluoranthene is primarily found in gasoline exhaust, cigarette smoke, coal tar, coal and oil combustion emissions, lubricating oils, used motor oils and crude oils. This substance is used only for research purposes. Benzo(k)fluoranthene is reasonably anticipated to be a human carcinogen." +1183,"271-89-6","DTXSID6020141","2,3-Benzofuran","IANQTJSKSUMEQM-UHFFFAOYSA-N","O1C=CC2=C1C=CC=C2","C8H6O","118.13500000000001","275",NA,NA,"2,3-Benzofuran is a colorless, sweet-smelling, oily liquid made by processing coal into coal oil. It may also be formed during other uses of coal or oil. 2,3-Benzofuran is not used for any commercial purposes, but the part of the coal oil that contains 2,3-benzofuran is made into a plastic called coumarone-indene resin. This resin resists corrosion and is used to make paints and varnishes. The resin also provides water resistance and is used in coatings on paper products and fabrics. It is used as an adhesive in food containers and some asphalt floor tiles. The resin has been approved for use in food packages and as a coating on citrus fruits. We do not know how often the resin is used or whether any 2,3-benzofuran in the coating or packaging gets into the food." +1184,"65-85-0","DTXSID6020143","Benzoic acid","WPYMKLBDIGXBTP-UHFFFAOYSA-N","OC(=O)C1=CC=CC=C1","C7H6O2","122.123","594",NA,NA,NA +1185,"119-61-9","DTXSID0021961","Benzophenone","RWCCWEUUXYIKHB-UHFFFAOYSA-N","O=C(C1=CC=CC=C1)C1=CC=CC=C1","C13H10O","182.22200000000001","209","personalCare;industrial","Unclassified","Diphenylmethanone, also known as Benzophenone, is a widely used building block in organic chemistry being the parent diarylketone and has many applications. Benzophenone has a role as a photosensitizing agent, plant metabolite, and can be used as a photo initiator in UV-curing applications such as inks, imaging, and clear coatings in the printing industry. Benzophenone appears as white solid with a flowery odor." +1186,"98-07-7","DTXSID1020148","Benzotrichloride","XEMRAKSQROQPBR-UHFFFAOYSA-N","ClC(Cl)(Cl)C1=CC=CC=C1","C7H5Cl3","195.47","124",NA,NA,NA +1187,"100-51-6","DTXSID5020152","Benzyl alcohol","WVDDGKGOMKODPV-UHFFFAOYSA-N","OCC1=CC=CC=C1","C7H8O","108.14","395","pharmacological;personalCare;industrial;natural;consumerProduct","Unclassified","Benzyl alcohol is an aromatic alcohol that consists of benzene bearing a single hydroxymethyl substituent. It has a role as a solvent, a metabolite, an antioxidant and a fragrance." +1188,"58394-64-2","DTXSID1047528","Benzyloctyl adipate","OOUQSWGHJPCRLI-UHFFFAOYSA-N","CCCCC(CC)COC(=O)CCCCC(=O)OCC1=CC=CC=C1","C21H32O4","348.483","24",NA,NA,NA +1189,"633-65-8","DTXSID8024602","Berberine chloride","VKJGBAJNNALVAV-UHFFFAOYSA-M","[Cl-].COC1=CC=C2C=C3C4=CC5=C(OCO5)C=C4CC[N+]3=CC2=C1OC","C20H18ClNO4","371.82","159",NA,NA,NA +1190,"253450-09-8","DTXSID2047270","Besonprodil","FCBQJNCAKZSIAH-UHFFFAOYSA-N","FC1=CC=C(CC2CCN(CCS(=O)C3=CC=C4NC(=O)OC4=C3)CC2)C=C1","C21H23FN2O3S","402.48","41",NA,NA,NA +1191,"319-85-7","DTXSID7020685","beta-Hexachlorocyclohexane","JLYXXMFPNIAWKQ-CDRYSYESSA-N","Cl[C@H]1[C@H](Cl)[C@@H](Cl)[C@H](Cl)[C@@H](Cl)[C@@H]1Cl","C6H6Cl6","290.81","-","pesticide","Unclassified","Lindane is the gamma-isomer of benzene hexachloride, a colorless to white colored, synthetic, crystalline solid with a slight musty odor that emits toxic fumes of hydrochloric acid and other chlorinated compounds when heated to decomposition. Lindane is used as an insecticide for hardwood logs, lumber, and crops. Lindane also has topical pediculicide and scabicide activities probably due to its neurotoxic effects. Inhalation exposure to this substance causes severe irritation of the nose and throat, causes anemia, and affects the liver, nervous, cardiovascular, and immune system. Lindane is reasonably anticipated to be a human carcinogen." +1197,"149877-41-8","DTXSID5032525","Bifenazate","VHLKTXFWDRXILV-UHFFFAOYSA-N","COC1=C(NNC(=O)OC(C)C)C=C(C=C1)C1=CC=CC=C1","C17H20N2O3","300.358","78",NA,NA,NA +1198,"82657-04-3","DTXSID9020160","Bifenthrin","OMFRMAHOUUJSGP-IRHGGOMRSA-N","CC1=C(C=CC=C1COC(=O)[C@@H]1[C@H](\C=C(/Cl)C(F)(F)F)C1(C)C)C1=CC=CC=C1","C23H22ClF3O2","422.87","50","pesticide","Unclassified","Bifenthrin is a carboxylic ester obtained by formal condensation of cis-3-(2-chloro-3,3,3-trifluoroprop-1-enyl)-2,2-dimethylcyclopropanecarboxylic acid and [(2-methyl-1,1'-biphenyl)-3-yl]methanol. It has a role as a pyrethroid ester insecticide and a pyrethroid ester acaricide. It is an organochlorine compound, an organofluorine compound and a cyclopropanecarboxylate ester. It derives from a cis-chrysanthemic acid." +1199,"92-52-4","DTXSID4020161","Biphenyl","ZUOUZKKEUPVFJK-UHFFFAOYSA-N","C1=CC=C(C=C1)C1=CC=CC=C1","C12H10","154.21199999999999","186","industrial;pesticide","Unclassified","Biphenyl is used in organic syntheses, heat transfer fluids, dye carriers, food preservatives, as an intermediate for polychlorinated biphenyls, and as a fungistat in the packaging of citrus fruits. In workers, acute (short-term) exposure to high levels of biphenyl has been observed to cause eye and skin irritation and toxic effects on the liver, kidneys, and central and peripheral nervous systems. Kidney effects have been observed in chronically (long-term) exposed animals. EPA has classified biphenyl as a Group D, not classifiable as to human carcinogenicity." +1202,"111-44-4","DTXSID9020168","Bis(2-chloroethyl) ether","ZNSMNVMLTJELDZ-UHFFFAOYSA-N","ClCCOCCCl","C4H8Cl2O","143.01","120",NA,NA,NA +1203,"122-62-3","DTXSID7025055","Bis(2-ethylhexyl) decanedioate","VJHINFRRDQUWOJ-UHFFFAOYSA-N","CCCCC(CC)COC(=O)CCCCCCCCC(=O)OCC(CC)CCCC","C26H50O4","426.68200000000002","83",NA,NA,NA +1204,"103-24-2","DTXSID3026697","Bis(2-ethylhexyl) nonanedioate","ZDWGXBPVPXVXMQ-UHFFFAOYSA-N","CCCCC(CC)COC(=O)CCCCCCCC(=O)OCC(CC)CCCC","C25H48O4","412.65499999999997","64",NA,NA,NA +1205,"6422-86-2","DTXSID7027625","Bis(2-ethylhexyl) terephthalate","RWPICVVBGZBXNA-UHFFFAOYSA-N","CCCCC(CC)COC(=O)C1=CC=C(C=C1)C(=O)OCC(CC)CCCC","C24H38O4","390.56400000000002","70",NA,NA,NA +1206,"26040-51-7","DTXSID7027887","Bis(2-ethylhexyl) tetrabromophthalate","UUEDINPOVKWVAZ-UHFFFAOYSA-N","CCCCC(CC)COC(=O)C1=C(Br)C(Br)=C(Br)C(Br)=C1C(=O)OCC(CC)CCCC","C24H34Br4O4","706.14800000000002","69",NA,NA,NA +1208,"111-96-6","DTXSID1024621","Diethylene glycol dimethyl ether","SBZXBUIDTXKZTM-UHFFFAOYSA-N","COCCOCCOC","C6H14O3","134.17500000000001","229",NA,NA,NA +1209,"56-35-9","DTXSID9020166","Bis(tributyltin)oxide","APQHKWPGGHMYKJ-UHFFFAOYSA-N","CCCC[Sn](CCCC)(CCCC)O[Sn](CCCC)(CCCC)CCCC","C24H54OSn2","596.11500000000001","76",NA,NA,NA +1211,"80-05-7","DTXSID7020182","Bisphenol A","IISBACLAFKSPIT-UHFFFAOYSA-N","CC(C)(C1=CC=C(O)C=C1)C1=CC=C(O)C=C1","C15H16O2","228.291","212","industrial","phenol","Bisphenol A is a bisphenol that is 4,4'-methanediyldiphenol in which the methylene hydrogens are replaced by two methyl groups. It has a role as a xenoestrogen, an environmental contaminant, a xenobiotic and an endocrine disruptor." +1212,"5945-33-5","DTXSID8052720","Phosphoric acid, P,P'-[(1-methylethylidene)di-4,1-phenylene] P,P,P',P'-tetraphenyl ester","BQPNUOYXSVUVMY-UHFFFAOYSA-N","CC(C)(C1=CC=C(OP(=O)(OC2=CC=CC=C2)OC2=CC=CC=C2)C=C1)C1=CC=C(OP(=O)(OC2=CC=CC=C2)OC2=CC=CC=C2)C=C1","C39H34O8P2","692.64099999999996","38",NA,NA,NA +1213,"1478-61-1","DTXSID7037717","Bisphenol AF","ZFVMWEVVKGLCIJ-UHFFFAOYSA-N","OC1=CC=C(C=C1)C(C1=CC=C(O)C=C1)(C(F)(F)F)C(F)(F)F","C15H10F6O2","336.233","141","industrial;consumerProduct","phenol",NA +1214,"1571-75-1","DTXSID5051444","4,4'-(1-Phenylethylidene)bisphenol","VOWWYDCFAISREI-UHFFFAOYSA-N","CC(C1=CC=CC=C1)(C1=CC=C(O)C=C1)C1=CC=C(O)C=C1","C20H18O2","290.36200000000002","87",NA,NA,NA +1215,"77-40-7","DTXSID4022442","Bisphenol B","HTVITOHKHWFJKO-UHFFFAOYSA-N","CCC(C)(C1=CC=C(O)C=C1)C1=CC=C(O)C=C1","C16H18O2","242.31800000000001","108","industrial;consumerProduct","phenol",NA +1216,"79-97-0","DTXSID8047890","3,3'-Dimethylbisphenol A","YMTYZTXUZLQUSF-UHFFFAOYSA-N","CC1=CC(=CC=C1O)C(C)(C)C1=CC(C)=C(O)C=C1","C17H20O2","256.34500000000003","107",NA,NA,NA +10018,"66-32-8","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +1218,"620-92-8","DTXSID9022445","Bis(4-hydroxyphenyl)methane","PXKLMJQFEQBVLD-UHFFFAOYSA-N","OC1=CC=C(CC2=CC=C(O)C=C2)C=C1","C13H12O2","200.23699999999999","112",NA,NA,NA +1219,"2167-51-3","DTXSID0058693","Bisphenol P","GIXXQTYGFOHYPT-UHFFFAOYSA-N","CC(C)(C1=CC=C(O)C=C1)C1=CC=C(C=C1)C(C)(C)C1=CC=C(O)C=C1","C24H26O2","346.47","61",NA,NA,NA +1220,"24038-68-4","DTXSID9058654","BisOPP-A","BKTRENAPTCBBFA-UHFFFAOYSA-N","CC(C)(C1=CC(=C(O)C=C1)C1=CC=CC=C1)C1=CC(=C(O)C=C1)C1=CC=CC=C1","C27H24O2","380.48700000000002","61",NA,NA,NA +1221,"80-09-1","DTXSID3022409","4,4'-Sulfonyldiphenol","VPWNQTHUCYMVMZ-UHFFFAOYSA-N","OC1=CC=C(C=C1)S(=O)(=O)C1=CC=C(O)C=C1","C12H10O4S","250.27","149",NA,NA,"4,4'-sulfonyldiphenol is a sulfone that is diphenyl sulfone in which both of the para hydrogens have been replaced by hydroxy groups. It has a role as a metabolite and an endocrine disruptor. It is a sulfone and a bisphenol. It derives from a diphenyl sulfone." +1222,"843-55-0","DTXSID4047963","Bisphenol Z","SDDLEVPIDBLVHC-UHFFFAOYSA-N","OC1=CC=C(C=C1)C1(CCCCC1)C1=CC=C(O)C=C1","C18H20O2","268.35599999999999","119","industrial;consumerProduct","phenol",NA +1236,"10043-35-3","DTXSID1020194","Boric acid (H3BO3)","KGBXLFKZBHKPEV-UHFFFAOYSA-N","OB(O)O","BH3O3","61.83","260",NA,NA,NA +1237,"188425-85-6","DTXSID6034392","Boscalid","WYEMLYFITZORAB-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(NC(=O)C2=C(Cl)N=CC=C2)C=CC=C1","C18H12Cl2N2O","343.21","99","pesticide","Unclassified","Boscalid is a pyridinecarboxamide obtained by formal condensation of the carboxy group of 2-chloronicotinic acid with the amino group of 4'-chlorobiphenyl-2-amine. A fungicide active against a broad range of fungal pathogens including Botrytis spp., Alternaria spp. and Sclerotinia spp. for use on a wide range of crops including fruit, vegetables and ornamentals. It has a role as an EC 1.3.5.1 [succinate dehydrogenase (quinone)] inhibitor, an environmental contaminant, a xenobiotic and an antifungal agrochemical. It is a member of biphenyls, a pyridinecarboxamide, a member of monochlorobenzenes and an anilide fungicide. It derives from a nicotinic acid." +1240,"97042-18-7","DTXSID10629100","4-{4-[(Prop-1-en-2-yl)oxy]benzene-1-sulfonyl}phenol","AOJRCFAKFJWOCL-UHFFFAOYSA-N","CC(=C)OC1=CC=C(C=C1)S(=O)(=O)C1=CC=C(O)C=C1","C15H14O4S","290.33","5",NA,NA,NA +1241,"63134-33-8","DTXSID4058655","BPS-MPE4","OAHRHEHKTRXORG-UHFFFAOYSA-N","OC1=C(C=CC=C1)S(=O)(=O)C1=CC=C(OCC2=CC=CC=C2)C=C1","C19H16O4S","340.39","6",NA,NA,NA +1246,"314-40-9","DTXSID4022020","Bromacil","CTSLUCNDVMMDHG-UHFFFAOYSA-N","CCC(C)N1C(=O)NC(C)=C(Br)C1=O","C9H13BrN2O2","261.11900000000003","85","pesticide","Unclassified","Bromacil appears as colorless to white odorless crystalline solid. Used as an herbicide. Commercially available as a wettable powder or in liquid formulations." +1250,"1689-84-5","DTXSID3022162","Bromoxynil","UPMXNNIRAGDFEH-UHFFFAOYSA-N","OC1=C(Br)C=C(C=C1Br)C#N","C7H3Br2NO","276.91500000000002","113","pesticide","Unclassified","3,5-dibromo-4-hydroxybenzonitrile is a dibromobenzene that is 2,6-dibromophenol substituted by a cyano group at position 4. It has a role as an environmental contaminant, a xenobiotic and a herbicide. It is a member of phenols, a dibromobenzene and a hydroxynitrile. It derives from a 2,6-dibromophenol. It is a conjugate acid of a 3,5-dibromo-4-oxidobenzonitrile(1-)." +1251,"52-51-7","DTXSID8024652","Bronopol","LVDKZNITIUWNER-UHFFFAOYSA-N","OCC(Br)(CO)[N+]([O-])=O","C3H6BrNO4","199.988","145",NA,NA,NA +1259,"69327-76-0","DTXSID8034401","Buprofezin","PRLVTUNWOQKEAI-UHFFFAOYSA-N","CC(C)N1C(SCN(C1=O)C1=CC=CC=C1)=NC(C)(C)C","C16H23N3OS","305.44","102","pesticide","Unclassified","Buprofezin is a 2-(tert-butylimino)-5-phenyl-3-(propan-2-yl)-1,3,5-thiadiazinan-4-one in which the C=N double bond has Z configuration. It has a role as an insecticide and a member of homopteran inhibitor of chitin biosynthesis." +1261,"55-98-1","DTXSID3020910","Busulfan","COVZYZSDYWQREU-UHFFFAOYSA-N","CS(=O)(=O)OCCCCOS(C)(=O)=O","C6H14O6S2","246.29","234",NA,NA,NA +1262,"23184-66-9","DTXSID3034402","Butachlor","HKPHPIREJKHECO-UHFFFAOYSA-N","CCCCOCN(C(=O)CCl)C1=C(CC)C=CC=C1CC","C17H26ClNO2","311.85000000000002","80","pesticide","Unclassified","Butachlor is an aromatic amide that is 2-choro-N-(2,6-diethylphenyl)acetamide in which the amide nitrogen has been replaced by a butoxymethyl group. It has a role as a herbicide, an environmental contaminant and a xenobiotic. It is an aromatic amide, an organochlorine compound and a tertiary carboxamide. It derives from a N-phenylacetamide." +1263,"134605-64-4","DTXSID9034365","Butafenacil","JEDYYFXHPAIBGR-UHFFFAOYSA-N","CN1C(=O)N(C(=O)C=C1C(F)(F)F)C1=CC(C(=O)OC(C)(C)C(=O)OCC=C)=C(Cl)C=C1","C20H18ClF3N2O6","474.82","52","pesticide","Unclassified","Butafenacil is an organofluorine compound that is 1-methyl-6-(trifluoromethyl)pyrimidine-2,4(1H,3H)-dione substituted by a 4-chloro-3-({[2-methyl-1-oxo-1-(prop-2-en-1-yloxy)propan-2-yl]oxy}carbonyl)phenyl group at position 3. It is a herbicide which inhibits the protoporphyrinogen-oxidase enzyme in plant chloroplasts, resulting in rapid knockdown of various broadleaf and grass weeds. It has a role as a herbicide and an EC 1.3.3.4 (protoporphyrinogen oxidase) inhibitor. It is a member of monochlorobenzenes, a benzoate ester, an organofluorine compound, a diester and an olefinic compound. It derives from a uracil." +1264,"35256-85-0","DTXSID5041691","Butam","RJKCKKDSSSRYCB-UHFFFAOYSA-N","CC(C)N(CC1=CC=CC=C1)C(=O)C(C)(C)C","C15H23NO","233.35499999999999","58","pesticide","Unclassified","Tebutam is a monocarboxylic acid amide that is propanamide substituted by a benzyl and an isopropyl group at the nitrogen atom and two methyl groups at position 2. It is an agrochemical used as a herbicide. It has a role as a xenobiotic, an environmental contaminant, a herbicide and an agrochemical." +1265,"107-92-6","DTXSID8021515","Butanoic acid","FERIUCNNQQJTOY-UHFFFAOYSA-N","CCCC(O)=O","C4H8O2","88.105999999999995","219",NA,NA,NA +1266,"33629-47-9","DTXSID3032337","Butralin","SPNQRCTZKIBOAX-UHFFFAOYSA-N","CCC(C)NC1=C(C=C(C=C1[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O","C14H21N3O4","295.339","64","pesticide","Unclassified","Butralin is a selective preemergence herbicide, which is widely used for the control of annual grasses and broadleaf weeds in fruit trees, vegetables, nuts and green crops." +1267,"136-60-7","DTXSID8040694","Butyl benzoate","XSIFPSYPOVKYCO-UHFFFAOYSA-N","CCCCOC(=O)C1=CC=CC=C1","C11H14O2","178.23099999999999","117",NA,NA,NA +1268,"85-68-7","DTXSID3020205","Benzyl butyl phthalate","IRIAEXORFWYRCZ-UHFFFAOYSA-N","CCCCOC(=O)C1=C(C=CC=C1)C(=O)OCC1=CC=CC=C1","C19H20O4","312.36500000000001","138","industrial","Unclassified","Butyl benzyl phthalate appears as a clear colorless liquid with a mild odor. Primary hazard is to the environment. Immediate steps should be taken to limit spread to the environment. Easily penetrates the soil to contaminate groundwater and nearby waterways." +1269,"2008-41-5","DTXSID7023936","Butylate","BMTAFVWTTFSTOG-UHFFFAOYSA-N","CCSC(=O)N(CC(C)C)CC(C)C","C11H23NOS","217.37","66","pesticide","Unclassified","Butylate is a selective herbicide registered solely for use on corn crops including field corn, sweet corn and popcorn, to control grassy and broadleaf weeds and nutsedge. Formulations include emulsifiable concentrates, a granular and an encapsulated form." +1270,"104-51-8","DTXSID6022472","Butylbenzene","OCKPCBLVNKHBMX-UHFFFAOYSA-N","CCCCC1=CC=CC=C1","C10H14","134.22200000000001","150",NA,NA,NA +1271,"94-26-8","DTXSID3020209","Butylparaben","QFOHBWFCKVYLES-UHFFFAOYSA-N","CCCCOC(=O)C1=CC=C(O)C=C1","C11H14O3","194.23","201",NA,NA,"N-butyl-p-hydroxybenzoate appears as odorless white crystals or crystalline powder. Tasteless, but numbs the tongue. Aqueous solutions slightly acidic to litmus." +1272,"82469-79-2","DTXSID0047535","Butyryl-n-trihexylcitrate","GWVUTNGDMGTPFE-UHFFFAOYSA-N","CCCCCCOC(=O)CC(CC(=O)OCCCCCC)(OC(=O)CCC)C(=O)OCCCCCC","C28H50O8","514.70000000000005","42",NA,NA,NA +1273,"842-07-9","DTXSID4021135","C.I. Solvent Yellow 14","MRQIXHXHHPWVIL-UHFFFAOYSA-N","OC1=CC=C2C=CC=CC2=C1N=NC1=CC=CC=C1","C16H12N2O","248.285","-","industrial","PAH","Sudan I is an azo compound. It has a role as a dye. It derives from a 2-naphthol." +1277,"91082-17-6","DTXSID1047526","C10-21 alkanesulfonic acids phenyl esters","-","-","-","-","-",NA,NA,NA +1307,"58-08-2","DTXSID0020232","Caffeine","RYYVLZVUVIJVGH-UHFFFAOYSA-N","CN1C=NC2=C1C(=O)N(C)C(=O)N2C","C8H10N4O2","194.19399999999999","384","pharmacological;consumerProduct","Unclassified","Caffeine is a central nervous system (CNS) stimulant of the methylxanthine class. Caffeine is a bitter, white crystalline purine, a methylxanthine alkaloid, and is chemically related to the adenine and guanine bases of deoxyribonucleic acid (DNA) and ribonucleic acid (RNA). There are several known mechanisms of action to explain the effects of caffeine. The most prominent is that it reversibly blocks the action of adenosine on its receptors and consequently prevents the onset of drowsiness induced by adenosine. Caffeine also stimulates certain portions of the autonomic nervous system." +1308,"123122-55-4","DTXSID6047286","Candoxatril","ZTWZVMIYIIVABD-OEMFJLHTSA-N","COCCOC[C@H](CC1(CCCC1)C(=O)N[C@H]1CC[C@H](CC1)C(O)=O)C(=O)OC1=CC2=C(CCC2)C=C1","C29H41NO7","515.64700000000005","48",NA,NA,NA +1310,"105-60-2","DTXSID4020240","Caprolactam","JBKVHLHDHHXQEQ-UHFFFAOYSA-N","O=C1CCCCCN1","C6H11NO","113.16","161",NA,NA,"Caprolactam is a clear to milky white-colored solution with a mild, disagreeable odor. Contact may cause slight irritation to skin, eyes, and mucous membranes. May be mildly toxic by ingestion. The primary hazard is the threat to the environment. Immediate steps should be taken to limit its spread to the environment. As a liquid it can easily penetrate the soil and contaminate groundwater and nearby streams. Used to make other chemicals." +10019,"191-90-6","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +1312,"133-06-2","DTXSID9020243","Captan","LDVVMCZRFWMZSG-UHFFFAOYSA-N","ClC(Cl)(Cl)SN1C(=O)C2CC=CCC2C1=O","C9H8Cl3NO2S","300.58","98","pesticide","Unclassified","Captan is a white solid dissolved in a liquid carrier. It is a water emulsifiable liquid. It can cause illness by inhalation, skin absorption and/or ingestion. The primary hazard of this material is that it poses a threat to the environment. In case of release immediate steps should be taken to limit its spread to the environment. Since it is a liquid it can easily penetrate the soil to contaminate groundwater. It is used as a fungicide." +1313,"184653-84-7","DTXSID6047319","Carabersat","RCLXAPJEFHPYEG-ZWKOTPCHSA-N","CC(=O)C1=CC2=C(OC(C)(C)[C@H](O)[C@H]2NC(=O)C2=CC=C(F)C=C2)C=C1","C20H20FNO4","357.38099999999997","35",NA,NA,NA +1314,"298-46-4","DTXSID4022731","Carbamazepine","FFGPTBGBLSHEPO-UHFFFAOYSA-N","NC(=O)N1C2=CC=CC=C2C=CC2=C1C=CC=C2","C15H12N2O","236.274","321",NA,NA,NA +1315,"63-25-2","DTXSID9020247","Carbaryl","CVXBEEMKQHEXEN-UHFFFAOYSA-N","CNC(=O)OC1=C2C=CC=CC2=CC=C1","C12H11NO2","201.22499999999999","153","pesticide","PAH","Carbaryl is a carbamate ester obtained by the formal condensation of 1-naphthol with methylcarbamic acid. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, a carbamate insecticide, an EC 3.1.1.8 (cholinesterase) inhibitor, an acaricide, an agrochemical and a plant growth retardant. It is a carbamate ester and a member of naphthalenes. It derives from a methylcarbamic acid and a 1-naphthol." +1316,"86-74-8","DTXSID4020248","Carbazole","UJOBWOGCFQCDNV-UHFFFAOYSA-N","N1C2=CC=CC=C2C2=C1C=CC=C2","C12H9N","167.21100000000001","195","industrial","Unclassified","Carbazole appears as white crystals, plates, leaflets or light tan powder. Sublimes readily. Exhibits strong fluorescence and long phosphorescence on exposure to ultraviolet light." +1317,"10605-21-7","DTXSID4024729","Carbendazim","TWFZGCMQGLPBSX-UHFFFAOYSA-N","COC(=O)NC1=NC2=CC=CC=C2N1","C9H9N3O2","191.19","152",NA,NA,NA +1318,"1563-66-2","DTXSID9020249","Carbofuran","DUEPRVBVGDRKAG-UHFFFAOYSA-N","CNC(=O)OC1=CC=CC2=C1OC(C)(C)C2","C12H15NO3","221.256","115","pesticide","Unclassified","Carbofuran is a carbamate ester and a member of 1-benzofurans. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, a carbamate insecticide, an EC 3.1.1.8 (cholinesterase) inhibitor, an acaricide, an agrochemical, an avicide and a nematicide." +1321,"55285-14-8","DTXSID5023950","Carbosulfan","JLQUFIHWVLZVTJ-UHFFFAOYSA-N","CCCCN(CCCC)SN(C)C(=O)OC1=C2OC(C)(C)CC2=CC=C1","C20H32N2O3S","380.55","81","pesticide","Unclassified","Carbosulfan is a member of 1-benzofurans and a carbamate ester. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, a carbamate insecticide, an acaricide, an agrochemical and a nematicide." +1322,"5234-68-4","DTXSID0023951","Carboxin","GYSSRZJIHXQEHQ-UHFFFAOYSA-N","CC1=C(SCCO1)C(=O)NC1=CC=CC=C1","C12H13NO2S","235.3","139","pesticide","Unclassified","2-Methyl-N-phenyl-5,6-dihydro-1,4-oxathiine-3-carboxamide, also known as Carboxin, is an anilide, an enamide, an oxacycle, an organosulfur heterocyclic compound, an anilide fungicide, and a secondary carboxamide. It has a role as a succinate dehydrogenase (quinone) inhibitor (EC 1.3.5.1) and as an antifungal agrochemical. Carboxin appears as off-white crystals" +1323,"128639-02-1","DTXSID4032532","Carfentrazone-ethyl","MLKCGVHIFJBRCD-UHFFFAOYSA-N","CCOC(=O)C(Cl)CC1=C(Cl)C=C(F)C(=C1)N1N=C(C)N(C(F)F)C1=O","C15H14Cl2F3N3O3","412.19","62","pesticide","Unclassified","Ethyl 2-chloro-3-{2-chloro-5-[4-(difluoromethyl)-3-methyl-5-oxo-4,5-dihydro-1H-1,2,4-triazol-1-yl]-4-fluorophenyl}propanoate is an ethyl ester resulting from the formal condensation of the carboxy group of 2-chloro-3-{2-chloro-5-[4-(difluoromethyl)-3-methyl-5-oxo-4,5-dihydro-1H-1,2,4-triazol-1-yl]-4-fluorophenyl}propanoic acid with ethanol. It has a role as a proherbicide." +1324,"159138-81-5","DTXSID3047344","Cariporide mesylate","FNDLQABGYJQJPH-UHFFFAOYSA-N","CS(O)(=O)=O.CC(C)C1=CC=C(C=C1S(C)(=O)=O)C(=O)N=C(N)N","C13H21N3O6S2","379.45","6",NA,NA,NA +1325,"1260-17-9","DTXSID9022817","Carminic acid","DGQLVPJVXFOQEV-JNVSTXMASA-N","CC1=C2C(=O)C3=C(C(O)=C(O)C([C@@H]4O[C@H](CO)[C@@H](O)[C@H](O)[C@H]4O)=C3O)C(=O)C2=CC(O)=C1C(O)=O","C22H20O13","492.38900000000001","80",NA,NA,NA +1327,"120-80-9","DTXSID3020257","1,​2-​Benzenediol","YCIMNLLNPGFGHC-UHFFFAOYSA-N","OC1=C(O)C=CC=C1","C6H6O2","110.11199999999999","242",NA,NA,"Exposure to catechol (1,​2-​Benzenediol) may occur during its manufacture and use. Skin contact with catechol causes eczematous dermatitis in humans. In humans, absorption through the skin results in an illness resembling that induced by phenol, except convulsions are more pronounced. Large doses of catechol can cause depression of the central nervous system (CNS) and a prolonged rise of blood pressure in animals. Due to the lack of information regarding the duration of exposure in the above studies, it is not clear whether these health effects were observed following acute (short-term) or chronic (long-term) exposure. Tumors in the glandular stomach were observed in orally exposed rats. The International Agency for Research on Cancer (IARC) has classified catechol as a Group 2B, possible human carcinogen. EPA has not classified catechol with respect to potential carcinogenicity." +1333,"169590-42-5","DTXSID0022777","Celecoxib","RZEKVGVHFLEQIL-UHFFFAOYSA-N","CC1=CC=C(C=C1)C1=CC(=NN1C1=CC=C(C=C1)S(N)(=O)=O)C(F)(F)F","C17H14F3N3O2S","381.37","283",NA,NA,NA +1352,"133-90-4","DTXSID2020262","Chloramben","HSSBORCLYSCBJR-UHFFFAOYSA-N","NC1=C(Cl)C(=CC(Cl)=C1)C(O)=O","C7H5Cl2NO2","206.02","100",NA,NA,NA +1353,"57-74-9","DTXSID7020267","Chlordane","BIWJNBZANLAXMG-UHFFFAOYSA-N","ClC1CC2C(C1Cl)C1(Cl)C(Cl)=C(Cl)C2(Cl)C1(Cl)Cl","C10H6Cl8","409.76","74",NA,NA,NA +1354,"115-28-6","DTXSID2020268","Chlorendic acid","DJKGDNKYTKCJKD-UHFFFAOYSA-N","OC(=O)C1C(C(O)=O)C2(Cl)C(Cl)=C(Cl)C1(Cl)C2(Cl)Cl","C9H4Cl6O4","388.83","89",NA,NA,"Chlorendic acid is a bridged organochlorine compound resulting from the Diels-Alder reaction of hexachlorocyclopentadiene with maleic anhydride followed by hydrolysis of the resulting anhydride. A chemical intermediate used in the preparation of fire-retardant polyester resins and plasticisers. It has a role as a carcinogenic agent. It is an organochlorine compound, a dicarboxylic acid and a bridged compound." +1355,"54593-83-8","DTXSID2032344","Chlorethoxyfos","XFDJMIHUAHSGKG-UHFFFAOYSA-N","CCOP(=S)(OCC)OC(Cl)C(Cl)(Cl)Cl","C6H11Cl4O3PS","335.98","48","pesticide","Unclassified","Chlorethoxyfos is an organic thiophosphate, an organothiophosphate insecticide and an organochlorine insecticide. It has a role as an agrochemical and an EC 3.1.1.7 (acetylcholinesterase) inhibitor." +1356,"1698-60-8","DTXSID3034872","Chloridazon","WYKYKTKDBLFHCY-UHFFFAOYSA-N","NC1=C(Cl)C(=O)N(N=C1)C1=CC=CC=C1","C10H8ClN3O","221.64","120","pesticide","Unclassified","Chloridazon is a pyridazinone that is pyridazin-3(2H)-one substituted by an amino group at position 5, a chloro group at position 4 and a phenyl group at position 2. It has a role as an environmental contaminant, a xenobiotic and a herbicide. It is a pyridazinone, an organochlorine compound, a primary amino compound and a member of benzenes." +1359,"510-15-6","DTXSID9020299","Chlorobenzilate","RAPBNVDSDCTNRC-UHFFFAOYSA-N","CCOC(=O)C(O)(C1=CC=C(Cl)C=C1)C1=CC=C(Cl)C=C1","C16H14Cl2O3","325.19","64","pesticide","Unclassified","Until 1999, chlorobenzilate was used as a pesticide in citrus and deciduous fruit trees. Limited information is available on the acute (short-term) or chronic (long-term) effects of chlorobenzilate in humans. No inhalation data are available. Poor appetites, anemia, cardiac changes, and effects on the liver, spleen, and bone marrow were observed in dogs chronically exposed to high levels of chlorobenzilate by ingestion. No information is available on the carcinogenic effects of chlorobenzilate in humans. Chlorobenzilate has been found to be carcinogenic in orally exposed mice, with increased incidences of liver tumors observed. EPA has classified chlorobenzilate as a Group B2, probable human carcinogen." +1360,"2675-77-6","DTXSID2024793","Chloroneb","PFIADAMVCJPXSF-UHFFFAOYSA-N","COC1=CC(Cl)=C(OC)C=C1Cl","C8H8Cl2O2","207.05","89","pesticide","Unclassified","Chloroneb is a dimethoxybenzene that is p-dimethoxybenzene which is substituted by chlorines at positions 2 and 5. A fungicide formerly used as a seed treatment, it is not approved for use in the European Union. It has a role as an antifungal agrochemical. It is a dimethoxybenzene, a dichlorobenzene and an aromatic fungicide." +1361,"1897-45-6","DTXSID0020319","Chlorothalonil","CRQQGFGUEAVUIL-UHFFFAOYSA-N","ClC1=C(Cl)C(C#N)=C(Cl)C(C#N)=C1Cl","C8Cl4N2","265.89999999999998","146","pesticide;pesticide;pesticide","Unclassified","Chlorothalonil (2,4,5,6-tetrachloroisophthalonitrile) is an organic compound mainly used as a broad spectrum, nonsystemic fungicide, with other uses as a wood protectant, pesticide, acaricide, and to control mold, mildew, bacteria, algae." +1362,"69-09-0","DTXSID7024827","Chlorpromazine hydrochloride","FBSMERQALIEGJT-UHFFFAOYSA-N","Cl.CN(C)CCCN1C2=C(SC3=C1C=C(Cl)C=C3)C=CC=C2","C17H20Cl2N2S","355.32","145",NA,NA,NA +1363,"101-21-3","DTXSID7020764","Chlorpropham","CWJSHJJYOPWUGX-UHFFFAOYSA-N","CC(C)OC(=O)NC1=CC=CC(Cl)=C1","C10H12ClNO2","213.66","132","pesticide","Unclassified","Chlorpropham is a carbamate ester that is the isopropyl ester of 3-chlorophenylcarbamic acid. It has a role as a herbicide and a plant growth retardant. It is a carbamate ester, a member of benzenes and a member of monochlorobenzenes." +1364,"2921-88-2","DTXSID4020458","Chlorpyrifos","SBPBAQFWLVIOKP-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=NC(Cl)=C(Cl)C=C1Cl","C9H11Cl3NO3PS","350.57","182","pharmacological;pesticide","Unclassified","Chlorpyrifos is an insecticide that is a white crystal-like solid with a strong odor. It does not mix well with water, so it is usually mixed with oily liquids before it is applied to crops or animals. It may also be applied to crops in a capsule form. Chlorpyrifos has been widely used in homes and on farms. In the home, it is used to control cockroaches, fleas, and termites; it is also used in some pet flea and tick collars. On the farm, it is used to control ticks on cattle and as a spray to control crop pests." +1366,"5598-15-2","DTXSID1038666","Chlorpyrifos oxon","OTMOUPHCTWPNSL-UHFFFAOYSA-N","CCOP(=O)(OCC)OC1=NC(Cl)=C(Cl)C=C1Cl","C9H11Cl3NO4P","334.51","53",NA,NA,NA +1367,"5598-13-0","DTXSID6032352","Chlorpyrifos-methyl","HRBKVYFZANMGRE-UHFFFAOYSA-N","COP(=S)(OC)OC1=NC(Cl)=C(Cl)C=C1Cl","C7H7Cl3NO3PS","322.52","62","pesticide","Unclassified","Chlorpyrifos-methyl is an organic thiophosphate that is O,O-dimethyl hydrogen phosphorothioate in which the hydrogen of the hydroxy group has been replaced by a 3,5,6-trichloropyridin-2-yl group. It has a role as an agrochemical, an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an environmental contaminant, a xenobiotic, an acaricide and an insecticide. It is an organic thiophosphate and a chloropyridine." +1369,"1861-32-1","DTXSID0024000","Chlorthal-dimethyl","NPOJQCVWMSKXDN-UHFFFAOYSA-N","COC(=O)C1=C(Cl)C(Cl)=C(C(=O)OC)C(Cl)=C1Cl","C10H6Cl4O4","331.95","128","pesticide","Unclassified","Dimethyl tetrachloroterephthalate (DCPA, Dacthal) is a methyl ester and dimethyl ester of tetrachloroterephthalic acid. It is used as a preemergent herbicide. It kills grass and many common weeds without killing sensitive plants such as flowers, fruits, vegetables, turf, and cotton. DCPA is a colourless solid, although commercial samples can be off white." +1370,"491-38-3","DTXSID40197680","4-Chromone","OTAFHZMPRISVEM-UHFFFAOYSA-N","O=C1C=COC2=CC=CC=C12","C9H6O2","146.14500000000001","112",NA,NA,"Chromone is the simplest member of the class of chromones that is 4H-chromene with an oxo group at position 4. It is a member of chromones and an enone." +1371,"218-01-9","DTXSID0022432","Chrysene","WDECIBYCCFPHNR-UHFFFAOYSA-N","C1=CC2=C(C=C1)C1=C(C=C2)C2=C(C=CC=C2)C=C1","C18H12","228.29400000000001","130",NA,"PAH","Chrysene is a polycyclic aromatic hydrocarbon (PAH) and is an aromatic hydrocarbon in coal tar, allied to naphthalene and anthracene. It has a role as a plant metabolite and is considered a primary hazard/threat to the environment. Chrysene appears as a crystalline solid but generally colored yellow by impurities an has strong blue fluorescence." +1372,"87818-31-3","DTXSID3034456","Cinmethylin","QMTNOLKHSWIQBE-FGTMMUONSA-N","CC(C)[C@]12CC[C@](C)(O1)[C@@H](C2)OCC1=C(C)C=CC=C1","C18H26O2","274.404","45",NA,NA,NA +1375,"199171-88-5","DTXSID9047253","CP-401387","PRUGWHGQBHEDAX-QXONSOMPNA-N","CCC1=NN(C2CCCCC2)C2=C1C=CC(=C2)[C@]1(CC[C@@H](CC1)C(O)=O)C#N","C23H29N3O2","379.50400000000002","23",NA,NA,NA +1378,"77-92-9","DTXSID3020332","Citric acid","KRKNYBCHXYNGOX-UHFFFAOYSA-N","OC(=O)CC(O)(CC(O)=O)C(O)=O","C6H8O7","192.12299999999999","2032",NA,NA,NA +1379,"106-22-9","DTXSID3026726","Citronellol","QMVPMAAFGQKVCJ-UHFFFAOYSA-N","CC(CCO)CCC=C(C)C","C10H20O","156.26900000000001","146","personalCare;natural;consumerProduct","Unclassified",NA +1380,"4291-63-8","DTXSID8022828","Cladribine","PTOAARAWEBMLNO-KVQBGUIXSA-N","NC1=NC(Cl)=NC2=C1N=CN2[C@H]1C[C@H](O)[C@@H](CO)O1","C10H12ClN5O3","285.69","175",NA,NA,NA +1381,"105512-06-9","DTXSID6032354","Clodinafop-propargyl","JBDHZKLJNAIJNC-LLVKDONJSA-N","C[C@@H](OC1=CC=C(OC2=NC=C(Cl)C=C2F)C=C1)C(=O)OCC#C","C17H13ClFNO4","349.74","80","pesticide","Unclassified","Clodinafop-propargyl is a carboxylic ester resulting from the formal condensation of the carboxy group of clodinafop with the hydroxy group of prop-2-yn-1-ol. It is widely used as a herbicide for the control of annual grass weeds in cereal crops. It has a role as an EC 6.4.1.2 (acetyl-CoA carboxylase) inhibitor, a herbicide and an agrochemical. It is a carboxylic ester, an aromatic ether, an organochlorine compound, an organofluorine compound, a member of pyridines and a propyzamide. It derives from a prop-2-yn-1-ol and a clodinafop." +1382,"74115-24-5","DTXSID9023881","Clofentezine","UXADOQPNKNTIHB-UHFFFAOYSA-N","ClC1=CC=CC=C1C1=NN=C(N=N1)C1=C(Cl)C=CC=C1","C14H8Cl2N4","303.14999999999998","95",NA,NA,NA +1383,"637-07-0","DTXSID3020336","Clofibrate","KNHUKKLJHYUCFP-UHFFFAOYSA-N","CCOC(=O)C(C)(C)OC1=CC=C(Cl)C=C1","C12H15ClO3","242.7","267",NA,NA,"Clofibrate is the ethyl ester of clofibric acid. It has a role as an anticholesteremic drug and an antilipemic drug. It is an aromatic ether, a member of monochlorobenzenes and an ethyl ester. It derives from a clofibric acid." +1384,"81777-89-1","DTXSID1032355","Clomazone","KIEDNEWSYUYDSN-UHFFFAOYSA-N","CC1(C)CON(CC2=C(Cl)C=CC=C2)C1=O","C12H14ClNO2","239.7","88","pesticide","Unclassified","Clomazone is a oxazolidinone that is 1,2-oxazolidin-3-one substituted by a 2-chlorobenzyl group at position 2 and two methyl groups at position 4. It has a role as an environmental contaminant, a xenobiotic, a herbicide, an agrochemical and a carotenoid biosynthesis inhibitor. It is a member of monochlorobenzenes and an oxazolidinone." +1385,"50-41-9","DTXSID8020337","Clomiphene citrate (1:1)","PYTMYKVIJXPNBD-UHFFFAOYSA-N","OC(=O)CC(O)(CC(O)=O)C(O)=O.CCN(CC)CCOC1=CC=C(C=C1)C(=C(Cl)C1=CC=CC=C1)C1=CC=CC=C1","C32H36ClNO8","598.09","42",NA,NA,NA +1386,"101-10-0","DTXSID9034232","Cloprop","YNTJKQDWYXUTLZ-UHFFFAOYSA-N","CC(OC1=CC(Cl)=CC=C1)C(O)=O","C9H9ClO3","200.62","112",NA,NA,NA +1387,"1702-17-6","DTXSID9029221","Clopyralid","HUBANNPOLNYSAD-UHFFFAOYSA-N","OC(=O)C1=C(Cl)C=CC(Cl)=N1","C6H3Cl2NO2","192","145",NA,NA,NA +1388,"57754-85-5","DTXSID6034265","Clopyralid-olamine","NQQBTWVFKDDVIB-UHFFFAOYSA-N","NCCO.OC(=O)C1=C(Cl)C=CC(Cl)=N1","C8H10Cl2N2O3","253.08","45",NA,NA,NA +1389,"120-32-1","DTXSID5020154","Clorophene","NCKMMSIFQUPKCK-UHFFFAOYSA-N","OC1=C(CC2=CC=CC=C2)C=C(Cl)C=C1","C13H11ClO","218.68","126",NA,NA,NA +1390,"210880-92-5","DTXSID2034465","Clothianidin","PGOOBECODWQEAB-UHFFFAOYSA-N","CN\C(NCC1=CN=C(Cl)S1)=N/[N+]([O-])=O","C6H8ClN5O2S","249.67","45",NA,NA,NA +1391,"23593-75-1","DTXSID7029871","Clotrimazole","VNFPBHJOKIVQEB-UHFFFAOYSA-N","ClC1=C(C=CC=C1)C(N1C=CN=C1)(C1=CC=CC=C1)C1=CC=CC=C1","C22H17ClN2","344.84","279",NA,NA,"Clotrimazole is a member of the class of imidazoles that is 1H-imidazole in which the hydrogen attached to a nitrogen is replaced by a monochlorotrityl group. It has a role as an antiinfective agent, an environmental contaminant and a xenobiotic. It is a member of imidazoles, a member of monochlorobenzenes, a conazole antifungal drug and an imidazole antifungal drug." +1392,"8000-34-8","DTXSID8044175","Clove leaf oil","-","-","-","-","-",NA,NA,NA +1430,"64-86-8","DTXSID5024845","Colchicine","IAKHMKGGTNLKSZ-INIZCTEOSA-N","[H][C@@]1(CCC2=C(C(OC)=C(OC)C(OC)=C2)C2=CC=C(OC)C(=O)C=C12)NC(C)=O","C22H25NO6","399.44299999999998","264",NA,NA,NA +1449,"191-07-1","DTXSID5047740","Coronene","VPUGDVKSAQVFFS-UHFFFAOYSA-N","C1=CC2=C3C4=C1C=CC1=C4C4=C(C=C1)C=CC1=C4C3=C(C=C2)C=C1","C24H12","300.36","127",NA,"PAH","Coronene is a ortho- and peri-fused polycyclic arene that consists of six peri-fused benzene rings." +1450,"50-22-6","DTXSID6022474","Corticosterone","OMFXVFTZEKFJBZ-HJTSIMOOSA-N","C[C@]12C[C@H](O)[C@H]3[C@@H](CCC4=CC(=O)CC[C@]34C)[C@@H]1CC[C@@H]2C(=O)CO","C21H30O4","346.46699999999998","185",NA,NA,"Corticosterone is a 21-hydroxy steroid that consists of pregn-4-ene substituted by hydroxy groups at positions 11 and 21 and oxo groups at positions 3 and 20. Corticosterone is a 21-carbon steroid hormone of the corticosteroid type produced in the cortex of the adrenal glands. It has a role as a human metabolite and a mouse metabolite. It is an 11beta-hydroxy steroid, a 21-hydroxy steroid, a 20-oxo steroid, a C21-steroid, a 3-oxo-Delta(4) steroid, a primary alpha-hydroxy ketone and a glucocorticoid. It derives from a hydride of a pregnane." +1452,"486-56-6","DTXSID1047576","Cotinine","UIKROCXWUNQSPJ-VIFPVBQESA-N","CN1[C@@H](CCC1=O)C1=CN=CC=C1","C10H12N2O","176.21899999999999","182",NA,NA,NA +1454,"56-72-4","DTXSID2020347","Coumaphos","BXNANOICGRISHX-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC2=C(C=C1)C(C)=C(Cl)C(=O)O2","C14H16ClO5PS","362.76","121","pesticide","Unclassified","Coumaphos is a synthetic organic thiophosphate, organochlorine compound, and organophosphate acetylcholinesterase inhibitor that is used as a pesticide. It is characterized as a tan or slightly brown crystalline solid with a mild sulfurous odor, and exposure occurs by inhalation, ingestion, or contact." +1455,"91-64-5","DTXSID7020348","Coumarin","ZYGHJZDHTFUPRJ-UHFFFAOYSA-N","O=C1OC2=C(C=CC=C2)C=C1","C9H6O2","146.14500000000001","322","personalCare;natural;consumerProduct","Unclassified","Coumarin is a chromenone having the keto group located at the 2-position. It has a role as a fluorescent dye, a plant metabolite and a human metabolite." +1457,"26444-49-5","DTXSID3024861","Cresyl diphenyl phosphate","-","C*.O=P(OC1=CC=CC=C1)(OC1=CC=CC=C1)OC1=CC=CC=C1 |c:6,8,14,16,22,24,t:4,12,20,lp:2:2,4:2,11:2,18:2,m:1:6.7.8|","-","-","-",NA,NA,NA +1522,"80-15-9","DTXSID3024869","Cumene hydroperoxide","YQHLDYVWEZKEOX-UHFFFAOYSA-N","CC(C)(OO)C1=CC=CC=C1","C9H12O2","152.19300000000001","83",NA,NA,NA +1531,"420-04-2","DTXSID9034490","Cyanamide","XZMCDFZZKTWFGF-UHFFFAOYSA-N","NC#N","CH2N2","42.040999999999997","129",NA,NA,NA +1532,"21725-46-2","DTXSID1023990","Cyanazine","MZZBPDKVEFVLFF-UHFFFAOYSA-N","CCNC1=NC(NC(C)(C)C#N)=NC(Cl)=N1","C9H13ClN6","240.7","91","pesticide","Unclassified","Cyanazine is a chloro-1,3,5-triazine that is 2-chloro-1,3,5-triazine substituted by an ethyl amino and a (2-cyanopropan-2-yl)amino group at positions 6 and 4 respectively. It has a role as a herbicide, an environmental contaminant and a xenobiotic. It is a 1,3,5-triazinylamino nitrile and a chloro-1,3,5-triazine." +1534,"108-80-5","DTXSID7024873","Cyanuric acid","ZFSLODLOARCGLH-UHFFFAOYSA-N","OC1=NC(O)=NC(O)=N1","C3H3N3O3","129.07499999999999","178",NA,NA,NA +1535,"120116-88-3","DTXSID9034492","Cyazofamid","YXKMMRDKEKCERS-UHFFFAOYSA-N","CN(C)S(=O)(=O)N1C(=NC(Cl)=C1C1=CC=C(C)C=C1)C#N","C13H13ClN4O2S","324.77999999999997","74",NA,NA,"Cyazofamid is a member of the class of imidazoles carrying dimethylsulfamyl, cyano, chloro and 4-tolyl substituents at positions 1, 2, 4 and 5 respectively. A fungicide used mainly for controlling Oomycete and Plasmodiophora diseases on potatoes and tomatoes. It is a skin and eye irritant and is moderately toxic to birds, most aquatic organisms, honeybees and earthworms. It has a role as a mitochondrial cytochrome-bc1 complex inhibitor and an antifungal agrochemical. It is a member of imidazoles, an organochlorine compound, a nitrile, a member of sulfamides, a sulfonamide fungicide and an imidazole fungicide." +1536,"113136-77-9","DTXSID5032600","Cyclanilide","GLWWLNJJJCTFMZ-UHFFFAOYSA-N","OC(=O)C1(CC1)C(=O)NC1=CC=C(Cl)C=C1Cl","C11H9Cl2NO3","274.10000000000002","61",NA,NA,NA +1537,"1134-23-2","DTXSID6032356","Cycloate","DFCAFRGABIXSDS-UHFFFAOYSA-N","CCSC(=O)N(CC)C1CCCCC1","C11H21NOS","215.36","60","pesticide","Unclassified","Cycloate is a colorless liquid with an aromatic odor. Used as a selective systemic herbicide." +1539,"108-93-0","DTXSID4021894","Cyclohexanol","HPXRVTGHNJAIIH-UHFFFAOYSA-N","OC1CCCCC1","C6H12O","100.161","201",NA,NA,NA +1540,"108-94-1","DTXSID6020359","Cyclohexanone","JHIVVAPYMSGYDF-UHFFFAOYSA-N","O=C1CCCCC1","C6H10O","98.144999999999996","339",NA,NA,"Cyclohexanone is a cyclic ketone that consists of cyclohexane bearing a single oxo substituent. It has a role as a human xenobiotic metabolite." +1541,"66-81-9","DTXSID6024882","Cycloheximide","YPHMISFOHDHNIV-FSZOTQKASA-N","C[C@H]1C[C@H](C)C(=O)[C@@H](C1)[C@H](O)CC1CC(=O)NC(=O)C1","C15H23NO4","281.35199999999998","218",NA,NA,NA +1542,"108-91-8","DTXSID1023996","Cyclohexylamine","PAFZNILMFXTMIY-UHFFFAOYSA-N","NC1CCCCC1","C6H13N","99.177000000000007","190",NA,NA,NA +1543,"712-50-5","DTXSID5048182","Cyclohexylphenylketone","BMFYCFSWWDXEPB-UHFFFAOYSA-N","O=C(C1CCCCC1)C1=CC=CC=C1","C13H16O","188.27","113",NA,NA,NA +1544,"4449-51-8","DTXSID6043709","Cyclopamine","QASFUMOKHFSJGL-LAFRSMQTSA-N","C[C@@H]1[C@@H]2NC[C@@H](C)C[C@H]2O[C@]11CC[C@H]2[C@@H]3CC=C4C[C@@H](O)CC[C@]4(C)[C@H]3CC2=C1C","C27H41NO2","411.63","103",NA,NA,NA +1545,"6055-19-2","DTXSID6024888","Cyclophosphamide monohydrate","PWOQRKCAHTVFLB-UHFFFAOYSA-N","O.ClCCN(CCCl)P1(=O)NCCCO1","C7H17Cl2N2O3P","279.10000000000002","164",NA,NA,NA +1547,"68359-37-5","DTXSID5035957","Cyfluthrin","QQODLKZGRKWIFG-UHFFFAOYSA-N","CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)C1=CC=C(F)C(OC2=CC=CC=C2)=C1","C22H18Cl2FNO3","434.29","97","pesticide","Unclassified","Cyfluthrin is a carboxylic ester obtained by formal condensation between 3-(2,2-dichloroethenyl)-2,2-dimethylcyclopropanecarboxylic acid and (4-fluoro-3-phenoxyphenyl)(hydroxy)acetonitrile. It has a role as a pyrethroid ester insecticide and an agrochemical. It is an organochlorine compound, an organofluorine compound, a nitrile, an aromatic ether and a cyclopropanecarboxylate ester. It derives from a 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid." +1548,"122008-85-9","DTXSID1034503","Cyhalofop-butyl","TYIYMOAHACZAMQ-CQSZACIVSA-N","CCCCOC(=O)[C@@H](C)OC1=CC=C(OC2=C(F)C=C(C=C2)C#N)C=C1","C20H20FNO4","357.38099999999997","66","pesticide","Unclassified","Cyhalofop-butyl is an aromatic ether." +1554,"57966-95-7","DTXSID6032358","Cymoxanil","XERJKGMBORTKEO-VZUCSPMQSA-N","CCNC(=O)NC(=O)C(=N\OC)\C#N","C7H10N4O3","198.18199999999999","70","pesticide","Unclassified","Cymoxanil is a member of the class of ureas that is urea in which the two nitrogen atoms are substituted by an ethyl group and a 2-cyano-2-(methoxyimino)acetyl group respectively. A fungicide used to control Peronosporales on a range of crops including vines, hops and potatoes. It has a role as an environmental contaminant, a xenobiotic and an antifungal agrochemical. It is a member of ureas, a nitrile, an oxime O-ether and an aliphatic nitrogen antifungal agent." +1555,"52315-07-8","DTXSID1023998","Cypermethrin","KAATUXNTWXVJKI-UHFFFAOYSA-N","CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)C1=CC=CC(OC2=CC=CC=C2)=C1","C22H19Cl2NO3","416.3","202","pesticide","Unclassified","Cypermethrin is a carboxylic ester resulting from the formal condensation between 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid and the alcoholic hydroxy group of hydroxy(3-phenoxyphenyl)acetonitrile. It has a role as a pyrethroid ester insecticide, a pyrethroid ester acaricide, an agrochemical and a molluscicide. It is an organochlorine compound, a nitrile, an aromatic ether and a cyclopropanecarboxylate ester. It derives from a 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid." +1555,"52315-07-8","DTXSID1023998","Cypermethrin","KAATUXNTWXVJKI-UHFFFAOYSA-N","CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)C1=CC=CC(OC2=CC=CC=C2)=C1","C22H19Cl2NO3","416.3","202","pesticide","Unclassified","Cypermethrin is a carboxylic ester resulting from the formal condensation between 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid and the alcoholic hydroxy group of hydroxy(3-phenoxyphenyl)acetonitrile. It has a role as a pyrethroid ester insecticide, a pyrethroid ester acaricide, an agrochemical and a molluscicide. It is an organochlorine compound, a nitrile, an aromatic ether and a cyclopropanecarboxylate ester. It derives from a 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid." +1555,"52315-07-8","DTXSID1023998","Cypermethrin","KAATUXNTWXVJKI-UHFFFAOYSA-N","CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)C1=CC=CC(OC2=CC=CC=C2)=C1","C22H19Cl2NO3","416.3","202","pesticide","Unclassified","Cypermethrin is a carboxylic ester resulting from the formal condensation between 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid and the alcoholic hydroxy group of hydroxy(3-phenoxyphenyl)acetonitrile. It has a role as a pyrethroid ester insecticide, a pyrethroid ester acaricide, an agrochemical and a molluscicide. It is an organochlorine compound, a nitrile, an aromatic ether and a cyclopropanecarboxylate ester. It derives from a 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid." +1555,"52315-07-8","DTXSID1023998","Cypermethrin","KAATUXNTWXVJKI-UHFFFAOYSA-N","CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)C1=CC=CC(OC2=CC=CC=C2)=C1","C22H19Cl2NO3","416.3","202","pesticide","Unclassified","Cypermethrin is a carboxylic ester resulting from the formal condensation between 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid and the alcoholic hydroxy group of hydroxy(3-phenoxyphenyl)acetonitrile. It has a role as a pyrethroid ester insecticide, a pyrethroid ester acaricide, an agrochemical and a molluscicide. It is an organochlorine compound, a nitrile, an aromatic ether and a cyclopropanecarboxylate ester. It derives from a 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid." +1556,"94361-06-5","DTXSID0032601","Cyproconazole","UFNOUKDBUJZYDE-UHFFFAOYSA-N","CC(C1CC1)C(O)(CN1C=NC=N1)C1=CC=C(Cl)C=C1","C15H18ClN3O","291.77999999999997","101",NA,NA,"2-(4-chlorophenyl)-3-cyclopropyl-1-(1H-1,2,4-triazol-1-yl)butan-2-ol is a tertiary alcohol that is butan-2-ol substituted by a 4-chlorophenyl group at position 2, a cyclopropyl group at position 3 and a 1H-1,2,4-triazol-1-yl group at position 1. It is a member of monochlorobenzenes, a tertiary alcohol, a member of triazoles and a member of cyclopropanes. Cyproconazole is an agricultural fungicide of the class of azoles, used on cereal crops, coffee, sugar beet, fruit trees and grapes, on sod farms and golf courses and on wood as a preservative." +1557,"121552-61-2","DTXSID1032359","Cyprodinil","HAORKNGNJCEJBX-UHFFFAOYSA-N","CC1=NC(NC2=CC=CC=C2)=NC(=C1)C1CC1","C14H15N3","225.29499999999999","73","pesticide","Unclassified","Cyprodinil is a member of the class of aminopyrimidine that is N-phenylpyrimidin-2-amine carrying additional cyclopropyl and methyl substituents at positions 4 and 6 respectively. A broad spectrum fungicide used to control a range of pathogens including Tapesia yallundae, Botrytis spp., Alternaria spp. and Rhynchospium secalis. Whilst it is a recognised irritant no serious human health concerns have been identified. It is moderately toxic to birds as well as most aquatic organisms and earthworms, but it is not considered toxic to honeybees. It has a role as an aryl hydrocarbon receptor agonist, an environmental contaminant, a xenobiotic and an antifungal agrochemical. It is an aminopyrimidine, a secondary amino compound, a member of cyclopropanes and an anilinopyrimidine fungicide." +1558,"427-51-0","DTXSID5020366","Cyproterone acetate","UWFYSQMTEOIJJG-FDTZYFLXSA-N","CC(=O)O[C@@]1(CC[C@H]2[C@@H]3C=C(Cl)C4=CC(=O)[C@@H]5C[C@@H]5[C@]4(C)[C@H]3CC[C@]12C)C(C)=O","C24H29ClO4","416.94","146",NA,NA,NA +1559,"66215-27-8","DTXSID6023999","Cyromazine","LVQDKIWDGQRHTE-UHFFFAOYSA-N","NC1=NC(NC2CC2)=NC(N)=N1","C6H10N6","166.18799999999999","145","pesticide","Unclassified","Cyromazine is a triamino-1,3,5-triazine. It has a role as a triazine insecticide and a mouse metabolite." +1560,"69-74-9","DTXSID5024891","Cytarabine hydrochloride","KCURWTAZOZXKSJ-JBMRGDGGSA-N","Cl.NC1=NC(=O)N(C=C1)[C@@H]1O[C@H](CO)[C@@H](O)[C@@H]1O","C9H14ClN3O5","279.68","89",NA,NA,NA +1565,"95235-30-6","DTXSID2058706","4-((4-Isopropoxyphenyl)sulfonyl)phenol","ZTILAOCGFRDHBH-UHFFFAOYSA-N","CC(C)OC1=CC=C(C=C1)S(=O)(=O)C1=CC=C(O)C=C1","C15H16O4S","292.35000000000002","79",NA,NA,NA +1566,"191680-83-8","DTXSID10872912","4,4'-Dihydroxydiphenyl sulfone-bis(2-chloroethyl) ether copolymer","-","-","-","-","-",NA,NA,NA +1568,"486-66-8","DTXSID9022310","7,4'-Dihydroxyisoflavone","ZQSIJRDFPHDXIC-UHFFFAOYSA-N","OC1=CC=C(C=C1)C1=COC2=C(C=CC(O)=C2)C1=O","C15H10O4","254.24100000000001","295",NA,NA,NA +1569,"75-99-0","DTXSID2021575","Dalapon","NDUPDOJHUQKPAG-UHFFFAOYSA-N","CC(Cl)(Cl)C(O)=O","C3H4Cl2O2","142.96","92",NA,NA,NA +1570,"1596-84-5","DTXSID9020370","Daminozide","NOQGZXFMHARMLW-UHFFFAOYSA-N","CN(C)NC(=O)CCC(O)=O","C6H12N2O3","160.173","139",NA,NA,NA +1571,"80-08-0","DTXSID4020371","Dapsone","MQJKPEGWNLWLTK-UHFFFAOYSA-N","NC1=CC=C(C=C1)S(=O)(=O)C1=CC=C(N)C=C1","C12H12N2O2S","248.3","255",NA,NA,NA +1572,"139340-56-0","DTXSID0047246","Darbufelone mesylate","BAZGFSKJAVQJJI-CHHCPSLASA-N","CS(O)(=O)=O.CC(C)(C)C1=CC(\C=C2/SC(=N)NC2=O)=CC(=C1O)C(C)(C)C","C19H28N2O5S2","428.56","9",NA,NA,NA +1575,"533-74-4","DTXSID7024902","Dazomet","QAYICIQNSGETAS-UHFFFAOYSA-N","CN1CSC(=S)N(C)C1","C5H10N2S2","162.27000000000001","112","industrial;pesticide;pesticide;pesticide","Unclassified","Dazomet is a dithiocarbamic ester that is 1,3,5-thiadiazinane with a thione moiety at position 2 and in which the hydrogens attached to the nitrogens are replaced by methyl groups. A fungicide, herbicide and nematicide, it is used prior to sowing or planting for the control of soil fungi, nematodes, bacteria and germinating weeds, and as fumigant for poultry litter and eggs to control Salmonella. It is a non-ozone-depleting alternative to methyl bromide. It has a role as a herbicide, a nematicide, an antibacterial agent and an antifungal agrochemical. It is a dithiocarbamic ester and a thiadiazinane." +1585,"1163-19-5","DTXSID9020376","1,1'-Oxybis[2,3,4,5,6-pentabromobenzene]","WHHGLZMJPXIBIX-UHFFFAOYSA-N","BrC1=C(Br)C(Br)=C(OC2=C(Br)C(Br)=C(Br)C(Br)=C2Br)C(Br)=C1Br","C12Br10O","959.17100000000005","100",NA,NA,NA +1587,"124-18-5","DTXSID6024913","Decane","DIOQZVSQGTUSAI-UHFFFAOYSA-N","CCCCCCCCCC","C10H22","142.286","403",NA,NA,NA +1588,"334-48-5","DTXSID9021554","Decanoic acid","GHVNFZFCNZKVNT-UHFFFAOYSA-N","CCCCCCCCCC(O)=O","C10H20O2","172.268","197",NA,NA,NA +1594,"1007-28-9","DTXSID0037495","Deisopropylatrazine","IVENSCMCQBJAKW-UHFFFAOYSA-N","CCNC1=NC(N)=NC(Cl)=N1","C5H8ClN5","173.6","69",NA,NA,NA +1595,"52918-63-5","DTXSID8020381","Deltamethrin","OWZREIFADZCYQD-NSHGMRRFSA-N","CC1(C)[C@@H](C=C(Br)Br)[C@H]1C(=O)O[C@H](C#N)C1=CC=CC(OC2=CC=CC=C2)=C1","C22H19Br2NO3","505.20600000000002","101","pesticide","Unclassified","Deltamethrin is a cyclopropanecarboxylate ester obtained by formal condensation between 3-(2,2-dibromovinyl)-2,2-dimethylcyclopropanecarboxylic acid and cyano(3-phenoxyphenyl)methanol. It is the active insecticide of the proinsecticide tralomethrin. It has a role as a pyrethroid ester insecticide, an agrochemical, an EC 3.1.3.16 (phosphoprotein phosphatase) inhibitor and a calcium channel agonist. It is an aromatic ether, an organobromine compound, a nitrile and a cyclopropanecarboxylate ester. It derives from a cis-3-(2,2-dibromovinyl)-2,2-dimethylcyclopropanecarboxylic acid." +1600,"2392-39-4","DTXSID3047429","Dexamethasone sodium phosphate","PLCQGRYPOISRTQ-FCJDYXGNSA-L","[Na+].[Na+].C[C@@H]1C[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@]2(C)[C@@]1(O)C(=O)COP([O-])([O-])=O","C22H28FNa2O8P","516.41","99",NA,NA,"Dexamethasone Sodium Phosphate is a sodium phosphate salt form of Dexamethasone, a synthetic adrenal corticosteroid with potent anti-inflammatory properties. In addition to binding to specific nuclear steroid receptors, dexamethasone also interferes with NF-kB activation and apoptotic pathways. This agent lacks the salt-retaining properties of other related adrenal hormones." +1601,"50-70-4","DTXSID5023588","D-Glucitol","FBPFZTCFMRRESA-JGWLITMVSA-N","OC[C@H](O)[C@@H](O)[C@H](O)[C@H](O)CO","C6H14O6","182.172","230",NA,NA,NA +1602,"103-23-1","DTXSID0020606","Bis(2-ethylhexyl)hexanedioate","SAOKZLXYCUGLFA-UHFFFAOYSA-N","CCCCC(CC)COC(=O)CCCCC(=O)OCC(CC)CCCC","C22H42O4","370.57400000000001","122",NA,NA,NA +1603,"117-81-7","DTXSID5020607","Di(2-ethylhexyl) phthalate","BJQHLKABXJIVAM-UHFFFAOYSA-N","CCCCC(CC)COC(=O)C1=C(C=CC=C1)C(=O)OCC(CC)CCCC","C24H38O4","390.56400000000002","147","industrial;pesticide","Unclassified","Diethylhexylphthalate is a colorless, oily organic carcinogen with a slight odor. Bis(2-Ethylhexyl) Phthalate is mainly used as a plasticizer for fabricating flexible materials for many household products. Inhalation, digestion, and dermal contact are the primary routes of potential exposure, which was linked to increased incidence of hepatocellular carcinomas in animals. This substance is reasonably anticipated to be a human carcinogen." +1604,"27138-31-4","DTXSID6027921","Di(propylene glycol) dibenzoate","IZYUWBATGXUSIK-UHFFFAOYSA-N","CC(COCC(C)OC(=O)C1=CC=CC=C1)OC(=O)C1=CC=CC=C1","C20H22O5","342.39100000000002","35",NA,NA,NA +1605,"123-42-2","DTXSID6024917","Diacetone alcohol","SWXVUIWOUIDPGS-UHFFFAOYSA-N","CC(=O)CC(C)(C)O","C6H12O2","116.16","119",NA,NA,NA +1606,"131-17-9","DTXSID7020392","Diallyl phthalate","QUDWYFHPNIMBFC-UHFFFAOYSA-N","C=CCOC(=O)C1=C(C=CC=C1)C(=O)OCC=C","C14H14O4","246.262","107",NA,NA,"Diallyl phthalate is a clear pale-yellow liquid. Odorless." +1607,"439-14-5","DTXSID4020406","Diazepam","AAOVKJBEBIDNHE-UHFFFAOYSA-N","CN1C2=C(C=C(Cl)C=C2)C(=NCC1=O)C1=CC=CC=C1","C16H13ClN2O","284.74","157",NA,NA,NA +1608,"333-41-5","DTXSID9020407","Diazinon","FHIVAFMUCKRCQO-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=NC(=NC(C)=C1)C(C)C","C12H21N2O3PS","304.33999999999997","146","pharmacological;pesticide","Unclassified","Diazinon is a member of the class of pyrimidines that is pyrimidine carrying an isopropyl group at position 2, a methyl group at position 6 and a (diethoxyphosphorothioyl)oxy group at position 4. It has a role as an agrochemical, an acaricide, an EC 3.1.1.8 (cholinesterase) inhibitor, a nematicide, an EC 3.1.1.7 (acetylcholinesterase) inhibitor, a xenobiotic and an environmental contaminant. It is an organic thiophosphate and a member of pyrimidines. It derives from a 2-isopropyl-6-methylpyrimidin-4-ol." +1609,"962-58-3","DTXSID5037523","Diazoxon","VBLJFQYCTRKKKF-UHFFFAOYSA-N","CCOP(=O)(OCC)OC1=NC(=NC(C)=C1)C(C)C","C12H21N2O4P","288.28399999999999","38","pesticide","Unclassified","Diazoxon is an organic phosphate that is diethyl hydrogen phosphate in which the hydrogen of the hydroxy group has been replaced by a 6-methyl-2-(propan-2-yl)pyrimidin-4-yl group. It is a metabolite of the pesticide diazinon. It has a role as a marine xenobiotic metabolite. It is an organic phosphate and a member of pyrimidines." +1610,"215-58-7","DTXSID9049245","Dibenz[a,c]anthracene","RAASUWZPTOJQAY-UHFFFAOYSA-N","C1=CC=C2C=C3C4=CC=CC=C4C4=CC=CC=C4C3=CC2=C1","C22H14","278.35399999999998","94",NA,NA,"Dibenz[a,c]anthracene is a carbopolycyclic compound." +1611,"53-70-3","DTXSID9020409","Dibenz(a,h)anthracene","LHRCREOYAASXPZ-UHFFFAOYSA-N","C1=CC2=CC=C3C=C4C(C=CC5=CC=CC=C45)=CC3=C2C=C1","C22H14","278.35399999999998","103",NA,"PAH","Dibenzo[a,h]anthracene is a crystalline, carcinogenic aromatic hydrocarbon consisting of five fused benzene rings, produced by the incomplete combustion of organic matter. Dibenzo(a,h)anthracene is primarily found in gasoline exhaust, tobacco smoke, coal tar, soot and certain food products, especially smoked and barbecued foods. This substance is used only for research purposes to induce tumorigenesis. Dibenzo(a,h)anthracene is a mutagen and is reasonably anticipated to be a human carcinogen." +1612,"189-64-0","DTXSID4059752","Dibenzo[a,h]pyrene","RXUSYFJGDZFVND-UHFFFAOYSA-N","C1=CC=C2C(=C1)C=C1C=CC3=C4C(C=CC2=C14)=CC1=CC=CC=C31","C24H14","302.37599999999998","69",NA,"PAH","Dibenzo[a,h]pyrene is a crystalline, aromatic hydrocarbon consisting of six fused rings and formed during the incomplete combustion of organic matter. Dibenzo[a,h]pyrene is primarily found in engine exhaust, cigarette tar and coal tar pitch. Dibenzo[a,h]pyrene is reasonably anticipated to be a human carcinogen." +1613,"189-55-9","DTXSID9059751","Dibenzo[a,i]pyrene","TUGYIJVAYAHHHM-UHFFFAOYSA-N","C1=CC=C2C(=C1)C=C1C=CC3=CC4=CC=CC=C4C4=CC=C2C1=C34","C24H14","302.37599999999998","56",NA,"PAH","Dibenzo[a,i]pyrene is an aromatic hydrocarbon that consists of six fused rings and is produced by the incomplete combustion of organic matter. Dibenzo[a,i]pyrene is primarily found in gasoline exhaust, tobacco smoke and coal tar. Dibenzo[a,i]pyrene is reasonably anticipated to be a human carcinogen." +1616,"191-30-0","DTXSID9059753","Dibenzo[a,l]pyrene","JNTHRSHGARDABO-UHFFFAOYSA-N","C1=CC=C2C(=C1)C=C1C=CC3=C4C(=CC=C3)C3=CC=CC=C3C2=C14","C24H14","302.37599999999998","61",NA,"PAH","Dibenzo (a,l) pyrene is a yellowish-reddish, carcinogenic aromatic hydrocarbon consisting of six fused rings and produced by the incomplete combustion of organic matter. Dibenzo[a,e]pyrene is primarily found in coal gasification products, cigarette smoke and fossil fuels. This substance is used only for research purposes to induce tumorigenesis. Dibenzo[a,e]pyrene is a mutagen and is reasonably anticipated to be a human carcinogen." +1614,"191-30-0","DTXSID9059753","Dibenzo[a,l]pyrene","JNTHRSHGARDABO-UHFFFAOYSA-N","C1=CC=C2C(=C1)C=C1C=CC3=C4C(=CC=C3)C3=CC=CC=C3C2=C14","C24H14","302.37599999999998","61",NA,"PAH","Dibenzo (a,l) pyrene is a yellowish-reddish, carcinogenic aromatic hydrocarbon consisting of six fused rings and produced by the incomplete combustion of organic matter. Dibenzo[a,e]pyrene is primarily found in coal gasification products, cigarette smoke and fossil fuels. This substance is used only for research purposes to induce tumorigenesis. Dibenzo[a,e]pyrene is a mutagen and is reasonably anticipated to be a human carcinogen." +1615,"84030-79-5","DTXSID10232936","Naphth(2,3-a)aceanthrylene","QTOPJEQPIXGHRY-UHFFFAOYSA-N","C1=CC=C2C=C3C(=CC2=C1)C1=CC=CC2=CC4=CC=CC=C4C3=C12","C24H14","302.37599999999998","19",NA,NA,"Potential endocrine disruptor" +1617,"205-97-0","DTXSID0075441","Dibenzo[b,k]fluoranthene","JKKWIMTZWPKTTI-UHFFFAOYSA-N","C1=CC=C2C=C3C(=CC2=C1)C1=CC=CC2=C1C3=CC1=CC=CC=C21","C24H14","302.37599999999998","22",NA,NA,"Dibenzo[b,k]fluoranthene is a polycyclic aromatic hydrocarbons (PAHs) on the list if chemicals of emerging concern (CECs) by the EPA." +1618,"203-18-9","DTXSID30174182","Dibenzo(j,l)fluoranthene","JYVYSXOKKXPQHQ-UHFFFAOYSA-N","C1=CC=C2C(=C1)C1=C(C3=CC=CC4=C3C1=CC=C4)C1=CC=CC=C21","C24H14","302.37599999999998","21",NA,NA,"Polycyclic aromatic hydrocarbon (PAH); important environmental mutagen." +1619,"132-64-9","DTXSID2021993","Dibenzofuran","TXCDCPKCNAJMEE-UHFFFAOYSA-N","O1C2=CC=CC=C2C2=C1C=CC=C2","C12H8O","168.19499999999999","159",NA,"dioxinsAndFurans","Exposure to dibenzofuran may occur from inhalation of contaminated air, or ingesting contaminated drinking water or food. No information is available on the acute (short-term), chronic (long-term), reproductive, developmental, and carcinogenic effects of dibenzofuran in humans or animals. Health effects information is available on the polychlorinated dibenzofurans; however, the U.S. Environmental Protection Agency (EPA) has noted that the biological activity of various chlorinated dibenzofurans varies greatly, thus, risk assessment by analogy to any of these more widely studied compounds would not be recommended. EPA has classified dibenzofuran as a Group D, not classifiable as to human carcinogenicity." +1620,"132-65-0","DTXSID0047741","Dibenzothiophene","IYYZUPMFVPLQIF-UHFFFAOYSA-N","S1C2=C(C=CC=C2)C2=C1C=CC=C2","C12H8S","184.26","220","pharmacological;personalCare;industrial","PAH","Dibenzothiophene is a sulfur-containing polycyclic aromatic hydrocarbon (PAH) derivate consisting of 3 fused rings with keratolytic activity. Dibenzothiophene is a component of petroleum oils and also has a role as a keratolytic drug. It is a member of dibenzothiophenes and a mancude organic heterotricyclic parent." +1621,"3252-43-5","DTXSID3024940","Dibromoacetonitrile","NDSBDLSWTGLNQA-UHFFFAOYSA-N","BrC(Br)C#N","C2HBr2N","198.845","85",NA,NA,NA +1622,"109-43-3","DTXSID1041847","Dibutyl decanedioate","PYGXAGIECVVIOZ-UHFFFAOYSA-N","CCCCOC(=O)CCCCCCCCC(=O)OCCCC","C18H34O4","314.46600000000001","106",NA,NA,NA +1623,"105-99-7","DTXSID2021866","Dibutyl adipate","XTJFFFGAUHQWII-UHFFFAOYSA-N","CCCCOC(=O)CCCCC(=O)OCCCC","C14H26O4","258.358","82",NA,NA,NA +1624,"84-74-2","DTXSID2021781","Dibutyl phthalate","DOIRQSBPFJWKBE-UHFFFAOYSA-N","CCCCOC(=O)C1=CC=CC=C1C(=O)OCCCC","C16H22O4","278.34800000000001","189","personalCare;industrial;pesticide","Unclassified","Dibutyl phthalate is a phthalate ester that is the diester obtained by the formal condensation of the carboxy groups of phthalic acid with two molecules of butan-1-ol. Although used extensively as a plasticiser, it is a ubiquitous environmental contaminant that poses a risk to humans. It has a role as an environmental contaminant, a teratogenic agent, a plasticiser, a metabolite and an EC 3.2.1.20 (alpha-glucosidase) inhibitor. It is a phthalate ester and a diester. It derives from a butan-1-ol." +1625,"1918-00-9","DTXSID4024018","Dicamba","IWEDIXLBFLAXBO-UHFFFAOYSA-N","COC1=C(Cl)C=CC(Cl)=C1C(O)=O","C8H6Cl2O3","221.03","151","pesticide","Unclassified","Dicamba is a methoxybenzoic acid that is O-methylsalicylic acid substituted by chloro groups at positions 3 and 6. It has a role as a xenobiotic, an environmental contaminant, a herbicide, a synthetic auxin and an agrochemical. It is a methoxybenzoic acid and a dichlorobenzene. It is a conjugate acid of a 3,6-dichloro-2-methoxybenzoate." +1626,"1194-65-6","DTXSID5032365","Dichlobenil","YOYAIZYFCNQIRF-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1C#N","C7H3Cl2N","172.01","182","pesticide","Unclassified","2,6-dichlorobenzonitrile is a nitrile that is benzonitrile which is substituted by chlorines at positions 2 and 6. A cellulose synthesis inhibitor, it is used as a pre-emergent and early post-emergent herbicide. It has a role as a herbicide, an agrochemical, a cellulose synthesis inhibitor, a xenobiotic and an environmental contaminant. It is a nitrile and a dichlorobenzene. It derives from a benzonitrile." +1627,"79-43-6","DTXSID2020428","Dichloroacetic acid","JXTHNDFMNIQAHM-UHFFFAOYSA-N","OC(=O)C(Cl)Cl","C2H2Cl2O2","128.94","178",NA,NA,"Dichloroacetic acid, often abbreviated DCA, is an acid analogue of acetic acid in which two of the three hydrogen atoms of the methyl group have been replaced by chlorine atoms. Salts of DCA are used as drugs since they inhibit the enzyme pyruvate dehydrogenase kinase. Early reports of its activity against brain cancer cells led patients to treat themselves with DCA, which is commercially available in non-pharmaceutical grade. A phase 1 study in 5 patients concluded that DCA was safe, but wasn't designed to establish effectiveness. DCA was approved for use in Canada in 1989 (as a topical formulation for treatment of warts and for cauterization and removal of a wide variety of skin and tissue lesions), but was cancelled post market." +1629,"50-29-3","DTXSID4020375","Dichlorodiphenyltrichloroethane","YVGGHNCTFXOJCH-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C(C1=CC=C(Cl)C=C1)C(Cl)(Cl)Cl","C14H9Cl5","354.48","139","pesticide","Unclassified","DDT is a chlorophenylethane that is 1,1,1-trichloro-2,2-diphenylethane substituted by additional chloro substituents at positions 4 of the phenyl substituents. It is a commonly used organochlorine insecticide. It has a role as a bridged diphenyl acaricide, a carcinogenic agent, a persistent organic pollutant and an endocrine disruptor. It is an organochlorine insecticide, a benzenoid aromatic compound, a member of monochlorobenzenes and a chlorophenylethane. It derives from a 1,1,1-trichloro-2,2-diphenylethane and a 4,4'-dichlorodiphenylmethane." +1630,"120-36-5","DTXSID0020440","Dichlorprop","MZHCENGPTKEIGP-UHFFFAOYSA-N","CC(OC1=C(Cl)C=C(Cl)C=C1)C(O)=O","C9H8Cl2O3","235.06","134","pesticide","Unclassified","Dichlorprop is a chlorophenoxy herbicide similar in structure to 2,4-D that is used to kill annual and perennial broadleaf weeds. It is a component of many common weedkillers. About 4 million pounds of dichlorprop are used annually in the United States. Dichlorprop is a yellowish to colorless solid." +1631,"62-73-7","DTXSID5020449","Dichlorvos","OEBRKCOSUFCWJD-UHFFFAOYSA-N","COP(=O)(OC)OC=C(Cl)Cl","C4H7Cl2O4P","220.97","147","pesticide","Unclassified","Dichlorvos is a synthetic organophosphate acetylcholinesterase inhibitor and probable mutagen, neurotoxin, and reproduction toxicant that is used as a pesticide. It is characterized as a volatile pale-yellow clear liquid, and exposure occurs by inhalation, ingestion, or contact." +1632,"15307-79-6","DTXSID3037208","Diclofenac sodium","KPHWPUGNDIVLNH-UHFFFAOYSA-M","[Na+].[O-]C(=O)CC1=C(NC2=C(Cl)C=CC=C2Cl)C=CC=C1","C14H10Cl2NNaO2","318.13","186",NA,NA,NA +1634,"51338-27-3","DTXSID0032605","Methyl (RS)-2-[4-(2,4-dichlorophenoxy)phenoxy]propionate","BACHBFVBHLGWSL-UHFFFAOYSA-N","COC(=O)C(C)OC1=CC=C(OC2=CC=C(Cl)C=C2Cl)C=C1","C16H14Cl2O4","341.18","74","pesticide","Unclassified","Methyl 2-[4-(2,4-dichlorophenoxy)phenoxy]propanoate is a methyl ester resulting from the formal condensation of the carboxylic acid group of 2-[4-(2,4-dichlorophenoxy)phenoxy]propanoic acid with methanol. It is an aromatic ether, a dichlorobenzene, a diether and a methyl ester. Diclofop methyl appears as colorless crystals. Decomposed by either strong acid or base. Used as a selective herbicide." +1635,"99-30-9","DTXSID2020426","Dicloran","BIXZHMJUSMUDOQ-UHFFFAOYSA-N","NC1=C(Cl)C=C(C=C1Cl)[N+]([O-])=O","C6H4Cl2N2O2","207.01","185","industrial;pesticide","Unclassified","2,6-dichloro-4-nitroaniline is a nitroaniline that is 4-nitroaniline in which the hydrogens at positions 2 and 6 are replaced by chlorines. An agricultural fungicide, it is not approved for use in the European Union. It has a role as an antifungal agrochemical. It is a dichlorobenzene, an aromatic fungicide and a nitroaniline." +1636,"145701-21-9","DTXSID4034528","Diclosulam","QNXAVFXEJCPCJO-UHFFFAOYSA-N","CCOC1=NC(F)=CC2=NC(=NN12)S(=O)(=O)NC1=C(Cl)C=CC=C1Cl","C13H10Cl2FN5O3S","406.21","63",NA,NA,NA +1637,"115-32-2","DTXSID4020450","Dicofol","UOAMTSKGCBMZTC-UHFFFAOYSA-N","OC(C1=CC=C(Cl)C=C1)(C1=CC=C(Cl)C=C1)C(Cl)(Cl)Cl","C14H9Cl5O","370.48","77","pesticide","Unclassified","Dicofol or kelthane is a white crystalline, wettable powder dissolved in a liquid carrier, (water). The primary hazard is the threat to the environment. Immediate steps should be taken to limit its spread to the environment. Since it is a liquid it can easily penetrate the soil and contaminate groundwater and nearby streams. It can cause illness by inhalation, skin absorption, and/or ingestion. It is used as a pesticide." +1638,"141-66-2","DTXSID9023914","Dicrotophos","VEENJGZXVHKXNB-VOTSOKGWSA-N","COP(=O)(OC)O\C(C)=C\C(=O)N(C)C","C8H16NO5P","237.19200000000001","62","pesticide","Unclassified","Dicrotophos is a dialkyl phosphate and an organophosphate insecticide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an acaricide, an avicide and an agrochemical." +1639,"80-43-3","DTXSID1025017","Dicumyl peroxide","XMNIXWIUMCBBBL-UHFFFAOYSA-N","CC(C)(OOC(C)(C)C1=CC=CC=C1)C1=CC=CC=C1","C18H22O2","270.37200000000001","88",NA,NA,NA +1640,"2550-40-5","DTXSID4047628","Dicyclohexyl disulfide","ODHAQPXNQDBHSH-UHFFFAOYSA-N","C1CCC(CC1)SSC1CCCCC1","C12H22S2","230.43","85",NA,NA,NA +1641,"7173-51-5","DTXSID9032537","Didecyldimethylammonium chloride","RUPBZQFQVRMKDG-UHFFFAOYSA-M","[Cl-].CCCCCCCCCC[N+](C)(C)CCCCCCCCCC","C22H48ClN","362.08","90",NA,NA,NA +1642,"60-57-1","DTXSID9020453","Dieldrin","DFBKLUNHFCTMDC-PICURKEMSA-N","ClC1=C(Cl)[C@]2(Cl)[C@@H]3[C@@H]4C[C@@H]([C@H]5O[C@@H]45)[C@@H]3[C@@]1(Cl)C2(Cl)Cl","C12H8Cl6O","380.9","59","pesticide","Unclassified","Dieldrin is an organochlorine compound resulting from the epoxidation of the double bond of aldrin. It is the active metabolite of the proinsecticde aldrin. It has a role as a xenobiotic and a carcinogenic agent. It is an organochlorine insecticide, an organochlorine compound and an epoxide. It derives from an aldrin." +1643,"111-42-2","DTXSID3021932","Diethanolamine","ZBCBWPMODOFKDW-UHFFFAOYSA-N","OCCNCCO","C4H11NO2","105.137","286",NA,NA,NA +1644,"123-25-1","DTXSID2038732","Diethyl butanedioate","DKMROQRQHGEIOW-UHFFFAOYSA-N","CCOC(=O)CCC(=O)OCC","C8H14O4","174.196","128",NA,NA,NA +1645,"84-66-2","DTXSID7021780","Diethyl phthalate","FLKPEMZONWLCSK-UHFFFAOYSA-N","CCOC(=O)C1=CC=CC=C1C(=O)OCC","C12H14O4","222.24","170","industrial;pesticide","Unclassified","Diethyl phthalate is a colorless liquid that has a bitter, disagreeable taste. This synthetic substance is commonly used to make plastics more flexible. Products in which it is found include toothbrushes, automobile parts, tools, toys, and food packaging. Diethyl phthalate can be released fairly easily from these products, as it is not part of the chain of chemicals (polymers) that makes up the plastic. Diethyl phthalate is also used in cosmetics, insecticides, and aspirin." +1646,"64-67-5","DTXSID1024045","Diethyl sulfate","DENRZWYUOJLTMF-UHFFFAOYSA-N","CCOS(=O)(=O)OCC","C4H10O4S","154.18","113",NA,NA,NA +10020,"322-08-9","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +1648,"111-46-6","DTXSID8020462","Diethylene glycol","MTHSVFCYNBDYFN-UHFFFAOYSA-N","OCCOCCO","C4H10O3","106.121","3625","industrial","Unclassified","Diethylene glycol appears as a colorless liquid. Denser than water. Contact may slightly irritate skin, eyes and mucous membranes. May be slightly toxic by ingestion. Used to make other chemicals." +1649,"120-55-8","DTXSID0026967","Diethylene glycol dibenzoate","NXQMCAOPTPLPRL-UHFFFAOYSA-N","O=C(OCCOCCOC(=O)C1=CC=CC=C1)C1=CC=CC=C1","C18H18O5","314.33699999999999","70",NA,NA,NA +1650,"111-77-3","DTXSID3025049","Diethylene glycol monomethyl ether","SBASXUCJHJRPEV-UHFFFAOYSA-N","COCCOCCO","C5H12O3","120.148","395",NA,NA,NA +1651,"56-53-1","DTXSID3020465","Diethylstilbestrol","RGLYKWWBQGJZGM-ISLYRVAYSA-N","CC\C(=C(\CC)C1=CC=C(O)C=C1)C1=CC=C(O)C=C1","C18H20O2","268.35599999999999","231","pharmacological","Unclassified","Diethylstilbestrol is an olefinic compound that is trans-hex-3-ene in which the hydrogens at positions 3 and 4 have been replaced by p-hydroxyphenyl groups. It has a role as an antineoplastic agent, a carcinogenic agent, a xenoestrogen, an EC 3.6.3.10 (H(+)/K(+)-exchanging ATPase) inhibitor, an antifungal agent, an endocrine disruptor, an EC 1.1.1.146 (11beta-hydroxysteroid dehydrogenase) inhibitor, an autophagy inducer and a calcium channel blocker. It is a polyphenol and an olefinic compound." +1652,"119446-68-3","DTXSID4032372","Difenoconazole","BQYJATMQXGBDHF-UHFFFAOYSA-N","CC1COC(CN2C=NC=N2)(O1)C1=C(Cl)C=C(OC2=CC=C(Cl)C=C2)C=C1","C19H17Cl2N3O3","406.26","92","pesticide","Unclassified","Difenoconazole is a member of the class of dioxolanes that is 1,3-dioxolane substituted at position 2 by 2-chloro-4-(4-chlorophenoxy)phenyl and 1,2,4-triazol-1-ylmethyl groups. A broad spectrum fungicide with novel broad-range activity used as a spray or seed treatment. It is moderately toxic to humans, mammals, birds and most aquatic organisms. It has a role as an environmental contaminant, a xenobiotic, an EC 1.14.13.70 (sterol 14alpha-demethylase) inhibitor and an antifungal agrochemical. It is an aromatic ether, a dioxolane, a member of triazoles, a cyclic ketal, a conazole fungicide and a triazole fungicide." +1653,"43222-48-6","DTXSID6024048","Difenzoquat metilsulfate","XQEMNBNCQVQXMO-UHFFFAOYSA-M","COS([O-])(=O)=O.CN1C(=CC(C2=CC=CC=C2)=[N+]1C)C1=CC=CC=C1","C18H20N2O4S","360.43","46",NA,NA,NA +1654,"84-75-3","DTXSID6025068","Dihexyl phthalate","KCXZNSGUUQJJTR-UHFFFAOYSA-N","CCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCC","C20H30O4","334.45600000000002","103","industrial","Unclassified","Di-n-hexyl phthalate is a yellow-brown oily viscous liquid with a slight aromatic odor. Insoluble in water." +1655,"141-04-8","DTXSID9036690","Diisobutyl adipate","RDOFJDLLWVCMRU-UHFFFAOYSA-N","CC(C)COC(=O)CCCCC(=O)OCC(C)C","C14H26O4","258.358","86",NA,NA,NA +1656,"84-69-5","DTXSID9022522","Diisobutyl phthalate","MGWAVDBGNNKXQV-UHFFFAOYSA-N","CC(C)COC(=O)C1=C(C=CC=C1)C(=O)OCC(C)C","C16H22O4","278.34800000000001","112","industrial","Unclassified","Diisobutyl phthalate is a phthalate ester that is the diester obtained by the formal condensation of the carboxy groups of phthalic acid with two molecules of isobutanol. It has a role as a plasticiser, a teratogenic agent and a PPAR modulator. It is a phthalate ester and a diester. It derives from an isobutanol." +1657,"27178-16-1","DTXSID1027924","Diisodecyl hexanedioate","-","-","-","-","-",NA,NA,NA +1658,"166412-78-8","DTXSID8047395","Diisononyl cyclohexane-1,2-dicarboxylate","-","-","-","-","-",NA,NA,NA +1659,"1445-75-6","DTXSID5024051","Bis(1-methylethyl) methylphosphonate","WOAFDHWYKSOANX-UHFFFAOYSA-N","CC(C)OP(C)(=O)OC(C)C","C7H17O3P","180.184","73",NA,NA,NA +1662,"87674-68-8","DTXSID4032376","Dimethenamid","JLYFCTQDENRSOL-UHFFFAOYSA-N","COCC(C)N(C(=O)CCl)C1=C(C)SC=C1C","C12H18ClNO2S","275.79000000000002","-","pesticide","Unclassified","2-chloro-N-(2,4-dimethylthiophen-3-yl)-N-(1-methoxypropan-2-yl)acetamide is an organochlorine compound that is 2-chloroacetamide substituted by a 2,4-dimethylthiophen-3-yl and a 1-methoxypropan-2-yl group at the nitrogen atom. It is a member of thiophenes, an aromatic amide, an ether and an organochlorine compound." +1663,"55290-64-7","DTXSID0024052","Dimethipin","PHVNLLCAQHGNKU-UHFFFAOYSA-N","CC1=C(C)S(=O)(=O)CCS1(=O)=O","C6H10O4S2","210.26","62","pesticide","Unclassified","Dimethipin is a sulfone used as a defoliant. Dimethipin appears as colorless crystals with a mild odor." +1664,"60-51-5","DTXSID7020479","Dimethoate","MCWXGJITAZMZEV-UHFFFAOYSA-N","CNC(=O)CSP(=S)(OC)OC","C5H12NO3PS2","229.25","135","pharmacological;pesticide","Unclassified","Dimethoate appears as a white crystalline solid, with a camphor-like odor, white to grayish crystals for technical product. This material is a contact and systemic organophosphate insecticide effective against a broad range of insects and mites when applied on a wide range of crops. It has not been produced in the U.S. since 1982." +1665,"110488-70-5","DTXSID7034545","Dimethomorph","QNBTYORWCCMPQP-UHFFFAOYSA-N","COC1=C(OC)C=C(C=C1)C(=CC(=O)N1CCOCC1)C1=CC=C(Cl)C=C1","C21H22ClNO4","387.86","25","pesticide","Unclassified","Dimethomorph is a fungicide with systemic function. It is used for treating mildew and root rot caused by organisms such as Pythium and Phytophthora species.[" +1666,"828-00-2","DTXSID6020480","Dimethoxane","PHMNXPYGVPEQSJ-UHFFFAOYSA-N","CC1CC(OC(C)=O)OC(C)O1","C8H14O4","174.196","58",NA,NA,"A transparent liquid with a mustard-like odor. Dimethoxane is used as a preservative in gasoline, mineral oils, resin emulsions, inks, and water-based paints." +1667,"627-93-0","DTXSID8025096","Dimethyl adipate","UDSFAEKRVUSQDD-UHFFFAOYSA-N","COC(=O)CCCCC(=O)OC","C8H14O4","174.196","132",NA,NA,NA +1669,"1119-40-0","DTXSID3025122","Dimethyl glutarate","XTDYIOOONNVFMA-UHFFFAOYSA-N","COC(=O)CCCC(=O)OC","C7H12O4","160.16900000000001","136",NA,NA,NA +1670,"868-85-9","DTXSID5020493","Dimethyl phosphonate","HZCDANOFLILNSA-UHFFFAOYSA-N","COP(=O)OC","C2H7O3P","110.04900000000001","96",NA,NA,"Dimethyl hydrogen phosphite is an organooxygen compound." +1671,"108-59-8","DTXSID4029145","Dimethyl malonate","BEPAFCGSDWSTEL-UHFFFAOYSA-N","COC(=O)CC(=O)OC","C5H8O4","132.11500000000001","134",NA,NA,NA +1672,"756-79-6","DTXSID0020494","Dimethyl methylphosphonate","VONWDASPFIQPDY-UHFFFAOYSA-N","COP(C)(=O)OC","C3H9O3P","124.07599999999999","105",NA,NA,NA +1673,"20120-33-6","DTXSID9040215","Dimethyl (3-((hydroxymethyl)amino)-3-oxopropyl)phosphonate","MCONGYNHPPCHSD-UHFFFAOYSA-N","COP(=O)(CCC(=O)NCO)OC","C6H14NO5P","211.154","79",NA,NA,NA +1674,"131-11-3","DTXSID3022455","Dimethyl phthalate","NIQCNGHVCWTJSM-UHFFFAOYSA-N","COC(=O)C1=C(C=CC=C1)C(=O)OC","C10H10O4","194.18600000000001","148","industrial;pesticide","Unclassified","Dimethyl phthalate has many uses, including in solid rocket propellants, plastics, and insect repellants. Acute (short-term) exposure to dimethyl phthalate, via inhalation in humans and animals, results in irritation of the eyes, nose, and throat. No information is available on the chronic (long-term), reproductive, developmental, or carcinogenic effects of dimethyl phthalate in humans. Animal studies have reported slight effects on growth and on the kidney from chronic oral exposure to the chemical. EPA has classified dimethyl phthalate as a Group D, not classifiable as to human carcinogencity" +1675,"106-65-0","DTXSID5025152","Dimethyl succinate","MUXOBHXGJLMRAB-UHFFFAOYSA-N","COC(=O)CCC(=O)OC","C6H10O4","146.142","128",NA,NA,NA +1676,"77-78-1","DTXSID5024055","Dimethyl sulfate","VAYGXNSJCAHWJZ-UHFFFAOYSA-N","COS(=O)(=O)OC","C2H6O4S","126.13","105",NA,NA,NA +1677,"120-61-6","DTXSID0020498","Dimethyl terephthalate","WOZVHXUHUFLZGK-UHFFFAOYSA-N","COC(=O)C1=CC=C(C=C1)C(=O)OC","C10H10O4","194.18600000000001","143",NA,NA,"Dimethyl benzene-1,4-dicarboxylate, also known as Dimethyl terephthalate (DMT), is an organic compound with and is the diester formed from terephthalic acid and methanol. It is a white solid that melts to give a distillable colourless liquid. DMT is used in the production of polyesters, including polyethylene terephthalate (PET), polytrimethylene terephthalate (PTT), and polybutylene terephthalate (PBT)." +1678,"108-01-0","DTXSID2020505","Dimethylaminoethanol","UEEJHVSXFDXPFK-UHFFFAOYSA-N","CN(C)CCO","C4H11NO","89.138000000000005","183",NA,NA,NA +1679,"75-60-5","DTXSID7020508","Dimethylarsinic acid","OGGXGZAMXPVRFZ-UHFFFAOYSA-N","C[As](C)(O)=O","C2H7AsO2","137.99799999999999","402",NA,NA,NA +1680,"79-44-7","DTXSID1020512","Dimethylcarbamoyl chloride","YIIMEMSDCNDGTB-UHFFFAOYSA-N","CN(C)C(Cl)=O","C3H6ClNO","107.54","124",NA,NA,NA +1684,"83657-24-3","DTXSID2040363","Diniconazole","FBOUIAKEJMZPQG-AWNIVKPZSA-N","CC(C)(C)C(O)C(=C/C1=C(Cl)C=C(Cl)C=C1)\N1C=NC=N1","C15H17Cl2N3O","326.22000000000003","67","pesticide","Unclassified","(1E)-1-(2,4-dichlorophenyl)-4,4-dimethyl-2-(1,2,4-triazol-1-yl)pent-1-en-3-ol is a member of the class of triazoles that is 4,4-dimethyl-2-(1,2,4-triazol-1-yl)pent-1-en-3-ol substituted at position 1 by a 2,4-dichlorophenyl group. It is a dichlorobenzene, an olefinic compound, a secondary alcohol and a member of triazoles." +1685,"88-85-7","DTXSID3020207","Dinoseb","OWZPCEFYPSAJFR-UHFFFAOYSA-N","CCC(C)C1=CC(=CC(=C1O)[N+]([O-])=O)[N+]([O-])=O","C10H12N2O5","240.215","82","pesticide;pesticide;pesticide","Unclassified","Dinoseb appears as orange-brown viscous liquid or orange-brown solid. Orange crystals when pure. Has a pungent odor. Used as a plant growth regulator; insecticide and herbicide." +1686,"117-84-0","DTXSID1021956","Di-n-octyl phthalate","MQIUGAXCHLFZKX-UHFFFAOYSA-N","CCCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCC","C24H38O4","390.56400000000002","135","industrial","Unclassified","Di-n-octylphthalate is a colorless, odorless, oily liquid that doesn't evaporate easily. It is a man-made substance used to keep plastics soft or more flexible. This type of plastic can be used for medical tubing and blood storage bags, wire and cables, carpetback coating, floor tile, and adhesives. It is also used in cosmetics and pesticides." +1687,"2432-87-3","DTXSID0047537","Dioctyl sebacate","MIMDHDXOBDPUQW-UHFFFAOYSA-N","CCCCCCCCOC(=O)CCCCCCCCC(=O)OCCCCCCCC","C26H50O4","426.68200000000002","71",NA,NA,NA +1688,"131-18-0","DTXSID5031131","Dipentyl phthalate","IPKKHRVROFYTEK-UHFFFAOYSA-N","CCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCC","C18H26O4","306.40199999999999","113","industrial","Unclassified","Dipentyl phthalate is a phthalate ester that is the dipentyl ester of benzene-1,2-dicarboxylic acid. It has a role as a plasticiser. It is a phthalate ester and a diester. It derives from a pentan-1-ol." +1689,"147-24-0","DTXSID4020537","Diphenhydramine hydrochloride","PCHPORCSPXIHLZ-UHFFFAOYSA-N","Cl.CN(C)CCOC(C1=CC=CC=C1)C1=CC=CC=C1","C17H22ClNO","291.82","166",NA,NA,"Diphenhydramine hydrochloride is the hydrochloride salt of diphenhydramine. It has a role as a H1-receptor antagonist, an antiemetic, a sedative, an anti-allergic agent, a muscarinic antagonist, an antiparkinson drug, an antipruritic drug and a local anaesthetic. It is a hydrochloride and an organoammonium salt. It contains a diphenhydramine." +1690,"744-45-6","DTXSID8037752","Diphenyl isophthalate","FHESUNXRPBHDQM-UHFFFAOYSA-N","O=C(OC1=CC=CC=C1)C1=CC(=CC=C1)C(=O)OC1=CC=CC=C1","C20H14O4","318.32799999999997","94",NA,NA,NA +1692,"122-39-4","DTXSID4021975","Diphenylamine","DMBHHRLKUKUOEG-UHFFFAOYSA-N","N(C1=CC=CC=C1)C1=CC=CC=C1","C12H11N","169.227","187","pesticide","Unclassified","Diphenylamine is an aromatic amine containing two phenyl substituents. It has been used as a fungicide for the treatment of superficial scald in apples and pears, but is no longer approved for this purpose within the European Union. It has a role as a carotogenesis inhibitor, an antioxidant, an EC 1.3.99.29 [phytoene desaturase (zeta-carotene-forming)] inhibitor and an antifungal agrochemical. It is an aromatic amine, a secondary amino compound and a bridged diphenyl fungicide." +1693,"136-45-8","DTXSID8032544","Dipropyl 2,5-pyridinedicarboxylate","IITCWRFYJWUUPC-UHFFFAOYSA-N","CCCOC(=O)C1=CC=C(N=C1)C(=O)OCCC","C13H17NO4","251.28200000000001","58","pesticide","Unclassified","Dipropyl isocinchomeronate appears as a solid." +1694,"25265-71-8","DTXSID0027856","Dipropylene glycol","-","-","-","-","-",NA,NA,"Dipropylene glycol is a mixture of three isomeric chemical compounds, 4-oxa-2,6-heptandiol, 2-(2-hydroxy-propoxy)-propan-1-ol, and 2-(2-hydroxy-1-methyl-ethoxy)-propan-1-ol. Dipropylene glycol finds many uses as a plasticizer, an intermediate in industrial chemical reactions, as a polymerization initiator or monomer, and as a solvent. Its low toxicity and solvent properties make it an ideal additive for perfumes and skin and hair care products. It is also a common ingredient in commercial fog fluid, used in entertainment industry fog machines." +1695,"6385-62-2","DTXSID7031248","Diquat dibromide monohydrate","KLJOSQAQZMLLMB-UHFFFAOYSA-L","O.[Br-].[Br-].C1C[N+]2=C(C=CC=C2)C2=[N+]1C=CC=C2","C12H14Br2N2O","362.065","39",NA,NA,NA +1697,"331623-06-4","DTXSID4047331","MK-547","UYBBLNHJCUVUCT-KODQONTISA-L","[Na+].[Na+].CCCCC1=NC2=C(C=C1)[C@@H]([C@H]([C@@H]2C1=CC=C(OC)C=C1C[C@H](C)C([O-])=O)C([O-])=O)C1=CC2=C(OCO2)C=C1","C31H31NNa2O7","575.56899999999996","6",NA,NA,NA +1699,"298-04-4","DTXSID0022018","Disulfoton","DOFZAZXDOSGAJZ-UHFFFAOYSA-N","CCOP(=S)(OCC)SCCSCC","C8H19O2PS3","274.39","106","pesticide","Unclassified","Disulfoton is an organophosphate acetylcholinesterase inhibitor used as an insecticide and has been restricted by the US government.. It is manufactured under the name Di-Syston by Bayer CropScience. Disulfoton in its pure form is a colorless oil but the technical product used in vegetable fields is dark and yellowish with a sulfur odor. Disulfoton is processed as a liquid into carrier granules, these granules are mixed with fertilizer and clay to be made into a spike, designed to be driven into the ground. The pesticide is absorbed over time by the roots and translocated to all parts of the plant. The pesticide acts as a cholinesterase inhibitor and gives long lasting control." +1700,"110-05-4","DTXSID2024955","Di-tert-butyl peroxide","LSXWFXONGKSEMY-UHFFFAOYSA-N","CC(C)(C)OOC(C)(C)C","C8H18O2","146.22999999999999","98",NA,NA,NA +1702,"97886-45-8","DTXSID9032379","Dithiopyr","YUBJPYNSGLJZPQ-UHFFFAOYSA-N","CSC(=O)C1=C(N=C(C(C(=O)SC)=C1CC(C)C)C(F)(F)F)C(F)F","C15H16F5NO2S2","401.41","54","pesticide","Unclassified","Dithiopyr is a member of pyridines, a thioester and an organofluorine compound. Dithiopyr is under investigation in clinical trial NCT01236781 (Comparison of Full-Field Digital Mammography With Digital Breast Tomography for Screening Call-Back Rates)." +1703,"330-54-1","DTXSID0020446","Diuron","XMTQQYYKAHVGBJ-UHFFFAOYSA-N","CN(C)C(=O)NC1=CC(Cl)=C(Cl)C=C1","C9H10Cl2N2O","233.09","165","pesticide","Unclassified","DCMU (3-(3,4-dichlorophenyl)-1,1-dimethylurea) is an algicide and herbicide of the arylurea class that inhibits photosynthesis. It was introduced by Bayer in 1954 under the trade name of Diuron." +1704,"69-65-8","DTXSID1023235","D-Mannitol","FBPFZTCFMRRESA-KVTDHHQDSA-N","OC[C@@H](O)[C@@H](O)[C@H](O)[C@H](O)CO","C6H14O6","182.172","427",NA,NA,"Mannitol is a naturally occurring alcohol found in fruits and vegetables and used as an osmotic diuretic. Mannitol is freely filtered by the glomerulus and poorly reabsorbed from the renal tubule, thereby causing an increase in osmolarity of the glomerular filtrate. An increase in osmolarity limits tubular reabsorption of water and inhibits the renal tubular reabsorption of sodium, chloride, and other solutes, thereby promoting diuresis. In addition, mannitol elevates blood plasma osmolarity, resulting in enhanced flow of water from tissues into interstitial fluid and plasma." +1706,"577-11-7","DTXSID8022959","Docusate sodium","APSBXTVYXVQYAB-UHFFFAOYSA-M","[Na+].CCCCC(CC)COC(=O)CC(C(=O)OCC(CC)CCCC)S([O-])(=O)=O","C20H37NaO7S","444.56","122",NA,NA,"Docusate Sodium is the sodium salt of docusate, a dioctyl salt and an emollient laxative with stool-softening activity. Docusate decreases surface tension and emulsification of fecal matter and allows water to penetrate and mix with stool. As a result, it softens the stool." +1707,"123-01-3","DTXSID7026994","Dodecylbenzene","KWKXNDCHNDYVRT-UHFFFAOYSA-N","CCCCCCCCCCCCC1=CC=CC=C1","C18H30","246.43799999999999","138",NA,NA,NA +1708,"27323-41-7","DTXSID5027932","Dodecylbenzene sulfonate triethanolamine(1:1)","-","-","-","-","-",NA,NA,NA +1709,"27176-87-0","DTXSID6027923","Dodecylbenzenesulfonic acid","-","CCCCCCCCCCCC*.OS(=O)(=O)C1=CC=CC=C1 |c:18,20,t:16,lp:13:2,15:2,16:2,m:12:20.21.22|","-","-","-",NA,NA,NA +1710,"112-00-5","DTXSID1026900","Dodecyltrimethylammonium chloride","DDXLVDQZPFLQMZ-UHFFFAOYSA-M","[Cl-].CCCCCCCCCCCC[N+](C)(C)C","C15H34ClN","263.89","101",NA,NA,NA +1756,"361343-19-3","DTXSID7047277","Elzasonan","LHYMPSWMHXUWSK-STZFKDTASA-N","CN1CCN(CC1)C1=CC=CC=C1\C=C1/SCCN(C1=O)C1=CC=C(Cl)C(Cl)=C1","C22H23Cl2N3OS","448.41","23",NA,NA,NA +1757,"155569-91-8","DTXSID0034566","Emamectin benzoate","-","-","-","-","-",NA,NA,NA +1762,"115-29-7","DTXSID1020560","Endosulfan","RDYMFSUJUZBWLH-UHFFFAOYSA-N","ClC1=C(Cl)C2(Cl)C3COS(=O)OCC3C1(Cl)C2(Cl)Cl","C9H6Cl6O3S","406.9","108",NA,NA,"Endosulfan is a cyclic sulfite ester that is 1,5,5a,6,9,9a-hexahydro-6,9-methano-2,4,3-benzodioxathiepine 3-oxide substituted by chloro groups at positions 6, 7, 8, 9, 10 and 10. It has a role as a GABA-gated chloride channel antagonist, an acaricide, an agrochemical and a persistent organic pollutant. It is a cyclodiene organochlorine insecticide and a cyclic sulfite ester." +1763,"145-73-3","DTXSID7024081","Endothal","GXEKYRXVRROBEV-UHFFFAOYSA-N","OC(=O)C1C2CCC(O2)C1C(O)=O","C8H10O5","186.16300000000001","91",NA,NA,NA +1764,"72-20-8","DTXSID6020561","Endrin","DFBKLUNHFCTMDC-GKRDHZSOSA-N","ClC1=C(Cl)[C@]2(Cl)[C@@H]3[C@H]4C[C@H]([C@@H]5O[C@H]45)[C@@H]3[C@@]1(Cl)C2(Cl)Cl","C12H8Cl6O","380.9","30","pesticide;pesticide;pesticide","Unclassified","Endrin is a solid, white, almost odorless substance that was used as a pesticide to control insects, rodents, and birds. Endrin has not been produced or sold for general use in the United States since 1986. Little is known about the properties of endrin aldehyde (an impurity and breakdown product of endrin) or endrin ketone (a product of endrin when it is exposed to light)." +1768,"114-07-8","DTXSID4022991","Erythromycin","ULGZDMOVFRHVEP-RWJQBGPGSA-N","CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@@H]([C@H]2O)N(C)C)[C@](C)(O)C[C@@H](C)C(=O)[C@H](C)[C@@H](O)[C@]1(C)O","C37H67NO13","733.93700000000001","235",NA,NA,NA +1769,"66230-04-4","DTXSID4032667","Esfenvalerate","NYPJDWWKZLNGGM-RPWUZVMVSA-N","CC(C)[C@H](C(=O)O[C@H](C#N)C1=CC=CC(OC2=CC=CC=C2)=C1)C1=CC=C(Cl)C=C1","C25H22ClNO3","419.91","67","pesticide","Unclassified","Esfenvalerate is a fenvalerate. It has a role as a pyrethroid ester insecticide and an agrochemical." +1770,"50-28-2","DTXSID0020573","17beta-Estradiol","VOXZDWNPVJITMN-ZBRFXRBCSA-N","[H][C@@]12CC[C@H](O)[C@@]1(C)CC[C@]1([H])C3=CC=C(O)C=C3CC[C@@]21[H]","C18H24O2","272.38799999999998","428","pharmacological","Unclassified","Estra-1(10),2,4-triene-3,17beta-diol, also known as 17beta-estradiol, is the 17beta-isomer of estradiol. 17beta-estradiol has a role as an estrogen, a Human/Mouse/ Daphnia magnametabolite, and as an aldehyde oxidase inhibitor (EC 1.2.3.1)." +1771,"53-16-7","DTXSID4022367","Estrone","DNXHEGUUPJUMQT-CBZIJGRNSA-N","[H][C@@]12CCC(=O)[C@@]1(C)CC[C@]1([H])C3=C(CC[C@@]21[H])C=C(O)C=C3","C18H22O2","270.37200000000001","225",NA,NA,"Estrone, one of the major mammalian estrogens, is an aromatized C18 steroid with a 3-hydroxyl group and a 17-ketone. It is produced in vivo from androstenedione or from testosterone via estradiol. It is produced primarily in the ovaries, placenta, and in peripheral tissues (especially adipose tissue) through conversion of adrostenedione. Estrone may be further metabolized to 16-alpha-hydroxyestrone, which may be reduced to estriol by estradiol dehydrogenase." +1773,"55283-68-6","DTXSID8032386","N-Ethyl-N-(2-methyl-2-propenyl)-2,6-dinitro-4-(trifluoromethyl)benzenamine","PTFJIKYUEPWBMS-UHFFFAOYSA-N","CCN(CC(C)=C)C1=C(C=C(C=C1[N+]([O-])=O)C(F)(F)F)[N+]([O-])=O","C13H14F3N3O4","333.267","56","pesticide","Unclassified","Ethalfluralin is a selective herbicide for the preemergence control of certain annual grasses and broadleaf weeds." +1776,"141-43-5","DTXSID6022000","Ethanolamine","HZAXFHJVJLSVMW-UHFFFAOYSA-N","NCCO","C2H7NO","61.084000000000003","269",NA,NA,NA +1777,"16672-87-0","DTXSID7024085","Ethephon","UDPGUMQDCGORJQ-UHFFFAOYSA-N","OP(O)(=O)CCCl","C2H6ClO3P","144.49","93",NA,NA,NA +1778,"563-12-2","DTXSID2024086","Ethion","RIZMRRKBZQXFOY-UHFFFAOYSA-N","CCOP(=S)(OCC)SCSP(=S)(OCC)OCC","C9H22O4P2S4","384.46","99","pesticide","Unclassified","Ethion is an organophosphate pesticide. Pure ethion is a clear to yellowish liquid with an unpleasant sulfur-like smell. It does not occur naturally in the environment.Ethion is used in agriculture, mainly to control insects on citrus trees, but also on cotton, fruit and nut trees, and some vegetables. It may also be used on lawns and turf grasses, but it is not used in the home for pest control." +1779,"26225-79-6","DTXSID8034580","Ethofumesate","IRCMYGHHKLLGHV-UHFFFAOYSA-N","CCOC1OC2=C(C=C(OS(C)(=O)=O)C=C2)C1(C)C","C13H18O5S","286.33999999999997","74","pesticide","Unclassified","2-ethoxy-3,3-dimethyl-2,3-dihydro-1-benzofuran-5-yl methanesulfonate is a methanesulfonate ester that is methanesulfonic acid in which the hydrogen of the hydroxy group has been replaced by a 2-ethoxy-3,3-dimethyl-2,3-dihydro-1-benzofuran-5-yl group. It is an ether, a methanesulfonate ester and a member of 1-benzofurans." +1780,"13194-48-4","DTXSID4032611","Ethoprop","VJYFKVYYMZPMAB-UHFFFAOYSA-N","CCCSP(=O)(OCC)SCCC","C8H19O2PS2","242.33","101","pesticide","Unclassified","Ethoprophos is an organic thiophosphate and an organothiophosphate insecticide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an agrochemical and an antinematodal drug." +1781,"91-53-2","DTXSID9020582","Ethoxyquin","DECIPOUIJURFOJ-UHFFFAOYSA-N","CCOC1=CC2=C(NC(C)(C)C=C2C)C=C1","C14H19NO","217.31200000000001","182","pesticide","Unclassified","Ethoxyquin is a quinoline that is 1,2-dihydroquinoline bearing three methyl substituents at position 2, 2 and 4 as well as an ethoxy substituent at position 6. It has a role as an agrochemical, a herbicide, an UDP-glucuronosyltransferase activator, a neuroprotective agent, a Hsp90 inhibitor, a genotoxin and a food antioxidant. It is a member of quinolines and an aromatic ether." +1783,"929601-09-2","DTXSID1047360","SR58611","NQIZCDQCNYCVAS-UHFFFAOYSA-N","Cl.CCOC(=O)COC1=CC2=C(CCC(C2)NCC(O)C2=CC(Cl)=CC=C2)C=C1","C22H27Cl2NO4","440.36","8",NA,NA,NA +1786,"105-54-4","DTXSID6040111","Ethyl butyrate","OBNCKNCVKJNDBV-UHFFFAOYSA-N","CCCC(=O)OCC","C6H12O2","116.16","116",NA,NA,NA +1787,"106-30-9","DTXSID1040112","Ethyl heptanoate","TVQGDYNRXLTQAP-UHFFFAOYSA-N","CCCCCCC(=O)OCC","C9H18O2","158.24100000000001","98",NA,NA,NA +1789,"107-21-1","DTXSID8020597","Ethylene glycol","LYCAIKOWRPUZTN-UHFFFAOYSA-N","OCCO","C2H6O2","62.067999999999998","11003",NA,NA,NA +1790,"96-45-7","DTXSID5020601","Ethylene thiourea","PDQAZBWRQCGBEV-UHFFFAOYSA-N","S=C1NCCN1","C3H6N2S","102.16","143","industrial;pesticide","Unclassified","Ethylene thiourea is used in the rubber industry and in the production of some fungicides. No information is available on the acute (short-term) or chronic (long-term) effects of ethylene thiourea in humans. In rodents chronically exposed to ethylene thiourea in their diet, effects on the thyroid have been observed. Ethylene thiourea has been shown to be a potent teratogen (causes birth defects) in rats orally or dermally exposed. A study of female workers occupationally exposed to ethylene thiourea did not report an increased incidence of thyroid cancer. In a study by the National Toxicology Program (NTP), an increased incidence of thyroid tumors in rats, and thyroid, liver, and pituitary gland tumors in mice exposed to ethylene thiourea were noted. EPA has classified ethylene thiourea as a Group B2, probable human carcinogen." +1791,"120-47-8","DTXSID9022528","Ethylparaben","NUVBSKCKDOMJSU-UHFFFAOYSA-N","CCOC(=O)C1=CC=C(O)C=C1","C9H10O3","166.17599999999999","209",NA,NA,NA +1792,"80844-07-1","DTXSID9032610","Etofenprox","YREQHYQNNWYQCJ-UHFFFAOYSA-N","CCOC1=CC=C(C=C1)C(C)(C)COCC1=CC(OC2=CC=CC=C2)=CC=C1","C25H28O3","376.49599999999998","114","pesticide","Unclassified","Etofenprox is an aromatic ether that is the 3-phenoxybenzyl ether of 2-(4-ethoxyphenyl)-2-methylpropan-1-ol. It has a role as a pyrethroid ether insecticide. It derives from a 2-(4-ethoxyphenyl)-2-methylpropan-1-ol." +1794,"153233-91-1","DTXSID8034586","Etoxazole","IXSZQYVWNJNRAL-UHFFFAOYSA-N","CCOC1=C(C=CC(=C1)C(C)(C)C)C1COC(=N1)C1=C(F)C=CC=C1F","C21H23F2NO2","359.41699999999997","101","pesticide","Unclassified","Etoxazole is an organofluorine acaricide." +1795,"2593-15-9","DTXSID3032547","Etridiazole","KQTVWCSONPJJPE-UHFFFAOYSA-N","CCOC1=NC(=NS1)C(Cl)(Cl)Cl","C5H5Cl3N2OS","247.52","80","pesticide","Unclassified","Etridiazole is a member of the class of thiadiazoles that is 1,2,4-thiadiazole which is substituted at positions 3 and 5 by trichloromethyl and ethoxy groups, respectively. A fungicide, it has been used particularly for the control of Phytophthora and Pythium species in soils. It has a role as an antifungal agrochemical and a nitrification inhibitor. It is an aromatic ether, a member of thiadiazoles, an organochlorine compound and a thiadiazole antifungal agent." +1796,"97-53-0","DTXSID9020617","Eugenol","RRAFCDWBNXTKKO-UHFFFAOYSA-N","COC1=C(O)C=CC(CC=C)=C1","C10H12O2","164.20400000000001","214","pharmacological;personalCare;industrial;consumerProduct;pesticide","Unclassified","Eugenol is a phenylpropanoid formally derived from guaiacol with an allyl chain substituted para to the hydroxy group. It has a role as an allergen, a plant metabolite, a human blood serum metabolite and a sensitiser. It is a phenylpropanoid, a monomethoxybenzene and a member of phenols. It derives from a guaiacol." +1799,"129299-90-7","DTXSID7048168","Fabesetron hydrochloride","POKFYJWUPWZYQV-BTQNPOSSSA-N","Cl.CC1=C(C[C@H]2CCC3=C(C)C4=C(C=CC=C4)N3C2=O)N=CN1","C18H20ClN3O","329.83","20",NA,NA,NA +1804,"131807-57-3","DTXSID8034588","Famoxadone","PCCSBWNGDMYFCW-UHFFFAOYSA-N","CC1(OC(=O)N(NC2=CC=CC=C2)C1=O)C1=CC=C(OC2=CC=CC=C2)C=C1","C22H18N2O4","374.39600000000002","82","pesticide","Unclassified","5-methyl-5-(4-phenoxyphenyl)-3-(phenylamino)-1,3-oxazolidine-2,4-dione is a member of the class of oxazolidinones that is 1,3-oxazolidine-2,4-dione in which the hydrogen attached to the nitrogen is substituted by a phenylamino group and the hydrogens at position 5 are substituted by methyl and 4-phenoxyphenyl groups. It is an aromatic ether, a carbohydrazide and an oxazolidinone." +1805,"221246-12-4","DTXSID5047249","Fandosentan potassium salt","MZWCHWWQSPPZRH-UHFFFAOYSA-M","[K+].CCC1=CC(=CC2=C1OCO2)C1=C(N(C2=CC=CC=C2C(F)(F)F)S(=O)(=O)C2=C1C=CC=C2)C([O-])=O","C25H17F3KNO6S","555.57000000000005","23",NA,NA,NA +1806,"196808-45-4","DTXSID1047310","Farglitazar","ZZCHHVUQYRMYLW-HKBQPEDESA-N","CC1=C(CCOC2=CC=C(C[C@H](NC3=C(C=CC=C3)C(=O)C3=CC=CC=C3)C(O)=O)C=C2)N=C(O1)C1=CC=CC=C1","C34H30N2O5","546.62300000000005","49",NA,NA,NA +1807,"3844-45-9","DTXSID2020189","FD&C Blue No. 1","SGHZXLIDFTYFHQ-UHFFFAOYSA-L","[Na+].[Na+].CCN(CC1=CC(=CC=C1)S([O-])(=O)=O)C1=CC=C(C=C1)C(=C1C=CC(C=C1)=[N+](CC)CC1=CC(=CC=C1)S([O-])(=O)=O)C1=C(C=CC=C1)S([O-])(=O)=O","C37H34N2Na2O9S3","792.84","73",NA,NA,"Brilliant Blue is an organic molecular entity." +1808,"1934-21-0","DTXSID1021455","FD&C Yellow 5","ZLWLTDZLUVBSRJ-UHFFFAOYSA-K","[Na+].[Na+].[Na+].[O-]C(=O)C1=C(N=NC2=CC=C(C=C2)S([O-])(=O)=O)C(=O)N(N1)C1=CC=C(C=C1)S([O-])(=O)=O","C16H9N4Na3O9S2","534.36","50",NA,NA,"Tartrazine is a synthetic lemon yellow azo dye primarily used as a food coloring." +1809,"2783-94-0","DTXSID6021456","FD&C Yellow 6","OIQPTROHQCGFEF-UHFFFAOYSA-L","[Na+].[Na+].OC1=C(N=NC2=CC=C(C=C2)S([O-])(=O)=O)C2=C(C=C1)C=C(C=C2)S([O-])(=O)=O","C16H10N2Na2O7S2","452.36","100",NA,NA,"Sunset Yellow FCF is an organic molecular entity." +1815,"161326-34-7","DTXSID2034590","Fenamidone","LMVPQMGRYSRMIW-KRWDZBQOSA-N","CSC1=N[C@](C)(C(=O)N1NC1=CC=CC=C1)C1=CC=CC=C1","C17H17N3OS","311.39999999999998","51","pesticide","Unclassified","Fenamidone is a member of the class of imidazolones that is 3,5-dihydroimidazol-4-one substituted at position 2 by a methylthiogroup, at position 3 by an anilino group and at position 5 by phenyl and methyl groups (the S-enantiomer). A fungicide effective against Oomycete diseases such as downy mildew and certain leaf spot diseases. It has a role as a mitochondrial cytochrome-bc1 complex inhibitor, an antifungal agrochemical and a quinone outside inhibitor. It is an imidazolone, a carbohydrazide, an organic sulfide and an imidazole fungicide." +1816,"140-56-7","DTXSID6040371","Fenaminosulf","IWDQPCIQCXRBQP-UHFFFAOYSA-M","[Na+].CN(C)C1=CC=C(C=C1)N=NS([O-])(=O)=O","C8H10N3NaO3S","251.24","62",NA,NA,"Formulated fenaminosulf appears as yellow-brown crystals or brown powder. Used in biological and pharmacological studies including: cloning and characterization of GABA transporter, activity of anti-RSV carbonucleosides, and inhibition by fungicides of urea hydrolysis and nitrification of urea nitrogen in soil." +1817,"22224-92-6","DTXSID3024102","Fenamiphos","ZCJPOPBZHLUFHF-UHFFFAOYSA-N","CCOP(=O)(NC(C)C)OC1=CC=C(SC)C(C)=C1","C13H22NO3PS","303.36","78","pesticide","Unclassified","Fenamiphos is a phosphoramidate ester, an organophosphate insecticide and an organophosphate nematicide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an agrochemical and an acaricide. It derives from a 4-(methylsulfanyl)-m-cresol." +1818,"60168-88-9","DTXSID2032390","Fenarimol","NHOWDZOIZKMVAI-UHFFFAOYSA-N","OC(C1=CC=C(Cl)C=C1)(C1=CN=CN=C1)C1=CC=CC=C1Cl","C17H12Cl2N2O","331.2","89","industrial;pesticide","Unclassified","(2-chlorophenyl)(4-chlorophenyl)pyrimidin-5-ylmethanol is a member of the class of pyrimidines that is pyrimidin-5-ylmethanol in which one of the hydrogens attached to the carbon bearing the hydroxy group is replaced by a 2-chlorophenyl group while the other is replaced by a 4-chlorophenyl group. It is a tertiary alcohol, a member of monochlorobenzenes and a member of pyrimidines." +1819,"114369-43-6","DTXSID8032548","Fenbuconazole","RQDJADAKIFFEKQ-UHFFFAOYSA-N","ClC1=CC=C(CCC(CN2C=NC=N2)(C#N)C2=CC=CC=C2)C=C1","C19H17ClN4","336.82","74",NA,NA,"4-(4-chlorophenyl)-2-phenyl-2-(1,2,4-triazol-1-ylmethyl)butanenitrile is a member of the class of triazoles that is 1-chloro-4-(3-phenylpropyl)benzene substituted at position 3 of the propyl moiety by cyano and 1,2,4-triazol-1-ylmethyl groups. It is a member of triazoles, a nitrile and a member of monochlorobenzenes." +1820,"126833-17-8","DTXSID3032549","Fenhexamid","VDLGAVXLJYLFDH-UHFFFAOYSA-N","CC1(CCCCC1)C(=O)NC1=C(Cl)C(Cl)=C(O)C=C1","C14H17Cl2NO2","302.2","76","pesticide","Unclassified","Fenhexamid is an aromatic amide resulting from the formal condensation of the carboxy group of 1-methylcyclohexanecarboxylic acid with the amino group of 4-amino-2,3-dichlorophenol. It has a role as an EC 1.14.13.72 (methylsterol monooxygenase) inhibitor, a sterol biosynthesis inhibitor and an antifungal agrochemical. It is a monocarboxylic acid amide, a member of phenols, an aromatic amide, a dichlorobenzene and an anilide fungicide." +1821,"122-14-5","DTXSID4032613","Fenitrothion","ZNOLGFHPUIJIMJ-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC=C(C(C)=C1)[N+]([O-])=O","C9H12NO5PS","277.23","95","pesticide","Unclassified","Fenitrothion is a synthetic organophosphate acetylcholinesterase inhibitor and endocrine disrupter that is used as a pesticide. It is characterized as a volatile yellow brown oily liquid, and exposure occurs by inhalation, ingestion, or contact." +1822,"49562-28-9","DTXSID2029874","Fenofibrate","YMTINGFKWWXKFG-UHFFFAOYSA-N","CC(C)OC(=O)C(C)(C)OC1=CC=C(C=C1)C(=O)C1=CC=C(Cl)C=C1","C20H21ClO4","360.83","303",NA,NA,NA +1823,"66441-23-4","DTXSID2032392","Fenoxaprop-ethyl","PQKBPHSEKWERTG-UHFFFAOYSA-N","CCOC(=O)C(C)OC1=CC=C(OC2=NC3=C(O2)C=C(Cl)C=C3)C=C1","C18H16ClNO5","361.78","80","pesticide","Unclassified","Fenoxaprop-ethyl (organic nitrate combined with L-arginine), is an oral proprietary nitrate therapeutic shown to induce coronary vasodilation while overcoming the significant problem of drug tolerance. Fenoxaprop-ethyl has been investigated to treat chronic angina, the chest pain that occurs from inadequate blood flow to the coronary arteries around the heart." +1824,"72490-01-8","DTXSID7032393","Fenoxycarb","HJUFTIJOISQSKQ-UHFFFAOYSA-N","CCOC(=O)NCCOC1=CC=C(OC2=CC=CC=C2)C=C1","C17H19NO4","301.34199999999998","85",NA,NA,"Fenoxycarb is a carbamate ester that is the O-ethyl carbamate of 2-(4-phenoxyphenoxy)ethylamine. It has a role as a juvenile hormone mimic, an environmental contaminant, a xenobiotic and an insecticide. It is an aromatic ether and a carbamate ester. It derives from a 4-phenoxyphenol." +1825,"39515-41-8","DTXSID0024002","Fenpropathrin","XQUXKZZNEFRCAW-UHFFFAOYSA-N","CC1(C)C(C(=O)OC(C#N)C2=CC=CC(OC3=CC=CC=C3)=C2)C1(C)C","C22H23NO3","349.43","101",NA,NA,"Fenpropathrin is a cyclopropanecarboxylate ester obtained by formal condensation between 2,2,3,3-tetramethylcyclopropanecarboxylic acid and cyano(3-phenoxyphenyl)methanol. It has a role as a pyrethroid ester insecticide, a pyrethroid ester acaricide and an agrochemical. It is an aromatic ether and a cyclopropanecarboxylate ester. It derives from a 2,2,3,3-tetramethylcyclopropanecarboxylic acid." +1826,"111812-58-9","DTXSID2032550","Fenpyroximate (Z,E)","YYJNOYZRYGDPNH-UHFFFAOYSA-N","CN1N=C(C)C(C=NOCC2=CC=C(C=C2)C(=O)OC(C)(C)C)=C1OC1=CC=CC=C1","C24H27N3O4","421.49700000000001","23",NA,NA,NA +1827,"55-38-9","DTXSID8020620","Fenthion","PNVJTZOFSHSLTO-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC(C)=C(SC)C=C1","C10H15O3PS2","278.32","120","pesticide","Unclassified","Fenthion is an organic thiophosphate that is O,O-dimethyl hydrogen phosphorothioate in which the hydrogen atom of the hydroxy group is replaced by a 3-methyl-4-(methylsulfanyl)phenyl group. It exhibits acaricidal and insecticidal activities. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an acaricide, an agrochemical, an avicide, an EC 3.1.1.8 (cholinesterase) inhibitor and an insecticide. It derives from a 4-(methylsulfanyl)-m-cresol." +1829,"120068-37-3","DTXSID4034609","Fipronil","ZOCSXAVNDGMNBV-UHFFFAOYSA-N","NC1=C(C(=NN1C1=C(Cl)C=C(C=C1Cl)C(F)(F)F)C#N)S(=O)C(F)(F)F","C12H4Cl2F6N4OS","437.14","157","pharmacological;pesticide","Unclassified","5-amino-1-[2,6-dichloro-4-(trifluoromethyl)phenyl]-4-[(trifluoromethyl)sulfinyl]-1H-pyrazole-3-carbonitrile is a member of the class of pyrazoles that is 1H-pyrazole that is substituted at positions 1, 3, 4, and 5 by 2,6-dichloro-4-(trifluoromethyl)phenyl, cyano, (trifluoromethyl)sulfinyl, and amino groups, respectively. It is a nitrile, a dichlorobenzene, a primary amino compound, a member of pyrazoles, a sulfoxide and a member of (trifluoromethyl)benzenes." +1830,"860302-33-6","DTXSID70880073","Firemaster 550","-","-","-","-","-",NA,NA,NA +1842,"69806-50-4","DTXSID3034612","Fluazifop-butyl","VAIZTNZGPYBOGF-UHFFFAOYSA-N","CCCCOC(=O)C(C)OC1=CC=C(OC2=CC=C(C=N2)C(F)(F)F)C=C1","C19H20F3NO4","383.36700000000002","62",NA,NA,NA +1843,"79241-46-6","DTXSID0034855","Fluazifop-P-butyl","VAIZTNZGPYBOGF-CYBMUJFWSA-N","CCCCOC(=O)[C@@H](C)OC1=CC=C(OC2=CC=C(C=N2)C(F)(F)F)C=C1","C19H20F3NO4","383.36700000000002","64","pesticide","Unclassified","Fluazifop-P-butyl is a butyl 2-(4-{[5-(trifluoromethyl)pyridin-2-yl]oxy}phenoxy)propanoate that has R configutation. The active enantiomer of the herbicide fluazifop-butyl, it is used as a post-emergence herbicide for the control grass weeds in various broad-leaved crops. It has a role as an agrochemical, a herbicide and an acetyl-CoA carboxylase inhibitor (EC 6.4.1.2). It derives from a fluazifop-P. It is an enantiomer of a (S)-fluazifop-butyl." +1844,"79622-59-6","DTXSID7032551","Fluazinam","UZCGKGPEKUCDTF-UHFFFAOYSA-N","[O-][N+](=O)C1=CC(=C(Cl)C(=C1NC1=C(Cl)C=C(C=N1)C(F)(F)F)[N+]([O-])=O)C(F)(F)F","C13H4Cl2F6N4O4","465.09","93","pesticide","Unclassified","Fluazinam is a member of the class of aminopyridines that is 2-amino-5-(trifluoromethyl)pyridine in which one of the amino hydrogens is replaced by a 3-chloro-2,6-dinitro-4-(trifluoromethyl)phenyl group. A fungicide used to control grey mould, downy mildew and other fungal pathogens. It has a role as an apoptosis inducer, an allergen, a xenobiotic, an environmental contaminant and an antifungal agrochemical. It is a C-nitro compound, a chloropyridine, an aminopyridine, a secondary amino compound, a member of monochlorobenzenes and a member of (trifluoromethyl)benzenes." +1845,"86386-73-4","DTXSID3020627","Fluconazole","RFHAOTPXVQNOHP-UHFFFAOYSA-N","OC(CN1C=NC=N1)(CN1C=NC=N1)C1=C(F)C=C(F)C=C1","C13H12F2N6O","306.27699999999999","258",NA,NA,"Fluconazole is a triazole fungistatic agent used in the treatment of systemic and superficial fungal infections. Fluconazole therapy can cause transient mild-to-moderate serum aminotransferase elevations and is a known cause of clinically apparent acute drug induced liver injury." +1846,"131341-86-1","DTXSID2032398","Fludioxonil","MUJOIMFVNIBMKC-UHFFFAOYSA-N","FC1(F)OC2=CC=CC(=C2O1)C1=CNC=C1C#N","C12H6F2N2O2","248.18899999999999","112","pesticide","Unclassified","Fludioxonil is a member of the class of benzodioxoles that is 2,2-difluoro-1,3-benzodioxole substituted at position 4 by a 3-cyanopyrrol-4-yl group. A fungicide seed treatment for control of a range of diseases including Fusarium, Rhizoctonia and Alternaria. It has a role as an androgen antagonist, an estrogen receptor agonist and an antifungal agrochemical. It is a member of benzodioxoles, a member of pyrroles, a nitrile and an organofluorine compound." +1847,"142459-58-3","DTXSID2032552","Flufenacet","IANUJLZYFUDJIH-UHFFFAOYSA-N","CC(C)N(C(=O)COC1=NN=C(S1)C(F)(F)F)C1=CC=C(F)C=C1","C14H13F4N3O2S","363.33","71","pesticide","Unclassified","Flufenacet is an aromatic amide that is acetamide in which the amino hydrogens have been replaced by a propan-2-yl and 4-fluorophenyl groups while the methyl hydrogen is replaced by a [5-(trifluoromethyl)-1,3,4-thiadiazol-2-yl]oxy group. It has a role as an environmental contaminant, a xenobiotic and a herbicide. It is a member of monofluorobenzenes, an aromatic amide and a member of thiadiazoles." +1848,"188489-07-8","DTXSID3034618","Flufenpyr-ethyl","DNUAYCRATWAJQE-UHFFFAOYSA-N","CCOC(=O)COC1=CC(N2N=CC(=C(C)C2=O)C(F)(F)F)=C(F)C=C1Cl","C16H13ClF4N2O4","408.73","35",NA,NA,NA +1849,"62924-70-3","DTXSID7032553","Flumetralin","PWNAWOCHVWERAR-UHFFFAOYSA-N","CCN(CC1=C(Cl)C=CC=C1F)C1=C(C=C(C=C1[N+]([O-])=O)C(F)(F)F)[N+]([O-])=O","C16H12ClF4N3O4","421.73","67","pesticide","Unclassified","Flumetralin, a synthetic plant growth regulator with herbicidal activity belonging to the 2,6-dinitroaniline class of chemicals, has been evaluated for its ability to induce genotoxicity in human peripheral blood lymphocytes (PBLs). The potential genotoxic and cytotoxic effects of flumetralin were investigated in vitro by chromosome aberration (CA) and cytokinesis-block micronucleus assays." +1850,"98967-40-9","DTXSID4032615","Flumetsulam","RXCPQSJAVKGONC-UHFFFAOYSA-N","CC1=NC2=NC(=NN2C=C1)S(=O)(=O)NC1=C(F)C=CC=C1F","C12H9F2N5O2S","325.29000000000002","79",NA,NA,NA +1851,"87546-18-7","DTXSID2032554","Flumiclorac-pentyl","IRECWLYBCAZIJM-UHFFFAOYSA-N","CCCCCOC(=O)COC1=C(Cl)C=C(F)C(=C1)N1C(=O)C2=C(CCCC2)C1=O","C21H23ClFNO5","423.87","51","pesticide","Unclassified","Flumiclorac pentyl is a pyrroline." +1852,"103361-09-7","DTXSID7032555","Flumioxazin","FOUWCSDKDDHKQP-UHFFFAOYSA-N","FC1=CC2=C(C=C1N1C(=O)C3=C(CCCC3)C1=O)N(CC#C)C(=O)CO2","C19H15FN2O4","354.33699999999999","75","pesticide","Unclassified","Flumioxazin is a benzoxazine that is N-(prop-2-yn-1-yl)-2H-1,4-benzoxazin-3(4H)-one which is substituted at position 6 by a 1,3-dioxo-1,3,4,5,6,7-hexahydro-2H-isoindol-2-yl group and at position 7 by a fluorine. A protoporphyrinogen oxidase inhibitor, it is used for the control of weeds in soya, peanuts, and a variety of vegetable and fruit crops. It has a role as a herbicide, an agrochemical, an EC 1.3.3.4 (protoporphyrinogen oxidase) inhibitor and a teratogenic agent. It is a benzoxazine, a terminal acetylenic compound, a dicarboximide and an organofluorine compound." +1853,"2164-17-2","DTXSID8020628","Fluometuron","RZILCCPWPBTYDO-UHFFFAOYSA-N","CN(C)C(=O)NC1=CC=CC(=C1)C(F)(F)F","C10H11F3N2O","232.20599999999999","109","pesticide","Unclassified","Fluometuron appears as white crystals or powder. Melting point 163-164°C. Readily soluble in organic solvents. Used for pre- and post-emergence weed control in cotton." +1854,"206-44-0","DTXSID3024104","Fluoranthene","GVEPBJHOBDJJJI-UHFFFAOYSA-N","C1=CC2=C(C=C1)C1=C3C2=CC=CC3=CC=C1","C16H10","202.256","148","pharmacological","PAH","Fluoranthene is a polycyclic aromatic hydrocarbon (PAH). The molecule can be viewed as the fusion of naphthalene and benzene unit connected by a five-membered ring. Although samples are often pale yellow, the compound is colorless." +1855,"86-73-7","DTXSID8024105","Fluorene","NIHNNTQXNPWCJQ-UHFFFAOYSA-N","C1C2=C(C=CC=C2)C2=C1C=CC=C2","C13H10","166.22300000000001","190",NA,"PAH","Fluorene is an ortho-fused tricyclic hydrocarbon that is a major component of fossil fuels and their derivatives It is an ortho-fused polycyclic arene and an ortho-fused tricyclic hydrocarbon." +1856,"361377-29-9","DTXSID2034625","Fluoxastrobin","UFEODZBUAFNAEU-NLRVBDNBSA-N","CO\N=C(\C1=NOCCO1)C1=C(OC2=NC=NC(OC3=CC=CC=C3Cl)=C2F)C=CC=C1","C21H16ClFN4O5","458.83","53","pesticide;pesticide","Unclassified","Fluoxastrobin is an oxime O-ether that is the O-methyl oxime of (2-{[6-(2-chlorophenoxy)-5-fluoropyrimidin-4-yl]oxy}phenyl)(5,6-dihydro-1,4,2-dioxazin-3-yl)methanone. A fungicide used for disease control of potatoes and a wide range of vegetables. It has a role as a mitochondrial cytochrome-bc1 complex inhibitor and an antifungal agrochemical. It is an oxime O-ether, an aromatic ether, a member of pyrimidines, a dioxazine, an organofluorine compound, a member of monochlorobenzenes and a strobilurin antifungal agent." +1857,"59756-60-4","DTXSID8024107","1-Methyl-3-phenyl-5-(3-(trifluoromethyl)phenyl)-4-pyridone","YWBVHLJPRPCRSD-UHFFFAOYSA-N","CN1C=C(C(=O)C(=C1)C1=CC(=CC=C1)C(F)(F)F)C1=CC=CC=C1","C19H14F3NO","329.322","87","pesticide","Unclassified","Fluridone is a phenylpyridine. It has a role as a carotenoid biosynthesis inhibitor." +1858,"69377-81-7","DTXSID2034627","Fluroxypyr","MEFQWPUMEMWTJP-UHFFFAOYSA-N","NC1=C(Cl)C(F)=NC(OCC(O)=O)=C1Cl","C7H5Cl2FN2O3","255.03","81",NA,NA,NA +1859,"81406-37-3","DTXSID5034303","Fluroxypyr-meptyl","OLZQTUCTGLHFTQ-UHFFFAOYSA-N","CCCCCCC(C)OC(=O)COC1=NC(F)=C(Cl)C(N)=C1Cl","C15H21Cl2FN2O3","367.24","66","pesticide","Unclassified","A post-emergence herbicide used to control economically important broad-leaved weeds including kochia, lespedeza and dogfennel." +1860,"85509-19-9","DTXSID3024235","Flusilazole","FQKUGOMFVDPBIZ-UHFFFAOYSA-N","C[Si](CN1C=NC=N1)(C1=CC=C(F)C=C1)C1=CC=C(F)C=C1","C16H15F2N3Si","315.399","79","pesticide","Unclassified","Flusilazole is an organosilicon compound that is dimethylsilane in which the hydrogens attached to the silicon are replaced by p-fluorophenyl groups and a hydrogen attached to one of the methyl groups is replaced by a 1H-1,2,4-triazol-1-yl group. It is a broad-sepctrum fungicide used to protect a variety of crops. It has a role as a xenobiotic, an environmental contaminant, an EC 1.14.13.70 (sterol 14alpha-demethylase) inhibitor and an antifungal agrochemical. It is a member of monofluorobenzenes, a member of triazoles, an organosilicon compound, a conazole fungicide and a triazole fungicide." +1861,"13311-84-7","DTXSID7032004","Flutamide","MKXKFYHWDHIYRV-UHFFFAOYSA-N","CC(C)C(=O)NC1=CC(=C(C=C1)[N+]([O-])=O)C(F)(F)F","C11H11F3N2O3","276.21499999999997","265",NA,NA,"Flutamide is a toluidine derivative and a nonsteroidal antiandrogen that is structurally related to bicalutamide and nilutamide. Flutamide and its more potent active metabolite 2-hydroxyflutamide competitively block dihydrotestosterone binding at androgen receptors, forming inactive complexes which cannot translocate into the cell nucleus. Formation of inactive receptors inhibits androgen-dependent DNA and protein synthesis, resulting in tumor cell growth arrest or transient tumor regression." +1862,"117337-19-6","DTXSID2032556","Fluthiacet-methyl","ZCNQYNHDVRPZIH-JXAWBTAJSA-N","COC(=O)CSC1=C(Cl)C=C(F)C(=C1)\N=C1/SC(=O)N2CCCCN12","C15H15ClFN3O3S2","403.87","45","pesticide","Unclassified","Fluthiacet-methyl is a methyl ester resulting from the formal condensation of the carboxy group of fluthiacet with methanol. A proherbicide for fluthiacet, it is used for the control of broad-leaved weeds in crops such as maize and soya. It has a role as an agrochemical, an EC 1.3.3.4 (protoporphyrinogen oxidase) inhibitor and a proherbicide. It is an organic sulfide, a methyl ester, a member of monochlorobenzenes, a member of monofluorobenzenes and a thiadiazolopyridazine. It derives from a fluthiacet." +1863,"66332-96-5","DTXSID8024109","Flutolanil","PTCGDEVVHUXTMP-UHFFFAOYSA-N","CC(C)OC1=CC(NC(=O)C2=C(C=CC=C2)C(F)(F)F)=CC=C1","C17H16F3NO2","323.315","79","pesticide","Unclassified","Flutolanil is a member of the class of benzamides, obtained by formal condensation of the carboxy group of 2-(trifluoromethyl)benzoic acid with the amino group of 3-(ispropyloxy)aniline. A fungicide used to control a range of pathogens especially Rhizoctonia spp. on rice, turf and other crops. It has a role as an EC 1.3.5.1 [succinate dehydrogenase (quinone)] inhibitor and an antifungal agrochemical. It is a member of benzamides, an aromatic ether, a member of (trifluoromethyl)benzenes and a benzanilide fungicide." +1866,"59-30-3","DTXSID0022519","Folic acid","OVBPIULPVIDEAO-LBPRGKRZSA-N","NC1=NC(=O)C2=C(N1)N=CC(CNC1=CC=C(C=C1)C(=O)N[C@@H](CCC(O)=O)C(O)=O)=N2","C19H19N7O6","441.404","341",NA,NA,NA +1867,"133-07-3","DTXSID0021385","Folpet","HKIOYBQGHSTUDB-UHFFFAOYSA-N","ClC(Cl)(Cl)SN1C(=O)C2=C(C=CC=C2)C1=O","C9H4Cl3NO2S","296.55","93","pesticide","Unclassified","2-[(Trichloromethyl)sulfanyl]-1H-isoindole-1,3(2H)-dione, also known as Folpet, is a member of the class of phthalimides that is phthalimide in which the hydrogen attached to the nitrogen is replaced by a trichloromethylthio group. An agricultural fungicide, it has been used to control mildew, leaf spot, and other diseases in crops sice the 1950s. It has a role as an antifungal agrochemical. It is an organochlorine compound, an organosulfur compound and a phthalimide fungicide. It derives from a phthalimide." +1868,"72178-02-0","DTXSID7024112","Fomesafen","BGZZWXTVIYUUEY-UHFFFAOYSA-N","CS(=O)(=O)NC(=O)C1=CC(OC2=CC=C(C=C2Cl)C(F)(F)F)=CC=C1[N+]([O-])=O","C15H10ClF3N2O6S","438.76","87",NA,NA,NA +1869,"68157-60-8","DTXSID1034634","Forchlorfenuron","GPXLRLUVLMHHIK-UHFFFAOYSA-N","ClC1=NC=CC(NC(=O)NC2=CC=CC=C2)=C1","C12H10ClN3O","247.68","137",NA,NA,NA +1870,"75-12-7","DTXSID8025337","Formamide","ZHNUHDYFZUAESO-UHFFFAOYSA-N","NC=O","CH3NO","45.040999999999997","220",NA,NA,NA +1871,"23422-53-9","DTXSID4032405","Formetanate hydrochloride","MYPKGPZHHQEODQ-UHFFFAOYSA-N","Cl.CNC(=O)OC1=CC=CC(=C1)N=CN(C)C","C11H16ClN3O2","257.72000000000003","48",NA,NA,NA +1872,"98886-44-3","DTXSID0034930","Fosthiazate","DUFVKSUJRWYZQP-UHFFFAOYSA-N","CCOP(=O)(SC(C)CC)N1CCSC1=O","C9H18NO3PS2","283.33999999999997","88","pesticide","Unclassified","Fosthiazate is a phosphonic ester, an organic phosphonate and an organothiophosphate insecticide. It has a role as an acetylcholinesterase inhibitor (EC 3.1.1.7), an agrochemical and a nematicide." +1887,"330198-91-9","DTXSID10274033","Octadecanoic acid, 12-(acetyloxy)-, 2,3-bis(acetyloxy)propyl ester","YOFNHFCYYYNJPN-UHFFFAOYSA-N","CCCCCCC(CCCCCCCCCCC(=O)OCC(COC(C)=O)OC(C)=O)OC(C)=O","C27H48O8","500.673","12",NA,NA,NA +1888,"129453-61-8","DTXSID4022369","Fulvestrant","VWUXBMIQPBEWFH-WCCTWKNTSA-N","[H][C@@]12CC[C@H](O)[C@@]1(C)CC[C@]1([H])C3=C(C[C@@H](CCCCCCCCCS(=O)CCCC(F)(F)C(F)(F)F)[C@@]21[H])C=C(O)C=C3","C32H47F5O3S","606.78","150",NA,NA,NA +1890,"98-01-1","DTXSID1020647","Furfural","HYBBIBNJHNGZAN-UHFFFAOYSA-N","O=CC1=CC=CO1","C5H4O2","96.084999999999994","165",NA,NA,"Furfural is an aldehyde that is furan with the hydrogen at position 2 substituted by a formyl group. It has a role as a Maillard reaction product and a metabolite. It is a member of furans and an aldehyde. It derives from a furan. Furfural appears as colorless or reddish-brown mobile liquids with a penetrating odor. Flash points 140°F. Denser than water and soluble in water. Vapors heavier than air. May be toxic by ingestion, skin absorption or inhalation." +1898,"446-72-0","DTXSID5022308","Genistein","TZBJGXHYKVUXJN-UHFFFAOYSA-N","OC1=CC=C(C=C1)C1=COC2=C(C(O)=CC(O)=C2)C1=O","C15H10O5","270.24","349",NA,NA,NA +1899,"548-62-9","DTXSID5020653","Gentian Violet","ZXJXZNDDNMQXFV-UHFFFAOYSA-M","[Cl-].CN(C)C1=CC=C(C=C1)C(C1=CC=C(C=C1)N(C)C)=C1C=CC(C=C1)=[N+](C)C","C25H30ClN3","407.99","211",NA,NA,NA +1900,"106-24-1","DTXSID8026727","Geraniol","GLZPCOQZEFWAFX-JXMROGBWSA-N","CC(C)=CCC\C(C)=C\CO","C10H18O","154.25299999999999","187","personalCare;natural;consumerProduct","Unclassified",NA +1901,"105-87-3","DTXSID0020654","Geranyl acetate","HIGQPQRQIQDZMP-DHZHZOJOSA-N","CC(C)=CCC\C(C)=C\COC(C)=O","C12H20O2","196.29","120",NA,NA,NA +1906,"111-30-8","DTXSID6025355","Glutaraldehyde","SXRSQZLOMIGNAQ-UHFFFAOYSA-N","O=CCCCC=O","C5H8O2","100.117","194",NA,NA,"Glutaraldehyde is a colorless, oily liquid with a sharp, pungent odor. Glutaraldehyde is used for industrial, laboratory, agricultural, medical, and some household purposes, primarily for disinfecting and sterilization of surfaces and equipment. For example, it is used in oil and gas recovery operations and pipelines, waste water treatment, x-ray processing, embalming fluid, leather tanning, paper industry, in fogging and cleaning of poultry houses, and as a chemical intermediate in the production of various materials. It may be used in select goods, such as paint and laundry detergent." +1909,"56-81-5","DTXSID9020663","Glycerol","PEDCQBHIVMGVHV-UHFFFAOYSA-N","OCC(O)CO","C3H8O3","92.093999999999994","18084",NA,NA,NA +1912,"556-52-5","DTXSID4020666","Glycidol","CTKINSOISVBQLD-UHFFFAOYSA-N","OCC1CO1","C3H6O2","74.078999999999994","166",NA,NA,"Slightly viscous, colorless and odorless liquid cyclic ether. Glycidol is used as a stabilizer for natural oils and vinyl polymers, as an alkylating agent, a sterilant, a demulsifier, a dye-leveling agent and it is also used as an intermediate in the synthesis of glycerol, glycidyl ethers and amines. Exposure to Glycidol irritates the skin, eyes, and mucous membranes and depresses the central nervous system in humans. Glycidol induces mutations in human lymphocytes and is reasonably anticipated to be a human carcinogen." +1920,"52-86-8","DTXSID4034150","Haloperidol","LNEPOXFFQSENCJ-UHFFFAOYSA-N","OC1(CCN(CCCC(=O)C2=CC=C(F)C=C2)CC1)C1=CC=C(Cl)C=C1","C21H23ClFNO2","375.87","300",NA,NA,NA +1925,"76-44-8","DTXSID3020679","Heptachlor","FRCCEHPWNOQAEU-UHFFFAOYSA-N","ClC1C=CC2C1C1(Cl)C(Cl)=C(Cl)C2(Cl)C1(Cl)Cl","C10H5Cl7","373.3","83","pesticide;pesticide","Unclassified","Heptachlor is a white to light tan waxy looking solid. Noncombustible. Insoluble in water. Can cause illness by inhalation, skin absorption and/or ingestion. The primary hazard is the threat posed to the environment. Immediate steps should be taken to limit its spread to the environment. Used as an insecticide." +1926,"1024-57-3","DTXSID1024126","Heptachlor epoxide B","ZXFXBSWRVIQKOD-GEAKMUSANA-N","[H][C@]12[C@@H]3O[C@@H]3[C@H](Cl)[C@@]1([H])[C@@]1(Cl)C(Cl)=C(Cl)C2(Cl)C1(Cl)Cl","C10H5Cl7O","389.3","1","pesticide","Unclassified","Heptachlor epoxide appears as a degradation product of heptachlor that occurs in soil and in or on crops when treatments with heptachlor, an insecticide, have been made. Forms readily upon exposing heptachlor to air." +1928,"111-14-8","DTXSID2021600","Heptanoic acid","MNWFXJYAOYHMED-UHFFFAOYSA-N","CCCCCCC(O)=O","C7H14O2","130.18700000000001","197",NA,NA,NA +1929,"77-47-4","DTXSID2020688","Hexachlorocyclopentadiene","VUNCWTMEJYMOOR-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)(Cl)C(Cl)=C1Cl","C5Cl6","272.76","85",NA,NA,"Hexachlorocyclopentadiene is an intermediate in the manufacture of some pesticides. Hexachlorocyclopentadiene is very toxic following acute (short-term) oral and inhalation exposures. The chemical is a severe eye, skin, and pulmonary irritant in humans, with effects including tearing of the eyes, sneezing, salivation, blistering, burns, and cough from acute exposures. Limited information is available on chronic (long-term), reproductive, developmental, and cancer effects of hexachlorocyclopentadiene in humans. Animal studies have seen effects on the lung, liver, kidney, and blood. EPA has classified hexachlorocyclopentadiene as a Group D, not classifiable as to human carcinogenicity." +1930,"70-30-4","DTXSID6020690","Hexachlorophene","ACGUYXCXAPNIKK-UHFFFAOYSA-N","OC1=C(CC2=C(Cl)C(Cl)=CC(Cl)=C2O)C(Cl)=C(Cl)C=C1Cl","C13H6Cl6O2","406.89","180","pharmacological;pesticide","Unclassified","Hexachlorophene is an organochlorine compound that is diphenylmethane in which each of the phenyl groups is substituted by chlorines at positions 2, 3, and 5, and by a hydroxy group at position 6. An antiseptic that is effective against Gram-positive organisms, it is used in soaps and creams for the treatment of various skin disorders. It is also used in agriculture as an acaricide and fungicide, but is not approved for such use within the European Union. It has a role as an antiseptic drug, an acaricide, an antibacterial agent and an antifungal agrochemical. It is a polyphenol, a trichlorobenzene and a bridged diphenyl fungicide." +1931,"79983-71-4","DTXSID4034653","Hexaconazole","STMIIPIFODONDC-UHFFFAOYSA-N","CCCCC(O)(CN1C=NC=N1)C1=CC=C(Cl)C=C1Cl","C14H17Cl2N3O","314.20999999999998","84","pesticide","Unclassified","2-(2,4-dichlorophenyl)-1-(1H-1,2,4-triazol-1-yl)hexan-2-ol is a member of the class of triazoles that is 1-hexyl-1H-1,2,4-triazole in which the hydrogens at position 2 of the hexyl chain are replaced by hydroxy and 2,4-dichlorophenyl groups. It has a role as a chelator. It is a tertiary alcohol, a member of triazoles and a dichlorobenzene." +1932,"544-76-3","DTXSID0027195","Hexadecane","DCAYPVUWAIABOU-UHFFFAOYSA-N","CCCCCCCCCCCCCCCC","C16H34","226.44800000000001","264",NA,NA,NA +1933,"86479-06-3","DTXSID3032620","Hexaflumuron","RGNPBRKPHBKNKX-UHFFFAOYSA-N","FC(F)C(F)(F)OC1=C(Cl)C=C(NC(=O)NC(=O)C2=C(F)C=CC=C2F)C=C1Cl","C16H8Cl2F6N2O3","461.14","87",NA,NA,NA +1935,"22915-73-7","DTXSID0047539","Hexane-1,6-diyl dibenzoate","TYTTZVDFWCBYPG-UHFFFAOYSA-N","O=C(OCCCCCCOC(=O)C1=CC=CC=C1)C1=CC=CC=C1","C20H22O4","326.392","27",NA,NA,NA +1936,"111-69-3","DTXSID3021936","Hexanedinitrile","BTGRAWJCKBQKAO-UHFFFAOYSA-N","N#CCCCCC#N","C6H8N2","108.14400000000001","112",NA,NA,NA +1937,"124-04-9","DTXSID7021605","Hexanedioic acid","WNLRTRBMVRJNCN-UHFFFAOYSA-N","OC(=O)CCCCC(O)=O","C6H10O4","146.142","252",NA,NA,NA +1938,"33703-08-1","DTXSID5027982","Hexanedioic acid, diisononyl ester","-","-","-","-","-",NA,NA,NA +1939,"142-62-1","DTXSID7021607","Hexanoic acid","FUZZWVXGSFPDMH-UHFFFAOYSA-N","CCCCCC(O)=O","C6H12O2","116.16","220",NA,NA,NA +1940,"51235-04-2","DTXSID4024145","Hexazinone","CAWXEEYDBZRFPE-UHFFFAOYSA-N","CN(C)C1=NC(=O)N(C2CCCCC2)C(=O)N1C","C12H20N4O2","252.31800000000001","86","pesticide","Unclassified","Hexazinone is a white crystalline solid. Corrosive eye irritant. Used as an herbicide." +1943,"78587-05-0","DTXSID7024299","Hexythiazox","XGWIJUOSCAQSSV-XHDPSFHLSA-N","C[C@H]1[C@@H](SC(=O)N1C(=O)NC1CCCCC1)C1=CC=C(Cl)C=C1","C17H21ClN2O2S","352.88","55",NA,NA,NA +1944,"58-93-5","DTXSID2020713","Hydrochlorothiazide","JZUFKLXOESDKRF-UHFFFAOYSA-N","NS(=O)(=O)C1=CC2=C(NCNS2(=O)=O)C=C1Cl","C7H8ClN3O4S2","297.73","276",NA,NA,"Hydrochlorothiazide is a short acting thiazide diuretic. Hydrochlorothiazide (HCTZ) is widely used to treat hypertension and edema. This agent's metabolite appears to preferentially bind to and accumulate in red blood cells. This agent is primarily excreted by the kidneys." +1945,"123-31-9","DTXSID7020716","Hydroquinone","QIGBRXMKCJKVMJ-UHFFFAOYSA-N","OC1=CC=C(O)C=C1","C6H6O2","110.11199999999999","285",NA,NA,NA +1946,"52806-53-8","DTXSID8033562","Hydroxyflutamide","YPQLFJODEKMJEF-UHFFFAOYSA-N","CC(C)(O)C(=O)NC1=CC(=C(C=C1)[N+]([O-])=O)C(F)(F)F","C11H11F3N2O4","292.214","125",NA,NA,NA +1947,"127-07-1","DTXSID6025438","Hydroxyurea","VSNHCAURESNICA-UHFFFAOYSA-N","NC(=O)NO","CH4N2O2","76.055000000000007","279",NA,NA,NA +1951,"119515-38-7","DTXSID0034227","Icaridin","QLHULAHOXSSASE-UHFFFAOYSA-N","CCC(C)OC(=O)N1CCCCC1CCO","C12H23NO3","229.32","89",NA,NA,NA +1952,"473289-62-2","DTXSID7047356","Ilepatril","FXKFFTMLFPWYFH-RDGPPVDQSA-N","CC(C)[C@H](SC(C)=O)C(=O)N[C@H]1CC2=C(C=CC=C2)[C@H]2CCC[C@H](N2C1=O)C(O)=O","C22H28N2O5S","432.54","34",NA,NA,NA +1953,"35554-44-0","DTXSID8024151","Imazalil","PZBPKYOVPCNPJY-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C(CN1C=CN=C1)OCC=C","C14H14Cl2N2O","297.18","139","industrial;pesticide","Unclassified","1-[2-(allyloxy)-2-(2,4-dichlorophenyl)ethyl]imidazole is a member of the class of imidazoles in which the hydrogen at position 1 is replaced by a 2-(allyloxy)-2-(2,4-dichlorophenyl)ethyl group. It is a member of imidazoles, an ether and a dichlorobenzene." +1954,"114311-32-9","DTXSID3034664","Imazamox","NUPJIGQFXCQJBK-UHFFFAOYSA-N","COCC1=CN=C(C2=NC(C)(C(C)C)C(=O)N2)C(=C1)C(O)=O","C15H19N3O4","305.334","85",NA,NA,NA +1955,"104098-48-8","DTXSID5034270","Imazapic","PVSGXWMWNRGTKE-UHFFFAOYSA-N","CC(C)C1(C)NC(=NC1=O)C1=NC=C(C)C=C1C(O)=O","C14H17N3O3","275.30799999999999","71",NA,NA,NA +1956,"81334-34-1","DTXSID8034665","Imazapyr","CLQMBPJKHLGMQK-UHFFFAOYSA-N","CC(C)C1(C)N=C(NC1=O)C1=NC=CC=C1C(O)=O","C13H15N3O3","261.28100000000001","100",NA,NA,NA +1957,"81335-37-7","DTXSID3024152","Imazaquin","CABMTIJINOIHOD-UHFFFAOYSA-N","CC(C)C1(C)N=C(NC1=O)C1=NC2=C(C=CC=C2)C=C1C(O)=O","C17H17N3O3","311.34100000000001","92",NA,NA,NA +1958,"81335-77-5","DTXSID3024287","Imazethapyr","XVOKUMIPKHGGTN-UHFFFAOYSA-N","CCC1=CN=C(C2=NC(C)(C(C)C)C(=O)N2)C(=C1)C(O)=O","C15H19N3O3","289.33499999999998","93",NA,NA,NA +1961,"138261-41-3","DTXSID5032442","Imidacloprid","YWTYJOPNNQFBPC-UHFFFAOYSA-N","[O-][N+](=O)\N=C1/NCCN1CC1=CN=C(Cl)C=C1","C9H10ClN5O2","255.66","71",NA,NA,"Imidacloprid is a systemic insecticide that acts as an insect neurotoxin and belongs to a class of chemicals called the neonicotinoids which act on the central nervous system of insects. The chemical works by interfering with the transmission of stimuli in the insect nervous system. Specifically, it causes a blockage of the nicotinergic neuronal pathway. By blocking nicotinic acetylcholine receptors, imidacloprid prevents acetylcholine from transmitting impulses between nerves, resulting in the insect's paralysis and eventual death." +1965,"193-39-5","DTXSID8024153","Indeno(1,2,3-cd)pyrene","SXQBHARYMNFBPS-UHFFFAOYSA-N","C1=CC2=C(C=C1)C1=C3C2=CC2=C4C(C=CC(C=C1)=C34)=CC=C2","C22H12","276.33800000000002","82",NA,"PAH","Indeno[1,2,3-cd]pyrene is a yellowish, aromatic hydrocarbon consisting of six fused rings and produced by the incomplete combustion of organic matter. Indene[1,2,3-cd]pyrene is primarily found in certain foods, gasoline and diesel exhaust, cigarette smoke, coal tar and coal tar pitch, soot and petroleum asphalt. This substance is used only for research purposes. Indene[1,2,3-cd]pyrene is reasonably anticipated to be a human carcinogen." +1966,"1303-11-3","DTXSID5023825","Indium arsenide","RPQDHPTXJYYUPQ-UHFFFAOYSA-N","[As]#[In]","AsIn","189.74","31",NA,NA,NA +1967,"120-72-9","DTXSID0020737","Indole","SIKJAQJRHWYJAI-UHFFFAOYSA-N","N1C=CC2=C1C=CC=C2","C8H7N","117.151","406","personalCare;industrial","Unclassified","1H-indole is an indole and a polycyclic heteroarene. Indole is widely distributed in the natural environment and can be produced by a variety of bacteria. As an intercellular signal molecule, indole regulates various aspects of bacterial physiology, including spore formation, plasmid stability, resistance to drugs, biofilm formation, and virulence." +1968,"53-86-1","DTXSID9020740","1-(p-Chlorobenzoyl)-5-methoxy-2-methyl-Indole-3-acetic acid","CGIGDMFJXJATDK-UHFFFAOYSA-N","COC1=CC2=C(C=C1)N(C(=O)C1=CC=C(Cl)C=C1)C(C)=C2CC(O)=O","C19H16ClNO4","357.79","377",NA,NA,"Indomethacin is a synthetic nonsteroidal indole derivative with anti-inflammatory activity and chemopreventive properties. As a nonsteroidal anti-inflammatory drug (NSAID), indomethacin inhibits the enzyme cyclooxygenase, thereby preventing cyclooxygenase-mediated DNA adduct formation by heterocyclic aromatic amines. This agent also may inhibit the expression of multidrug-resistant protein type 1, resulting in increased efficacies of some antineoplastic agents in treating multi-drug resistant tumors. In addition, indomethacin activates phosphatases that inhibit the migration and proliferation of cancer cells and downregulates survivin, which may result in tumor cell apoptosis." +1969,"173584-44-6","DTXSID1032690","Indoxacarb","VBCVPMMZEGZULK-NRFANRHFSA-N","COC(=O)N(C(=O)N1CO[C@]2(CC3=C(C=CC(Cl)=C3)C2=N1)C(=O)OC)C1=CC=C(OC(F)(F)F)C=C1","C22H17ClF3N3O7","527.84","67",NA,NA,NA +1970,"186392-65-4","DTXSID4047252","Ingliforib","GVDRRZOORHCTAN-MJUUVYJYSA-N","O[C@H]([C@H](CC1=CC=CC=C1)NC(=O)C1=CC2=CC(Cl)=CC=C2N1)C(=O)N1C[C@H](O)[C@H](O)C1","C23H24ClN3O5","457.91","31",NA,NA,NA +1974,"144550-36-7","DTXSID2034673","Iodosulfuron-methyl-sodium","JUJFQMPKBJPSFZ-UHFFFAOYSA-M","[Na+].COC(=O)C1=C(C=C(I)C=C1)S(=O)(=O)[N-]C(=O)NC1=NC(OC)=NC(C)=N1","C14H13IN5NaO6S","529.24","52",NA,NA,NA +1975,"36734-19-7","DTXSID3024154","Iprodione","ONUFESLQCSAYKA-UHFFFAOYSA-N","CC(C)NC(=O)N1CC(=O)N(C1=O)C1=CC(Cl)=CC(Cl)=C1","C13H13Cl2N3O3","330.17","105","pesticide","Unclassified","Iprodione is an imidazolidine-2,4-dione in which the nitrogen at position 1 is substituted by an N-(isopropyl)carboxamide group while that at position 3 is substituted by a 3,5-dichlorophenyl group. A contact fungicide, it blocks the growth of the fungal mycelium and inhibits the germination of fungal spores. It is used on fruit and vegetable crops affected by various fungal diseases. It is also used as a nematicide. It has a role as a nematicide and an antifungal agrochemical. It is an imidazolidine-2,4-dione, a member of ureas, a member of benzenes, an imidazole fungicide and a dichlorophenyl dicarboximide fungicide." +1978,"42509-80-8","DTXSID7034676","Isazofos","XRHGWAGWAHHFLF-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=NN(C(C)C)C(Cl)=N1","C9H17ClN3O3PS","313.74","53","pesticide;pesticide","Unclassified","Isazofos is an organic thiophosphate." +1980,"29761-21-5","DTXSID3025465","Isodecyl diphenyl phosphate","-","C*.CCCCCCCCCOP(=O)(OC1=CC=CC=C1)OC1=CC=CC=C1 |c:16,18,24,26,t:14,22,lp:11:2,13:2,14:2,21:2,m:1:10.9.8.7.6.5.4.3|","-","-","-",NA,NA,NA +1981,"97-54-1","DTXSID7022413","Isoeugenol","BJIOGJUNALELMI-UHFFFAOYSA-N","COC1=CC(C=CC)=CC=C1O","C10H12O2","164.20400000000001","49","personalCare;natural","Unclassified",NA +1982,"54-85-3","DTXSID8020755","Isoniazid","QRXWMOHMRWLFEY-UHFFFAOYSA-N","NNC(=O)C1=CC=NC=C1","C6H7N3O","137.142","351",NA,NA,"Isoniazid is a synthetic derivative of nicotinic acid with anti-mycobacterial properties. Although its mechanism of action is still unclear, isoniazid appears to block the synthesis of mycolic acids, major components of the mycobacterial cell wall. This agent is only active against actively growing mycobacteria because, as a pro-drug, it requires activation in susceptible mycobacterial species. Isoniazid also interferes with mycobacterial metabolism of vitamin B6. Resistance occurs due to decreased bacterial wall penetration." +1983,"29590-42-9","DTXSID8027955","Isooctyl acrylate","-","-","-","-","-",NA,NA,NA +1984,"123-51-3","DTXSID3025469","Isopentyl alcohol","PHTQWCKDNZKARW-UHFFFAOYSA-N","CC(C)CCO","C5H12O","88.15","178",NA,NA,NA +1985,"106-27-4","DTXSID3042059","Isopentyl butyrate","PQLMXFQTAMDXIZ-UHFFFAOYSA-N","CCCC(=O)OCCC(C)C","C9H18O2","158.24100000000001","101",NA,NA,NA +1986,"78-59-1","DTXSID8020759","Isophorone","HJOVHMDZYOCNQW-UHFFFAOYSA-N","CC1=CC(=O)CC(C)(C)C1","C9H14O","138.21","135",NA,NA,NA +1987,"4098-71-9","DTXSID0023826","Isophorone diisocyanate","NIMLQBUJDJZYEJ-UHFFFAOYSA-N","CC1(C)CC(CC(C)(CN=C=O)C1)N=C=O","C12H18N2O2","222.28800000000001","82",NA,NA,NA +1991,"33820-53-0","DTXSID8024157","Isopropalin","NEKOXWSIMFDGMA-UHFFFAOYSA-N","CCCN(CCC)C1=C(C=C(C=C1[N+]([O-])=O)C(C)C)[N+]([O-])=O","C15H23N3O4","309.36599999999999","54","pesticide","Unclassified","Isopropalin has been determined to be a systemic toxicant by the EPA." +3094,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +2640,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +1992,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +1994,"51-30-9","DTXSID6025486","Isoproterenol hydrochloride","IROWCYIEJAOFOW-UHFFFAOYSA-N","Cl.CC(C)NCC(O)C1=CC(O)=C(O)C=C1","C11H18ClNO3","247.72","167",NA,NA,NA +1995,"82558-50-7","DTXSID8024159","Isoxaben","PMHURSZHKKJGBM-UHFFFAOYSA-N","CCC(C)(CC)C1=NOC(NC(=O)C2=C(OC)C=CC=C2OC)=C1","C18H24N2O4","332.4","63","pesticide","Unclassified","Isoxaben is a benzamide obtained by formal condensation of the carboxy group of 2,6-dimethoxybenzoic acid and the amino group of 3-(3-methylpentan-3-yl)-1,2-oxazol-5-amine. It has a role as a herbicide and a cellulose synthesis inhibitor. It is a member of isoxazoles and a member of benzamides." +1996,"141112-29-0","DTXSID5034723","Isoxaflutole","OYIKARCXOQLFHF-UHFFFAOYSA-N","CS(=O)(=O)C1=C(C=CC(=C1)C(F)(F)F)C(=O)C1=C(ON=C1)C1CC1","C15H12F3NO4S","359.32","66","pesticide","Unclassified","Isoxaflutole is a member of the class of isoxazoles that is 1,2-oxazole substituted by a 2-(methanesulfonyl)-4-(trifluoromethyl)benzoyl group and a cyclopropyl group at positions 4 and 5, respectively. It is a 4-hydroxyphenylpyruvate dioxygenase inhibitor which is used as a herbicide for weed control in maize and sugarcane. It has a role as an EC 1.13.11.27 (4-hydroxyphenylpyruvate dioxygenase) inhibitor, a proherbicide and an agrochemical. It is a member of cyclopropanes, a member of isoxazoles, an aromatic ketone, a member of (trifluoromethyl)benzenes and a sulfone." +2058,"143-50-0","DTXSID1020770","Kepone","LHHGDZSESBACKH-UHFFFAOYSA-N","ClC12C(=O)C3(Cl)C4(Cl)C1(Cl)C1(Cl)C2(Cl)C3(Cl)C4(Cl)C1(Cl)Cl","C10Cl10O","490.61","68","pesticide;pesticide","Unclassified","Chlordecone is a very stable, colorless, odorless, synthetic chlorinated polycyclic hydrocarbon that is a degradation product of Mirex. Chlordecone has been used as an insecticide on bananas, non-bearing citrus trees, tobacco, lawns and flowers. Exposure to this substance causes neurological symptoms, such as tremors and slurred speech. Chlordecone is reasonably anticipated to be a human carcinogen based on evidence of carcinogenicity in experimental animals." +2059,"65277-42-1","DTXSID7029879","Ketoconazole","XMAYWYJOQHXEEK-MKNUCDGGNA-N","CC(=O)N1CCN(CC1)C1=CC=C(OC[C@H]2CO[C@@](CN3C=CN=C3)(O2)C2=CC=C(Cl)C=C2Cl)C=C1","C26H28Cl2N4O4","531.42999999999995","199",NA,NA,NA +2064,"77501-63-4","DTXSID7024160","Lactofen","CONWAEURSVPLRM-UHFFFAOYSA-N","CCOC(=O)C(C)OC(=O)C1=C(C=CC(OC2=C(Cl)C=C(C=C2)C(F)(F)F)=C1)[N+]([O-])=O","C19H15ClF3NO7","461.77","76","pesticide","Unclassified","Lactofen is a dark brown to tan solid. Insoluble in water. Used as an herbicide." +2067,"50-81-7","DTXSID5020106","L-Ascorbic acid","CIWBSHSKHKDKBQ-JLAZNSOCSA-N","[H][C@@]1(OC(=O)C(O)=C1O)[C@@H](O)CO","C6H8O6","176.124","389",NA,NA,"Ascorbic Acid is a natural water-soluble vitamin (Vitamin C). Ascorbic acid is a potent reducing and antioxidant agent that functions in fighting bacterial infections, in detoxifying reactions, and in the formation of collagen in fibrous tissue, teeth, bones, connective tissue, skin, and capillaries. Found in citrus and other fruits, and in vegetables, vitamin C cannot be produced or stored by humans and must be obtained in the diet." +2076,"6080-56-4","DTXSID3031521","Lead(II) acetate trihydrate","YCFCGUGOMKHROF-UHFFFAOYSA-L","O.O.O.[PbH2++].CC([O-])=O.CC([O-])=O","C4H14O7Pb","381.3","39",NA,NA,NA +2090,"58-89-9","DTXSID2020686","Lindane","JLYXXMFPNIAWKQ-GNIYUCBRSA-N","Cl[C@H]1[C@H](Cl)[C@@H](Cl)[C@@H](Cl)[C@H](Cl)[C@H]1Cl","C6H6Cl6","290.81","-","pesticide;pesticide","Unclassified","Lindane is the gamma-isomer of benzene hexachloride, a colorless to white colored, synthetic, crystalline solid with a slight musty odor that emits toxic fumes of hydrochloric acid and other chlorinated compounds when heated to decomposition. Lindane is used as an insecticide for hardwood logs, lumber, and crops. Lindane also has topical pediculicide and scabicide activities probably due to its neurotoxic effects. Inhalation exposure to this substance causes severe irritation of the nose and throat, causes anemia, and affects the liver, nervous, cardiovascular, and immune system. Lindane is reasonably anticipated to be a human carcinogen." +2091,"330-55-2","DTXSID2024163","Linuron","XKJMBINCVNINCA-UHFFFAOYSA-N","CON(C)C(=O)NC1=CC=C(Cl)C(Cl)=C1","C9H10Cl2N2O2","249.09","102","pesticide","Unclassified","Linuron is a member of the class of phenylureas that is N-methyl urea substituted by a methoxy group at position 1 and a 3,4-dichlorophenyl group at position 3. It has a role as a xenobiotic, an environmental contaminant, a herbicide and an agrochemical. It is a dichlorobenzene and a member of phenylureas. It derives from a N-methyl urea." +2096,"75330-75-5","DTXSID5020784","Lovastatin","PCZOHLXUXFIOCF-BXMDZJJMSA-N","[H][C@]12[C@H](C[C@@H](C)C=C1C=C[C@H](C)[C@@H]2CC[C@@H]1C[C@@H](O)CC(=O)O1)OC(=O)[C@@H](C)CC","C24H36O5","404.54700000000003","286",NA,NA,NA +2097,"87-69-4","DTXSID8023632","L-Tartaric acid","FEWJPZIEWOKRBE-JCYAYHJZSA-N","O[C@H]([C@@H](O)C(O)=O)C(O)=O","C4H6O6","150.08600000000001","647",NA,NA,NA +2098,"73-22-3","DTXSID5021419","L-Tryptophan","QIVBCDIJIAJPQS-VIFPVBQESA-N","N[C@@H](CC1=CNC2=CC=CC=C12)C(O)=O","C11H12N2O2","204.22900000000001","376",NA,NA,"Tryptophan is the least plentiful of all 22 amino acids and an essential amino acid in humans (provided by food), Tryptophan is found in most proteins and a precursor of serotonin. Tryptophan is converted to 5-hydroxy-tryptophan (5-HTP), converted in turn to serotonin, a neurotransmitter essential in regulating appetite, sleep, mood, and pain. Tryptophan is a natural sedative and present in dairy products, meats, brown rice, fish, and soybeans." +2103,"1634-78-2","DTXSID9020790","Malaoxon","WSORODGWGUUOBO-UHFFFAOYSA-N","CCOC(=O)CC(SP(=O)(OC)OC)C(=O)OCC","C10H19O7PS","314.29000000000002","64","pesticide","Unclassified","Malaoxon (Liromat, Malation oxon, Malthon oxon) is a chemical compound with the formula C10H19O7PS. More specifically, it is a phosphorothioate. It is a breakdown product of, and more toxic than, malathion. Malaoxon is a colorless viscous oily liquid with a weak unpleasant odor." +2104,"121-75-5","DTXSID4020791","Malathion","JXSJBGJIGXNWCI-UHFFFAOYSA-N","CCOC(=O)CC(SP(=S)(OC)OC)C(=O)OCC","C10H19O6PS2","330.35","157","pharmacological;pesticide","Unclassified","Malathion is a synthetic phosphorous compound and cholinesterase inhibitor that is strictly used as a topical pediculicide. Malathion exerts its action on the nervous system of the lice by irreversibly inhibiting the activity of cholinesterase, thereby allowing acetylcholine to accumulate at cholinergic synapses and enhancing cholinergic receptor stimulation. This eventually leads to the head lice's death." +2105,"123-33-1","DTXSID9020792","Maleic hydrazide","BGRDGMRNKXEXQD-UHFFFAOYSA-N","O=C1NNC(=O)C=C1","C4H4N2O2","112.08799999999999","190",NA,NA,"A pyridazinone, maleic hydrazide is an odorless white solid. Sinks in water." +2106,"118-71-8","DTXSID0025523","Maltol","XPCTZQVDEJYUGT-UHFFFAOYSA-N","CC1=C(O)C(=O)C=CO1","C6H6O3","126.111","214",NA,NA,NA +10021,"2234-56-2","DTXSID60110013","4-(2-Chlorophenyl)-3-[3-[4-(2-chlorophenyl)benzo[f]quinolin-3(4H)-ylidene]-1-propenyl]-benzo[f]quinolinium perchlorate","UCTCLHLMQCBHST-UHFFFAOYSA-M","[O-][Cl](=O)(=O)=O.ClC1=C(C=CC=C1)N1C(=CC=CC2=[N+](C3=CC=C4C=CC=CC4=C3C=C2)C2=C(Cl)C=CC=C2)C=CC2=C3C=CC=CC3=CC=C12","C41H27Cl3N2O4","718.03","-",NA,NA,NA +2109,"12427-38-2","DTXSID9020794","Maneb","YKSNLCVSTHTHJA-UHFFFAOYSA-L","[Mn++].[S-]C(=S)NCCNC([S-])=S","C4H6MnN2S4","265.27999999999997","46",NA,NA,NA +2110,"12108-13-3","DTXSID9027738","(Methylcyclopentadienyl)tricarbonylmanganese","YASXMYPVVIIRQH-UHFFFAOYSA-N","CC1C=C[C-](=C1)[Mn+]([C-]#[O+])([C-]#[O+])[C-]#[O+]","C9H7MnO3","218.09","4",NA,NA,NA +2122,"110235-47-7","DTXSID4042121","Mepanipyrim","CIFWZNRJIBNXRE-UHFFFAOYSA-N","CC#CC1=CC(C)=NC(NC2=CC=CC=C2)=N1","C14H13N3","223.279","76","pesticide","Unclassified","Mepanipyrim is a member of the class of aminopyrimidines that is N-phenylpyrimidin-2-amine carrying additional methyl and 1-propynyl substituents at positions 4 and 6 respectively. A fungicide used to control a wide range of diseases including grey mould on strawberries, tomatoes and cucumabers, and scab on apples and pears. It has a role as an aryl hydrocarbon receptor agonist, a hepatotoxic agent and an antifungal agrochemical. It is an aminopyrimidine, a secondary amino compound, an acetylenic compound and an anilinopyrimidine fungicide." +2123,"24307-26-4","DTXSID1024170","1,1-Dimethylpiperidinium chloride","VHOVSQVSAAQANU-UHFFFAOYSA-M","[Cl-].C[N+]1(C)CCCCC1","C7H16ClN","149.66","92",NA,NA,NA +2124,"7487-94-7","DTXSID5020811","Mercuric chloride","LWJROJCJINYWOX-UHFFFAOYSA-L","[Cl-].[Cl-].[Hg++]","Cl2Hg","271.49","29",NA,NA,NA +2128,"84-16-2","DTXSID2022381","meso-Hexestrol","PBBGSZCBWVPOOL-HDICACEKSA-N","CC[C@@H]([C@@H](CC)C1=CC=C(O)C=C1)C1=CC=C(O)C=C1","C18H22O2","270.37200000000001","85","pharmacological","Unclassified","Hexestrol is a synthetic hydrogenated derivative of diethylstilbestrol (DES). Hexestrol exhibits strong affinity for estrogen receptors that are overexpressed in some types of cancers. When conjugated with a neoplastic drug, hexestrol may selectively concentrate the cytotoxic agent in estrogen receptor-rich tumors. This agent may also be mutagenic. (NCI04)" +2129,"104206-82-8","DTXSID7032424","Mesotrione","KPUREKXXPHOJQT-UHFFFAOYSA-N","CS(=O)(=O)C1=CC(=C(C=C1)C(=O)C1C(=O)CCCC1=O)[N+]([O-])=O","C14H13NO7S","339.32","83",NA,NA,NA +2130,"57837-19-1","DTXSID6024175","Metalaxyl","ZQEIXNIJLIKNTD-UHFFFAOYSA-N","COCC(=O)N(C(C)C(=O)OC)C1=C(C)C=CC=C1C","C15H21NO4","279.33600000000001","104","pesticide","Unclassified","Methyl N-(2,6-dimethylphenyl)-N-(methoxyacetyl)alaninate is an alanine derivative that is methyl alaninate in which one of the hydrogens attached to the nitrogen is substituted by a methoxyacetyl group, while the other is substituted by a 2,6-dimethylphenyl group. It is an alanine derivative, an aromatic amide, a carboxamide, an ether and a methyl ester." +2131,"6734-80-1","DTXSID2040361","Metam-sodium hydrate","QRQDRWKSESXODM-UHFFFAOYSA-M","O.O.O.[Na+].CNC([S-])=S","C2H10NNaO3S2","183.22","9",NA,NA,NA +2132,"79-39-0","DTXSID8029600","Methacrylamide","FQPSGWSUVKBHSU-UHFFFAOYSA-N","CC(=C)C(N)=O","C4H7NO","85.105999999999995","123",NA,NA,NA +2134,"1095-90-5","DTXSID2020501","Methadone hydrochloride","FJQXCDYVZAHXNS-UHFFFAOYSA-N","Cl.CCC(=O)C(CC(C)N(C)C)(C1=CC=CC=C1)C1=CC=CC=C1","C21H28ClNO","345.91","54",NA,NA,NA +2135,"10265-92-6","DTXSID6024177","Methamidophos","NNKVPIKMPCQWCG-UHFFFAOYSA-N","COP(N)(=O)SC","C2H8NO2PS","141.12","106","pesticide","Unclassified","Methamidophos is an organic thiophosphate resulting from the N-deacylation of the proinsecticide acephate. It has a role as an acaricide, an agrochemical and an avicide. It is an organic thiophosphate, a phosphoramide and an organothiophosphate insecticide." +2137,"100-97-0","DTXSID6020692","Methenamine","VKYKSIONXSXAKP-UHFFFAOYSA-N","C1N2CN3CN1CN(C2)C3","C6H12N4","140.19","235",NA,NA,"Methenamine is a heterocyclic organic compound with antibiotic activity. In the body methenamine is converted to formaldehyde, a nonspecific bactericidal agent. Methenamine is typically used long-term to treat chronic urinary tract infections and to prevent the recurrence of infections." +2138,"950-37-8","DTXSID5020819","Methidathion","MEBQXILRKZHVCX-UHFFFAOYSA-N","COC1=NN(CSP(=S)(OC)OC)C(=O)S1","C6H11N2O4PS3","302.32","96","pesticide","Unclassified","Methidathion is an organic thiophosphate and an organothiophosphate insecticide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an acaricide and an agrochemical. It derives from a 5-methoxy-1,3,4-thiadiazol-2(3H)-one." +2139,"60-56-0","DTXSID4020820","Methimazole","PMRYVIKBURPHAH-UHFFFAOYSA-N","CN1C=CNC1=S","C4H6N2S","114.17","285",NA,NA,NA +2140,"16752-77-5","DTXSID1022267","Methomyl","UHXUZOCRWCRNSJ-UHFFFAOYSA-N","CNC(=O)ON=C(C)SC","C5H10N2O2S","162.21","64","pesticide","Unclassified","A carbamate insecticide with anticholinesterase activity." +2141,"59-05-2","DTXSID4020822","Methotrexate","FBOZXECLQNJBKD-ZDUSSCGKSA-N","CN(CC1=NC2=C(N=C1)N=C(N)N=C2N)C1=CC=C(C=C1)C(=O)N[C@@H](CCC(O)=O)C(O)=O","C20H22N8O5","454.447","437",NA,NA,"Methotrexate is an antimetabolite and antifolate agent with antineoplastic and immunosuppressant activities. Methotrexate binds to and inhibits the enzyme dihydrofolate reductase, resulting in inhibition of purine nucleotide and thymidylate synthesis and, subsequently, inhibition of DNA and RNA syntheses. Methotrexate also exhibits potent immunosuppressant activity although the mechanism(s) of actions is unclear." +2142,"72-43-5","DTXSID9020827","Methoxychlor","IAKOZHOLGAGEJT-UHFFFAOYSA-N","COC1=CC=C(C=C1)C(C1=CC=C(OC)C=C1)C(Cl)(Cl)Cl","C16H15Cl3O2","345.64","127","pharmacological;pesticide","Unclassified","Methoxychlor is a white crystalline solid which is often dissolved in a liquid carrier such as diesel oil. It can cause illness by inhalation, skin absorption and/or ingestion. The primary hazard is the threat to the environment. Immediate steps should be taken to limit its spread to the environment. If dissolved in a liquid carrier, it can easily penetrate the soil and contaminate groundwater and nearby streams. It is used as a pesticide." +2143,"161050-58-4","DTXSID3032628","Methoxyfenozide","QCAWEPFNJXQPAN-UHFFFAOYSA-N","COC1=CC=CC(C(=O)NN(C(=O)C2=CC(C)=CC(C)=C2)C(C)(C)C)=C1C","C22H28N2O3","368.47699999999998","103",NA,NA,NA +2144,"134-20-3","DTXSID6025567","Methyl 2-aminobenzoate","VAMXMNNIEUEQDV-UHFFFAOYSA-N","COC(=O)C1=C(N)C=CC=C1","C8H9NO2","151.16499999999999","153",NA,NA,NA +2149,"111-82-0","DTXSID5026889","Methyl dodecanoate","UQDUPQYQJKYHQI-UHFFFAOYSA-N","CCCCCCCCCCCC(=O)OC","C13H26O2","214.34899999999999","129",NA,NA,NA +2150,"556-61-6","DTXSID2027204","Methyl isothiocyanate","LGDSHSYDSCRFAB-UHFFFAOYSA-N","CN=C=S","C2H3NS","73.11","110",NA,NA,NA +2151,"115-09-3","DTXSID5020813","Methylmercuric(II) chloride","BABMCXWQNSQAOC-UHFFFAOYSA-M","C[Hg]Cl","CH3ClHg","251.08","60",NA,NA,NA +2152,"66-27-3","DTXSID7020845","Methyl methanesulfonate","MBABOKRGFJTBAE-UHFFFAOYSA-N","COS(C)(=O)=O","C2H6O3S","110.13","157",NA,NA,NA +2153,"111-11-5","DTXSID2026864","Methyl octanoate","JGHZJRVDZXSNKQ-UHFFFAOYSA-N","CCCCCCCC(=O)OC","C9H18O2","158.24100000000001","134",NA,NA,NA +2154,"298-00-0","DTXSID1020855","Methyl parathion","RLBIQVVOMOPOHC-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC=C(C=C1)[N+]([O-])=O","C8H10NO5PS","263.2","114","pesticide;pesticide","Unclassified","Methyl parathion is a white crystalline solid which is often dissolved in a liquid solvent carrier. The commercial product is a tan liquid (xylene solution) with a pungent odor. It is slightly soluble to insoluble in water. Usually with the liquid solvent it is a combustible liquid. It is toxic by inhalation, ingestion and skin absorption. It is used as an insecticide." +2155,"119-36-8","DTXSID5025659","Methyl salicylate","OSWPMRLSEDHDFF-UHFFFAOYSA-N","COC(=O)C1=C(O)C=CC=C1","C8H8O3","152.149","218",NA,NA,NA +2156,"41372-08-1","DTXSID5020863","Methyldopa sesquihydrate","YKFCISHFRZHKHY-NGQGLHOPSA-N","O.O.O.C[C@](N)(CC1=CC=C(O)C(O)=C1)C(O)=O.C[C@](N)(CC1=CC=C(O)C(O)=C1)C(O)=O","C20H32N2O11","476.47899999999998","35",NA,NA,"Methyldopa is a phenylalanine derivative and an aromatic amino acid decarboxylase inhibitor with antihypertensive activity. Methyldopa is a prodrug and is metabolized in the central nervous system. The antihypertensive action of methyldopa seems to be attributable to its conversion into alpha-methylnorepinephrine, which is a potent alpha-2 adrenergic agonist that binds to and stimulates potent central inhibitory alpha-2 adrenergic receptors. This results in a decrease in sympathetic outflow and decreased blood pressure." +2157,"6317-18-6","DTXSID8025599","Methylene bis(thiocyanate)","JWZXKXIUSSIAMR-UHFFFAOYSA-N","N#CSCSC#N","C3H2N2S2","130.18","90",NA,NA,NA +2159,"93-15-2","DTXSID5025607","Methyleugenol","ZYEMGPIYFIJGTP-UHFFFAOYSA-N","COC1=CC=C(CC=C)C=C1OC","C11H14O2","178.23099999999999","141","personalCare;natural","Unclassified","Methyleugenol is a yellowish, oily, naturally occurring liquid with a clove-like aroma and is present in many essential oils. Methyleugenol is used as a flavoring agent, as a fragrance and as an anesthetic in rodents. Methyleugenol is mutagenic in animals and is reasonably anticipated to be a human carcinogen based on evidence of carcinogenicity in animals." +2160,"99-76-3","DTXSID4022529","Methylparaben","LXCFILQKKLGQFO-UHFFFAOYSA-N","COC(=O)C1=CC=C(O)C=C1","C8H8O3","152.149","234",NA,NA,NA +2161,"51218-45-2","DTXSID4022448","Metolachlor","WVQBLGZPHOPPFO-UHFFFAOYSA-N","CCC1=C(N(C(C)COC)C(=O)CCl)C(C)=CC=C1","C15H22ClNO2","283.8","121","pesticide","Unclassified","Metolachlor is a tan to brown oily liquid with a slightly sweet odor. Slightly soluble in water and denser than water. Hence sinks in water. Soluble in most organic solvents. Used as a selective herbicide." +2162,"21087-64-9","DTXSID6024204","Metribuzin","FOXFZRUHNHCZPX-UHFFFAOYSA-N","CSC1=NN=C(C(=O)N1N)C(C)(C)C","C8H14N4OS","214.29","116","pesticide","Unclassified","Metribuzin is a member of the class of 1,2,4-triazines that is 1,2,4-triazin-5(4H)-one substituted by an amino group at position 4, tert-butyl group at position 6 and a methylsulfanyl group at position 3. It has a role as a xenobiotic, an environmental contaminant, a herbicide and an agrochemical. It is a member of 1,2,4-triazines, an organic sulfide and a cyclic ketone." +2163,"7786-34-7","DTXSID2032683","Mevinphos","GEPDYQSQVLXLEU-UHFFFAOYSA-N","COC(=O)C=C(C)OP(=O)(OC)OC","C7H13O6P","224.149","-","pesticide","Unclassified","Mevinphos is an organophosphate insecticide that acts as an acetylcholinesterase inhibitor to control insects in a wide range of crops. It is most commonly used for the control of chewing and sucking insects, as well as spider mites. Common synonym names are duraphos, fosdrin, menite, mevinfos, mevinox, phosdrin, and phosdrine." +2164,"113-48-4","DTXSID6032562","Octylbicycloheptenedicarboximide","WLLGXSLBOPFWQV-UHFFFAOYSA-N","CCCCC(CC)CN1C(=O)C2C3CC(C=C3)C2C1=O","C17H25NO2","275.392","48",NA,NA,NA +2165,"90-94-8","DTXSID2020894","Michler's ketone","VVBLNCFGVYUYGU-UHFFFAOYSA-N","CN(C)C1=CC=C(C=C1)C(=O)C1=CC=C(C=C1)N(C)C","C17H20N2O","268.36","129",NA,NA,"Michler's Ketone is a white to green colored leaflet material that emits toxic fumes of nitrogen oxides when heated to decomposition. Michler's ketone is used as a chemical intermediate in making dyes and pigments, particularly auramine derivatives, for dyeing paper, textiles, and leather. Exposure to Michler's ketone affects the central nervous system. It is reasonably anticipated to be a human carcinogen." +2178,"84371-65-3","DTXSID5023322","Mifepristone","VKHAHZOOUSRJNA-GCNJZUOMSA-N","CC#C[C@]1(O)CC[C@H]2[C@@H]3CCC4=CC(=O)CCC4=C3[C@H](C[C@]12C)C1=CC=C(C=C1)N(C)C","C29H35NO2","429.60399999999998","219",NA,NA,NA +2180,"2385-85-5","DTXSID7020895","Mirex","GVYLCNUFSHDAAW-UHFFFAOYSA-N","ClC12C3(Cl)C4(Cl)C5(Cl)C(Cl)(C1(Cl)C4(Cl)Cl)C2(Cl)C(Cl)(Cl)C35Cl","C10Cl12","545.51","70","pesticide","Unclassified","Mirex is a white, stable, odorless, synthetic, crystalline solid chlorinated hydrocarbon. Mirex was used as an insecticide against ants and as a fire-retardant for plastics, paint, rubber, paper and electrical appliances, but it is no longer produced or used in the US. Exposure to Mirex irritates the skin and eyes and causes a headache as well as dizziness, nausea and vomiting and affects the central nervous system, lungs, liver and kidneys. Mirex is reasonably anticipated to be a human carcinogen." +2182,"2212-67-1","DTXSID6024206","Molinate","DEDOPGXGGQYYMW-UHFFFAOYSA-N","CCSC(=O)N1CCCCCC1","C9H17NOS","187.3","84","pesticide","Unclassified","Molinate is a member of the class of azepanes that is azepane in which the nitrogen is substituted by an (ethylsulfanyl)carbonyl group, -C(=O)SEt. A thiocarbamate herbicide not approved for use in the U.S. or European Union, it is used control grass weeds in rice paddies. It has a role as an antispermatogenic agent, a herbicide and an agrochemical. It is a member of azepanes and a monothiocarbamic ester." +2185,"4376-20-9","DTXSID2025680","MEHP","DJDSLBVSSOQSLW-UHFFFAOYSA-N","CCCCC(CC)COC(=O)C1=CC=CC=C1C(O)=O","C16H22O4","278.34800000000001","104",NA,NA,"Mono(2-ethylhexyl) phthalate is the mono(2-ethylhexyl) ester of benzene-1,2-dicarboxylic acid. It derives from a 2-ethylhexan-1-ol. It is a conjugate acid of a mono(2-ethylhexyl) phthalate(1-)." +2186,"2528-16-7","DTXSID9043938","Monobenzyl phthalate","XIKIUQUXDNHBFR-UHFFFAOYSA-N","OC(=O)C1=C(C=CC=C1)C(=O)OCC1=CC=CC=C1","C15H12O4","256.25700000000001","95",NA,NA,"Monobenzyl phthalate is a phthalic acid monoester resulting from the formal condensation of one of the carboxy groups of phthalic acid with the hydroxy group of benzyl alcohol. It is a major metabolite of the plasticiser butyl benzyl phthalate (BBP). It has a role as a xenoestrogen and a xenobiotic metabolite. It derives from a benzyl alcohol." +2187,"131-70-4","DTXSID4040002","Monobutyl phthalate","YZBOVSFWWNVKRJ-UHFFFAOYSA-N","CCCCOC(=O)C1=C(C=CC=C1)C(O)=O","C12H14O4","222.24","85",NA,NA,"Monobutylphthalate is a phthalic acid monoester. It derives from a butan-1-ol." +2188,"6923-22-4","DTXSID9034816","Monocrotophos","KRTSDMXIXPKRQR-AATRIKPKSA-N","CNC(=O)\C=C(/C)OP(=O)(OC)OC","C7H14NO5P","223.16499999999999","77","pesticide","Unclassified","Monocrotophos is an alkenyl phosphate that is the 4-(methylamino)-4-oxobut-2-en-2-yl ester of dimethyl phosphate. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an EC 3.1.1.8 (cholinesterase) inhibitor, an acaricide, an agrochemical, an avicide and an EC 1.4.3.4 (monoamine oxidase) inhibitor. It is a dialkyl phosphate, an organophosphate insecticide, an alkenyl phosphate and a monocarboxylic acid amide." +2189,"4376-18-5","DTXSID9040001","Monomethyl phthalate","FNJSWIPFHMKRAT-UHFFFAOYSA-N","COC(=O)C1=C(C=CC=C1)C(O)=O","C9H8O4","180.15899999999999","145",NA,NA,NA +2191,"150-68-5","DTXSID0020311","Monuron","BMLIZLVNXIYGCK-UHFFFAOYSA-N","CN(C)C(=O)NC1=CC=C(Cl)C=C1","C9H11ClN2O","198.65","97",NA,NA,"Monuron is a member of the class of phhenylureas that is urea in which one of the nitrogens is substituted by a p-chlorophenyl group while the other is substituted by two methyl groups. It has a role as a herbicide, a xenobiotic, and an environmental contaminant. Monuron appears as white crystalline solid or white powder with a slight odor." +2192,"36913-39-0","DTXSID40880040","1-Methyl-4-phenylpyridinium iodide","RFDFRDXIIKROAI-UHFFFAOYSA-M","[I-].C[N+]1=CC=C(C=C1)C1=CC=CC=C1","C12H12IN","297.13900000000001","-",NA,NA,NA +2240,"88671-89-0","DTXSID8024315","Myclobutanil","HZJKXKUJVSEEFU-UHFFFAOYSA-N","CCCCC(CN1C=NC=N1)(C#N)C1=CC=C(Cl)C=C1","C15H17ClN4","288.77999999999997","112","pesticide","Unclassified","Myclobutanil is a light yellow solid used as a fungicide." +2241,"123-35-3","DTXSID6025692","Myrcene","UAHWPYUMFXYFJY-UHFFFAOYSA-N","CC(C)=CCCC(=C)C=C","C10H16","136.238","119",NA,NA,NA +2242,"210826-40-7","DTXSID2047301","CP-456773","HUUSXLKCTQDPGL-UHFFFAOYSA-N","CC(C)(O)C1=COC(=C1)S(=O)(=O)NC(=O)NC1=C2CCCC2=CC2=C1CCC2","C20H24N2O5S","404.48","49",NA,NA,NA +2243,"1068967-96-3","DTXSID8047391","SAR102608","YNVKAENVJKEMOU-UHFFFAOYSA-N","CC1=CN(NC(=O)C2=C(C)N=C(N=C2)C2=CC=CC=N2)C2=CC=C(F)C=C12","C20H16FN5O","361.38","19",NA,NA,NA +2244,"85532-75-8","DTXSID7041097","1-(2-Chlorophenyl)-N-methyl-N-(1-methylpropyl)-3-isoquinolinecarboxamide","RAVIZVQZGXBOQO-UHFFFAOYSA-N","CCC(C)N(C)C(=O)C1=CC2=C(C=CC=C2)C(=N1)C1=CC=CC=C1Cl","C21H21ClN2O","352.86","109",NA,NA,NA +2245,"155990-20-8","DTXSID8047347","SR271425","GWLFIMOOGVXSMZ-UHFFFAOYSA-N","CCN(CC)CCNC1=C2C(=O)C3=C(SC2=C(CNC=O)C=C1)C=CC(OC)=C3","C22H27N3O3S","413.54","24",NA,NA,NA +2246,"313994-79-5","DTXSID0047327","MK-578","ZTENZJJCFACIAK-ADWVOTLJSA-N","CCN1N=C(CC2=CC=CC=C2)C=C1C1CCN(C[C@H]2C[C@@H](C[C@@H]2C2=CC=CC(F)=C2)N(C)[C@H](C(C)C)C(O)=O)CC1","C35H47FN4O2","574.78499999999997","21",NA,NA,NA +2247,"527680-56-4","DTXSID1047285","PHA-00568487","LUVXHMJTVXZFPD-ZDUSSCGKSA-N","O=C(N[C@H]1CN2CCC1CC2)C1=CC2=C(OCCO2)C=C1","C16H20N2O3","288.34699999999998","19",NA,NA,NA +2248,"478149-53-0","DTXSID6047284","(R)-N-(Quinuclidin-3-yl)furo(2,3-C)pyridine-5-carboxamide","IPKZCLGGYKRDES-ZDUSSCGKSA-N","O=C(N[C@H]1CN2CCC1CC2)C1=CC2=C(OC=C2)C=N1","C15H17N3O2","271.32","32",NA,NA,NA +2253,"3855-32-1","DTXSID1044564","2,6,10-Trimethyl-2,6,10-triazaundecane","SKCNNQDRNPQEFU-UHFFFAOYSA-N","CN(C)CCCN(C)CCCN(C)C","C11H27N3","201.358","59",NA,NA,NA +2257,"194098-25-4","DTXSID2047276","CP-409092","XFJIYNUISLDNLP-UHFFFAOYSA-N","CNCC1=CC=C(NC(=O)C2=CNC3=C2C(=O)CCC3)C=C1","C17H19N3O2","297.358","22",NA,NA,NA +2259,"864283-48-7","DTXSID1047312","GSK232420A","ZDYGKWOTFUOWOA-UHFFFAOYSA-N","NC(=O)CN(CC(F)(F)F)C1=CC(=C(C=C1)C#N)C(F)(F)F","C12H9F6N3O","325.214","13",NA,NA,NA +2269,"300-76-5","DTXSID1024209","Naled","BUYMVQAILCEWRR-UHFFFAOYSA-N","COP(=O)(OC)OC(Br)C(Cl)(Cl)Br","C4H7Br2Cl2O4P","380.78","92","pesticide","Unclassified","Naled is a white solid that may be dissolved in a liquid organic carrier with a pungent odor. It is a water emulsifiable liquid. It is insoluble in water and sinks in water. It can cause illness by inhalation, skin absorption and/or ingestion. The primary hazard is the threat to the environment. Immediate steps should be taken to limit its spread to the environment. If it is in liquid form, it can easily penetrate the soil and contaminate groundwater and nearby streams. It is used as a pesticide." +2323,"91-20-3","DTXSID8020913","Naphthalene","UFWIBTONFRDIAS-UHFFFAOYSA-N","C1=CC2=CC=CC=C2C=C1","C10H8","128.17400000000001","247",NA,"PAH","Naphthalene is a white, volatile, solid polycyclic hydrocarbon with a strong mothball odor. Naphthalene is obtained from either coal tar or petroleum distillation and is primarily used to manufacture phthalic anhydride, but is also used in moth repellents. Exposure to naphthalene is associated with hemolytic anemia, damage to the liver and neurological system, cataracts and retinal hemorrhage. Naphthalene is reasonably anticipated to be a human carcinogen and may be associated with an increased risk of developing laryngeal and colorectal cancer." +2324,"111189-32-3","DTXSID50149519","Naphtho(1,2-b)fluoranthene","LFGDHICYJIULAO-UHFFFAOYSA-N","C1=CC=C2C(=C1)C1=CC=CC3=C4C=CC5=CC=CC=C5C4=CC2=C13","C24H14","302.37599999999998","26",NA,"PAH","Naphtho[1,2-b]fluoranthene is a carbopolycyclic compound." +2325,"206-06-4","DTXSID30174607","Dibenzo(e,k)acephenanthrylene","SCQIPRLBRNOUOX-UHFFFAOYSA-N","C1=CC=C2C(=C1)C1=CC=CC3=C1C2=CC1=CC2=CC=CC=C2C=C31","C24H14","302.37599999999998","21",NA,NA,"Polycyclic aromatic hydrocarbon (PAH)." +2326,"193-09-9","DTXSID80172895","Dibenzo(de,qr)naphthacene","SRCZXQXKBVWAFC-UHFFFAOYSA-N","C1=CC=C2C=C3C4=CC=CC5=C4C4=C(C=CC=C4C3=CC2=C1)C=C5","C24H14","302.37599999999998","32",NA,"PAH","Naphtho[2,3-e]pyrene is an ortho- and peri-fused polycyclic arene." +2327,"205-83-4","DTXSID90174481","Naphtho(2,3-j)fluoranthene","ZQYVVUIWXIUAKD-UHFFFAOYSA-N","C1=CC=C2C=C3C4=C(C=CC3=CC2=C1)C1=CC=CC2=C1C4=CC=C2","C24H14","302.37599999999998","13",NA,"PAH","Polycyclic aromatic hydrocarbon (PAH)." +2328,"207-18-1","DTXSID30873921","Naphtho[2,3-k]fluoranthene","UFZAKNUHTLXSMY-UHFFFAOYSA-N","C1=CC2=CC3=CC4=C(C=C3C=C2C=C1)C1=C2C4=CC=CC2=CC=C1","C24H14","302.37599999999998","-",NA,"PAH","Environmental polycyclic aromatic hydrocarbon (PAH); found in toxic airborne particulate matter." +2329,"15299-99-7","DTXSID5024211","Napropamide","WXZVAROIGSFCFJ-UHFFFAOYSA-N","CCN(CC)C(=O)C(C)OC1=C2C=CC=CC2=CC=C1","C17H21NO2","271.36","90","pesticide","PAH","N,N-diethyl-2-(naphthalen-1-yloxy)propanamide is a monocarboxylic acid amide that is propanamide substituted by two ethyl groups at the nitrogen atom and a naphthalen-1-yloxy group at position 2. It is an aromatic ether, a monocarboxylic acid amide and a member of naphthalenes." +2330,"220860-50-4","DTXSID4047254","CP-457920","DGFVZQGXKQCQGK-UHFFFAOYSA-N","CCOC1=NC2=C(NC=C(C(=O)NCC3=CC=CC=C3)C2=O)C=C1","C18H17N3O3","323.35199999999998","19",NA,NA,NA +2345,"439687-69-1","DTXSID7047358","Nelivaptan","NJXZWIIMWNEOGJ-WEWKHQNJSA-N","COC1=CC(OC)=C(C=C1)S(=O)(=O)N1C(=O)[C@@](N2C[C@H](O)C[C@H]2C(=O)N(C)C)(C2=CC(Cl)=CC=C12)C1=CC=CC=C1OC","C30H32ClN3O8S","630.11","41",NA,NA,NA +4368,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +2913,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +2347,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +2352,"102-27-2","DTXSID4021848","N-Ethyl-3-methylaniline","GUYMMHOQXYZMJQ-UHFFFAOYSA-N","CCNC1=CC(C)=CC=C1","C9H13N","135.21","104",NA,NA,NA +2353,"263553-33-9","DTXSID6047313","GW473178E methyl benzene sulphonic acid","DGYJWEFQVJQFIA-LMOVPXPDSA-N","CC1=CC=C(C=C1)S(O)(=O)=O.CCN(C(C)C)C(=O)C1=CC(OC[C@H](C)NC2=CC=NC=C2)=CC(C)=C1","C28H37N3O5S","527.67999999999995","4",NA,NA,NA +2354,"103-69-5","DTXSID1025271","N-Ethylaniline","OJGMBLNIHDZDGS-UHFFFAOYSA-N","CCNC1=CC=CC=C1","C8H11N","121.18300000000001","133",NA,NA,NA +2358,"110-54-3","DTXSID0021917","n-Hexane","VLKZOEOYAKHREP-UHFFFAOYSA-N","CCCCCC","C6H14","86.177999999999997","1275",NA,NA,NA +2359,"50-65-7","DTXSID7040362","5-Chloro-N-(2-chloro-4-nitrophenyl)-2-hydroxybenzamide","RJMUSRYZPJIFPJ-UHFFFAOYSA-N","OC1=C(C=C(Cl)C=C1)C(=O)NC1=CC=C(C=C1Cl)[N+]([O-])=O","C13H8Cl2N2O4","327.12","225",NA,NA,NA +2360,"54-11-5","DTXSID1020930","Nicotine","SNICXCGAKADSCV-JTQLQIEISA-N","CN1CCC[C@H]1C1=CN=CC=C1","C10H14N2","162.23599999999999","195","pharmacological;consumerProduct;pesticide","Unclassified","(S)-nicotine is a 3-(1-methylpyrrolidin-2-yl)pyridine in which the chiral centre has S-configuration. The naturally occurring and most active enantiomer of nicotine, isolated from Nicotiana tabacum. It has a role as a phytogenic insecticide, a teratogenic agent, a neurotoxin, an anxiolytic drug, a nicotinic acetylcholine receptor agonist, a biomarker, an immunomodulator, a mitogen, a peripheral nervous system drug, a psychotropic drug, a plant metabolite and a xenobiotic. It is a conjugate base of a (S)-nicotinium(1+). It is an enantiomer of a (R)-nicotine." +2361,"59-67-6","DTXSID1020932","Nicotinic acid","PVNIIMVLHYAWGP-UHFFFAOYSA-N","OC(=O)C1=CC=CN=C1","C6H5NO2","123.111","401",NA,NA,NA +2362,"63612-50-0","DTXSID3034165","5,5-Dimethyl-3-(alpha,alpha,alpha-trifluoro-4-nitro-m-tolyl)hydantoin","XWXYUMMDTVBTOU-UHFFFAOYSA-N","CC1(C)NC(=O)N(C1=O)C1=CC(=C(C=C1)[N+]([O-])=O)C(F)(F)F","C12H10F3N3O4","317.22399999999999","229",NA,NA,NA +2367,"1929-82-4","DTXSID0024216","Nitrapyrin","DCUJJWWUNKIJPH-UHFFFAOYSA-N","ClC1=CC=CC(=N1)C(Cl)(Cl)Cl","C6H3Cl4N","230.9","136","pesticide;pesticide","Unclassified","Nitrapyrin is an organic compound widely used as a nitrification inhibitor in agriculture as well as a soil bactericide and has been in use since 1974. Nitrapyrin was put up for review by the EPA and deemed safe for use in 2005. Since nitrapyrin is an effective nitrification inhibitor to the bacteria Nitrosomonas it has been shown to drastically the reduce NO2 emissions of soil. Nitrapyrin is a white crystalline solid with a sweet odor and is often mixed with anhydrous ammonia for application." +2369,"139-13-9","DTXSID6020939","Nitrilotriacetic acid","MGFYIUFZLHCRTH-UHFFFAOYSA-N","OC(=O)CN(CC(O)=O)CC(O)=O","C6H9NO6","191.13900000000001","171",NA,NA,NA +2371,"98-95-3","DTXSID3020964","Nitrobenzene","LQNUZADURLCDLV-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=CC=C1","C6H5NO2","123.111","214",NA,NA,"Nitrobenzene is a yellowish, oily, aromatic nitro-compound with an almond-like odor that emits toxic fumes of nitrogen oxides upon combustion. Nitrobenzene is primarily used in the manufacture of aniline, but is also used in the manufacture of lubricating oils, dyes, drugs, pesticides, and synthetic rubber. Exposure to nitrobenzene irritates the skin, eyes and respiratory tract and can result in methemoglobinemia causing fatigue, dyspnea, dizziness, disturbed vision, shortness of breath, collapse and even death. Nitrobenzene also damages the liver, spleen, kidneys and central nervous system. This substance is a possible mutagen and is reasonably anticipated to be a human carcinogen." +2372,"1836-75-5","DTXSID7020970","Nitrofen","XITQUSLLOSKDTB-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=C(Cl)C=C(Cl)C=C2)C=C1","C12H7Cl2NO3","284.08999999999997","116","pesticide","Unclassified","Nitrofen is a white, crystalline, solid, combustible, chlorinated compound. Nitrofen was used as an herbicide, but is no longer used or manufactured in the United States. Exposure to nitrofen irritates the skin, eyes and respiratory tract and affects the blood and central nervous system. This substance is teratogenic and carcinogenic in animals and is reasonably anticipated to be a human carcinogen." +2373,"67-20-9","DTXSID7020972","Nitrofurantoin","NXFQHRVNIOXGAQ-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(O1)C=NN1CC(=O)NC1=O","C8H6N4O5","238.15899999999999","64",NA,NA,"Nitrofurantoin is a synthetic derivative of imidazolidinedione, Nitrofurantoin inhibits bacterial DNA, RNA, and cell wall protein synthesis. Activated by bacterial flavoproteins to intermediates that inactivate bacterial ribosomal proteins, Nitrofurantoin is used prophylactically as a urinary anti-infective agent against most gram-positive and gram-negative organisms and for long-term suppression of infections." +2374,"59-87-0","DTXSID5020944","Nitrofurazone","IAIWVQXQOWNYOU-UHFFFAOYSA-N","NC(=O)NN=CC1=CC=C(O1)[N+]([O-])=O","C6H6N4O4","198.13800000000001","55",NA,NA,"Nitrofurazone (INN, trade name Furacin) is an antimicrobial organic compound belonging to the nitrofuran class. It is most commonly used as a topical antibiotic ointment. It is effective against gram-positive bacteria, gram-negative bacteria, and can be used in the treatment of trypanosomiasis.Its use in medicine has become less frequent, as safer and more effective products have become available. Nitrofurazone is listed under California Prop 65, and has demonstrated clear evidence to be mutagenic and carcinogenic during animal studies, and has been discontinued for human use in the USA." +2401,"872-50-4","DTXSID6020856","N-Methyl-2-pyrrolidone","SECXISVLQFMRJM-UHFFFAOYSA-N","CN1CCCC1=O","C5H9NO","99.132999999999996","393",NA,NA,NA +2403,"79-16-3","DTXSID0047167","N-Methylacetamide","OHLUUHNLEMFGTQ-UHFFFAOYSA-N","CNC(C)=O","C3H7NO","73.094999999999999","158",NA,NA,NA +2404,"4455-26-9","DTXSID9042209","N-Methyldioctylamine","YJLYANLCNIKXMG-UHFFFAOYSA-N","CCCCCCCCN(C)CCCCCCCC","C17H37N","255.49","70",NA,NA,NA +2405,"99-97-8","DTXSID0021832","N,N,4-Trimethylaniline","GYVGXEWAOAAJEU-UHFFFAOYSA-N","CN(C)C1=CC=C(C)C=C1","C9H13N","135.21","145",NA,NA,NA +2406,"134-62-3","DTXSID2021995","DEET","MMOXZBCLCQITDF-UHFFFAOYSA-N","CCN(CC)C(=O)C1=CC=CC(C)=C1","C12H17NO","191.274","205","pesticide","Unclassified","DEET is a chemical (N,N-diethyl-meta-toluamide) used as the active ingredient in many insect repellent products. DEET was developed by the U.S. Army in 1946 and was registered for use by the general public in 1957. It is now widely used, with approximately 30% of the U.S. population using DEET repellents each year. DEET products are currently available in a variety of forms: liquids, lotions, sprays, and even impregnated materials, such as wristbands. Formulations registered for direct application to human skin contain from 4% to 100% DEET. Approximately 230 products containing DEET are currently registered with the U.S. Environmental Protection Agency (EPA)." +2407,"91-66-7","DTXSID8021800","N,N-Diethylaniline","GGSUCNLOZRCGPQ-UHFFFAOYSA-N","CCN(CC)C1=CC=CC=C1","C10H15N","149.23699999999999","138",NA,NA,NA +2408,"100-37-8","DTXSID5021837","N,N-Diethylethanolamine","BFSVOASYOCHEOV-UHFFFAOYSA-N","CCN(CC)CCO","C6H15NO","117.19199999999999","134",NA,NA,NA +2409,"121-69-7","DTXSID2020507","N,N-Dimethylaniline","JLTDJTHDQAWBAV-UHFFFAOYSA-N","CN(C)C1=CC=CC=C1","C8H11N","121.18300000000001","208",NA,NA,NA +2410,"2605-79-0","DTXSID7042190","N,N-Dimethyldecylamine oxide","ZRKZFNZPJKEWPC-UHFFFAOYSA-N","CCCCCCCCCC[N+](C)(C)[O-]","C12H27NO","201.35400000000001","64",NA,NA,NA +2411,"68-12-2","DTXSID6020515","N,N-Dimethylformamide","ZMXDDKWLCZADIW-UHFFFAOYSA-N","CN(C)C=O","C3H7NO","73.094999999999999","810",NA,NA,"N,N-dimethylformamide is a member of the class of formamides that is formamide in which the amino hydrogens are replaced by methyl groups. It has a role as a polar aprotic solvent and a hepatotoxic agent. It is a volatile organic compound and a member of formamides. It derives from a formamide." +2412,"7378-99-6","DTXSID2036299","N,N-Dimethyloctylamine","UQKAOOAFEFCDGT-UHFFFAOYSA-N","CCCCCCCCN(C)C","C10H23N","157.30099999999999","105",NA,NA,NA +2413,"924-16-3","DTXSID2021026","N-Nitrosodibutylamine","YGJHZCLPZAZIHH-UHFFFAOYSA-N","CCCCN(CCCC)N=O","C8H18N2O","158.245","78",NA,NA,"N-Nitrosodi-n-butylamine is a nitroso compound." +2414,"55-18-5","DTXSID2021028","N-Nitrosodiethylamine","WBNQDOYYEUMPFS-UHFFFAOYSA-N","CCN(CC)N=O","C4H10N2O","102.137","114",NA,NA,"N-Nitrosodiethylamine is a synthetic light-sensitive, volatile, clear yellow oil that is soluble in water, lipids, and other organic solvents. It is used as gasoline and lubricant additive, antioxidant, and stabilizer for industry materials. When heated to decomposition, N-nitrosodiethylamine emits toxic fumes of nitrogen oxides. N-Nitrosodiethylamine affects DNA integrity, probably by alkylation, and is used in experimental research to induce liver tumorigenesis. It is considered to be reasonably anticipated to be a human carcinogen." +2415,"62-75-9","DTXSID7021029","N-Nitrosodimethylamine","UMFJAHHVKNCGLG-UHFFFAOYSA-N","CN(C)N=O","C2H6N2O","74.082999999999998","104",NA,NA,"n-Nitrosodimethylamine is produced by industry only in small amounts for research. At room temperature, it is a yellow liquid with no distinct odor. It was used to make rocket fuel, but this use was stopped after unusually high levels of this chemical were found in air, water, and soil samples collected near a rocket fuel manufacturing plant. It is used in some cosmetic and toiletry products and in cleansers.n-Nitrosodimethylamine is unintentionally formed during various manufacturing processes and in air, water, and soil from reactions involving other chemicals called alkylamines. It is also found in some foods and may be formed in the body." +2416,"86-30-6","DTXSID6021030","N-Nitrosodiphenylamine","UBUCNCOMADRQHX-UHFFFAOYSA-N","O=NN(C1=CC=CC=C1)C1=CC=CC=C1","C12H10N2O","198.22499999999999","91",NA,NA,NA +2417,"621-64-7","DTXSID6021032","N-Nitrosodi-n-propylamine","YLKFDHTUAUWZPQ-UHFFFAOYSA-N","CCCN(CCC)N=O","C6H14N2O","130.191","77",NA,NA,"n-Nitrosodi-n-propylamine is a chemical produced by industry in small amounts for research. It is a yellow liquid at room temperature. Small amounts of n-nitrosodi-n-propylamine are produced as a side reaction during some manufacturing processes, as a contaminant in some weed killers, and during the manufacture of some rubber products." +2419,"110-26-9","DTXSID8025595","N,N'-Methylenebisacrylamide","ZIUHHBKFKCYYJD-UHFFFAOYSA-N","C=CC(=O)NCNC(=O)C=C","C7H10N2O2","154.16900000000001","147",NA,NA,NA +2420,"102-60-3","DTXSID9026689","1,1',1'',1'''-(Ethanediylnitrilo)tetrakis(2-propanol)","NSOXQYCFHDMMGV-UHFFFAOYSA-N","CC(O)CN(CCN(CC(C)O)CC(C)O)CC(C)O","C14H32N2O4","292.42","112",NA,NA,NA +2421,"3033-77-0","DTXSID1044643","Glycidyl trimethylammonium chloride","PUVAFTRIIUSGLK-UHFFFAOYSA-M","[Cl-].C[N+](C)(C)CC1CO1","C6H14ClNO","151.63","68",NA,NA,NA +2429,"112-05-0","DTXSID3021641","Nonanoic acid","FBUKVWPVBMHYJY-UHFFFAOYSA-N","CCCCCCCCC(O)=O","C9H18O2","158.24100000000001","229",NA,NA,NA +2432,"68-22-4","DTXSID9023380","Norethindrone","VIKNJXKGJWUCNN-XGXHKTLJSA-N","C[C@]12CC[C@H]3[C@@H](CCC4=CC(=O)CC[C@H]34)[C@@H]1CC[C@@]2(O)C#C","C20H26O2","298.42599999999999","149",NA,NA,"Norethindrone is a synthetic progestational substance with some anabolic, estrogenic, and androgenic properties. Norethindrone binds to the progesterone intracellular receptors in the reproductive system and the resultant activated complex interacts with specific DNA sites. This leads to an alteration in protein synthesis and results in an inhibition of LH release. Consequently, it inhibits ovulation and changes the normal cycle of cervical mucus and endometrium." +2433,"27314-13-2","DTXSID8024234","Norflurazon","NVGOPFQZYCNLDU-UHFFFAOYSA-N","CNC1=C(Cl)C(=O)N(N=C1)C1=CC=CC(=C1)C(F)(F)F","C12H9ClF3N3O","303.67","75","pesticide","Unclassified","Norflurazon is a pyridazinone that is pyridazin-3(2H)-one which is substituted at positions 2, 4, and 5 by m-(trifluoromethyl)phenyl, chloro, and methylamino groups, respectively. A pre-emergence herbicide used to control grasses and broad-leafed weeds in a variety of crops. Not approved for use within the European Union. It has a role as a carotenoid biosynthesis inhibitor, a herbicide and an agrochemical. It is a pyridazinone, a member of (trifluoromethyl)benzenes, an organochlorine compound and a secondary amino compound." +2434,"797-63-7","DTXSID3036496","Levonorgestrel","WWYNJERNGUHSAO-XUDSTZEESA-N","[H][C@@]12CC[C@@](O)(C#C)[C@@]1(CC)CC[C@]1([H])[C@@]3([H])CCC(=O)C=C3CC[C@@]21[H]","C21H28O2","312.45299999999997","180",NA,NA,NA +2435,"116714-46-6","DTXSID5034773","Novaluron","NJPPVKZQTLUDBO-UHFFFAOYSA-N","FC(OC(F)(F)F)C(F)(F)OC1=C(Cl)C=C(NC(=O)NC(=O)C2=C(F)C=CC=C2F)C=C1","C17H9ClF8N2O4","492.71","72",NA,NA,NA +2465,"101-54-2","DTXSID7025895","N-Phenyl-1,4-benzenediamine","ATGUVEKSASEFFO-UHFFFAOYSA-N","NC1=CC=C(NC2=CC=CC=C2)C=C1","C12H12N2","184.24199999999999","133",NA,NA,NA +2467,"88-12-0","DTXSID2021440","N-Vinyl-2-pyrrolidone","WHNWPMSKXPGLAX-UHFFFAOYSA-N","C=CN1CCCC1=O","C6H9NO","111.14400000000001","246",NA,NA,"Polyvinylpyrrolidone is a white powder. Compatible with a wide range of hydrophilic and hydrophobic resins." +2475,"1843-05-6","DTXSID9027441","Octabenzone","QUAMTGJKVDWJEQ-UHFFFAOYSA-N","CCCCCCCCOC1=CC(O)=C(C=C1)C(=O)C1=CC=CC=C1","C21H26O3","326.43599999999998","127",NA,NA,NA +2476,"57-11-4","DTXSID8021642","Octadecanoic acid","QIQXTHQIDYTFRH-UHFFFAOYSA-N","CCCCCCCCCCCCCCCCCC(O)=O","C18H36O2","284.48399999999998","338",NA,NA,NA +2477,"556-67-2","DTXSID7027205","Octamethylcyclotetrasiloxane","HMMGMWAXVFQUOA-UHFFFAOYSA-N","C[Si]1(C)O[Si](C)(C)O[Si](C)(C)O[Si](C)(C)O1","C8H24O4Si4","296.61599999999999","98",NA,NA,NA +2478,"124-13-0","DTXSID3021643","Octanal","NUJGJRNETVAIRJ-UHFFFAOYSA-N","CCCCCCCC=O","C8H16O","128.215","138",NA,NA,NA +2479,"124-07-2","DTXSID3021645","Octanoic acid","WWZKQHOCKIZLMA-UHFFFAOYSA-N","CCCCCCCC(O)=O","C8H16O2","144.214","256",NA,NA,NA +2480,"26530-20-1","DTXSID1025805","Octhilinone","JPMIIZHYYWMHDT-UHFFFAOYSA-N","CCCCCCCCN1SC=CC1=O","C11H19NOS","213.34","101",NA,NA,NA +2483,"3147-75-9","DTXSID9027522","Octrizole","IYAZLDLPUNDVAG-UHFFFAOYSA-N","CC(C)(C)CC(C)(C)C1=CC(N2N=C3C=CC=CC3=N2)=C(O)C=C1","C20H25N3O","323.44","120",NA,NA,NA +2484,"1034-01-1","DTXSID4040713","Octyl gallate","NRPKURNSADTHLJ-UHFFFAOYSA-N","CCCCCCCCOC(=O)C1=CC(O)=C(O)C(O)=C1","C15H22O5","282.33600000000001","118",NA,NA,NA +2485,"2104-64-5","DTXSID7022174","EPN","AIGRXSNSLVJMEA-UHFFFAOYSA-N","CCOP(=S)(OC1=CC=C(C=C1)[N+]([O-])=O)C1=CC=CC=C1","C14H14NO4PS","323.3","62","pharmacological;pesticide","Unclassified","EPN is an organic phosphonate, a phosphonic ester and an organothiophosphate insecticide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an acaricide and an agrochemical." +2490,"789-02-6","DTXSID6022345","o,p'-DDT","CVUGPAFCQJIYDT-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C(C1=CC=CC=C1Cl)C(Cl)(Cl)Cl","C14H9Cl5","354.48","73","pesticide","Unclassified","o,p'-DDT is an organochlorine pesticide that induces mortality of malaria mosquito (A. quadrimaculatus) fourth-instar larvae and A. aegypti larvae when used at concentrations ranging from 0.005 to 0.03 and 0.025 to 5 ppm, respectively." +2491,"19044-88-3","DTXSID8024238","Oryzalin","UNAHYJYOSSSJHH-UHFFFAOYSA-N","CCCN(CCC)C1=C(C=C(C=C1[N+]([O-])=O)S(N)(=O)=O)[N+]([O-])=O","C12H18N4O6S","346.36","76","pesticide","Unclassified","Oryzalin is a sulfonamide that is benzenesulfonamide substituted at positions 3 and 5 by nitro groups and at position 4 by a dipropylamino group. It has a role as a herbicide, an agrochemical and an antimitotic. It is a sulfonamide, a C-nitro compound, an aromatic amine and a tertiary amino compound." +2495,"19666-30-9","DTXSID3024239","Oxadiazon","CHNUNORXWHYHNE-UHFFFAOYSA-N","CC(C)OC1=CC(N2N=C(OC2=O)C(C)(C)C)=C(Cl)C=C1Cl","C15H18Cl2N2O3","345.22","97","pesticide","Unclassified","Oxydiazon is a crystalline solid. Used as an herbicide." +2496,"23135-22-0","DTXSID6021086","Oxamyl","KZAUOCCYDRDERY-UHFFFAOYSA-N","CNC(=O)ON=C(SC)C(=O)N(C)C","C7H13N3O3S","219.26","37","pesticide","Unclassified","Oxamyl is a white, crystalline solid, with slight sulfurous odor. Used as an insecticide, nematicide and acaricide on many field crops, vegetables, fruits, and ornamentals." +2498,"42874-03-3","DTXSID7024241","Oxyfluorfen","OQMBBFQZGJFLBU-UHFFFAOYSA-N","CCOC1=CC(OC2=CC=C(C=C2Cl)C(F)(F)F)=CC=C1[N+]([O-])=O","C15H11ClF3NO4","361.7","89","pesticide","Unclassified","Oxyfluorfen is an aromatic ether. It has a role as a herbicide and an EC 1.3.3.4 (protoporphyrinogen oxidase) inhibitor." +2505,"6153-64-6","DTXSID4023412","Oxytetracycline dihydrate","SRRPEXWCHWWJOC-JEKSYDDFSA-N","O.O.CN(C)[C@H]1[C@@H]2[C@@H](O)[C@H]3C(=C(O)[C@]2(O)C(=O)C(C(N)=O)=C1O)C(=O)C1=C(C=CC=C1O)[C@@]3(C)O","C22H28N2O11","496.46899999999999","70",NA,NA,NA +2506,"2058-46-0","DTXSID5021097","Oxytetracycline hydrochloride","UBDNTYUBJLXUNN-IFLJXUKPSA-N","Cl.CN(C)[C@H]1[C@@H]2[C@@H](O)[C@H]3C(=C(O)[C@]2(O)C(=O)C(C(N)=O)=C1O)C(=O)C1=C(C=CC=C1O)[C@@]3(C)O","C22H25ClN2O9","496.9","91",NA,NA,"Oxytetracycline Hydrochloride is the hydrochloride salt form of oxytetracycline, a tetracycline derivative produced by Streptomyces rimosus exhibiting antimicrobial activity. Oxytetracycline hydrochloride interferes with binding of aminoacyl-tRNA to the mRNA-ribosome complex, thereby preventing peptide elongation and inhibiting protein synthesis. It is often used to treat skin conditions." +2507,"76738-62-0","DTXSID2024242","Paclobutrazol","RMOGWMIKYWRTKW-KGLIPLIRSA-N","CC(C)(C)[C@@H](O)[C@@H](CC1=CC=C(Cl)C=C1)N1C=NC=N1","C15H20ClN3O","293.8","-","pesticide","Unclassified","(R,R)-paclobutrazol is a 1-(4-chlorophenyl)-4,4-dimethyl-2-(1H-1,2,4-triazol-1-yl)pentan-3-ol in which both stereocentres have R configuration. It is an enantiomer of a (S,S)-paclobutrazol." +2532,"56-38-2","DTXSID7021100","Parathion","LCCNCVORNKJIRZ-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC=C(C=C1)[N+]([O-])=O","C10H14NO5PS","291.26","88","pesticide","Unclassified","Parathion is an organic thiophosphate, a C-nitro compound and an organothiophosphate insecticide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an EC 3.1.1.8 (cholinesterase) inhibitor, an acaricide, an agrochemical, an avicide and a mouse metabolite. It derives from a 4-nitrophenol." +2554,"101-55-3","DTXSID8023927","p-Bromodiphenyl ether","JDUYPUMQALQRCN-UHFFFAOYSA-N","BrC1=CC=C(OC2=CC=CC=C2)C=C1","C12H9BrO","249.107","132","flameRetardant","PBDE","4-bromophenyl phenyl ether is an aromatic ether that is diphenyl ether substituted at position 4 by a bromo group. It is an aromatic ether and an organobromine compound. It derives from a diphenyl ether." +2558,"99-87-6","DTXSID3026645","p-Cymene","HFPZCAJZSCWRBC-UHFFFAOYSA-N","CC(C)C1=CC=C(C)C=C1","C10H14","134.22200000000001","144",NA,NA,NA +2568,"40487-42-1","DTXSID7024245","Pendimethalin","CHIFOSRWCNZCFN-UHFFFAOYSA-N","CCC(CC)NC1=C(C(C)=C(C)C=C1[N+]([O-])=O)[N+]([O-])=O","C13H19N3O4","281.31200000000001","75","pesticide","Unclassified","Pendimethalin is a member of the class of substituted anilines that is N-(pentan-3-yl)aniline bearing two additional nitro substituents at positions 2 and 6 as well as two methyl substituents at positions 3 and 4. A herbicide used to control most annual grasses and many annual broad-leaved weeds. It has a role as a herbicide, an environmental contaminant and an agrochemical. It is a substituted aniline, a secondary amino compound and a C-nitro compound." +2569,"219714-96-2","DTXSID0034803","Penoxsulam","SYJGKVOENHZYMQ-UHFFFAOYSA-N","COC1=CN=C(OC)N2N=C(NS(=O)(=O)C3=C(C=CC=C3OCC(F)F)C(F)(F)F)N=C12","C16H14F5N5O5S","483.37","68",NA,NA,NA +2572,"82-68-8","DTXSID2021105","Pentachloronitrobenzene","LKPLKUMXSAEKID-UHFFFAOYSA-N","[O-][N+](=O)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C6Cl5NO2","295.32","113","pesticide","Unclassified","Pentachloronitrobenzene is a C-nitro compound that is nitrobenzene in which every hydrogen has been replaced by a chlorine. A fungicide used on a variety of crops, including cotton, rice and seed grains, it is no longer approved for use within the European Union. It has a role as an antifungal agrochemical. It is a C-nitro compound, a member of pentachlorobenzenes and an aromatic fungicide." +2573,"87-86-5","DTXSID7021106","Pentachlorophenol","IZUPBVBPLAPZRR-UHFFFAOYSA-N","OC1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C6HCl5O","266.32","173","industrial;pulpAndPaper;pesticide;pesticide;pesticide","phenol","Pentachlorophenol is a manufactured chemical that does not occur naturally. Pure pentachlorophenol exists as colorless crystals. Impure pentachlorophenol (the form usually found at hazardous waste sites) is dark gray to brown and exists as dust, beads, or flakes. Humans are usually exposed to impure pentachlorophenol (also called technical grade pentachlorophenol). Pentachlorophenol was widely used as a pesticide and wood preservative. Since 1984, the purchase and use of pentachlorophenol has been restricted to certified applicators. It is no longer available to the general public. It is still used industrially as a wood preservative for utility poles, railroad ties, and wharf pilings." +2574,"2176-62-7","DTXSID2022179","Pentachloropyridine","DNDPLEAVNVOOQZ-UHFFFAOYSA-N","ClC1=NC(Cl)=C(Cl)C(Cl)=C1Cl","C5Cl5N","251.31","117",NA,NA,NA +2575,"629-62-9","DTXSID6027268","Pentadecane","YCOZIPAWZNQLMR-UHFFFAOYSA-N","CCCCCCCCCCCCCCC","C15H32","212.42099999999999","233",NA,NA,NA +2576,"115-77-5","DTXSID2026943","Pentaerythritol","WXZMFSXDPGVJKK-UHFFFAOYSA-N","OCC(CO)(CO)CO","C5H12O4","136.14699999999999","146",NA,NA,NA +2577,"140-64-7","DTXSID5023796","Pentamidine isethionate","YBVNFKZSMZGRAD-UHFFFAOYSA-N","OCCS(O)(=O)=O.OCCS(O)(=O)=O.NC(=N)C1=CC=C(OCCCCCOC2=CC=C(C=C2)C(N)=N)C=C1","C23H36N4O10S2","592.67999999999995","137",NA,NA,NA +2578,"110-62-3","DTXSID7021653","Pentanal","HGBOYTHUEUWSSQ-UHFFFAOYSA-N","CCCCC=O","C5H10O","86.134","133",NA,NA,NA +2579,"6624-73-3","DTXSID5047538","Pentane-1,5-diyl dibenzoate","UMNVFYKZOXQOLL-UHFFFAOYSA-N","O=C(OCCCCCOC(=O)C1=CC=CC=C1)C1=CC=CC=C1","C19H20O4","312.36500000000001","22",NA,NA,NA +2580,"628-63-7","DTXSID1027263","Pentyl acetate","PGMYKACGEOXYJE-UHFFFAOYSA-N","CCCCCOC(C)=O","C7H14O2","130.18700000000001","118",NA,NA,NA +4391,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +2684,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +2582,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +2585,"335-76-2","DTXSID3031860","Perfluorodecanoic acid","PCIUEQPBYFRTEM-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10HF19O2","514.08600000000001","77",NA,NA,NA +2585,"335-76-2","DTXSID3031860","Perfluorodecanoic acid","PCIUEQPBYFRTEM-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10HF19O2","514.08600000000001","77",NA,NA,NA +2587,"375-85-9","DTXSID1037303","Perfluoroheptanoic acid","ZWBAMYVPMDSJGQ-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C7HF13O2","364.06200000000001","99",NA,NA,NA +2587,"375-85-9","DTXSID1037303","Perfluoroheptanoic acid","ZWBAMYVPMDSJGQ-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C7HF13O2","364.06200000000001","99",NA,NA,NA +2685,"3871-99-6","DTXSID3037709","Potassium perfluorohexanesulfonate","RSCGQEBKFSGWJT-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6F13KO3S","438.2","69",NA,NA,NA +2588,"3871-99-6","DTXSID3037709","Potassium perfluorohexanesulfonate","RSCGQEBKFSGWJT-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6F13KO3S","438.2","69",NA,NA,NA +2589,"307-24-4","DTXSID3031862","Perfluorohexanoic acid","PXUULQAPEKKVAH-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6HF11O2","314.05399999999997","85",NA,NA,NA +2589,"307-24-4","DTXSID3031862","Perfluorohexanoic acid","PXUULQAPEKKVAH-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6HF11O2","314.05399999999997","85",NA,NA,NA +2590,"375-95-1","DTXSID8031863","Perfluorononanoic acid","UZUFPBIDKMEQEQ-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C9HF17O2","464.07799999999997","94",NA,NA,NA +2590,"375-95-1","DTXSID8031863","Perfluorononanoic acid","UZUFPBIDKMEQEQ-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C9HF17O2","464.07799999999997","94",NA,NA,NA +2595,"1763-23-1","DTXSID3031864","Perfluorooctanesulfonic acid","YFSUTJLHUFNCNZ-UHFFFAOYSA-N","OS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8HF17O3S","500.13","88",NA,NA,NA +2593,"1763-23-1","DTXSID3031864","Perfluorooctanesulfonic acid","YFSUTJLHUFNCNZ-UHFFFAOYSA-N","OS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8HF17O3S","500.13","88",NA,NA,NA +2594,"754-91-6","DTXSID3038939","Perfluorooctanesulfonamide","RRRXPPIDPYTNJG-UHFFFAOYSA-N","NS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H2F17NO2S","499.14","90",NA,NA,NA +2594,"754-91-6","DTXSID3038939","Perfluorooctanesulfonamide","RRRXPPIDPYTNJG-UHFFFAOYSA-N","NS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H2F17NO2S","499.14","90",NA,NA,NA +2595,"1763-23-1","DTXSID3031864","Perfluorooctanesulfonic acid","YFSUTJLHUFNCNZ-UHFFFAOYSA-N","OS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8HF17O3S","500.13","88",NA,NA,NA +2593,"1763-23-1","DTXSID3031864","Perfluorooctanesulfonic acid","YFSUTJLHUFNCNZ-UHFFFAOYSA-N","OS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8HF17O3S","500.13","88",NA,NA,NA +2596,"335-67-1","DTXSID8031865","Perfluorooctanoic acid","SNGREZUHAYWORS-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8HF15O2","414.07","139",NA,NA,"Perfluorooctanoic acid is a fluoroalkanoic acid that is perfluorinated octanoic acid. It has a role as an environmental contaminant, a xenobiotic, a carcinogenic agent, a surfactant and an endocrine disruptor. It derives from a perfluorooctane and an octanoic acid." +2596,"335-67-1","DTXSID8031865","Perfluorooctanoic acid","SNGREZUHAYWORS-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8HF15O2","414.07","139",NA,NA,"Perfluorooctanoic acid is a fluoroalkanoic acid that is perfluorinated octanoic acid. It has a role as an environmental contaminant, a xenobiotic, a carcinogenic agent, a surfactant and an endocrine disruptor. It derives from a perfluorooctane and an octanoic acid." +2597,"2706-90-3","DTXSID6062599","Perfluoropentanoic acid","CXZGQIAOTKWCDB-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C5HF9O2","264.04700000000003","93",NA,NA,NA +2598,"376-06-7","DTXSID3059921","Perfluorotetradecanoic acid","RUDINRUXCKIXAJ-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C14HF27O2","714.11699999999996","49",NA,NA,NA +2599,"72629-94-8","DTXSID90868151","Perfluorotridecanoic acid","LVDGGZAZAYHXEY-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C13HF25O2","664.10900000000004","-",NA,NA,NA +2600,"2058-94-8","DTXSID8047553","Perfluoroundecanoic acid","SIDINRCMMRKXGQ-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C11HF21O2","564.09299999999996","71",NA,NA,NA +2600,"2058-94-8","DTXSID8047553","Perfluoroundecanoic acid","SIDINRCMMRKXGQ-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C11HF21O2","564.09299999999996","71",NA,NA,NA +2601,"548-39-0","DTXSID20203278","Phenalen-1-one","WWBGWPHHLRSTFI-UHFFFAOYSA-N","O=C1C=CC2=CC=CC3=C2C1=CC=C3","C13H8O","180.20599999999999","63",NA,NA,"Endocrine disruptor" +2602,"52645-53-1","DTXSID8022292","Permethrin","RLLPVAHGXHCWKJ-UHFFFAOYSA-N","CC1(C)C(C=C(Cl)Cl)C1C(=O)OCC1=CC(OC2=CC=CC=C2)=CC=C1","C21H20Cl2O3","391.29","170","pesticide","Unclassified","Permethrin is a cyclopropanecarboxylate ester in which the esterifying alcohol is 3-phenoxybenzyl alcohol and the cyclopropane ring is substituted with a 2,2-dichlorovinyl group and with gem-dimethyl groups. It has a role as a pyrethroid ester insecticide, a pyrethroid ester acaricide, an agrochemical, an ectoparasiticide and a scabicide. It is a member of cyclopropanes and a cyclopropanecarboxylate ester. It derives from a 3-(2,2-dichlorovinyl)-2,2-dimethylcyclopropanecarboxylic acid." +2623,"94-18-8","DTXSID9022526","Benzyl 4-hydroxybenzoate","MOZDKDIOPSPTBH-UHFFFAOYSA-N","OC1=CC=C(C=C1)C(=O)OCC1=CC=CC=C1","C14H12O3","228.24700000000001","122",NA,NA,NA +2635,"85-01-8","DTXSID6024254","Phenanthrene","YNPNZTXNASCQKK-UHFFFAOYSA-N","C1=CC2=C(C=C1)C1=C(C=CC=C1)C=C2","C14H10","178.23400000000001","192",NA,"PAH","Phenanthrene is a polycyclic aromatic hydrocarbon composed of three fused benzene rings which takes its name from the two terms 'phenyl' and 'anthracene.' It has a role as an environmental contaminant and a mouse metabolite. It is an ortho-fused polycyclic arene, an ortho-fused tricyclic hydrocarbon and a member of phenanthrenes." +2636,"50-06-6","DTXSID5021122","Phenobarbital","DDBREPKUVSBGFI-UHFFFAOYSA-N","CCC1(C(=O)NC(=O)NC1=O)C1=CC=CC=C1","C12H12N2O3","232.239","132",NA,NA,NA +2637,"57-30-7","DTXSID0021123","Phenobarbital sodium","WRLGYAWRGXKSKG-UHFFFAOYSA-M","[Na+].CCC1(C(=O)NC([O-])=NC1=O)C1=CC=CC=C1","C12H11N2NaO3","254.221","47",NA,NA,"Sodium 5-ethyl-4,6-dioxo-5-phenyl-1,4,5,6-tetrahydropyrimidin-2-olate, also known as Phenobarbital sodium, is a barbiturate that is the sodium salt of phenobarbital. Sodium phenobarbital is an odorless white crystalline powder. Aqueous solutions are alkaline to litmus and phenolphthalein (pH approximately 9.3). Bitter taste. A narcotic." +2638,"108-95-2","DTXSID5021124","Phenol","ISWSIDIOOBJBQZ-UHFFFAOYSA-N","OC1=CC=CC=C1","C6H6O","94.113","578","pharmacological","phenol","Phenol was first extracted from coal tar, but today is produced on a large scale (about 7 billion kg/year) from petroleum-derived feedstocks. It is an important industrial commodity as a precursor to many materials and useful compounds. Mildly acidic, it requires careful handling because it can cause chemical burns." +3094,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +2640,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +1992,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +2641,"77-09-8","DTXSID0021125","Phenolphthalein","KJFMBFZCATUALV-UHFFFAOYSA-N","OC1=CC=C(C=C1)C1(OC(=O)C2=C1C=CC=C2)C1=CC=C(O)C=C1","C20H14O4","318.32799999999997","256",NA,NA,NA +2642,"81-90-3","DTXSID5022439","Phenolphthalin","FFFPYJTVNSSLBQ-UHFFFAOYSA-N","OC(=O)C1=C(C=CC=C1)C(C1=CC=C(O)C=C1)C1=CC=C(O)C=C1","C20H16O4","320.34399999999999","82",NA,NA,NA +2643,"92-84-2","DTXSID5021126","Phenothiazine","WJFKNYWRSNBZNX-UHFFFAOYSA-N","N1C2=CC=CC=C2SC2=C1C=CC=C2","C12H9NS","199.27","205","pharmacological;industrial;pesticide;pesticide","Unclassified","Phenothiazine is a class of agents exhibiting antiemetic, antipsychotic, antihistaminic, and anticholinergic activities. Phenothiazines antagonize the dopamine D2-receptor in the chemoreceptor trigger zone (CTZ) of the brain, potentially preventing chemotherapy-induced emesis. In addition, these agents have peripherally or centrally antagonistic activity against alpha adrenergic, serotonergic, histaminic, and muscarinic receptors." +2644,"62-38-4","DTXSID7021150","Phenylmercuric acetate","XEBWQGVWTUSTLN-UHFFFAOYSA-M","CC(=O)O[Hg]C1=CC=CC=C1","C8H8HgO2","336.74","101",NA,NA,NA +2645,"298-02-2","DTXSID4032459","Phorate","BULVZWIRKLYCBC-UHFFFAOYSA-N","CCOP(=S)(OCC)SCSCC","C7H17O2PS3","260.36","94","pesticide","Unclassified","Phorate is an organic thiophosphate and an organothiophosphate insecticide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an EC 3.1.1.8 (cholinesterase) inhibitor, an acaricide and an agrochemical. It derives from an (ethylsulfanyl)methanethiol." +2647,"2310-17-0","DTXSID1024259","Phosalone","IOUNQDKNJZEDEP-UHFFFAOYSA-N","CCOP(=S)(OCC)SCN1C(=O)OC2=CC(Cl)=CC=C12","C12H15ClNO4PS2","367.8","131","pesticide","Unclassified","Phosalone is a member of the class of 1,3-benzoxazoles carrying a [(diethoxyphosphorothioyl)sulfanyl]methyl group at the nitrogen atom, an oxo group at position 2 and a chloro group at position 6. It is an organothiophosphate insecticide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an EC 3.1.1.8 (cholinesterase) inhibitor, an acaricide and an agrochemical. It is an organothiophosphate insecticide, an organochlorine insecticide, a carbamate ester and a member of 1,3-benzoxazoles." +2650,"732-11-6","DTXSID5024261","Phosmet","LMNZTLDVJIUSHT-UHFFFAOYSA-N","COP(=S)(OC)SCN1C(=O)C2=C(C=CC=C2)C1=O","C11H12NO4PS2","317.31","100","pesticide","Unclassified","Phosmet is a synthetic trialkyl phosphate compound and organophosphate acetylcholinesterase inhibitor that is used as a pesticide. It is characterized as an off-white crystalline solid with an offensive odor, and exposure occurs by inhalation, ingestion, or contact." +3150,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +3146,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +2651,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +2652,"6607","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +2653,"117428-22-5","DTXSID9047542","Picoxystrobin","IBSNKSODLGJUMQ-SDNWHVSQSA-N","CO\C=C(\C(=O)OC)C1=C(COC2=NC(=CC=C2)C(F)(F)F)C=CC=C1","C18H16F3NO4","367.32400000000001","55","pesticide","Unclassified","Picoxystrobin is an enoate ester that is the methyl ester of (2E)-3-methoxy-2-[2-({[6-(trifluoromethyl)pyridin-2-yl]oxy}methyl)phenyl]prop-2-enoic acid. A cereal fungicide used to control a wide range of diseases including brown rust, tan spot, powdery mildew and net blotch. It has a role as a mitochondrial cytochrome-bc1 complex inhibitor and an antifungal agrochemical. It is an aromatic ether, an enoate ester, an enol ether, an organofluorine compound, a member of pyridines and a methoxyacrylate strobilurin antifungal agent." +2655,"112529-15-4","DTXSID3044203","Pioglitazone hydrochloride","GHUUBYQTCDQWRA-UHFFFAOYSA-N","Cl.CCC1=CN=C(CCOC2=CC=C(CC3SC(=O)NC3=O)C=C2)C=C1","C19H21ClN2O3S","392.9","159",NA,NA,"Pioglitazone is a diabetes drug (thiazolidinedione-type, also called ""glitazones"") used along with a proper diet and exercise program to control high blood sugar in patients with type 2 diabetes." +2656,"110-85-0","DTXSID1021164","Piperazine","GLUUGHFHXGJENI-UHFFFAOYSA-N","C1CNCCN1","C4H10N2","86.138000000000005","433",NA,NA,NA +2657,"51-03-6","DTXSID1021166","Piperonyl butoxide","FIPWRIJSWJWJAI-UHFFFAOYSA-N","CCCCOCCOCCOCC1=CC2=C(OCO2)C=C1CCC","C19H30O5","338.44400000000002","139","pesticide","Unclassified","Piperonyl Butoxide is a synthetic derivative of benzodioxole and used as an insecticide synergist, Piperonyl Butoxide enhances the active properties of pyrethrin, pyrethroid, rotenone, and carbamate pesticide ingredients by inhibiting insect microsomal enzyme detoxification activity. It is toxic and suspected of causing anorexia, carcinogenesis, convulsions, and dermal irritation, as well as hepatic and renal damage." +2658,"625114-41-2","DTXSID3048520","Piragliatin","XEANIURBPHCHMG-SWLSCSKDSA-N","CS(=O)(=O)C1=CC=C(C=C1Cl)[C@@H](C[C@H]1CCC(=O)C1)C(=O)NC1=NC=CN=C1","C19H20ClN3O4S","421.9","29",NA,NA,NA +2659,"23103-98-2","DTXSID1032569","Pirimicarb","YFGYUFNIOHWBOB-UHFFFAOYSA-N","CN(C)C(=O)OC1=C(C)C(C)=NC(=N1)N(C)C","C11H18N4O2","238.291","83","pesticide","Unclassified","Pirimicarb is an aminopyrimidine that is N,N,4,5-tetramethylpyrimidin-2-amine substituted by a (dimethylcarbamoyl)oxy group at position 4. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, a carbamate insecticide, an agrochemical, an environmental contaminant, a xenobiotic and an insecticide. It is a carbamate ester, an aminopyrimidine and a tertiary amino compound. It derives from a dimethylcarbamic acid." +2660,"29232-93-7","DTXSID0024266","Pirimiphos-methyl","QHOQHJPRIBSPCY-UHFFFAOYSA-N","CCN(CC)C1=NC(OP(=S)(OC)OC)=CC(C)=N1","C11H20N3O3PS","305.33","68","pesticide","Unclassified","Pirimiphos-methyl, marketed as Actellic, and Sybol is a phosphorothioate used as an insecticide. It was originally developed by Imperial Chemical Industries Ltd., now Syngenta, at their Jealott's Hill site and first marketed in 1977, ten years after its discovery. This is one of several compounds used for vector control of Triatoma. These insects are implicated in the transmission of Chagas disease in the Americas. Pirimiphos-methyl can be applied as an interior surface paint additive, in order to achieve a residual pesticide effect." +2661,"50892-23-4","DTXSID4020290","Pirinixic acid","SZRPDCCEHVWOJX-UHFFFAOYSA-N","CC1=C(C)C(NC2=NC(SCC(O)=O)=NC(Cl)=C2)=CC=C1","C14H14ClN3O2S","323.8","206",NA,NA,"Pirinixic Acid is a synthetic thiacetic acid derivative used in biomedical research, carcinogenic Pirinixic acid is a peroxisome proliferator that activates specific peroxisome proliferator-activated receptors (PPAR). PPARs play an important role in diverse cellular functions, including lipid metabolism, cell proliferation, differentiation, adipogenesis, and inflammatory signaling." +4391,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +2684,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +2582,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +2685,"3871-99-6","DTXSID3037709","Potassium perfluorohexanesulfonate","RSCGQEBKFSGWJT-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6F13KO3S","438.2","69",NA,NA,NA +2588,"3871-99-6","DTXSID3037709","Potassium perfluorohexanesulfonate","RSCGQEBKFSGWJT-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6F13KO3S","438.2","69",NA,NA,NA +2685,"3871-99-6","DTXSID3037709","Potassium perfluorohexanesulfonate","RSCGQEBKFSGWJT-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6F13KO3S","438.2","69",NA,NA,NA +2588,"3871-99-6","DTXSID3037709","Potassium perfluorohexanesulfonate","RSCGQEBKFSGWJT-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6F13KO3S","438.2","69",NA,NA,NA +2686,"2795-39-3","DTXSID8037706","Potassium perfluorooctanesulfonate","WFRUBUQWJYMMRQ-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8F17KO3S","538.22","77",NA,NA,"Perfluorooctanesulfonic acid (PFOS) (conjugate base perfluorooctanesulfonate) is an anthropogenic fluorosurfactant and global pollutant. Persistent environmental pollutant that may cause adverse effects by inhibiting pulmonary surfactant." +2686,"2795-39-3","DTXSID8037706","Potassium perfluorooctanesulfonate","WFRUBUQWJYMMRQ-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8F17KO3S","538.22","77",NA,NA,"Perfluorooctanesulfonic acid (PFOS) (conjugate base perfluorooctanesulfonate) is an anthropogenic fluorosurfactant and global pollutant. Persistent environmental pollutant that may cause adverse effects by inhibiting pulmonary surfactant." +2687,"72-54-8","DTXSID4020373","p,p'-DDD","AHJKRLASYNVKDZ-UHFFFAOYSA-N","ClC(Cl)C(C1=CC=C(Cl)C=C1)C1=CC=C(Cl)C=C1","C14H10Cl4","320.02999999999997","89","pesticide","Unclassified","DDD is a chlorophenylethane that is 2,2-bis(p-chlorophenyl)ethane substituted by two chloro groups at position 1. It is a metabolite of the organochlorine insecticide, DDT. It has a role as a xenobiotic metabolite. It is an organochlorine insecticide, a member of monochlorobenzenes and a chlorophenylethane." +2688,"72-55-9","DTXSID9020374","p,p'-DDE","UCNVFOCBFJOQAL-UHFFFAOYSA-N","ClC(Cl)=C(C1=CC=C(Cl)C=C1)C1=CC=C(Cl)C=C1","C14H8Cl4","318.02","138","pesticide","Unclassified","DDE is a chlorophenylethylene that is ethylene substituted by two 4-chlorophenyl groups at position 1 and two chlorine atoms at position 2. It has a role as a persistent organic pollutant and a human xenobiotic metabolite. It is a member of monochlorobenzenes and a chlorophenylethylene." +2691,"23031-36-9","DTXSID0032572","Prallethrin","SMKRKQBMYOFFMU-UHFFFAOYSA-N","CC(C)=CC1C(C(=O)OC2CC(=O)C(CC#C)=C2C)C1(C)C","C19H24O3","300.39800000000002","46","pesticide","Unclassified","Prallethrin is a member of cyclopropanes and a terminal acetylenic compound. It has a role as a pyrethroid ester insecticide and an agrochemical. It derives from a chrysanthemic acid." +2694,"81131-70-6","DTXSID6047525","Pravastatin sodium","VWBQYTRBTXKKOG-IYNICTALSA-M","[Na+].CC[C@H](C)C(=O)O[C@H]1C[C@H](O)C=C2C=C[C@H](C)[C@H](CC[C@@H](O)C[C@@H](O)CC([O-])=O)[C@@H]12","C23H35NaO7","446.51600000000002","97",NA,NA,NA +2701,"53-03-2","DTXSID4021185","Prednisone","XOFYZVNMUHMLCC-ZPOLXVRWSA-N","C[C@]12CC(=O)[C@H]3[C@@H](CCC4=CC(=O)C=C[C@]34C)[C@@H]1CC[C@]2(O)C(=O)CO","C21H26O5","358.43400000000003","222",NA,NA,NA +2702,"67747-09-5","DTXSID4024270","Prochloraz","TVLSRXXIMLFWEO-UHFFFAOYSA-N","CCCN(CCOC1=C(Cl)C=C(Cl)C=C1Cl)C(=O)N1C=CN=C1","C15H16Cl3N3O2","376.66","99","industrial;pesticide","Unclassified","Prochloraz is a member of the class of ureas that is 1H-imidazole-1-carboxamide substituted by a propyl and a 2-(2,4,6-trichlorophenoxy)ethyl group at the amino nitrogen atom. A fungicide active against a wide range of diseases affecting field crops, fruit, turf and vegetables. It has a role as a xenobiotic, an environmental contaminant, an EC 1.14.13.70 (sterol 14alpha-demethylase) inhibitor and an antifungal agrochemical. It is an aromatic ether, a trichlorobenzene, a member of ureas, a member of imidazoles, an amide fungicide, a conazole fungicide and an imidazole fungicide." +2703,"32809-16-8","DTXSID9033923","Procymidone","QXJKBPAVAHBARF-UHFFFAOYSA-N","CC12CC1(C)C(=O)N(C2=O)C1=CC(Cl)=CC(Cl)=C1","C13H11Cl2NO2","284.14","83","pesticide","Unclassified","Procymidone is a pesticide. It is often used for killing unwanted ferns and nettles, and as a dicarboximide fungicide for killing fungi, for example as seed dressing, pre-harvest spray or post-harvest dip of lupins, grapes, stone fruit, strawberries. It is a known endocrine disruptor (androgen receptor antagonist)[citation needed] which interferes with the sexual differention of male rats. It is considered to be a poison." +2704,"29091-21-2","DTXSID1034210","Prodiamine","RSVPPPHXAASNOL-UHFFFAOYSA-N","CCCN(CCC)C1=C(C(N)=C(C=C1[N+]([O-])=O)C(F)(F)F)[N+]([O-])=O","C13H17F3N4O4","350.298","59","pesticide","Unclassified","Prodiamine is a C-nitro compound." +2705,"41198-08-7","DTXSID3032464","Profenofos","QYMMJNLHFKGANY-UHFFFAOYSA-N","CCCSP(=O)(OCC)OC1=C(Cl)C=C(Br)C=C1","C11H15BrClO3PS","373.63","76","pesticide","Unclassified","Profenofos is an organic thiophosphate, an organophosphate insecticide, an organochlorine insecticide and a member of monochlorobenzenes. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an acaricide and an agrochemical. It derives from a 4-bromo-2-chlorophenol." +2706,"57-83-0","DTXSID3022370","Progesterone","RJKFOVLPORLFTN-LEKSSAKUSA-N","[H][C@@]12CC[C@H](C(C)=O)[C@@]1(C)CC[C@@]1([H])[C@@]2([H])CCC2=CC(=O)CC[C@]12C","C21H30O2","314.46899999999999","309",NA,NA,"Progesterone is a C21-steroid hormone in which a pregnane skeleton carries oxo substituents at positions 3 and 20 and is unsaturated at C(4)-C(5). As a hormone, it is involved in the female menstrual cycle, pregnancy and embryogenesis of humans and other species. It has a role as a contraceptive drug, a progestin, a progesterone receptor agonist, a human metabolite and a mouse metabolite. It is a 20-oxo steroid, a 3-oxo-Delta(4) steroid and a C21-steroid hormone. It derives from a hydride of a pregnane." +2707,"1610-18-0","DTXSID6022341","Prometon","ISEUFVQQFVOBCY-UHFFFAOYSA-N","COC1=NC(NC(C)C)=NC(NC(C)C)=N1","C10H19N5O","225.29599999999999","111","pesticide","Unclassified","Prometon is a methoxy-1,3,5-triazine that is 6-methoxy-1,3,5-triazine-2,4-diamine in which the one of the hydrogens of each amino group is substituted by an isopropyl group. It has a role as a herbicide, an environmental contaminant and a xenobiotic. It is a diamino-1,3,5-triazine and a methoxy-1,3,5-triazine. It derives from a 6-methoxy-1,3,5-triazine-2,4-diamine." +2708,"7287-19-6","DTXSID4024272","Prometryn","AAEVYOVXGOFMJO-UHFFFAOYSA-N","CSC1=NC(NC(C)C)=NC(NC(C)C)=N1","C10H19N5S","241.36","127","pesticide","Unclassified","Prometryn is a diamino-1,3,5-triazine that is N,N'-di(propan-2-yl)-1,3,5-triazine-2,4-diamine substituted by a methylsulfanediyl group at position 6. It has a role as a herbicide, a xenobiotic and an environmental contaminant. It is a diamino-1,3,5-triazine and a methylthio-1,3,5-triazine." +2709,"25606-41-1","DTXSID6034849","Propamocarb hydrochloride","MKIMSXGUTQTKJU-UHFFFAOYSA-N","Cl.CCCOC(=O)NCCCN(C)C","C9H21ClN2O2","224.73","35",NA,NA,NA +2710,"261947-38-0","DTXSID7047279","CP-532623","TUPKOWFPVAXQFP-OFNKIYASSA-N","CC[C@@H]1C[C@H](N(CC2=CC(=CC(=C2)C(F)(F)F)C(F)(F)F)C(C)=O)C2=C(C=CC(=C2)C(F)(F)F)N1C(=O)OC(C)C","C27H27F9N2O3","598.51","22",NA,NA,NA +2711,"709-98-8","DTXSID8022111","Propanil","LFULEKSKNZEWOE-UHFFFAOYSA-N","CCC(=O)NC1=CC=C(Cl)C(Cl)=C1","C9H9Cl2NO","218.08","132","pesticide","Unclassified","Propanil is an anilide resulting from the formal condensation of the carboxy group of propanoic acid with the amino group of 3,4-dichloroaniline. It is a herbicide used for the treatment of numerous grasses and broad-leaved weeds in rice, potatoes, and wheat. It has a role as a herbicide. It is an anilide and a dichlorobenzene. It derives from a 3,4-dichloroaniline." +2712,"34590-94-8","DTXSID0027983","Dipropylene glycol monomethyl ether","-","-","-","-","-",NA,NA,NA +2715,"2312-35-8","DTXSID4024276","Propargite","ZYHMJXZULPZUED-UHFFFAOYSA-N","CC(C)(C)C1=CC=C(OC2CCCCC2OS(=O)OCC#C)C=C1","C19H26O4S","350.47","126","pesticide","Unclassified","Propargite is a dark colored liquid. It is a wettable powder or water emulsifiable liquid. It can cause illness by inhalation, skin absorption and/or ingestion. The primary hazard is the threat to the environment. Immediate steps should be taken to limit its spread to the environment. Since it is a liquid it can easily penetrate the soil and contaminate groundwater and nearby streams. It is used as a pesticide. Practically insoluble in water (10.5 mg/L). Used as an acaricide." +2716,"139-40-2","DTXSID3021196","Propazine","WJNRPILHGGKWCK-UHFFFAOYSA-N","CC(C)NC1=NC(NC(C)C)=NC(Cl)=N1","C9H16ClN5","229.71","129","pesticide","Unclassified","Propazine is a diamino-1,3,5-triazine that is N,N'-di(propan-2-yl)-1,3,5-triazine-2,4-diamine substituted by a chloro group at position 6. It has a role as a herbicide, an environmental contaminant and a xenobiotic. It is a chloro-1,3,5-triazine and a diamino-1,3,5-triazine." +2717,"31218-83-4","DTXSID7032470","Propetamphos","BZNDWPRGXNILMS-VQHVLOKHSA-N","CCNP(=S)(OC)O\C(C)=C\C(=O)OC(C)C","C10H20NO4PS","281.31","50","pesticide","Unclassified","Propetamphos is a phosphoramidate ester, an organophosphate insecticide and an isopropyl ester. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor and an agrochemical. It derives from an isopropyl 3-hydroxybut-2-enoate." +2718,"60207-90-1","DTXSID8024280","Propiconazole","STJLVHWMYQXCPB-UHFFFAOYSA-N","CCCC1COC(CN2C=NC=N2)(O1)C1=C(Cl)C=C(Cl)C=C1","C15H17Cl2N3O2","342.22","123","pesticide","Unclassified","Propiconazole is the cyclic ketal obtained by formal condensation of 1-(2,4-dichlorophenyl)-2-(1H-1,2,4-triazol-1-yl)ethanone with pentane-1,2-diol. A triazole fungicide, it is used commercially as a diastereoisomeric mixture on soft fruit (including apricots, peaches, nectarines, plums and prunes), nuts (including peanuts, pecans and almonds), mushrooms, and grasses grown for seeds. It has a role as a xenobiotic, an environmental contaminant, an EC 1.14.13.70 (sterol 14alpha-demethylase) inhibitor and an antifungal agrochemical. It is a member of triazoles, a cyclic ketal, a dichlorobenzene, a conazole fungicide and a triazole fungicide." +2720,"114-26-1","DTXSID7021948","Propoxur","ISRUGXGCCGIOQO-UHFFFAOYSA-N","CNC(=O)OC1=CC=CC=C1OC(C)C","C11H15NO3","209.245","138","pesticide","Unclassified","Propoxur is a synthetic carbamate, aromatic ether compound, and acetylcholinesterase inhibitor that is used as a pesticide. It is characterized as a toxic, white to tan crystalline solid with a faint odor, and exposure occurs by inhalation, ingestion, or contact." +2721,"181274-15-7","DTXSID9034864","Propoxycarbazone-sodium","JRQGDDUXDKCWRF-UHFFFAOYSA-M","[Na+].CCCOC1=NN(C(=O)[N-]S(=O)(=O)C2=C(C=CC=C2)C(=O)OC)C(=O)N1C","C15H17N4NaO7S","420.37","38",NA,NA,NA +2723,"121-79-9","DTXSID5021201","Propyl gallate","ZTHYODDOHIVTJV-UHFFFAOYSA-N","CCCOC(=O)C1=CC(O)=C(O)C(O)=C1","C10H12O5","212.20099999999999","164",NA,NA,"N-propyl gallate is a trihydroxybenzoic acid; Propyl Gallate is under investigation in clinical trial NCT01450098 (A Study of LY2484595 in Healthy Subjects)." +2724,"103-65-1","DTXSID3042219","Propylbenzene","ODLMAHJVESYWTB-UHFFFAOYSA-N","CCCC1=CC=CC=C1","C9H12","120.19499999999999","140",NA,NA,NA +2726,"94-13-3","DTXSID4022527","Propylparaben","QELSKZZBTMNZEB-UHFFFAOYSA-N","CCCOC(=O)C1=CC=C(O)C=C1","C10H12O3","180.203","178",NA,NA,"Propylparaben is the benzoate ester that is the propyl ester of 4-hydroxybenzoic acid. Preservative typically found in many water-based cosmetics, such as creams, lotions, shampoos and bath products. Also used as a food additive. It has a role as an antifungal agent and an antimicrobial agent. It is a benzoate ester, a member of phenols and a paraben. It derives from a propan-1-ol and a 4-hydroxybenzoic acid." +2727,"23950-58-5","DTXSID2020420","Propyzamide","PHNUZKMIPFFYSO-UHFFFAOYSA-N","CC(C)(NC(=O)C1=CC(Cl)=CC(Cl)=C1)C#C","C12H11Cl2NO","256.13","125","pesticide","Unclassified","Propyzamide is a member of the class of benzamides resulting from the formal condensation of the carboxy group of 3,5-dichlorobenzoic acid with the amino group of 2-methylbut-3-yn-2-amine. It is used as a systemic post-emergent herbicide for the control grass and broadleaf weeds in a wide range of in a wide variety of fruit and root crops. It has a role as a herbicide and an agrochemical. It is a dichlorobenzene, a terminal acetylenic compound and a member of benzamides." +2735,"123312-89-0","DTXSID2032637","Pymetrozine","QHMTXANCGGJZRX-WUXMJOGZSA-N","CC1=NNC(=O)N(C1)\N=C\C1=CC=CN=C1","C10H11N5O","217.232","67",NA,NA,NA +2736,"175013-18-0","DTXSID7032638","Pyraclostrobin","HZRSNVGNWUDEFX-UHFFFAOYSA-N","CON(C(=O)OC)C1=C(COC2=NN(C=C2)C2=CC=C(Cl)C=C2)C=CC=C1","C19H18ClN3O4","387.82","85",NA,NA,NA +2737,"129630-19-9","DTXSID8034871","Pyraflufen-ethyl","APTZNLHMIGJTEW-UHFFFAOYSA-N","CCOC(=O)COC1=C(Cl)C=C(F)C(=C1)C1=NN(C)C(OC(F)F)=C1Cl","C15H13Cl2F3N2O4","413.17","46","pesticide","Unclassified","Pyraflufen-ethyl is an ethyl ester resulting from the formal condensation of the carboxy group of pyraflufen with ethanol. A proherbicide for pyraflufen, it is used for the control of broad-leaved weeds and grasses in a variety of crops. It has a role as an EC 1.3.3.4 (protoporphyrinogen oxidase) inhibitor, a proherbicide and an agrochemical. It is a member of pyrazoles, a biaryl, an ethyl ester, an aromatic ether, a member of monochlorobenzenes and a member of monofluorobenzenes. It derives from a pyraflufen." +2739,"129-00-0","DTXSID3024289","Pyrene","BBEAQIROQSPTKN-UHFFFAOYSA-N","C1=CC2=C3C(C=CC4=CC=CC(C=C2)=C34)=C1","C16H10","202.256","175","industrial","PAH","Pyrene is an ortho- and peri-fused polycyclic arene consisting of four fused benzene rings, resulting in a flat aromatic system. It has a role as a fluorescent probe." +2740,"6217-22-7","DTXSID30211223","Pyrene-4,5-quinone","JKCATVQPENLMQJ-UHFFFAOYSA-N","O=C1C(=O)C2=CC=CC3=C2C2=C(C=CC=C12)C=C3","C16H8O2","232.238","60",NA,NA,"Pyrene-4,5-dione is a member of pyrenes." +2741,"96489-71-3","DTXSID5032573","Pyridaben","DWFZBUWUXWZWKD-UHFFFAOYSA-N","CC(C)(C)N1N=CC(SCC2=CC=C(C=C2)C(C)(C)C)=C(Cl)C1=O","C19H25ClN2OS","364.93","87","pesticide","Unclassified","Pyridaben is a pyridazinone, an organochlorine insecticide and an organochlorine acaricide. It has a role as a mitochondrial NADH:ubiquinone reductase inhibitor." +2742,"65-23-6","DTXSID4023541","Pyridoxine","LXNHXLLTXMVWPM-UHFFFAOYSA-N","CC1=C(O)C(CO)=C(CO)C=N1","C8H11NO3","169.18","194",NA,NA,NA +2743,"58-14-0","DTXSID9021217","Pyrimethamine","WKSAUQYGYAYLPV-UHFFFAOYSA-N","CCC1=NC(N)=NC(N)=C1C1=CC=C(Cl)C=C1","C12H13ClN4","248.71","289",NA,NA,"Pyrimethamine is a synthetic derivative of ethyl-pyrimidine with potent antimalarial properties. Pyrimethamine is a competitive inhibitor of dihydrofolate reductase (DHFR). DHFR is a key enzyme in the redox cycle for production of tetrahydrofolate, a cofactor that is required for the synthesis of DNA and proteins. This agent is often used in combination with other antimalarials for the treatment of uncomplicated falciparum malaria." +2744,"53112-28-0","DTXSID8034877","Pyrimethanil","ZLIBICFPKPWGIZ-UHFFFAOYSA-N","CC1=CC(C)=NC(NC2=CC=CC=C2)=N1","C12H13N3","199.25700000000001","121","pesticide","Unclassified","Pyrimethanil is a member of the class of aminopyrimidines that is N-phenylpyrimidin-2-amine carrying two additional methyl substituents at positions 4 and 6. A fungicide used to control grey mould on fruit, vegetables and ornamentals as well as leaf scab on pome fruit. Also commonly employed to control Botrytis cinerea throughout the winemaking process in grapes, must, fermenting must and wine. It has a role as an aryl hydrocarbon receptor agonist, an environmental contaminant, a xenobiotic and an antifungal agrochemical. It is an aminopyrimidine, a secondary amino compound and an anilinopyrimidine fungicide." +2746,"95737-68-1","DTXSID1032640","Pyriproxyfen","NHDHVHZZCFYRSB-UHFFFAOYSA-N","CC(COC1=CC=C(OC2=CC=CC=C2)C=C1)OC1=NC=CC=C1","C20H19NO3","321.37599999999998","118","pesticide","Unclassified","Pyriproxyfen is an aromatic ether that consists of propylene glycol having a 2-pyridyl group at the O-1 position and a 4-phenoxyphenyl group at the O-3 position. It has a role as a juvenile hormone mimic. It is an aromatic ether and a member of pyridines. It derives from a 4-phenoxyphenol." +2747,"123343-16-8","DTXSID8032673","Pyrithiobac-sodium","CNILNQMBAHKMFS-UHFFFAOYSA-M","[Na+].COC1=CC(OC)=NC(SC2=C(C([O-])=O)C(Cl)=CC=C2)=N1","C13H10ClN2NaO4S","348.73","62",NA,NA,NA +2749,"117-39-5","DTXSID4021218","Quercetin","REFJWTPEDVJJIY-UHFFFAOYSA-N","OC1=CC2=C(C(O)=C1)C(=O)C(O)=C(O2)C1=CC(O)=C(O)C=C1","C15H10O7","302.238","404",NA,NA,NA +2750,"84087-01-4","DTXSID6032641","Quinclorac","FFSSWMQPCJRCRV-UHFFFAOYSA-N","OC(=O)C1=C(Cl)C=CC2=CC(Cl)=CN=C12","C10H5Cl2NO2","242.06","101",NA,NA,NA +2751,"91-22-5","DTXSID1021798","Quinoline","SMWDFEZZVXVKRB-UHFFFAOYSA-N","C1=CC2=C(C=C1)N=CC=C2","C9H7N","129.16200000000001","421","industrial","Unclassified","Quinoline is used mainly as an intermediate in the manufacture of other products. Potential exposure to quinoline may occur from the inhalation of cigarette smoke. Quinoline breaks down quickly in the atmosphere and water. Acute (short-term) inhalation exposure to quinoline vapors irritates the eyes, nose, and throat and may cause headaches, dizziness, and nausea in humans. Information on the chronic (long- term), reproductive, developmental, or carcinogenic effects of quinoline in humans is not available. Liver damage has been observed in rats chronically exposed to quinoline by ingestion. An increased incidence of liver vascular tumors has been observed in rats and mice orally exposed to quinoline. EPA has provisionally classified quinoline as a Group C, possible human carcinogen." +2752,"124495-18-7","DTXSID2034881","Quinoxyfen","WRPIRSINYZBGPK-UHFFFAOYSA-N","FC1=CC=C(OC2=CC=NC3=CC(Cl)=CC(Cl)=C23)C=C1","C15H8Cl2FNO","308.13","79","pesticide","Unclassified","Quinoxyfen is a member of the class of quinolines carrying two chloro substituents at positions 5 and 7 together with a 4-fluorophenoxy substituent at position 4. A fungicide used mainly to control powdery mildew in cereals. It has a role as an antifungal agrochemical. It is an aromatic ether, a member of quinolines, an organochlorine compound and a member of monofluorobenzenes." +2753,"76578-14-8","DTXSID9023889","Quizalofop-ethyl","OSUHJPCHFDQAIT-UHFFFAOYSA-N","CCOC(=O)C(C)OC1=CC=C(OC2=CN=C3C=C(Cl)C=CC3=N2)C=C1","C19H17ClN2O4","372.81","80","pesticide","Unclassified","Ethyl 2-{4-[(6-chloroquinoxalin-2-yl)oxy]phenoxy}propanoate is an ethyl ester resulting from the formal condensation of the carboxy group of 2-{4-[(6-chloroquinoxalin-2-yl)oxy]phenoxy}propanoic acid with ethanol. It is an ethyl ester, an organochlorine compound, a quinoxaline derivative and an aromatic ether. It derives from a 2-{4-[(6-chloroquinoxalin-2-yl)oxy]phenoxy}propanoic acid." +2764,"82640-04-8","DTXSID1034181","Raloxifene hydrochloride","BKXVVCILCIUCLG-UHFFFAOYSA-N","Cl.OC1=CC=C(C=C1)C1=C(C(=O)C2=CC=C(OCCN3CCCCC3)C=C2)C2=CC=C(O)C=C2S1","C28H28ClNO4S","510.05","161",NA,NA,NA +2770,"50-55-5","DTXSID7021237","Reserpine","QEVHRUUCFGRFIF-MDEJGZGSSA-N","[H][C@]12C[C@@H](OC(=O)C3=CC(OC)=C(OC)C(OC)=C3)[C@H](OC)[C@@H](C(=O)OC)[C@@]1([H])C[C@@]1([H])N(CCC3=C1NC1=C3C=CC(OC)=C1)C2","C33H40N2O9","608.68799999999999","222",NA,NA,"Reserpine is an oral antihypertensive medication that acts through inhibitor of alpha-adrenergic transmission and was one of the first antihypertensive agents introduced into clinical practice. Despite widescale use for many years, reserpine has not been shown to cause clinically apparent liver injury." +2771,"10453-86-8","DTXSID7022253","Resmethrin","VEMKTZHHVJILDY-UHFFFAOYSA-N","CC(C)=CC1C(C(=O)OCC2=COC(CC3=CC=CC=C3)=C2)C1(C)C","C22H26O3","338.447","92","pesticide","Unclassified","Resmethrin is a member of furans and a cyclopropanecarboxylate ester. It has a role as a pyrethroid ester insecticide and an agrochemical. It derives from a chrysanthemic acid." +2772,"108-46-3","DTXSID2021238","Resorcinol","GHMLBKRAJCXXBS-UHFFFAOYSA-N","OC1=CC(O)=CC=C1","C6H6O2","110.11199999999999","279",NA,NA,"Resorcinol is a very white crystalline solid that becomes pink on exposure to light if not completely pure. Burns although ignition is difficult. Density approximately 1.28 g / cm3. Irritating to skin and eyes. Toxic by skin absorption. Used to make plastics and pharmaceuticals." +2774,"483-65-8","DTXSID7058701","Retene","NXLOLUFNDSBYTP-UHFFFAOYSA-N","CC(C)C1=CC2=C(C=C1)C1=C(C=C2)C(C)=CC=C1","C18H18","234.34200000000001","51",NA,"PAH","Plates or scales (from ethanol) or pearly-beige small flakes." +2778,"302-79-4","DTXSID7021239","all-trans-Retinoic acid","SHGAZHPCJJPHSC-YCNIQYBTSA-N","C\C(\C=C\C1=C(C)CCCC1(C)C)=C/C=C/C(/C)=C/C(O)=O","C20H28O2","300.44200000000001","382",NA,NA,"Tretinoin, also known as all-trans-retinoic acid (ATRA), is a naturally occurring derivative of vitamin A (retinol). Retinoids such as tretinoin are important regulators of cell reproduction, proliferation, and differentiation and are used to treat acne and photodamaged skin and to manage keratinization disorders such as ichthyosis and keratosis follicularis. Tretinoin also represents the class of anticancer drugs called differentiating agents and is used in the treatment of acute promyelocytic leukemia (APL)." +2779,"68-26-8","DTXSID3023556","Retinol","FPIPGXGPPPQFEQ-OVSJKPMPSA-N","C\C(=C/CO)\C=C\C=C(/C)\C=C\C1=C(C)CCCC1(C)C","C20H30O","286.459","212",NA,NA,NA +2780,"13292-46-1","DTXSID6021244","Rifampicin","JQXXHWHPUNPDRT-WLSIYKJHSA-N","CO[C@H]1\C=C\O[C@@]2(C)OC3=C(C2=O)C2=C(C(O)=C3C)C(O)=C(NC(=O)\C(C)=C/C=C/[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C)C(\C=N\N1CCN(C)CC1)=C2O","C43H58N4O12","822.95299999999997","115",NA,NA,NA +2813,"83-79-4","DTXSID6021248","Rotenone","JUVIOZPCNVVQFO-HBGVWJBISA-N","[H][C@@]12COC3=C(C=C(OC)C(OC)=C3)[C@]1([H])C(=O)C1=CC=C3O[C@H](CC3=C1O2)C(C)=C","C23H22O6","394.423","204","pesticide","Unclassified","Rotenone is a naturally occurring organic heteropentacyclic compound and member of rotenones that is found in the roots of several plant species. It is a mitochondrial NADH:ubiquinone reductase inhibitor, toxin, and metabolite, and is used as an antineoplastic agent and insecticide. It is characterized as a colorless to brownish or a white to brownish-white crystalline solid that is odorless. Exposure occurs by inhalation, ingestion, or contact." +2821,"82385-42-0","DTXSID7021992","Sodium saccharin hydrate","ILJOYZVVZZFIKA-UHFFFAOYSA-M","O.[Na+].O=C1[N-]S(=O)(=O)C2=CC=CC=C12","C7H6NNaO4S","223.18","37",NA,NA,NA +2827,"94-59-7","DTXSID0021254","Safrole","ZMQAAUBTXCXRIC-UHFFFAOYSA-N","C=CCC1=CC=C2OCOC2=C1","C10H10O2","162.18799999999999","124",NA,NA,"5-(Prop-2-en-1-yl)-2H-1,3-benzodioxole, also known as Safrole, is a member of the class of benzodioxoles. It is found in several plants, including black pepper, cinnamon and nutmeg, and is present in several essential oils, notably that of sassafras. It has insecticidal properties and has been used as a topical antiseptic. Although not thought to pose a significant carcinogenic risk to humans, findings of weak carcinogenicity in rats have resulted in the banning of its (previously widespread) use in perfumes, soaps, and as a food additive. It has a role as a plant metabolite, a flavouring agent, an insecticide and a metabolite." +2834,"28434-00-6","DTXSID2039336","S-Bioallethrin","ZCVAOQKBXKSDMS-PVAVHDDUSA-N","CC(C)=C[C@@H]1[C@@H](C(=O)O[C@H]2CC(=O)C(CC=C)=C2C)C1(C)C","C19H26O3","302.41399999999999","44","pesticide","Unclassified","D-trans-allethrin is a clear to amber viscous liquid. A synthetic insecticide structurally similar to pyrethrin. (+)-trans-(S)-allethrin is a (+)-trans-allethrin. It is an enantiomer of a (-)-trans-(R)-allethrin." +2838,"74051-80-2","DTXSID9024304","Sethoxydim","CSPPKDPQLUUTND-UHFFFAOYSA-N","CCCC(=NOCC)C1=C(O)CC(CC(C)SCC)CC1=O","C17H29NO3S","327.48","-",NA,NA,NA +2839,"759-94-4","DTXSID1024091","EPTC","GUVLYNGULCJVDO-UHFFFAOYSA-N","CCCN(CCC)C(=O)SCC","C9H19NOS","189.32","87","pesticide","Unclassified","EPTC is a tertiary amine and appears as clear yellow or light yellow liquid." +3419,"7631-86-9","DTXSID1029677","Silica","-","-","-","-","-",NA,NA,NA +2844,"7631-86-9","DTXSID1029677","Silica","-","-","-","-","-",NA,NA,NA +2849,"122-34-9","DTXSID4021268","Simazine","ODCWYMIRDDJXKW-UHFFFAOYSA-N","CCNC1=NC(NCC)=NC(Cl)=N1","C7H12ClN5","201.66","165","pesticide","Unclassified","Simazine is a diamino-1,3,5-triazine that is N,N'-diethyl-1,3,5-triazine-2,4-diamine substituted by a chloro group at position 6. It has a role as a herbicide, a xenobiotic and an environmental contaminant. It is a chloro-1,3,5-triazine and a diamino-1,3,5-triazine." +2850,"79902-63-9","DTXSID0023581","Simvastatin","RYMZZMVNJRMUDD-HGQWONQESA-N","CCC(C)(C)C(=O)O[C@H]1C[C@@H](C)C=C2C=C[C@H](C)[C@H](CC[C@@H]3C[C@@H](O)CC(=O)O3)[C@@H]12","C25H38O5","418.57400000000001","280",NA,NA,NA +2867,"3811-73-2","DTXSID3042390","Sodium (2-pyridylthio)-N-oxide","WNGMMIYXPIAYOB-UHFFFAOYSA-M","[Na+].[O-][N+]1=C([S-])C=CC=C1","C5H4NNaOS","149.13999999999999","54",NA,NA,NA +2868,"478263-98-8","DTXSID5047372","AVE3295","USXOYRFFKSZUAN-BOXHHOBZSA-M","[Na+].CC[C@H](NC(=O)C1=C([N-]S(=O)(=O)C2=CC=CC3=CC=CN=C23)C=CC(F)=C1)C1=CC=CC=C1","C25H21FN3NaO3S","485.51","4",NA,NA,NA +2871,"1061517-62-1","DTXSID4047337","PharmaGSID_47337","KQJNPHDTBVUCDU-UHFFFAOYSA-M","[Na+].CCOC1=CC(=CC=C1)N1C=C(N=C1C1=CC=C(C)C=C1)C(=O)N1CCN(CC1)C1=CC2=CC=CC=C2C(=C1)C([O-])=O","C34H31N4NaO4","582.63599999999997","3",NA,NA,NA +2872,"824-78-2","DTXSID3027320","Sodium 4-nitrophenolate","CURNJKLCYZZBNJ-UHFFFAOYSA-M","[Na+].[O-]C1=CC=C(C=C1)[N+]([O-])=O","C6H4NNaO3","161.09200000000001","62",NA,NA,NA +2873,"104795-68-8","DTXSID8047268","CI-959","UCLODRCAPZIYOW-UHFFFAOYSA-M","[Na+].COC1=CC2=C(SC(C(=O)NC3=NN=N[N-]3)=C2OC(C)C)C=C1","C14H14N5NaO3S","355.35","16",NA,NA,NA +2874,"136042-19-8","DTXSID1048178","FR130739","YFABTKCYNBWJHS-UHFFFAOYSA-N","[Na+].CCCCC1=NC2=C(N=CC=C2)N1CC1=CC=C(C=C1)C1=CC=CC=C1C1=NN=N[N-]1","C24H22N7Na","431.47899999999998","15",NA,NA,NA +2876,"26628-22-8","DTXSID8020121","Sodium azide","PXIPVTKHYLBLMZ-UHFFFAOYSA-N","[Na+].[N-]=[N+]=[N-]","N3Na","65.010999999999996","85",NA,NA,NA +2877,"532-32-1","DTXSID1020140","Sodium benzoate","WXMKPNITSTVMEF-UHFFFAOYSA-M","[Na+].[O-]C(=O)C1=CC=CC=C1","C7H5NaO2","144.10499999999999","142",NA,NA,"Sodium benzoate is an organic sodium salt resulting from the replacement of the proton from the carboxy group of benzoic acid by a sodium ion. It has a role as an antimicrobial food preservative, a drug allergen, an EC 1.13.11.33 (arachidonate 15-lipoxygenase) inhibitor, an EC 3.1.1.3 (triacylglycerol lipase) inhibitor, an algal metabolite, a human xenobiotic metabolite and a plant metabolite. It contains a benzoate." +2878,"7758-19-2","DTXSID8021272","Sodium chlorite","UKLNMMHNWFDKNT-UHFFFAOYSA-M","[Na+].[O-][Cl]=O","ClNaO2","90.44","74",NA,NA,NA +2879,"4418-26-2","DTXSID7026029","Sodium dehydroacetate","DSOWAKKSGYUMTF-GZOLSCHFSA-M","[Na+].C\C([O-])=C1/C(=O)OC(C)=CC1=O","C8H7NaO4","190.13","15",NA,NA,NA +2880,"128-04-1","DTXSID6027050","Sodium dimethyldithiocarbamate","VMSRVIHUFHQIAL-UHFFFAOYSA-M","[Na+].CN(C)C([S-])=S","C3H6NNaS2","143.19999999999999","78",NA,NA,NA +2881,"151-21-3","DTXSID1026031","Sodium dodecyl sulfate","DBMJMQXJHONAFJ-UHFFFAOYSA-M","[Na+].CCCCCCCCCCCCOS([O-])(=O)=O","C12H25NaO4S","288.38","172",NA,NA,NA +2882,"25155-30-0","DTXSID7025219","Sodium dodecylbenzenesulfonate","-","[Na+].CCCCCCCCCCCC*.[O-]S(=O)(=O)C1=CC=CC=C1 |c:18,20,t:16,lp:14:3,16:2,17:2,m:13:21.22.23|","-","-","-",NA,NA,NA +2883,"6381-77-7","DTXSID5020570","Sodium erythorbate","PPASLZSBLFJQEF-RKJRWTFHSA-M","[Na+].OC[C@@H](O)[C@H]1OC(=O)C(O)=C1[O-]","C6H7NaO6","198.10599999999999","26",NA,NA,NA +2884,"1120-01-0","DTXSID0042400","Sodium hexyldecyl sulfate","GGHPAKFFUZUEKL-UHFFFAOYSA-M","[Na+].CCCCCCCCCCCCCCCCOS([O-])(=O)=O","C16H33NaO4S","344.49","57",NA,NA,NA +2885,"134-03-2","DTXSID0020105","Sodium L-ascorbate","PPASLZSBLFJQEF-RXSVEWSESA-M","[Na+].OC[C@H](O)[C@H]1OC(=O)C(O)=C1[O-]","C6H7NaO6","198.10599999999999","73",NA,NA,NA +2886,"7632-00-0","DTXSID0020941","Sodium nitrite","LPXPTNMVRIOKMN-UHFFFAOYSA-M","[Na+].[O-]N=O","NNaO2","68.995000000000005","144",NA,NA,"Sodium nitrite appears as a yellowish white crystalline solid. Noncombustible but will accelerate the burning of combustible material. If large quantities are involved in a fire or if the combustible material is finely divided, an explosion may result. If contaminated by ammonium compounds, spontaneous decomposition can occur and the resulting heat may ignite surrounding combustible material. Prolonged exposure heat may result in an explosion. Toxic oxides of nitrogen are produced in fires involving this material. Used as a food preservative, and to make other chemicals." +2887,"1191-50-0","DTXSID4042416","Sodium myristyl sulfate","UPUIQOIQVMNQAP-UHFFFAOYSA-M","[Na+].CCCCCCCCCCCCCCOS([O-])(=O)=O","C14H29NaO4S","316.43","65",NA,NA,NA +2888,"650-51-1","DTXSID6034924","Sodium trichloroacetate","SAQSTQBVENFSKT-UHFFFAOYSA-M","[Na+].[O-]C(=O)C(Cl)(Cl)Cl","C2Cl3NaO2","185.36","64",NA,NA,NA +2889,"1300-72-7","DTXSID3026302","Sodium xylenesulfonate","-","C*.C*.OS(=O)(=O)C1=CC=CC=C1 |c:8,10,t:6,lp:4:2,6:2,7:2,m:1:9.10,3:10.11.12.13|","-","-","-",NA,NA,NA +2893,"110-44-1","DTXSID3021277","2E,4E-Hexadienoic acid","WSWCOQWTEOXDQX-MQQKCMAXSA-N","C\C=C\C=C\C(O)=O","C6H8O2","112.128","150",NA,NA,"Sorbic acid, or 2,4-hexadienoic acid, is a natural organic compound used as a food preservative. It is a hexadienoic acid, a polyunsaturated fatty acid, a medium-chain fatty acid and an alpha,beta-unsaturated monocarboxylic acid. It is a conjugate acid of a sorbate." +2894,"1338-43-8","DTXSID6027397","Sorbitan, mono-(9Z)-9-octadecenoate","NWGKJDSIEKMTRX-AAZCQSIUSA-N","CCCCCCCC\C=C/CCCCCCCC(=O)OC[C@@H](O)[C@H]1OC[C@H](O)[C@H]1O","C24H44O6","428.61","46",NA,NA,NA +2895,"148477-71-8","DTXSID6034928","Spirodiclofen","DTDSAWVUFPGDMX-UHFFFAOYSA-N","CCC(C)(C)C(=O)OC1=C(C(=O)OC11CCCCC1)C1=CC=C(Cl)C=C1Cl","C21H24Cl2O4","411.32","70","pesticide","Unclassified","Spirodiclofen is an organochlorine acaricide, a dichlorobenzene, an oxaspiro compound and a gamma-lactone. It derives from a 1,3-dichlorobenzene." +2896,"52-01-7","DTXSID6034186","Spironolactone","LXMSZDCAJNLERA-ZHYRCANASA-N","[H][C@@]12CC[C@@]3(CCC(=O)O3)[C@@]1(C)CC[C@@]1([H])[C@@]2([H])[C@@H](CC2=CC(=O)CC[C@]12C)SC(C)=O","C24H32O4S","416.58","176",NA,NA,"Spironolactone is an aldosterone receptor antagonist and potassium-sparing diuretic widely used in the therapy of edema, particularly in patients with cirrhosis in which hyperaldosteronism appears to play a major role. Spironolactone has been linked to rare cases of clinically apparent drug induced liver disease." +2897,"118134-30-8","DTXSID1034212","Spiroxamine","PUYXTUJWRLOUCW-UHFFFAOYSA-N","CCCN(CC)CC1COC2(CCC(CC2)C(C)(C)C)O1","C18H35NO2","297.483","79","pesticide","PAH","Spiroxamine is the spiroketal resulting from the formal condensation of 4-tert-butylcyclohexanone with 3-[ethyl(propyl)amino]propane-1,2-diol. An inhibitor of ergosterol synthesis, it is a broad spectrum agricultural fungicide used particularly against powdery mildew in the production of cereals, bananas and grapes. It has a role as a sterol biosynthesis inhibitor, a xenobiotic, an environmental contaminant and an antifungal agrochemical. It is a dioxolane, a tertiary amino compound and a spiroketal." +2900,"3056-17-5","DTXSID1023819","Stavudine","XNKLLVCARDGLGL-JGVFFNPUSA-N","CC1=CN([C@@H]2O[C@H](CO)C=C2)C(=O)NC1=O","C10H12N2O4","224.21600000000001","211",NA,NA,NA +2908,"96-09-3","DTXSID2021286","Styrene oxide","AWMVMTVKBNGEAK-UHFFFAOYSA-N","C1OC1C1=CC=CC=C1","C8H8O","120.151","129",NA,NA,NA +2909,"57-50-1","DTXSID2021288","Sucrose","CZMRCDWAGMRECN-UGDNZRGBSA-N","OC[C@H]1O[C@@](CO)(O[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@@H](O)[C@@H]1O","C12H22O11","342.29700000000003","460",NA,NA,NA +2910,"126-14-7","DTXSID3042423","Sucrose octaacetate","ZIJKGAXBCRWEOL-SAXBRCJISA-N","CC(=O)OC[C@H]1O[C@@](COC(C)=O)(O[C@H]2O[C@H](COC(C)=O)[C@@H](OC(C)=O)[C@H](OC(C)=O)[C@H]2OC(C)=O)[C@@H](OC(C)=O)[C@@H]1OC(C)=O","C28H38O19","678.59299999999996","88",NA,NA,NA +2911,"599-79-1","DTXSID0021256","Sulfasalazine","NCEXYHBECQHGNR-QZQOTICOSA-N","OC(=O)C1=CC(=CC=C1O)\N=N\C1=CC=C(C=C1)S(=O)(=O)NC1=NC=CC=C1","C18H14N4O5S","398.39","298",NA,NA,NA +2912,"122836-35-5","DTXSID6032645","Sulfentrazone","OORLZFUTLGXMEF-UHFFFAOYSA-N","CC1=NN(C(=O)N1C(F)F)C1=CC(NS(C)(=O)=O)=C(Cl)C=C1Cl","C11H10Cl2F2N4O3S","387.18","72","pesticide","Unclassified","Sulfentrazone is a member of the class of triazoles that is 5-oxo-1,2,4-triazole which is substituted at positions 1, 3, and 4 by 2,4-dichloro-5-[(methylsulfonyl)amino]phenyl, methyl, and difluoromethyl groups, respectively. A protoporphyrinogen oxidase inhibitor, it is used as a herbicide to control broad-leaved weeds in soya and tobacco crops. Not approved for use within the European Union. It has a role as an EC 1.3.3.4 (protoporphyrinogen oxidase) inhibitor, a herbicide and an agrochemical. It is a sulfonamide, a dichlorobenzene, an organofluorine compound and a member of triazoles." +4368,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +2913,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +2347,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +2923,"288104-79-0","DTXSID2047357","Surinabant","HMXDWDSNPRNUKI-UHFFFAOYSA-N","CCC1=C(N(N=C1C(=O)NN1CCCCC1)C1=CC=C(Cl)C=C1Cl)C1=CC=C(Br)C=C1","C23H23BrCl2N4O","522.27","38",NA,NA,NA +2924,"87-90-1","DTXSID2026523","Symclosene","YRIZYWQGELRKNT-UHFFFAOYSA-N","ClN1C(=O)N(Cl)C(=O)N(Cl)C1=O","C3Cl3N3O3","232.4","130",NA,NA,NA +2959,"10540-29-1","DTXSID1034187","Tamoxifen","NKANXQFJJICGDU-QPLCGJKRSA-N","CC\C(=C(/C1=CC=CC=C1)C1=CC=C(OCCN(C)C)C=C1)C1=CC=CC=C1","C26H29NO","371.524","268","pharmacological","Unclassified","Tamoxifen is a nonsteroidal antiestrogen that is widely used in the treatment and prevention of breast cancer. Long term tamoxifen therapy has been associated with development of fatty liver, steatohepatitis, cirrhosis, and rare instances of clinically apparent acute liver injury." +2960,"54965-24-1","DTXSID8021301","Tamoxifen citrate","FQZYTYWMLGAPFJ-OQKDUQJOSA-N","OC(=O)CC(O)(CC(O)=O)C(O)=O.CC\C(=C(/C1=CC=CC=C1)C1=CC=C(OCCN(C)C)C=C1)C1=CC=CC=C1","C32H37NO8","563.64700000000005","153",NA,NA,"Tamoxifen citrate is a citrate salt. It has a role as an angiogenesis inhibitor and an anticoronaviral agent. It contains a tamoxifen." +2961,"1401-55-4","DTXSID2026076","Tannic acid","-","-","-","-","-",NA,NA,NA +2973,"107534-96-3","DTXSID9032113","Tebuconazole","PXMNMQRDXWABCY-UHFFFAOYSA-N","CC(C)(C)C(O)(CCC1=CC=C(Cl)C=C1)CN1C=NC=N1","C16H22ClN3O","307.82","120","pesticide","Unclassified","1-(4-chlorophenyl)-4,4-dimethyl-3-(1H-1,2,4-triazol-1-ylmethyl)pentan-3-ol is a tertiary alcohol that is pentan-3-ol substituted by a 4-chlorophenyl, methyl, methyl, and a 1H-1,2,4-triazol-1-ylmethyl at positions 1, 4, 4 and 3 respectively. It is a member of monochlorobenzenes, a member of triazoles and a tertiary alcohol." +2974,"112410-23-8","DTXSID4034948","Tebufenozide","QYPNKSZPJQQLRK-UHFFFAOYSA-N","CCC1=CC=C(C=C1)C(=O)NN(C(=O)C1=CC(C)=CC(C)=C1)C(C)(C)C","C22H28N2O2","352.47800000000001","89",NA,NA,NA +2975,"119168-77-3","DTXSID0034223","Tebufenpyrad","ZZYSLNWGKKDOML-UHFFFAOYSA-N","CCC1=NN(C)C(C(=O)NCC2=CC=C(C=C2)C(C)(C)C)=C1Cl","C18H24ClN3O","333.86","85","pesticide","Unclassified","Tebufenpyrad is a pyrazole acaricide and a pyrazole insecticide. It has a role as a mitochondrial NADH:ubiquinone reductase inhibitor. It is a white solid chemical with a slight aromatic smell and soluble in water and organic solvents." +2976,"96182-53-5","DTXSID1032482","Tebupirimfos","AWYOMXWDGWUJHS-UHFFFAOYSA-N","CCOP(=S)(OC(C)C)OC1=CN=C(N=C1)C(C)(C)C","C13H23N2O3PS","318.37","51","pesticide","Unclassified","Tebupirimfos is an organic thiophosphate and an organothiophosphate insecticide. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor. It derives from a 2-tert-butylpyrimidin-5-ol." +2977,"34014-18-1","DTXSID3024316","Tebuthiuron","HBPDKDSFLXWOAE-UHFFFAOYSA-N","CNC(=O)N(C)C1=NN=C(S1)C(C)(C)C","C9H16N4OS","228.31","130","pesticide","Unclassified","Tebuthiuron is an organonitrogen heterocyclic compound and an organosulfur heterocyclic compound." +2978,"79538-32-2","DTXSID5032577","Tefluthrin","ZFHGXWPMULPQSE-WTKPLQERSA-N","CC1=C(F)C(F)=C(COC(=O)C2C(\C=C(/Cl)C(F)(F)F)C2(C)C)C(F)=C1F","C17H14ClF7O2","418.74","37","pesticide","Unclassified","2,3,5,6-tetrafluoro-4-methylbenzyl 3-[(1Z)-2-chloro-3,3,3-trifluoroprop-1-en-1-yl]-2,2-dimethylcyclopropanecarboxylate is a cyclopropanecarboxylate ester resulting from the formal condensation of the carboxy group of 3-[(1Z)-2-chloro-3,3,3-trifluoroprop-1-en-1-yl]-2,2-dimethylcyclopropanecarboxylic acid with the hydroxy group of 2,3,5,6-tetrafluoro-4-methylbenzyl alcohol. It is a cyclopropanecarboxylate ester, an organofluorine compound and an organochlorine compound." +2982,"149979-41-9","DTXSID7034252","Tepraloxydim","IOYNQIMAUDJVEI-ZFNPBRLTSA-N","CCC(=NOC\C=C\Cl)C1=C(O)CC(CC1=O)C1CCOCC1","C17H24ClNO4","341.83","9",NA,NA,NA +2983,"5902-51-2","DTXSID8024317","Terbacil","NBQCNZYJJMBDKY-UHFFFAOYSA-N","CC1=C(Cl)C(=O)N(C(=O)N1)C(C)(C)C","C9H13ClN2O2","216.67","78","pesticide","Unclassified","Terbacil appears as colorless crystals. Non corrosive. Used as an herbicide." +2984,"13071-79-9","DTXSID2022254","Terbufos","XLNZEKHULJKQBA-UHFFFAOYSA-N","CCOP(=S)(OCC)SCSC(C)(C)C","C9H21O2PS3","288.42","73","pesticide","Unclassified","Terbufos is an organic thiophosphate, an organothiophosphate insecticide and an organosulfur compound. It has a role as an EC 3.1.1.7 (acetylcholinesterase) inhibitor, an agrochemical and a nematicide." +2985,"5915-41-3","DTXSID4027608","Terbutylazine","FZXISNSWEXTPMF-UHFFFAOYSA-N","CCNC1=NC(NC(C)(C)C)=NC(Cl)=N1","C9H16ClN5","229.71","104","pesticide","Unclassified","Terbutylazine is a diamino-1,3,5-triazine that is N-tert-butyl-N'-methyl-1,3,5-triazine-2,4-diamine substituted by a chloro group at position 6. It has a role as a herbicide, an environmental contaminant and a xenobiotic. It is a diamino-1,3,5-triazine and a chloro-1,3,5-triazine. It derives from a 6-chloro-1,3,5-triazine-2,4-diamine." +2987,"614-45-9","DTXSID9024699","tert-Butyl perbenzoate","GJBRNHKUVLOCEB-UHFFFAOYSA-N","CC(C)(C)OOC(=O)C1=CC=CC=C1","C11H14O3","194.23","83",NA,NA,NA +2988,"98-06-6","DTXSID3047138","tert-Butylbenzene","YTZKOQUCBOVLHL-UHFFFAOYSA-N","CC(C)(C)C1=CC=CC=C1","C10H14","134.22200000000001","134",NA,NA,NA +2989,"1948-33-0","DTXSID6020220","tert-Butylhydroquinone","BGNXCDMCOKJUMV-UHFFFAOYSA-N","CC(C)(C)C1=CC(O)=CC=C1O","C10H14O2","166.22","188",NA,NA,"2-tert-butylhydroquinone is a member of the class of hydroquinones in which one of the ring hydrogens of hydroquinone is replaced by a tert-butyl group. It has a role as a food antioxidant." +2990,"56803-37-3","DTXSID6024701","tert-Butylphenyl diphenyl phosphate","-","CC(C)(C)*.O=P(OC1=CC=CC=C1)(OC1=CC=CC=C1)OC1=CC=CC=C1 |c:9,11,17,19,25,27,t:7,15,23,lp:5:2,7:2,14:2,21:2,m:4:11.12.13|","-","-","-",NA,NA,NA +2992,"57-85-2","DTXSID9036515","Testosterone propionate","PDMMFKSKQVNJMI-BLQWBTBKSA-N","CCC(=O)O[C@H]1CC[C@H]2[C@@H]3CCC4=CC(=O)CC[C@]4(C)[C@H]3CC[C@]12C","C22H32O3","344.495","126",NA,NA,NA +2994,"4162-45-2","DTXSID4038922","Tetrabromobisphenol A bis(2-hydroxyethyl) ether","RVHUMFJSCJBNGS-UHFFFAOYSA-N","CC(C)(C1=CC(Br)=C(OCCO)C(Br)=C1)C1=CC(Br)=C(OCCO)C(Br)=C1","C19H20Br4O4","631.98099999999999","59",NA,NA,NA +2997,"632-79-1","DTXSID6026084","4,5,6,7-Tetrabromo-1,3-Isobenzofurandione","QHWKHLYUUZGSCW-UHFFFAOYSA-N","BrC1=C2C(=O)OC(=O)C2=C(Br)C(Br)=C1Br","C8Br4O3","463.70100000000002","100",NA,NA,NA +2999,"117-08-8","DTXSID7026102","Tetrachlorophthalic anhydride","AUHHYELHRWCWEZ-UHFFFAOYSA-N","ClC1=C2C(=O)OC(=O)C2=C(Cl)C(Cl)=C1Cl","C8Cl4O3","285.89","109",NA,NA,NA +3000,"112281-77-3","DTXSID8034956","Tetraconazole","LQDARGUHUSPFNL-UHFFFAOYSA-N","FC(F)C(F)(F)OCC(CN1C=NC=N1)C1=C(Cl)C=C(Cl)C=C1","C13H11Cl2F4N3O","372.14","61","pesticide","Unclassified","1-[2-(2,4-dichlorophenyl)-3-(1,1,2,2-tetrafluoroethoxy)propyl]1,2,4-triazole is a member of the class of triazoles that is 1,2,4-triazole substituted at position 1 by a 2-(2,4-dichlorophenyl)-3-(1,1,2,2-tetrafluoroethoxy)propyl group. It is a member of triazoles, a dichlorobenzene, an ether and an organofluorine compound." +3001,"60-54-8","DTXSID7023645","Tetracycline","OFVLGDICTFRJMM-WESIUVDSSA-N","[H][C@@]12C[C@@]3([H])C(=C(O)[C@]1(O)C(=O)C(C(N)=O)=C(O)[C@H]2N(C)C)C(=O)C1=C(C=CC=C1O)[C@@]3(C)O","C22H24N2O8","444.44","198",NA,NA,NA +3002,"97-77-8","DTXSID1021322","Tetraethylthiuram disulfide","AUZONCFQVSMFAP-UHFFFAOYSA-N","CCN(CC)C(=S)SSC(=S)N(CC)CC","C10H20N2S4","296.52","274",NA,NA,"Disulfiram is an organic disulfide that results from the formal oxidative dimerisation of N,N-diethyldithiocarbamic acid. A multi-enzyme inhibitor that is used in alcohol aversion therapy and also exhibits anticancer properties. It has a role as an EC 1.2.1.3 [aldehyde dehydrogenase (NAD(+))] inhibitor, an angiogenesis inhibitor, an EC 3.1.1.8 (cholinesterase) inhibitor, an EC 3.1.1.1 (carboxylesterase) inhibitor, an EC 5.99.1.2 (DNA topoisomerase) inhibitor, a fungicide, an apoptosis inducer, a NF-kappaB inhibitor and an antineoplastic agent." +3004,"124-64-1","DTXSID5021330","Tetramethylolphosphonium chloride","AKXUUJCMWZFYMV-UHFFFAOYSA-M","[Cl-].OC[P+](CO)(CO)CO","C4H12ClO4P","190.56","67",NA,NA,"Tetrakis(hydroxymethyl)phosphonium chloride is a clear slightly viscous,colorless to yellow liquid (20% H2O solution)." +3005,"55566-30-8","DTXSID0021331","Tetrakis(hydroxymethyl)phosphonium sulfate","YIEDHPBKGZGLIK-UHFFFAOYSA-L","[O-]S([O-])(=O)=O.OC[P+](CO)(CO)CO.OC[P+](CO)(CO)CO","C8H24O12P2S","406.28","67",NA,NA,"Bis[tetrakis(hydroxymethyl)phosphanium] sulfate, also known as Tetrakis(hydroxymethyl)phosphonium sulfate, is a clear colorless viscous liquid used in many industrial and consumer manufacturing applications." +3006,"7696-12-0","DTXSID6032649","Tetramethrin","CXBMCYHAMVGWJQ-UHFFFAOYSA-N","CC(C)=CC1C(C(=O)OCN2C(=O)C3=C(CCCC3)C2=O)C1(C)C","C19H25NO4","331.41199999999998","87","pesticide","Unclassified","Tetramethrin is a phthalimide insecticide, a member of maleimides and a cyclopropanecarboxylate ester. It has a role as a pyrethroid ester insecticide. It derives from a chrysanthemic acid." +3007,"50-35-1","DTXSID9022524","Thalidomide","UEJJHQNACJXSKW-UHFFFAOYSA-N","O=C1N(C2CCC(=O)NC2=O)C(=O)C2=CC=CC=C12","C13H10N2O4","258.233","313",NA,NA,NA +3008,"83-67-0","DTXSID9026132","Theobromine","YAPQBXQYLJRXSA-UHFFFAOYSA-N","CN1C=NC2=C1C(=O)NC(=O)N2C","C7H8N4O2","180.167","292","pharmacological","Unclassified","Theobromine is a dimethylxanthine having the two methyl groups located at positions 3 and 7. A purine alkaloid derived from the cacao plant, it is found in chocolate, as well as in a number of other foods, and is a vasodilator, diuretic and heart stimulator. It has a role as an adenosine receptor antagonist, a food component, a plant metabolite, a human blood serum metabolite, a mouse metabolite, a vasodilator agent and a bronchodilator agent." +3009,"58-55-9","DTXSID5021336","Theophylline","ZFXYFBGIUFBOJW-UHFFFAOYSA-N","CN1C2=C(NC=N2)C(=O)N(C)C1=O","C7H8N4O2","180.167","364",NA,NA,"Theophylline is a dimethylxanthine having the two methyl groups located at positions 1 and 3. It is structurally similar to caffeine and is found in green and black tea. It has a role as a vasodilator agent, a bronchodilator agent, a muscle relaxant, an EC 3.1.4.* (phosphoric diester hydrolase) inhibitor, an anti-asthmatic drug, an anti-inflammatory agent, an immunomodulator, an adenosine receptor antagonist, a drug metabolite, a fungal metabolite and a human blood serum metabolite." +3012,"148-79-8","DTXSID0021337","Thiabendazole","WJCNZQLZVWNLKY-UHFFFAOYSA-N","N1C2=C(C=CC=C2)N=C1C1=CSC=N1","C10H7N3S","201.25","273","pharmacological;pesticide","Unclassified","2-(1,3-Thiazol-4-yl)-1H-benzimidazole, also known as Thiabendazole, is a benzimidazole derivative with anthelminthic property. Although the mechanism of action has not been fully elucidated, thiabendazole inhibits the helminth-specific mitochondrial enzyme fumarate reductase, thereby inhibiting the citric acid cycle, mitochondrial respiration and subsequent production of ATP, ultimately leading to helminth's death. In addition, it has been suggested that thiabendazole may lead to inhibition of microtubule polymerization by binding to beta-tubulin and has an overt ovicidal effect with regard to some trichostrongylids." +3013,"111988-49-9","DTXSID7034961","Thiacloprid","HOKKPVIRMVDYPB-UVTDQMKNSA-N","ClC1=CC=C(CN2CCS\C2=N/C#N)C=N1","C10H9ClN4S","252.72","109",NA,NA,NA +3014,"153719-23-4","DTXSID2034962","Thiamethoxam","NWWZPOKUUAIXIW-UHFFFAOYSA-N","CN1COCN(CC2=CN=C(Cl)S2)C1=N[N+]([O-])=O","C8H10ClN5O3S","291.70999999999998","42",NA,NA,NA +3015,"95-15-8","DTXSID2052736","Benzothiophene","FCEHBMOGCRZNNI-UHFFFAOYSA-N","S1C=CC2=C1C=CC=C2","C8H6S","134.19999999999999","284",NA,NA,"Benzothiophene is an aromatic organic compound with a molecular formula C8H6S and an odor similar to naphthalene (mothballs). It occurs naturally as a constituent of petroleum-related deposits such as lignite tar. Benzothiophene has no household use. In addition to benzo[b]thiophene, a second isomer is known: benzo[c]thiophene." +3016,"117718-60-2","DTXSID1032488","Thiazopyr","YIJZJEYQBAAWRJ-UHFFFAOYSA-N","COC(=O)C1=C(CC(C)C)C(C2=NCCS2)=C(N=C1C(F)F)C(F)(F)F","C16H17F5N2O2S","396.38","52","pesticide","Unclassified","Herbicide for preemergent weeds, annual grasses and certain broadleaf weeds; considered carcinogenic." +3017,"51707-55-2","DTXSID0032651","Thidiazuron","HFCYZXMHUIHAQI-UHFFFAOYSA-N","O=C(NC1=CN=NS1)NC1=CC=CC=C1","C9H8N4OS","220.25","117",NA,NA,NA +3018,"28249-77-6","DTXSID6024337","Thiobencarb","QHTQREMOGMZHJV-UHFFFAOYSA-N","CCN(CC)C(=O)SCC1=CC=C(Cl)C=C1","C12H16ClNOS","257.77999999999997","71","pesticide","Unclassified","Thiobencarb is a pale yellow to brownish yellow liquid. Non corrosive. Used as an herbicide." +3019,"59669-26-0","DTXSID0032578","Thiodicarb","XDOTVMNBCQVZKG-MKICQXMISA-N","CS\C(C)=N\OC(=O)N(C)SN(C)C(=O)O\N=C(/C)SC","C10H18N4O4S3","354.46","35",NA,NA,NA +3020,"23564-05-8","DTXSID1024338","Thiophanate-methyl","QGHREAKMXXNCOA-UHFFFAOYSA-N","COC(=O)NC(=S)NC1=C(NC(=S)NC(=O)OC)C=CC=C1","C12H14N4O4S2","342.39","127",NA,NA,NA +3022,"137-26-8","DTXSID5021332","Thiram","KUAZQDVKQLNFPE-UHFFFAOYSA-N","CN(C)C(=S)SSC(=S)N(C)C","C6H12N2S4","240.42","196",NA,NA,"Thiram is an organic disulfide that results from the formal oxidative dimerisation of N,N-dimethyldithiocarbamic acid. It is widely used as a fungicidal seed treatment. It has a role as an antibacterial drug, an antiseptic drug and an antifungal agrochemical. It contains a dimethyldithiocarbamate. It derives from a dimethyldithiocarbamic acid." +3023,"89-83-8","DTXSID6034972","Thymol","MGSRCZKZVOBKFT-UHFFFAOYSA-N","CC(C)C1=CC=C(C)C=C1O","C10H14O","150.221","204","pharmacological","Unclassified","A phenol obtained from thyme oil or other volatile oils. It is used as a stabilizer in pharmaceutic preparations. It has been used for its antiseptic, antibacterial, and antifungal actions, and was formerly used as a vermifuge." +3041,"51-24-1","DTXSID2045232","Tiratricol","UOWZUVNAGUAEQC-UHFFFAOYSA-N","OC(=O)CC1=CC(I)=C(OC2=CC(I)=C(O)C=C2)C(I)=C1","C14H9I3O4","621.93499999999995","139",NA,NA,NA +3045,"36673-16-2","DTXSID7044928","Isopropyl triethanolamine titanate","XAVMMNWPOYCFPU-UHFFFAOYSA-N","CC(C)O[Ti](OCCN(CCO)CCO)(OCCN(CCO)CCO)OC(C)C","C18H42N2O8Ti","462.40699999999998","19",NA,NA,NA +3052,"5613-46-7","DTXSID8047973","4,4'-Propane-2,2-diylbis(2,6-dimethylphenol)","ODJUOZPKKHIEOZ-UHFFFAOYSA-N","CC1=CC(=CC(C)=C1O)C(C)(C)C1=CC(C)=C(O)C(C)=C1","C19H24O2","284.399","93",NA,NA,NA +3054,"129298-91-5","DTXSID0041141","o-(Chloroacetylcarbamoyl)fumagillol","MSHZHSPISPJWHW-PVDLLORBSA-N","CO[C@@H]1[C@@H](CC[C@]2(CO2)[C@H]1[C@@]1(C)O[C@@H]1CC=C(C)C)OC(=O)NC(=O)CCl","C19H28ClNO6","401.88","58",NA,NA,NA +3055,"1156-19-0","DTXSID3021358","Tolazamide","OUDSBRTVNLOZBN-UHFFFAOYSA-N","CC1=CC=C(C=C1)S(=O)(=O)NC(=O)NN1CCCCCC1","C14H21N3O3S","311.39999999999998","259",NA,NA,"Tolazamide is an intermediate-acting, first-generation sulfonylurea with hypoglycemic activity. Tolazamide is converted into five major metabolites that are excreted into the urine. Tolazamide is more potent than tolbutamide and similar in potency to chlorpropamide on a milligram basis. This agent may cause cholestatic jaundice." +3056,"108-88-3","DTXSID7021360","Toluene","YXFVVABEGXRONW-UHFFFAOYSA-N","CC1=CC=CC=C1","C7H8","92.141000000000005","-",NA,NA,NA +3058,"584-84-9","DTXSID7026156","Toluene 2,4-diisocyanate","DVKJHBMWWAPEIU-UHFFFAOYSA-N","CC1=CC=C(C=C1N=C=O)N=C=O","C9H6N2O2","174.15899999999999","128",NA,NA,NA +3090,"87820-88-0","DTXSID1034973","Tralkoxydim","DQFPEYARZIQXRM-UHFFFAOYSA-N","CCON=C(CC)C1=C(O)CC(CC1=O)C1=C(C)C=C(C)C=C1C","C20H27NO3","329.44","33",NA,NA,NA +3091,"572-41-8","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +3093,"xs189003-92-7","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +3094,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +2640,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +1992,"68937-41-7","DTXSID4028880","Triphenyl phosphates isopropylated","-","-","-","-","-",NA,NA,NA +3096,"102-76-1","DTXSID3026691","Triacetin","URAYPUMNDPQOKB-UHFFFAOYSA-N","CC(=O)OCC(COC(C)=O)OC(C)=O","C9H14O6","218.20500000000001","181",NA,NA,NA +3097,"43121-43-3","DTXSID3023897","Triadimefon","WURBVZBTWMNKQT-UHFFFAOYSA-N","CC(C)(C)C(=O)C(OC1=CC=C(Cl)C=C1)N1C=NC=N1","C14H16ClN3O2","293.75","131","pesticide","Unclassified","1-(4-chlorophenoxy)-3,3-dimethyl-1-(1,2,4-triazol-1-yl)butan-2-one is a member of the class of triazoles that is 1-hydroxy-3,3-dimethyl-1-(1,2,4-triazol-1-yl)butan-2-one in which the hydroxyl hydrogen is replaced by a 4-chlorophenyl group. It is a member of triazoles, a member of monochlorobenzenes, an aromatic ether, a ketone and a hemiaminal ether." +3098,"55219-65-3","DTXSID0032493","Triadimenol","BAZVSMNPJJMILC-UHFFFAOYSA-N","CC(C)(C)C(O)C(OC1=CC=C(Cl)C=C1)N1C=NC=N1","C14H18ClN3O2","295.77","100","pesticide","Unclassified","Triadimenol is a member of the class of triazoles that is 3,3-dimethyl-1-(1,2,4-triazol-1-yl)butane-1,2-diol substituted at position O1 by a 4-chlorophenyl group. A fungicide for cereals, beet and brassicas used to control a range of diseases including powdery mildew, rusts, bunts and smuts. It has a role as a sterol 14alpha-demethylase inhibitor (EC 1.14.13.70), a xenobiotic metabolite and an antifungal agrochemical. It is an aromatic ether, a member of monochlorobenzenes, a conazole fungicide, a triazole fungicide, a secondary alcohol and a hemiaminal ether." +3099,"2303-17-5","DTXSID5024344","Tri-allate","MWBPRDONLNQCFV-UHFFFAOYSA-N","CC(C)N(C(C)C)C(=O)SCC(Cl)=C(Cl)Cl","C10H16Cl3NOS","304.64999999999998","95","pesticide","Unclassified","Triallate, [solid] appears as colorless crystals or oily amber liquid. Toxic by inhalation, ingestion or skin absorption. Used as a pesticide." +3100,"124-94-7","DTXSID1040742","Triamcinolone","GFNANZIMVAIWHM-OBYCQNJPSA-N","C[C@]12C[C@H](O)[C@@]3(F)[C@@H](CCC4=CC(=O)C=C[C@]34C)[C@@H]1C[C@@H](O)[C@]2(O)C(=O)CO","C21H27FO6","394.43900000000002","153",NA,NA,NA +3101,"78-48-8","DTXSID1024174","Tribufos","ZOKXUAHZSKEQSS-UHFFFAOYSA-N","CCCCSP(=O)(SCCCC)SCCCC","C12H27OPS3","314.5","84","pesticide","Unclassified","Tribufos is a colorless to pale yellow liquid with a skunk-like odor; it is used only as a defoliant (a chemical that removes leaves) for cotton plants. Removing the leaves keeps certain pests that may be found on the leaves from damaging the cotton before it is picked." +3102,"126-73-8","DTXSID3021986","Tributyl phosphate","STCOOQWBFONSKY-UHFFFAOYSA-N","CCCCOP(=O)(OCCCC)OCCCC","C12H27O4P","266.31799999999998","127","industrial;flameRetardant","OPFR","Tri-n-butyl phosphate, Bu3-P, TBP. Industrial chemical; used as a plasticizer, in hydraulic fluid, as a solvent and extractant for metal ions, and as a heat exchange agent. Tributyl phosphate is an odorless colorless to yellow liquid. Toxic by ingestion and inhalation." +3103,"102-82-9","DTXSID4026183","Tributylamine","IMFACGCPASFAPR-UHFFFAOYSA-N","CCCCN(CCCC)CCCC","C12H27N","185.35499999999999","115",NA,NA,NA +3104,"1461-22-9","DTXSID3027403","Tributyltin chloride","GCTFWCDSFPMHHS-UHFFFAOYSA-M","CCCC[Sn](Cl)(CCCC)CCCC","C12H27ClSn","325.51","102",NA,NA,"Tributyltin chloride is an inorganic molecular entity." +3106,"2155-70-6","DTXSID9035204","Tributyltin methacrylate","LPUCKLOWOWADAC-UHFFFAOYSA-M","CCCC[Sn](CCCC)(CCCC)OC(=O)C(C)=C","C16H32O2Sn","375.14","21",NA,NA,NA +3107,"52-68-6","DTXSID0021389","Trichlorfon","NFACJZMKEDPNKN-UHFFFAOYSA-N","COP(=O)(OC)C(O)C(Cl)(Cl)Cl","C4H8Cl3O4P","257.43","135","pesticide","Unclassified","Dimethyl (2,2,2-trichloro-1-hydroxyethyl)phosphonate, also known as Trichlorfon, is a synthetic organochlorophosphate compound and organophosphate acetylcholinesterase inhibitor that is used as a pesticide. It is characterized as a white crystalline or colorless to yellow or pink waxy solid, and exposure occurs by inhalation, ingestion, or contact." +3108,"76-03-9","DTXSID1021378","Trichloroacetic acid","YNJBWRMUSHSURL-UHFFFAOYSA-N","OC(=O)C(Cl)(Cl)Cl","C2HCl3O2","163.38","225",NA,NA,NA +3110,"101-20-2","DTXSID4026214","Triclocarban","ICUTUKXCWQYESQ-UHFFFAOYSA-N","ClC1=CC=C(NC(=O)NC2=CC=C(Cl)C(Cl)=C2)C=C1","C13H9Cl3N2O","315.58","134",NA,NA,NA +3111,"55335-06-3","DTXSID0032497","Triclopyr","REEQLXCGVXDJSQ-UHFFFAOYSA-N","OC(=O)COC1=C(Cl)C=C(Cl)C(Cl)=N1","C7H4Cl3NO3","256.45999999999998","91",NA,NA,NA +3112,"3380-34-5","DTXSID5032498","Triclosan","XEFQLINVKFYRCS-UHFFFAOYSA-N","OC1=C(OC2=CC=C(Cl)C=C2Cl)C=CC(Cl)=C1","C12H7Cl3O2","289.54000000000002","252","pharmacological;personalCare;industrial","Unclassified","Triclosan is an aromatic ether that is phenol which is substituted at C-5 by a chloro group and at C-2 by a 2,4-dichlorophenoxy group. It is widely used as a preservative and antimicrobial agent in personal care products such as soaps, skin creams, toothpaste and deodorants as well as in household items such as plastic chopping boards, sports equipment and shoes. It has a role as an antibacterial agent, a fungicide, an EC 1.5.1.3 (dihydrofolate reductase) inhibitor, an antimalarial, an EC 1.3.1.9 [enoyl-[acyl-carrier-protein] reductase (NADH)] inhibitor, a xenobiotic, a persistent organic pollutant and a drug allergen. It is a member of phenols, an aromatic ether, a dichlorobenzene and a member of monochlorobenzenes." +3114,"1330-78-5","DTXSID4021391","Tris(methylphenyl) phosphate","-","-","-","-","-",NA,NA,"A mixture of isomeric tritolyl phosphates. Used in the sterilization of certain surgical instruments and in many industrial processes." +3116,"24602-86-6","DTXSID3041376","Tridemorph","YTOPFCCWCSOHFV-UHFFFAOYSA-N","CCCCCCCCCCCCCN1CC(C)OC(C)C1","C19H39NO","297.52699999999999","77","pesticide","Unclassified","2,6-dimethyl-4-tridecylmorpholine is a member of the class of morpholines that is 2,6-dimethylmorpholine in which the hydrogen attached to the nitrogen is replaced by a tridecyl group. The configuration at positions 2 and 6 is unknown or unspecified. It has a role as an antifungal agrochemical. It is a member of morpholines and a tertiary amino compound." +3117,"102-71-6","DTXSID9021392","Triethanolamine","GSEJCLTVZPLZKY-UHFFFAOYSA-N","OCCN(CCO)CCO","C6H15NO3","149.19","356",NA,NA,NA +3118,"2943-75-1","DTXSID2029246","Triethoxyoctylsilane","MSRJTTSHWYDFIU-UHFFFAOYSA-N","CCCCCCCC[Si](OCC)(OCC)OCC","C14H32O3Si","276.49200000000002","99",NA,NA,NA +3119,"77-93-0","DTXSID0040701","Triethyl citrate","DOOTYTYQINUNNV-UHFFFAOYSA-N","CCOC(=O)CC(O)(CC(=O)OCC)C(=O)OCC","C12H20O7","276.28500000000003","110",NA,NA,NA +3120,"78-40-0","DTXSID8026228","Triethyl phosphate","DQWPFSLDHJDLRL-UHFFFAOYSA-N","CCOP(=O)(OCC)OCC","C6H15O4P","182.15600000000001","124","industrial;pesticide;flameRetardant","OPFR","Triethyl phosphate is a trialkyl phosphate that is the triethy ester derivative of phosphoric acid. It derives from an ethanol. Triethyl phosphate appears as a colorless, corrosive liquid. Combustible. Slowly dissolves in water and sinks in water. Severely irritates skin, eyes and mucous membranes." +3121,"112-27-6","DTXSID4021393","Triethylene glycol","ZIBGPFATKBEMQZ-UHFFFAOYSA-N","OCCOCCOCCO","C6H14O4","150.17400000000001","1747",NA,NA,NA +3122,"94-28-0","DTXSID3026564","Triethylene glycol bis(2-ethylhexanoate)","FRQDZJMEHSJOPU-UHFFFAOYSA-N","CCCCC(CC)C(=O)OCCOCCOCCOC(=O)C(CC)CCCC","C22H42O6","402.572","62",NA,NA,NA +3123,"111-21-7","DTXSID3026223","Triethylene glycol diacetate","OVOUKWFJRHALDD-UHFFFAOYSA-N","CC(=O)OCCOCCOCCOC(C)=O","C10H18O6","234.24799999999999","65",NA,NA,NA +3124,"112-49-2","DTXSID8026224","Triethylene glycol dimethyl ether","YFNKIDBQEZZDLK-UHFFFAOYSA-N","COCCOCCOCCOC","C8H18O4","178.22800000000001","178",NA,NA,NA +3125,"141517-21-7","DTXSID4032580","Trifloxystrobin","ONCZDRURRATYFI-GOKCYMHRSA-N","CON=C(C(=O)OC)C1=C(CON=C(C)C2=CC(=CC=C2)C(F)(F)F)C=CC=C1","C20H19F3N2O4","408.37700000000001","27","pesticide","Unclassified","Endocrine Disruption Potential. Significant Estrogen and Androgen Receptor activity seen." +3126,"199119-58-9","DTXSID8040222","Trifloxysulfuron-sodium","UFEIWEXHHOXPGP-UHFFFAOYSA-M","[Na+].COC1=CC(OC)=NC(NC(=O)[N-]S(=O)(=O)C2=NC=CC=C2OCC(F)(F)F)=N1","C14H13F3N5NaO6S","459.33","40",NA,NA,NA +3127,"68694-11-1","DTXSID2032500","Triflumizole","HSMVPDGQOIQYSR-KGENOOAVSA-N","CCCOC\C(=N/C1=C(C=C(Cl)C=C1)C(F)(F)F)N1C=CN=C1","C15H15ClF3N3O","345.75","90","pesticide","Unclassified","Triflumizole is a carboxamidine resulting from the formal condensation of the amino group of 4-chloro-2-(trifluoromethyl)aniline with the oxygen of the acetyl group of N-(propoxyacetyl)imidazole. A sterol demethylation inhibitor, it is used as a fungicide for the control of powdery mildew, scab and other diseases on a variety of crops. It has a role as an EC 1.14.13.70 (sterol 14alpha-demethylase) inhibitor and an antifungal agrochemical. It is a member of monochlorobenzenes, a member of imidazoles, a member of (trifluoromethyl)benzenes, a carboxamidine, an ether, a conazole fungicide and an imidazole fungicide." +3128,"1582-09-8","DTXSID4021395","Trifluralin","ZSDSQXJSNMTJDA-UHFFFAOYSA-N","CCCN(CCC)C1=C(C=C(C=C1[N+]([O-])=O)C(F)(F)F)[N+]([O-])=O","C13H16F3N3O4","335.28300000000002","135","pesticide","Unclassified","Trifluralin is a substituted aniline that is N,N-dipropylaniline substituted by a nitro groups at positions 2 and 6 and a trifluoromethyl group at position 4. It is an agrochemical used as a pre-emergence herbicide. It has a role as an environmental contaminant, a xenobiotic, a herbicide and an agrochemical. It is a C-nitro compound, a member of (trifluoromethyl)benzenes and a substituted aniline." +3129,"2451-62-9","DTXSID4026262","Tris(2,3-epoxypropyl)isocyanurate","OUPZKGBUJRBPGC-UHFFFAOYSA-N","O=C1N(CC2CO2)C(=O)N(CC2CO2)C(=O)N1CC1CO1","C12H15N3O6","297.267","117",NA,NA,NA +3130,"126-71-6","DTXSID8040698","Triisobutyl phosphate","HRKAMJBPFPHCSD-UHFFFAOYSA-N","CC(C)COP(=O)(OCC(C)C)OCC(C)C","C12H27O4P","266.31799999999998","86",NA,NA,NA +3131,"53894-23-8","DTXSID5028033","Triisononyl trimellitate","-","-","-","-","-",NA,NA,NA +3133,"512-56-1","DTXSID1021403","Trimethyl phosphate","WVLBCYQITXONBZ-UHFFFAOYSA-N","COP(=O)(OC)OC","C3H9O4P","140.07499999999999","118",NA,NA,NA +3135,"563-04-2","DTXSID4026216","Tri-m-tolyl phosphate","RMLPZKRPSQVRAB-UHFFFAOYSA-N","CC1=CC=CC(OP(=O)(OC2=CC(C)=CC=C2)OC2=CC(C)=CC=C2)=C1","C21H21O4P","368.36900000000003","69","industrial;flameRetardant","Unclassified","Wax. When mixed with its isomers (ortho and meta ), the result is a colorless, odorless liquid." +3136,"78-30-8","DTXSID6032192","Tri-o-cresyl phosphate","YSMRWXYRXBRSND-UHFFFAOYSA-N","CC1=C(OP(=O)(OC2=C(C)C=CC=C2)OC2=C(C)C=CC=C2)C=CC=C1","C21H21O4P","368.36900000000003","77","industrial;flameRetardant","OPFR","Tricresyl phosphate (TCP), is a mixture of three isomeric organophosphate compounds most notably used as a fire retardant and in manufacturing for lacquers and varnishes as a plasticizer." +3137,"89-04-3","DTXSID0047533","Tri-n-octyl trimellitate","JNXDCMUUZNIWPQ-UHFFFAOYSA-N","CCCCCCCCOC(=O)C1=CC=C(C(=O)OCCCCCCCC)C(=C1)C(=O)OCCCCCCCC","C33H54O6","546.78899999999999","60",NA,NA,NA +3138,"115-86-6","DTXSID1021952","Triphenyl phosphate","XZZNDPSIHUTMOC-UHFFFAOYSA-N","O=P(OC1=CC=CC=C1)(OC1=CC=CC=C1)OC1=CC=CC=C1","C18H15O4P","326.28800000000001","129","industrial;flameRetardant","OPFR","Triphenyl phosphate is an aryl phosphate resulting from the formal condensation of phosphoric acid with 3 mol eq. of phenol. It has a role as a flame retardant and a plasticiser. It derives from a phenol." +3139,"101-02-0","DTXSID0026252","Triphenyl phosphite","HVLLSGMXQDNUAL-UHFFFAOYSA-N","O(P(OC1=CC=CC=C1)OC1=CC=CC=C1)C1=CC=CC=C1","C18H15O3P","310.28899999999999","109",NA,NA,"Triphenyl phosphite is the chemical compound with the formula P(OC6H5)3. This colourless viscous liquid is the ester of phosphorous acid and phenol. It is used as a ligand in organometallic chemistry. Nickel complexes of this ligand are homogeneous catalysts for the hydrocyanation of alkenes." +3140,"217-59-4","DTXSID9059757","Triphenylene","SLGBZMMZGDRARJ-UHFFFAOYSA-N","C1=CC=C2C(=C1)C1=CC=CC=C1C1=CC=CC=C21","C18H12","228.29400000000001","155",NA,"PAH","Triphenylene is an ortho-fused polycyclic arene consisting of four fused benzene rings." +3141,"76-87-9","DTXSID1021409","Triphenyltin hydroxide","BFWMWWXRWVJXSE-UHFFFAOYSA-M","O[Sn](C1=CC=CC=C1)(C1=CC=CC=C1)C1=CC=CC=C1","C18H16OSn","367.03500000000003","57",NA,NA,NA +3142,"25498-49-1","DTXSID2029329","Tripropylene glycol monomethyl ether","-","-","-","-","-",NA,NA,NA +3144,"13674-87-8","DTXSID9026261","Tris(1,3-dichloro-2-propyl) phosphate","ASLWPAWFJZFCKF-UHFFFAOYSA-N","ClCC(CCl)OP(=O)(OC(CCl)CCl)OC(CCl)CCl","C9H15Cl6O4P","430.89","89",NA,NA,"Tris(1,3-dichloro-2-propyl)phosphate is a clear colorless viscous liquid. Generally a super-cooled liquid at room temperature but may occasionally solidify when held at low temperatures for prolonged periods." +3143,"13674-87-8","DTXSID9026261","Tris(1,3-dichloro-2-propyl) phosphate","ASLWPAWFJZFCKF-UHFFFAOYSA-N","ClCC(CCl)OP(=O)(OC(CCl)CCl)OC(CCl)CCl","C9H15Cl6O4P","430.89","89",NA,NA,"Tris(1,3-dichloro-2-propyl)phosphate is a clear colorless viscous liquid. Generally a super-cooled liquid at room temperature but may occasionally solidify when held at low temperatures for prolonged periods." +3150,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +3146,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +2651,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +3147,"13674-84-5","DTXSID5026259","Tris(2-chloroisopropyl)phosphate","KVMPUXDNESXNOH-UHFFFAOYSA-N","CC(CCl)OP(=O)(OC(C)CCl)OC(C)CCl","C9H18Cl3O4P","327.56","89",NA,NA,"Tris(1-chloro-2-propyl) phosphate is a clear colorless viscous liquid." +3149,"126-72-7","DTXSID5021413","Tris(2,3-dibromopropyl) phosphate","PQYJRMFWJJONBO-UHFFFAOYSA-N","BrCC(Br)COP(=O)(OCC(Br)CBr)OCC(Br)CBr","C9H15Br6O4P","697.61300000000006","62",NA,NA,NA +3150,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +3146,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +2651,"78-51-3","DTXSID5021758","Tris(2-butoxyethyl) phosphate","WTLBZVNBAKMVDP-UHFFFAOYSA-N","CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC","C18H39O7P","398.47699999999998","96","industrial","Unclassified","Tris(2-butoxyethyl) phosphate is a trialkyl phosphate in which the alkyl group specified is 2-butoxyethyl. It has a role as an environmental contaminant and a flame retardant." +3151,"115-96-8","DTXSID5021411","Tris(2-chloroethyl) phosphate","HQUQLFOMPYWACS-UHFFFAOYSA-N","ClCCOP(=O)(OCCCl)OCCCl","C6H12Cl3O4P","285.48","117","flameRetardant","OPFR","Tris(2-chloroethyl) phosphate is a trialkyl phosphate that is the tris(2-chloroethyl) ester of phosphoric acid. It is a trialkyl phosphate and an organochlorine compound." +3152,"140-08-9","DTXSID0026258","Tris(2-chloroethyl) phosphite","LUVCTYHBTXSAMX-UHFFFAOYSA-N","ClCCOP(OCCCl)OCCCl","C6H12Cl3O3P","269.48","66",NA,NA,NA +3153,"6145-73-9","DTXSID3027615","Tris(2-chloropropyl) phosphate","GTRSAMFYSUBAGN-UHFFFAOYSA-N","CC(Cl)COP(=O)(OCC(C)Cl)OCC(C)Cl","C9H18Cl3O4P","327.56","41",NA,NA,NA +3154,"78-42-2","DTXSID0021414","Tris(2-ethylhexyl) phosphate","GTVWRXDRKAHEAD-UHFFFAOYSA-N","CCCCC(CC)COP(=O)(OCC(CC)CCCC)OCC(CC)CCCC","C24H51O4P","434.642","94","industrial;flameRetardant","Unclassified","Tris(2-ethylhexyl)phosphate is an organophosphate and chemical irritant used in flame retardants. It is a clear colorless to pale yellow liquid and has a slight sharp odor." +3155,"3319-31-1","DTXSID9026265","Tris(2-ethylhexyl) trimellitate","KRADHMIOFJQKEZ-UHFFFAOYSA-N","CCCCC(CC)COC(=O)C1=CC=C(C(=O)OCC(CC)CCCC)C(=C1)C(=O)OCC(CC)CCCC","C33H54O6","546.78899999999999","69",NA,NA,NA +3158,"131983-72-7","DTXSID0032655","Triticonazole","PPDBOQMNKNNODG-UHFFFAOYSA-N","CC1(C)CCC(=CC2=CC=C(Cl)C=C2)C1(O)CN1C=NC=N1","C17H20ClN3O","317.82","18","pesticide","Unclassified","Triticonazole is a triazole pesticide/fungicide with broad antifungal activity and is a mixture of Z, E isomers. Triticonazole is a triazole fungicide primarily used for cereal seed treatment." +3160,"97322-87-7","DTXSID8023719","Troglitazone","GXPHKUHSUJUWKP-UHFFFAOYSA-N","CC1=C(O)C(C)=C2CCC(C)(COC3=CC=C(CC4SC(=O)NC4=O)C=C3)OC2=C1C","C24H27NO5S","441.54","163",NA,NA,"Troglitazone is an orally-active thiazolidinedione with antidiabetic and hepatotoxic properties and potential antineoplastic activity. Troglitazone activates peroxisome proliferator-activated receptor gamma (PPAR-gamma), a ligand-activated transcription factor, thereby inducing cell differentiation and inhibiting cell growth and angiogenesis. This agent also modulates the transcription of insulin-responsive genes, inhibits macrophage and monocyte activation, and stimulates adipocyte differentiation." +3164,"25155-23-1","DTXSID9026267","Trixylyl phosphate","-","C*.C*.C*.C*.C*.C*.O=P(OC1=CC=CC=C1)(OC1=CC=CC=C1)OC1=CC=CC=C1 |c:11,13,19,21,27,29,t:9,17,25,lp:12:2,14:2,21:2,28:2,m:1:33.34,3:30.31.32.33,5:16.17,7:17.18.19.20,9:23.24,11:24.25.26.27|","-","-","-",NA,NA,NA +3165,"1120-21-4","DTXSID9021689","Undecane","RSJKGSCJYJTIGS-UHFFFAOYSA-N","CCCCCCCCCCC","C11H24","156.31299999999999","290",NA,NA,NA +3168,"57-13-6","DTXSID4021426","Urea","XSQUKJJJFZCRTK-UHFFFAOYSA-N","NC(N)=O","CH4N2O","60.055999999999997","371",NA,NA,"Urea is a nitrogenous compound containing a carbonyl group attached to two amine groups with osmotic diuretic activity. In vivo, urea is formed in the liver via the urea cycle from ammonia and is the final end product of protein metabolism. Administration of urea elevates blood plasma osmolality, resulting in enhanced flow of water from tissues, including the brain, cerebrospinal fluid and eye, into interstitial fluid and plasma, thereby decreasing pressure in those tissues and increasing urine outflow." +3169,"51-79-6","DTXSID9021427","Urethane","JOYRKODLDBILNP-UHFFFAOYSA-N","CCOC(N)=O","C3H7NO2","89.093999999999994","245",NA,NA,"Urethane is a colorless and odorless, crystalline compound that emits toxic fumes of nitrogen oxides when heated to decomposition. Urethan is mainly used in the production of amino resins, but is also used in the manufacture of pesticides, fumigants, cosmetics and pharmaceuticals. Exposure to urethan can affect the central nervous system, liver and can cause bone marrow suppression. Urethan is reasonably anticipated to be a human carcinogen." +3189,"2001-95-8","DTXSID9041150","Valinomycin","MBXQOFMOLUBOIN-UHFFFAOYSA-N","CC(C)C1NC(=O)C(OC(=O)C(C)OC(=O)C(NC(=O)C(OC(=O)C(NC(=O)C(C)OC(=O)C(NC(=O)C(OC(=O)C(NC(=O)C(C)OC(=O)C(NC1=O)C(C)C)C(C)C)C(C)C)C(C)C)C(C)C)C(C)C)C(C)C)C(C)C","C54H90N6O18","1111.338","9",NA,NA,NA +3190,"99-66-1","DTXSID6023733","Valproic acid","NIJJYAXOARWZEE-UHFFFAOYSA-N","CCCC(CCC)C(O)=O","C8H16O2","144.214","245",NA,NA,NA +3191,"1069-66-5","DTXSID5037072","Sodium valproate","AEQFSUDEHCCHBT-UHFFFAOYSA-M","[Na+].CCCC(CCC)C([O-])=O","C8H15NaO2","166.196","150",NA,NA,NA +3193,"1929-77-7","DTXSID7024376","Vernolate","OKUGPJPKMAEJOE-UHFFFAOYSA-N","CCCSC(=O)N(CCC)CCC","C10H21NOS","203.34","52","pesticide","Unclassified","Vernolate is a thiocarbamate compound used as a selective soil-incorporated herbicide. It is toxic to germinating broadleaf and grassy weeds. Vernolate is also used to control weeds in soybeans, peanuts and sweet potatoes." +3194,"50471-44-8","DTXSID4022361","Vinclozolin","FSCWZHGZWWDELK-UHFFFAOYSA-N","CC1(OC(=O)N(C1=O)C1=CC(Cl)=CC(Cl)=C1)C=C","C12H9Cl2NO3","286.11","85","pesticide","Unclassified","3-(3,5-dichlorophenyl)-5-ethenyl-5-methyl-2,4-oxazolidinedione is a member of the class of oxazolidinones that is 5-ethenyl-5-methyl-2,4-oxazolidinedione in which the imide hydrogen is replaced by a 3,5-dichlorophenyl group. It is a dicarboximide, a dichlorobenzene, an oxazolidinone and an olefinic compound." +3201,"139290-65-6","DTXSID6047363","Volinanserin","HXTGXYRHXAGCFP-OAQYLSRUSA-N","COC1=C(OC)C(=CC=C1)[C@H](O)C1CCN(CCC2=CC=C(F)C=C2)CC1","C22H28FNO3","373.46800000000002","71",NA,NA,NA +3249,"81-81-2","DTXSID5023742","Warfarin","PJVWKTKQMONHTI-UHFFFAOYSA-N","CC(=O)CC(C1=CC=CC=C1)C1=C(O)C2=CC=CC=C2OC1=O","C19H16O4","308.33300000000003","227",NA,NA,NA +3272,"92-83-1","DTXSID1059070","9H-Xanthene","GJCOSYZMQJWQCA-UHFFFAOYSA-N","C1C2=CC=CC=C2OC2=C1C=CC=C2","C13H10O","182.22200000000001","122",NA,NA,"Compounds with three aromatic rings in linear arrangement with an OXYGEN in the center ring." +3273,"90-47-1","DTXSID6021795","Xanthone","JNELGWHKGNBSMD-UHFFFAOYSA-N","O=C1C2=C(OC3=C1C=CC=C3)C=CC=C2","C13H8O2","196.20500000000001","160",NA,NA,"Xanthone is the parent compound of the xanthone class consisting of xanthene bearing a single oxo substituent at position 9. It has a role as an insecticide." +3277,"127308-82-1","DTXSID9047257","Zamifenacin","BDNFQGRSKSQXRI-XMMPIXPASA-N","C(CC1=CC2=C(OCO2)C=C1)N1CCC[C@H](C1)OC(C1=CC=CC=C1)C1=CC=CC=C1","C27H29NO3","415.53300000000002","33",NA,NA,NA +3281,"112733-06-9","DTXSID0047296","Zenarestat","SXONDGSPUVNZLO-UHFFFAOYSA-N","OC(=O)CN1C(=O)N(CC2=CC=C(Br)C=C2F)C(=O)C2=C1C=C(Cl)C=C2","C17H11BrClFN2O4","441.64","57",NA,NA,NA +3290,"137-30-4","DTXSID0021464","Ziram","DUBNHZYBDBBJHD-UHFFFAOYSA-L","CN(C)C(=S)S[Zn]SC(=S)N(C)C","C6H12N2S4Zn","305.8","22",NA,NA,NA +3299,"156052-68-5","DTXSID9032581","Zoxamide","SOUGWDPPRBKJEX-UHFFFAOYSA-N","CCC(C)(NC(=O)C1=CC(Cl)=C(C)C(Cl)=C1)C(=O)CCl","C14H16Cl3NO2","336.64","54","pesticide","Unclassified","Fungicide; 3,5-dichloro-N-(1-chloro-3-methyl-2-oxopentan-3-yl)-4-methylbenzamide is a member of the class of benzamides obtained by formal condensation of the carboxy group of 3,5-dichloro-4-methylbenzamide with the amino group of 3-amino-1-chloro-3-methylpentan-2-one. It is a member of benzamides, an alpha-chloroketone and a dichlorobenzene." +3316,"57465-28-8","DTXSID3032179","3,3',4,4',5-Pentachlorobiphenyl","REHONNLQRWTIFF-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=CC(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","49",NA,"PCB","3,3',4,4',5-pentachlorobiphenyl is a pentachlorobiphenyl in which the chlorines are located at the 3, 4, 5, 3', and 4' positions. It is a pentachlorobiphenyl and a trichlorobenzene." +3337,"32774-16-6","DTXSID2038314","3,3',4,4',5,5'-Hexachlorobiphenyl","ZHLICBPIXDOFFG-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","46",NA,"PCB","Polychlorinated biphenyls are mixtures of up to 209 individual chlorinated compounds (known as congeners). There are no known natural sources of PCBs. PCBs are either oily liquids or solids that are colorless to light yellow. Some PCBs can exist as a vapor in air. PCBs have no known smell or taste. Many commercial PCB mixtures are known in the U.S. by the trade name Aroclor.PCBs have been used as coolants and lubricants in transformers, capacitors, and other electrical equipment because they don't burn easily and are good insulators. The manufacture of PCBs was stopped in the U.S. in 1977 because of evidence they build up in the environment and can cause harmful health effects. Products made before 1977 that may contain PCBs include old fluorescent lighting fixtures and electrical devices containing PCB capacitors, and old microscope and hydraulic oils." +3419,"7631-86-9","DTXSID1029677","Silica","-","-","-","-","-",NA,NA,NA +2844,"7631-86-9","DTXSID1029677","Silica","-","-","-","-","-",NA,NA,NA +3689,"781-43-1","DTXSID8073928","9,10-Dimethylanthracene","JTGMTYWYUZDRBK-UHFFFAOYSA-N","CC1=C2C=CC=CC2=C(C)C2=CC=CC=C12","C16H14","206.28800000000001","94",NA,"PAH","9,10-Dimethylanthracene belongs to the class of polynuclear aromatic hydrocarbons (PAHs), which are generally used as potential starting materials for the synthesis of a variety of industrial chemicals." +3690,"939-27-5","DTXSID9061330","2-Ethylnaphthalene","RJTJVVYSTUQWNI-UHFFFAOYSA-N","CCC1=CC=C2C=CC=CC2=C1","C12H12","156.22800000000001","85",NA,"PAH","2-ethylnaphthalene is a colorless liquid." +3756,"205-12-9","DTXSID30874039","7H-Benzo[c]fluorene","FRIJWEQBTIZQMD-UHFFFAOYSA-N","C1C2=C(C=CC=C2)C2=C1C=CC1=CC=CC=C21","C17H12","216.28299999999999","-",NA,"PAH","Benzo[c]fluorene is a carbotetracyclic compound." +3757,"77392-71-3","DTXSID4047753","Perylene","CSHWQDPOILHKBI-UHFFFAOYSA-N","C1=CC2=C3C(=C1)C1=CC=CC4=C1C(=CC=C4)C3=CC=C2","C20H12","252.316","166",NA,NA,NA +3758,"5385-75-1","DTXSID9063821","Dibenzo[a,e]fluoranthene","JHOWUOKQHJHGMU-UHFFFAOYSA-N","C1=CC=C2C(=C1)C1=CC3=CC=CC=C3C3=CC4=CC=CC=C4C2=C13","C24H14","302.37599999999998","39",NA,"PAH","Dibenzo[a,e]fluoranthene is a member of phenanthrenes and appears as yellow crystals. Water insoluble." +3759,"27208-37-3","DTXSID7074822","Cyclopenta[cd]pyrene","BZCXQYVNASLLQO-UHFFFAOYSA-N","C1=CC2=C3C1=CC1=CC=CC4=CC=C(C=C2)C3=C14","C18H10","226.27799999999999","43",NA,"PAH","Cyclopenta[cd]pyrene is an aromatic hydrocarbon that consists of five fused rings and is formed during the incomplete combustion of organic matter. Cyclopenta[c,d]pyrene is primarily found in gasoline engine exhaust. This substance is used in laboratory research as a mutagen and carcinogen. Cyclopenta[c,d]pyrene is reasonably anticipated to be a human carcinogen." +3760,"2531-84-2","DTXSID1025649","2-Methylphenanthrene","KANLOADZXMMCQA-UHFFFAOYSA-N","CC1=CC=C2C(C=CC3=CC=CC=C23)=C1","C15H12","192.261","61",NA,"PAH","2-methylphenanthrene is a white crystalline solid." +3761,"192-51-8","DTXSID40172750","Dibenzo(fg,op)naphthacene (8CI)(9CI)","BMIAHKYKCHRGBA-UHFFFAOYSA-N","C1=CC=C2C(=C1)C1=CC=CC3=C1C1=C(C=CC=C21)C1=CC=CC=C31","C24H14","302.37599999999998","36",NA,"PAH","Dibenzopyrenes are a group of high molecular weight polycyclic aromatic hydrocarbons with the molecular formula C24H14" +3762,"832-69-9","DTXSID6025648","1-Methyl phenanthrene","DOWJXOHBNXRUOD-UHFFFAOYSA-N","CC1=C2C=CC3=CC=CC=C3C2=CC=C1","C15H12","192.261","67",NA,"PAH","1-methylphenanthrene is a member of the class of phenanthrenes that is phenanthrene substituted by a methyl group at position 1. It has a role as a mutagen." +3766,"41997-13-1","DTXSID50469320","Perfluorohexanesulfonamide","WDZLGCSJJWEQJO-UHFFFAOYSA-N","NS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6H2F13NO2S","399.13","23",NA,NA,NA +3771,"375-92-8","DTXSID8059920","Perfluoroheptanesulfonic acid","OYGQVDSRYXATEL-UHFFFAOYSA-N","OS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C7HF15O3S","450.12","44",NA,NA,NA +3853,"335-95-5","DTXSID40880025","Sodium perfluorooctanoate","LWHQXUODFPPQTL-UHFFFAOYSA-M","[Na+].[O-]C(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8F15NaO2","436.05200000000002","-",NA,NA,NA +3859,"2381-21-7","DTXSID0025654","1-Methylpyrene","KBSPJIWZDWBDGM-UHFFFAOYSA-N","CC1=CC=C2C=CC3=CC=CC4=C3C2=C1C=C4","C17H12","216.28299999999999","99",NA,"PAH","1-Methylpyrene is a member of pyrenes." +3862,"3697-24-3","DTXSID6063143","5-Methylchrysene","GOHBXWHNJHENRX-UHFFFAOYSA-N","CC1=CC2=CC=CC=C2C2=C1C1=CC=CC=C1C=C2","C19H14","242.321","59",NA,"PAH",NA +3898,"196-42-9","DTXSID40173262","Naphtho(2,1,8-qra)naphthacene","AXSJLZJXXUBRBS-UHFFFAOYSA-N","C1=CC=C2C=C3C(=CC2=C1)C=C1C=CC2=C4C(C=CC3=C14)=CC=C2","C24H14","302.37599999999998","41",NA,"PAH",NA +4003,"1222-05-5","DTXSID8027373","Cyclopenta[g]-2-benzopyran, 1,3,4,6,7,8-hexahydro-4,6,6,7,8,8-hexamethyl-","ONKNPOPIGWHAQC-UHFFFAOYSA-N","CC1C(C)(C)C2=CC3=C(C=C2C1(C)C)C(C)COC3","C18H26O","258.40499999999997","75","personalCare;industrial","Unclassified","Galaxolide is an organic heterotricyclic compound that is 1,3,4,6,7,8-hexahydrocyclopenta[g]isochromene substituted by methyl groups at positions 4, 6, 6, 7, 8 and 8 respectively. It is a synthetic musk used as a fragrance in cosmetics. It has a role as a fragrance. It is a member of isochromenes and an organic heterotricyclic compound." +4004,"2050-47-7","DTXSID9024015","4,4'-Dibromodiphenyl ether","YAWIAFUBXXPJMQ-UHFFFAOYSA-N","BrC1=CC=C(OC2=CC=C(Br)C=C2)C=C1","C12H8Br2O","328.00299999999999","127","flameRetardant","PBDE","Bis-(4-bromophenyl)-ether has been used in the preparation of 4-[4?-(diethoxyphosphoryl)phenoxy]phenyl-phosphonic acid diethyl ester. It is used for medicine and as organic intermediates. Incompatible with oxidizing agents." +4009,"31508-00-6","DTXSID4032116","2,3',4,4',5-Pentachlorobiphenyl","IUTPYMGCWINGEY-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=CC(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","56",NA,"PCB","2,3',4,4',5-Pentachlorobiphenyl is a trichlorobenzene, a dichlorobenzene and a pentachlorobiphenyl." +4012,"35065-27-1","DTXSID2032180","2,2',4,4',5,5'-Hexachlorobiphenyl","MVWHGTYKUMDIHL-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=CC(Cl)=C(Cl)C=C1Cl","C12H4Cl6","360.86","73",NA,"PCB","2,2',4,4',5,5'-hexachlorobiphenyl is a hexachlorobiphenyl." +4013,"38379-99-6","DTXSID3038301","2,2',3,5',6-Pentachlorobiphenyl","GXNNLIMMEXHBKV-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C(Cl)=CC=C1Cl","C12H5Cl5","326.42","37",NA,"PCB","A persistent organic pollutant (environmental contaminant)." +4014,"38411-22-2","DTXSID6073499","2,2',3,3',6,6'-Hexachlorobiphenyl","FZFUUSROAHKTTF-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=CC=C1Cl","C12H4Cl6","360.86","38",NA,"PCB","A polychlorinated biphenyl (PCB); common byproduct of building materials. These ortho-substituted PCB congeners and their hydroxylated metabolites are endocrine disruptors" +4016,"52663-68-0","DTXSID5052832","2,2',3,4',5,5',6-Heptachloro-1,1'-biphenyl","UDMZPLROONOSEF-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H3Cl7","395.31","38",NA,"PCB","A polychlorinated biphenyl (PCB)." +4336,"355-46-4","DTXSID7040150","Perfluorohexanesulfonic acid","QZHDEAJFRJCDMF-UHFFFAOYSA-N","OS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6HF13O3S","400.11","67",NA,NA,NA +4337,"678-77-3","DTXSID0060985","Hexafluoroglutaryl chloride","QOLALWJWCONGMG-UHFFFAOYSA-N","FC(F)(C(Cl)=O)C(F)(F)C(F)(F)C(Cl)=O","C5Cl2F6O2","276.94","58",NA,NA,NA +4338,"375-82-6","DTXSID00190950","6:1 Fluorotelomer alcohol","STLNAVFVCIRZLL-UHFFFAOYSA-N","OCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C7H3F13O","350.07900000000001","52",NA,NA,NA +4339,"80220-63-9","DTXSID30627108","((Perfluorooctyl)ethyl)phosphonic acid","CETXMCMQEXPPLV-UHFFFAOYSA-N","OP(O)(=O)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17O3P","528.10199999999998","20",NA,NA,NA +4340,"3834-42-2","DTXSID70400078","(Heptafluoropropyl)trimethylsilane","PKLASFRWKXWKII-UHFFFAOYSA-N","C[Si](C)(C)C(F)(F)C(F)(F)C(F)(F)F","C6H9F7Si","242.21199999999999","35",NA,NA,NA +4341,"883498-76-8","DTXSID50381992","Bis(1H,1H-perfluoropropyl)amine","GFCAENPEZRYHBS-UHFFFAOYSA-N","FC(F)(F)C(F)(F)CNCC(F)(F)C(F)(F)F","C6H5F10N","281.09699999999998","31",NA,NA,NA +4342,"355-43-1","DTXSID7047566","Perfluoro-1-iodohexane","BULLJMKUVKYZDJ-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)I","C6F13I","445.95","99",NA,NA,NA +4343,"27619-97-2","DTXSID6067331","6:2 Fluorotelomer sulfonic acid","VIONGDJUYAYOPU-UHFFFAOYSA-N","OS(=O)(=O)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H5F13O3S","428.16","52",NA,NA,NA +4344,"423-60-9","DTXSID90315130","Perfluoro-1-octanesulfonyl chloride","FJHZKRYJOILIGD-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)S(Cl)(=O)=O","C8ClF17O2S","518.57000000000005","37",NA,NA,NA +4345,"94159-84-9","DTXSID80881157","1-(Perfluorofluorooctyl)propane-2,3-diol","CGRIOEGIXRPCJU-UHFFFAOYSA-N","OCC(O)CC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C11H7F17O2","494.14800000000002","-",NA,NA,NA +4346,"63863-43-4","DTXSID8044969","Methyl perfluoro(3-(1-ethenyloxypropan-2-yloxy)propanoate)","OVAULROCPRKKJF-UHFFFAOYSA-N","COC(=O)C(F)(F)C(F)(F)OC(F)(C(F)(F)F)C(F)(F)OC(F)=C(F)F","C9H3F13O4","422.09800000000001","36",NA,NA,NA +4347,"355-81-7","DTXSID70366226","Perfluoropentanamide","QNNUQHBPTQVSFD-UHFFFAOYSA-N","NC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)F","C5H3F8NO","245.072","31",NA,NA,NA +4348,"13695-31-3","DTXSID3065586","2,2,3,3,4,4,4-Heptafluorobutyl methacrylate","VIEHKBXCWMMOOU-UHFFFAOYSA-N","CC(=C)C(=O)OCC(F)(F)C(F)(F)C(F)(F)F","C8H7F7O2","268.13099999999997","58",NA,NA,NA +4349,"374-40-3","DTXSID70880134","1-Pentafluoroethylethanol","BUGIAHXXBFVPGW-UHFFFAOYSA-N","CC(O)C(F)(F)C(F)(F)F","C4H5F5O","164.07499999999999","-",NA,NA,NA +4350,"31506-32-8","DTXSID1067629","N-Methylperfluorooctanesulfonamide","SRMWNTGHXHOWBT-UHFFFAOYSA-N","CNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C9H4F17NO2S","513.16999999999996","24",NA,NA,NA +4351,"13252-14-7","DTXSID00892442","Perfluoro-2,5-dimethyl-3,6-dioxanonanoic acid","OIVQVBDAMYDDEM-UHFFFAOYSA-N","OC(=O)C(F)(OC(F)(F)C(F)(OC(F)(F)C(F)(F)C(F)(F)F)C(F)(F)F)C(F)(F)F","C9HF17O4","496.07600000000002","-",NA,NA,NA +4352,"17587-22-3","DTXSID3066215","(Heptafluorobutanoyl)pivaloylmethane","SQNZLBOJCWQLGQ-UHFFFAOYSA-N","CC(C)(C)C(=O)CC(=O)C(F)(F)C(F)(F)C(F)(F)F","C10H11F7O2","296.185","80",NA,NA,NA +4353,"24448-09-7","DTXSID7027831","N-Methyl-N-(2-hydroxyethyl)perfluorooctanesulfonamide","PLGACQRCZCVKGK-UHFFFAOYSA-N","CN(CCO)S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C11H8F17NO3S","557.22","29",NA,NA,NA +4354,"151772-58-6","DTXSID30382063","Perfluoro-3,6-dioxaheptanoic acid","PPWRLPJIHGWGFH-UHFFFAOYSA-N","OC(=O)C(F)(F)OC(F)(F)C(F)(F)OC(F)(F)F","C5HF9O4","296.04500000000002","44",NA,NA,NA +4355,"243139-64-2","DTXSID40380257","3-(Perfluoroisopropyl)-2-propenoic acid","PRHNILJSRYVRAY-UHFFFAOYSA-N","OC(=O)C=CC(F)(C(F)(F)F)C(F)(F)F","C6H3F7O2","240.077","19",NA,NA,NA +4356,"50836-66-3","DTXSID60379901","(Perfluoro-5-methylhexyl)ethyl 2-methylprop-2-enoate","SAIYGCOTLRCBJP-UHFFFAOYSA-N","CC(=C)C(=O)OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(C(F)(F)F)C(F)(F)F","C13H9F15O2","482.18900000000002","25",NA,NA,NA +4357,"355-27-1","DTXSID60377826","1H,1H-Perfluoropentylamine","SUNUNYBGDFIAME-UHFFFAOYSA-N","NCC(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C5H4F9N","249.08","36",NA,NA,NA +4358,"423-65-4","DTXSID80375107","11:1 Fluorotelomer alcohol","SHTZQFTXUMCALC-UHFFFAOYSA-N","OCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C12H3F23O","600.11800000000005","39",NA,NA,NA +4359,"6588-63-2","DTXSID80379781","Perfluorocyclohexanecarbonyl fluoride","HDVGMDBHTBNCLT-UHFFFAOYSA-N","FC(=O)C1(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C1(F)F","C7F12O","328.05700000000002","32",NA,NA,NA +4360,"914637-49-3","DTXSID20874028","2H,2H,3H,3H-Perfluorooctanoic acid","ABFCFCPCGMHSRX-UHFFFAOYSA-N","OC(=O)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H5F11O2","342.108","-",NA,NA,NA +4361,"19932-26-4","DTXSID70880230","((2,2,3,3-Tetrafluoropropoxy)methyl)oxirane","DATKALAKXGFGPI-UHFFFAOYSA-N","FC(F)C(F)(F)COCC1CO1","C6H8F4O2","188.12200000000001","-",NA,NA,NA +4362,"757124-72-4","DTXSID30891564","4:2 Fluorotelomer sulfonic acid","TXGIGTRUEITPSC-UHFFFAOYSA-N","OS(=O)(=O)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6H5F9O3S","328.15","-",NA,NA,NA +4363,"252237-40-4","DTXSID20179883","2-(Perfluorohexyl)ethylphosphonic acid","DEXIXSRZQUFPIK-UHFFFAOYSA-N","OP(O)(=O)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H6F13O3P","428.08600000000001","25",NA,NA,NA +4364,"801212-59-9","DTXSID60663110","Perfluoro-4-isopropoxybutanoic acid","HFUCGDPRBKRBFR-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)OC(F)(C(F)(F)F)C(F)(F)F","C7HF13O3","380.06099999999998","10",NA,NA,NA +4365,"812-70-4","DTXSID90382620","3-Perfluoroheptylpropanoic acid","HLBRGVKRZQSQHB-UHFFFAOYSA-N","OC(=O)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H5F15O2","442.12400000000002","30",NA,NA,NA +4366,"34143-74-3","DTXSID20337446","2-(Perfluorooctyl)ethanthiol","URJIJZCEKHSLHA-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CCS","C10H5F17S","480.18","40",NA,NA,NA +4367,"307-34-6","DTXSID0059794","Perfluorooctane","YVBBRRALBYAZBM-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8F18","438.05900000000003","80",NA,NA,NA +4368,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +2913,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +2347,"4151-50-2","DTXSID1032646","N-Ethylperfluorooctanesulfonamide","CCEKAJIANROZEO-UHFFFAOYSA-N","CCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H6F17NO2S","527.20000000000005","91",NA,NA,NA +4369,"1691-99-2","DTXSID6027426","N-Ethyl-N-(2-hydroxyethyl)perfluorooctanesulfonamide","HUFHNYZNTFSKCT-UHFFFAOYSA-N","CCN(CCO)S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C12H10F17NO3S","571.25","70",NA,NA,NA +4370,"1763-28-6","DTXSID30170109","3,3-Bis(trifluoromethyl)-2-propenoic acid","ZSBJCNVMTCMOBW-UHFFFAOYSA-N","OC(=O)C=C(C(F)(F)F)C(F)(F)F","C5H2F6O2","208.059","67",NA,NA,NA +4371,"679-12-9","DTXSID50892417","4H-Perfluorobutanoic acid","ACPUHIQZFSBBGQ-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)F","C4H2F6O2","196.048","-",NA,NA,NA +4372,"147492-57-7","DTXSID40380797","1H,1H-Perfluoro-3,6,9-trioxadecan-1-ol","PGUFRYZQAPBGDW-UHFFFAOYSA-N","OCC(F)(F)OC(F)(F)C(F)(F)OC(F)(F)C(F)(F)OC(F)(F)F","C7H3F13O4","398.07600000000002","44",NA,NA,NA +4373,"330562-41-9","DTXSID50375114","Perfluoro-3,6,9-trioxatridecanoic acid","GDQLSTSWOFAQNO-UHFFFAOYSA-N","OC(=O)C(F)(F)OC(F)(F)C(F)(F)OC(F)(F)C(F)(F)OC(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10HF19O5","562.08299999999997","36",NA,NA,NA +4374,"335-58-0","DTXSID5059828","1-Iodopentadecafluoroheptane","AHUMDLIBMIYQMU-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)I","C7F15I","495.95800000000003","51",NA,NA,NA +4375,"422-63-9","DTXSID9059969","1H-Perfluoro-1,1-propanediol","BQAOCAJBGDDVSL-UHFFFAOYSA-N","OC(O)C(F)(F)C(F)(F)F","C3H3F5O2","166.047","32",NA,NA,NA +4376,"2043-47-2","DTXSID1062122","4:2 Fluorotelomer alcohol","JCMNMOBHVPONLD-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6H5F9O","264.09100000000001","76",NA,NA,NA +4377,"39108-34-4","DTXSID00192353","8:2 Fluorotelomer sulfonic acid","ALVYVCQIFHTIRD-UHFFFAOYSA-N","OS(=O)(=O)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H5F17O3S","528.17999999999995","25",NA,NA,NA +4378,"307-98-2","DTXSID5059799","1H,1H-Perfluorooctyl acrylate","YSQGYEYXKXGAQA-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)COC(=O)C=C","C11H5F15O2","454.13499999999999","50",NA,NA,NA +4379,"375-73-5","DTXSID5030030","Perfluorobutanesulfonic acid","JGTNAGYHADQMCM-UHFFFAOYSA-N","OS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4HF9O3S","300.08999999999997","97",NA,NA,NA +4380,"57678-01-0","DTXSID90558000","6:2 Fluorotelomer phosphate monoester","FZTRDYSPWWJCOF-UHFFFAOYSA-N","OP(O)(=O)OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H6F13O4P","444.08499999999998","19",NA,NA,NA +4381,"568550-25-4","DTXSID70537191","Methyl 3H-perfluoroisopropyl ether","PJEHWIWMSWGDDQ-UHFFFAOYSA-N","COC(F)(C(F)F)C(F)(F)F","C4H4F6O","182.065","17",NA,NA,NA +4382,"2395-00-8","DTXSID00880026","Potassium perfluorooctanoate","WPDDXKNWUVLZMQ-UHFFFAOYSA-M","[K+].[O-]C(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8F15KO2","452.16","-",NA,NA,NA +4383,"424-16-8","DTXSID30340244","1H,1H,7H-Perfluoroheptyl 4-methylbenzenesulfonate","OXJVZWUUXGCJLH-UHFFFAOYSA-N","CC1=CC=C(C=C1)S(=O)(=O)OCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)F","C14H10F12O3S","486.27","31",NA,NA,NA +4384,"1651-41-8","DTXSID10379991","3-(Perfluorooctyl)propanol","FQTWAKFTSLUFFS-UHFFFAOYSA-N","OCCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C11H7F17O","478.149","53",NA,NA,NA +4385,"129301-42-4","DTXSID70381090","1H,1H,8H,8H-Perfluoro-3,6-dioxaoctane-1,8-diol","CWIAFBQLWOMNFY-UHFFFAOYSA-N","OCC(F)(F)OC(F)(F)C(F)(F)OC(F)(F)CO","C6H6F8O4","294.09699999999998","44",NA,NA,NA +4386,"335-99-9","DTXSID9059832","1H,1H,7H-Dodecafluoro-1-heptanol","BYKNGMLDSIEFFG-UHFFFAOYSA-N","OCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)F","C7H4F12O","332.089","72",NA,NA,NA +4387,"55621-21-1","DTXSID20375106","Perfluoro-3,6-dioxaoctane-1,8-dioic acid","PXMYQUXWTLQKLL-UHFFFAOYSA-N","OC(=O)C(F)(F)OC(F)(F)C(F)(F)OC(F)(F)C(O)=O","C6H2F8O6","322.06299999999999","34",NA,NA,NA +4388,"355-80-6","DTXSID0059879","1H,1H,5H-Perfluoropentanol","JUGSKHLZINSXPQ-UHFFFAOYSA-N","OCC(F)(F)C(F)(F)C(F)(F)C(F)F","C5H4F8O","232.07300000000001","97",NA,NA,NA +4390,"65294-16-8","DTXSID70276659","Perfluoro-(2,5,8-trimethyl-3,6,9-trioxadodecanoic)acid","HPNULWLLEOKCID-UHFFFAOYSA-N","OC(=O)C(F)(OC(F)(F)C(F)(OC(F)(F)C(F)(OC(F)(F)C(F)(F)C(F)(F)F)C(F)(F)F)C(F)(F)F)C(F)(F)F","C12HF23O5","662.09799999999996","19",NA,NA,NA +4391,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +2684,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +2582,"29420-49-3","DTXSID3037707","Potassium perfluorobutanesulfonate","LVTHXRLARFLXNR-UHFFFAOYSA-M","[K+].[O-]S(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C4F9KO3S","338.18","89",NA,NA,NA +4392,"125070-38-4","DTXSID10382147","3-(Perfluoro-2-butyl)propane-1,2-diol","FAQXMAJQQVDRQM-UHFFFAOYSA-N","OCC(O)CC(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C7H7F9O2","294.11700000000002","30",NA,NA,NA +4393,"132424-36-3","DTXSID50441560","Methyl 2H,2H,3H,3H-perfluoroheptanoate","XNPUIKGMNMTLOL-UHFFFAOYSA-N","COC(=O)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H7F9O2","306.12799999999999","23",NA,NA,NA +4394,"330562-44-2","DTXSID00380798","1H,1H,11H,11H-Perfluorotetraethylene glycol","BFMDZOWJRVLYPB-UHFFFAOYSA-N","OCC(F)(F)OC(F)(F)C(F)(F)OC(F)(F)C(F)(F)OC(F)(F)CO","C8H6F12O5","410.11200000000002","38",NA,NA,NA +4395,"3934-23-4","DTXSID5063235","2,2,3,3,4,4,5,5,6,6,7,7,8,8,8-Pentadecafluorooctyl methacrylate","RUEKTOVLVIXOHT-UHFFFAOYSA-N","CC(=C)C(=O)OCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C12H7F15O2","468.16199999999998","45",NA,NA,NA +4396,"90177-96-1","DTXSID30396867","1H,1H,8H,8H-Perfluorooctane-1,8-diol","XZJPYETUABEQFI-UHFFFAOYSA-N","OCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CO","C8H6F12O2","362.11500000000001","48",NA,NA,NA +4397,"1652-63-7","DTXSID8051419","Perfluorooctanesulfonamido ammonium iodide","MLIMEVJPZQAQQE-UHFFFAOYSA-M","[I-].C[N+](C)(C)CCCNS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C14H16F17IN2O2S","726.23","26",NA,NA,NA +4398,"13485-61-5","DTXSID60400587","Nonafluoropentanamide","ZKWQYYCKXAKLPJ-UHFFFAOYSA-N","NC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C5H2F9NO","263.06299999999999","18",NA,NA,NA +4399,"31253-34-6","DTXSID80382093","2-Aminohexafluoropropan-2-ol","KENSSLIXPGVLRV-UHFFFAOYSA-N","NC(O)(C(F)(F)F)C(F)(F)F","C3H3F6NO","183.053","38",NA,NA,NA +4400,"13252-13-6","DTXSID70880215","Perfluoro-2-methyl-3-oxahexanoic acid","CSEBNABAWMZWIF-UHFFFAOYSA-N","OC(=O)C(F)(OC(F)(F)C(F)(F)C(F)(F)F)C(F)(F)F","C6HF11O3","330.053","-",NA,NA,NA +4401,"423-54-1","DTXSID60195123","Perfluorooctanamide","UGMUDSKJLAUMTC-UHFFFAOYSA-N","NC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H2F15NO","413.08600000000001","45",NA,NA,NA +4402,"863090-89-5","DTXSID60500450","Perfluoro(4-methoxybutanoic) acid","CZTBTZZANBJSLY-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)OC(F)(F)F","C5HF9O3","280.04599999999999","12",NA,NA,NA +4403,"647-42-7","DTXSID5044572","6:2 Fluorotelomer alcohol","GRJRKPMIRMSBNK-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H5F13O","364.10599999999999","96",NA,NA,NA +465,"647-42-7","DTXSID5044572","6:2 Fluorotelomer alcohol","GRJRKPMIRMSBNK-UHFFFAOYSA-N","OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H5F13O","364.10599999999999","96",NA,NA,NA +4404,"663-35-4","DTXSID20880144","Ethyl pentafluoropropionyl acetate","MWGSZQXKIYWSFS-UHFFFAOYSA-N","CCOC(=O)CC(=O)C(F)(F)C(F)(F)F","C7H7F5O3","234.12200000000001","-",NA,NA,NA +4405,"1765-92-0","DTXSID10379254","1H,1H-Heptafluorobutyl epoxide","YXNWXQYDINSHJC-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)CC1CO1","C6H5F7O","226.09399999999999","36",NA,NA,NA +4406,"1682-31-1","DTXSID9061881","1-Iodo-1H,1H,2H,2H-perfluoroheptane","KEHJVWWDDAAVHB-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CCI","C7H4F11I","423.99599999999998","32",NA,NA,NA +10022,"2/7/3792","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +4408,"375-88-2","DTXSID9059919","1-Bromopentadecafluoroheptane","VPQQZKWYZYVTMU-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)Br","C7BrF15","448.95699999999999","55",NA,NA,NA +4410,"338-83-0","DTXSID9059834","Perfluamine","JAJLKEVKNDUJBG-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)N(C(F)(F)C(F)(F)C(F)(F)F)C(F)(F)C(F)(F)C(F)(F)F","C9F21N","521.072","79",NA,NA,NA +4411,"354-76-7","DTXSID0059871","Pentafluoropropionamide","KQTOYEUYHXUEDB-UHFFFAOYSA-N","NC(=O)C(F)(F)C(F)(F)F","C3H2F5NO","163.047","80",NA,NA,NA +4412,"133331-77-8","DTXSID20440585","1-(Perfluorohexyl)octane","WRYIIOKOQSICTB-UHFFFAOYSA-N","CCCCCCCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C14H17F13","432.26900000000001","37",NA,NA,NA +4413,"52591-27-2","DTXSID1068772","2-(Perfluorobutyl)ethyl acrylate","GYUPEJSTJSFVRR-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)CCOC(=O)C=C","C9H7F9O2","318.13900000000001","69",NA,NA,NA +4414,"85857-17-6","DTXSID40235137","Dimethoxymethyl((perfluorohexyl)ethyl)silane","UWZZATWXHUNWJV-UHFFFAOYSA-N","CO[Si](C)(CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F)OC","C11H13F13O2Si","452.28699999999998","32",NA,NA,NA +4415,"51851-37-7","DTXSID1074915","Triethoxy((perfluorohexyl)ethyl)silane","AVYKQOAMZCAHRG-UHFFFAOYSA-N","CCO[Si](CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F)(OCC)OCC","C14H19F13O3Si","510.36700000000002","87",NA,NA,NA +4416,"79963-95-4","DTXSID60380390","2,2,2-Trifluoroethyl perfluorobutanesulfonate","KJGYBFLEIPDFNQ-UHFFFAOYSA-N","FC(F)(F)COS(=O)(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C6H2F12O3S","382.12","50",NA,NA,NA +4417,"38565-52-5","DTXSID30880413","3-(Perfluorohexyl)-1,2-epoxypropane","KGYUZRBIQCDOCN-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CC1CO1","C9H5F13O","376.11700000000002","-",NA,NA,NA +4418,"559-94-4","DTXSID7060332","(Perfluorobutyryl)-2-thenoylmethane","QHOQGOZSTQAYRH-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(=O)CC(=O)C1=CC=CS1","C10H5F7O2S","322.2","49",NA,NA,NA +4419,"58244-27-2","DTXSID30395037","tris(Trifluoroethoxy)methane","IESBVSNCDNHMSL-UHFFFAOYSA-N","FC(F)(F)COC(OCC(F)(F)F)OCC(F)(F)F","C7H7F9O3","310.11599999999999","31",NA,NA,NA +4420,"679-02-7","DTXSID60379269","3-(Perfluoropropyl)propanol","VACKBPFJJWRSAO-UHFFFAOYSA-N","OCCCC(F)(F)C(F)(F)C(F)(F)F","C6H7F7O","228.11","46",NA,NA,NA +4421,"78560-45-9","DTXSID50229163","Trichloro((perfluorohexyl)ethyl)silane","PISDRBMXQBSCIP-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CC[Si](Cl)(Cl)Cl","C8H4Cl3F13Si","481.53","57",NA,NA,NA +4422,"1765-48-6","DTXSID5061954","11-H-Perfluoroundecanoic acid","MMYNPHSPRPZSSN-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)F","C11H2F20O2","546.10299999999995","47",NA,NA,NA +4423,"15290-77-4","DTXSID50880218","1H,1H,2H-Perfluorocyclopentane","IDBYQQQHBYGLEQ-UHFFFAOYSA-N","FC1CC(F)(F)C(F)(F)C1(F)F","C5H3F7","196.06800000000001","-",NA,NA,NA +4424,"35192-44-0","DTXSID90371872","1,8-Divinylperfluorooctane","JJLUWYULIBMDGF-UHFFFAOYSA-N","FC(F)(C=C)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C=C","C12H6F16","454.154","32",NA,NA,NA +4425,"375-01-9","DTXSID4059914","1H,1H-Heptafluorobutanol","WXJFKAZDSQLPBX-UHFFFAOYSA-N","OCC(F)(F)C(F)(F)C(F)(F)F","C4H3F7O","200.05600000000001","96",NA,NA,NA +4426,"355-66-8","DTXSID80310730","Octafluoroadipamide","SVURUIRNGAQISR-UHFFFAOYSA-N","NC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(N)=O","C6H4F8N2O2","288.09699999999998","44",NA,NA,NA +4427,"374-98-1","DTXSID4059912","Heptafluorobutyl iodide","AFHPVXVEXINDFS-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)CI","C4H2F7I","309.95299999999997","51",NA,NA,NA +4428,"336-08-3","DTXSID4059833","Octafluoroadipic acid","AXRSOGFYDSXLQX-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(O)=O","C6H2F8O4","290.065","80",NA,NA,NA +4429,"329710-76-1","DTXSID00442840","2-(Trifluoromethoxy)ethyl trifluoromethanesulfonate","XNNJMXBWUMKLRR-UHFFFAOYSA-N","FC(F)(F)OCCOS(=O)(=O)C(F)(F)F","C4H4F6O4S","262.12","30",NA,NA,NA +4430,"376-73-8","DTXSID8059926","Hexafluoroglutaric acid","CCUWGJDGLACFQT-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(O)=O","C5H2F6O4","240.05699999999999","67",NA,NA,NA +4431,"678-95-5","DTXSID5060986","1H,1H,5H,5H-Perfluoro-1,5-pentanediol diacrylate","DOZNAYNLYNBXKE-UHFFFAOYSA-N","FC(F)(COC(=O)C=C)C(F)(F)C(F)(F)COC(=O)C=C","C11H10F6O4","320.18700000000001","36",NA,NA,NA +4432,"73609-36-6","DTXSID00223797","Dichloromethyl((perfluorohexyl)ethyl)silane","VBDMVWQNRXVEGC-UHFFFAOYSA-N","C[Si](Cl)(Cl)CCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C9H7Cl2F13Si","461.12","37",NA,NA,NA +4433,"21652-58-4","DTXSID7074616","1H,1H,2H-Perfluoro-1-decene","NKAMGQZDVMQEJL-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C=C","C10H3F17","446.10700000000003","74",NA,NA,NA +4434,"377-38-8","DTXSID8059928","Tetrafluorosuccinic acid","YUDUFRYTKFGQCL-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(O)=O","C4H2F4O4","190.05","73",NA,NA,NA +4435,"376-90-9","DTXSID3059927","Hexafluoroamylene glycol","IELVMUPSWDZWSD-UHFFFAOYSA-N","OCC(F)(F)C(F)(F)C(F)(F)CO","C5H6F6O2","212.09100000000001","74",NA,NA,NA +4436,"77953-71-0","DTXSID70379295","3H-Perfluoro-2,2,4,4-tetrahydroxypentane","NZCXKNVJJQJKKN-UHFFFAOYSA-N","OC(O)(C(F)C(O)(O)C(F)(F)F)C(F)(F)F","C5H5F7O4","262.08","29",NA,NA,NA +4437,"4180-26-1","DTXSID00194615","1H,1H,9H-Perfluorononyl acrylate","QXDKTLFTMZTCKT-UHFFFAOYSA-N","FC(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)COC(=O)C=C","C12H6F16O2","486.15199999999999","40",NA,NA,NA +4438,"662-50-0","DTXSID2060965","Heptafluorobutyramide","FOBJABJCODOMEO-UHFFFAOYSA-N","NC(=O)C(F)(F)C(F)(F)C(F)(F)F","C4H2F7NO","213.05500000000001","61",NA,NA,NA +4439,"307-31-3","DTXSID70381151","Perfluorooctanamidine","VHJKOLAKAFYZMC-UHFFFAOYSA-N","NC(=N)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H3F15N2","412.10199999999998","36",NA,NA,NA +4440,"422-64-0","DTXSID8059970","Perfluoropropanoic acid","LRMSQVBRUNSOJL-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)F","C3HF5O2","164.03100000000001","120",NA,NA,NA +4441,"2144-53-8","DTXSID3047558","6:2 Fluorotelomer methacrylate","CDXFIRXEAJABAZ-UHFFFAOYSA-N","CC(=C)C(=O)OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C12H9F13O2","432.18099999999998","79",NA,NA,NA +466,"2144-53-8","DTXSID3047558","6:2 Fluorotelomer methacrylate","CDXFIRXEAJABAZ-UHFFFAOYSA-N","CC(=C)C(=O)OCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C12H9F13O2","432.18099999999998","79",NA,NA,NA +4442,"53296-64-3","DTXSID40379666","N-Methyl-N-trimethylsilylheptafluorobutyramide","CMXKINNDZCNCEI-UHFFFAOYSA-N","CN(C(=O)C(F)(F)C(F)(F)C(F)(F)F)[Si](C)(C)C","C8H12F7NOSi","299.26400000000001","37",NA,NA,NA +4443,"54009-81-3","DTXSID00379884","3-(Perfluoro-3-methylbutyl)-1,2-propenoxide","BKXKCZGEIQKTBI-UHFFFAOYSA-N","FC(F)(F)C(F)(C(F)(F)F)C(F)(F)C(F)(F)CC1CO1","C8H5F11O","326.10899999999998","23",NA,NA,NA +4444,"2043-52-9","DTXSID90880156","1-Iodo-1H,1H,2H,2H-perfluorononane","QVTHRDRXTVTNEK-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CCI","C9H4F15I","524.01199999999994","-",NA,NA,NA +4445,"74427-22-8","DTXSID30378880","2,2-Difluoroethyl triflate","NKULBUOBGILEAR-UHFFFAOYSA-N","FC(F)COS(=O)(=O)C(F)(F)F","C3H3F5O3S","214.11","62",NA,NA,NA +4446,"25600-66-2","DTXSID50382621","7:3 Fluorotelomer alcohol","LWCLGUDCFDTQBF-UHFFFAOYSA-N","OCCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C10H7F15O","428.14100000000002","27",NA,NA,NA +4447,"2043-55-2","DTXSID1047578","1H,1H,2H,2H-Perfluorohexyl iodide","CXHFIVFPHDGZIS-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)CCI","C6H4F9I","373.988","78",NA,NA,NA +4448,"20825-07-4","DTXSID90174941","3H,3H-Perfluoro-2,4-hexanedione","MGKBKOFWQWACLM-UHFFFAOYSA-N","FC(F)(F)C(=O)CC(=O)C(F)(F)C(F)(F)F","C6H2F8O2","258.06700000000001","45",NA,NA,NA +4449,"377-73-1","DTXSID70191136","Perfluoro-3-methoxypropanoic acid","AGIMOOYNBDLMJV-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)OC(F)(F)F","C4HF7O3","230.03800000000001","34",NA,NA,NA +4450,"375-22-4","DTXSID4059916","Perfluorobutanoic acid","YPJUNDFVDDCYIH-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)F","C4HF7O2","214.03899999999999","123",NA,NA,NA +4451,"754-96-1","DTXSID50369896","1H,1H,10H,10H-Perfluorodecane-1,10-diol","NSKCTPBWPZPFHW-UHFFFAOYSA-N","OCC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)CO","C10H6F16O2","462.13","38",NA,NA,NA +4452,"7383-71-3","DTXSID10224331","2,2,3,3-Tetrafluoropropyl acrylate","VHJHZYSXJKREEE-UHFFFAOYSA-N","FC(F)C(F)(F)COC(=O)C=C","C6H6F4O2","186.10599999999999","47",NA,NA,NA +10023,"1/9/2264","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +4454,"865-79-2","DTXSID30382104","9-Chloro-perfluorononanoic acid","QDGYPYFSHOUVLE-UHFFFAOYSA-N","OC(=O)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)Cl","C9HClF16O2","480.53","40",NA,NA,NA +4455,"307-35-7","DTXSID5027140","Perfluorooctanesulfonyl fluoride","BHFJBHMTEDLICO-UHFFFAOYSA-N","FC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)S(F)(=O)=O","C8F18O2S","502.12","90",NA,NA,NA +4456,"356-02-5","DTXSID00379268","3:3 Fluorotelomer carboxylic acid","ISFKSWMQWIRDNC-UHFFFAOYSA-N","OC(=O)CCC(F)(F)C(F)(F)C(F)(F)F","C6H5F7O2","242.09299999999999","55",NA,NA,NA +4457,"559-14-8","DTXSID40204489","Perfluorooct-1-ene","YCBPKOZNGFQMPB-UHFFFAOYSA-N","FC(F)=C(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8F16","400.06200000000001","46",NA,NA,NA +10001,"113096-99-4","DTXSID0032601","Cyproconazole","UFNOUKDBUJZYDE-UHFFFAOYSA-N","CC(C1CC1)C(O)(CN1C=NC=N1)C1=CC=C(Cl)C=C1","C15H18ClN3O","291.77999999999997","101","pesticide","Unclassified",NA +10002,"119611-00-6","DTXSID8032548","Fenbuconazole","RQDJADAKIFFEKQ-UHFFFAOYSA-N","ClC1=CC=C(CCC(CN2C=NC=N2)(C#N)C2=CC=CC=C2)C=C1","C19H17ClN4","336.82","74","pesticide","Unclassified",NA +10003,"207122-15-4","DTXSID3052692","2,2',4,4',5,6'-Hexabromodiphenyl ether","VHNPZYZQKWIWOD-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC(Br)=C(Br)C=C2Br)C(Br)=C1","C12H4Br6O","643.58699999999999","35","flameRetardant","PBDE","2,2',4,4',5,6'-Hexabromodiphenyl ether is an aromatic ether and an organobromine compound." +10004,"207122-16-5","DTXSID8052693","2,2',3,4,4',5',6-Heptabromodiphenyl ether","ILPSCQCLBHQUEM-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=C(Br)C=C(Br)C(Br)=C2Br)C=C1Br","C12H3Br7O","722.48299999999995","33",NA,NA,"2,2',3,4,4',5',6-Heptabromodiphenyl ether is an aromatic ether and an organobromine compound." +10005,"2237-14-1","DTXSID50480171","p-Benzoquinone-d4","AZQWKYJCGOJGHM-RHQRLBAQSA-N","[2H]C1=C([2H])C(=O)C([2H])=C([2H])C1=O","C6D4O2","112.12","12",NA,NA,"p-Benzoquinone is a superoxide scavenger that has been used in the characterization of carnation-like SnS2 nanostructure photocatalysts for photodegredation. p-Benzoquinone is a toxic metabolite found in human blood." +10006,"28804-88-8","DTXSID7025130","Dimethylnaphthalene","-","C*.C*.C1=CC2=C(C=C1)C=CC=C2 |c:2,6,9,11,m:1:4.5,3:4.8.9.10.11.12.13|","-","-","-",NA,NA,"1,2-dimethylnaphthalene is a dimethylnaphthalene carrying methyl groups at positions 1 and 2." +10007,"5385-22-8","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +10008,"62-53-3","DTXSID8020090","Aniline","PAYRUJLWNCNPSJ-UHFFFAOYSA-N","NC1=CC=CC=C1","C6H7N","93.129000000000005","341","industrial","aniline","Aniline is a clear to slightly yellow liquid with a characteristic odor. It does not readily evaporate at room temperature. Aniline is slightly soluble in water and mixes readily with most organic solvents. Aniline is used to make a wide variety of products such as polyurethane foam, agricultural chemicals, synthetic dyes, antioxidants, stabilizers for the rubber industry, herbicides, varnishes and explosives." +10009,"64257-84-7","DTXSID0024002","Fenpropathrin","XQUXKZZNEFRCAW-UHFFFAOYSA-N","CC1(C)C(C(=O)OC(C#N)C2=CC=CC(OC3=CC=CC=C3)=C2)C1(C)C","C22H23NO3","349.43","101","pesticide","Unclassified",NA +10010,"79127-80-3","DTXSID7032393","Fenoxycarb","HJUFTIJOISQSKQ-UHFFFAOYSA-N","CCOC(=O)NCCOC1=CC=C(OC2=CC=CC=C2)C=C1","C17H19NO4","301.34199999999998","85","pesticide","Unclassified",NA +10011,"213-46-7","DTXSID8073895","Picene","GBROPGWFBFCKAG-UHFFFAOYSA-N","C1=CC=C2C(C=CC3=C4C=CC5=CC=CC=C5C4=CC=C23)=C1","C22H14","278.35399999999998","76",NA,"PAH","Picene is a hydrocarbon found in the pitchy residue obtained in the distillation of peat tar and of petroleum." +10012,"59919-41-4","DTXSID70208637","Naphthalene, 2,6-diethyl-","CJJFFBINNGWEBO-UHFFFAOYSA-N","CCC1=CC2=C(C=C1)C=C(CC)C=C2","C14H16","184.28200000000001","27",NA,"PAH",NA +10004,"207122-16-5","DTXSID8052693","2,2',3,4,4',5',6-Heptabromodiphenyl ether","ILPSCQCLBHQUEM-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=C(Br)C=C(Br)C(Br)=C2Br)C=C1Br","C12H3Br7O","722.48299999999995","33",NA,NA,"2,2',3,4,4',5',6-Heptabromodiphenyl ether is an aromatic ether and an organobromine compound." +1171,"56-55-3","DTXSID5023902","Benz(a)anthracene","DXBHBZVCASKNBY-UHFFFAOYSA-N","C1=CC2=C(C=C1)C=C1C(C=CC3=C1C=CC=C3)=C2","C18H12","228.29400000000001","128",NA,"PAH","Benz[a]anthracene is a crystalline, aromatic hydrocarbon consisting of four fused benzene rings, produced by incomplete combustion of organic matter. Benz(a)anthracene is primarily found in gasoline and diesel exhaust, tobacco and cigarette smoke, coal tar and coal tar pitch, coal combustion emissions, charcoal-broiled foods, amino acids, fatty acids and carbohydrate pyrolysis products, wood and soot smoke, and creosote, asphalt and mineral oils. This substance is used only for research purposes. Benz(a)anthracene is reasonably anticipated to be a human carcinogen." +1161,"56-55-3","DTXSID5023902","Benz(a)anthracene","DXBHBZVCASKNBY-UHFFFAOYSA-N","C1=CC2=C(C=C1)C=C1C(C=CC3=C1C=CC=C3)=C2","C18H12","228.29400000000001","128",NA,"PAH","Benz[a]anthracene is a crystalline, aromatic hydrocarbon consisting of four fused benzene rings, produced by incomplete combustion of organic matter. Benz(a)anthracene is primarily found in gasoline and diesel exhaust, tobacco and cigarette smoke, coal tar and coal tar pitch, coal combustion emissions, charcoal-broiled foods, amino acids, fatty acids and carbohydrate pyrolysis products, wood and soot smoke, and creosote, asphalt and mineral oils. This substance is used only for research purposes. Benz(a)anthracene is reasonably anticipated to be a human carcinogen." +1200,"789440-10-4","DTXSID90274172","bis(1-Chloropropan-2-yl) hydrogen phosphate","ORAAZVDXWSKZHK-UHFFFAOYSA-N","CC(CCl)OP(O)(=O)OC(C)CCl","C6H13Cl2O4P","251.04","9",NA,NA,NA +155,"3074-03-1","DTXSID70184760","11H-Benzo(b)fluoren-11-one","MLMNDNOSVOKYMT-UHFFFAOYSA-N","O=C1C2=CC=CC=C2C2=CC3=CC=CC=C3C=C12","C17H10O","230.26599999999999","57",NA,NA,NA +1579,"32534-81-9","DTXSID2024246","Pentabromodiphenyl ether","-","[*]C1=C([*])C([*])=C(OC2=C([*])C([*])=C([*])C([*])=C2[*])C([*])=C1[*] |$_R1;;;_R1;;_R1;;;;;_R1;;_R1;;_R1;;_R1;;_R1;;_R1;;_R1$,c:1,8,16,21,t:5,12,lp:7:2,RG:_R1={Br* |$;_AP1$,lp:0:3|},LOG={_R1:;H;5}|","C12O","160.131","-",NA,NA,NA +1616,"191-30-0","DTXSID9059753","Dibenzo[a,l]pyrene","JNTHRSHGARDABO-UHFFFAOYSA-N","C1=CC=C2C(=C1)C=C1C=CC3=C4C(=CC=C3)C3=CC=CC=C3C2=C14","C24H14","302.37599999999998","61",NA,"PAH","Dibenzo (a,l) pyrene is a yellowish-reddish, carcinogenic aromatic hydrocarbon consisting of six fused rings and produced by the incomplete combustion of organic matter. Dibenzo[a,e]pyrene is primarily found in coal gasification products, cigarette smoke and fossil fuels. This substance is used only for research purposes to induce tumorigenesis. Dibenzo[a,e]pyrene is a mutagen and is reasonably anticipated to be a human carcinogen." +1614,"191-30-0","DTXSID9059753","Dibenzo[a,l]pyrene","JNTHRSHGARDABO-UHFFFAOYSA-N","C1=CC=C2C(=C1)C=C1C=CC3=C4C(=CC=C3)C3=CC=CC=C3C2=C14","C24H14","302.37599999999998","61",NA,"PAH","Dibenzo (a,l) pyrene is a yellowish-reddish, carcinogenic aromatic hydrocarbon consisting of six fused rings and produced by the incomplete combustion of organic matter. Dibenzo[a,e]pyrene is primarily found in coal gasification products, cigarette smoke and fossil fuels. This substance is used only for research purposes to induce tumorigenesis. Dibenzo[a,e]pyrene is a mutagen and is reasonably anticipated to be a human carcinogen." +1647,"11-55-2781","-","Chemical name unknown","-","-","-","-","-",NA,NA,NA +3144,"13674-87-8","DTXSID9026261","Tris(1,3-dichloro-2-propyl) phosphate","ASLWPAWFJZFCKF-UHFFFAOYSA-N","ClCC(CCl)OP(=O)(OC(CCl)CCl)OC(CCl)CCl","C9H15Cl6O4P","430.89","89",NA,NA,"Tris(1,3-dichloro-2-propyl)phosphate is a clear colorless viscous liquid. Generally a super-cooled liquid at room temperature but may occasionally solidify when held at low temperatures for prolonged periods." +3143,"13674-87-8","DTXSID9026261","Tris(1,3-dichloro-2-propyl) phosphate","ASLWPAWFJZFCKF-UHFFFAOYSA-N","ClCC(CCl)OP(=O)(OC(CCl)CCl)OC(CCl)CCl","C9H15Cl6O4P","430.89","89",NA,NA,"Tris(1,3-dichloro-2-propyl)phosphate is a clear colorless viscous liquid. Generally a super-cooled liquid at room temperature but may occasionally solidify when held at low temperatures for prolonged periods." +4407,"3792-02-7","DTXSID60377821","4:4 Fluorotelomer alcohol","FROXCSGRCWYTIE-UHFFFAOYSA-N","OCCCCC(F)(F)C(F)(F)C(F)(F)C(F)(F)F","C8H9F9O","292.14499999999998","31",NA,NA,NA +467,"79-94-7","DTXSID1026081","3,3',5,5'-Tetrabromobisphenol A","VEORPZCZECFIRK-UHFFFAOYSA-N","CC(C)(C1=CC(Br)=C(O)C(Br)=C1)C1=CC(Br)=C(O)C(Br)=C1","C15H12Br4O2","543.875","141",NA,NA,"Tetrabromobisphenol a is a white powder. A monomer for flame-retardant epoxy, polyester and polycarboante resins." +441,"79-94-7","DTXSID1026081","3,3',5,5'-Tetrabromobisphenol A","VEORPZCZECFIRK-UHFFFAOYSA-N","CC(C)(C1=CC(Br)=C(O)C(Br)=C1)C1=CC(Br)=C(O)C(Br)=C1","C15H12Br4O2","543.875","141",NA,NA,"Tetrabromobisphenol a is a white powder. A monomer for flame-retardant epoxy, polyester and polycarboante resins." +697,"7496-02-8","DTXSID9075454","6-Nitrochrysene","UAWLTQJFZUYROA-UHFFFAOYSA-N","[O-][N+](=O)C1=CC2=C(C=CC3=CC=CC=C23)C2=CC=CC=C12","C18H11NO2","273.291","46",NA,"PAH",NA +946,"6373-11-1","DTXSID90311753","1,2-Aceanthrylenedione","YAIBDWAANBTYIA-UHFFFAOYSA-N","O=C1C(=O)C2=C3C1=CC=CC3=CC1=CC=CC=C21","C16H8O2","232.238","49",NA,NA,NA +10024,"96-12-8","DTXSID3020413","1,2-Dibromo-3-chloropropane","WBEJYOJJBDISQU-UHFFFAOYSA-N","ClCC(Br)CBr","C3H5Br2Cl","236.33","86","pesticide;pesticide","Unclassified","1,2-Dibromo-3-chloropropane, (dibromochloropropane) better known as DBCP, is the organic compound with the formula BrCH(CH2Br)(CH2Cl). It is a dense colorless liquid although commercial samples often appear amber or even brown. It is the active ingredient in the nematicide Nemagon, also known as Fumazone." +10024,"96-12-8","DTXSID30872595","Chlorodibromopropane","WBEJYOJJBDISQU-UHFFFAOYSA-N","ClCC(Br)CBr","C3H5Br2Cl","236.33","86","pesticide;pesticide","Unclassified","1,2-Dibromo-3-chloropropane, (dibromochloropropane) better known as DBCP, is the organic compound with the formula BrCH(CH2Br)(CH2Cl). It is a dense colorless liquid although commercial samples often appear amber or even brown. It is the active ingredient in the nematicide Nemagon, also known as Fumazone." +10025,"134-32-7","DTXSID7020920","1-Naphthylamine","RUFPHBVGCFYCNW-UHFFFAOYSA-N","NC1=CC=CC2=C1C=CC=C2","C10H9N","143.189","158","industrial","Unclassified","1-Naphthylamine is an aromatic amine derived from naphthalene. It can cause bladder cancer (transitional cell carcinoma). It crystallizes in colorless needles which melt at 50 °C. " +10026,"40186-71-8","DTXSID4074148","2,2',3,3',4,5',6,6'-Octachlorobiphenyl","LJQOBQLZTUSEJA-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H2Cl8","429.75","32",NA,"PCB",NA +10027,"60233-25-2","DTXSID9074193","2,2',3,4',6'-Pentachlorobiphenyl","GOFFZTAPOOICFT-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C(Cl)=CC=C1","C12H5Cl5","326.42","26",NA,"PCB",NA +10028,"58-90-2","DTXSID9021716","2,3,4,6-Tetrachlorophenol","VGVRPFIJEJYOFN-UHFFFAOYSA-N","OC1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C6H2Cl4O","231.88","88","industrial;pulpAndPaper;pesticide","phenol",NA +10029,"57117-31-4","DTXSID7030066","2,3,4,7,8-Pentachlorodibenzofuran","OGBQILNBLMPPDP-UHFFFAOYSA-N","ClC1=CC2=C(C=C1Cl)C1=C(O2)C(Cl)=C(Cl)C(Cl)=C1","C12H3Cl5O","340.41","41",NA,"dioxinsAndFurans",NA +10030,"137-17-7","DTXSID9021398","2,4,5-Trimethylaniline","BMIPMKQAAJKBKP-UHFFFAOYSA-N","CC1=CC(C)=C(N)C=C1C","C9H13N","135.21","104","industrial","aniline",NA +10031,"53-19-0","DTXSID9020372","1-(2-Chlorophenyl)-1-(4-chlorophenyl)-2,2-dichloroethane","JWBOIMRXGHLCPP-UHFFFAOYSA-N","ClC(Cl)C(C1=CC=C(Cl)C=C1)C1=C(Cl)C=CC=C1","C14H10Cl4","320.03","203","pharmacological;pesticide","Unclassified","Mitotane, sold under the brand name Lysodren, is a steroidogenesis inhibitor and cytostatic antineoplastic medication which is used in the treatment of adrenocortical carcinoma and Cushing's syndrome." +10032,"3424-82-6","DTXSID4022313","o,p'-DDE","ZDYJWDIWLRZXDB-UHFFFAOYSA-N","ClC(Cl)=C(C1=CC=C(Cl)C=C1)C1=C(Cl)C=CC=C1","C14H8Cl4","318.02","63","pesticide","Unclassified",NA +10033,"87-65-0","DTXSID2025004","2,6-Dichlorophenol","HOLHYSJJBXSLMV-UHFFFAOYSA-N","OC1=C(Cl)C=CC=C1Cl","C6H4Cl2O","163","149","industrial;pulpAndPaper","phenol","2,6-Dichlorophenol is a compound with formula C6H3Cl2OH. It is one of the six isomers of dichlorophenol. It is a colorless solid." +10034,"88-74-4","DTXSID1025726","2-Nitroaniline","DPJCXCZTLWNFOH-UHFFFAOYSA-N","NC1=CC=CC=C1[N+]([O-])=O","C6H6N2O2","138.126","152","industrial","aniline","2-Nitroaniline is an organic compound with the formula H2NC6H4NO2. It is a derivative of aniline, carrying a nitro functional group in position 2." +10035,"88-75-5","DTXSID1021790","2-Nitrophenol","IQUPABOKLQSFBK-UHFFFAOYSA-N","OC1=C(C=CC=C1)[N+]([O-])=O","C6H5NO3","139.11","189","industrial","phenol",NA +10036,"16655-82-6","DTXSID2037506","3-Hydroxycarbofuran","RHSUJRQZTQNSLL-UHFFFAOYSA-N","CNC(=O)OC1=CC=CC2=C1OC(C)(C)C2O","C12H15NO4","237.255","56","industrial","Unclassified",NA +10037,"108-39-4","DTXSID6024200","m-Cresol","RLSSMJSEOOYNOY-UHFFFAOYSA-N","CC1=CC(O)=CC=C1","C7H8O","108.14","198","industrial","Unclassified","meta-Cresol, also 3-methylphenol, is an organic compound with the formula CH3C6H4(OH). It is a colourless, viscous liquid that is used as an intermediate in the production of other chemicals" +10038,"99-09-2","DTXSID6025725","3-Nitroaniline","XJCVRTZCHMZPBD-UHFFFAOYSA-N","NC1=CC(=CC=C1)[N+]([O-])=O","C6H6N2O2","138.126","145","industrial","aniline","3-Nitroaniline, also known as meta-nitroaniline and m-nitroaniline, is a non-volatile stable solid commonly used as a raw material for dyes. " +10039,"92-67-1","DTXSID5020071","4-Biphenylamine","DMVOXQPQNTYEKQ-UHFFFAOYSA-N","NC1=CC=C(C=C1)C1=CC=CC=C1","C12H11N","169.227","163","industrial","Unclassified","4-Aminobiphenyl (4-APB) is an organic compound with the formula C6H5C6H4NH2. It is an amine derivative of biphenyl. It is a colorless solid, although aged samples can appear colored. 4-Aminobiphenyl was commonly used in the past as a rubber antioxidant and an intermediate for dyes." +10040,"7005-72-3","DTXSID2052447","4-Chlorodiphenyl ether","PGPNJCAMHOJTEF-UHFFFAOYSA-N","ClC1=CC=C(OC2=CC=CC=C2)C=C1","C12H9ClO","204.65","102","industrial","haloEthers",NA +10041,"319-84-6","DTXSID2020684","alpha-1,2,3,4,5,6-Hexachlorocyclohexane","JLYXXMFPNIAWKQ-SHFUYGGZSA-N","Cl[C@H]1[C@H](Cl)[C@@H](Cl)[C@H](Cl)[C@H](Cl)[C@H]1Cl","C6H6Cl6","290.81","425","pharmacological;pesticide","Unclassified","α-Hexachlorocyclohexane (α-HCH) is an organochloride which is one of the isomers of hexachlorocyclohexane (HCH). It is a byproduct of the production of the insecticide lindane (γ-HCH) and it is typically still contained in commercial grade lindane used as insecticide." +10042,"5103-71-9","DTXSID6038326","cis-Chlordane","BIWJNBZANLAXMG-KMMBHOGFSA-N","Cl[C@H]1C[C@H]2[C@@H]([C@H]1Cl)[C@@]1(Cl)C(Cl)=C(Cl)[C@]2(Cl)C1(Cl)Cl","C10H6Cl8","409.76","24","pesticide","Unclassified",NA +10043,"2032-59-9","DTXSID7022172","Aminocarb","IMIDOCRTMDIQIJ-UHFFFAOYSA-N","CNC(=O)OC1=CC(C)=C(C=C1)N(C)C","C11H16N2O2","208.261","53","pesticide","Unclassified","Animocarb (Matacil) is an organic chemical compound with the molecular formula C11H16N2O2. It has a colorless or white crystal-like appearance and is most commonly used as an insecticide." +10044,"140-57-8","DTXSID3020097","Aramite","YKFRAOGHWKADFJ-UHFFFAOYSA-N","CC(COC1=CC=C(C=C1)C(C)(C)C)OS(=O)OCCCl","C15H23ClO4S","334.86","53","pesticide","Unclassified",NA +10045,"1610-17-9","DTXSID0037493","Atraton","PXWUKZGIHQRDHL-UHFFFAOYSA-N","CCNC1=NC(NC(C)C)=NC(OC)=N1","C9H17N5O","211.269","61","pesticide","Unclassified",NA +10046,"101-27-9","DTXSID3041617","Barban","MCOQHIWZJUDQIC-UHFFFAOYSA-N","ClCC#CCOC(=O)NC1=CC=CC(Cl)=C1","C11H9Cl2NO2","258.1","66","pesticide","Unclassified",NA +10047,"2425-06-1","DTXSID4020242","Captafol","JHRWWRDRBPCWTF-UHFFFAOYSA-N","ClC(Cl)C(Cl)(Cl)SN1C(=O)C2CC=CCC2C1=O","C10H9Cl4NO2S","349.05","62","pesticide","Unclassified","Captafol is a fungicide. It is used to control almost all fungal diseases of plants except powdery mildews. It is believed to be a human carcinogen, and production for use as a fungicide in the United States stopped in 1987. " +10048,"786-19-6","DTXSID7022120","Carbophenothion","VEDTXTNSFWUXGQ-UHFFFAOYSA-N","CCOP(=S)(OCC)SCSC1=CC=C(Cl)C=C1","C11H16ClO2PS3","342.85","62","pesticide","Unclassified","Carbophenothion also known as Stauffer R 1303 as for the manufacturer, Stauffer Chemical, is an organophosphorus chemical compound. It was used as a pesticide for citrus fruits under the name of Trithion" +10049,"470-90-6","DTXSID7034250","Chlorfenvinphos","FSAVDKDHPDSCTO-UHFFFAOYSA-N","CCOP(=O)(OCC)OC(=CCl)C1=C(Cl)C=C(Cl)C=C1","C12H14Cl3O4P","359.56","30","pesticide","Unclassified","Chlorfenvinphos is the common name of an organophosphorus compound that was widely used as an insecticide and an acaricide. The molecule itself can be described as an enol ester derived from dichloroacetophenone and diethylphosphonic acid." +10050,"5836-10-2","DTXSID5041778","Chloropropylate","AXGUBXVWZBFQGA-UHFFFAOYSA-N","CC(C)OC(=O)C(O)(C1=CC=C(Cl)C=C1)C1=CC=C(Cl)C=C1","C17H16Cl2O3","339.21","46","pesticide","Unclassified",NA +10051,"5103-73-1","DTXSID40872581","cis-Nonachlordane","OCHOKXCPKDPNQU-KCCZGPNFSA-N","[H][C@]12[C@H](Cl)[C@H](Cl)[C@H](Cl)[C@@]1([H])[C@@]1(Cl)C(Cl)=C(Cl)[C@]2(Cl)C1(Cl)Cl","C10H5Cl9","444.2","35","pesticide","Unclassified",NA +10052,"7700-17-6","DTXSID6037514","Crotoxyphos","XXXSILNSXNPGKG-ZHACJKMWSA-N","COP(=O)(OC)O\C(C)=C\C(=O)OC(C)C1=CC=CC=C1","C14H19O6P","314.274","42","pesticide","Unclassified",NA +10053,"5989-27-5","DTXSID1020778","D-Limonene","XMGQYMWWDOXHJM-JTQLQIEISA-N","CC(=C)[C@@H]1CCC(C)=CC1","C10H16","136.238","109","personalCare;natural;consumerProduct","Unclassified","Limonene, (+)- is an oral dietary supplement containing a natural cyclic monoterpene, and a major component of the oil extracted from citrus peels, with potential chemopreventive and antineoplastic activities." +10054,"319-86-8","DTXSID5024134","delta-Hexachlorocyclohexane","JLYXXMFPNIAWKQ-GPIVLXJGSA-N","Cl[C@H]1[C@H](Cl)[C@@H](Cl)[C@H](Cl)[C@H](Cl)[C@@H]1Cl","C6H6Cl6","290.81","425","pesticide","Unclassified","Lindane is the gamma-isomer of benzene hexachloride, a colorless to white colored, synthetic, crystalline solid with a slight musty odor that emits toxic fumes of hydrochloric acid and other chlorinated compounds when heated to decomposition" +10055,"126-75-0","DTXSID9037535","Demeton-S","GRPRVIYRYGLIJU-UHFFFAOYSA-N","CCOP(=O)(OCC)SCCSCC","C8H19O3PS2","258.33","62","pesticide","Unclassified","Demeton-S is an organothiophosphorus compound." +10056,"2303-16-4","DTXSID2020391","Diallate","SPANOECCGNXGNR-UHFFFAOYSA-N","CC(C)N(C(C)C)C(=O)SCC(Cl)=CCl","C10H17Cl2NOS","270.21","25","pesticide","Unclassified",NA +10057,"192-65-4","DTXSID3052690","Dibenzo(a,e)pyrene","KGHMWBNEMFNJFZ-UHFFFAOYSA-N","C1=CC2=CC3=C4C(C=CC5=C4C(=CC=C5)C4=C3C=CC=C4)=C2C=C1","C24H14","302.376","57",NA,"PAH",NA +10058,"117-80-6","DTXSID7020425","Dichlone","SVPKNMBRVBMTLB-UHFFFAOYSA-N","ClC1=C(Cl)C(=O)C2=C(C=CC=C2)C1=O","C10H4Cl2O2","227.04","128","pesticide;pesticide","OPAH",NA +10059,"115-90-2","DTXSID6021953","Fensulfothion","XDNBJTQLKCIJBV-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC=C(C=C1)S(C)=O","C11H17O4PS2","308.35","69","pesticide","Unclassified",NA +10060,"101-42-8","DTXSID7037551","Fenuron","XXOYNJXVWVNOOJ-UHFFFAOYSA-N","CN(C)C(=O)NC1=CC=CC=C1","C9H12N2O","164.208","122","pesticide","Unclassified",NA +10061,"33245-39-5","DTXSID9032614","Fluchloralin","MNFMIVVPXOGUMX-UHFFFAOYSA-N","CCCN(CCCl)C1=C(C=C(C=C1[N+]([O-])=O)C(F)(F)F)[N+]([O-])=O","C12H13ClF3N3O4","355.7","51","pesticide","Unclassified",NA +10062,"5103-74-2","DTXSID4038346","trans-Chlordane","BIWJNBZANLAXMG-MPPHZFHBSA-N","[H][C@]12C[C@@H](Cl)[C@H](Cl)[C@@]1([H])[C@@]1(Cl)C(Cl)=C(Cl)[C@]2(Cl)C1(Cl)Cl","C10H6Cl8","409.76","19","pesticide","Unclassified",NA +10063,"465-73-6","DTXSID7042065","Isodrin","QBYJBZPUGVGKQQ-WVWMLWNASA-N","ClC1=C(Cl)[C@]2(Cl)[C@@H]3[C@@H]4C[C@H](C=C4)[C@@H]3[C@@]1(Cl)C2(Cl)Cl","C12H8Cl6","364.9","4","pesticide","Unclassified",NA +10064,"21609-90-5","DTXSID3040279","Leptophos","CVRALZAYCYJELZ-UHFFFAOYSA-N","COP(=S)(OC1=CC(Cl)=C(Br)C=C1Cl)C1=CC=CC=C1","C13H10BrCl2O2PS","412.06","62","pesticide","Unclassified",NA +10065,"150-50-5","DTXSID6024173","Merphos","KLAPGAOQRZTCBI-UHFFFAOYSA-N","CCCCSP(SCCCC)SCCCC","C12H27PS3","298.5","43","pesticide","Unclassified",NA +10066,"2032-65-7","DTXSID3032626","Methiocarb","YFBPRJGDJKVWAH-UHFFFAOYSA-N","CNC(=O)OC1=CC(C)=C(SC)C(C)=C1","C11H15NO2S","225.31","73","pesticide","Unclassified",NA +10067,"950-35-6","DTXSID5037571","Methylparaoxon","BAFQDKPJKOLXFZ-UHFFFAOYSA-N","COP(=O)(OC)OC1=CC=C(C=C1)[N+]([O-])=O","C8H10NO6P","247.143","48","pesticide","Unclassified",NA +10068,"152-16-9","DTXSID0042373","Octamethylpyrophosphoramide","SZKKRCSOSQAJDE-UHFFFAOYSA-N","CN(C)P(=O)(OP(=O)(N(C)C)N(C)C)N(C)C","C8H24N4O3P2","286.253","40","pesticide","Unclassified",NA +10069,"13171-21-6","DTXSID7021156","Phosphamidon","RGCLLPNLLBQHPF-UHFFFAOYSA-N","CCN(CC)C(=O)C(Cl)=C(C)OP(=O)(OC)OC","C10H19ClNO5P","299.69","25","pesticide","Unclassified",NA +10069,"13171-21-6","DTXSID7021156","Phosphamidon","RGCLLPNLLBQHPF-UHFFFAOYSA-N","CCN(CC)C(=O)C(Cl)=C(C)OP(=O)(OC)OC","C10H19ClNO5P","299.69","25","pesticide","Unclassified",NA +10070,"2631-37-0","DTXSID4037617","Promecarb","DTAPQAJKAFRNJB-UHFFFAOYSA-N","CNC(=O)OC1=CC(=CC(C)=C1)C(C)C","C12H17NO2","207.273","52","pesticide","Unclassified",NA +10071,"1918-16-7","DTXSID4024274","Propachlor","MFOUDYKPLGXPGO-UHFFFAOYSA-N","CC(C)N(C(=O)CCl)C1=CC=CC=C1","C11H14ClNO","211.69","116","pesticide","Unclassified",NA +10072,"122-42-9","DTXSID7020766","Propham","VXPLXMJHHKHSOA-UHFFFAOYSA-N","CC(C)OC(=O)NC1=CC=CC=C1","C10H13NO2","179.219","88","pesticide","Unclassified",NA +10073,"34643-46-4","DTXSID8042349","Prothiofos","FITIWKDOCAUBQD-UHFFFAOYSA-N","CCCSP(=S)(OCC)OC1=C(Cl)C=C(Cl)C=C1","C11H15Cl2O2PS2","345.23","57","pesticide","Unclassified",NA +10074,"299-84-3","DTXSID2034885","Fenchlorphos","JHJOOSLFWRRSGU-UHFFFAOYSA-N","COP(=S)(OC)OC1=C(Cl)C=C(Cl)C(Cl)=C1","C8H8Cl3O3PS","321.53","72","pesticide","Unclassified",NA +10075,"297-97-2","DTXSID8042470","Thionazin","IRVDMKJLOCGUBJ-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CN=CC=N1","C8H13N2O3PS","248.24","43","pesticide","Unclassified",NA +10076,"39300-45-3","DTXSID3040352","Dinocap",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10077,"6988-21-2","DTXSID2041886","Dioxacarb","SDKQRNRRDYRQKY-UHFFFAOYSA-N","CNC(=O)OC1=C(C=CC=C1)C1OCCO1","C11H13NO4","223.228","43","pesticide","Unclassified",NA +10078,"957-51-7","DTXSID8024072","Diphenamid","QAHFOPIILNICLA-UHFFFAOYSA-N","CN(C)C(=O)C(C1=CC=CC=C1)C1=CC=CC=C1","C16H17NO","239.318","77","pesticide","Unclassified",NA +10079,"2497-06-5","DTXSID8041901","Disulfoton sulfone","BKVJOVPVLOJPKJ-UHFFFAOYSA-N","CCOP(=S)(OCC)SCCS(=O)(=O)CC","C8H19O4PS3","306.39","38","pesticide","Unclassified",NA +10080,"33213-65-9","DTXSID8037540","Endosulfan II","RDYMFSUJUZBWLH-BRZMKDEISA-N","ClC1=C(Cl)[C@@]2(Cl)[C@@H]3COS(=O)OC[C@@H]3[C@@]1(Cl)C2(Cl)Cl","C9H6Cl6O3S","406.9","5","pesticide","Unclassified",NA +10081,"1031-07-8","DTXSID3037541","Endosulfan sulfate","AAPVQEMYVNZIOO-DDYGQXQVSA-N","ClC1=C(Cl)[C@]2(Cl)[C@@H]3COS(=O)(=O)OC[C@@H]3[C@@]1(Cl)C2(Cl)Cl","C9H6Cl6O4S","422.9","30","pesticide","Unclassified",NA +10082,"7421-93-4","DTXSID0047743","Endrin aldehyde","HCTWZIFNBBCVGM-YFQUMFGZSA-N","[H][C@@]12[C@@]3([H])C[C@@H](C=O)[C@]4([H])[C@@]3([H])[C@@]3(Cl)[C@]1(Cl)[C@]2(Cl)[C@@]4(Cl)C3(Cl)Cl","C12H8Cl6O","380.9","2","pesticide;pesticide;pesticide","Unclassified",NA +10083,"53494-70-5","DTXSID00872845","Endrin ketone","IZHZFAQWVKBTSL-YTMKBKNTSA-N","[H][C@@]12C[C@@]3([H])[C@@]([H])(C1=O)[C@@]1(Cl)[C@H](Cl)[C@@]4(Cl)[C@]2([H])[C@]3([H])[C@]1(Cl)C4(Cl)Cl","C12H8Cl6O","380.9","8","pesticide","Unclassified",NA +10084,"52-85-7","DTXSID7041966","Famphur","JISACBWYRJHSMG-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC=C(C=C1)S(=O)(=O)N(C)C","C10H16NO5PS2","325.33","51","pesticide;pesticide","Unclassified",NA +10085,"118-74-1","DTXSID2020682","Hexachlorobenzene","CKAPSXZOOQJIBF-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C6Cl6","284.77","96","industrial;pesticide","Unclassified",NA +10086,"27304-13-8","DTXSID9044166","Oxychlordane","VWGNQYSIWFHEQU-KGEUUOKHSA-N","Cl[C@H]1[C@H]2[C@@H]([C@H]3O[C@@]13Cl)[C@@]1(Cl)C(Cl)=C(Cl)[C@]2(Cl)C1(Cl)Cl","C10H4Cl8O","423.74","7","pesticide","Unclassified",NA +10087,"1114-71-2","DTXSID8021199","Pebulate","SGEJQUSYQTVSIU-UHFFFAOYSA-N","CCCCN(CC)C(=O)SCCC","C10H21NOS","203.34","56","pesticide","Unclassified",NA +10088,"608-93-5","DTXSID7024247","Pentachlorobenzene","CEOCDNVZRAIOQZ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(Cl)=C1Cl","C6HCl5","250.32","91","industrial;pesticide;pesticide","Unclassified",NA +10089,"26259-45-0","DTXSID8037594","Secbumeton","ZJMZZNVGNSWOOM-UHFFFAOYSA-N","CCNC1=NC(OC)=NC(NC(C)CC)=N1","C10H19N5O","225.296","44","pesticide","Unclassified",NA +10090,"1014-70-6","DTXSID8037596","Simetryn","MGLWZSOBALDPEK-UHFFFAOYSA-N","CCNC1=NC(SC)=NC(NCC)=N1","C8H15N5S","213.3","80","pesticide","Unclassified",NA +10091,"3689-24-5","DTXSID7024328","Sulfotepp","XIUROWKZWPIAIB-UHFFFAOYSA-N","CCOP(=S)(OCC)OP(=S)(OCC)OCC","C8H20O5P2S2","322.31","62","pesticide","Unclassified",NA +10092,"35400-43-2","DTXSID8032675","Sulprofos","JXHJNEJVUNHLKO-UHFFFAOYSA-N","CCCSP(=S)(OCC)OC1=CC=C(SC)C=C1","C12H19O2PS3","322.44","45","pesticide","Unclassified",NA +10093,"1918-18-9","DTXSID7042437","Swep","WOZQBERUBLYCEG-UHFFFAOYSA-N","COC(=O)NC1=CC(Cl)=C(Cl)C=C1","C8H7Cl2NO2","220.05","63","pesticide;pesticide","Unclassified",NA +10094,"95-06-7","DTXSID7021289","Sulfallate","XJCLWVXTCRQIDI-UHFFFAOYSA-N","CCN(CC)C(=S)SCC(Cl)=C","C8H14ClNS2","223.78","59","pesticide","Unclassified",NA +10095,"886-50-0","DTXSID3024318","Terbutryn","IROINLKCQGIITA-UHFFFAOYSA-N","CCNC1=NC(SC)=NC(NC(C)(C)C)=N1","C10H19N5S","241.36","107","pesticide","Unclassified",NA +10096,"107-49-3","DTXSID3034957","Tetraethyl pyrophosphate","IDCBOTIENDVCBQ-UHFFFAOYSA-N","CCOP(=O)(OCC)OP(=O)(OCC)OCC","C8H20O7P2","290.189","57","pharmacological;pesticide","Unclassified",NA +10097,"39765-80-5","DTXSID5052709","trans-Nonachlor","OCHOKXCPKDPNQU-DFACZZRHSA-N","Cl[C@H]1[C@H](Cl)[C@@H]2[C@H]([C@@H]1Cl)[C@]1(Cl)C(Cl)=C(Cl)[C@@]2(Cl)C1(Cl)Cl","C10H5Cl9","444.2","35","pesticide","Unclassified",NA +10098,"78-32-0","DTXSID5052676","Tris(4-methylphenyl) phosphate","BOSMZFBHAYFUBJ-UHFFFAOYSA-N","CC1=CC=C(OP(=O)(OC2=CC=C(C)C=C2)OC2=CC=C(C)C=C2)C=C1","C21H21O4P","368.369","101","industrial","Unclassified",NA +10099,"327-98-0","DTXSID9038420","Trichloronat","ANIAQSUBRGXWLS-UHFFFAOYSA-N","CCOP(=S)(CC)OC1=C(Cl)C=C(Cl)C(Cl)=C1","C10H12Cl3O2PS","333.59","35","pesticide","Unclassified",NA +10100,"41814-78-2","DTXSID7037478","2,7,8,9-Tricyclazole","DQJCHOQLCLEDLL-UHFFFAOYSA-N","CC1=C2N3C=NN=C3SC2=CC=C1","C9H7N3S","189.24","89","pesticide","Unclassified",NA +10101,"16605-91-7","DTXSID0073409","2,3-Dichlorobiphenyl","XOMKZKJEJBZBJJ-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=CC=CC=C1","C12H8Cl2","223.1","51",NA,"PCB",NA +10102,"92-86-4","DTXSID1059072","1,1'-Biphenyl, 4,4'-dibromo-","HQJQYILBCQPYBI-UHFFFAOYSA-N","BrC1=CC=C(C=C1)C1=CC=C(Br)C=C1","C12H8Br2","312.004","147","flameRetardant","PBB",NA +10103,"626-15-3","DTXSID9060813","1,3-Bis(bromomethyl)benzene","OXHOPZLBSSTTBU-UHFFFAOYSA-N","BrCC1=CC(CBr)=CC=C1","C8H8Br2","263.96","129","industrial;flameRetardant","Unclassified",NA +10104,"29973-13-5","DTXSID3037545","Ethiofencarb","HEZNVIYQEUHLNI-UHFFFAOYSA-N","CCSCC1=C(OC(=O)NC)C=CC=C1","C11H15NO2S","225.31","63","pesticide","Unclassified",NA +10105,"2179-25-1","DTXSID3042138","Methiocarb sulfone","RJBJMKAMQIOAML-UHFFFAOYSA-N","CNC(=O)OC1=CC(C)=C(C(C)=C1)S(C)(=O)=O","C11H15NO4S","257.3","42","pesticide","Unclassified",NA +10106,"959-98-8","DTXSID9037539","Endosulfan I","RDYMFSUJUZBWLH-AZVNHNRSSA-N","ClC1=C(Cl)[C@]2(Cl)[C@@H]3COS(=O)OC[C@@H]3[C@@]1(Cl)C2(Cl)Cl","C9H6Cl6O3S","406.9","60","pesticide","Unclassified",NA +10107,"60145-21-3","DTXSID5074189","2,2',4,5',6-Pentachlorobiphenyl","PQHZWWBJPCNNGI-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1)C1=C(Cl)C=C(Cl)C=C1Cl","C12H5Cl5","326.42","30",NA,"PCB",NA +10108,"52663-69-1","DTXSID7074163","2,2',3,4,4',5',6-Heptachlorobiphenyl","KQBFUDNJKCZEDQ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H3Cl7","395.31","32",NA,"PCB",NA +10109,"35065-30-6","DTXSID2073481","2,2',3,3',4,4',5-Heptachlorobiphenyl","RMPWIIKNWPVWNG-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H3Cl7","395.31","45",NA,"PCB",NA +10110,"74472-42-7","DTXSID8074231","2,3,3',4,4',6-Hexachlorobiphenyl","ZQUPQXINXTWCQR-UHFFFAOYSA-N","ClC1=CC=C(C=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H4Cl6","360.86","29",NA,"PCB",NA +10111,"35065-28-2","DTXSID8038300","2,2',3,4,4',5'-Hexachlorobiphenyl","RPUMZMSNLZHIGZ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H4Cl6","360.86","52",NA,"PCB",NA +10112,"38380-07-3","DTXSID50858932","2,2',3,3',4,4'-Hexachlorobiphenyl","BTAGRXWGMYTPBY-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H4Cl6","360.86","55",NA,"PCB",NA +10113,"32598-14-4","DTXSID8038306","2,3,3',4,4'-Pentachlorobiphenyl","WIDHRBRBACOVOY-UHFFFAOYSA-N","ClC1=C(Cl)C=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","52",NA,"PCB",NA +10114,"38380-01-7","DTXSID1073496","2,2',4,4',5-Pentachlorobiphenyl","LMQJBFRGXHMNOX-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","36",NA,"PCB",NA +10115,"52663-62-4","DTXSID60274189","2,2',3,3',4-Pentachlorobiphenyl","AUGNBQPSMWGAJE-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","52",NA,"PCB",NA +10116,"38444-90-5","DTXSID00865914","3,4,4'-Trichlorobiphenyl","YZANRISAORXTHU-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=CC(Cl)=C(Cl)C=C1","C12H7Cl3","257.54","33",NA,"PCB",NA +10117,"41411-63-6","DTXSID8074150","2,3,4,4',5,6-Hexachlorobiphenyl","BTOCFTAWZMMTNB-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H4Cl6","360.86","30",NA,"PCB",NA +10118,"41464-40-8","DTXSID8073508","2,2',4,5'-Tetrachlorobiphenyl","ZWPVHELAQPIZHO-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C=CC(Cl)=C1","C12H6Cl4","291.98","35",NA,"PCB",NA +10119,"35065-29-3","DTXSID6038299","2,2',3,4,4',5,5'-Heptachlorobiphenyl","WBHQEUPUMONIKF-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H3Cl7","395.31","59",NA,"PCB",NA +10120,"38380-08-4","DTXSID0052706","2,3,3',4,4',5-Hexachlorobiphenyl","LCXMEXLGMKFLQO-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=CC(Cl)=C(Cl)C=C1","C12H4Cl6","360.86","50",NA,"PCB",NA +10121,"37680-73-2","DTXSID8038304","2,2',4,5,5'-Pentachlorobiphenyl","LAHWLEDBADHJGA-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","52",NA,"PCB",NA +10122,"35693-99-3","DTXSID3038305","2,2',5,5'-Tetrachlorobiphenyl","HCWZEPKLWVAEOV-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C=CC(Cl)=C1","C12H6Cl4","291.98","68",NA,"PCB",NA +10123,"33284-50-3","DTXSID8040301","2,4-Dichlorobiphenyl","WEJZHZJJXPXXMU-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=CC=CC=C1","C12H8Cl2","223.1","49",NA,"PCB",NA +10124,"74472-37-0","DTXSID9074226","2,3,4,4',5-Pentachlorobiphenyl","SXZSFWHOSHAKMN-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","43",NA,"PCB",NA +10125,"197-70-6","DTXSID6075196","Benzo[b]perylene","UXDAAYMFPFYGMU-UHFFFAOYSA-N","C1=CC=C2C(=C1)C=C1C3=CC=CC4=C3C(=CC=C4)C3=C1C2=CC=C3","C24H14","302.376","29",NA,"PAH",NA +10126,"34883-43-7","DTXSID0022511","2,4'-Dichlorobiphenyl","UFNIBRDIUNVOMX-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C=CC=C1","C12H8Cl2","223.1","65",NA,"PCB",NA +10127,"7012-37-5","DTXSID2038310","2,4,4'-Trichlorobiphenyl","BZTYNSQSZHARAZ-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C=C(Cl)C=C1","C12H7Cl3","257.54","62",NA,"PCB",NA +10128,"41464-39-5","DTXSID8038302","2,2',3,5'-tetrachlorobiphenyl","ALDJIKXAHSDLLB-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C(Cl)=CC=C1","C12H6Cl4","291.98","44",NA,"PCB",NA +10129,"33025-41-1","DTXSID3073474","2,3,4,4'-Tetrachlorobiphenyl","XLDBTRJKXLKYTC-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H6Cl4","291.98","35",NA,"PCB",NA +10130,"32598-11-1","DTXSID3038309","2,3',4',5-Tetrachlorobiphenyl","KENZYIHFBRWMOD-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=CC(Cl)=C(Cl)C=C1","C12H6Cl4","291.98","41",NA,"PCB",NA +10131,"32690-93-0","DTXSID8073473","2,4,4',5-Tetrachlorobiphenyl","TULCXSBAPHCWCF-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C=C(Cl)C(Cl)=C1","C12H6Cl4","291.98","34",NA,"PCB",NA +10132,"38380-02-8","DTXSID6073497","2,2',3,4,5'-Pentachlorobiphenyl","OPKYDBFRKPQCBS-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","38",NA,"PCB",NA +10133,"52663-64-6","DTXSID0073538","2,2',3,3',5,6,6'-Heptachlorobiphenyl","XYHVYEUZLSYHDP-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H3Cl7","395.31","32",NA,"PCB",NA +10134,"39635-31-9","DTXSID4074144","2,3,3',4,4',5,5'-Heptachlorobiphenyl","XUAWBXBYHDRROL-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H3Cl7","395.31","39",NA,"PCB",NA +10135,"72-56-0","DTXSID4020589","p,p'-Ethyl-DDD","QFMDFTQOJHFVNR-UHFFFAOYSA-N","CCC1=CC=C(C=C1)C(C(Cl)Cl)C1=CC=C(CC)C=C1","C18H20Cl2","307.26","53","pesticide","Unclassified",NA +10136,"2642-71-9","DTXSID5037498","Azinphos-ethyl","RQVGAIADHNPSME-UHFFFAOYSA-N","CCOP(=S)(OCC)SCN1N=NC2=CC=CC=C2C1=O","C12H16N3O3PS2","345.37","52","pesticide","Unclassified",NA +10137,"2050-68-2","DTXSID0022515","4,4'-Dichlorobiphenyl","YTBRNEUEFCNVHC-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=CC=C(Cl)C=C1","C12H8Cl2","223.1","91",NA,"PCB",NA +10138,"51630-58-1","DTXSID101017940","Fenvalerate","NYPJDWWKZLNGGM-UHFFFAOYSA-N","CC(C)C(C(=O)OC(C#N)C1=CC=CC(OC2=CC=CC=C2)=C1)C1=CC=C(Cl)C=C1","C25H22ClNO3","419.91","129","pesticide","Unclassified",NA +10138,"51630-58-1","DTXSID3020621","(R,R)-Fenvalerate","NYPJDWWKZLNGGM-BJKOFHAPSA-N","CC(C)[C@@H](C(=O)O[C@@H](C#N)C1=CC=CC(OC2=CC=CC=C2)=C1)C1=CC=C(Cl)C=C1","C25H22ClNO3","419.91","19","pesticide","Unclassified",NA +10139,"37680-65-2","DTXSID6073491","2,2',5-Trichlorobiphenyl","DCMURXAZTZQAFB-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C=CC=C1","C12H7Cl3","257.54","49",NA,"PCB",NA +10140,"32598-10-0","DTXSID3073472","2,3',4,4'-Tetrachlorobiphenyl","RKLLTEAEZIJBAU-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=CC(Cl)=C(Cl)C=C1","C12H6Cl4","291.98","37",NA,"PCB",NA +10141,"38380-03-9","DTXSID3038307","2,3,3',4',6-Pentachlorobiphenyl","ARXHIJMGSIYYRZ-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=CC(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","39",NA,"PCB",NA +10142,"51908-16-8","DTXSID8074158","2,2',3,4',5,5'-Hexachlorobiphenyl","BQHCQAQLTCQFJZ-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","34",NA,"PCB",NA +10143,"38380-04-0","DTXSID1073498","2,2',3,4',5',6-Hexachlorobiphenyl","LKHLFUVHHXCNJH-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=C(Cl)C(Cl)=CC=C1Cl","C12H4Cl6","360.86","38",NA,"PCB",NA +10144,"52663-63-5","DTXSID2074160","2,2',3,5,5',6-Hexachlorobiphenyl","UHCLFIWDCYOTOL-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H4Cl6","360.86","41",NA,"PCB",NA +10145,"52663-70-4","DTXSID2074164","2,2',3,3',4,5',6'-Heptachlorobiphenyl","CXOYNJAHPUASHN-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H3Cl7","395.31","27",NA,"PCB",NA +10146,"35694-08-7","DTXSID5074139","2,2',3,3',4,4',5,5'-Octachlorobiphenyl","DTMRKGRREZAYAP-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H2Cl8","429.75","36",NA,"PCB",NA +10147,"2052-07-5","DTXSID0024638","2-Bromobiphenyl","KTADSLDAUJLZGL-UHFFFAOYSA-N","BrC1=C(C=CC=C1)C1=CC=CC=C1","C12H9Br","233.108","156","flameRetardant","PBB",NA +10148,"41318-75-6","DTXSID4052710","2,4,4'-Tribromodiphenyl ether","UPNBETHEXPIWQX-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C=C(Br)C=C2)C=C1","C12H7Br3O","406.899","40","flameRetardant","PBDE",NA +10149,"243982-82-3","DTXSID90873927","2,2',4,5'-Tetrabromodiphenyl Ether","QWVDUBDYUPHNHY-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=C(Br)C=CC(Br)=C2)C=C1","C12H6Br4O","485.795","26","flameRetardant","PBDE",NA +10150,"16606-02-3","DTXSID9073410","2,4',5-Trichlorobiphenyl","VAHKBZSAUKPEOV-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C=CC(Cl)=C1","C12H7Cl3","257.54","51",NA,"PCB",NA +10151,"70362-45-7","DTXSID9074779","PCB 045","VHGHHZZTMJLTJX-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=CC=CC=C1Cl","C12H6Cl4","291.98","27",NA,"PCB",NA +10152,"41464-43-1","DTXSID3074153","2,3,3',4'-Tetrachlorobiphenyl","UNCGJRRROFURDV-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=CC(Cl)=C(Cl)C=C1","C12H6Cl4","291.98","37",NA,"PCB",NA +10153,"52663-61-3","DTXSID5073537","2,2',3,5,5'-Pentachlorobiphenyl","CRCBRZBVCDKPGA-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1","C12H5Cl5","326.42","29",NA,"PCB",NA +10154,"52663-66-8","DTXSID5073539","2,2',3,3',4,5'-Hexachlorobiphenyl","YFSLABAYQDPWPF-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H4Cl6","360.86","34",NA,"PCB",NA +10155,"69782-90-7","DTXSID6074205","2,3,3',4,4',5'-Hexachlorobiphenyl","YTWXDQVNPCIEOX-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H4Cl6","360.86","36",NA,"PCB",NA +10156,"52663-72-6","DTXSID7074165","2,3',4,4',5,5'-Hexachlorobiphenyl","AZXHAWRMEPZSSV-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","38",NA,"PCB",NA +10157,"52663-67-9","DTXSID2074162","2,2',3,3',5,5',6-Heptachlorobiphenyl","WCIBKXHMIXUQHK-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H3Cl7","395.31","34",NA,"PCB",NA +10158,"2136-99-4","DTXSID0074132","2,2',3,3',5,5',6,6'-Octachlorobiphenyl","JPOPEORRMSDUIP-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H2Cl8","429.75","32",NA,"PCB",NA +10159,"69806-40-2","DTXSID6024123","Haloxyfop-methyl","MFSWTRQUCLNFOM-UHFFFAOYSA-N","COC(=O)C(C)OC1=CC=C(OC2=NC=C(C=C2Cl)C(F)(F)F)C=C1","C16H13ClF3NO4","375.73","88","pesticide","Unclassified",NA +10160,"4640-01-1","DTXSID0047874","Methyl triclosan","NLYDHBBTVWMLFD-UHFFFAOYSA-N","COC1=C(OC2=CC=C(Cl)C=C2Cl)C=CC(Cl)=C1","C13H9Cl3O2","303.56","53","pesticide","Unclassified",NA +10161,"58580-14-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10162,"112143-82-5","DTXSID5034307","Triazamate","NKNFWVNSBIXGLL-UHFFFAOYSA-N","CCOC(=O)CSC1=NC(=NN1C(=O)N(C)C)C(C)(C)C","C13H22N4O3S","314.4","46","pesticide","Unclassified",NA +10163,"58580-13-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10164,"174514-07-9","DTXSID7057999","Fluazolate","FKLQIONHGSFYJY-UHFFFAOYSA-N","CC(C)OC(=O)C1=CC(C2=NN(C)C(=C2Br)C(F)(F)F)=C(F)C=C1Cl","C15H12BrClF4N2O2","443.62","41","pesticide","Unclassified",NA +10165,"133408-50-1","DTXSID1057959","Metominostrobin","HIIRDDUVRXCDBN-OBGWFSINSA-N","CO\N=C(\C(O)=NC)C1=CC=CC=C1OC1=CC=CC=C1","C16H16N2O3","284.315","36","pesticide","Unclassified",NA +10166,"6552-21-2","DTXSID90863909","Diethyl 4-(methanesulfinyl)phenyl phosphate","GNTVZNNILZKEIB-UHFFFAOYSA-N","CCOP(=O)(OCC)OC1=CC=C(C=C1)S(C)=O","C11H17O5PS","292.29","29","pesticide","Unclassified",NA +10167,"999007-03-3",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10168,"140923-25-7","DTXSID00872406","Propan-2-yl [(2S)-3-methyl-1-{[(1R)-1-(4-methylphenyl)ethyl]amino}-1-oxobutan-2-yl]carbamate","NWUWYYSKZYIQAE-ZBFHGGJFSA-N","CC(C)OC(=O)N[C@@H](C(C)C)C(=O)N[C@H](C)C1=CC=C(C)C=C1","C18H28N2O3","320.433","14","pesticide","Unclassified",NA +10169,"3988-03-2","DTXSID00192919","4,4'-Dibromobenzophenone","LFABNOYDEODDFX-UHFFFAOYSA-N","BrC1=CC=C(C=C1)C(=O)C1=CC=C(Br)C=C1","C13H8Br2O","340.014","119","pesticide","Unclassified",NA +10170,"142534-71-2","DTXSID40874060","Octachlorobornane (Parlar 26)","FCZHUROLVAKWCN-JLGQIGOQSA-N","CC1(C(Cl)Cl)[C@H]2[C@H](Cl)[C@@H](Cl)[C@]1(C(Cl)Cl)[C@H](Cl)[C@H]2Cl","C10H10Cl8","413.79","6","pesticide","Unclassified",NA +10171,"81405-85-8","DTXSID3032412","Imazamethabenz-methyl",NA,"C*.COC(=O)C1=C(C=CC=C1)C1=NC(=O)C(C)(N1)C(C)C |c:7,9,t:5,12,lp:3:2,5:2,13:1,15:2,18:1,m:1:9.10|","C16H20N2O3","288.347",NA,"pesticide","Unclassified",NA +10172,"120068-36-2","DTXSID6074750","Fipronil sulfone","LGHZJDKSVUTELU-UHFFFAOYSA-N","NC1=C(C(=NN1C1=C(Cl)C=C(C=C1Cl)C(F)(F)F)C#N)S(=O)(=O)C(F)(F)F","C12H4Cl2F6N4O2S","453.14","42","pesticide","Unclassified",NA +10173,"41483-43-6","DTXSID6041688","Bupirimate","DSKJPMWIHSOYEA-UHFFFAOYSA-N","CCCCC1=C(OS(=O)(=O)N(C)C)N=C(NCC)N=C1C","C13H24N4O3S","316.42","51","pesticide","Unclassified",NA +10174,"130000-40-7","DTXSID6057954","Thifluzamide","WOSNCVAPUOFXEH-UHFFFAOYSA-N","CC1=NC(=C(S1)C(O)=NC1=C(Br)C=C(OC(F)(F)F)C=C1Br)C(F)(F)F","C13H6Br2F6N2O2S","528.06","82","pesticide","Unclassified",NA +10175,"143390-89-0","DTXSID2032558","Kresoxim-methyl","ZOTBXTZVPHCKPN-HTXNQAPBSA-N","CO\N=C(\C(=O)OC)C1=C(COC2=C(C)C=CC=C2)C=CC=C1","C18H19NO4","313.353","66","pesticide","Unclassified",NA +10176,"6132-17-8","DTXSID00210223","Phosphoric acid, diethyl p-(methylsulfonyl)phenyl ester","KUBUBYBFFRVFHD-UHFFFAOYSA-N","CCOP(=O)(OCC)OC1=CC=C(C=C1)S(C)(=O)=O","C11H17O6PS","308.28","28","pesticide","Unclassified",NA +10177,"104030-54-8","DTXSID4057922","Carpropamid","RXDMAYSSBPYBFW-UHFFFAOYSA-N","CCC1(C(C)C1(Cl)Cl)C(=O)NC(C)C1=CC=C(Cl)C=C1","C15H18Cl3NO","334.67","41","pesticide","Unclassified",NA +10178,"122453-73-0","DTXSID9032533","Chlorfenapyr","CWFOCCVIPCEQCK-UHFFFAOYSA-N","CCOCN1C(=C(C#N)C(Br)=C1C(F)(F)F)C1=CC=C(Cl)C=C1","C15H11BrClF3N2O","407.62","90","pesticide","Unclassified",NA +10179,"180409-60-3","DTXSID30431727","Cyflufenamid","ACMXQHFNODYQAT-UHFFFAOYSA-N","FC1=C(F)C(\C(NC(=O)CC2=CC=CC=C2)=N\OCC2CC2)=C(C=C1)C(F)(F)F","C20H17F5N2O2","412.36","25","pesticide","Unclassified",NA +10180,"115852-48-7","DTXSID2057942","Fenoxanil","IUOKJNROJISWRO-UHFFFAOYSA-N","CC(C)C(C)(N=C(O)C(C)OC1=C(Cl)C=C(Cl)C=C1)C#N","C15H18Cl2N2O2","329.22","56","pesticide","Unclassified",NA +10181,"3761-42-0","DTXSID6041975","Fenthion sulfone","ZDHYERRNXRANLI-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC(C)=C(C=C1)S(C)(=O)=O","C10H15O5PS2","310.32","32","pesticide","Unclassified",NA +10182,"74070-46-5","DTXSID7058175","Aclonifen","DDBMQDADIHOWIC-UHFFFAOYSA-N","NC1=C(C=CC(OC2=CC=CC=C2)=C1Cl)[N+]([O-])=O","C12H9ClN2O3","264.67","68","pesticide","Unclassified",NA +10183,"14255-72-2","DTXSID80162079","Fensulfothion sulfone","VTFZEBCYVXMEBB-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC=C(C=C1)S(C)(=O)=O","C11H17O5PS2","324.35","22","pesticide","Unclassified",NA +10184,"7082-99-7","DTXSID9042257","p-Chlorobenzyl-p-chlorophenyl sulfone","OWFDXWCBYKXLRB-UHFFFAOYSA-N","ClC1=CC=C(CS(=O)(=O)C2=CC=C(Cl)C=C2)C=C1","C13H10Cl2O2S","301.18","28","pesticide","Unclassified",NA +10185,"59080-37-4","DTXSID201009900","2,2',5,5'-Tetrabromobiphenyl","XEFMFJLRXHQLEM-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=C(Br)C=CC(Br)=C1","C12H6Br4","469.796","32","flameRetardant","PBB",NA +10186,"163520-33-0","DTXSID7040360","Ethyl 5,5-diphenyl-2-isoxazoline-3-carboxylate","MWKVXOJATACCCH-UHFFFAOYSA-N","CCOC(=O)C1=NOC(C1)(C1=CC=CC=C1)C1=CC=CC=C1","C18H17NO3","295.338","67","pesticide","Unclassified",NA +10187,"58810-48-3","DTXSID6058138","Ofurace","OWDLFBLNMPCXSD-UHFFFAOYSA-N","CC1=CC=CC(C)=C1N(C1CCOC1=O)C(=O)CCl","C14H16ClNO3","281.74","52","pesticide","Unclassified",NA +10188,"121-21-1","DTXSID4034499","Pyrethrin I","ROVGZAWFACYCSP-VUMXUWRFSA-N","CC(C)=C[C@@H]1[C@@H](C(=O)O[C@H]2CC(=O)C(C\C=C/C=C)=C2C)C1(C)C","C21H28O3","328.452","36","pesticide","Unclassified",NA +10189,"2132-70-9","DTXSID5022518","p,p'-Methoxychlor olefin","YCRYSVKEWAWTGI-UHFFFAOYSA-N","COC1=CC=C(C=C1)C(=C(Cl)Cl)C1=CC=C(OC)C=C1","C16H14Cl2O2","309.19","53","pesticide","Unclassified",NA +10190,"63837-33-2","DTXSID2041884","Diofenolan","ZDOOQPFIGYHZFV-UHFFFAOYSA-N","CCC1OCC(COC2=CC=C(OC3=CC=CC=C3)C=C2)O1","C18H20O4","300.354","36","pesticide","Unclassified",NA +10191,"136191-64-5","DTXSID5058307","Pyriminobac-methyl","USSIUIGPBLPCDF-UHFFFAOYSA-N","CON=C(C)C1=CC=CC(OC2=NC(OC)=CC(OC)=N2)=C1C(=O)OC","C17H19N3O6","361.354","9","pesticide","Unclassified",NA +10192,"66860-80-8","DTXSID601009902","Nonachlorobornane (Parlar 50)","ICTWAJXDCVGTJO-DLMSVPHCNA-N","ClCC1(C(Cl)Cl)[C@H]2[C@H](Cl)[C@@H](Cl)[C@]1(C(Cl)Cl)[C@H](Cl)[C@H]2Cl","C10H9Cl9","448.23","15","pesticide","Unclassified",NA +10193,"135590-91-9","DTXSID6037564","Mefenpyr-diethyl","OPGCOAPTHCZZIW-UHFFFAOYSA-N","CCOC(=O)C1=NN(C2=C(Cl)C=C(Cl)C=C2)C(C)(C1)C(=O)OCC","C16H18Cl2N2O4","373.23","70","pesticide","Unclassified",NA +10194,"74738-17-3","DTXSID0036633","Fenpicionil","FKLFBQCQQYDUAM-UHFFFAOYSA-N","ClC1=CC=CC(C2=CNC=C2C#N)=C1Cl","C11H6Cl2N2","237.08","53","pesticide","Unclassified",NA +10195,"283594-90-1","DTXSID1034929","Spiromesifen","GOLXNESZZPUPJE-UHFFFAOYSA-N","CC1=CC(C)=C(C2=C(OC(=O)CC(C)(C)C)C3(CCCC3)OC2=O)C(C)=C1","C23H30O4","370.489","53","pesticide","Unclassified",NA +10196,"31972-43-7","DTXSID8037548","Fenamiphos sulfoxide","LUQMWGMGWJEGAT-UHFFFAOYSA-N","CCOP(=O)(NC(C)C)OC1=CC=C(C(C)=C1)S(C)=O","C13H22NO4PS","319.36","35","pesticide","Unclassified",NA +10197,"116255-48-2","DTXSID9032531","Bromuconazole","HJJVPARKXDDIQD-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1(CN2C=NC=N2)CC(Br)CO1","C13H12BrCl2N3O","377.06","53","pesticide","Unclassified",NA +10198,"31972-44-8","DTXSID3037547","Fenamiphos sulfone","LVNYJXIBJFXIRZ-UHFFFAOYSA-N","CCOP(=O)(NC(C)C)OC1=CC=C(C(C)=C1)S(C)(=O)=O","C13H22NO5PS","335.35","39","pesticide","Unclassified",NA +10199,"131086-42-5","DTXSID6058504","Ethoxyfen-ethyl","LUZZPGJQJKMMDM-JTQLQIEISA-N","CCOC(=O)[C@H](C)OC(=O)C1=C(Cl)C=CC(OC2=C(Cl)C=C(C=C2)C(F)(F)F)=C1","C19H15Cl2F3O5","451.22","12","pesticide","Unclassified",NA +10200,"149961-52-4","DTXSID3057981","Dimoxystrobin","WXUZAHCNPWONDH-DYTRJAOYSA-N","CNC(=O)C(=N\OC)\C1=CC=CC=C1COC1=C(C)C=CC(C)=C1","C19H22N2O3","326.396","27","pesticide","Unclassified",NA +10201,"117-83-9","DTXSID9047174","Bis(2-butoxyethyl) phthalate","CMCJNODIWQEOAI-UHFFFAOYSA-N","CCCCOCCOC(=O)C1=CC=CC=C1C(=O)OCCOCCCC","C20H30O6","366.454","69","industrial","Unclassified",NA +10202,"137641-05-5","DTXSID8044339","Picolinafen","CWKFPEBMTGKLKX-UHFFFAOYSA-N","FC1=CC=C(NC(=O)C2=CC=CC(OC3=CC(=CC=C3)C(F)(F)F)=N2)C=C1","C19H12F4N2O2","376.311","43","pesticide","Unclassified",NA +10203,"99607-70-2","DTXSID3041794","Cloquintocet-mexyl","COYBRKAVBMYYSF-UHFFFAOYSA-N","CCCCCC(C)OC(=O)COC1=CC=C(Cl)C2=CC=CN=C12","C18H22ClNO3","335.83","98","pesticide","Unclassified",NA +10204,"125116-23-6","DTXSID4034497","Metconazole","XWPZUHJBOLQNMN-UHFFFAOYSA-N","CC1(C)CCC(CC2=CC=C(Cl)C=C2)C1(O)CN1C=NC=N1","C17H22ClN3O","319.83","59","pesticide","Unclassified",NA +10205,"120928-09-8","DTXSID4040476","Fenazaquin","DMYHGDXADUDKCQ-UHFFFAOYSA-N","CC(C)(C)C1=CC=C(CCOC2=NC=NC3=C2C=CC=C3)C=C1","C20H22N2O","306.409","79","pesticide","Unclassified",NA +10206,"64249-01-0","DTXSID5058149","Anilofos","NXQDBZGWYSEGFL-UHFFFAOYSA-N","COP(=S)(OC)SCC(=O)N(C(C)C)C1=CC=C(Cl)C=C1","C13H19ClNO3PS2","367.84","57","pesticide","Unclassified",NA +10207,"103112-35-2","DTXSID6041268","Fenchlorazole-ethyl","GMBRUAIJEFRHFQ-UHFFFAOYSA-N","CCOC(=O)C1=NN(C(=N1)C(Cl)(Cl)Cl)C1=C(Cl)C=C(Cl)C=C1","C12H8Cl5N3O2","403.47","47","pesticide","Unclassified",NA +10208,"51186-88-0","DTXSID30274050","(+)-cis-Phenothrin","SBNFWQZLDJGRLK-SFTDATJTSA-N","CC(C)=C[C@H]1[C@@H](C(=O)OCC2=CC=CC(OC3=CC=CC=C3)=C2)C1(C)C","C23H26O3","350.458","30","pesticide","Unclassified",NA +10209,"154159-06-5","DTXSID90874151","(+/-)-Parlar 62","QBYUXOGVJMFMHR-DFFQNUSFNA-N","ClCC1(C(Cl)Cl)[C@H]2CC(Cl)(Cl)[C@@]1(CC2(Cl)Cl)C(Cl)Cl","C10H9Cl9","448.23","4","pesticide","Unclassified",NA +10210,"26046-85-5","DTXSID1058347","Phenothrin [(1R)-trans- isomer]","SBNFWQZLDJGRLK-RTWAWAEBSA-N","CC(C)=C[C@@H]1[C@@H](C(=O)OCC2=CC=CC(OC3=CC=CC=C3)=C2)C1(C)C","C23H26O3","350.458","52","pesticide","Unclassified",NA +10211,"84-62-8","DTXSID3021778","Diphenyl phthalate","DWNAQMUDCDVSLT-UHFFFAOYSA-N","O=C(OC1=CC=CC=C1)C1=CC=CC=C1C(=O)OC1=CC=CC=C1","C20H14O4","318.328","92","industrial;pesticide","Unclassified",NA +10212,"299-45-6","DTXSID70871628","O,O-Diethyl O-(4-methyl-2-oxo-2H-1-benzopyran-7-yl) phosphorothioate","KNIUHBNRWZGIQQ-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC=C2C(C)=CC(=O)OC2=C1","C14H17O5PS","328.32","18","pesticide","Unclassified",NA +10213,"96525-23-4","DTXSID5058228","Flurtamone","NYRMIJKDBAQCHC-UHFFFAOYSA-N","CNC1=C(C(=O)C(O1)C1=CC=CC=C1)C1=CC(=CC=C1)C(F)(F)F","C18H14F3NO2","333.31","42","pesticide","Unclassified",NA +10214,"52570-16-8","DTXSID8058118","Naproanilide","LVKTWOXHRYGDMM-UHFFFAOYSA-N","CC(OC1=CC2=CC=CC=C2C=C1)C(O)=NC1=CC=CC=C1","C19H17NO2","291.35","37","pesticide","PAH",NA +10215,"3861-47-0","DTXSID8042054","Ioxynil octanoate","QBEXFUOWUYCXNI-UHFFFAOYSA-N","CCCCCCCC(=O)OC1=C(I)C=C(C=C1I)C#N","C15H17I2NO2","497.115","47","pesticide","Unclassified",NA +10216,"1420-06-0","DTXSID6042492","Trifenmorph","ZJMLMBICUVVJDX-UHFFFAOYSA-N","C1CN(CCO1)C(C1=CC=CC=C1)(C1=CC=CC=C1)C1=CC=CC=C1","C23H23NO","329.443","44","pesticide","Unclassified",NA +10217,"135186-78-6","DTXSID5057961","Pyriftalid","RRKHIAYNPVQKEF-UHFFFAOYSA-N","COC1=CC(OC)=NC(SC2=CC=CC3=C2C(=O)OC3C)=N1","C15H14N2O4S","318.35","44","pesticide","Unclassified",NA +10218,"101007-06-1","DTXSID3041584","Acrinathrin","YLFSVIMMRPNPFK-WEQBUNFVSA-N","CC1(C)[C@@H](\C=C/C(=O)OC(C(F)(F)F)C(F)(F)F)[C@H]1C(=O)O[C@H](C#N)C1=CC(OC2=CC=CC=C2)=CC=C1","C26H21F6NO5","541.446","43","pesticide","Unclassified",NA +10219,"77501-90-7","DTXSID0041983","Fluoroglycofen-ethyl","IPPAUTOBDWNELX-UHFFFAOYSA-N","CCOC(=O)COC(=O)C1=C(C=CC(OC2=C(Cl)C=C(C=C2)C(F)(F)F)=C1)[N+]([O-])=O","C18H13ClF3NO7","447.75","57","pesticide","Unclassified",NA +10220,"82560-54-1","DTXSID2041622","Benfuracarb","FYZBOYWSHKHDMT-UHFFFAOYSA-N","CCOC(=O)CCN(SN(C)C(=O)OC1=CC=CC2=C1OC(C)(C)C2)C(C)C","C20H30N2O5S","410.53","72","pesticide","Unclassified",NA +10221,"89784-60-1","DTXSID4058493","Pyraclofos","QHGVXILFMXYDRS-UHFFFAOYSA-N","CCCSP(=O)(OCC)OC1=CN(N=C1)C1=CC=C(Cl)C=C1","C14H18ClN2O3PS","360.79","53","pesticide","Unclassified",NA +10222,"220899-03-6","DTXSID9058020","Metrafenone","AMSPWOYQQAWRRM-UHFFFAOYSA-N","COC1=C(C(=O)C2=C(OC)C(OC)=C(OC)C=C2C)C(C)=C(Br)C=C1","C19H21BrO5","409.276","35","pesticide","Unclassified",NA +10223,"3118-97-6","DTXSID5040706","C.I. Solvent Orange 7","JBTHDAVBDKKSRW-UHFFFAOYSA-N","CC1=CC=C(N=NC2=C(O)C=CC3=CC=CC=C23)C(C)=C1","C18H16N2O","276.339","97","industrial","PAH",NA +10224,"136426-54-5","DTXSID5057965","Fluquinconazole","IJJVMEJXYNJXOJ-UHFFFAOYSA-N","FC1=CC2=C(C=C1)N=C(N1C=NC=N1)N(C2=O)C1=C(Cl)C=C(Cl)C=C1","C16H8Cl2FN5O","376.17","50","pesticide","Unclassified",NA +10225,"999008-03-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"industrial;flameRetardant","Unclassified",NA +10226,"125306-83-4","DTXSID7057949","Cafenstrole","HFEJHAAIJZXXRE-UHFFFAOYSA-N","CCN(CC)C(=O)N1C=NC(=N1)S(=O)(=O)C1=C(C)C=C(C)C=C1C","C16H22N4O3S","350.44","59","pesticide","Unclassified",NA +10227,"61576-99-6","DTXSID00210581","1,1':4',1''-Terphenyl, 2,3,5,6-tetrachloro-","WRGWUGJOSKMDNT-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1Cl)C1=CC=C(C=C1)C1=CC=CC=C1","C18H10Cl4","368.08","12","industrial;flameRetardant","Unclassified",NA +10228,"111872-58-3","DTXSID3057935","Halfenprox","WIFXJBMOTMKRMM-UHFFFAOYSA-N","CC(C)(COCC1=CC(OC2=CC=CC=C2)=CC=C1)C1=CC=C(OC(F)(F)Br)C=C1","C24H23BrF2O3","477.346","43","pesticide","Unclassified",NA +10229,"121227-99-4","DTXSID101016409","Cekafix","KJARRUUHFXDFIH-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC2=C(C=C1)C(C)=C(Br)C(=O)O2","C14H16BrO5PS","407.21","5","pesticide;pesticide","Unclassified",NA +10230,"57960-19-7","DTXSID8034297","Acequinocyl","QDRXWCAVUNHOGA-UHFFFAOYSA-N","CCCCCCCCCCCCC1=C(OC(C)=O)C(=O)C2=C(C=CC=C2)C1=O","C24H32O4","384.516","49","pesticide","OPAH",NA +10231,"105024-66-6","DTXSID4057924","Silafluofen","HPYNBECUCCGGPA-UHFFFAOYSA-N","CCOC1=CC=C(C=C1)[Si](C)(C)CCCC1=CC(OC2=CC=CC=C2)=C(F)C=C1","C25H29FO2Si","408.588","46","pesticide","Unclassified",NA +10232,"105779-78-0","DTXSID9057925","Pyrimidifen","ITKAIUGKVKDENI-UHFFFAOYSA-N","CCOCCC1=C(C)C(C)=C(OCCN=C2NC=NC(CC)=C2Cl)C=C1","C20H28ClN3O2","377.91","57","pesticide","Unclassified",NA +10233,"84-76-4","DTXSID9047966","1,2-Benzenedicarboxylic acid, dinonyl ester","DROMNWUQASBTFM-UHFFFAOYSA-N","CCCCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCCC","C26H42O4","418.618","96","industrial","Unclassified",NA +10234,"129558-76-5","DTXSID6057952","Tolfenpyrad","WPALTCMYPARVNV-UHFFFAOYSA-N","CCC1=NN(C)C(C(=O)NCC2=CC=C(OC3=CC=C(C)C=C3)C=C2)=C1Cl","C21H22ClN3O2","383.88","89","pesticide","Unclassified",NA +10235,"142891-20-1","DTXSID1036753","Cinidon-ethyl","NNKKTZOEKDFTBU-YBEGLDIGSA-N","CCOC(=O)C(\Cl)=C\C1=CC(=CC=C1Cl)N1C(=O)C2=C(CCCC2)C1=O","C19H17Cl2NO4","394.25","34","pesticide","Unclassified",NA +10236,"98-53-3","DTXSID7044394","4-tert-Butylcyclohexanone","YKFKEYKJGVSEIX-UHFFFAOYSA-N","CC(C)(C)C1CCC(=O)CC1","C10H18O","154.253","125","pesticide","Unclassified",NA +10237,"29878-31-7","DTXSID50274037","4-Methyl-1,2,3-benzotriazole","CMGDVUCDZOBDNL-UHFFFAOYSA-N","CC1=CC=CC2=C1NN=N2","C7H7N3","133.154","106","industrial","Unclassified",NA +10238,"125225-28-7","DTXSID7034674","Ipconazole","QTYCMDBMOLSEAM-UHFFFAOYSA-N","CC(C)C1CCC(CC2=CC=C(Cl)C=C2)C1(O)CN1C=NC=N1","C18H24ClN3O","333.86","34","pesticide","Unclassified",NA +10239,"23576-24-1","DTXSID1041841","Desmethylnorflurazon","VYYIBOGGJBEGGU-UHFFFAOYSA-N","NC1=C(Cl)C(=O)N(N=C1)C1=CC=C(C=C1)C(F)(F)F","C11H7ClF3N3O","289.64","10","pesticide","Unclassified",NA +10240,"54406-48-3","DTXSID2058122","Empenthrin","YUGWDVYLFSETPE-JLHYYAGUSA-N","CC\C=C(/C)C(OC(=O)C1C(C=C(C)C)C1(C)C)C#C","C18H26O2","274.404","49","pesticide","Unclassified",NA +10241,"82-66-6","DTXSID4032378","Diphacinone","JYGLAHSAISAEAL-UHFFFAOYSA-N","O=C(C(C1=CC=CC=C1)C1=CC=CC=C1)C1C(=O)C2=C(C=CC=C2)C1=O","C23H16O3","340.378","77","pesticide","PAH",NA +10242,"71561-11-0","DTXSID3058167","Pyrazoxyfen","FKERUJTUOYLBKB-UHFFFAOYSA-N","CN1N=C(C)C(C(=O)C2=C(Cl)C=C(Cl)C=C2)=C1OCC(=O)C1=CC=CC=C1","C20H16Cl2N2O3","403.26","59","pesticide","Unclassified",NA +10243,"3766-81-2","DTXSID4058077","Fenobucarb","DIRFUJHNVNOBMY-UHFFFAOYSA-N","CCC(C)C1=CC=CC=C1OC(=O)NC","C12H17NO2","207.273","73","pesticide","Unclassified",NA +10244,"1746-81-2","DTXSID0037576","Monolinuron","LKJPSUCKSLORMF-UHFFFAOYSA-N","CON(C)C(=O)NC1=CC=C(Cl)C=C1","C9H11ClN2O2","214.65","80","pesticide","Unclassified",NA +10245,"4658-28-0","DTXSID3041615","Aziprotryne","AFIIBUOYKYSPKB-UHFFFAOYSA-N","CSC1=NC(NC(C)C)=NC(N=[N+]=[N-])=N1","C7H11N7S","225.27","43","pesticide","Unclassified",NA +10246,"80-06-8","DTXSID7040283","Chlorfenethol","URYAFVKLYSEINW-UHFFFAOYSA-N","CC(O)(C1=CC=C(Cl)C=C1)C1=CC=C(Cl)C=C1","C14H12Cl2O","267.15","61","pesticide","Unclassified",NA +10247,"39515-40-7","DTXSID4032536","Cyphenothrin","FJDPATXIBIBRIM-UHFFFAOYSA-N","CC(C)=CC1C(C(=O)OC(C#N)C2=CC=CC(OC3=CC=CC=C3)=C2)C1(C)C","C24H25NO3","375.468","59","pesticide","Unclassified",NA +10248,"1229-55-6","DTXSID3061635","C.I. Solvent Red 1","ALLOLPOYFRLCCX-UHFFFAOYSA-N","COC1=C(C=CC=C1)N=NC1=C2C=CC=CC2=CC=C1O","C17H14N2O2","278.311","115","industrial","Unclassified",NA +10249,"139920-32-4","DTXSID4057970","Diclocymet","YEJGPFZQLRMXOI-PKEIRNPWSA-N","C[C@@H](N=C(O)C(C#N)C(C)(C)C)C1=C(Cl)C=C(Cl)C=C1","C15H18Cl2N2O","313.22","24","pesticide","Unclassified",NA +10250,"229977-93-9","DTXSID4058027","Fluacrypyrim","MXWAGQASUDSFBG-RVDMUPIBSA-N","CO\C=C(\C(=O)OC)C1=CC=CC=C1COC1=NC(OC(C)C)=NC(=C1)C(F)(F)F","C20H21F3N2O5","426.392","46","pesticide","Unclassified",NA +10251,"121776-33-8","DTXSID4041999","Furilazole","MCNOFYBITGAAGM-UHFFFAOYSA-N","CC1(C)OC(CN1C(=O)C(Cl)Cl)C1=CC=CO1","C11H13Cl2NO3","278.13","49","pesticide","Unclassified",NA +10252,"91465-08-6","DTXSID7032559","λ-Cyhalothrin","ZXQYGBMAQZUVMI-GCMPRSNUSA-N","CC1(C)[C@@H](\C=C(/Cl)C(F)(F)F)[C@H]1C(=O)O[C@H](C#N)C1=CC=CC(OC2=CC=CC=C2)=C1","C23H19ClF3NO3","449.85","69","pesticide","Unclassified",NA +10253,"86598-92-7","DTXSID7058204","Imibenconazole","AGKSTYPVMZODRV-UHFFFAOYSA-N","ClC1=CC=C(CSC(CN2C=NC=N2)=NC2=C(Cl)C=C(Cl)C=C2)C=C1","C17H13Cl3N4S","411.73","51","pesticide","Unclassified",NA +10254,"199338-48-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10255,"158474-72-7","DTXSID801016600","Prohydrojasmon","IPDFPNNPBMREIF-CHWSQXEVSA-N","[H][C@]1(CC(=O)OCCC)CCC(=O)[C@]1([H])CCCCC","C15H26O3","254.37","22","pesticide","Unclassified",NA +10256,"4466-14-2","DTXSID5042081","Jasmolin I","NZKIRHFOLVYKFT-VUMXUWRFSA-N","CC\C=C/CC1=C(C)[C@H](CC1=O)OC(=O)[C@@H]1[C@@H](C=C(C)C)C1(C)C","C21H30O3","330.468","26","pesticide","Unclassified",NA +10257,"25402-06-6","DTXSID4041787","Cinerin I","FMTFEIJHMMQUJI-DFKXKMKHSA-N","C\C=C/CC1=C(C)[C@H](CC1=O)OC(=O)[C@@H]1[C@@H](C=C(C)C)C1(C)C","C20H28O3","316.441","25","pesticide","Unclassified",NA +10258,"121-20-0","DTXSID9041788","Cinerin II","SHCRDCOTRILILT-WOBDGSLYSA-N","COC(=O)C(\C)=C\[C@@H]1[C@@H](C(=O)O[C@H]2CC(=O)C(C\C=C/C)=C2C)C1(C)C","C21H28O5","360.45","27","pesticide","Unclassified",NA +10259,"1172-63-0","DTXSID0042082","Jasmolin II","WKNSDDMJXANVMK-XIGJTORUSA-N","CC\C=C/CC1=C(C)[C@H](CC1=O)OC(=O)[C@@H]1[C@@H](\C=C(/C)C(=O)OC)C1(C)C","C22H30O5","374.477","27","pesticide","Unclassified",NA +10260,"121-29-9","DTXSID2042353","Pyrethrin II","VJFUPGQZSXIULQ-XIGJTORUSA-N","COC(=O)C(\C)=C\[C@@H]1[C@@H](C(=O)O[C@H]2CC(=O)C(C\C=C/C=C)=C2C)C1(C)C","C22H28O5","372.461","32","pesticide","Unclassified",NA +10261,"28044-83-9","DTXSID2058752","Heptachlor epoxide A","ZXFXBSWRVIQKOD-WOBUKFROSA-N","[H][C@]12[C@H]3O[C@H]3[C@H](Cl)[C@@]1([H])[C@@]1(Cl)C(Cl)=C(Cl)[C@]2(Cl)C1(Cl)Cl","C10H5Cl7O","389.3","19","pesticide","Unclassified",NA +10262,"71363-52-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10263,"3067-13-8","DTXSID80952917","Benzo[pqr]tetraphene-1,6-dione","OXWHZARNAGLRFL-UHFFFAOYSA-N","O=C1C=CC2=C3C1=CC=C1C4=CC=CC=C4C(=O)C(C=C2)=C31","C20H10O2","282.298","34",NA,"OPAH",NA +10264,"65199-11-3","DTXSID50215501","Benzo(a)pyrene-7,8-dione","CRYMJHJFLJAFNU-UHFFFAOYSA-N","O=C1C=CC2=C(C=C3C=CC4=C5C(C=CC2=C35)=CC=C4)C1=O","C20H10O2","282.298","29",NA,"OPAH",NA +10265,"999051-03-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10266,"999043-03-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10267,"999040-03-8",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10268,"65733-16-6","DTXSID1035783","S-Methoprene","NFGXHKASABOEEW-GYMWBFJFSA-N","COC(C)(C)CCC[C@H](C)C\C=C\C(\C)=C\C(=O)OC(C)C","C19H34O3","310.478","67","pesticide","Unclassified",NA +10269,"999049-03-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10270,"999048-03-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10271,"999037-03-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10272,"999038-03-8",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10273,"999050-03-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10274,"999039-03-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10275,"999034-03-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10276,"999027-03-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10277,"61949-76-6","DTXSID0038338","(+/-)-cis-Permethrin","RLLPVAHGXHCWKJ-HKUYNNGSSA-N","CC1(C)[C@@H](C=C(Cl)Cl)[C@H]1C(=O)OCC1=CC=CC(OC2=CC=CC=C2)=C1","C21H20Cl2O3","391.29","56","pesticide","Unclassified",NA +10278,"84-54-8","DTXSID5041439","2-Methylanthraquinone","NJWGQARXZDRHCD-UHFFFAOYSA-N","CC1=CC2=C(C=C1)C(=O)C1=CC=CC=C1C2=O","C15H10O2","222.243","127",NA,"OPAH",NA +10279,"999028-03-4",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10280,"999029-03-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10281,"999030-03-4",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10282,"104-12-1","DTXSID7040732","4-Chlorophenyl isocyanate","ADAKRBAJFHTIEW-UHFFFAOYSA-N","ClC1=CC=C(C=C1)N=C=O","C7H4ClNO","153.57","111","industrial;pesticide","Unclassified",NA +10283,"367-21-5","DTXSID0038754","3-Chloro-4-fluoroaniline","YSEMCVGMNUUNRK-UHFFFAOYSA-N","NC1=CC=C(F)C(Cl)=C1","C6H5ClFN","145.56","155","industrial","aniline",NA +10284,"99-88-7","DTXSID20243932","Cumidine","LRTFPLFDLJYEKT-UHFFFAOYSA-N","CC(C)C1=CC=C(N)C=C1","C9H13N","135.21","158","industrial","aniline",NA +10285,"99-49-0","DTXSID8047426","dl-Carvone","ULDHMXUKGWMISQ-UHFFFAOYSA-N","CC(=C)C1CC=C(C)C(=O)C1","C10H14O","150.221","121","personalCare;consumerProduct;pesticide","Unclassified",NA +10286,"24549-06-2","DTXSID7027833","2-Ethyl-6-methylaniline","JJVKJJNCIILLRP-UHFFFAOYSA-N","CCC1=CC=CC(C)=C1N","C9H13N","135.21","111","industrial","aniline",NA +10287,"3964-56-5","DTXSID30192745","4-Bromo-2-chlorophenol","VIBJPUXLAKVICD-UHFFFAOYSA-N","OC1=C(Cl)C=C(Br)C=C1","C6H4BrClO","207.45","141","pesticide","phenol",NA +10288,"591-27-5","DTXSID3024497","3-Aminophenol","CWLKGDAVCFYWJK-UHFFFAOYSA-N","NC1=CC(O)=CC=C1","C6H7NO","109.128","175","personalCare;industrial","phenol",NA +10289,"95-69-2","DTXSID1041508","4-Chloro-2-methylaniline","CXNVOWPRHWWCQR-UHFFFAOYSA-N","CC1=C(N)C=CC(Cl)=C1","C7H8ClN","141.6","150","industrial;pesticide","aniline",NA +10290,"106-40-1","DTXSID7021867","4-Bromoaniline","WDFQBORIUYODSI-UHFFFAOYSA-N","NC1=CC=C(Br)C=C1","C6H6BrN","172.025","170","industrial;pesticide","aniline",NA +10291,"1563-38-8","DTXSID2027414","2,3-Dihydro-2,2-dimethyl-7-benzofuranol","WJGPNUBJBMCRQH-UHFFFAOYSA-N","CC1(C)CC2=C(O1)C(O)=CC=C2","C10H12O2","164.204","106","pesticide","phenol",NA +10292,"102-36-3","DTXSID9033008","3,4-Dichlorophenyl isocyanate","MFUVCHZWGSJKEQ-UHFFFAOYSA-N","ClC1=C(Cl)C=C(C=C1)N=C=O","C7H3Cl2NO","188.01","99","industrial","Unclassified",NA +10293,"87-40-1","DTXSID9073886","Benzene, 1,3,5-trichloro-2-methoxy-","WCVOGSZTONGSQY-UHFFFAOYSA-N","COC1=C(Cl)C=C(Cl)C=C1Cl","C7H5Cl3O","211.47","83","pesticide","Unclassified",NA +10294,"50375-10-5","DTXSID60198432","2,3,6-Trichloroanisole","OTFNCXLUCRUNCH-UHFFFAOYSA-N","COC1=C(Cl)C=CC(Cl)=C1Cl","C7H5Cl3O","211.47","42","pesticide","Unclassified",NA +10295,"626-39-1","DTXSID3052307","1,3,5-Tribromobenzene","YWDUZLFWHVQCHY-UHFFFAOYSA-N","BrC1=CC(Br)=CC(Br)=C1","C6H3Br3","314.802","154","industrial;flameRetardant","Unclassified",NA +10296,"5345-54-0","DTXSID00201616","2-Chloro-4-anisidine","XQVCBOLNTSUFGD-UHFFFAOYSA-N","COC1=C(Cl)C=C(N)C=C1","C7H8ClNO","157.6","115","pesticide","aniline",NA +10297,"85-41-6","DTXSID3026514","Phthalimide","XKJCHHZQLQNZHY-UHFFFAOYSA-N","O=C1NC(=O)C2=C1C=CC=C2","C8H5NO2","147.133","204","industrial;pesticide","Unclassified",NA +10298,"27813-21-4","DTXSID4052849","Tetrahydrophthalimide (mixture of all isomers)",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10299,"33704-61-9","DTXSID8047399","Cashmeran","MIZGSAALSYARKU-UHFFFAOYSA-N","CC1C(C)(C)C2=C(C(=O)CCC2)C1(C)C","C14H22O","206.329","76","personalCare","Unclassified",NA +10300,"636-30-6","DTXSID5044152","2,4,5-Trichloroaniline","GUMCAKKKNKYFEB-UHFFFAOYSA-N","NC1=CC(Cl)=C(Cl)C=C1Cl","C6H4Cl3N","196.46","102","pesticide","aniline",NA +10301,"98-10-2","DTXSID1059159","Benzenesulfonamide","KHBQMWCZKVMBLN-UHFFFAOYSA-N","NS(=O)(=O)C1=CC=CC=C1","C6H7NO2S","157.19","175","pharmacological","Unclassified",NA +10302,"2655-14-3","DTXSID7058042","XMC","CVQODEWAPZVVBU-UHFFFAOYSA-N","CNC(=O)OC1=CC(C)=CC(C)=C1","C10H13NO2","179.219","48","pesticide","Unclassified",NA +10303,"136-85-6","DTXSID1038743","5-Methyl-1H-benzotriazole","LRUDIIUSNGCQKF-UHFFFAOYSA-N","CC1=CC2=C(NN=N2)C=C1","C7H7N3","133.154","143","industrial","Unclassified",NA +10304,"55440-55-6","DTXSID10402753","1-chloro-5-isocyanato-2,4-dimethoxybenzene","COSVEXSXJCUYOT-UHFFFAOYSA-N","COC1=CC(OC)=C(Cl)C=C1N=C=O","C9H8ClNO3","213.62","58","pesticide","Unclassified",NA +10305,"2600-69-3","DTXSID4037586","Phorate oxon","FMXFZNGITFNSAG-UHFFFAOYSA-N","CCOP(=O)(OCC)SCSCC","C7H17O3PS2","244.3","28","pesticide","Unclassified",NA +10306,"607-99-8","DTXSID1060558","2,4,6-Tribromoanisole","YXTRCOAFNXQTKL-UHFFFAOYSA-N","COC1=C(Br)C=C(Br)C=C1Br","C7H5Br3O","344.828","90","industrial","Unclassified",NA +10307,"4710-17-2","DTXSID60197041","Sulfamide, N,N-dimethyl-N'-phenyl-","QCDQDISRALTLNQ-UHFFFAOYSA-N","CN(C)S(=O)(=O)NC1=CC=CC=C1","C8H12N2O2S","200.26","43","pharmacological","Unclassified",NA +10308,"16954-69-1","DTXSID40168719","2-Benzothiazolamine, N-methyl- (9CI)","QVKPPRYUGJFISN-UHFFFAOYSA-N","CNC1=NC2=CC=CC=C2S1","C8H8N2S","164.23","79","pesticide","Unclassified",NA +10309,"6190-65-4","DTXSID5037494","Deethylatrazine","DFWFIQKMSFGDCQ-UHFFFAOYSA-N","CC(C)NC1=NC(Cl)=NC(N)=N1","C6H10ClN5","187.63","78","pesticide","Unclassified",NA +10310,"879-39-0","DTXSID5026097","2,3,4,5-Tetrachloronitrobenzene","MTBYTWZDRVOMBR-UHFFFAOYSA-N","[O-][N+](=O)C1=CC(Cl)=C(Cl)C(Cl)=C1Cl","C6HCl4NO2","260.88","84","industrial;pesticide","Unclassified",NA +10311,"3811-49-2","DTXSID7041885","Dioxabenzofos","OUNSASXJZHBGAI-UHFFFAOYSA-N","COP1(=S)OCC2=CC=CC=C2O1","C8H9O3PS","216.19","56","pesticide","Unclassified",NA +10312,"2008-58-4","DTXSID7022170","2,6-Dichlorobenzamide","JHSPCUHPSIUQRB-UHFFFAOYSA-N","NC(=O)C1=C(Cl)C=CC=C1Cl","C7H5Cl2NO","190.02","113","pesticide","Unclassified",NA +10313,"30125-63-4","DTXSID80184211","Desethylterbutylazine","LMKQNTMFZLAJDV-UHFFFAOYSA-N","CC(C)(C)NC1=NC(Cl)=NC(N)=N1","C7H12ClN5","201.66","61","pesticide","Unclassified",NA +10314,"95465-99-9","DTXSID7037505","Cadusafos","KXRPCFINVWWFHQ-UHFFFAOYSA-N","CCOP(=O)(SC(C)CC)SC(C)CC","C10H23O2PS2","270.39","62","pesticide","Unclassified",NA +10315,"3740-92-9","DTXSID90190843","4,6-Dichloro-2-phenylpyrimidine","NRFQZTCQAYEXEE-UHFFFAOYSA-N","ClC1=CC(Cl)=NC(=N1)C1=CC=CC=C1","C10H6Cl2N2","225.07","116","pesticide","Unclassified",NA +10316,"13171-00-1","DTXSID9044536","Celestolide","IKTHMQYJOWTSJO-UHFFFAOYSA-N","CC(=O)C1=CC(=CC2=C1CCC2(C)C)C(C)(C)C","C17H24O","244.378","98","personalCare","Unclassified",NA +10317,"41205-21-4","DTXSID7058092","Fluoroimide","IPENDKRRWFURRE-UHFFFAOYSA-N","FC1=CC=C(C=C1)N1C(=O)C(Cl)=C(Cl)C1=O","C10H4Cl2FNO2","260.05","58","pesticide","Unclassified",NA +10318,"37019-18-4","DTXSID20407557","Desethylsebutylazine","VMYDDULRGBGGBN-UHFFFAOYSA-N","CCC(C)NC1=NC(Cl)=NC(N)=N1","C7H12ClN5","201.66","28","pesticide","Unclassified",NA +10319,"66840-71-9","DTXSID00891450","N,N-Dimethyl-N'-p-tolylsulphamide","UDCDOJQOXWCCSD-UHFFFAOYSA-N","CN(C)S(=O)(=O)NC1=CC=C(C)C=C1","C9H14N2O2S","214.28","72","pesticide","Unclassified",NA +10320,"4228-88-0","DTXSID40195106","Benzimidazole, 4,6-dichloro-2-(trifluoromethyl)-","CAFBQHRMRGNHME-UHFFFAOYSA-N","FC(F)(F)C1=NC2=C(N1)C=C(Cl)C=C2Cl","C8H3Cl2F3N2","255.02","38","pesticide","Unclassified",NA +10321,"15323-35-0","DTXSID9051743","Phantolide","VDBHOHJWUDKDRW-UHFFFAOYSA-N","CC1C(C)(C)C2=C(C=C(C(C)=O)C(C)=C2)C1(C)C","C17H24O","244.378","71","personalCare","PAH",NA +10322,"120-51-4","DTXSID8029153","Benzyl benzoate","SESFRYSPDFLNCH-UHFFFAOYSA-N","O=C(OCC1=CC=CC=C1)C1=CC=CC=C1","C14H12O2","212.248","214","pesticide","Unclassified",NA +10323,"8065-36-9","DTXSID6040323","Bufencarb",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10324,"3734-48-3","DTXSID2027545","Chlordene","XCJXQCUJXDUNDN-UHFFFAOYSA-N","ClC1=C(Cl)C2(Cl)C3C=CCC3C1(Cl)C2(Cl)Cl","C10H6Cl6","338.86","44","industrial;pesticide","Unclassified",NA +10325,"771-51-7","DTXSID5061118","1H-Indole-3-acetonitrile","DMCPFOBLJMLSNX-UHFFFAOYSA-N","N#CCC1=CNC2=CC=CC=C12","C10H8N2","156.188","156","pesticide","Unclassified",NA +10326,"502-72-7","DTXSID2047141","Cyclopentadecanone","OSOIQJGOYGSIMF-UHFFFAOYSA-N","O=C1CCCCCCCCCCCCCC1","C15H28O","224.388","90","personalCare","Unclassified",NA +10327,"4147-57-3","DTXSID30194365","1,3,5-Triazine-2,4-diamine, N-(1-methylethyl)-6-(methylthio)-","PWERJYSEXWGFLB-UHFFFAOYSA-N","CSC1=NC(N)=NC(NC(C)C)=N1","C7H13N5S","199.28","15","pesticide","Unclassified",NA +10328,"6108-10-7","DTXSID0024135","epsilon-Hexachlorocyclohexane","JLYXXMFPNIAWKQ-DCLYFUHFSA-N","Cl[C@H]1[C@@H](Cl)[C@@H](Cl)[C@H](Cl)[C@H](Cl)[C@@H]1Cl","C6H6Cl6","290.81","425","pesticide","Unclassified",NA +10329,"106-02-5","DTXSID6044359","Pentadecan-15-olide","FKUPPRZPSYCDRS-UHFFFAOYSA-N","O=C1CCCCCCCCCCCCCCO1","C15H28O2","240.387","98","personalCare","Unclassified",NA +10330,"495-48-7","DTXSID0024555","Azoxybenzene","GAUZCKBSTZFWCT-UHFFFAOYSA-N","[O-][N+](=NC1=CC=CC=C1)C1=CC=CC=C1","C12H10N2O","198.225","102","industrial;pesticide","Unclassified",NA +10331,"83-66-9","DTXSID7025689","Musk ambrette","SUAUILGSCPYJCS-UHFFFAOYSA-N","COC1=C(C=C(C(C)=C1[N+]([O-])=O)[N+]([O-])=O)C(C)(C)C","C12H16N2O5","268.269","97","personalCare","Unclassified",NA +10332,"1929-87-9","DTXSID10940963","Methyl [(naphthalen-1-yl)oxy]acetate","LDPICKNRMIPLLJ-UHFFFAOYSA-N","COC(=O)COC1=CC=CC2=CC=CC=C12","C13H12O3","216.236","30","pesticide","Unclassified",NA +10333,"34849-42-8","DTXSID0041808","Cyclafuramid","OYRIKLVYHTWHCZ-UHFFFAOYSA-N","CC1=CC(C(=O)NC2CCCCC2)=C(C)O1","C13H19NO2","221.3","35","pesticide","Unclassified",NA +10334,"98730-04-2","DTXSID3029572","Benoxacor","PFJJMJDEVDLPNE-UHFFFAOYSA-N","CC1COC2=C(C=CC=C2)N1C(=O)C(Cl)Cl","C11H11Cl2NO2","260.11","70","pesticide","Unclassified",NA +10335,"68140-48-7","DTXSID9052393","1-(2,3-Dihydro-1,1,2,6-tetramethyl-3-(1-methylethyl)-1H-inden-5-yl)ethan-1-one","IMRYETFJNLKUHK-UHFFFAOYSA-N","CC(C)C1C(C)C(C)(C)C2=CC(C)=C(C=C12)C(C)=O","C18H26O","258.405","50","personalCare","Unclassified",NA +10336,"101-76-8","DTXSID6059239","Bis(4-chlorophenyl)methane","LQGSWLJZAKVBJH-UHFFFAOYSA-N","ClC1=CC=C(CC2=CC=C(Cl)C=C2)C=C1","C13H10Cl2","237.12","65","industrial","Unclassified",NA +10337,"3983-45-7","DTXSID60192894","Ronoxon","XWMMHXRGYYPFAV-UHFFFAOYSA-N","COP(=O)(OC)OC1=CC(Cl)=C(Cl)C=C1Cl","C8H8Cl3O4P","305.47","30","pesticide","Unclassified",NA +10338,"175217-20-6","DTXSID1058000","Silthiofam","MXMXHPPIGKYTAR-UHFFFAOYSA-N","CC1=C(C)C(C(=O)NCC=C)=C(S1)[Si](C)(C)C","C13H21NOSSi","267.46","46","pesticide","Unclassified",NA +10339,"81-15-2","DTXSID1021405","Musk Xylene","XMWRWTSZNLOZFN-UHFFFAOYSA-N","CC1=C(C(=C(C(C)=C1[N+]([O-])=O)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O","C12H15N3O6","297.267","61","personalCare","Unclassified",NA +10340,"1506-02-1","DTXSID501015522","1-(5,6,7,8-Tetrahydro-3,5,5,6,8,8-hexamethyl-2-naphthalenyl)ethanone",NA,NA,NA,NA,NA,"personalCare","Unclassified",NA +10341,"41096-46-2","DTXSID9042049","Hydroprene","FYQGBXGJFWXIPP-UEVLXMDPSA-N","CCOC(=O)\C=C(/C)\C=C\CC(C)CCCC(C)C","C17H30O2","266.425","49","pesticide","Unclassified",NA +10342,"2255-17-6","DTXSID00177084","Fenitrooxone","MJNAIAPNXYJWCT-UHFFFAOYSA-N","COP(=O)(OC)OC1=CC(C)=C(C=C1)[N+]([O-])=O","C9H12NO6P","261.17","29","pesticide","Unclassified",NA +10343,"26244-33-7","DTXSID90343594","Ethofumesate-2-keto","CXWYCAYNZXSHTF-UHFFFAOYSA-N","CC1(C)C(=O)OC2=C1C=C(OS(C)(=O)=O)C=C2","C11H12O5S","256.27","33","pesticide","Unclassified",NA +10344,"56425-91-3","DTXSID3024108","Flurprimidol","VEVZCONIUDBCDC-UHFFFAOYSA-N","CC(C)C(O)(C1=CC=C(OC(F)(F)F)C=C1)C1=CN=CN=C1","C15H15F3N2O2","312.292","53","pesticide","Unclassified",NA +10345,"116-66-5","DTXSID6044519","1,1,3,3,5-Pentamethyl-4,6-dinitro-2,3-dihydro-1H-indene","UHWURQRPEIFIAK-UHFFFAOYSA-N","CC1=C(C=C2C(=C1[N+]([O-])=O)C(C)(C)CC2(C)C)[N+]([O-])=O","C14H18N2O4","278.308","59","personalCare","Unclassified",NA +10346,"149508-90-7","DTXSID8057980","Simeconazole","YABFPHSQTSFWQB-UHFFFAOYSA-N","C[Si](C)(C)CC(O)(CN1C=NC=N1)C1=CC=C(F)C=C1","C14H20FN3OSi","293.417","35","pesticide","Unclassified",NA +10347,"61676-87-7","DTXSID5058143","Cymiazole","YUAUPYJCVKNAEC-UHFFFAOYSA-N","CN1C=CSC1=NC1=C(C)C=C(C)C=C1","C12H14N2S","218.32","70","pesticide","Unclassified",NA +10348,"999003-03-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10349,"118712-89-3","DTXSID4046812","Transfluthrin","DDVNRFNDOPPVQJ-HQJQHLMTSA-N","CC1(C)[C@H](C=C(Cl)Cl)[C@H]1C(=O)OCC1=C(F)C(F)=CC(F)=C1F","C15H12Cl2F4O2","371.15","46","pesticide","Unclassified",NA +10350,"86763-47-5","DTXSID2058205","Propisochlor","KZNDFYDURHAESM-UHFFFAOYSA-N","CCC1=CC=CC(C)=C1N(COC(C)C)C(=O)CCl","C15H22ClNO2","283.8","59","pesticide","Unclassified",NA +10351,"130336-40-2","DTXSID70894897","(1R,2R-rel)-2-[4-(2-Methyl-2-propanyl)phenoxy]cyclohexanol","FTIXUILRMBSXNS-HUUCEWRRSA-N","CC(C)(C)C1=CC=C(O[C@@H]2CCCC[C@H]2O)C=C1","C16H24O2","248.366","14","pesticide","Unclassified",NA +10352,"127-90-2","DTXSID40861778","Bis(2,3,3,3-tetrachloropropyl) ether","LNJXZKBHJZAIKQ-UHFFFAOYSA-N","ClC(COCC(Cl)C(Cl)(Cl)Cl)C(Cl)(Cl)Cl","C6H6Cl8O","377.71","52","pesticide","Unclassified",NA +10353,"205650-65-3","DTXSID0043719","Fipronil desulfinyl","JWKXVHLIRTVXLD-UHFFFAOYSA-N","NC1=C(C(=NN1C1=C(Cl)C=C(C=C1Cl)C(F)(F)F)C#N)C(F)(F)F","C12H4Cl2F6N4","389.08","32","pesticide","Unclassified",NA +10354,"52888-80-9","DTXSID3058119","Prosulfocarb","NQLVQOSNDJXLKG-UHFFFAOYSA-N","CCCN(CCC)C(=O)SCC1=CC=CC=C1","C14H21NOS","251.39","57","pesticide","Unclassified",NA +10355,"85-29-0","DTXSID6058920","2,4'-Dichlorobenzophenone","YXMYPHLWXBXNFF-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C(=O)C1=C(Cl)C=CC=C1","C13H8Cl2O","251.11","98","pesticide","Unclassified",NA +10356,"67306-00-7","DTXSID9058157","Fenpropidin","MGNFYQILYYYUBS-UHFFFAOYSA-N","CC(CN1CCCCC1)CC1=CC=C(C=C1)C(C)(C)C","C19H31N","273.464","47","pesticide","Unclassified",NA +10357,"34622-58-7","DTXSID0058061","Orbencarb","LLLFASISUZUJEQ-UHFFFAOYSA-N","CCN(CC)C(=O)SCC1=CC=CC=C1Cl","C12H16ClNOS","257.78","44","pesticide","Unclassified",NA +10358,"145-39-1","DTXSID9044582","1-tert-Butyl-3,4,5-trimethyl-2,6-dinitrobenzene","MINYPECWDZURGR-UHFFFAOYSA-N","CC1=C(C)C(=C(C(=C1C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O","C13H18N2O4","266.297","58","personalCare","Unclassified",NA +10359,"1825-19-0","DTXSID3042263","Pentachlorothioanisole","LGZZJTIUEJNNKV-UHFFFAOYSA-N","CSC1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C7H3Cl5S","296.41","60","pesticide","Unclassified",NA +10360,"39811-17-1","DTXSID70192880","5-Phenyl-o-anisidine","DTYBRSLINXBXMP-UHFFFAOYSA-N","COC1=C(N)C=C(C=C1)C1=CC=CC=C1","C13H13NO","199.253","82","pesticide","Unclassified",NA +10361,"76608-88-3","DTXSID601016585","Triapenthenol","CNFMJLVJDNGPHR-UKTHLTGXSA-N","CC(C)(C)C(O)C(=C/C1CCCCC1)\N1C=NC=N1","C15H25N3O","263.385","26","pesticide","Unclassified",NA +10362,"2588-05-8","DTXSID6042284","Phorate oxon sulfoxide","RCRHKXGEYNVPDK-UHFFFAOYSA-N","CCOP(=O)(OCC)SCS(=O)CC","C7H17O4PS2","260.3","28","pesticide","Unclassified",NA +10363,"56070-15-6","DTXSID5037604","Terbufos OA sulfone","HXIFYKRJAGQAHM-UHFFFAOYSA-N","CCOP(=O)(OCC)SCS(=O)(=O)C(C)(C)C","C9H21O5PS2","304.36","22","pesticide","Unclassified",NA +10364,"14214-32-5","DTXSID9041863","Difenoxuron","AMVYOVYGIJXTQB-UHFFFAOYSA-N","COC1=CC=C(OC2=CC=C(NC(=O)N(C)C)C=C2)C=C1","C16H18N2O3","286.331","35","pesticide","Unclassified",NA +10365,"2588-04-7","DTXSID6042282","Phorate sulfone","YVPSNUIHHFTTRL-UHFFFAOYSA-N","CCOP(=S)(OCC)SCS(=O)(=O)CC","C7H17O4PS3","292.36","36","pesticide","Unclassified",NA +10366,"63-74-1","DTXSID4023622","Sulfanilamide","FDDDEECHVMSUSB-UHFFFAOYSA-N","NC1=CC=C(C=C1)S(N)(=O)=O","C6H8N2O2S","172.2","295","pharmacological","Unclassified",NA +10367,"81-14-1","DTXSID6025690","Musk ketone","WXCMHFPAUCOJIG-UHFFFAOYSA-N","CC(=O)C1=C(C)C(=C(C(=C1C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O","C14H18N2O5","294.307","96","personalCare","Unclassified",NA +10368,"40341-04-6","DTXSID20193342","1-Benzimidazolyl-3,5-dimethylpyrazole","RUGYNGIMTAFTLP-UHFFFAOYSA-N","CC1=NN(C(C)=C1)C1=NC2=CC=CC=C2N1","C12H12N4","212.256","45","pesticide","Unclassified",NA +10369,"24353-61-5","DTXSID7042063","Isocarbophos","YFVOXLJXJBQDEF-UHFFFAOYSA-N","COP(N)(=S)OC1=C(C=CC=C1)C(=O)OC(C)C","C11H16NO4PS","289.29","49","pesticide","Unclassified",NA +10370,"31120-85-1","DTXSID50865585","Propan-2-yl 2-({ethoxy[(propan-2-yl)amino]phosphoryl}oxy)benzoate","DZUPKTNAUCDVTL-UHFFFAOYSA-N","CCOP(=O)(NC(C)C)OC1=CC=CC=C1C(=O)OC(C)C","C15H24NO5P","329.333","24","pesticide","Unclassified",NA +10371,"30043-49-3","DTXSID8035005","Ethidimuron","KCOCSOWTADCKOL-UHFFFAOYSA-N","CCS(=O)(=O)C1=NN=C(S1)N(C)C(=O)NC","C7H12N4O3S2","264.32","36","pesticide","Unclassified",NA +10372,"2550-75-6","DTXSID6041767","Chlorbicyclen","FUZORIOHZSVKAW-UHFFFAOYSA-N","ClCC1C(CCl)C2(Cl)C(Cl)=C(Cl)C1(Cl)C2(Cl)Cl","C9H6Cl8","397.75","36","pesticide","Unclassified",NA +10373,"56070-16-7","DTXSID1042443","Terbufos sulfone","DWZSTEUTHNUVQD-UHFFFAOYSA-N","CCOP(=S)(OCC)SCS(=O)(=O)C(C)(C)C","C9H21O4PS3","320.42","31","pesticide","Unclassified",NA +10374,"18708-87-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10375,"120067-83-6","DTXSID50869644","Fipronil sulfide","FQXWEKADCSXYOC-UHFFFAOYSA-N","NC1=C(SC(F)(F)F)C(=NN1C1=C(Cl)C=C(C=C1Cl)C(F)(F)F)C#N","C12H4Cl2F6N4S","421.14","34","pesticide","Unclassified",NA +10376,"61432-55-1","DTXSID5058141","Dimepiperate","BWUPSGJXXPATLU-UHFFFAOYSA-N","CC(C)(SC(=O)N1CCCCC1)C1=CC=CC=C1","C15H21NOS","263.4","51","pesticide","Unclassified",NA +10377,"28159-98-0","DTXSID3032416","Cybutryne","HDHLIWCXDDZUFH-UHFFFAOYSA-N","CSC1=NC(NC(C)(C)C)=NC(NC2CC2)=N1","C11H19N5S","253.37","78","pesticide","Unclassified",NA +10378,"18708-86-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10379,"19480-43-4","DTXSID0042111","MCPA-butotyl","WKGKFWXGAHXMCE-UHFFFAOYSA-N","CCCCOCCOC(=O)COC1=C(C)C=C(Cl)C=C1","C15H21ClO4","300.78","32","pesticide","Unclassified",NA +10380,"999006-03-0",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10381,"113614-08-7","DTXSID7057941","Beflubutamid","FFQPZWRNXKPNPX-UHFFFAOYSA-N","CCC(OC1=CC(=C(F)C=C1)C(F)(F)F)C(=O)NCC1=CC=CC=C1","C18H17F4NO2","355.333","34","pesticide","Unclassified",NA +10382,"1022-22-6","DTXSID6073940","1,1-Bis(p-chlorophenyl)-2-chloroethene","LNKQQZFLNUVWQQ-UHFFFAOYSA-N","ClC=C(C1=CC=C(Cl)C=C1)C1=CC=C(Cl)C=C1","C14H9Cl3","283.58","50","pesticide","Unclassified",NA +10383,"7292-16-2","DTXSID2058172","Propaphos","PWYIUEFFPNVCMW-UHFFFAOYSA-N","CCCOP(=O)(OCCC)OC1=CC=C(SC)C=C1","C13H21O4PS","304.34","32","pesticide","Unclassified",NA +10384,"62850-32-2","DTXSID5058145","Fenothiocarb","HMIBKHHNXANVHR-UHFFFAOYSA-N","CN(C)C(=O)SCCCCOC1=CC=CC=C1","C13H19NO2S","253.36","46","pesticide","Unclassified",NA +10385,"70193-21-4","DTXSID00867877","N-(1-Butoxy-2,2,2-trichloroethyl)-2-hydroxybenzamide","NHTFLYKPEGXOAN-UHFFFAOYSA-N","CCCCOC(NC(=O)C1=CC=CC=C1O)C(Cl)(Cl)Cl","C13H16Cl3NO3","340.63","35","pesticide","Unclassified",NA +10386,"80-33-1","DTXSID5020310","Chlorfenson","RZXLPPRPEOUENN-UHFFFAOYSA-N","ClC1=CC=C(OS(=O)(=O)C2=CC=C(Cl)C=C2)C=C1","C12H8Cl2O3S","303.15","53","pesticide;pesticide","Unclassified",NA +10387,"18181-70-9","DTXSID8040278","Iodenphos","LFVLUOAHQIVABZ-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC(Cl)=C(I)C=C1Cl","C8H8Cl2IO3PS","412.99","50","pesticide","Unclassified",NA +10388,"36335-67-8","DTXSID5058068","Butamiphos","OEYOMNZEMCPTKN-UHFFFAOYSA-N","CCOP(=S)(NC(C)CC)OC1=C(C=CC(C)=C1)[N+]([O-])=O","C13H21N2O4PS","332.35","43","pesticide","Unclassified",NA +10389,"38727-55-8","DTXSID9032539","Diethatyl-ethyl","WFKSADNZWSKCRZ-UHFFFAOYSA-N","CCOC(=O)CN(C(=O)CCl)C1=C(CC)C=CC=C1CC","C16H22ClNO3","311.81","34","pesticide","Unclassified",NA +10390,"15457-05-3","DTXSID7037553","Fluorodifen","HHMCAJWVGYGUEF-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=C(C=C(C=C2)C(F)(F)F)[N+]([O-])=O)C=C1","C13H7F3N2O5","328.203","50","pesticide","Unclassified",NA +10391,"50512-35-1","DTXSID8058110","Isoprothiolane","UFHLMYOGRXOCSL-UHFFFAOYSA-N","CC(C)OC(=O)C(C(=O)OC(C)C)=C1SCCS1","C12H18O4S2","290.39","89","pesticide;pesticide","Unclassified",NA +10392,"83657-17-4","DTXSID3035002","Uniconazole-P","YNWVFADWVLCOPU-MAUPQMMJSA-N","CC(C)(C)[C@H](O)C(=C/C1=CC=C(Cl)C=C1)\N1C=NC=N1","C15H18ClN3O","291.78","39","pesticide","Unclassified",NA +10393,"51218-49-6","DTXSID8058112","Pretilachlor","YLPGTOIOYRQOHV-UHFFFAOYSA-N","CCCOCCN(C(=O)CCl)C1=C(CC)C=CC=C1CC","C17H26ClNO2","311.85","76","pesticide","Unclassified",NA +10394,"37893-02-0","DTXSID4058079","Flubenzimine","IZFZCMFMJKDHJZ-BANPTERESA-N","FC(F)(F)\N=C1/S\C(=N/C2=CC=CC=C2)N(/C/1=N/C(F)(F)F)C1=CC=CC=C1","C17H10F6N4S","416.35","19","pesticide","Unclassified",NA +10395,"75736-33-3","DTXSID2058178","Diclobutrazol","URDNHJIVMYZFRT-UONOGXRCSA-N","[H][C@](CC1=C(Cl)C=C(Cl)C=C1)([C@@H](O)C(C)(C)C)N1C=NC=N1","C15H19Cl2N3O","328.24","15","pesticide","Unclassified",NA +10396,"41394-05-2","DTXSID7047568","Metamitron","VHCNQEUWZYOAEV-UHFFFAOYSA-N","CC1=NN=C(C(=O)N1N)C1=CC=CC=C1","C10H10N4O","202.217","88","pesticide","Unclassified",NA +10397,"60207-31-0","DTXSID3041613","Azaconazole","AKNQMEBLVAMSNZ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1(CN2C=NC=N2)OCCO1","C12H11Cl2N3O2","300.14","77","pesticide","Unclassified",NA +10398,"52756-25-9","DTXSID8040353","Flamprop-methyl","RBNIGDFIUWJJEV-UHFFFAOYSA-N","COC(=O)C(C)N(C(=O)C1=CC=CC=C1)C1=CC(Cl)=C(F)C=C1","C17H15ClFNO3","335.76","39","pesticide","Unclassified",NA +10399,"841-06-5","DTXSID2040286","Methoprotryne","DDUIUBPJPOKOMV-UHFFFAOYSA-N","COCCCNC1=NC(NC(C)C)=NC(SC)=N1","C11H21N5OS","271.38","39","pesticide","Unclassified",NA +10400,"64470-88-8","DTXSID5032579","Triclopyr butotyl","IVDRCZNHVGQBHZ-UHFFFAOYSA-N","CCCCOCCOC(=O)COC1=C(Cl)C=C(Cl)C(Cl)=N1","C13H16Cl3NO4","356.62","62","pesticide","Unclassified",NA +10401,"136-25-4","DTXSID3037543","2-(2,4,5-Trichlorophenoxy)ethyl 2,2-dichloropropionate","KMHZPJNVPCAUMN-UHFFFAOYSA-N","CC(Cl)(Cl)C(=O)OCCOC1=CC(Cl)=C(Cl)C=C1Cl","C11H9Cl5O3","366.44","34","pesticide","Unclassified",NA +10402,"18854-01-8","DTXSID0042080","Isoxathion","SDMSCIWHRZJSRN-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=NOC(=C1)C1=CC=CC=C1","C13H16NO4PS","313.31","50","pesticide","Unclassified",NA +10403,"12771-68-5","DTXSID2034338","Ancymidol","HUTDUHSNJYTCAR-UHFFFAOYSA-N","COC1=CC=C(C=C1)C(O)(C1CC1)C1=CN=CN=C1","C15H16N2O2","256.305","78","pesticide","Unclassified",NA +10404,"485-31-4","DTXSID9040269","Binapacryl","ZRDUSMYWDRPZRM-UHFFFAOYSA-N","CCC(C)C1=CC(=CC(=C1OC(=O)C=C(C)C)[N+]([O-])=O)[N+]([O-])=O","C15H18N2O6","322.317","52","pesticide","Unclassified",NA +10405,"50594-67-7","DTXSID8041583","Acifluorfen-methyl","AHGMXAFUHVRQAD-UHFFFAOYSA-N","COC(=O)C1=C(C=CC(OC2=CC=C(C=C2Cl)C(F)(F)F)=C1)[N+]([O-])=O","C15H9ClF3NO5","375.68","34","pesticide","Unclassified",NA +10406,"3761-41-9","DTXSID9058076","Mesulfenfos","DLAPIMGBBDILHJ-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC(C)=C(C=C1)S(C)=O","C10H15O4PS2","294.32","45","pesticide","Unclassified",NA +10407,"69581-33-5","DTXSID40867831","N-(3-Chlorophenyl)-N-(2-oxooxolan-3-yl)cyclopropanecarboxamide","KRZUZYJEQBXUIN-UHFFFAOYSA-N","ClC1=CC(=CC=C1)N(C1CCOC1=O)C(=O)C1CC1","C14H14ClNO3","279.72","36","pesticide","Unclassified",NA +10408,"2635-10-1","DTXSID8042139","Methiocarb sulfoxide","FNCMBMZOZQAWJA-UHFFFAOYSA-N","CNC(=O)OC1=CC(C)=C(C(C)=C1)S(C)=O","C11H15NO3S","241.31","32","pesticide","Unclassified",NA +10409,"60207-93-4","DTXSID2041913","Etaconazole","DWRKFAJEBUWTQM-UHFFFAOYSA-N","CCC1COC(CN2C=NC=N2)(O1)C1=C(Cl)C=C(Cl)C=C1","C14H15Cl2N3O2","328.19","49","pesticide","Unclassified",NA +10410,"52756-22-6","DTXSID6041977","Flamprop-isopropyl","IKVXBIIHQGXQRQ-UHFFFAOYSA-N","CC(C)OC(=O)C(C)N(C(=O)C1=CC=CC=C1)C1=CC(Cl)=C(F)C=C1","C19H19ClFNO3","363.81","42","pesticide","Unclassified",NA +10411,"77732-09-3","DTXSID2032631","Oxadixyl","UWVQIROCRJWDKL-UHFFFAOYSA-N","COCC(=O)N(N1CCOC1=O)C1=C(C)C=CC=C1C","C14H18N2O4","278.308","71","pesticide","Unclassified",NA +10412,"1031-47-6","DTXSID2042482","Triamiphos","BABJTMNVJXLAEX-UHFFFAOYSA-N","CN(C)P(=O)(N(C)C)N1N=C(N=C1N)C1=CC=CC=C1","C12H19N6OP","294.299","30","pesticide;pesticide","Unclassified",NA +10413,"2227-13-6","DTXSID5020314","Tetrasul","QUWSDLYBOVGOCW-UHFFFAOYSA-N","ClC1=CC=C(SC2=CC(Cl)=C(Cl)C=C2Cl)C=C1","C12H6Cl4S","324.04","55","pesticide","Unclassified",NA +10414,"60238-56-4","DTXSID4041785","Chlorthiophos",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10415,"14255-88-0","DTXSID2041969","Fenazaflor","ISVQSVPUDBVFFU-UHFFFAOYSA-N","FC(F)(F)C1=NC2=C(C=C(Cl)C(Cl)=C2)N1C(=O)OC1=CC=CC=C1","C15H7Cl2F3N2O2","375.13","40","pesticide","Unclassified",NA +10416,"55814-41-0","DTXSID1037565","Mepronil","BCTQJXQXJVLSIG-UHFFFAOYSA-N","CC(C)OC1=CC=CC(NC(=O)C2=C(C)C=CC=C2)=C1","C17H19NO2","269.344","73","pesticide","Unclassified",NA +10417,"24017-47-8","DTXSID9037612","Triazophos","AMFGTOFWMRQMEM-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=NN(C=N1)C1=CC=CC=C1","C12H16N3O3PS","313.31","66","pesticide","Unclassified",NA +10418,"1836-77-7","DTXSID0041775","Chlornitrofen","XQNAUQUKWRBODG-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=C(Cl)C=C(Cl)C=C2Cl)C=C1","C12H6Cl3NO3","318.53","56","industrial","haloEthers",NA +10418,"1836-77-7","DTXSID0041775","Chlornitrofen","XQNAUQUKWRBODG-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=C(Cl)C=C(Cl)C=C2Cl)C=C1","C12H6Cl3NO3","318.53","56","pesticide","Unclassified",NA +10419,"51207-31-9","DTXSID3052147","2,3,7,8-Tetrachlorodibenzofuran","KSMVNVHUTQZITP-UHFFFAOYSA-N","ClC1=CC2=C(C=C1Cl)C1=CC(Cl)=C(Cl)C=C1O2","C12H4Cl4O","305.96","46","industrial","Unclassified",NA +10420,"71626-11-4","DTXSID3041619","Benalaxyl","CJPQIRJHIZUAQP-UHFFFAOYSA-N","COC(=O)C(C)N(C(=O)CC1=CC=CC=C1)C1=C(C)C=CC=C1C","C20H23NO3","325.408","62","pesticide","Unclassified",NA +10421,"17109-49-8","DTXSID7041910","Edifenphos","AWZOLILCOUMRDG-UHFFFAOYSA-N","CCOP(=O)(SC1=CC=CC=C1)SC1=CC=CC=C1","C14H15O2PS2","310.37","60","pesticide","Unclassified",NA +10422,"13067-93-1","DTXSID5041805","Cyanofenphos","LRNJHZNPJSPMGK-UHFFFAOYSA-N","CCOP(=S)(OC1=CC=C(C=C1)C#N)C1=CC=CC=C1","C15H14NO2PS","303.32","50","pesticide","Unclassified",NA +10423,"1689-99-2","DTXSID7023932","Bromoxynil octanoate","DQKWXTIYGWPGOO-UHFFFAOYSA-N","CCCCCCCC(=O)OC1=C(Br)C=C(C=C1Br)C#N","C15H17Br2NO2","403.114","63","pesticide","Unclassified",NA +10424,"2164-08-1","DTXSID9042093","Lenacil","ZTMKADLOSYKWCA-UHFFFAOYSA-N","O=C1NC2=C(CCC2)C(=O)N1C1CCCCC1","C13H18N2O2","234.299","88","pesticide","Unclassified",NA +10425,"3478-94-2","DTXSID7032634","Piperalin","BZGLBXYQOMFXAU-UHFFFAOYSA-N","CC1CCCCN1CCCOC(=O)C1=CC(Cl)=C(Cl)C=C1","C16H21Cl2NO2","330.25","29","pesticide","Unclassified",NA +10426,"63284-71-9","DTXSID2042220","Nuarimol","SAPGTCDSBGMXCD-UHFFFAOYSA-N","OC(C1=CC=C(F)C=C1)(C1=CN=CN=C1)C1=CC=CC=C1Cl","C17H12ClFN2O","314.74","51","pesticide","Unclassified",NA +10427,"96491-05-3","DTXSID0058227","Thenylchlor","KDWQYMVPYJGPHS-UHFFFAOYSA-N","COC1=C(CN(C(=O)CCl)C2=C(C)C=CC=C2C)SC=C1","C16H18ClNO2S","323.84","34","pesticide","Unclassified",NA +10428,"83164-33-4","DTXSID4041494","Diflufenican","WYEHFWKAOXOVJD-UHFFFAOYSA-N","FC1=CC=C(NC(=O)C2=C(OC3=CC(=CC=C3)C(F)(F)F)N=CC=C2)C(F)=C1","C19H11F5N2O2","394.301","110","pesticide","Unclassified",NA +10429,"5259-88-1","DTXSID8034792","Oxycarboxin","AMEKQAFGQBKLKX-UHFFFAOYSA-N","CC1=C(C(=O)NC2=CC=CC=C2)S(=O)(=O)CCO1","C12H13NO4S","267.3","62","pesticide","Unclassified",NA +10430,"28434-01-7","DTXSID2034382","Bioresmethrin","VEMKTZHHVJILDY-UXHICEINSA-N","CC(C)=C[C@@H]1[C@@H](C(=O)OCC2=COC(CC3=CC=CC=C3)=C2)C1(C)C","C22H26O3","338.447","52","pesticide","Unclassified",NA +10431,"106325-08-0","DTXSID1040372","Epoxiconazole","ZMYFCFLJBGAQRS-RXQGYGPJNA-N","FC1=CC=C(C=C1)[C@@]1(CN2C=NC=N2)O[C@@H]1C1=C(Cl)C=CC=C1","C17H13ClFN3O","329.76","49","pesticide","Unclassified",NA +10432,"31251-03-3","DTXSID80185182","1-(3-Trifluoromethyltrityl)-1H-1,2,4-triazole","LXMQMMSGERCRSU-UHFFFAOYSA-N","FC(F)(F)C1=CC=CC(=C1)C(N1C=NC=N1)(C1=CC=CC=C1)C1=CC=CC=C1","C22H16F3N3","379.386","50","pesticide","Unclassified",NA +10433,"4726-14-1","DTXSID9042203","Nitralin","UMKANAFDOQQUKE-UHFFFAOYSA-N","CCCN(CCC)C1=C(C=C(C=C1[N+]([O-])=O)S(C)(=O)=O)[N+]([O-])=O","C13H19N3O6S","345.37","48","pesticide","Unclassified",NA +10434,"88678-67-5","DTXSID2058209","Pyributicarb","VTRWMTJQBQJKQH-UHFFFAOYSA-N","COC1=CC=CC(=N1)N(C)C(=S)OC1=CC=CC(=C1)C(C)(C)C","C18H22N2O2S","330.45","45","pesticide","Unclassified",NA +10435,"22212-55-1","DTXSID7040281","Benzoylprop-ethyl","SLCGUGMPSUYJAY-UHFFFAOYSA-N","CCOC(=O)C(C)N(C(=O)C1=CC=CC=C1)C1=CC(Cl)=C(Cl)C=C1","C18H17Cl2NO3","366.24","52","pesticide","Unclassified",NA +10436,"97-23-4","DTXSID6021824","Dichlorophen","MDNWOSOZYLHTCG-UHFFFAOYSA-N","OC1=CC=C(Cl)C=C1CC1=CC(Cl)=CC=C1O","C13H10Cl2O2","269.12","165","pharmacological;pesticide","Unclassified",NA +10437,"87-82-1","DTXSID1024128","Hexabromobenzene","CAYGQBVSOZLICD-UHFFFAOYSA-N","BrC1=C(Br)C(Br)=C(Br)C(Br)=C1Br","C6Br6","551.49","84","flameRetardant","Unclassified",NA +10438,"119-12-0","DTXSID2042355","Pyridaphenthion","CXJSOEPQXUCJSA-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=NN(C(=O)C=C1)C1=CC=CC=C1","C14H17N2O4PS","340.33","55","pesticide","Unclassified",NA +10439,"25006-32-0","DTXSID40865175","4-Bromo-2,5-dichlorophenyl methyl phenylphosphonate","MAKUYRKZFGSMMG-UHFFFAOYSA-N","COP(=O)(OC1=CC(Cl)=C(Br)C=C1Cl)C1=CC=CC=C1","C13H10BrCl2O3P","396","22","pesticide","Unclassified",NA +10440,"29185-21-5","DTXSID30951778","O-[2,5-Dichloro-4-(methanesulfinyl)phenyl] O,O-diethyl phosphorothioate","ROXYXQSWBAJYEI-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC(Cl)=C(C=C1Cl)S(C)=O","C11H15Cl2O4PS2","377.23","10","pesticide","Unclassified",NA +10441,"78-57-9","DTXSID9042120","Menazon","SUYHYHLFUHHVJQ-UHFFFAOYSA-N","COP(=S)(OC)SCC1=NC(N)=NC(N)=N1","C6H12N5O2PS2","281.29","32","pesticide","Unclassified",NA +10442,"18181-80-1","DTXSID1034397","Bromopropylate","FOANIXZHAMJWOI-UHFFFAOYSA-N","CC(C)OC(=O)C(O)(C1=CC=C(Br)C=C1)C1=CC=C(Br)C=C1","C17H16Br2O3","428.12","76","pesticide","Unclassified",NA +10443,"24151-93-7","DTXSID8058031","Piperophos","UNLYSVIDNRIVFJ-UHFFFAOYSA-N","CCCOP(=S)(OCCC)SCC(=O)N1CCCCC1C","C14H28NO3PS2","353.48","43","pesticide","Unclassified",NA +10444,"2275-14-1","DTXSID3042269","Phenkapton","GGNLTHFTYNDYNK-UHFFFAOYSA-N","CCOP(=S)(OCC)SCSC1=C(Cl)C=CC(Cl)=C1","C11H15Cl2O2PS3","377.29","34","pesticide","Unclassified",NA +10445,"42576-02-3","DTXSID1040320","Bifenox","SUSRORUBZHMPCO-UHFFFAOYSA-N","COC(=O)C1=C(C=CC(OC2=CC=C(Cl)C=C2Cl)=C1)[N+]([O-])=O","C14H9Cl2NO5","342.13","84","pesticide","Unclassified",NA +10446,"84-61-7","DTXSID5025021","Dicyclohexyl phthalate","VOWAEIGWURALJQ-UHFFFAOYSA-N","O=C(OC1CCCCC1)C1=C(C=CC=C1)C(=O)OC1CCCCC1","C20H26O4","330.424","97","industrial","Unclassified",NA +10447,"999053-03-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10448,"116-29-0","DTXSID7021316","Tetradifon","MLGCXEBRWGEOQX-UHFFFAOYSA-N","ClC1=CC=C(C=C1)S(=O)(=O)C1=CC(Cl)=C(Cl)C=C1Cl","C12H6Cl4O2S","356.04","84","pesticide","Unclassified",NA +10449,"26002-80-2","DTXSID7032688","Phenothrin","SBNFWQZLDJGRLK-UHFFFAOYSA-N","CC(C)=CC1C(C(=O)OCC2=CC=CC(OC3=CC=CC=C3)=C2)C1(C)C","C23H26O3","350.458","134","pesticide","Unclassified",NA +10450,"65907-30-4","DTXSID3052725","Furathiocarb","HAWJXYBZNNRMNO-UHFFFAOYSA-N","CCCCOC(=O)N(C)SN(C)C(=O)OC1=CC=CC2=C1OC(C)(C)C2","C18H26N2O5S","382.48","52","pesticide","Unclassified",NA +10451,"73250-68-7","DTXSID7058173","Mefenacet","XIGAUIHYSDTJHW-UHFFFAOYSA-N","CN(C(=O)COC1=NC2=CC=CC=C2S1)C1=CC=CC=C1","C16H14N2O2S","298.36","78","pesticide","Unclassified",NA +10452,"68085-85-8","DTXSID6023997","alpha-Cyhalothrin","ZXQYGBMAQZUVMI-UNOMPAQXSA-N","CC1(C)C(\C=C(/Cl)C(F)(F)F)C1C(=O)OC(C#N)C1=CC=CC(OC2=CC=CC=C2)=C1","C23H19ClF3NO3","449.85","59","pesticide;pesticide","Unclassified",NA +10453,"13457-18-6","DTXSID7042352","Pyrazophos","JOOMJVFZQRQWKR-UHFFFAOYSA-N","CCOC(=O)C1=CN2N=C(OP(=S)(OCC)OCC)C=C2N=C1C","C14H20N3O5PS","373.36","49","pesticide;pesticide","Unclassified",NA +10454,"10311-84-9","DTXSID0037522","Dialifor","MUMQYXACQUZOFP-UHFFFAOYSA-N","CCOP(=S)(OCC)SC(CCl)N1C(=O)C2=C(C=CC=C2)C1=O","C14H17ClNO4PS2","393.84","49","pesticide","Unclassified",NA +10455,"55179-31-2","DTXSID2037502","Bitertanol","VGPIBGGRCVEHQZ-UHFFFAOYSA-N","CC(C)(C)C(O)C(OC1=CC=C(C=C1)C1=CC=CC=C1)N1C=NC=N1","C20H23N3O2","337.423","72","pesticide","Unclassified",NA +10456,"78-34-2","DTXSID9020534","Dioxathion","VBKKVDGJXVOLNE-UHFFFAOYSA-N","CCOP(=S)(OCC)SC1OCCOC1SP(=S)(OCC)OCC","C12H26O6P2S4","456.52","48","pesticide","Unclassified",NA +10457,"70124-77-5","DTXSID0022301","Flucythrinate","GBIHOLCMZGAKNG-CGAIIQECSA-N","CC(C)[C@H](C(=O)OC(C#N)C1=CC=CC(OC2=CC=CC=C2)=C1)C1=CC=C(OC(F)F)C=C1","C26H23F2NO4","451.47","23","pesticide","Unclassified",NA +10458,"491-80-5","DTXSID1022394","Biochanin A","WUADCCWRTIWANL-UHFFFAOYSA-N","COC1=CC=C(C=C1)C1=COC2=C(C(O)=CC(O)=C2)C1=O","C16H12O5","284.267","213","pharmacological","Unclassified",NA +10459,"362-05-0","DTXSID3022372","2-Hydroxy-estradiol","DILDHNKDVHLEQB-XSSYPUMDSA-N","C[C@]12CC[C@H]3[C@@H](CCC4=C3C=C(O)C(O)=C4)[C@@H]1CC[C@@H]2O","C18H24O3","288.387","74","pharmacological","Unclassified",NA +10460,"55512-33-9","DTXSID2032639","Pyridate","JTZCTMAVMHRNTR-UHFFFAOYSA-N","CCCCCCCCSC(=O)OC1=CC(Cl)=NN=C1C1=CC=CC=C1","C19H23ClN2O2S","378.92","55","pesticide","Unclassified",NA +10461,"102851-06-9","DTXSID7037555","tau-Fluvalinate","INISTDXBRIBGOC-XMMISQBUSA-N","CC(C)[C@@H](NC1=C(Cl)C=C(C=C1)C(F)(F)F)C(=O)OC(C#N)C1=CC(OC2=CC=CC=C2)=CC=C1","C26H22ClF3N2O3","502.92","67","pesticide","Unclassified",NA +10462,"3383-96-8","DTXSID1032484","Temephos","WWJZWCUNLNYYAU-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC=C(SC2=CC=C(OP(=S)(OC)OC)C=C2)C=C1","C16H20O6P2S3","466.46","105","pesticide","Unclassified",NA +10463,"98-16-8","DTXSID9024512","3-(Trifluoromethyl)aniline","VIUDTWATMPPKEL-UHFFFAOYSA-N","NC1=CC(=CC=C1)C(F)(F)F","C7H6F3N","161.127","176","industrial;pesticide","aniline",NA +10464,"103-41-3","DTXSID3041663","Benzyl cinnamate","NGHOLYJTSCBCGC-UHFFFAOYSA-N","O=C(OCC1=CC=CC=C1)C=CC1=CC=CC=C1","C16H14O2","238.286","43","personalCare;natural;consumerProduct","Unclassified",NA +10465,"122-40-7","DTXSID8029157","alpha-Amyl cinnamaldehyde","HMKKIXGYKWDQSV-UHFFFAOYSA-N","CCCCCC(C=O)=CC1=CC=CC=C1","C14H18O","202.297","44","personalCare","Unclassified",NA +10465,"122-40-7","DTXSID80859230","(E)-alpha-Amylcinnamaldehyde","HMKKIXGYKWDQSV-SDNWHVSQSA-N","CCCCC\C(C=O)=C/C1=CC=CC=C1","C14H18O","202.297","59","personalCare","Unclassified",NA +10466,"79-77-6","DTXSID4021769","beta-Ionone","PSQYTAPXSHCGMF-BQYQJAHWSA-N","CC(=O)\C=C\C1=C(C)CCCC1(C)C","C13H20O","192.302","150","personalCare;natural","Unclassified",NA +10467,"127-41-3","DTXSID0035160","alpha-Ionone","UZFLPKAIBPNNCA-BQYQJAHWSA-N","CC(=O)\C=C\C1C(C)=CCCC1(C)C","C13H20O","192.302","103","personalCare;natural","Unclassified",NA +10468,"101-85-9","DTXSID2049393","alpha-Amylcinnamyl alcohol","LIPHCKNQPJXUQF-UHFFFAOYSA-N","CCCCCC(CO)=CC1=CC=CC=C1","C14H20O","204.313","30","personalCare","Unclassified",NA +10469,"118-58-1","DTXSID1024598","Benzyl salicylate","ZCTQGTTXIYCGGC-UHFFFAOYSA-N","OC1=C(C=CC=C1)C(=O)OCC1=CC=CC=C1","C14H12O3","228.247","119","personalCare;natural","Unclassified",NA +10470,"107-75-5","DTXSID6042232","Hydroxycitronellal","WPFVBOQKRVRMJB-UHFFFAOYSA-N","CC(CCCC(C)(C)O)CC=O","C10H20O2","172.268","100","personalCare","Unclassified",NA +10471,"104-55-2","DTXSID1024835","3-Phenylprop-2-enal","KJPRLNWUNMBNBZ-UHFFFAOYSA-N","O=CC=CC1=CC=CC=C1","C9H8O","132.162","59","personalCare;industrial;natural;consumerProduct;pesticide","Unclassified",NA +10472,"104-54-1","DTXSID9041491","3-Phenyl-2-propen-1-ol","OOCCDEMITAIZTP-UHFFFAOYSA-N","OCC=CC1=CC=CC=C1","C9H10O","134.178","59","personalCare;natural","Unclassified",NA +10473,"80-54-6","DTXSID9026500","2-(4-Tert-Butylbenzyl)propionaldehyde","SDQFDHOLCGWZPU-UHFFFAOYSA-N","CC(CC1=CC=C(C=C1)C(C)(C)C)C=O","C14H20O","204.313","109","personalCare","Unclassified",NA +10474,"31906-04-4","DTXSID1027970","4-(4-Hydroxy-4-methylpentyl)cyclohex-3-ene-1-carbaldehyde","ORMHZBNNECIKOH-UHFFFAOYSA-N","CC(C)(O)CCCC1=CCC(CC1)C=O","C13H22O2","210.317","90","personalCare","Unclassified",NA +10475,"111-12-6","DTXSID9047093","Methyl 2-octynoate","FRLZQXRXIKQFNS-UHFFFAOYSA-N","CCCCCC#CC(=O)OC","C9H14O2","154.209","97","personalCare;consumerProduct","Unclassified",NA +10476,"135-88-6","DTXSID4021131","N-Phenyl-2-naphthylamine","KEQFTVQCIQJIQW-UHFFFAOYSA-N","N(C1=CC=CC=C1)C1=CC=C2C=CC=CC2=C1","C16H13N","219.287","123","industrial","Unclassified",NA +10477,"90-30-2","DTXSID2025892","N-Phenyl-1-naphthylamine","XQVWYOYUZDUNRW-UHFFFAOYSA-N","N(C1=CC=CC=C1)C1=C2C=CC=CC2=CC=C1","C16H13N","219.287","133","industrial","Unclassified",NA +10478,"2440-22-4","DTXSID1027479","2-(2H-Benzotriazol-2-yl)-4-methylphenol","MCPKSFINULVDNX-UHFFFAOYSA-N","CC1=CC(N2N=C3C=CC=CC3=N2)=C(O)C=C1","C13H11N3O","225.251","139","industrial;consumerProduct","Unclassified",NA +10479,"128-37-0","DTXSID2020216","Butylated hydroxytoluene","NLZUEZXRPGMBCV-UHFFFAOYSA-N","CC1=CC(=C(O)C(=C1)C(C)(C)C)C(C)(C)C","C15H24O","220.356","236","industrial;consumerProduct","phenol",NA +10480,"97-02-9","DTXSID1021823","2,4-Dinitroaniline","LXQOQPGNCGEELI-UHFFFAOYSA-N","NC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O","C6H5N3O4","183.123","124","industrial","aniline",NA +10481,"95-51-2","DTXSID2021810","2-Chloroaniline","AKCRQHGQIJBRMN-UHFFFAOYSA-N","NC1=C(Cl)C=CC=C1","C6H6ClN","127.57","173","industrial","aniline",NA +10482,"121-87-9","DTXSID4021973","2-Chloro-4-nitroaniline","LOCWBQIWHWIRGN-UHFFFAOYSA-N","NC1=C(Cl)C=C(C=C1)[N+]([O-])=O","C6H5ClN2O2","172.57","135","industrial","aniline",NA +10483,"89-63-4","DTXSID4030384","4-Chloro-2-nitroaniline","PBGKNXWGYQPUJK-UHFFFAOYSA-N","NC1=C(C=C(Cl)C=C1)[N+]([O-])=O","C6H5ClN2O2","172.57","142","industrial","aniline",NA +10484,"3531-19-9","DTXSID6063062","2-Chloro-4,6-dinitroaniline","LHRIICYSGQGXSX-UHFFFAOYSA-N","NC1=C(Cl)C=C(C=C1[N+]([O-])=O)[N+]([O-])=O","C6H4ClN3O4","217.57","80","industrial","aniline",NA +10485,"827-94-1","DTXSID7052573","2,6-Dibromo-4-nitroaniline","YMZIFDLWYUSZCC-UHFFFAOYSA-N","NC1=C(Br)C=C(C=C1Br)[N+]([O-])=O","C6H4Br2N2O2","295.918","117","industrial","aniline",NA +10486,"1817-73-8","DTXSID4024646","2-Bromo-4,6-dinitroaniline","KWMDHCLJYMVBNS-UHFFFAOYSA-N","NC1=C(C=C(C=C1Br)[N+]([O-])=O)[N+]([O-])=O","C6H4BrN3O4","262.019","93","industrial","aniline",NA +10487,"2081-08-5","DTXSID3047891","Bisphenol E","HCNHNBLSNVSJTJ-UHFFFAOYSA-N","CC(C1=CC=C(O)C=C1)C1=CC=C(O)C=C1","C14H14O2","214.264","68","industrial;consumerProduct","phenol",NA +10488,"92-69-3","DTXSID7021152","4-Phenylphenol","YXVFYQXJAXKLAK-UHFFFAOYSA-N","OC1=CC=C(C=C1)C1=CC=CC=C1","C12H10O","170.211","168","industrial;consumerProduct","Unclassified",NA +10489,"95-56-7","DTXSID8052641","2-Bromophenol","VADKRMSMGWJZCF-UHFFFAOYSA-N","OC1=C(Br)C=CC=C1","C6H5BrO","173.009","164","industrial","phenol",NA +10490,"92-04-6","DTXSID0022353","2-Chloro-4-phenylphenol","MXORDJXBRHNWBE-UHFFFAOYSA-N","OC1=CC(Cl)=C(C=C1)C1=CC=CC=C1","C12H9ClO","204.65","36","industrial","phenol",NA +10491,"609-19-8","DTXSID4026212","3,4,5-Trichlorophenol","GBNHEBQXJVDXSW-UHFFFAOYSA-N","OC1=CC(Cl)=C(Cl)C(Cl)=C1","C6H3Cl3O","197.44","96","industrial","phenol",NA +10492,"108-43-0","DTXSID4024800","3-Chlorophenol","HORNXRXVQWOLPJ-UHFFFAOYSA-N","OC1=CC(Cl)=CC=C1","C6H5ClO","128.56","153","pharmacological;industrial;pulpAndPaper","phenol",NA +10493,"554-84-7","DTXSID2025765","3-Nitrophenol","RTZZCYNQPHTPPL-UHFFFAOYSA-N","OC1=CC=CC(=C1)[N+]([O-])=O","C6H5NO3","139.11","183","industrial","phenol",NA +10494,"580-51-8","DTXSID2022462","3-Phenylphenol","UBXYXCRCOKCZIT-UHFFFAOYSA-N","OC1=CC=CC(=C1)C1=CC=CC=C1","C12H10O","170.211","117","industrial","phenol",NA +10495,"1570-64-5","DTXSID5022510","4-Chloro-2-methylphenol","RHPUJHQBPORFGV-UHFFFAOYSA-N","CC1=C(O)C=CC(Cl)=C1","C7H7ClO","142.58","158","industrial","phenol",NA +10496,"622-62-8","DTXSID3044251","4-Ethoxyphenol","LKVFCSWBKOVHAH-UHFFFAOYSA-N","CCOC1=CC=C(O)C=C1","C8H10O2","138.166","137","industrial;consumerProduct","phenol",NA +10497,"554-00-7","DTXSID1024966","2,4-Dichloroaniline","KQCMTOWTPBNWDB-UHFFFAOYSA-N","NC1=CC=C(Cl)C=C1Cl","C6H5Cl2N","162.01","158","industrial","aniline",NA +10498,"95-82-9","DTXSID6024967","2,5-Dichloroaniline","AVYGCQXNNJPXSS-UHFFFAOYSA-N","NC1=C(Cl)C=CC(Cl)=C1","C6H5Cl2N","162.01","139","industrial","aniline",NA +10499,"87-59-2","DTXSID3026304","2,3-Xylidine","VVAKEQGKZNKUSU-UHFFFAOYSA-N","CC1=CC=CC(N)=C1C","C8H11N","121.183","133","industrial","aniline",NA +10500,"95-78-3","DTXSID3026306","2,5-Dimethylaniline","VOWZNBNDMFLQGM-UHFFFAOYSA-N","CC1=CC(N)=C(C)C=C1","C8H11N","121.183","132","industrial","aniline",NA +10501,"24544-04-5","DTXSID5022279","2,6-Diisopropylaniline","WKBALTUBRZPIPZ-UHFFFAOYSA-N","CC(C)C1=CC=CC(C(C)C)=C1N","C12H19N","177.291","127","industrial","aniline",NA +10502,"578-54-1","DTXSID0042242","2-Ethylaniline","MLPVBIWIRCKMJV-UHFFFAOYSA-N","CCC1=C(N)C=CC=C1","C8H11N","121.183","119","industrial","aniline",NA +10503,"643-28-7","DTXSID6052328","2-Isopropylaniline","YKOLZVXSPGIIBJ-UHFFFAOYSA-N","CC(C)C1=C(N)C=CC=C1","C9H13N","135.21","102","industrial","aniline",NA +10504,"697-82-5","DTXSID3047184","2,3,5-Trimethylphenol","OGRAOKJKVGDSFR-UHFFFAOYSA-N","CC1=CC(O)=C(C)C(C)=C1","C9H12O","136.194","141","personalCare;industrial","phenol",NA +10505,"583-78-8","DTXSID7025003","2,5-Dichlorophenol","RANCECPPZPIPNO-UHFFFAOYSA-N","OC1=CC(Cl)=CC=C1Cl","C6H4Cl2O","163","141","industrial","phenol",NA +10506,"489-01-0","DTXSID8041379","2,6-Di-tert-butyl-4-methoxyphenol","SLUKQUGVTITNSY-UHFFFAOYSA-N","COC1=CC(=C(O)C(=C1)C(C)(C)C)C(C)(C)C","C15H24O2","236.355","92","industrial","phenol",NA +10507,"91-10-1","DTXSID2052607","2,6-Dimethoxyphenol","KLIDCXVFHGNTTM-UHFFFAOYSA-N","COC1=CC=CC(OC)=C1O","C8H10O3","154.165","154","industrial;consumerProduct","phenol",NA +10508,"87-26-3","DTXSID8041452","2-(1-Methylbutyl)phenol","ROMXEVFSCNLHAB-UHFFFAOYSA-N","CCCC(C)C1=C(O)C=CC=C1","C11H16O","164.248","44","industrial","phenol",NA +10509,"94-86-0","DTXSID2047727","2-Ethoxy-5-(1-propenyl)phenol","RADIRXJQODWKGQ-UHFFFAOYSA-N","CCOC1=C(O)C=C(C=CC)C=C1","C11H14O2","178.231","36","personalCare;consumerProduct","phenol",NA +10510,"90-00-6","DTXSID1022479","2-Ethylphenol","IXQGCWUGDFDQMF-UHFFFAOYSA-N","CCC1=C(O)C=CC=C1","C8H10O","122.167","150","industrial;consumerProduct","phenol",NA +10511,"644-35-9","DTXSID9047702","2-Propylphenol","LCHYEKKJCUJAKN-UHFFFAOYSA-N","CCCC1=C(O)C=CC=C1","C9H12O","136.194","101","industrial;consumerProduct","phenol",NA +10512,"99-07-0","DTXSID0025101","3-Dimethylaminophenol","MESJRHHDBDCQTH-UHFFFAOYSA-N","CN(C)C1=CC=CC(O)=C1","C8H11NO","137.182","135","industrial","phenol",NA +10513,"108-68-9","DTXSID1025148","3,5-Dimethylphenol","TUAMRELNJMMDMT-UHFFFAOYSA-N","CC1=CC(O)=CC(C)=C1","C8H10O","122.167","149","industrial;consumerProduct","phenol",NA +10514,"620-17-7","DTXSID0022480","3-Ethylphenol","HMNKTRSOROOSPP-UHFFFAOYSA-N","CCC1=CC=CC(O)=C1","C8H10O","122.167","127","industrial;consumerProduct","phenol",NA +10515,"150-19-6","DTXSID0022012","3-Methoxyphenol","ASHGTJPOSUFTGB-UHFFFAOYSA-N","COC1=CC=CC(O)=C1","C7H8O2","124.139","169","pharmacological;industrial;natural","phenol",NA +10516,"585-34-2","DTXSID9044825","3-tert-Butylphenol","CYEKUDPFXBLGHH-UHFFFAOYSA-N","CC(C)(C)C1=CC=CC(O)=C1","C10H14O","150.221","121","industrial","phenol",NA +10517,"5930-28-9","DTXSID3040720","4-Amino-2,6-dichlorophenol","KGEXISHTCZHGFT-UHFFFAOYSA-N","NC1=CC(Cl)=C(O)C(Cl)=C1","C6H5Cl2NO","178.01","127","industrial","phenol",NA +10518,"1638-22-8","DTXSID3047425","4-Butylphenol","CYYZDBDROVLTJU-UHFFFAOYSA-N","CCCCC1=CC=C(O)C=C1","C10H14O","150.221","92","industrial","phenol",NA +10519,"99-89-8","DTXSID5042299","4-Isopropylphenol","YQUQWHNMBPIWGK-UHFFFAOYSA-N","CC(C)C1=CC=C(O)C=C1","C9H12O","136.194","144","personalCare;industrial","phenol",NA +10520,"634-93-5","DTXSID6021379","2,4,6-Trichloroaniline","NATVSFWWYVJTAZ-UHFFFAOYSA-N","NC1=C(Cl)C=C(Cl)C=C1Cl","C6H4Cl3N","196.46","119","industrial;consumerProduct;pesticide","aniline",NA +10521,"95-64-7","DTXSID3026308","3,4-Dimethylaniline","DOLQYFPDPKPQSS-UHFFFAOYSA-N","CC1=CC=C(N)C=C1C","C8H11N","121.183","138","industrial","aniline",NA +10522,"108-69-0","DTXSID8026309","3,5-Dimethylaniline","MKARNSWMMBGSHX-UHFFFAOYSA-N","CC1=CC(N)=CC(C)=C1","C8H11N","121.183","130","industrial","aniline",NA +10523,"133-53-9","DTXSID0041359","2,4-Dichloro-3,5-dimethylphenol","IYOLBFFHPZOQGW-UHFFFAOYSA-N","CC1=CC(O)=C(Cl)C(C)=C1Cl","C8H8Cl2O","191.05","103","industrial;consumerProduct","phenol",NA +10524,"526-75-0","DTXSID6025143","2,3-Dimethylphenol","QWBBPBRQALCEIZ-UHFFFAOYSA-N","CC1=C(C)C(O)=CC=C1","C8H10O","122.167","141","industrial;consumerProduct","phenol",NA +10525,"609-23-4","DTXSID8022080","2,4,6-Triiodophenol","VAPDZNUFNKUROY-UHFFFAOYSA-N","OC1=C(I)C=C(I)C=C1I","C6H3I3O","471.802","103","industrial","phenol",NA +10526,"88-27-7","DTXSID0044997","2,6-Di-tert-butyl-4-[(dimethylamino)methyl]phenol","VMZVBRIIHDRYGK-UHFFFAOYSA-N","CN(C)CC1=CC(=C(O)C(=C1)C(C)(C)C)C(C)(C)C","C17H29NO","263.425","96","industrial","phenol",NA +10527,"4130-42-1","DTXSID0029262","2,6-Di-tert-butyl-4-ethylphenol","BVUXDWXKPROUDO-UHFFFAOYSA-N","CCC1=CC(=C(O)C(=C1)C(C)(C)C)C(C)(C)C","C16H26O","234.383","91","industrial","phenol",NA +10528,"95-85-2","DTXSID5024473","2-Amino-4-chlorophenol","SWFNPENEBHAHEB-UHFFFAOYSA-N","NC1=CC(Cl)=CC=C1O","C6H6ClNO","143.57","132","industrial","phenol",NA +10529,"95-84-1","DTXSID4024488","2-Amino-4-methylphenol","ZMXYNJXDULEQCK-UHFFFAOYSA-N","CC1=CC=C(O)C(N)=C1","C7H9NO","123.155","141","industrial","phenol",NA +10530,"95-55-6","DTXSID8024498","2-Aminophenol","CDAWCLOXVUBKRW-UHFFFAOYSA-N","NC1=C(O)C=CC=C1","C6H7NO","109.128","191","industrial","phenol",NA +10531,"615-74-7","DTXSID1046558","2-Chloro-5-methylphenol","SMFHPCZZAAMJJO-UHFFFAOYSA-N","CC1=CC=C(Cl)C(O)=C1","C7H7ClO","142.58","99","industrial","phenol",NA +10532,"94-71-3","DTXSID2042276","o-Ethoxyphenol","MOEFFSWKSMRFRQ-UHFFFAOYSA-N","CCOC1=C(O)C=CC=C1","C8H10O2","138.166","129","industrial;consumerProduct","phenol",NA +10533,"88-69-7","DTXSID2044391","2-Isopropylphenol","CRBJBYGJVIBWIY-UHFFFAOYSA-N","CC(C)C1=C(O)C=CC=C1","C9H12O","136.194","136","industrial;consumerProduct","phenol",NA +10534,"93-51-6","DTXSID6047105","2-Methoxy-4-methylphenol","PETRWTHZSKVLRE-UHFFFAOYSA-N","COC1=CC(C)=CC=C1O","C8H10O2","138.166","129","natural;consumerProduct","phenol",NA +10535,"90-05-1","DTXSID0023113","2-Methoxyphenol","LHGVFZTZFXWLCP-UHFFFAOYSA-N","COC1=C(O)C=CC=C1","C7H8O2","124.139","246","industrial;natural","phenol",NA +10536,"91-68-9","DTXSID9025037","3-Diethylaminophenol","WAVOOWVINKGEHS-UHFFFAOYSA-N","CCN(CC)C1=CC=CC(O)=C1","C10H15NO","165.236","120","industrial","phenol",NA +10537,"123-30-8","DTXSID3024499","4-Aminophenol","PLIKAWJENQZMHA-UHFFFAOYSA-N","NC1=CC=C(O)C=C1","C6H7NO","109.128","200","industrial","phenol",NA +10538,"101-53-1","DTXSID9047962","4-Benzylphenol","HJSPWKGEPDZNLK-UHFFFAOYSA-N","OC1=CC=C(CC2=CC=CC=C2)C=C1","C13H12O","184.238","105","industrial","phenol",NA +10539,"88-04-0","DTXSID0032316","4-Chloro-3,5-dimethylphenol","OSDLLIBGSJNGJE-UHFFFAOYSA-N","CC1=CC(O)=CC(C)=C1Cl","C8H9ClO","156.61","194","industrial","phenol",NA +10540,"123-07-9","DTXSID4021977","4-Ethylphenol","HXDOZKJGKXYMEW-UHFFFAOYSA-N","CCC1=CC=C(O)C=C1","C8H10O","122.167","164","personalCare;industrial;consumerProduct","phenol",NA +10541,"150-76-5","DTXSID4020828","4-Methoxyphenol","NWVVVBRKAWDGAB-UHFFFAOYSA-N","COC1=CC=C(O)C=C1","C7H8O2","124.139","239","pharmacological;industrial","phenol",NA +10542,"119-33-5","DTXSID0026961","4-Methyl-2-nitrophenol","SYDNSSSQVSOXTN-UHFFFAOYSA-N","CC1=CC(=C(O)C=C1)[N+]([O-])=O","C7H7NO3","153.137","119","industrial","phenol",NA +10543,"95-32-9","DTXSID2026573","2-(Morpholin-4-yldithio)-1,3-benzothiazole","QRYFCNPYGUORTK-UHFFFAOYSA-N","C1CN(CCO1)SSC1=NC2=C(S1)C=CC=C2","C11H12N2OS3","284.41","61","industrial","Unclassified",NA +10544,"95-33-0","DTXSID5020360","N-Cyclohexyl-2-benzothiazolesulfenamide","DEQZTKGFXNUBJL-UHFFFAOYSA-N","C1CCC(CC1)NSC1=NC2=C(S1)C=CC=C2","C13H16N2S2","264.41","87","industrial","Unclassified",NA +10545,"102-77-2","DTXSID0021096","N-Oxydiethylene-2-benzothiazylsulfenamide","MHKLKWCYGIBEQF-UHFFFAOYSA-N","C1CN(CCO1)SC1=NC2=C(S1)C=CC=C2","C11H12N2OS2","252.35","99","industrial","Unclassified",NA +10546,"95-16-9","DTXSID7024586","Benzothiazole","IOJUPLGTWVMSFF-UHFFFAOYSA-N","S1C=NC2=CC=CC=C12","C7H5NS","135.18","290","industrial","Unclassified",NA +10547,"6265-91-4","DTXSID00211710","2-(4'-Chlorophenyl)benzothiazole","GEYFXQNOTPBYPC-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=NC2=CC=CC=C2S1","C13H8ClNS","245.72","83","industrial","Unclassified",NA +10548,"4074-77-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"industrial","Unclassified",NA +10549,"4602-84-0","DTXSID3032389","Farnesol","CRDAMVZIKSXKFV-UHFFFAOYSA-N","CC(C)=CCCC(C)=CCCC(C)=CCO","C15H26O","222.372","65","personalCare;natural;consumerProduct","Unclassified",NA +10549,"4602-84-0","DTXSID3032389","Farnesol","CRDAMVZIKSXKFV-UHFFFAOYSA-N","CC(C)=CCCC(C)=CCCC(C)=CCO","C15H26O","222.372","65","personalCare;natural;consumerProduct","Unclassified",NA +10549,"4602-84-0","DTXSID3032389","Farnesol","CRDAMVZIKSXKFV-UHFFFAOYSA-N","CC(C)=CCCC(C)=CCCC(C)=CCO","C15H26O","222.372","65","personalCare;natural;consumerProduct","Unclassified",NA +10549,"4602-84-0","DTXSID3032389","Farnesol","CRDAMVZIKSXKFV-UHFFFAOYSA-N","CC(C)=CCCC(C)=CCCC(C)=CCO","C15H26O","222.372","65","personalCare;natural;consumerProduct","Unclassified",NA +10550,"147217-75-2","DTXSID40872703","2,2',4-Tribromodiphenyl ether","VYBFILXLBMWOLI-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC=CC=C2Br)C=C1","C12H7Br3O","406.899","18","flameRetardant","PBDE",NA +10551,"189084-61-5","DTXSID9052688","2,3',4,4'-Tetrabromodiphenyl ether","DHUMTYRHKMCVAG-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC(Br)=C(Br)C=C2)C=C1","C12H6Br4O","485.795","28","flameRetardant","PBDE",NA +10552,"189084-63-7","DTXSID60879895","BDE-75","BWCNKMFFUGBFGB-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C=C(Br)C=C2Br)C=C1","C12H6Br4O","485.795","23","flameRetardant","PBDE",NA +10553,"182346-21-0","DTXSID4052685","2,2',3,4,4'-Pentabromodiphenyl ether","DMLQSUZPTTUUDP-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C(Br)=C(Br)C=C2)C(Br)=C1","C12H5Br5O","564.691","39","flameRetardant","PBDE",NA +10554,"189084-64-8","DTXSID4052689","2,2',4,4',6-Pentabromodiphenyl ether","NSKIRYMHNFTRLR-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C=C(Br)C=C2Br)C(Br)=C1","C12H5Br5O","564.691","36","flameRetardant","PBDE",NA +10555,"35854-94-5","DTXSID10873929","2,2',4,4',6,6'-Hexabromodiphenyl Ether","HRSCBOSGEKXXSI-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=C(Br)C=C(Br)C=C2Br)C(Br)=C1","C12H4Br6O","643.587","19","flameRetardant","PBDE",NA +10556,"70424-68-9","DTXSID0074211","2,3,3',4',5-Pentachlorobiphenyl","PVYBHVJTMRRXLG-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=CC(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","33",NA,"PCB",NA +10557,"38380-05-1","DTXSID9074141","2,2',3,3',4,6'-Hexachlorobiphenyl","OKBJVIVEFXPEOU-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H4Cl6","360.86","37",NA,"PCB",NA +10558,"74472-34-7","DTXSID4074223","2,3,4',5-Tetrachlorobiphenyl","CITMYAMXIZQCJD-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1","C12H6Cl4","291.98","32",NA,"PCB",NA +10559,"74472-44-9","DTXSID8074233","2,3,3',4',5,6-Hexachlorobiphenyl","ZAGRQXMWMRUYRB-UHFFFAOYSA-N","ClC1=CC=C(C=C1Cl)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H4Cl6","360.86","30",NA,"PCB",NA +10560,"2051-60-7","DTXSID6040298","2-Chlorobiphenyl","LAXBNTIAOJWAOP-UHFFFAOYSA-N","ClC1=C(C=CC=C1)C1=CC=CC=C1","C12H9Cl","188.65","106",NA,"PCB",NA +10561,"2051-61-8","DTXSID1040299","3-Chlorobiphenyl","NMWSKOLWZZWHPL-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=CC=CC=C1","C12H9Cl","188.65","93",NA,"PCB",NA +10562,"2051-62-9","DTXSID3040300","4-Chlorobiphenyl","FPWNLURCHDRMHC-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=CC=CC=C1","C12H9Cl","188.65","128",NA,"PCB",NA +10563,"13029-08-8","DTXSID4044533","2,2'-Dichlorobiphenyl","JAYCNKDKIKZTAF-UHFFFAOYSA-N","ClC1=C(C=CC=C1)C1=C(Cl)C=CC=C1","C12H8Cl2","223.1","68",NA,"PCB",NA +10564,"25569-80-6","DTXSID3074024","2,3'-Dichlorobiphenyl","ZHBBDTRJIVXKEX-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=C(Cl)C=CC=C1","C12H8Cl2","223.1","38",NA,"PCB",NA +10565,"34883-39-1","DTXSID7073480","2,5-Dichlorobiphenyl","KKQWHYGECTYFIA-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=CC=CC=C1","C12H8Cl2","223.1","44",NA,"PCB",NA +10566,"33146-45-1","DTXSID7038313","2,6-Dichlorobiphenyl","IYZWUWBAFUBNCH-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1C1=CC=CC=C1","C12H8Cl2","223.1","53",NA,"PCB",NA +10567,"2050-67-1","DTXSID70872817","3,3'-Dichloro-1,1'-biphenyl","KTXUOWUHFLBZPW-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=CC(Cl)=CC=C1","C12H8Cl2","223.1","61",NA,"PCB",NA +10568,"2974-92-7","DTXSID6073310","3,4-Dichlorobiphenyl","ZGHQUYZPMWMLBM-UHFFFAOYSA-N","ClC1=C(Cl)C=C(C=C1)C1=CC=CC=C1","C12H8Cl2","223.1","62",NA,"PCB",NA +10569,"2974-90-5","DTXSID10863067","3,4'-Dichlorobiphenyl","CJDNEKOMKXLSBN-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=CC(Cl)=CC=C1","C12H8Cl2","223.1","38",NA,"PCB",NA +10570,"34883-41-5","DTXSID5074137","3,5-Dichlorobiphenyl","QHZSDTDMQZPUKC-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=CC=CC=C1","C12H8Cl2","223.1","55",NA,"PCB",NA +10571,"38444-78-9","DTXSID3073501","2,2',3-Trichlorobiphenyl","XVIZMMSINIOIQP-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=C(Cl)C=CC=C1","C12H7Cl3","257.54","34",NA,"PCB",NA +10572,"37680-66-3","DTXSID1073492","2,2',4-Trichlorobiphenyl","YKKYCYQDUUXNLN-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C=CC=C1","C12H7Cl3","257.54","38",NA,"PCB",NA +10573,"38444-73-4","DTXSID9074777","2,2',6-Trichlorobiphenyl","MVXIJRBBCDLNLX-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1C1=C(Cl)C=CC=C1","C12H7Cl3","257.54","36",NA,"PCB",NA +10574,"38444-84-7","DTXSID8073502","2,3,3'-Trichlorobiphenyl","SXHLTVKPNQVZGL-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=C(Cl)C(Cl)=CC=C1","C12H7Cl3","257.54","48",NA,"PCB",NA +10575,"55702-46-0","DTXSID0074180","2,3,4-Trichlorobiphenyl","IUYHQGMDSZOPDZ-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(C=C1)C1=CC=CC=C1","C12H7Cl3","257.54","42",NA,"PCB",NA +10576,"38444-85-8","DTXSID7091549","2,3,4'-Trichlorobiphenyl","ZMHWQAHZKUPENF-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C(Cl)=CC=C1","C12H7Cl3","257.54","37",NA,"PCB",NA +10577,"55720-44-0","DTXSID0074182","2,3,5-Trichlorobiphenyl","GBUCDGDROYMOAN-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=CC=CC=C1","C12H7Cl3","257.54","27",NA,"PCB",NA +10578,"55702-45-9","DTXSID3073557","2,3,6-Trichlorobiphenyl","LVROLHVSYNLFBE-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=CC=CC=C1","C12H7Cl3","257.54","34",NA,"PCB",NA +10579,"55712-37-3","DTXSID5074181","2,3',4-Trichlorobiphenyl","XBBZAULFUPBZSP-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=CC(Cl)=CC=C1","C12H7Cl3","257.54","32",NA,"PCB",NA +10580,"38444-81-4","DTXSID4074778","PCB 026","ONNCPBRWFSKDMQ-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=CC(Cl)=CC=C1","C12H7Cl3","257.54","40",NA,"PCB",NA +10581,"38444-76-7","DTXSID9074143","2,3',6-Trichlorobiphenyl","VQOFJPFYTCHPTR-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=C(Cl)C=CC=C1Cl","C12H7Cl3","257.54","33",NA,"PCB",NA +10582,"15862-07-4","DTXSID0073405","2,4,5-Trichlorobiphenyl","VGVIKVCCUATMNG-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=CC=CC=C1","C12H7Cl3","257.54","46",NA,"PCB",NA +10583,"35693-92-6","DTXSID7073482","2,4,6-Trichlorobiphenyl","MTLMVEWEYZFYTH-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=CC=CC=C1","C12H7Cl3","257.54","56",NA,"PCB",NA +10584,"38444-77-8","DTXSID8073500","2,4',6-Trichlorobiphenyl","IHIDFKLAWYPTKB-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C=CC=C1Cl","C12H7Cl3","257.54","45",NA,"PCB",NA +10585,"38444-86-9","DTXSID8040303","2',3,4-Trichlorobiphenyl","RIMXLXBUOQMDHV-UHFFFAOYSA-N","ClC1=C(Cl)C=C(C=C1)C1=C(Cl)C=CC=C1","C12H7Cl3","257.54","49",NA,"PCB",NA +10586,"37680-68-5","DTXSID4074140","2,3',5'-Trichlorobiphenyl","GXVMAQACUOSFJF-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C=CC=C1","C12H7Cl3","257.54","32",NA,"PCB",NA +10587,"37680-69-6","DTXSID60865879","3,3',4-Trichlorobiphenyl","JHBVPKZLIBDTJR-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=CC(Cl)=C(Cl)C=C1","C12H7Cl3","257.54","34",NA,"PCB",NA +10588,"38444-87-0","DTXSID50858937","3,3',5-Trichlorobiphenyl","RIBGNAJQTOXRDK-UHFFFAOYSA-N","ClC1=CC(=CC=C1)C1=CC(Cl)=CC(Cl)=C1","C12H7Cl3","257.54","47",NA,"PCB",NA +10589,"53555-66-1","DTXSID6074176","3,4,5-Trichlorobiphenyl","BSFZSQRJGZHMMV-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=CC=CC=C1","C12H7Cl3","257.54","31",NA,"PCB",NA +10590,"38444-88-1","DTXSID40865913","3,4',5-Trichlorobiphenyl","SYSBNFJJSJLZMM-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=CC(Cl)=CC(Cl)=C1","C12H7Cl3","257.54","34",NA,"PCB",NA +10591,"38444-93-8","DTXSID3073503","2,2',3,3'-Tetrachlorobiphenyl","VTLYHLREPCPDKX-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=C(Cl)C(Cl)=CC=C1","C12H6Cl4","291.98","35",NA,"PCB",NA +10592,"52663-59-9","DTXSID5073535","2,2',3,4-Tetrachlorobiphenyl","SEWHDNLIHDBVDZ-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(C=C1)C1=C(Cl)C=CC=C1","C12H6Cl4","291.98","30",NA,"PCB",NA +10593,"36559-22-5","DTXSID80873557","2,2',3,4'-Tetrachloro-1,1'-biphenyl","ALFHIHDQSYXSGP-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=CC=CC(Cl)=C1Cl","C12H6Cl4","291.98","38",NA,"PCB",NA +10594,"70362-46-8","DTXSID00867918","2,2',3,5-Tetrachlorobiphenyl","NRBNBYFPJCCKTO-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C=CC=C1","C12H6Cl4","291.98","27",NA,"PCB",NA +10595,"41464-47-5","DTXSID40866046","2,2',3,6'-Tetrachlorobiphenyl","CUGLICQCTXWQNF-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=C(Cl)C=CC=C1Cl","C12H6Cl4","291.98","30",NA,"PCB",NA +10596,"2437-79-8","DTXSID0022513","2,2',4,4'-Tetrachlorobiphenyl","QORAVNMWUNPXAO-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C=C(Cl)C=C1","C12H6Cl4","291.98","49",NA,"PCB",NA +10597,"70362-47-9","DTXSID6074207","2,2',4,5-Tetrachlorobiphenyl","XBTHILIDLBPRPM-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=C(Cl)C=CC=C1","C12H6Cl4","291.98","37",NA,"PCB",NA +10598,"62796-65-0","DTXSID4074194","2,2',4,6-Tetrachlorobiphenyl","VLLVVZDKBSYMCG-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C=CC=C1","C12H6Cl4","291.98","31",NA,"PCB",NA +10599,"68194-04-7","DTXSID9074195","2,2',4,6'-Tetrachlorobiphenyl","WVHNUGRFECMVLQ-UHFFFAOYSA-N","ClC1=CC=C(C(Cl)=C1)C1=C(Cl)C=CC=C1Cl","C12H6Cl4","291.98","32",NA,"PCB",NA +10600,"41464-41-9","DTXSID3073509","2,2',5,6'-Tetrachlorobiphenyl","SFTUSTXGTCCSHX-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C=CC=C1Cl","C12H6Cl4","291.98","33",NA,"PCB",NA +10601,"15968-05-5","DTXSID0065983","2,2',6,6'-Tetrachlorobiphenyl","PXAGFNRKXSYIHU-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1C1=C(Cl)C=CC=C1Cl","C12H6Cl4","291.98","40",NA,"PCB",NA +10602,"74338-24-2","DTXSID4074221","2,3,3',4-Tetrachlorobiphenyl","ZKGSEEWIVLAUNH-UHFFFAOYSA-N","ClC1=CC(=CC=C1)C1=CC=C(Cl)C(Cl)=C1Cl","C12H6Cl4","291.98","32",NA,"PCB",NA +10603,"70424-67-8","DTXSID5074210","2,3,3',5-Tetrachlorobiphenyl","DHDBTLFALXRTLB-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1","C12H6Cl4","291.98","28",NA,"PCB",NA +10604,"41464-49-7","DTXSID8074156","2,3,3',5'-Tetrachlorobiphenyl","IOPBNBSKOPJKEG-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=CC=CC(Cl)=C1Cl","C12H6Cl4","291.98","30",NA,"PCB",NA +10605,"74472-33-6","DTXSID9074222","2,3,3',6-Tetrachlorobiphenyl","WZNAMGYIQPAXDH-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=C(Cl)C(Cl)=CC=C1Cl","C12H6Cl4","291.98","31",NA,"PCB",NA +10606,"33284-53-6","DTXSID5074135","2,3,4,5-Tetrachlorobiphenyl","HLQDGCWIOSOMDP-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=CC=CC=C1","C12H6Cl4","291.98","48",NA,"PCB",NA +10607,"54230-22-7","DTXSID1074177","2,3,4,6-Tetrachlorobiphenyl","HOBRTVXSIVSXIA-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1Cl)C1=CC=CC=C1","C12H6Cl4","291.98","32",NA,"PCB",NA +10608,"52663-58-8","DTXSID3074159","2,3,4',6-Tetrachlorobiphenyl","FXRXQYZZALWWGA-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C=CC(Cl)=C1Cl","C12H6Cl4","291.98","30",NA,"PCB",NA +10609,"33284-54-7","DTXSID0074136","2,3,5,6-Tetrachlorobiphenyl","BLAYIQLVUNIICD-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1Cl)C1=CC=CC=C1","C12H6Cl4","291.98","39",NA,"PCB",NA +10610,"73575-53-8","DTXSID0074215","2,3',4,5-Tetrachlorobiphenyl","LQEGJNOKOZHBBZ-UHFFFAOYSA-N","ClC1=CC(=CC=C1)C1=C(Cl)C=C(Cl)C(Cl)=C1","C12H6Cl4","291.98","29",NA,"PCB",NA +10611,"73575-52-7","DTXSID5074214","2,3',4,5'-Tetrachlorobiphenyl","KTTXLLZIBIDUCR-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=CC(Cl)=CC(Cl)=C1","C12H6Cl4","291.98","30",NA,"PCB",NA +10612,"60233-24-1","DTXSID4074192","2,3',4,6-Tetrachlorobiphenyl","CKUBKYSLNCKBOI-UHFFFAOYSA-N","ClC1=CC(=CC=C1)C1=C(Cl)C=C(Cl)C=C1Cl","C12H6Cl4","291.98","29",NA,"PCB",NA +10613,"41464-46-4","DTXSID8074154","2,3',4',6-Tetrachlorobiphenyl","WYVBETQIUHPLFO-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1C1=CC(Cl)=C(Cl)C=C1","C12H6Cl4","291.98","28",NA,"PCB",NA +10614,"41464-42-0","DTXSID8074152","2,3',5,5'-Tetrachlorobiphenyl","WBTMFEPLVQOWFI-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=CC(Cl)=CC(Cl)=C1","C12H6Cl4","291.98","32",NA,"PCB",NA +10615,"74338-23-1","DTXSID9074220","2,3',5',6-Tetrachlorobiphenyl","HDULUCZRGGWTMZ-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C=CC=C1Cl","C12H6Cl4","291.98","31",NA,"PCB",NA +10616,"32598-12-2","DTXSID5074133","2,4,4',6-Tetrachlorobiphenyl","RZFZBHKDGHISSH-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C=C(Cl)C=C1Cl","C12H6Cl4","291.98","34",NA,"PCB",NA +10617,"70362-48-0","DTXSID60867919","2,3',4',5'-Tetrachlorobiphenyl","QILUYCYPNYWMIL-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=C(Cl)C=CC=C1","C12H6Cl4","291.98","25",NA,"PCB",NA +10618,"70362-49-1","DTXSID1074208","3,3',4,5-Tetrachlorobiphenyl","SXFLURRQRFKBNN-UHFFFAOYSA-N","ClC1=CC(=CC=C1)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H6Cl4","291.98","29",NA,"PCB",NA +10619,"41464-48-6","DTXSID3074155","3,3',4,5'-Tetrachlorobiphenyl","QLCTXEMDCZGPCG-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=CC=C(Cl)C(Cl)=C1","C12H6Cl4","291.98","27",NA,"PCB",NA +10620,"33284-52-5","DTXSID4058657","3,3',5,5'-Tetrachlorobiphenyl","UTMWFJSRHLYRPY-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=CC(Cl)=CC(Cl)=C1","C12H6Cl4","291.98","57",NA,"PCB",NA +10621,"70362-50-4","DTXSID6074209","3,4,4',5-Tetrachlorobiphenyl","BHWVLZJTVIYLIV-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H6Cl4","291.98","40",NA,"PCB",NA +10622,"60145-20-2","DTXSID0074188","2,2',3,3',5-Pentachlorobiphenyl","SUBRHHYLRGOTHL-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C(Cl)=CC=C1","C12H5Cl5","326.42","28",NA,"PCB",NA +10623,"52663-60-2","DTXSID0073536","2,2',3,3',6-Pentachlorobiphenyl","QVWUJLANSDKRAH-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=C(Cl)C(Cl)=CC=C1Cl","C12H5Cl5","326.42","30",NA,"PCB",NA +10624,"65510-45-4","DTXSID9073599","2,2',3,4,4'-Pentachlorobiphenyl","LACXVZHAJMVESG-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","33",NA,"PCB",NA +10625,"55312-69-1","DTXSID1074179","2,2',3,4,5-Pentachlorobiphenyl","AIURIRUDHVDRFQ-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=C(Cl)C=CC=C1","C12H5Cl5","326.42","27",NA,"PCB",NA +10626,"55215-17-3","DTXSID6074178","2,2',3,4,6-Pentachlorobiphenyl","QGDKRLQRLFUJPP-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(Cl)=C1C1=C(Cl)C=CC=C1","C12H5Cl5","326.42","28",NA,"PCB",NA +10627,"73575-57-2","DTXSID0074219","2,2',3,4,6'-Pentachlorobiphenyl","GLOOIONSKMZYQZ-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","31",NA,"PCB",NA +10628,"60712-44-9","DTXSID70858813","3,4,6-Trichloroguaiacol","HYCQPRXDNCTPOU-UHFFFAOYSA-N","COC1=C(O)C(Cl)=CC(Cl)=C1Cl","C7H5Cl3O2","227.47","21","industrial;pulpAndPaper","Unclassified",NA +10629,"2539-17-5","DTXSID0044155","3,4,5,6-Tetrachloroguaiacol","YZZVKLJKDFFSFL-UHFFFAOYSA-N","COC1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1O","C7H4Cl4O2","261.91","42","industrial;pulpAndPaper","Unclassified",NA +10630,"19463-48-0","DTXSID9075161","Benzaldehyde, 3-chloro-4-hydroxy-5-methoxy-","ONIVKFDMLVBDRK-UHFFFAOYSA-N","COC1=C(O)C(Cl)=CC(C=O)=C1","C8H7ClO3","186.59","92","industrial;pulpAndPaper","Unclassified",NA +10631,"18268-76-3","DTXSID7075139","Benzaldehyde, 2-chloro-4-hydroxy-5-methoxy-","ZOKLABLCKDZYOP-UHFFFAOYSA-N","COC1=C(O)C=C(Cl)C(C=O)=C1","C8H7ClO3","186.59","56","industrial;pulpAndPaper","Unclassified",NA +10632,"18268-69-4","DTXSID2075138","Benzaldehyde, 2,3-dichloro-4-hydroxy-5-methoxy-","LQDPWXPJJUUISU-UHFFFAOYSA-N","COC1=C(O)C(Cl)=C(Cl)C(C=O)=C1","C8H6Cl2O3","221.03","21","industrial;pulpAndPaper","Unclassified",NA +10633,"76341-69-0","DTXSID7072838","2-Chlorosyringaldehyde","GRIHRCLOUQZXPD-UHFFFAOYSA-N","COC1=CC(C=O)=C(Cl)C(OC)=C1O","C9H9ClO4","216.62","18","industrial;pulpAndPaper","Unclassified",NA +10634,"76330-06-8","DTXSID2072837","Benzaldehyde, 2,6-dichloro-4-hydroxy-3,5-dimethoxy-","CTFRWEPMHUGVMM-UHFFFAOYSA-N","COC1=C(O)C(OC)=C(Cl)C(C=O)=C1Cl","C9H8Cl2O4","251.06","17","industrial;pulpAndPaper","Unclassified",NA +10635,"2539-26-6","DTXSID7074246","Trichlorosyringol","ZZCSBXFJFLSDRR-UHFFFAOYSA-N","COC1=C(O)C(OC)=C(Cl)C(Cl)=C1Cl","C8H7Cl3O3","257.49","23","industrial;pulpAndPaper","Unclassified",NA +10636,"2138-22-9","DTXSID7022176","4-Chlorocatechol","WWOBYPKUYODHDG-UHFFFAOYSA-N","OC1=C(O)C=C(Cl)C=C1","C6H5ClO2","144.55","95","industrial;pulpAndPaper","Unclassified",NA +10637,"3978-67-4","DTXSID3073973","3,4-Dichlorocatechol","HFSXRRTUWAPWSJ-UHFFFAOYSA-N","OC1=CC=C(Cl)C(Cl)=C1O","C6H4Cl2O2","179","32","industrial;pulpAndPaper","Unclassified",NA +10638,"14324-55-1","DTXSID5021463","Zinc diethyldithiocarbamate","RKQOSDAEEGPRER-UHFFFAOYSA-L","[Zn++].CCN(CC)C([S-])=S.CCN(CC)C([S-])=S","C10H20N2S4Zn","361.9","62","personalCare;industrial","Unclassified",NA +10639,"13927-77-0","DTXSID2020927","Nickel bis(dibutyldithiocarbamate)","HPOWMHUJHHIQGP-UHFFFAOYSA-L","[Ni++].CCCCN(CCCC)C([S-])=S.CCCCN(CCCC)C([S-])=S","C18H36N2NiS4","467.43","28","personalCare;industrial","Unclassified",NA +10640,"51452-87-0","DTXSID60879850","BDE-4","JMSKYMHFNWGUJG-UHFFFAOYSA-N","BrC1=CC=CC=C1OC1=C(Br)C=CC=C1","C12H8Br2O","328.003","27","flameRetardant","PBDE",NA +10641,"147217-72-9","DTXSID20879851","BDE-6","GODQTPRKFHOLPH-UHFFFAOYSA-N","BrC1=CC(OC2=CC=CC=C2Br)=CC=C1","C12H8Br2O","328.003","13","flameRetardant","PBDE",NA +10642,"337513-66-3","DTXSID80879852","BDE-9","URDWJMUOJJSXAE-UHFFFAOYSA-N","BrC1=CC=C(Br)C(OC2=CC=CC=C2)=C1","C12H8Br2O","328.003","14","flameRetardant","PBDE",NA +10643,"147217-73-0","DTXSID00879854","BDE-19","YDFQHBRKURQGAH-UHFFFAOYSA-N","BrC1=CC=CC=C1OC1=C(Br)C=CC=C1Br","C12H7Br3O","406.899","9","flameRetardant","PBDE",NA +10644,"337513-67-4","DTXSID20879856","BDE-21","RXWRVYYPLRPDOS-UHFFFAOYSA-N","BrC1=CC=C(OC2=CC=CC=C2)C(Br)=C1Br","C12H7Br3O","406.899","14","flameRetardant","PBDE",NA +10645,"337513-75-4","DTXSID60783706","1,4-Dibromo-2-(3-bromophenoxy)benzene","VUOBKVBAFJQQDB-UHFFFAOYSA-N","BrC1=CC(OC2=CC(Br)=CC=C2)=C(Br)C=C1","C12H7Br3O","406.899","10","flameRetardant","PBDE",NA +10646,"337513-53-8","DTXSID20783707","1,3-Dibromo-2-(3-bromophenoxy)benzene","JUPZALSVNWJHII-UHFFFAOYSA-N","BrC1=CC=CC(OC2=C(Br)C=CC=C2Br)=C1","C12H7Br3O","406.899","10","flameRetardant","PBDE",NA +10647,"65075-08-3","DTXSID90573490","1,4-Dibromo-2-(4-bromophenoxy)benzene","PURZBWMLFRWRMG-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C=CC(Br)=C2)C=C1","C12H7Br3O","406.899","10","flameRetardant","PBDE",NA +10648,"446254-23-5","DTXSID00879874","BDE-50","FXUAKFRJBKFDSY-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=C(Br)C=CC=C2)C(Br)=C1","C12H6Br4O","485.795","9","flameRetardant","PBDE",NA +10649,"189084-57-9","DTXSID40616285","1,3-Dibromo-2-(2,4-dibromophenoxy)benzene","WKBBBTLDLKYGBI-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=C(Br)C=CC=C2Br)C=C1","C12H6Br4O","485.795","15","flameRetardant","PBDE",NA +10650,"446254-33-7","DTXSID50879884","BDE-62","YIQYWYZZLOZVRM-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC=CC=C2)C(Br)=C1Br","C12H6Br4O","485.795","9","flameRetardant","PBDE",NA +10651,"327185-09-1","DTXSID60879890","BDE-69","NHZNRCYNZJADTG-UHFFFAOYSA-N","BrC1=CC=CC(OC2=C(Br)C=C(Br)C=C2Br)=C1","C12H6Br4O","485.795","9","flameRetardant","PBDE",NA +10652,"446254-55-3","DTXSID90879904","BDE-88","OPZUHBCVIZNZFB-UHFFFAOYSA-N","BrC1=CC=CC=C1OC1=C(Br)C(Br)=C(Br)C=C1Br","C12H5Br5O","564.691","10","flameRetardant","PBDE",NA +10653,"446254-56-4","DTXSID50879905","BDE-89","XGFLJLJXVIMCNR-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C=CC=C2Br)C(Br)=C1Br","C12H5Br5O","564.691","7","flameRetardant","PBDE",NA +10654,"446254-67-7","DTXSID00879915","BDE-103","RJEMKRNASVHYKR-UHFFFAOYSA-N","BrC1=CC=C(Br)C(OC2=C(Br)C=C(Br)C=C2Br)=C1","C12H5Br5O","564.691","8","flameRetardant","PBDE",NA +10655,"446254-71-3","DTXSID50879920","BDE-108","VBKPKHVLHGOKOJ-UHFFFAOYSA-N","BrC1=CC(OC2=CC=C(Br)C(Br)=C2Br)=CC(Br)=C1","C12H5Br5O","564.691","8","flameRetardant","PBDE",NA +10656,"446254-78-0","DTXSID70879927","BDE-115","BKTLDVXDOVSTEV-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C(Br)=C(Br)C=C2Br)C=C1","C12H5Br5O","564.691","8","flameRetardant","PBDE",NA +10657,"446254-86-0","DTXSID40879934","BDE-127","RATMRXKBPDCKCZ-UHFFFAOYSA-N","BrC1=CC(OC2=CC(Br)=C(Br)C(Br)=C2)=CC(Br)=C1","C12H5Br5O","564.691","7","flameRetardant","PBDE",NA +10658,"182677-28-7","DTXSID60550652","1,1'-Oxybis(2,3,4-tribromobenzene)","WFLVELCLEGVBIH-UHFFFAOYSA-N","BrC1=C(Br)C(Br)=C(OC2=C(Br)C(Br)=C(Br)C=C2)C=C1","C12H4Br6O","643.587","16","flameRetardant","PBDE",NA +10659,"446254-98-4","DTXSID50879945","BDE-142","LJDGJCNHVGGOFW-UHFFFAOYSA-N","BrC1=C(OC2=C(Br)C(Br)=C(Br)C(Br)=C2Br)C=CC=C1","C12H4Br6O","643.587","13","flameRetardant","PBDE",NA +10660,"446255-00-1","DTXSID70879947","BDE-144","ZMSJCQOCTPYCQP-UHFFFAOYSA-N","BrC1=CC(OC2=C(Br)C=C(Br)C(Br)=C2Br)=C(Br)C=C1","C12H4Br6O","643.587","8","flameRetardant","PBDE",NA +10661,"446255-11-4","DTXSID40879959","BDE-160","OCVOYHGOXIIONK-UHFFFAOYSA-N","BrC1=CC=CC(OC2=C(Br)C(Br)=C(Br)C(Br)=C2Br)=C1","C12H4Br6O","643.587","8","flameRetardant","PBDE",NA +10662,"405237-86-7","DTXSID90785733","1,2,3,4,5-Pentabromo-6-(2,5-dibromophenoxy)benzene","YRNMIFAQDSUFTR-UHFFFAOYSA-N","BrC1=CC(OC2=C(Br)C(Br)=C(Br)C(Br)=C2Br)=C(Br)C=C1","C12H3Br7O","722.483","9","flameRetardant","PBDE",NA +10663,"446255-50-1","DTXSID90879984","BDE-201","HQWFMMKREWXIGN-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=C(Br)C(Br)=CC(Br)=C2Br)C(Br)=C1Br","C12H2Br8O","801.379","12","flameRetardant","PBDE",NA +10664,"39227-53-7","DTXSID80872020","1-Chlorodibenzo[b,e][1,4]dioxin","VGGGRWRBGXENKI-UHFFFAOYSA-N","ClC1=CC=CC2=C1OC1=CC=CC=C1O2","C12H7ClO2","218.64","36",NA,"dioxinsAndFurans",NA +10665,"39227-54-8","DTXSID90192488","2-Chlorodibenzo-4-dioxin","GIUGGRUEPHPVNR-UHFFFAOYSA-N","ClC1=CC2=C(OC3=CC=CC=C3O2)C=C1","C12H7ClO2","218.64","40",NA,"dioxinsAndFurans",NA +10666,"54536-18-4","DTXSID90202950","1,2-Dichlorodibenzo-p-dioxin","DFGDMWHUCCHXIF-UHFFFAOYSA-N","ClC1=C(Cl)C2=C(OC3=CC=CC=C3O2)C=C1","C12H6Cl2O2","253.08","22",NA,"dioxinsAndFurans",NA +10667,"29446-15-9","DTXSID50183650","2,3-Dichlorodibenzo-4-dioxin","YCIYTXRUZSDMRZ-UHFFFAOYSA-N","ClC1=C(Cl)C=C2OC3=CC=CC=C3OC2=C1","C12H6Cl2O2","253.08","37",NA,"dioxinsAndFurans",NA +10668,"38964-22-6","DTXSID70872019","2,8-Dichlorooxanthrene","WMWJCKBJUQDYLM-UHFFFAOYSA-N","ClC1=CC2=C(OC3=CC=C(Cl)C=C3O2)C=C1","C12H6Cl2O2","253.08","31",NA,"dioxinsAndFurans",NA +10669,"35822-46-9","DTXSID1052034","1,2,3,4,6,7,8-Heptachlorodibenzodioxin","WCLNVRQZUKYVAI-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C2OC3=C(OC2=C1)C(Cl)=C(Cl)C(Cl)=C3Cl","C12HCl7O2","425.29","49",NA,"dioxinsAndFurans",NA +10670,"58200-70-7","DTXSID40973764","1,2,3,4,6,7,9-Heptachlorooxanthrene","KTJJIBIRZGQFQZ-UHFFFAOYSA-N","ClC1=CC(Cl)=C2OC3=C(Cl)C(Cl)=C(Cl)C(Cl)=C3OC2=C1Cl","C12HCl7O2","425.29","23",NA,"dioxinsAndFurans",NA +10671,"58200-66-1","DTXSID4074063","1,2,3,4,6,7-Hexachlorodibenzodioxin","NLBQVWJHLWAFGJ-UHFFFAOYSA-N","ClC1=CC=C2OC3=C(OC2=C1Cl)C(Cl)=C(Cl)C(Cl)=C3Cl","C12H2Cl6O2","390.85","27",NA,"dioxinsAndFurans",NA +10672,"39227-28-6","DTXSID8052067","1,2,3,4,7,8-Hexachlorodibenzodioxin","WCYYQNSQJHPVMG-UHFFFAOYSA-N","ClC1=C(Cl)C=C2OC3=C(OC2=C1)C(Cl)=C(Cl)C(Cl)=C3Cl","C12H2Cl6O2","390.85","41",NA,"dioxinsAndFurans",NA +10673,"19408-74-3","DTXSID6023781","1,2,3,7,8,9-Hexachlorodibenzo-p-dioxin","LGIRBUBHIWTVCK-UHFFFAOYSA-N","ClC1=CC2=C(OC3=C(O2)C=C(Cl)C(Cl)=C3Cl)C(Cl)=C1Cl","C12H2Cl6O2","390.85","42",NA,"dioxinsAndFurans",NA +10674,"3268-87-9","DTXSID4025799","Octachlorodibenzo-p-dioxin","FOIBFBMSLDGNHL-UHFFFAOYSA-N","ClC1=C(Cl)C2=C(OC3=C(Cl)C(Cl)=C(Cl)C(Cl)=C3O2)C(Cl)=C1Cl","C12Cl8O2","459.73","49",NA,"dioxinsAndFurans",NA +10675,"39227-61-7","DTXSID6074041","1,2,3,4,7-Pentachlorodibenzo-p-dioxin","WRNGAZFESPEMCN-UHFFFAOYSA-N","ClC1=CC=C2OC3=C(OC2=C1)C(Cl)=C(Cl)C(Cl)=C3Cl","C12H3Cl5O2","356.4","28",NA,"dioxinsAndFurans",NA +10676,"40321-76-4","DTXSID7052078","1,2,3,7,8-Pentachlorodibenzo-p-dioxin","FSPZPQQWDODWAU-UHFFFAOYSA-N","ClC1=CC2=C(OC3=CC(Cl)=C(Cl)C=C3O2)C(Cl)=C1Cl","C12H3Cl5O2","356.4","44",NA,"dioxinsAndFurans",NA +10677,"54536-17-3","DTXSID80202949","1,2,3-Trichlorodibenzo-p-dioxin","SKMFBGZVVNDVFR-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C2OC3=CC=CC=C3OC2=C1","C12H5Cl3O2","287.52","28",NA,"dioxinsAndFurans",NA +10678,"39227-58-2","DTXSID50192489","1,2,4-Trichlorodibenzo-1,4-dioxin","HRVUKLBFRPWXPJ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C2=C1OC1=CC=CC=C1O2","C12H5Cl3O2","287.52","32",NA,"dioxinsAndFurans",NA +10679,"82306-65-8","DTXSID901002600","1,7,8-Trichlorooxanthrene","GXPWNYXJJDQHBO-UHFFFAOYSA-N","ClC1=CC2=C(OC3=C(Cl)C=CC=C3O2)C=C1Cl","C12H5Cl3O2","287.52","25",NA,"dioxinsAndFurans",NA +10680,"33857-28-2","DTXSID7074878","2,3,7-Trichlorodibenzo-p-dioxin","ZSIZNEVHVVRPFF-UHFFFAOYSA-N","ClC1=CC=C2OC3=C(OC2=C1)C=C(Cl)C(Cl)=C3","C12H5Cl3O2","287.52","28",NA,"dioxinsAndFurans",NA +10681,"30746-58-8","DTXSID7074030","1,2,3,4-Tetrachlorodibenzo-p-dioxin","DJHHDLMTUOLVHY-UHFFFAOYSA-N","ClC1=C(Cl)C2=C(OC3=CC=CC=C3O2)C(Cl)=C1Cl","C12H4Cl4O2","321.96","50",NA,"dioxinsAndFurans",NA +10682,"34816-53-0","DTXSID3073478","1,2,7,8-Tetrachlorodibenzo-p-dioxin","YDZCLBKUTXYYKS-UHFFFAOYSA-N","ClC1=C(Cl)C2=C(OC3=CC(Cl)=C(Cl)C=C3O2)C=C1","C12H4Cl4O2","321.96","29",NA,"dioxinsAndFurans",NA +10683,"50585-46-1","DTXSID30872030","1,3,7,8-Tetrachlorooxanthrene","VPTDIAYLYJBYQG-UHFFFAOYSA-N","ClC1=CC(Cl)=C2OC3=CC(Cl)=C(Cl)C=C3OC2=C1","C12H4Cl4O2","321.96","27",NA,"dioxinsAndFurans",NA +10684,"33423-92-6","DTXSID90872011","1,3,6,8-tetrachlorodibenzo-p-dioxin","OTQFXRBLGNEOGH-UHFFFAOYSA-N","ClC1=CC(Cl)=C2OC3=CC(Cl)=CC(Cl)=C3OC2=C1","C12H4Cl4O2","321.96","32",NA,"dioxinsAndFurans",NA +10685,"116889-69-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"dioxinsAndFurans",NA +10686,"116889-70-4",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"dioxinsAndFurans",NA +10687,"67323-56-2","DTXSID1073604","1,2,6,8-Tetrachlorodibenzo-p-dioxin","YYUFYZDSYHKVDP-UHFFFAOYSA-N","ClC1=CC2=C(OC3=CC=C(Cl)C(Cl)=C3O2)C(Cl)=C1","C12H4Cl4O2","321.96","20",NA,"dioxinsAndFurans",NA +10688,"51230-49-0","DTXSID70891563","2-Chlorodibenzofuran","PRKTYWJFCODJOA-UHFFFAOYSA-N","ClC1=CC=C2OC3=CC=CC=C3C2=C1","C12H7ClO","202.64","49",NA,"dioxinsAndFurans",NA +10689,"74992-96-4","DTXSID40225952","4-Chlorodibenzofuran","RHRYBWFAHXCUCR-UHFFFAOYSA-N","ClC1=CC=CC2=C1OC1=CC=CC=C21","C12H7ClO","202.64","46",NA,"dioxinsAndFurans",NA +10690,"5409-83-6","DTXSID30871129","2,8-Dichlorodibenzofuran","IVVRJIDVYSPKFZ-UHFFFAOYSA-N","ClC1=CC2=C(OC3=C2C=C(Cl)C=C3)C=C1","C12H6Cl2O","237.08","36",NA,"dioxinsAndFurans",NA +10691,"38998-75-3","DTXSID501019736","Heptachlorodibenzofuran",NA,"Cl*.Cl*.Cl*.ClC1=C(Cl)C(Cl)=C(Cl)C2=C1OC1=CC=CC=C21 |c:4,11,17,t:8,15,19,lp:0:3,2:3,4:3,6:3,9:3,11:3,13:3,16:2,m:1:18.19,3:20.19,5:21.20|","C12HCl7O","409.29",NA,NA,"dioxinsAndFurans",NA +10692,"55684-94-1","DTXSID50896899","Hexachlorodibenzofuran",NA,"Cl*.Cl*.Cl*.Cl*.Cl*.Cl*.O1C2=CC=CC=C2C2=C1C=CC=C2 |c:9,11,14,17,19,t:7,lp:0:3,2:3,4:3,6:3,8:3,10:3,12:2,m:1:21.22,3:22.23.24,5:16.15.14,7:17.16.15,9:21.22.23.24.17.16.15.14,11:21.22.23.24.17.16.15.14|","C12H2Cl6O","374.85",NA,NA,"dioxinsAndFurans",NA +10693,"57117-41-6","DTXSID7052234","1,2,3,7,8-Pentachlorodibenzofuran","SBMIVUVRFPGOEB-UHFFFAOYSA-N","ClC1=CC2=C(C3=CC(Cl)=C(Cl)C=C3O2)C(Cl)=C1Cl","C12H3Cl5O","340.41","47",NA,"dioxinsAndFurans",NA +10694,"24478-72-6","DTXSID5067556","1,2,3,4-tetrachlorodibenzo[b,d]furan","AETAPIFVELRIDN-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(Cl)C2=C1OC1=C2C=CC=C1","C12H4Cl4O","305.96","30",NA,"dioxinsAndFurans",NA +10695,"30402-14-3","DTXSID501021076","Tetrachlorodibenzofuran",NA,"Cl*.Cl*.Cl*.Cl*.O1C2=CC=CC=C2C2=C1C=CC=C2 |c:7,9,12,15,17,t:5,lp:0:3,2:3,4:3,6:3,8:2,m:1:17.18.19.20,3:17.18.19.20.13.12.11.10,5:17.18.19.20.13.12.11.10,7:17.18.19.20.13.12.11.10|","C12H4Cl4O","305.96",NA,NA,"dioxinsAndFurans",NA +10695,"30402-14-3","DTXSID5067556","1,2,3,4-tetrachlorodibenzo[b,d]furan","AETAPIFVELRIDN-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(Cl)C2=C1OC1=C2C=CC=C1","C12H4Cl4O","305.96","30",NA,"dioxinsAndFurans",NA +10696,"54589-71-8","DTXSID80203017","2,4,8-Trichlorodibenzofuran","WJURXKWTCOMRCE-UHFFFAOYSA-N","ClC1=CC2=C(OC3=C2C=C(Cl)C=C3Cl)C=C1","C12H5Cl3O","271.52","37",NA,"dioxinsAndFurans",NA +10697,"2303-23-3","DTXSID80177582","Benzene, 1-chloro-3-(4-nitrophenoxy)- (9CI)","XEUAYIJJIQXNOO-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=CC(Cl)=CC=C2)C=C1","C12H8ClNO3","249.65","30","industrial","haloEthers",NA +10697,"2303-23-3","DTXSID80177582","Benzene, 1-chloro-3-(4-nitrophenoxy)- (9CI)","XEUAYIJJIQXNOO-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=CC(Cl)=CC=C2)C=C1","C12H8ClNO3","249.65","30","industrial","haloEthers",NA +10698,"39145-48-7","DTXSID10192389","1,4-Dichloro-2-(4-nitrophenoxy)benzene","UKGBFXVWMSJQQW-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=C(Cl)C=CC(Cl)=C2)C=C1","C12H7Cl2NO3","284.09","21","industrial","haloEthers",NA +10699,"50585-39-2","DTXSID50198603","1,3-Dichlorodibenzo-p-dioxin","AZYJYMAKTBXNSX-UHFFFAOYSA-N","ClC1=CC2=C(OC3=CC=CC=C3O2)C(Cl)=C1","C12H6Cl2O2","253.08","23",NA,"dioxinsAndFurans",NA +10700,"57653-85-7","DTXSID0023824","1,2,3,6,7,8-Hexachlorodibenzo-p-dioxin","YCLUIPQDHHPDJJ-UHFFFAOYSA-N","ClC1=CC2=C(OC3=CC(Cl)=C(Cl)C(Cl)=C3O2)C(Cl)=C1Cl","C12H2Cl6O2","390.85","46",NA,"dioxinsAndFurans",NA +10701,"262-12-4","DTXSID8020410","Dibenzo-p-dioxin","NFBOHOGPQUYFRF-UHFFFAOYSA-N","O1C2=CC=CC=C2OC2=C1C=CC=C2","C12H8O2","184.194","89",NA,"dioxinsAndFurans",NA +10702,"54536-19-5","DTXSID50202951","1,4-Dichlorodibenzo-p-dioxin","MBMUPQZSDWVPQU-UHFFFAOYSA-N","ClC1=C2OC3=CC=CC=C3OC2=C(Cl)C=C1","C12H6Cl2O2","253.08","17",NA,"dioxinsAndFurans",NA +10703,"38178-38-0","DTXSID00959105","1,6-Dichlorooxanthrene","MAWMBEVNJGEDAD-UHFFFAOYSA-N","ClC1=C2OC3=CC=CC(Cl)=C3OC2=CC=C1","C12H6Cl2O2","253.08","24",NA,"dioxinsAndFurans",NA +10704,"33857-26-0","DTXSID1020435","2,7-Dichlorodibenzo-p-dioxin","NBFMTHWVRBOVPE-UHFFFAOYSA-N","ClC1=CC2=C(OC3=C(O2)C=CC(Cl)=C3)C=C1","C12H6Cl2O2","253.08","40",NA,"dioxinsAndFurans",NA +10705,"262-16-8",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"dioxinsAndFurans",NA +10706,"39227-62-8","DTXSID1074042","1,2,4,6,7,9-Hexachlorodibenzo-p-dioxin","BSJDQMWAWFTDGD-UHFFFAOYSA-N","ClC1=CC(Cl)=C2OC3=C(OC2=C1Cl)C(Cl)=CC(Cl)=C3Cl","C12H2Cl6O2","390.85","22",NA,"dioxinsAndFurans",NA +10707,"71925-18-3","DTXSID1074094","1,2,3,8,9-Pentachlorodibenzo-p-dioxin","VUMZAVNIADYKFC-UHFFFAOYSA-N","ClC1=CC=C2OC3=C(OC2=C1Cl)C(Cl)=C(Cl)C(Cl)=C3","C12H3Cl5O2","356.4","23",NA,"dioxinsAndFurans",NA +10708,"58802-08-7","DTXSID4074067","1,2,4,7,8-Pentachlorodibenzo-p-dioxin","QUPLGUUISJOUPJ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C2=C1OC1=CC(Cl)=C(Cl)C=C1O2","C12H3Cl5O2","356.4","27",NA,"dioxinsAndFurans",NA +10709,"71998-76-0","DTXSID6074095","1,2,4,6,8-Pentachlorodibenzo-p-dioxin","SJJWALZHAWITMS-UHFFFAOYSA-N","ClC1=CC(Cl)=C2OC3=C(OC2=C1)C(Cl)=C(Cl)C=C3Cl","C12H3Cl5O2","356.4","16",NA,"dioxinsAndFurans",NA +10710,"50585-41-6","DTXSID6073524","2,3,7,8-Tetrabromodibenzo-p-dioxin","JZLQUWSWOJPCAK-UHFFFAOYSA-N","BrC1=CC2=C(OC3=CC(Br)=C(Br)C=C3O2)C=C1Br","C12H4Br4O2","499.778","36",NA,"dioxinsAndFurans",NA +10711,"41903-57-5","DTXSID4051378","Tetrachlorodibenzodioxin",NA,"Cl*.Cl*.Cl*.Cl*.O1C2=CC=CC=C2OC2=C1C=CC=C2 |c:7,9,13,16,18,t:5,lp:0:3,2:3,4:3,6:3,8:2,15:2,m:1:19.18,3:21.20.19.13.12.11.10,5:21.20.19.13.12.11.10,7:21.20.19.13.12.11.10|","C12H4Cl4O2","321.96",NA,NA,"dioxinsAndFurans",NA +10712,"39001-02-0","DTXSID3052062","Octachlorodibenzofuran","RHIROFAGUQOFLU-UHFFFAOYSA-N","ClC1=C2OC3=C(C2=C(Cl)C(Cl)=C1Cl)C(Cl)=C(Cl)C(Cl)=C3Cl","C12Cl8O","443.73","37",NA,"dioxinsAndFurans",NA +10713,"1836-74-4","DTXSID50171451","Benzene, 1-chloro-4-(4-nitrophenoxy)- (9CI)","GDEZSMXXDMVYHT-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=CC=C(Cl)C=C2)C=C1","C12H8ClNO3","249.65","76","industrial","haloEthers",NA +10714,"82239-20-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"industrial","haloEthers",NA +10715,"2671-93-4","DTXSID40949525","2,4-Dibromo-1-(4-nitrophenoxy)benzene","VGJDYXRUTQCYSG-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC=C(C=C2)N(=O)=O)C=C1","C12H7Br2NO3","373","20","industrial","haloEthers",NA +10716,"2093-28-9","DTXSID60943207","1,3-Dichloro-2-(4-nitrophenoxy)benzene","NCCRTWSKGUMZTF-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1OC1=CC=C(C=C1)N(=O)=O","C12H7Cl2NO3","284.09","32","industrial","haloEthers",NA +10717,"22532-80-5","DTXSID00177049","3,4-Dichlorophenyl 4'-nitrophenyl ether","TYCSUDQYQORVGV-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=CC(Cl)=C(Cl)C=C2)C=C1","C12H7Cl2NO3","284.09","30","industrial","haloEthers",NA +10718,"21105-77-1","DTXSID30943431","1,3-Dichloro-5-(4-nitrophenoxy)benzene","KWZIXOIDCOTWKE-UHFFFAOYSA-N","ClC1=CC(OC2=CC=C(C=C2)N(=O)=O)=CC(Cl)=C1","C12H7Cl2NO3","284.09","16","industrial","haloEthers",NA +10719,"620-88-2","DTXSID3022087","4-Nitrophenyl phenyl ether","JDTMUJBWSGNMGR-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=CC=CC=C2)C=C1","C12H9NO3","215.208","94","industrial","haloEthers",NA +10720,"142022-61-5","DTXSID401024108","1,2,3-Trichloro-4-(4-nitrophenoxy)benzene","YFQQNXUENVPACQ-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=C(Cl)C(Cl)=C(Cl)C=C2)C=C1","C12H6Cl3NO3","318.53",NA,"industrial","haloEthers",NA +10721,"142022-59-1","DTXSID20931307","2,2'-Oxybis(2',3',5'-trichloro-5-nitro-1,1'-biphenyl)","HNHUVTBFARHPOV-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(OC2=C(C=C(C=C2)N(=O)=O)C2=C(Cl)C(Cl)=CC(Cl)=C2)C=CC(=C1)N(=O)=O","C24H10Cl6N2O5","619.05","3","industrial","haloEthers",NA +10722,"142022-58-0","DTXSID60931306","1,2,4-Trichloro-3-(4-nitrophenoxy)benzene","ANENTINYATZARC-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=C(Cl)C(Cl)=CC=C2Cl)C=C1","C12H6Cl3NO3","318.53","5","industrial","haloEthers",NA +10723,"22532-68-9","DTXSID40177048","Ether, p-nitrophenyl 2,4,5-trichlorophenyl","AKQJUFWAKHZMIY-UHFFFAOYSA-N","[O-][N+](=O)C1=CC=C(OC2=CC(Cl)=C(Cl)C=C2Cl)C=C1","C12H6Cl3NO3","318.53","30","industrial","haloEthers",NA +10724,"20566-35-2","DTXSID60864948","2-(2-Hydroxyethoxy)ethyl 2-hydroxypropyl 3,4,5,6-tetrabromophthalate","OQHHASWHOGRCRC-UHFFFAOYSA-N","CC(O)COC(=O)C1=C(Br)C(Br)=C(Br)C(Br)=C1C(=O)OCCOCCO","C15H16Br4O7","627.902","27","flameRetardant","Unclassified",NA +10725,"105-95-3","DTXSID1044774","1,4-Dioxacycloheptadecane-5,17-dione","XRHCAGNSDHCHFJ-UHFFFAOYSA-N","O=C1CCCCCCCCCCCC(=O)OCCO1","C15H26O4","270.369","94","personalCare","Unclassified",NA +10726,"78-70-6","DTXSID7025502","Linalool","CDOSHBSSFJOMGT-UHFFFAOYSA-N","CC(C)=CCCC(C)(O)C=C","C10H18O","154.253","164","personalCare;pesticide","Unclassified",NA +10727,"105-13-5","DTXSID6044357","(4-Methoxyphenyl)methanol","MSHFRERJPWKJFX-UHFFFAOYSA-N","COC1=CC=C(CO)C=C1","C8H10O2","138.166","169","personalCare;natural","Unclassified",NA +10728,"999042-03-4",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10729,"999041-03-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10730,"999044-03-0",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10731,"999036-03-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10732,"999016-03-4",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10733,"999017-03-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10734,"999026-03-8",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10735,"999018-03-0",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10736,"999023-03-9",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10737,"999022-03-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10738,"999020-03-0",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10739,"999009-03-9",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10740,"999019-03-3",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10741,"999024-03-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10742,"999013-03-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10743,"68194-07-0","DTXSID4074196","2,2',3,4',5-Pentachlorobiphenyl","SUOAMBOBSWRMNQ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1","C12H5Cl5","326.42","30",NA,"PCB",NA +10744,"68194-05-8","DTXSID1073608","2,2',3,4',6-Pentachlorobiphenyl","CXKIGWXPPVZSQK-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C(Cl)=CC=C1Cl","C12H5Cl5","326.42","28",NA,"PCB",NA +10745,"73575-56-1","DTXSID5074218","2,2',3,5,6-Pentachlorobiphenyl","BMXRLHMJGHJGLR-UHFFFAOYSA-N","ClC1=CC=CC=C1C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H5Cl5","326.42","28",NA,"PCB",NA +10746,"73575-55-0","DTXSID0074217","2,2',3,5,6'-Pentachlorobiphenyl","FJUVPPYNSDTRQV-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C=CC=C1Cl","C12H5Cl5","326.42","28",NA,"PCB",NA +10747,"73575-54-9","DTXSID5074216","2,2',3,6,6'-Pentachlorobiphenyl","QQFGAXUIQVKBKU-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=C(Cl)C=CC=C1Cl","C12H5Cl5","326.42","27",NA,"PCB",NA +10748,"41464-51-1","DTXSID2073510","2,2',3,4',5'-Pentachlorobiphenyl","JTUSORDQZVOEAZ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=C(Cl)C(Cl)=CC=C1","C12H5Cl5","326.42","31",NA,"PCB",NA +10749,"68194-06-9","DTXSID10867525","2,2',4,5,6'-Pentachlorobiphenyl","BWWVXHRLMPBDCK-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C=C1C1=C(Cl)C=CC=C1Cl","C12H5Cl5","326.42","24",NA,"PCB",NA +10750,"56558-16-8","DTXSID0074184","2,2',4,6,6'-Pentachlorobiphenyl","MTCPZNVSDFCBBE-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C=CC=C1Cl","C12H5Cl5","326.42","32",NA,"PCB",NA +10751,"70424-69-0","DTXSID5074212","2,3,3',4,5-Pentachlorobiphenyl","BQENMISTWGTJIJ-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","31",NA,"PCB",NA +10752,"70362-41-3","DTXSID1074206","2,3,3',4,5'-Pentachlorobiphenyl","MPCDNZSLJWJDNW-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H5Cl5","326.42","33",NA,"PCB",NA +10753,"74472-35-8","DTXSID9074224","2,3,3',4,6-Pentachlorobiphenyl","XGQBSVVYMVILEL-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H5Cl5","326.42","29",NA,"PCB",NA +10754,"39635-32-0","DTXSID50865964","2,3,3',5,5'-Pentachlorobiphenyl","QMUDLTGWHILKHH-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=CC(Cl)=CC(Cl)=C1Cl","C12H5Cl5","326.42","31",NA,"PCB",NA +10755,"74472-36-9","DTXSID4074225","2,3,3',5,6-Pentachlorobiphenyl","NTKSJAPQYKCFPP-UHFFFAOYSA-N","ClC1=CC(=CC=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H5Cl5","326.42","32",NA,"PCB",NA +10756,"68194-10-5","DTXSID4074198","2,3,3',5',6-Pentachlorobiphenyl","YDGFMDPEJCJZEV-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C(Cl)=CC=C1Cl","C12H5Cl5","326.42","33",NA,"PCB",NA +10757,"74472-38-1","DTXSID4074227","2,3,4,4',6-Pentachlorobiphenyl","IOVARPVVZDOPGQ-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H5Cl5","326.42","30",NA,"PCB",NA +10758,"18259-05-7","DTXSID40864820","2,3,4,5,6-Pentachlorobiphenyl","GGMPTLAAIUQMIE-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(C(Cl)=C1Cl)C1=CC=CC=C1","C12H5Cl5","326.42","41",NA,"PCB",NA +10759,"68194-11-6","DTXSID9074199","2,3,4',5,6-Pentachlorobiphenyl","ZDDZPDTVCZLFFC-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H5Cl5","326.42","26",NA,"PCB",NA +10760,"56558-17-9","DTXSID5074185","2,3',4,4',6-Pentachlorobiphenyl","OAEQTHQGPZKTQP-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=CC=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","34",NA,"PCB",NA +10761,"68194-12-7","DTXSID6073609","2,3',4,5,5'-Pentachlorobiphenyl","ZLGYJAIAVPVCNF-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","31",NA,"PCB",NA +10762,"56558-18-0","DTXSID50866577","2,3',4,5',6-Pentachlorobiphenyl","XBVSGJGMWSKAKL-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=CC(Cl)=CC(Cl)=C1","C12H5Cl5","326.42","30",NA,"PCB",NA +10763,"76842-07-4","DTXSID2074243","2,3,3',4',5'-Pentachlorobiphenyl","GWOWBISZHLPYEK-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=CC=CC(Cl)=C1Cl","C12H5Cl5","326.42","31",NA,"PCB",NA +10764,"65510-44-3","DTXSID50867160","2',3,4,4',5-Pentachlorobiphenyl","YAHNWSSFXMVPOU-UHFFFAOYSA-N","ClC1=CC=C(C(Cl)=C1)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","32",NA,"PCB",NA +10765,"70424-70-3","DTXSID0074213","2,3',4',5,5'-Pentachlorobiphenyl","PIVBPZFQXKMHBD-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","29",NA,"PCB",NA +10766,"74472-39-2","DTXSID9074228","2,3',4',5',6-Pentachlorobiphenyl","WAZUWHGJMMZVHH-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=C(Cl)C=CC=C1Cl","C12H5Cl5","326.42","32",NA,"PCB",NA +10767,"39635-33-1","DTXSID9074145","3,3',4,5,5'-Pentachlorobiphenyl","MXVAYAXIPRGORY-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H5Cl5","326.42","32",NA,"PCB",NA +10768,"55215-18-4","DTXSID8073554","2,2',3,3',4,5-Hexachlorobiphenyl","VQQKIXKPMJTUMP-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","28",NA,"PCB",NA +10769,"61798-70-7","DTXSID8074780","PCB 131","WDLTVNWWEZJMPF-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(Cl)=C1C1=CC=CC(Cl)=C1Cl","C12H4Cl6","360.86","31",NA,"PCB",NA +10770,"35694-04-3","DTXSID4030045","2,2',3,3',5,5'-Hexachlorobiphenyl","AJKLKINFZLWHQE-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1","C12H4Cl6","360.86","34",NA,"PCB",NA +10771,"52704-70-8","DTXSID1074173","2,2',3,3',5,6-Hexachlorobiphenyl","RVWLHPJFOKUPNM-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H4Cl6","360.86","28",NA,"PCB",NA +10772,"52744-13-5","DTXSID9073541","2,2',3,3',5,6'-Hexachlorobiphenyl","UUTNFLRSJBQQJM-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C(Cl)=CC=C1Cl","C12H4Cl6","360.86","32",NA,"PCB",NA +10773,"35694-06-5","DTXSID0074138","2,2',3,4,4',5-Hexachlorobiphenyl","CKLLRBPBZLTGDJ-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","33",NA,"PCB",NA +10774,"56030-56-9","DTXSID5074183","2,2',3,4,4',6-Hexachlorobiphenyl","SPOPSCCFZQFGDL-UHFFFAOYSA-N","ClC1=CC=C(C(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H4Cl6","360.86","34",NA,"PCB",NA +10775,"59291-64-4","DTXSID0074186","2,2',3,4,4',6'-Hexachlorobiphenyl","XBBRGUHRZBZMPP-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H4Cl6","360.86","27",NA,"PCB",NA +10776,"52712-04-6","DTXSID6074174","2,2',3,4,5,5'-Hexachlorobiphenyl","UCLKLGIYGBLTSM-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","33",NA,"PCB",NA +10777,"41411-61-4","DTXSID9074149","2,2',3,4,5,6-Hexachlorobiphenyl","RUEIBQJFGMERJD-UHFFFAOYSA-N","ClC1=C(C=CC=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H4Cl6","360.86","30",NA,"PCB",NA +10778,"68194-15-0","DTXSID1074202","2,2',3,4,5,6'-Hexachlorobiphenyl","UQPQKLGBEKEZBV-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=C(Cl)C=CC=C1Cl","C12H4Cl6","360.86","29",NA,"PCB",NA +10779,"68194-14-9","DTXSID6074201","2,2',3,4,5',6-Hexachlorobiphenyl","CXXRQFOKRZJAJA-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H4Cl6","360.86","28",NA,"PCB",NA +10780,"74472-40-5","DTXSID4074229","2,2',3,4,6,6'-Hexachlorobiphenyl","JZFZCLFEPXCRCA-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H4Cl6","360.86","31",NA,"PCB",NA +10781,"68194-13-8","DTXSID1074200","2,2',3,4',5,6-Hexachlorobiphenyl","AQONCPKMJSBHQT-UHFFFAOYSA-N","ClC1=CC=C(C(Cl)=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H4Cl6","360.86","28",NA,"PCB",NA +10782,"74472-41-6","DTXSID3074230","2,2',3,4',5,6'-Hexachlorobiphenyl","CTVRBEKNQHJPLX-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1","C12H4Cl6","360.86","34",NA,"PCB",NA +10783,"68194-08-1","DTXSID9074197","2,2',3,4',6,6'-Hexachlorobiphenyl","RPPNJBZNXQNKNM-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C(Cl)=CC=C1Cl","C12H4Cl6","360.86","31",NA,"PCB",NA +10784,"68194-09-2","DTXSID70867526","2,2',3,5,6,6'-Hexachlorobiphenyl","CLODVDBWNVQLGO-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1Cl)C1=C(Cl)C=CC=C1Cl","C12H4Cl6","360.86","24",NA,"PCB",NA +10785,"60145-22-4","DTXSID4074190","2,2',4,4',5,6'-Hexachlorobiphenyl","QXZHEJWDLVUFFB-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","29",NA,"PCB",NA +10786,"33979-03-2","DTXSID3040302","2,2',4,4',6,6'-Hexachlorobiphenyl","ICOAEPDGFWLUTI-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C=C(Cl)C=C1Cl","C12H4Cl6","360.86","38",NA,"PCB",NA +10787,"39635-35-3","DTXSID4074146","2,3,3',4,5,5'-Hexachlorobiphenyl","YZKLGRAIIIGOHB-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","31",NA,"PCB",NA +10788,"41411-62-5","DTXSID20866044","2,3,3',4,5,6-Hexachlorobiphenyl","JHJMZCXLJXRCHK-UHFFFAOYSA-N","ClC1=CC=CC(=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H4Cl6","360.86","28",NA,"PCB",NA +10789,"74472-43-8","DTXSID3074232","2,3,3',4,5',6-Hexachlorobiphenyl","UNPTZXSJGZTGJJ-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H4Cl6","360.86","24",NA,"PCB",NA +10790,"39635-34-2","DTXSID10865965","2,3,3',4',5,5'-Hexachlorobiphenyl","AHZUOPSGLWYCNF-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","31",NA,"PCB",NA +10791,"74472-45-0","DTXSID3074234","2,3,3',4',5',6-Hexachlorobiphenyl","HAZQOLYHFUUJJN-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","34",NA,"PCB",NA +10792,"74472-46-1","DTXSID8073631","2,3,3',5,5',6-Hexachlorobiphenyl","ZEATXTCWXKQPHO-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H4Cl6","360.86","28",NA,"PCB",NA +10793,"59291-65-5","DTXSID5074187","2,3',4,4',5',6-Hexachlorobiphenyl","PITHIPNORFGJPI-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=CC(Cl)=C(Cl)C(Cl)=C1","C12H4Cl6","360.86","32",NA,"PCB",NA +10794,"52663-71-5","DTXSID4073540","2,2',3,3',4,4',6-Heptachlorobiphenyl","TZMHVHLTPWKZCI-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(Cl)=C1C1=C(Cl)C(Cl)=C(Cl)C=C1","C12H3Cl7","395.31","31",NA,"PCB",NA +10795,"52663-74-8","DTXSID7074167","2,2',3,3',4,5,5'-Heptachlorobiphenyl","HOPMUCXYRNOABF-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H3Cl7","395.31","35",NA,"PCB",NA +10796,"68194-16-1","DTXSID6074203","2,2',3,3',4,5,6-Heptachlorobiphenyl","PAYFWJAKKLILIT-UHFFFAOYSA-N","ClC1=CC=CC(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H3Cl7","395.31","34",NA,"PCB",NA +10797,"38411-25-5","DTXSID4074142","2,2',3,3',4,5,6'-Heptachlorobiphenyl","ZDLMBNHYTPHDLF-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H3Cl7","395.31","41",NA,"PCB",NA +10798,"40186-70-7","DTXSID9074147","2,2',3,3',4,5',6-Heptachlorobiphenyl","KJBDZJFSYQUNJT-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H3Cl7","395.31","36",NA,"PCB",NA +10799,"52663-65-7","DTXSID7074161","2,2',3,3',4,6,6'-Heptachlorobiphenyl","HGMYRFJAJNYBRX-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(Cl)=C1C1=C(Cl)C=CC(Cl)=C1Cl","C12H3Cl7","395.31","36",NA,"PCB",NA +10800,"74472-47-2","DTXSID8074235","2,2',3,4,4',5,6-Heptachlorobiphenyl","DJEUXBQAKBLKPO-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H3Cl7","395.31","31",NA,"PCB",NA +10801,"60145-23-5","DTXSID9074191","2,2',3,4,4',5,6'-Heptachlorobiphenyl","RXRLRYZUMSYVLS-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C12H3Cl7","395.31","27",NA,"PCB",NA +10802,"74472-48-3","DTXSID3074236","2,2',3,4,4',6,6'-Heptachlorobiphenyl","OBIUJJSQKPGKME-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H3Cl7","395.31","31",NA,"PCB",NA +10803,"52712-05-7","DTXSID1074175","2,2',3,4,5,5',6-Heptachlorobiphenyl","PYZHTHZEHQHHEN-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H3Cl7","395.31","30",NA,"PCB",NA +10804,"74472-49-4","DTXSID8074237","2,2',3,4,5,6,6'-Heptachlorobiphenyl","FGDPOTMRBQHPJK-UHFFFAOYSA-N","ClC1=CC=CC(Cl)=C1C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H3Cl7","395.31","29",NA,"PCB",NA +10805,"74487-85-7","DTXSID7074242","2,2',3,4',5,6,6'-Heptachlorobiphenyl","MMTJWDQKGUNSDK-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H3Cl7","395.31","30",NA,"PCB",NA +10806,"41411-64-7","DTXSID3074151","2,3,3',4,4',5,6-Heptachlorobiphenyl","TYEDCFVCFDKSBK-UHFFFAOYSA-N","ClC1=C(Cl)C=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H3Cl7","395.31","25",NA,"PCB",NA +10807,"74472-50-7","DTXSID3074238","2,3,3',4,4',5',6-Heptachlorobiphenyl","TVFXBXWAXIMLAQ-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H3Cl7","395.31","24",NA,"PCB",NA +10808,"74472-51-8","DTXSID8074239","2,3,3',4,5,5',6-Heptachlorobiphenyl","ZUTDUGMNROUBOX-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H3Cl7","395.31","24",NA,"PCB",NA +10809,"69782-91-8","DTXSID30867845","2,3,3',4',5,5',6-Heptachlorobiphenyl","SSTJUBQGYXNFFP-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H3Cl7","395.31","25",NA,"PCB",NA +10810,"52663-78-2","DTXSID1074171","2,2',3,3',4,4',5,6-Octachlorobiphenyl","JAHJITLFJSDRCG-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(C=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H2Cl8","429.75","36",NA,"PCB",NA +10811,"42740-50-1","DTXSID3074157","2,2',3,3',4,4',5,6'-Octachlorobiphenyl","BQFCCUSDZLKBJG-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H2Cl8","429.75","31",NA,"PCB",NA +10812,"33091-17-7","DTXSID0074134","2,2',3,3',4,4',6,6'-Octachlorobiphenyl","YPDBBDKYNWRFMF-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(Cl)=C1C1=C(Cl)C(Cl)=C(Cl)C=C1Cl","C12H2Cl8","429.75","34",NA,"PCB",NA +10813,"68194-17-2","DTXSID1074204","2,2',3,3',4,5,5',6-Octachlorobiphenyl","PJHBSPRZHUOIAS-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H2Cl8","429.75","30",NA,"PCB",NA +10814,"52663-75-9","DTXSID2074168","2,2',3,3',4,5,5',6'-Octachlorobiphenyl","HJBYDWKNARZTMJ-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C12H2Cl8","429.75","37",NA,"PCB",NA +10815,"52663-73-7","DTXSID2074166","2,2',3,3',4,5,6,6'-Octachlorobiphenyl","HHXNVASVVVNNDG-UHFFFAOYSA-N","ClC1=CC=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H2Cl8","429.75","28",NA,"PCB",NA +10816,"52663-76-0","DTXSID7074169","2,2',3,4,4',5,5',6-Octachlorobiphenyl","DCPDZFRGNJDWPP-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H2Cl8","429.75","35",NA,"PCB",NA +10817,"74472-52-9","DTXSID7074240","2,2',3,4,4',5,6,6'-Octachlorobiphenyl","JDZUWXRNKHXZFE-UHFFFAOYSA-N","ClC1=CC(Cl)=C(C(Cl)=C1)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H2Cl8","429.75","34",NA,"PCB",NA +10818,"74472-53-0","DTXSID2074241","2,3,3',4,4',5,5',6-Octachlorobiphenyl","VXXBCDUYUQKWCK-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12H2Cl8","429.75","31",NA,"PCB",NA +10819,"40186-72-9","DTXSID50865989","2,2',3,3',4,4',5,5',6-Nonachlorobiphenyl","JFIMDKGRGPNPRQ-UHFFFAOYSA-N","ClC1=CC(=C(Cl)C(Cl)=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12HCl9","464.19","36",NA,"PCB",NA +10820,"52663-79-3","DTXSID6074172","2,2',3,3',4,4',5,6,6'-Nonachlorobiphenyl","YGDPIDTZOQGPAX-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(Cl)=C1C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12HCl9","464.19","33",NA,"PCB",NA +10821,"52663-77-1","DTXSID6074170","2,2',3,3',4,5,5',6,6'-Nonachlorobiphenyl","XIFFTDRFWYFAPO-UHFFFAOYSA-N","ClC1=CC(Cl)=C(Cl)C(=C1Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C12HCl9","464.19","31",NA,"PCB",NA +10822,"77-73-6","DTXSID5025023","Dicyclopentadiene","HECLRDQVFMWTQS-UHFFFAOYSA-N","C1C=CC2C3CC(C=C3)C12","C10H12","132.206","122","industrial","PAH",NA +10823,"115-26-4","DTXSID8041870","Dimefox","PGJBQBDNXAZHBP-UHFFFAOYSA-N","CN(C)P(F)(=O)N(C)C","C4H12FN2OP","154.125","45","pesticide","Unclassified",NA +10824,"95-68-1","DTXSID8026305","2,4-Dimethylaniline","CZZZABOKJQXEBO-UHFFFAOYSA-N","CC1=CC(C)=C(N)C=C1","C8H11N","121.183","155","industrial","aniline",NA +10825,"2941-55-1","DTXSID6041925","Ethiolate","WARIWGPBHKPYON-UHFFFAOYSA-N","CCSC(=O)N(CC)CC","C7H15NOS","161.26","43","pesticide","Unclassified",NA +10826,"108-42-9","DTXSID0024761","3-Chloroaniline","PNPCRKVUWYDDST-UHFFFAOYSA-N","NC1=CC(Cl)=CC=C1","C6H6ClN","127.57","173","industrial","aniline",NA +10827,"94-96-2","DTXSID4025292","2-Ethyl-1,3-hexanediol","RWLALWYNXFYRGW-UHFFFAOYSA-N","CCCC(O)C(CC)CO","C8H18O2","146.23","107","pesticide","Unclassified",NA +10828,"93-71-0","DTXSID2041591","Allidochlor","MDBGGTQNNUOQRC-UHFFFAOYSA-N","ClCC(=O)N(CC=C)CC=C","C8H12ClNO","173.64","77","pesticide","Unclassified",NA +10829,"933-78-8","DTXSID0026208","2,3,5-Trichlorophenol","WWGQHTJIFOQAOC-UHFFFAOYSA-N","OC1=CC(Cl)=CC(Cl)=C1Cl","C6H3Cl3O","197.44","105","industrial","phenol",NA +10830,"37764-25-3","DTXSID4027997","Dichlormid","YRMLFORXOOIJDR-UHFFFAOYSA-N","ClC(Cl)C(=O)N(CC=C)CC=C","C8H11Cl2NO","208.08","91","pesticide;pesticide","Unclassified",NA +10831,"122-59-8","DTXSID9025873","Phenoxyacetic acid","LCPDWSOZIOUXRV-UHFFFAOYSA-N","OC(=O)COC1=CC=CC=C1","C8H8O3","152.149","160","pesticide","Unclassified",NA +10832,"24579-73-5","DTXSID1040295","Propamocarb","WZZLDXDUQPOXNW-UHFFFAOYSA-N","CCCOC(=O)NCCCN(C)C","C9H20N2O2","188.271","71","pesticide","Unclassified",NA +10833,"940-31-8","DTXSID10870812","Propanoic acid, 2-phenoxy-","SXERGJJQSKIUIC-UHFFFAOYSA-N","CC(OC1=CC=CC=C1)C(O)=O","C9H10O3","166.176","119","pharmacological","Unclassified",NA +10834,"626-43-7","DTXSID7030307","3,5-Dichloroaniline","UQRLKWGPEVNVHT-UHFFFAOYSA-N","NC1=CC(Cl)=CC(Cl)=C1","C6H5Cl2N","162.01","147","pharmacological;industrial;pesticide","aniline",NA +10835,"24934-91-6","DTXSID1037511","Chlormephos","QGTYWWGEWOBMAK-UHFFFAOYSA-N","CCOP(=S)(OCC)SCCl","C5H12ClO2PS2","234.69","49","pesticide","Unclassified",NA +10836,"1129-41-5","DTXSID8057938","Metolcarb","VOEYXMAFNDNNED-UHFFFAOYSA-N","CN=C(O)OC1=CC=CC(C)=C1","C9H11NO2","165.192","76","pesticide","Unclassified",NA +10837,"25013-16-5","DTXSID7020215","Butylated hydroxyanisole",NA,NA,NA,NA,NA,"pharmacological;personalCare","Unclassified",NA +10838,"62610-77-9","DTXSID0058144","Methacrifos","NTAHCMPOMKHKEU-AATRIKPKSA-N","COC(=O)C(\C)=C\OP(=S)(OC)OC","C7H13O5PS","240.21","38","pesticide","Unclassified",NA +10839,"535-89-7","DTXSID0041800","Crimidine","HJIUPFPIEBPYIE-UHFFFAOYSA-N","CN(C)C1=CC(C)=NC(Cl)=N1","C7H10ClN3","171.63","71","pesticide","Unclassified",NA +10840,"6597-78-0","DTXSID1041849","Dicamba-methyl","AWSBKDYHGOOSML-UHFFFAOYSA-N","COC(=O)C1=C(OC)C(Cl)=CC=C1Cl","C9H8Cl2O3","235.06","37","pharmacological","Unclassified",NA +10841,"112-56-1","DTXSID6024674","2-(2-Butoxyethoxy)ethyl thiocyanate","JVGPVVUTUMQJKL-UHFFFAOYSA-N","CCCCOCCOCCSC#N","C9H17NO2S","203.3","50","pesticide","Unclassified",NA +10842,"3547-33-9","DTXSID6032516","2-Hydroxyethyl octyl sulfide","KXPXKNBDCUOENF-UHFFFAOYSA-N","CCCCCCCCSCCO","C10H22OS","190.35","65","pesticide","Unclassified",NA +10843,"2631-40-5","DTXSID6042072","Isoprocarb","QBSJMKIUCUGGNG-UHFFFAOYSA-N","CNC(=O)OC1=C(C=CC=C1)C(C)C","C11H15NO2","193.246","80","pesticide","Unclassified",NA +10844,"8065-62-1","DTXSID50274158","Demephion",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10845,"935-95-5","DTXSID2026101","2,3,5,6-Tetrachlorophenol","KEWNKZNZRIAIAK-UHFFFAOYSA-N","OC1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C6H2Cl4O","231.88","80","pesticide","phenol",NA +10846,"23844-56-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10847,"4901-51-3","DTXSID0022220","2,3,4,5-Tetrachlorophenol","RULKYXXCCZZKDZ-UHFFFAOYSA-N","OC1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1","C6H2Cl4O","231.88","79","pesticide","phenol",NA +10848,"2436-73-9","DTXSID60179100","MCPA-methyl [ISO]","VWERIRLJUWTNDA-UHFFFAOYSA-N","COC(=O)COC1=C(C)C=C(Cl)C=C1","C10H11ClO3","214.65","56","pesticide","Unclassified",NA +10849,"23560-59-0","DTXSID5042037","Heptenophos","GBAWQJNHVWMTLU-UHFFFAOYSA-N","COP(=O)(OC)OC1=C(Cl)C2C=CCC12","C9H12ClO4P","250.61","44","pesticide","Unclassified",NA +10850,"14437-17-3","DTXSID5041770","Chlorfenprop-methyl","YJKIALIXRCSISK-UHFFFAOYSA-N","COC(=O)C(Cl)CC1=CC=C(Cl)C=C1","C10H10Cl2O2","233.09","40","pesticide","Unclassified",NA +10851,"1113-02-6","DTXSID4037580","Omethoate","PZXOQEXFMJCDPG-UHFFFAOYSA-N","CNC(=O)CSP(=O)(OC)OC","C5H12NO4PS","213.19","72","pesticide","Unclassified",NA +10852,"117-18-0","DTXSID0026098","2,3,5,6-Tetrachloronitrobenzene","XQTLDIFVVHJORV-UHFFFAOYSA-N","[O-][N+](=O)C1=C(Cl)C(Cl)=CC(Cl)=C1Cl","C6HCl4NO2","260.88","81","pesticide","Unclassified",NA +10853,"57153-17-0",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10854,"919-86-8","DTXSID5037521","Demeton-S-methyl","WEBQKRLKWNIYKK-UHFFFAOYSA-N","CCSCCSP(=O)(OC)OC","C6H15O3PS2","230.28","80","pesticide","Unclassified",NA +10855,"1928-38-7","DTXSID6041349","2,4-D-methyl","HWIGZMADSFQMOI-UHFFFAOYSA-N","COC(=O)COC1=C(Cl)C=C(Cl)C=C1","C9H8Cl2O3","235.06","96","pesticide","Unclassified",NA +10856,"5825-87-6","DTXSID5041304","2-(3-Chlorophenoxy)propionamide","QVTINYNCTADMES-UHFFFAOYSA-N","CC(OC1=CC(Cl)=CC=C1)C(N)=O","C9H10ClNO2","199.63","27","pesticide","Unclassified",NA +10857,"6164-98-3","DTXSID2037508","Chlordimeform","STUSTWKEFDQFFZ-KPKJPENVSA-N","CN(C)\C=N\C1=CC=C(Cl)C=C1C","C10H13ClN2","196.68","67","pesticide","Unclassified",NA +10858,"2655-15-4","DTXSID9041318","2,3,5-Trimethylphenyl methylcarbamate","NYOKZHDTNBDPOB-UHFFFAOYSA-N","CNC(=O)OC1=C(C)C(C)=CC(C)=C1","C11H15NO2","193.246","48","pesticide","Unclassified",NA +10859,"39196-18-4","DTXSID4042468","3,3-Dimethyl-1-(methylthio)butanone-O-(N-methylcarbamoyl)oxime","FZSVSABTBYGOQH-UHFFFAOYSA-N","CNC(=O)ON=C(CSC)C(C)(C)C","C9H18N2O2S","218.32","27","pesticide","Unclassified",NA +10860,"999055-03-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10861,"60825-26-5","DTXSID8069432","Acetic acid, [(3,5,6-trichloro-2-pyridinyl)oxy]-, methyl ester","MNYBZEHWPRTNJY-UHFFFAOYSA-N","COC(=O)COC1=NC(Cl)=C(Cl)C=C1Cl","C8H6Cl3NO3","270.49","24","pesticide","Unclassified",NA +10862,"2876-78-0","DTXSID2042143","Methyl 1-naphthaleneacetate","YGGXZTQSGNFKPJ-UHFFFAOYSA-N","COC(=O)CC1=C2C=CC=CC2=CC=C1","C13H12O2","200.237","108","pesticide","Unclassified",NA +10863,"17708-57-5","DTXSID8058326","cis-Diallate","SPANOECCGNXGNR-UITAMQMPSA-N","CC(C)N(C(C)C)C(=O)SC\C(Cl)=C\Cl","C10H17Cl2NOS","270.21","40","pesticide","Unclassified",NA +10864,"640-15-3","DTXSID9042469","Thiometon","OPASCBHCTNRLRM-UHFFFAOYSA-N","CCSCCSP(=S)(OC)OC","C6H15O2PS3","246.34","48","pesticide","Unclassified",NA +10865,"999025-03-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10866,"999010-03-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10867,"999012-03-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10868,"999021-03-3",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10869,"999014-03-8",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10870,"999015-03-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10871,"999011-03-9",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10872,"999059-03-9",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10873,"999060-03-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10874,"33089-74-6","DTXSID1037696","N'-(2,4-Dimethylphenyl)-N-methylformamidine","JIIOLEGNERQDIP-UHFFFAOYSA-N","CNC=NC1=CC=C(C)C=C1C","C10H14N2","162.236","61","pesticide","Unclassified",NA +10875,"2425-10-7","DTXSID3058032","Xylylcarb","WCJYTPVNMWIZCG-UHFFFAOYSA-N","CNC(=O)OC1=CC(C)=C(C)C=C1","C10H13NO2","179.219","45","pesticide","Unclassified",NA +10876,"3228-03-3","DTXSID6062915","Phenol, 3-methyl-5-(1-methylethyl)-","ZDUIHRJGDMTBEX-UHFFFAOYSA-N","CC(C)C1=CC(O)=CC(C)=C1","C10H14O","150.221","64","pesticide","phenol",NA +10877,"2314-09-2","DTXSID5041986","Flurenol-butyl","PSGPXWYGJGGEEG-UHFFFAOYSA-N","CCCCOC(=O)C1(O)C2=C(C=CC=C2)C2=C1C=CC=C2","C18H18O3","282.339","52","pesticide","Unclassified",NA +10878,"999058-03-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","phenol",NA +10879,"7025-06-1","DTXSID7073486","Benzene, bromophenoxy-","RRWFUWRLNIZICP-UHFFFAOYSA-N","BrC1=C(OC2=CC=CC=C2)C=CC=C1","C12H9BrO","249.107","74","flameRetardant","PBDE",NA +10880,"6876-00-2","DTXSID9074773","PBDE 002","AHDAKFFMKLQPTD-UHFFFAOYSA-N","BrC1=CC=CC(OC2=CC=CC=C2)=C1","C12H9BrO","249.107","112","flameRetardant","PBDE",NA +10881,"171977-44-9","DTXSID70565813","2,4-Dibromo-1-phenoxybenzene","JMCIHKKTRDLVCO-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC=CC=C2)C=C1","C12H8Br2O","328.003","18","flameRetardant","PBDE",NA +10882,"147217-71-8","DTXSID50577712","1-Bromo-2-(4-bromophenoxy)benzene","RJQLQJZMLISKRJ-UHFFFAOYSA-N","BrC1=CC=C(OC2=CC=CC=C2Br)C=C1","C12H8Br2O","328.003","22","flameRetardant","PBDE",NA +10883,"51930-04-2","DTXSID00477016","Benzene, 1,3-dibromo-2-phenoxy-","MUVDKHMQIZJFTC-UHFFFAOYSA-N","BrC1=CC=CC(Br)=C1OC1=CC=CC=C1","C12H8Br2O","328.003",NA,"flameRetardant","PBDE",NA +10884,"6903-63-5","DTXSID90534622","1,1'-Oxybis(3-bromobenzene)","ALSVFJIXSNRBLE-UHFFFAOYSA-N","BrC1=CC=CC(OC2=CC(Br)=CC=C2)=C1","C12H8Br2O","328.003","23","flameRetardant","PBDE",NA +10885,"189084-59-1","DTXSID40477015","3,4-Dibromodiphenyl ether","SUUJFDKVPDCZQZ-UHFFFAOYSA-N","BrC1=C(Br)C=C(OC2=CC=CC=C2)C=C1","C12H8Br2O","328.003",NA,"flameRetardant","PBDE",NA +10886,"83694-71-7","DTXSID90577711","1-Bromo-3-(4-bromophenoxy)benzene","BGPOVBPKODCMMN-UHFFFAOYSA-N","BrC1=CC=C(OC2=CC(Br)=CC=C2)C=C1","C12H8Br2O","328.003",NA,"flameRetardant","PBDE",NA +10887,"147217-77-4","DTXSID10577713","2,4-Dibromo-1-(3-bromophenoxy)benzene","AURKEOPYVUYTLO-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC(Br)=CC=C2)C=C1","C12H7Br3O","406.899","13","flameRetardant","PBDE",NA +10888,"155999-95-4","DTXSID60477017","2,4,6-Tribromodiphenyl ether","TVZAPPGLBLTACB-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC=CC=C2)C(Br)=C1","C12H7Br3O","406.899","23","flameRetardant","PBDE",NA +10889,"189084-60-4","DTXSID70879861","BDE-32","TYDVYKIQSZGUMV-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C=CC=C2Br)C=C1","C12H7Br3O","406.899","14","flameRetardant","PBDE",NA +10890,"147217-78-5","DTXSID5024348","2',3,4-Tribromodiphenyl ether","BUQBQEYUVAKJQK-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C=CC=C2)C=C1Br","C12H7Br3O","406.899","20","flameRetardant","PBDE",NA +10891,"147217-80-9","DTXSID90879863","BDE-35","CDVYKQPKJYPWRO-UHFFFAOYSA-N","BrC1=CC(OC2=CC=C(Br)C(Br)=C2)=CC=C1","C12H7Br3O","406.899","15","flameRetardant","PBDE",NA +10892,"147217-81-0","DTXSID50879864","BDE-37","YALAYFVVZFORPV-UHFFFAOYSA-N","BrC1=CC=C(OC2=CC=C(Br)C(Br)=C2)C=C1","C12H7Br3O","406.899","21","flameRetardant","PBDE",NA +10893,"189084-62-6","DTXSID30873481","DE 71",NA,NA,NA,NA,NA,"flameRetardant","PBDE",NA +10893,"189084-62-6","DTXSID90873922","2,3',4',6-Tetrabromodiphenyl Ether","COPAGYRSCJVION-UHFFFAOYSA-N","BrC1=CC=CC(Br)=C1OC1=CC(Br)=C(Br)C=C1","C12H6Br4O","485.795","26","flameRetardant","PBDE",NA +10894,"93703-48-1","DTXSID80877030","BDE-77","RYGLOWMCGZHYRQ-UHFFFAOYSA-N","BrC1=C(Br)C=C(OC2=CC(Br)=C(Br)C=C2)C=C1","C12H6Br4O","485.795","24","flameRetardant","PBDE",NA +10895,"189084-65-9","DTXSID80548894","1,2,3,4,5-Pentabromo-6-phenoxybenzene","ACRQLFSHISNWRY-UHFFFAOYSA-N","BrC1=C(Br)C(Br)=C(OC2=CC=CC=C2)C(Br)=C1Br","C12H5Br5O","564.691","28","flameRetardant","PBDE",NA +10896,"446254-80-4","DTXSID40724016","1,2,4-Tribromo-5-(3,4-dibromophenoxy)benzene","VTMFEPLDDHZBGI-UHFFFAOYSA-N","BrC1=CC(Br)=C(Br)C=C1OC1=CC(Br)=C(Br)C=C1","C12H5Br5O","564.691","13","flameRetardant","PBDE",NA +10897,"189084-66-0","DTXSID50873928","2,3',4,4',6-Pentabromodiphenyl Ether","KXEOYBYEJCRPGB-UHFFFAOYSA-N","BrC1=CC(Br)=C(OC2=CC(Br)=C(Br)C=C2)C(Br)=C1","C12H5Br5O","564.691","22","flameRetardant","PBDE",NA +10898,"182677-30-1","DTXSID60872265","2,2',3,4,4',5'-Hexabromodiphenyl Ether","IZFQCEZFGCMHOM-UHFFFAOYSA-N","BrC1=CC=C(OC2=CC(Br)=C(Br)C=C2Br)C(Br)=C1Br","C12H4Br6O","643.587","28","flameRetardant","PBDE",NA +10899,"189084-58-0","DTXSID50879965","BDE-166","KVYODBMKQYVNEK-UHFFFAOYSA-N","BrC1=CC=C(OC2=C(Br)C(Br)=C(Br)C(Br)=C2Br)C=C1","C12H4Br6O","643.587","16","flameRetardant","PBDE",NA +10900,"26248-87-3","DTXSID201016652","Tris(chloropropyl)phosphate",NA,NA,NA,NA,NA,"industrial;pulpAndPaper;flameRetardant","OPFR",NA +10901,"202-33-5 and 199-54-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH",NA +10902,"37853-59-1","DTXSID1024627","1,2-Bis(2,4,6-tribromophenoxy)ethane","YATIGPZCMOYEGE-UHFFFAOYSA-N","BrC1=CC(Br)=C(OCCOC2=C(Br)C=C(Br)C=C2Br)C(Br)=C1","C14H8Br6O2","687.64","68","flameRetardant","Unclassified",NA +10903,"2113-57-7","DTXSID5024639","3-Bromobiphenyl","USYQKCQEVBFJRP-UHFFFAOYSA-N","BrC1=CC=CC(=C1)C1=CC=CC=C1","C12H9Br","233.108","149","flameRetardant","PBB",NA +10904,"92-66-0","DTXSID4024640","4-Bromobiphenyl","PKJBWOWQJHHAHG-UHFFFAOYSA-N","BrC1=CC=C(C=C1)C1=CC=CC=C1","C12H9Br","233.108","174","flameRetardant","PBB",NA +10905,"13029-09-9","DTXSID5074761","2,2'-Dibromobiphenyl","DRKHIWKXLZCAKP-UHFFFAOYSA-N","BrC1=CC=CC=C1C1=CC=CC=C1Br","C12H8Br2","312.004","119","flameRetardant","PBB",NA +10906,"53592-10-2","DTXSID0074762","PBB 007","BWVLLEHUUJBZMR-UHFFFAOYSA-N","BrC1=CC(Br)=C(C=C1)C1=CC=CC=C1","C12H8Br2","312.004","79","flameRetardant","PBB",NA +10907,"57422-77-2","DTXSID5074763","PBB 009","MHQCPXUMZCNOSF-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=CC=CC=C1","C12H8Br2","312.004","37","flameRetardant","PBB",NA +10908,"59080-32-9","DTXSID0074764","PBB 010","KCYUDWBWEGNDFO-UHFFFAOYSA-N","BrC1=CC=CC(Br)=C1C1=CC=CC=C1","C12H8Br2","312.004","43","flameRetardant","PBB",NA +10909,"59080-34-1","DTXSID5074765","PBB 018","IYDNWMCMGNRWET-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=C(Br)C=CC=C1","C12H7Br3","390.9","28","flameRetardant","PBB",NA +10910,"59080-35-2","DTXSID0074766","PBB 026","HSYRZFKOZZOCNA-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=CC(Br)=CC=C1","C12H7Br3","390.9","27","flameRetardant","PBB",NA +10911,"115245-07-3","DTXSID80151024","1,1'-Biphenyl, 2,4,5-tribromo-","BNBROTCWKGRRKT-UHFFFAOYSA-N","BrC1=CC(Br)=C(Br)C=C1C1=CC=CC=C1","C12H7Br3","390.9","25","flameRetardant","PBB",NA +10912,"59080-33-0","DTXSID5074767","PBB 030","YCLZBYQDXVJFII-UHFFFAOYSA-N","BrC1=CC(Br)=C(C(Br)=C1)C1=CC=CC=C1","C12H7Br3","390.9","35","flameRetardant","PBB",NA +10913,"59080-36-3","DTXSID0074768","PBB 031","VQAOFEQEGKHRBC-UHFFFAOYSA-N","BrC1=CC=C(C=C1)C1=C(Br)C=CC(Br)=C1","C12H7Br3","390.9","23","flameRetardant","PBB",NA +10914,"60044-25-9","DTXSID5074769","PBB 053","IMEYSCIEAFLSQJ-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=C(Br)C=CC=C1Br","C12H6Br4","469.796","27","flameRetardant","PBB",NA +10915,"77102-82-0","DTXSID4074770","PBB 077","BVGDXTYHVRFEQZ-UHFFFAOYSA-N","BrC1=C(Br)C=C(C=C1)C1=CC(Br)=C(Br)C=C1","C12H6Br4","469.796","27","flameRetardant","PBB",NA +10916,"16400-50-3","DTXSID0075108","1,1'-Biphenyl, 3,3',5,5'-tetrabromo-","FXJXZYWFJAXIJX-UHFFFAOYSA-N","BrC1=CC(=CC(Br)=C1)C1=CC(Br)=CC(Br)=C1","C12H6Br4","469.796","71","flameRetardant","PBB",NA +10917,"96551-70-1","DTXSID20242324","1,1'-Biphenyl, 2,3,4,4',5-pentabromo-","BUBFPVURMRYUJF-UHFFFAOYSA-N","BrC1=CC=C(C=C1)C1=CC(Br)=C(Br)C(Br)=C1Br","C12H5Br5","548.692","13","flameRetardant","PBB",NA +10918,"13684-56-5","DTXSID0034518","Desmedipham","WZJZMXBKUWKXTQ-UHFFFAOYSA-N","CCOC(=O)NC1=CC(OC(=O)NC2=CC=CC=C2)=CC=C1","C16H16N2O4","300.314","73","pesticide","Unclassified",NA +10919,"1825-21-4","DTXSID2021103","Pentachloroanisole","BBABSCYTNHOKOG-UHFFFAOYSA-N","COC1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C7H3Cl5O","280.35","63","pesticide","Unclassified",NA +10920,"502-55-6","DTXSID2041672","Diethyl dithiobis(thionoformate)","FVIGODVHAVLZOO-UHFFFAOYSA-N","CCOC(=S)SSC(=S)OCC","C6H10O2S4","242.38","74","pesticide","Unclassified",NA +10921,"2686-99-9","DTXSID1040322","3,4,5-Trimethylphenyl methylcarbamate","AUQAUAIUNJIIEP-UHFFFAOYSA-N","CNC(=O)OC1=CC(C)=C(C)C(C)=C1","C11H15NO2","193.246","46","pesticide","Unclassified",NA +10922,"1967-16-4","DTXSID6041769","Chlorbufam","ULBXWWGWDPVHAO-UHFFFAOYSA-N","CC(OC(=O)NC1=CC(Cl)=CC=C1)C#C","C11H10ClNO2","223.66","40","pesticide","Unclassified",NA +10923,"4841-20-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10924,"33693-04-8","DTXSID1042445","Terbumeton","BCQMBFHBDZVHKU-UHFFFAOYSA-N","CCNC1=NC(OC)=NC(NC(C)(C)C)=N1","C10H19N5O","225.296","45","pesticide","Unclassified",NA +10925,"7286-84-2","DTXSID1041762","Chloramben-methyl","DTSSCQVCVYZGSI-UHFFFAOYSA-N","COC(=O)C1=CC(Cl)=CC(N)=C1Cl","C8H7Cl2NO2","220.05","53","pesticide","Unclassified",NA +10926,"5903-13-9","DTXSID1058139","MNAF","ADRPZEYTIFWCBC-UHFFFAOYSA-N","CN(C(=O)CF)C1=CC=CC2=CC=CC=C12","C13H12FNO","217.243","19","pesticide","PAH",NA +10927,"30979-48-7","DTXSID70184967","N-Isobutyl-2-oxo-1-imidazolidinecarboxamide","SBYAVOHNDJTVPA-UHFFFAOYSA-N","CC(C)CNC(=O)N1CCNC1=O","C8H15N3O2","185.227","45","pesticide","Unclassified",NA +10928,"2163-69-1","DTXSID8041824","Cycluron","DQZCVNGCTZLGAQ-UHFFFAOYSA-N","CN(C)C(=O)NC1CCCCCCC1","C11H22N2O","198.31","43","pesticide","Unclassified",NA +10929,"131-16-8","DTXSID5031133","Di-n-propylphthalate","MQHNKCZKNAJROC-UHFFFAOYSA-N","CCCOC(=O)C1=C(C=CC=C1)C(=O)OCCC","C14H18O4","250.294","103","pharmacological;industrial","Unclassified",NA +10930,"2636-26-2","DTXSID0041806","Cyanophos","SCKHCCSZFPSHGR-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC=C(C=C1)C#N","C9H10NO3PS","243.22","66","pesticide","Unclassified",NA +10931,"57369-32-1","DTXSID6058132","Pyroquilon","XRJLAOUDSILTFT-UHFFFAOYSA-N","O=C1CCC2=C3N1CCC3=CC=C2","C11H11NO","173.215","68","pesticide","Unclassified",NA +10932,"1912-26-1","DTXSID2042488","Trietazine","HFBWPRKWDIRYNX-UHFFFAOYSA-N","CCNC1=NC(Cl)=NC(=N1)N(CC)CC","C9H16ClN5","229.71","47","pesticide","Unclassified",NA +10933,"944-22-9","DTXSID2024113","Fonofos","KVGLBTYUCJYMND-UHFFFAOYSA-N","CCOP(=S)(CC)SC1=CC=CC=C1","C10H15OPS2","246.32","61","pesticide","Unclassified",NA +10934,"1928-37-6","DTXSID80172875","2,4,5-T-methyl [ISO]","JUCNGUOYQGHBJC-UHFFFAOYSA-N","COC(=O)COC1=CC(Cl)=C(Cl)C=C1Cl","C9H7Cl3O3","269.5","64","pesticide","Unclassified",NA +10935,"57153-18-1","DTXSID30205788","MCPB-methyl [ISO]","FWDQLSHRVKQKBS-UHFFFAOYSA-N","COC(=O)CCCOC1=C(C)C=C(Cl)C=C1","C12H15ClO3","242.7","39","pesticide","Unclassified",NA +10936,"26399-36-0","DTXSID2044559","Profluralin","ITVQAKZNYJEWKS-UHFFFAOYSA-N","CCCN(CC1CC1)C1=C(C=C(C=C1[N+]([O-])=O)C(F)(F)F)[N+]([O-])=O","C14H16F3N3O4","347.294","40","pesticide","Unclassified",NA +10937,"1420-07-1","DTXSID7041883","Dinoterb","IIPZYDQGBIWLBU-UHFFFAOYSA-N","CC(C)(C)C1=CC(=CC(=C1O)[N+]([O-])=O)[N+]([O-])=O","C10H12N2O5","240.215","62","pesticide","Unclassified",NA +10938,"83-26-1","DTXSID1025930","Pindone","RZKYEQDPDZUERB-UHFFFAOYSA-N","CC(C)(C)C(=O)C1C(=O)C2=CC=CC=C2C1=O","C14H14O3","230.263","59","pesticide;pesticide","Unclassified",NA +10939,"24691-80-3","DTXSID8058035","Fenfuram","JFSPBVWPKOEZCB-UHFFFAOYSA-N","CC1=C(C=CO1)C(=O)NC1=CC=CC=C1","C12H11NO2","201.225","48","pesticide","Unclassified",NA +10940,"94-79-1","DTXSID60916714","Butan-2-yl (2,4-dichlorophenoxy)acetate","PVVPYVMHXYPBQZ-UHFFFAOYSA-N","CCC(C)OC(=O)COC1=C(Cl)C=C(Cl)C=C1","C12H14Cl2O3","277.14","14","pesticide","Unclassified",NA +10941,"29091-05-2","DTXSID9040265","Dinitramine","OFDYMSKSGFSLLM-UHFFFAOYSA-N","CCN(CC)C1=C(C=C(C(N)=C1[N+]([O-])=O)C(F)(F)F)[N+]([O-])=O","C11H13F3N4O4","322.244","50","pesticide","Unclassified",NA +10942,"16709-30-1","DTXSID10168226","3-Ketocarbofuran","WXNZYYXXILQTKX-UHFFFAOYSA-N","CNC(=O)OC1=CC=CC2=C1OC(C)(C)C2=O","C12H13NO4","235.239","43","pesticide","Unclassified",NA +10943,"38260-54-7","DTXSID7041964","Etrimfos","FGIWFCGDPUIBEZ-UHFFFAOYSA-N","CCOC1=CC(OP(=S)(OC)OC)=NC(CC)=N1","C10H17N2O4PS","292.29","54","pesticide","Unclassified",NA +10944,"1715-40-8","DTXSID6041680","Bromociclen","DAASOABUJRMZAD-UHFFFAOYSA-N","ClC1=C(Cl)C2(Cl)C(CBr)CC1(Cl)C2(Cl)Cl","C8H5BrCl6","393.73","48","pesticide","Unclassified",NA +10945,"115-31-1","DTXSID4040266","Thanite","IXEVGHXRXDBAOB-BREBYQMCSA-N","CC1(C)[C@@H]2CC[C@@]1(C)[C@@H](C2)OC(=O)CSC#N","C13H19NO2S","253.36","12","pesticide","Unclassified",NA +10946,"7286-69-3","DTXSID7058171","Sebuthylazine","BZRUVKZGXNSXMB-UHFFFAOYSA-N","CCNC1=NC(NC(C)CC)=NC(Cl)=N1","C9H16ClN5","229.71","39","pesticide","Unclassified",NA +10947,"74782-23-3","DTXSID8052489","Oxabentrinil","YEMRRKGCMRSREH-UHFFFAOYSA-N","C#CC(=NOCC1OCCO1)C1=CC=CC=C1","C13H13NO3","231.251","2","pesticide","Unclassified",NA +10948,"3369-52-6","DTXSID0052704","Endosulfan ether","CKPWHXBGVRURFU-UHFFFAOYSA-N","ClC1=C(Cl)C2(Cl)C3COCC3C1(Cl)C2(Cl)Cl","C9H6Cl6O","342.85","21","pesticide","Unclassified",NA +10949,"26087-47-8","DTXSID7058040","Iprobenfos","FCOAHACKGGIURQ-UHFFFAOYSA-N","CC(C)OP(=O)(OC(C)C)SCC1=CC=CC=C1","C13H21O3PS","288.34","60","pesticide","Unclassified",NA +10950,"7287-36-7","DTXSID0042163","Monalide","KXGYBSNVFXBPNO-UHFFFAOYSA-N","CCCC(C)(C)C(=O)NC1=CC=C(Cl)C=C1","C13H18ClNO","239.74","41","pesticide","Unclassified",NA +10951,"3060-89-7","DTXSID6042157","Metobromuron","WLFDQEVORAMCIM-UHFFFAOYSA-N","CON(C)C(=O)NC1=CC=C(Br)C=C1","C9H11BrN2O2","259.103","69","pesticide","Unclassified",NA +10952,"527-20-8","DTXSID4037584","Pentachloroaniline","KHCZSJXTDDHLGJ-UHFFFAOYSA-N","NC1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C6H2Cl5N","265.34","96","pesticide","aniline",NA +10953,"2540-82-1","DTXSID4041991","Formothion","AIKKULXCBHRFOS-UHFFFAOYSA-N","COP(=S)(OC)SCC(=O)N(C)C=O","C6H12NO4PS2","257.26","52","pesticide","Unclassified",NA +10954,"18625-12-2","DTXSID70171872","Butanoic acid, 4-(2,4-dichlorophenoxy)-, methyl ester","NKXSNMCGZZWMMW-UHFFFAOYSA-N","COC(=O)CCCOC1=C(Cl)C=C(Cl)C=C1","C11H12Cl2O3","263.11","79","pesticide","Unclassified",NA +10955,"60568-05-0","DTXSID2024119","Furmecyclox","QTDRLOKFLJJHTG-UHFFFAOYSA-N","CON(C1CCCCC1)C(=O)C1=C(C)OC(C)=C1","C14H21NO3","251.326","41","pesticide","Unclassified",NA +10956,"6099-79-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10957,"34681-23-7","DTXSID0041698","Butoxycarboxim","CTJBHIROCMPUKL-WEVVVXLNSA-N","CNC(=O)O\N=C(/C)C(C)S(C)(=O)=O","C7H14N2O4S","222.26","28","pesticide","Unclassified",NA +10958,"575-36-0","DTXSID5060358","Acetamide, N-1-naphthalenyl-","OKQIEBVRUGLWOR-UHFFFAOYSA-N","CC(=O)NC1=CC=CC2=CC=CC=C12","C12H11NO","185.226","89",NA,"PAH",NA +10959,"68505-69-1","DTXSID8058160","Benfuresate","QGQSRQPXXMTJCM-UHFFFAOYSA-N","CCS(=O)(=O)OC1=CC2=C(OCC2(C)C)C=C1","C12H16O4S","256.32","44","pesticide","Unclassified",NA +10960,"1014-69-3","DTXSID6041842","Desmetryn","HCRWJJJUKUVORR-UHFFFAOYSA-N","CNC1=NC(SC)=NC(NC(C)C)=N1","C8H15N5S","213.3","47","pesticide","Unclassified",NA +10961,"1918-13-4","DTXSID4041783","Chlorthiamid","KGKGSIUWJCAFPX-UHFFFAOYSA-N","NC(=S)C1=C(Cl)C=CC=C1Cl","C7H5Cl2NS","206.08","84","pesticide","Unclassified",NA +10962,"97-17-6","DTXSID8040274","Dichlofenthion","WGOWCPGHOCIHBW-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC=C(Cl)C=C1Cl","C10H13Cl2O3PS","315.14","61","pesticide","Unclassified",NA +10963,"50563-36-5","DTXSID3058111","Dimethachlor","SCCDDNKJYDZXMM-UHFFFAOYSA-N","COCCN(C(=O)CCl)C1=C(C)C=CC=C1C","C13H18ClNO2","255.74","49","pesticide","Unclassified",NA +10964,"22936-86-3","DTXSID6040294","2- Chloro-4-cyclopropylamino-6-isopropylamino-s-triazine","OOHIAOSLOGDBCE-UHFFFAOYSA-N","CC(C)NC1=NC(Cl)=NC(NC2CC2)=N1","C9H14ClN5","227.7","38","pesticide","Unclassified",NA +10965,"74712-19-9","DTXSID2058176","Bromobutide","WZDDLAZXUYIVMU-UHFFFAOYSA-N","CC(C)(C)C(Br)C(O)=NC(C)(C)C1=CC=CC=C1","C15H22BrNO","312.251","49","pesticide","Unclassified",NA +10966,"2275-18-5","DTXSID8037627","Prothoate","QTXHFDHVLBDJIO-UHFFFAOYSA-N","CCOP(=S)(OCC)SCC(=O)NC(C)C","C9H20NO3PS2","285.36","41","pesticide","Unclassified",NA +10967,"61592-45-8","DTXSID80346332","Bentazon methyl","XFTQFXBQDVWOCY-UHFFFAOYSA-N","CC(C)N1C(=O)C2=CC=CC=C2N(C)S1(=O)=O","C11H14N2O3S","254.3","27","pesticide","Unclassified",NA +10968,"3878-19-1","DTXSID4041995","Fuberidazole","UYJUZNLFJAWNEZ-UHFFFAOYSA-N","N1C2=CC=CC=C2N=C1C1=CC=CO1","C11H8N2O","184.198","85","pesticide","Unclassified",NA +10969,"21757-82-4","DTXSID20865012","2,2,2-Trichloro-1-(3,4-dichlorophenyl)ethyl acetate","FSGNOVKGEXRRHD-UHFFFAOYSA-N","CC(=O)OC(C1=CC(Cl)=C(Cl)C=C1)C(Cl)(Cl)Cl","C10H7Cl5O2","336.41","44","pesticide","Unclassified",NA +10970,"1918-11-2","DTXSID1042441","Terbucarb","PNRAZZZISDRWMV-UHFFFAOYSA-N","CNC(=O)OC1=C(C=C(C)C=C1C(C)(C)C)C(C)(C)C","C17H27NO2","277.408","36","pesticide","Unclassified",NA +10971,"2164-09-2","DTXSID2020424","Chloranocryl","VCBRBUKGTWLJOB-UHFFFAOYSA-N","CC(=C)C(=O)NC1=CC=C(Cl)C(Cl)=C1","C10H9Cl2NO","230.09","49","pesticide","Unclassified",NA +10972,"57018-04-9","DTXSID0034776","Tolclofos-methyl","OBZIQQJJIKNWNO-UHFFFAOYSA-N","COP(=S)(OC)OC1=C(Cl)C=C(C)C=C1Cl","C9H11Cl2O3PS","301.12","74","pesticide","Unclassified",NA +10973,"93-72-1","DTXSID0021387","2-(2,4,5-Trichlorophenoxy)propionic acid","ZLSWBLPERHFHIS-UHFFFAOYSA-N","CC(OC1=C(Cl)C=C(Cl)C(Cl)=C1)C(O)=O","C9H7Cl3O3","269.5","77","pesticide","Unclassified",NA +10974,"34123-59-6","DTXSID1042077","Isoproturon","PUIYMUZLKQOUOZ-UHFFFAOYSA-N","CC(C)C1=CC=C(NC(=O)N(C)C)C=C1","C12H18N2O","206.289","95","pesticide","Unclassified",NA +10975,"1216-44-0","DTXSID5034729","Flurenol-methyl","AJKQZRAAQMBNKM-UHFFFAOYSA-N","COC(=O)C1(O)C2=C(C=CC=C2)C2=C1C=CC=C2","C15H12O3","240.258","74","pesticide","Unclassified",NA +10976,"644-64-4","DTXSID2041880","Dimetilan","RDBIYWSVMRVKSG-UHFFFAOYSA-N","CN(C)C(=O)OC1=NN(C(=O)N(C)C)C(C)=C1","C10H16N4O3","240.263","45","pesticide","Unclassified",NA +10977,"58138-08-2","DTXSID8024365","Tridiphane","IBZHOAONZVJLOB-UHFFFAOYSA-N","ClC1=CC(=CC(Cl)=C1)C1(CC(Cl)(Cl)Cl)CO1","C10H7Cl5O","320.42","35","pesticide","Unclassified",NA +10978,"301-12-2","DTXSID8025541","Oxydemeton-methyl","PMCVMORKVPSKHZ-UHFFFAOYSA-N","CCS(=O)CCSP(=O)(OC)OC","C6H15O4PS2","246.28","81","pesticide","Unclassified",NA +10979,"311-45-5","DTXSID6024046","Paraoxon","WYMSBXTXOHUIGT-UHFFFAOYSA-N","CCOP(=O)(OCC)OC1=CC=C(C=C1)[N+]([O-])=O","C10H14NO6P","275.197","92","pharmacological;pesticide","Unclassified",NA +10980,"2813-95-8","DTXSID3074816","Dinoseb acetate","RDJTWDKSYLLHRW-UHFFFAOYSA-N","CCC(C)C1=C(OC(C)=O)C(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O","C12H14N2O6","282.252","43","pesticide","Unclassified",NA +10981,"86-86-2","DTXSID3020914","1-Naphthaleneacetamide","XFNJVKMNNVCYEK-UHFFFAOYSA-N","NC(=O)CC1=C2C=CC=CC2=CC=C1","C12H11NO","185.226","132","pesticide","PAH",NA +10982,"17040-19-6","DTXSID4037582","Demeton-S-methylsulphon","PZIRJMYRYORVIT-UHFFFAOYSA-N","CCS(=O)(=O)CCSP(=O)(OC)OC","C6H15O5PS2","262.27","47","pesticide","Unclassified",NA +10983,"64529-56-2","DTXSID1041926","Ethiozin","ADZSGNDOZREKJK-UHFFFAOYSA-N","CCSC1=NN=C(C(=O)N1N)C(C)(C)C","C9H16N4OS","228.31","35","pesticide","Unclassified",NA +10984,"14143-55-6",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10985,"1689-83-4","DTXSID8022161","Ioxynil","NRXQIUSYPAHGNM-UHFFFAOYSA-N","OC1=C(I)C=C(C=C1I)C#N","C7H3I2NO","370.916","85","pesticide","Unclassified",NA +10986,"3204-27-1","DTXSID50185856","Dinoterb acetate [ISO]","BMJYKXALMDAIEG-UHFFFAOYSA-N","CC(=O)OC1=C(C=C(C=C1C(C)(C)C)[N+]([O-])=O)[N+]([O-])=O","C12H14N2O6","282.252","34","pesticide;pesticide","Unclassified",NA +10987,"2797-51-5","DTXSID1041390","2-Amino-3-chloro-1,4-naphthoquinone","OBLNWSCLAYSJJR-UHFFFAOYSA-N","NC1=C(Cl)C(=O)C2=C(C=CC=C2)C1=O","C10H6ClNO2","207.61","113","pesticide;pesticide","OPAH",NA +10988,"2307-68-8","DTXSID3042265","Pentanochlor","WGVWLKXZBUVUAM-UHFFFAOYSA-N","CCCC(C)C(=O)NC1=CC=C(C)C(Cl)=C1","C13H18ClNO","239.74","50","pesticide","Unclassified",NA +10989,"85785-20-2","DTXSID2058201","Esprocarb","BXEHUCNTIZGSOJ-UHFFFAOYSA-N","CCN(C(C)C(C)C)C(=O)SCC1=CC=CC=C1","C15H23NOS","265.42","43","pesticide","Unclassified",NA +10990,"27605-76-1","DTXSID7058048","Probenazole","WHHIPMZEDGBUCC-UHFFFAOYSA-N","C=CCOC1=NS(=O)(=O)C2=CC=CC=C12","C10H9NO3S","223.25","74","pesticide","Unclassified",NA +10991,"15545-48-9","DTXSID8052853","Chlorotoluron","JXCGFZXSOMJFOA-UHFFFAOYSA-N","CN(C)C(=O)NC1=CC(Cl)=C(C)C=C1","C10H13ClN2O","212.68","92","pesticide","Unclassified",NA +10992,"1085-98-9","DTXSID5041851","Dichlofluanid","WURGXGVFSMYFCG-UHFFFAOYSA-N","CN(C)S(=O)(=O)N(SC(F)(Cl)Cl)C1=CC=CC=C1","C9H11Cl2FN2O2S2","333.22","76","pesticide","Unclassified",NA +10993,"919-76-6","DTXSID2041595","Amidithion","GDTZUQIYUMGJRT-UHFFFAOYSA-N","COCCNC(=O)CSP(=S)(OC)OC","C7H16NO4PS2","273.3","30","pesticide","Unclassified",NA +10994,"4147-51-7","DTXSID9037533","Dipropetryn","NPWMZOGDXOFZIN-UHFFFAOYSA-N","CCSC1=NC(NC(C)C)=NC(NC(C)C)=N1","C11H21N5S","255.38","40","pesticide","Unclassified",NA +10995,"42588-37-4","DTXSID3032624","Kinoprene","FZRBKIRIBLNOAM-WHVZTFIZSA-N","CC(C)CCCC(C)C\C=C\C(\C)=C\C(=O)OCC#C","C18H28O2","276.42","39","pesticide","Unclassified",NA +10996,"87130-20-9","DTXSID5037527","Diethofencarb","LNJNFVJKDJYTEU-UHFFFAOYSA-N","CCOC1=CC=C(NC(=O)OC(C)C)C=C1OCC","C14H21NO4","267.325","79","pesticide","Unclassified",NA +10997,"67628-93-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +10998,"90-98-2","DTXSID3037626","4,4'-Dichlorobenzophenone","OKISUZLXOYGIFP-UHFFFAOYSA-N","ClC1=CC=C(C=C1)C(=O)C1=CC=C(Cl)C=C1","C13H8Cl2O","251.11","134","pesticide","Unclassified",NA +10999,"3244-90-4","DTXSID6032510","Aspon","IIDFEIDMIKSJSV-UHFFFAOYSA-N","CCCOP(=S)(OCCC)OP(=S)(OCCC)OCCC","C12H28O5P2S2","378.42","35","pesticide","Unclassified",NA +11000,"67564-91-4","DTXSID4034601","(2R,6S)-Fenpropimorph","RYAUSSKQMZRMAI-ALOPSCKCSA-N","CC(CN1C[C@H](C)O[C@H](C)C1)CC1=CC=C(C=C1)C(C)(C)C","C20H33NO","303.49","52","pesticide","Unclassified",NA +11001,"57052-04-7","DTXSID7042067","Isomethiozin","MZTLOILRKLUURT-NTUHNPAUSA-N","CSC1=NN=C(C(=O)N1\N=C\C(C)C)C(C)(C)C","C12H20N4OS","268.38","25","pesticide","Unclassified",NA +11002,"67888-96-4","DTXSID50218113","1,1'-Biphenyl, 2,2',4,5,5'-pentabromo-","OELBLPCWLAWABI-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=CC(Br)=C(Br)C=C1Br","C12H5Br5","548.692","24","flameRetardant","PBB",NA +11002,"67888-96-4","DTXSID50218113","1,1'-Biphenyl, 2,2',4,5,5'-pentabromo-","OELBLPCWLAWABI-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=CC(Br)=C(Br)C=C1Br","C12H5Br5","548.692","24","flameRetardant","PBB",NA +11003,"59080-39-6","DTXSID9074771","PBB 103","NVKQKAZYUPPRJX-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=C(Br)C=C(Br)C=C1Br","C12H5Br5","548.692","29","flameRetardant","PBB",NA +11004,"81381-52-4","DTXSID50231069","1,1'-Biphenyl, 2,2',3,4,4',5-hexabromo-","YDEZWWIXWTUKGY-UHFFFAOYSA-N","BrC1=CC(Br)=C(C=C1)C1=CC(Br)=C(Br)C(Br)=C1Br","C12H4Br6","627.588","11","flameRetardant","PBB",NA +11005,"120991-47-1","DTXSID70153092","1,2,3,4-Tetrabromo-5-(2,5-dibromophenyl)benzene","RBEVZFMPNHHLPP-UHFFFAOYSA-N","BrC1=CC(=C(Br)C=C1)C1=CC(Br)=C(Br)C(Br)=C1Br","C12H4Br6","627.588","10","flameRetardant","PBB",NA +11006,"59080-40-9","DTXSID70858838","2,2',4,4',5,5'-Hexabromobiphenyl","HMBBJSKXDBUNNT-UHFFFAOYSA-N","BrC1=CC(Br)=C(C=C1Br)C1=C(Br)C=C(Br)C(Br)=C1","C12H4Br6","627.588","41","flameRetardant","PBB",NA +11007,"60044-24-8","DTXSID60866785","2,2',4,5'-Tetrabromo-1,1'-biphenyl","LUASYBWZXWTYKK-UHFFFAOYSA-N","BrC1=CC=C(C(Br)=C1)C1=CC(Br)=CC=C1Br","C12H6Br4","469.796","28","flameRetardant","PBB",NA +11008,"59261-08-4","DTXSID4074772","PBB 155","LNFYSRMCCKKDEH-UHFFFAOYSA-N","BrC1=CC(Br)=C(C(Br)=C1)C1=C(Br)C=C(Br)C=C1Br","C12H4Br6","627.588","38","flameRetardant","PBB",NA +11009,"77607-09-1","DTXSID10228273","2,3,3',4,4',5-Hexabromobiphenyl","LSUMPCYLOQMSTJ-UHFFFAOYSA-N","BrC1=C(Br)C=C(C=C1)C1=CC(Br)=C(Br)C(Br)=C1Br","C12H4Br6","627.588","16","flameRetardant","PBB",NA +11010,"120991-48-2","DTXSID30153093","1,1'-Biphenyl, 2,3,3',4,5,5'-hexabromo-","SBPKBQJLKKDLLR-UHFFFAOYSA-N","BrC1=CC(=CC(Br)=C1)C1=CC(Br)=C(Br)C(Br)=C1Br","C12H4Br6","627.588","12","flameRetardant","PBB",NA +11011,"60044-26-0","DTXSID10208772","3,3',4,4',5,5'-Hexabromobiphenyl","UXOOFXUEODCAIP-UHFFFAOYSA-N","BrC1=CC(=CC(Br)=C1Br)C1=CC(Br)=C(Br)C(Br)=C1","C12H4Br6","627.588","40","flameRetardant","PBB",NA +11011,"60044-26-0","DTXSID10208772","3,3',4,4',5,5'-Hexabromobiphenyl","UXOOFXUEODCAIP-UHFFFAOYSA-N","BrC1=CC(=CC(Br)=C1Br)C1=CC(Br)=C(Br)C(Br)=C1","C12H4Br6","627.588","40","flameRetardant","PBB",NA +11012,"67733-52-2","DTXSID70218014","1,1'-Biphenyl, 2,2',3,4,4',5,5'-heptabromo-","RPGHQOFAFNAVNA-UHFFFAOYSA-N","BrC1=CC(Br)=C(Br)C=C1C1=CC(Br)=C(Br)C(Br)=C1Br","C12H3Br7","706.484","15","flameRetardant","PBB",NA +11013,"88700-06-5","DTXSID00237253","1,1'-Biphenyl, 2,3,3',4,4',5,5'-heptabromo-","JXWDAVSERCQYSS-UHFFFAOYSA-N","BrC1=CC(=CC(Br)=C1Br)C1=CC(Br)=C(Br)C(Br)=C1Br","C12H3Br7","706.484","21","flameRetardant","PBB",NA +11014,"119264-60-7","DTXSID20152373","2,2',3,3',4,5',6,6'-Octabromobiphenyl","XWEDREXJLOGPJT-UHFFFAOYSA-N","BrC1=CC(Br)=C(Br)C(=C1Br)C1=C(Br)C(Br)=C(Br)C=C1Br","C12H2Br8","785.38","15","flameRetardant","PBB",NA +11015,"591-20-8","DTXSID9060449","Phenol, 3-bromo-","MNOJRWOWILAHAV-UHFFFAOYSA-N","OC1=CC(Br)=CC=C1","C6H5BrO","173.009","152","flameRetardant","phenol",NA +11016,"106-41-2","DTXSID3051543","4-Bromophenol","GZFGOTFRPZRKDS-UHFFFAOYSA-N","OC1=CC=C(Br)C=C1","C6H5BrO","173.009","169","flameRetardant","phenol",NA +11017,"57383-80-9",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"flameRetardant","phenol",NA +11018,"615-58-7","DTXSID1052290","2,4-Dibromophenol","FAXWFCTVSHEODL-UHFFFAOYSA-N","OC1=C(Br)C=C(Br)C=C1","C6H4Br2O","251.905","135","flameRetardant","phenol",NA +11019,"28165-52-8","DTXSID40182430","2,5-Dibromophenol","GUXWVUVLXIJHQF-UHFFFAOYSA-N","OC1=C(Br)C=CC(Br)=C1","C6H4Br2O","251.905","111","flameRetardant","phenol",NA +11020,"608-33-3","DTXSID0060561","Phenol, 2,6-dibromo-","SSIZLKDLDKIHEV-UHFFFAOYSA-N","OC1=C(Br)C=CC=C1Br","C6H4Br2O","251.905","145","flameRetardant","phenol",NA +11021,"626-41-5","DTXSID70211646","Phenol, 3,5-dibromo-","PZFMWYNHJFZBPO-UHFFFAOYSA-N","OC1=CC(Br)=CC(Br)=C1","C6H4Br2O","251.905","126","flameRetardant","phenol",NA +11022,"138507-65-0","DTXSID20275011","Phenol, tribromo-","OUCSIUCEQVCDEL-UHFFFAOYSA-N","OC1=C(Br)C(Br)=C(Br)C=C1","C6H3Br3O","330.801","21","flameRetardant","phenol",NA +11023,"578-57-4","DTXSID4060367","Benzene, 1-bromo-2-methoxy-","HTDQSWDEWGSAMN-UHFFFAOYSA-N","COC1=C(Br)C=CC=C1","C7H7BrO","187.036","136","industrial","Unclassified",NA +11024,"2398-37-0","DTXSID4044618","1-Bromo-3-methoxybenzene","PLDWAJLZAAHOGG-UHFFFAOYSA-N","COC1=CC(Br)=CC=C1","C7H7BrO","187.036","151","industrial","Unclassified",NA +11025,"104-92-7","DTXSID2059308","Benzene, 1-bromo-4-methoxy-","QJPJQTDYNZXKQF-UHFFFAOYSA-N","COC1=CC=C(Br)C=C1","C7H7BrO","187.036","138","industrial","Unclassified",NA +11026,"95970-22-2","DTXSID30474715","2,3-Dibromoanisole","KMUOJHYDIKYRQO-UHFFFAOYSA-N","COC1=C(Br)C(Br)=CC=C1","C7H6Br2O","265.932","46","industrial","Unclassified",NA +11027,"21702-84-1","DTXSID2074827","Benzene, 2,4-dibromo-1-methoxy-","XGXUGXPKRBQINS-UHFFFAOYSA-N","COC1=C(Br)C=C(Br)C=C1","C7H6Br2O","265.932","95","industrial","Unclassified",NA +11028,"95970-08-4","DTXSID10539376","1,4-Dibromo-2-methoxybenzene","YJGNTPRGNRICPY-UHFFFAOYSA-N","COC1=C(Br)C=CC(Br)=C1","C7H6Br2O","265.932","74","industrial","Unclassified",NA +11029,"38603-09-7","DTXSID40191921","Benzene, 1,3-dibromo-2-methoxy-","BMZVDHQOAJUZJL-UHFFFAOYSA-N","COC1=C(Br)C=CC=C1Br","C7H6Br2O","265.932","100","industrial","Unclassified",NA +11030,"74137-36-3","DTXSID20452264","3,5-Dibromoanisole","OQZAQBGJENJMHT-UHFFFAOYSA-N","COC1=CC(Br)=CC(Br)=C1","C7H6Br2O","265.932","113","industrial","Unclassified",NA +11032,"85-22-3","DTXSID7021782","2,3,4,5,6-Pentabromoethylbenzene","FIAXCDIQXHJNIX-UHFFFAOYSA-N","CCC1=C(Br)C(Br)=C(Br)C(Br)=C1Br","C8H5Br5","500.648","51","flameRetardant","Unclassified",NA +11033,"2463-84-5","DTXSID0041850","Dicapthon","OTKXWJHPGBRXCR-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC=C(C=C1Cl)[N+]([O-])=O","C8H9ClNO5PS","297.65","43","pesticide","Unclassified",NA +11034,"297-78-9","DTXSID3021306","Isobenzan","LRWHHSXTGZSMSN-UHFFFAOYSA-N","ClC1OC(Cl)C2C1C1(Cl)C(Cl)=C(Cl)C2(Cl)C1(Cl)Cl","C9H4Cl8O","411.73","41","pesticide","Unclassified",NA +11035,"28730-17-8","DTXSID8042137","Methfuroxam","ZWJNEYVWPYIKMB-UHFFFAOYSA-N","CC1=C(C)C(C(=O)NC2=CC=CC=C2)=C(C)O1","C14H15NO2","229.279","46","pesticide","Unclassified",NA +11036,"16118-49-3","DTXSID7041756","Carbetamide","AMRQXHFXNZFDCH-SECBINFHSA-N","CCNC(=O)[C@@H](C)OC(=O)NC1=CC=CC=C1","C12H16N2O3","236.271","38","pesticide","Unclassified",NA +11037,"36756-79-3","DTXSID6034425","Tiocarbazil","PHSUVQBHRAWOQD-UHFFFAOYSA-N","CCC(C)N(C(C)CC)C(=O)SCC1=CC=CC=C1","C16H25NOS","279.44","32","pesticide","Unclassified",NA +11038,"80-38-6","DTXSID6041973","Fenson","SPJOZZSIXXJYBT-UHFFFAOYSA-N","ClC1=CC=C(OS(=O)(=O)C2=CC=CC=C2)C=C1","C12H9ClO3S","268.71","54","pesticide","Unclassified",NA +11039,"500-28-7","DTXSID9041784","Chlorthion","NZNRRXXETLSZRO-UHFFFAOYSA-N","COP(=S)(OC)OC1=CC=C(C(Cl)=C1)[N+]([O-])=O","C8H9ClNO5PS","297.65","38","pesticide","Unclassified",NA +11040,"27355-22-2","DTXSID2058045","Fthalide","NMWKWBPNKPGATC-UHFFFAOYSA-N","ClC1=C(Cl)C(Cl)=C(Cl)C2=C1COC2=O","C8H2Cl4O2","271.9","60","pesticide","Unclassified",NA +11041,"10552-74-6","DTXSID5037579","Nitrothal-isopropyl","VJAWBEFMCIINFU-UHFFFAOYSA-N","CC(C)OC(=O)C1=CC(=CC(=C1)C(=O)OC(C)C)[N+]([O-])=O","C14H17NO6","295.291","45","pesticide","Unclassified",NA +11042,"5707-69-7","DTXSID3041908","Drazoxolon","OOTHTARUZHONSW-LCYFTJDESA-N","CC1=NOC(=O)\C1=N/NC1=CC=CC=C1Cl","C10H8ClN3O2","237.64","62","pesticide","Unclassified",NA +11043,"299-86-5","DTXSID1037515","Crufomate","BOFHKBLZOYVHSI-UHFFFAOYSA-N","CNP(=O)(OC)OC1=CC=C(C=C1Cl)C(C)(C)C","C12H19ClNO3P","291.71","56","pesticide","Unclassified",NA +11044,"1593-77-7","DTXSID5041019","Dodemorph","JMXKCYUTURMERF-UHFFFAOYSA-N","CC1CN(CC(C)O1)C1CCCCCCCCCCC1","C18H35NO","281.484","44","pesticide","Unclassified",NA +11045,"61213-25-0","DTXSID0041987","Flurochloridone","OQZCSNDVOWYALR-UHFFFAOYSA-N","FC(F)(F)C1=CC=CC(=C1)N1CC(CCl)C(Cl)C1=O","C12H10Cl2F3NO","312.11","88","pesticide","Unclassified",NA +11046,"10544-50-0","DTXSID80872924","Octasulfur","JLQNHALFVCURHW-UHFFFAOYSA-N","S1SSSSSSS1","S8","256.48","67","natural;pesticide","Unclassified",NA +11047,"24691-76-7","DTXSID50179432","3,4-Dihydro-6-methyl-N-phenyl-2H-pyran-5-carboxamide","YPCALTGLHFLNGA-UHFFFAOYSA-N","CC1=C(CCCO1)C(=O)NC1=CC=CC=C1","C13H15NO2","217.268","35","pesticide","Unclassified",NA +11048,"2104-96-3","DTXSID1041683","Bromofos","NYQDCVLCJXRDSK-UHFFFAOYSA-N","COP(=S)(OC)OC1=C(Cl)C=C(Br)C(Cl)=C1","C8H8BrCl2O3PS","365.99","64","pesticide","Unclassified",NA +11049,"81-84-5","DTXSID4026505","1H,3H-Naphtho(1,8-cd)pyran-1,3-dione","GRSMWKLPSNHDHA-UHFFFAOYSA-N","O=C1OC(=O)C2=C3C(C=CC=C13)=CC=C2","C12H6O3","198.177","117","industrial;pesticide","PAH",NA +11050,"3868-61-9","DTXSID5052707","Endosulfan lactone","GIUKJJMBQBRFTN-UHFFFAOYSA-N","ClC1=C(Cl)C2(Cl)C3C(COC3=O)C1(Cl)C2(Cl)Cl","C9H4Cl6O2","356.83","18","pesticide","Unclassified",NA +11051,"29082-74-4","DTXSID2021074","Octachlorostyrene","RUYUCCQRWINUHE-UHFFFAOYSA-N","ClC(Cl)=C(Cl)C1=C(Cl)C(Cl)=C(Cl)C(Cl)=C1Cl","C8Cl8","379.69","47","industrial","Unclassified",NA +11052,"23505-41-1","DTXSID5042297","Pirimiphos-ethyl","TZBPRYIIJAJUOY-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CC(C)=NC(=N1)N(CC)CC","C13H24N3O3PS","333.39","43","pesticide","Unclassified",NA +11053,"67129-08-2","DTXSID4058156","Metazachlor","STEPQTYSZVCJPV-UHFFFAOYSA-N","CC1=CC=CC(C)=C1N(CN1C=CC=N1)C(=O)CCl","C14H16ClN3O","277.75","77","pesticide","Unclassified",NA +11054,"40596-69-8","DTXSID8032627","Methoprene","NFGXHKASABOEEW-LDRANXPESA-N","COC(C)(C)CCCC(C)C\C=C\C(\C)=C\C(=O)OC(C)C","C19H34O3","310.478","89","pesticide","Unclassified",NA +11055,"53780-34-0","DTXSID7034709","Mefluidide","OKIBNKKYNPBDRS-UHFFFAOYSA-N","CC(=O)NC1=CC(NS(=O)(=O)C(F)(F)F)=C(C)C=C1C","C11H13F3N2O3S","310.29","41","pesticide","Unclassified",NA +11056,"25059-80-7","DTXSID7041621","Benazolin-ethyl","WQRCEBAZAUAUQC-UHFFFAOYSA-N","CCOC(=O)CN1C(=O)SC2=CC=CC(Cl)=C12","C11H10ClNO3S","271.72","64","pesticide","Unclassified",NA +11057,"13360-45-7","DTXSID6040290","Chlorbromuron","NLYNUTMZTCLNOO-UHFFFAOYSA-N","CON(C)C(=O)NC1=CC(Cl)=C(Br)C=C1","C9H10BrClN2O2","293.55","55","pesticide","Unclassified",NA +11058,"66246-88-6","DTXSID8042260","Penconazole","WKBPZYKAUNRMKP-UHFFFAOYSA-N","CCCC(CN1C=NC=N1)C1=C(Cl)C=C(Cl)C=C1","C13H15Cl2N3","284.18","74","pesticide","Unclassified",NA +11059,"22936-75-0","DTXSID3041873","Dimethametryn","IKYICRRUVNIHPP-UHFFFAOYSA-N","CCNC1=NC(SC)=NC(NC(C)C(C)C)=N1","C11H21N5S","255.38","48","pesticide","Unclassified",NA +11060,"947-02-4","DTXSID1042285","Phosfolan","ILBONRFSLATCRE-UHFFFAOYSA-N","CCOP(=O)(OCC)N=C1SCCS1","C7H14NO3PS2","255.29","44","pesticide","Unclassified",NA +11061,"731-27-1","DTXSID8042478","Tolylfluanid","HYVWIQDYBVKITD-UHFFFAOYSA-N","CN(C)S(=O)(=O)N(SC(F)(Cl)Cl)C1=CC=C(C)C=C1","C10H13Cl2FN2O2S2","347.24","52","pesticide","Unclassified",NA +11062,"88283-41-4","DTXSID2042359","Pyrifenox","CKPCAYZTYMHQEX-UHFFFAOYSA-N","CON=C(CC1=CC=CN=C1)C1=C(Cl)C=C(Cl)C=C1","C14H12Cl2N2O","295.16","26","pesticide","Unclassified",NA +11063,"42609-73-4","DTXSID4058100","Methyldymron","FMINYZXVCTYSNY-UHFFFAOYSA-N","CN(C(=O)NC(C)(C)C1=CC=CC=C1)C1=CC=CC=C1","C17H20N2O","268.36","32","pesticide","Unclassified",NA +11064,"950-10-7","DTXSID0058221","Mephosfolan","LTQSAUHRSCMPLD-UHFFFAOYSA-N","CCOP(=O)(OCC)N=C1SCC(C)S1","C8H16NO3PS2","269.31","23","pesticide","Unclassified",NA +11065,"84332-86-5","DTXSID5058197","Chlozolinate","IGUYEXXAGBDLLX-UHFFFAOYSA-N","CCOC(=O)C1(C)OC(=O)N(C1=O)C1=CC(Cl)=CC(Cl)=C1","C13H11Cl2NO5","332.13","58","pesticide","Unclassified",NA +11066,"25311-71-1","DTXSID8032417","Isofenphos","HOQADATXFBOEGG-UHFFFAOYSA-N","CCOP(=S)(NC(C)C)OC1=CC=CC=C1C(=O)OC(C)C","C15H24NO4PS","345.39","59","pesticide","Unclassified",NA +11067,"1086-02-8","DTXSID7042358","Pyridinitril","OVZITGHGWBXFEA-UHFFFAOYSA-N","ClC1=NC(Cl)=C(C#N)C(C2=CC=CC=C2)=C1C#N","C13H5Cl2N3","274.1","36","pesticide","Unclassified",NA +11068,"13593-03-8","DTXSID7024291","Quinalphos","JYQUHIFYBATCCY-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=CN=C2C=CC=CC2=N1","C12H15N2O3PS","298.3","57","pesticide","Unclassified",NA +11069,"2597-03-7","DTXSID6042280","Phenthoate","XAMUDJHXFNRLCY-UHFFFAOYSA-N","CCOC(=O)C(SP(=S)(OC)OC)C1=CC=CC=C1","C12H17O4PS2","320.36","67","pesticide","Unclassified",NA +11070,"2595-54-2","DTXSID0042117","Mecarbam","KLGMSAOQDHLCOS-UHFFFAOYSA-N","CCOC(=O)N(C)C(=O)CSP(=S)(OCC)OCC","C10H20NO5PS2","329.37","49","pesticide","Unclassified",NA +11071,"103-17-3","DTXSID1041766","Chlorbenside","ZHLKXBJTJHRTTE-UHFFFAOYSA-N","ClC1=CC=C(CSC2=CC=C(Cl)C=C2)C=C1","C13H10Cl2S","269.18","49","pesticide","Unclassified",NA +11072,"2439-01-2","DTXSID2032342","Chinomethionate","FBQQHUGEACOBDN-UHFFFAOYSA-N","CC1=CC2=NC3=C(SC(=O)S3)N=C2C=C1","C10H6N2OS2","234.29","58","pesticide","Unclassified",NA +11073,"57646-30-7","DTXSID4047543","Furalaxyl","CIEXPHRYOLIQQD-UHFFFAOYSA-N","COC(=O)C(C)N(C(=O)C1=CC=CO1)C1=C(C)C=CC=C1C","C17H19NO4","301.342","49","pesticide","Unclassified",NA +11074,"973-21-7","DTXSID4040268","Dinobuton","HDWLUGYOLUHEMN-UHFFFAOYSA-N","CCC(C)C1=CC(=CC(=C1OC(=O)OC(C)C)[N+]([O-])=O)[N+]([O-])=O","C14H18N2O7","326.305","57","pesticide","Unclassified",NA +11075,"2536-31-4","DTXSID4032534","Chlorflurenol-methyl","LINPVWIEWJTEEJ-UHFFFAOYSA-N","COC(=O)C1(O)C2=C(C=CC=C2)C2=C1C=C(Cl)C=C2","C15H11ClO3","274.7","63","pesticide","PAH",NA +11076,"4824-78-6","DTXSID6041684","Bromophos-ethyl","KWGUFOITWDSNQY-UHFFFAOYSA-N","CCOP(=S)(OCC)OC1=C(Cl)C=C(Br)C(Cl)=C1","C10H12BrCl2O3PS","394.04","51","pesticide","Unclassified",NA +11077,"2275-23-2","DTXSID7042510","Vamidothion","LESVOLZBIFDZGS-UHFFFAOYSA-N","CNC(=O)C(C)SCCSP(=O)(OC)OC","C8H18NO4PS2","287.33","68","pesticide;pesticide","Unclassified",NA +11078,"961-11-5","DTXSID1021320","Tetrachlorovinphos","UBCKGWBNUIFUST-UHFFFAOYSA-N","COP(=O)(OC)OC(=CCl)C1=C(Cl)C=C(Cl)C(Cl)=C1","C10H9Cl4O4P","365.95","26","pesticide","Unclassified",NA +11079,"97-16-5","DTXSID5020447","2,4-Dichlorophenyl benzenesulfonate","OZFAFGSSMRRTDW-UHFFFAOYSA-N","ClC1=CC(Cl)=C(OS(=O)(=O)C2=CC=CC=C2)C=C1","C12H8Cl2O3S","303.15","55","pesticide","Unclassified",NA +11080,"76674-21-0","DTXSID8040727","Flutriafol","JWUCHKBSVLQQCO-UHFFFAOYSA-N","OC(CN1C=NC=N1)(C1=CC=C(F)C=C1)C1=C(F)C=CC=C1","C16H13F2N3O","301.297","75","pesticide","Unclassified",NA +11081,"5131-24-8","DTXSID3041902","Ditalimfos","MTBZIGHNGSTDJV-UHFFFAOYSA-N","CCOP(=S)(OCC)N1C(=O)C2=C(C=CC=C2)C1=O","C12H14NO4PS","299.28","40","pesticide","Unclassified",NA +11082,"3278-89-5","DTXSID3044918","1,3,5-Tribromo-2-(prop-2-en-1-yloxy)benzene","RZLLIOPGUFOWOD-UHFFFAOYSA-N","BrC1=CC(Br)=C(OCC=C)C(Br)=C1","C9H7Br3O","370.866","55","flameRetardant","Unclassified",NA +11083,"87-83-2","DTXSID3025833","Pentabromotoluene","OZHJEQVYCBTHJT-UHFFFAOYSA-N","CC1=C(Br)C(Br)=C(Br)C(Br)=C1Br","C7H3Br5","486.621","80","flameRetardant","Unclassified",NA +11084,"2039-86-3","DTXSID60174332","3-Bromostyrene","KQJQPCJDKBKSLV-UHFFFAOYSA-N","BrC1=CC=CC(C=C)=C1","C8H7Br","183.048","120","flameRetardant","Unclassified",NA +11085,"1522-92-5","DTXSID9024641","3-Bromo-2,2-bis(bromomethyl)propanol","QEJPOEGPNIVDMK-UHFFFAOYSA-N","OCC(CBr)(CBr)CBr","C5H9Br3O","324.838","114","flameRetardant","Unclassified",NA +11086,"2039-82-9","DTXSID40174330","4-Bromostyrene","WGGLDBIZIQMEGH-UHFFFAOYSA-N","BrC1=CC=C(C=C)C=C1","C8H7Br","183.048","144","flameRetardant","Unclassified",NA +11087,"39569-21-6","DTXSID50192686","2,3,4,5-Tetrabromo-6-chlorotoluene","WMXWTOJJASZOCL-UHFFFAOYSA-N","CC1=C(Cl)C(Br)=C(Br)C(Br)=C1Br","C7H3Br4Cl","442.17","19","flameRetardant","Unclassified",NA +11088,"3322-93-8","DTXSID8024947","1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane","PQRRSJBLKOPVJV-UHFFFAOYSA-N","BrCC(Br)C1CCC(Br)C(Br)C1","C8H12Br4","427.8","90","flameRetardant","Unclassified",NA +11089,"35109-60-5","DTXSID5052705","1,3,5-Tribromo-2-(2,3-dibromopropoxy)benzene","QXWYPAKUEHGJSG-UHFFFAOYSA-N","BrCC(Br)COC1=C(Br)C=C(Br)C=C1Br","C9H7Br5O","530.674","32","flameRetardant","Unclassified",NA +11091,"4656-58-0",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"flameRetardant","PBDE",NA +11092,"602326-13-6","DTXSID701009355","2-(2,4-Dibromophenoxy)-5-Bromoanisole","IKWXAFNDTMCBJV-UHFFFAOYSA-N","COC1=C(OC2=C(Br)C=C(Br)C=C2)C=CC(Br)=C1","C13H9Br3O2","436.925","8","flameRetardant","PBDE",NA +11093,"106-48-9","DTXSID1021871","4-Chlorophenol","WXNZTHHGJRFXKQ-UHFFFAOYSA-N","OC1=CC=C(Cl)C=C1","C6H5ClO","128.56","226","industrial;pulpAndPaper","phenol",NA +11094,"16766-30-6","DTXSID0074974","Phenol, 4-chloro-2-methoxy-","FVZQMMMRFNURSH-UHFFFAOYSA-N","COC1=C(O)C=CC(Cl)=C1","C7H7ClO2","158.58","96","industrial;pulpAndPaper","Unclassified",NA +11095,"77102-94-4","DTXSID80227894","Phenol, 3,4-dichloro-2-methoxy-","YQDGZRGOCDIQJQ-UHFFFAOYSA-N","COC1=C(O)C=CC(Cl)=C1Cl","C7H6Cl2O2","193.02","19","industrial;pulpAndPaper","Unclassified",NA +11096,"2460-49-3","DTXSID5022192","4,5-Dichloroguaiacol","HAAFFTHBNFBVKY-UHFFFAOYSA-N","COC1=C(O)C=C(Cl)C(Cl)=C1","C7H6Cl2O2","193.02","46","industrial;pulpAndPaper","Unclassified",NA +11097,"16766-31-7","DTXSID30168344","Phenol, 2,4-dichloro-6-methoxy-","RHQIMIYFOSAUQT-UHFFFAOYSA-N","COC1=C(O)C(Cl)=CC(Cl)=C1","C7H6Cl2O2","193.02","21","industrial;pulpAndPaper","Unclassified",NA +NA,"N/A",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"industrial","Unclassified",NA +NA,"N/A",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"flameRetardant","PBDE",NA +NA,"93952-19-3",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","deuterated",NA +NA,"999001-03-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +NA,"1520-96-3",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"flameRetardant","PAH;deuterated",NA +NA,"877-09-8",NA,"Chemical name unknown",NA,NA,NA,NA,NA,"pesticide","Unclassified",NA +NA,"93487-20-8",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"128008-87-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"203805-92-9",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"137219-34-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"OPAH;deuterated",NA +NA,"10439-39-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"OPAH;deuterated",NA +NA,"15067-26-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"93951-97-4",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"63466-71-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"93951-66-7",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"1719-03-5",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"93951-69-0",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"1146-65-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"39485-83-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PCB",NA +NA,"2051-24-3",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PCB",NA +NA,"93952-23-9",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PCB;deuterated",NA +NA,"1517-22-2",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA +NA,"1718-52-1",NA,"Chemical name unknown",NA,NA,NA,NA,NA,NA,"PAH;deuterated",NA diff --git a/zfExp/parseGexData.R b/zfExp/parseGexData.R new file mode 100644 index 0000000..33dc0a9 --- /dev/null +++ b/zfExp/parseGexData.R @@ -0,0 +1,74 @@ +##loadGeneExpressionDAta + +library(readxl) +library(dplyr) +library(tidyr) + +schema<-data.frame(Project=c(), + cas_number=c(), + Conc=c(), + Link=c(), + nGenes=c(), + Chemical_ID=c()) + +tab<-readxl::read_xlsx('./ZF_gex.xlsx',skip=1) + +chem<-read.csv('./chemicals.csv')|> + dplyr::select(Chemical_ID,cas_number)|>distinct() + +ind_res<-tab%>% tidyr::pivot_longer(ends_with("Indication"),names_to='condition',values_to='indication')%>% + dplyr::select(GeneID,Gene,condition,indication)%>% + mutate(condition=stringr::str_remove(condition,'_DEG_Indication')) + +fc_res<-tab%>% + tidyr::pivot_longer(ends_with("Log2FoldChange"),names_to='condition',values_to='Log2FoldChange')%>% + dplyr::select(GeneID,Gene,condition,Log2FoldChange)%>% + mutate(condition=stringr::str_remove(condition,'_Log2FoldChange')) + +pval_res<-tab%>% + tidyr::pivot_longer(ends_with("Adj_p_value"),names_to='condition',values_to='adj_p_value')%>% + dplyr::select(GeneID,Gene,condition,adj_p_value)%>% + mutate(condition=stringr::str_remove(condition,'_Adj_p_value')) + +full_tab<-ind_res%>% + full_join(fc_res)%>% + full_join(pval_res) + + +##differential expression counts for condition +diffex<-full_tab|>subset(indication!=0)|> + group_by(condition)|> + summarize(nGenes=n())|> + tidyr::separate(condition,into=c('control','treatment'),sep='_v_') + +##went into paper, got them from this table +##https://www.mdpi.com/1422-0067/20/10/2570 +treat_names=data.frame(treatment=c('Acenaph_16PAH','BbF_16PAH', 'BjF_16PAH','BkF_16PAH', + 'DBahP_16PAH','DBaiP_16PAH','Fluoran_16PAH','Phenan_16PAH', + 'Retene_16PAH', 'Anthrac_16PAH','Carbazole_16PAH','X3.NF_16PAH', + 'X4H.CPdefP_16PAH','X9.MA_16PAH','X1.uM.Benzo.a.pyrene_PE50_AK','X10.uM.Benzo.a.pyrene_PE50_AK', + 'X10.uM.Dibenzo.a.l..pyrene_PE50_AK','X1.2.uM.Phenanthrene.quinone_PE50_BG', + 'X10.uM.Benz.a.anthracene.7.12.dione_PE50_BG','X10.uM.Benzanthrone_PE50_BG', + 'TCDD_TCDD','BDE.47_FRC','IPP_FRC','TBBPA.DBPE_FRC', + 'TBBPA_FRC','TBPH_FRC','TCEP_FRC','TCPP_FRC', + 'TDBPP_FRC','TPP_FRC','TiBP_FRC'), + Conc=c('50uM','50uM','14.9uM','1.9uM','10uM','5uM','50uM','12.2uM', + '50uM','50uM','1.9uM','16.2uM','50uM','50uM','1uM','10uM', + '10uM','2uM','10uM','10uM','1ng/mL','85uM','19.8uM','4uM', + '4uM','72uM','85uM','85uM','3uM','8uM','158uM'), + cas_number=c('83-32-9','205-99-2','205-82-3','207-8-9','189-64-0','189-55-9','206-44-0','65996-93-2', + '483-65-8','120-12-7','86-74-8','892-21-7','5737-13-3','779-02-2','50-32-8','50-32-8', + '191-30-0','84-11-7','2498-66-0','82-05-3','1746-01-6','5436-43-1','68937-41-7','21850-44-2', + '79-94-7','26040-51-7','115-96-8','13674-84-5','126-72-7','115-86-6','126-71-6')) + +res<-diffex|> + left_join(treat_names)|> + dplyr::select(-c(control,treatment))|> + mutate(Project='Zebrafish',Link=c())|> + left_join(chem) + +##need to get mapping to drug name +write.table(full_tab,file ='srpDEGstats.tsv',sep='\t',quote=F,row.names=F,col.names=T) + + + \ No newline at end of file From 5ffc49d2aa866af5318bf4ba36cd081850d5df1b Mon Sep 17 00:00:00 2001 From: sgosline Date: Fri, 12 May 2023 15:58:41 -0700 Subject: [PATCH 02/12] updated auto build --- .github/workflows/docker-build.yml | 41 ++++++++++++++++-------------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index c27cc7a..0c7b19f 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -14,51 +14,54 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Build and push bmd - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: context: zfBmd push: true tags: sgosline/srp-zfbmd:latest + platforms: linux/amd64,linux/arm64 - name: Build and push bmd2Samps - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: context: bmd2Samps push: true tags: sgosline/srp-bmd2samps:v1 + platforms: linux/amd64,linux/arm64 - name: Build and push version 2 bmd2Samps - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: context: bmd2Samps_v2 push: true tags: sgosline/srp-bmd2samps:latest + platforms: linux/amd64,linux/arm64 - name: Build and push exposome - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: context: exposome push: true - tags: sgosline/srp-exposome:latest + tags: sgosline/srp-exposome:latest + platforms: linux/amd64,linux/arm64 - name: Build and push dbSchema - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: context: dbSchema push: true tags: sgosline/srp-dbschema - #- name: docker pull - # run: "docker pull sgosline/srp-analytics" - #- name: test LPR - # run: "docker run -v $PWD:/tmp sgosline/srp-analytics --test-lpr" - #- name: test morpho - # run: "docker run -v $PWD:/tmp sgosline/srp-analytics --test-morpho" - #- name: build db - # run: "docker run -v $PWD:/tmp sgosline/srp-analytics" - #- name: validate schemas - # run: "docker run -v $PWD:/tmp sgosline/srp-analytics --validate" + platforms: linux/amd64,linux/arm64 + - name: Build and push expression + uses: docker/build-push-action@v3 + with: + context: zfExp + push: tru + tags: sgosline/srp-zfexp + platforms: linux/amd64,linux/arm64 + \ No newline at end of file From a4e56b7c791578473a69179477688baf754fa371 Mon Sep 17 00:00:00 2001 From: sgosline Date: Fri, 12 May 2023 15:59:19 -0700 Subject: [PATCH 03/12] updated build code --- .github/workflows/docker-build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 0c7b19f..28b6256 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -63,5 +63,4 @@ jobs: context: zfExp push: tru tags: sgosline/srp-zfexp - platforms: linux/amd64,linux/arm64 - \ No newline at end of file + platforms: linux/amd64,linux/arm64 \ No newline at end of file From 0ca52c77efa033a1074145303569f688c109d58e Mon Sep 17 00:00:00 2001 From: sgosline Date: Fri, 12 May 2023 16:04:06 -0700 Subject: [PATCH 04/12] updated build script --- buildV3db.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/buildV3db.sh b/buildV3db.sh index 5201107..8cd2637 100644 --- a/buildV3db.sh +++ b/buildV3db.sh @@ -73,6 +73,16 @@ grun="docker run -v "$PWD":/tmp sgosline/srp-exposome" echo $grun $grun +##get the zf expression data +gpull='docker pull sogsline/srp-zfexp' +echo $gpull +$gpull + +grun='docker run -v '$PWD':/tmp sgosline/srp-zfexp' +echo $grun +$grun + + ##then we run morph dpull="docker pull sgosline/srp-zfbmd" echo $dpull From 1ad2c87a977237e7943d520cefd9c6c6730fb3da Mon Sep 17 00:00:00 2001 From: sgosline Date: Fri, 12 May 2023 16:06:30 -0700 Subject: [PATCH 05/12] Update docker-build.yml --- .github/workflows/docker-build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 28b6256..2635357 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -28,39 +28,39 @@ jobs: context: zfBmd push: true tags: sgosline/srp-zfbmd:latest - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64,linux/arm64 - name: Build and push bmd2Samps uses: docker/build-push-action@v3 with: context: bmd2Samps push: true tags: sgosline/srp-bmd2samps:v1 - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64,linux/arm64 - name: Build and push version 2 bmd2Samps uses: docker/build-push-action@v3 with: context: bmd2Samps_v2 push: true tags: sgosline/srp-bmd2samps:latest - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64,linux/arm64 - name: Build and push exposome uses: docker/build-push-action@v3 with: context: exposome push: true - tags: sgosline/srp-exposome:latest - platforms: linux/amd64,linux/arm64 + tags: sgosline/srp-exposome:latest + platforms: linux/amd64,linux/arm64 - name: Build and push dbSchema uses: docker/build-push-action@v3 with: context: dbSchema push: true tags: sgosline/srp-dbschema - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64,linux/arm64 - name: Build and push expression uses: docker/build-push-action@v3 - with: - context: zfExp - push: tru - tags: sgosline/srp-zfexp - platforms: linux/amd64,linux/arm64 \ No newline at end of file + with: + context: zfExp + push: true + tags: sgosline/srp-zfexp + platforms: linux/amd64,linux/arm64 \ No newline at end of file From c7ca6edaf494dbc7aabd2b11744423d333260823 Mon Sep 17 00:00:00 2001 From: sgosline Date: Fri, 12 May 2023 16:28:23 -0700 Subject: [PATCH 06/12] fixing other docker files for M1 processors --- bmd2Samps/Dockerfile | 2 +- bmd2Samps_v2/Dockerfile | 2 +- exposome/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bmd2Samps/Dockerfile b/bmd2Samps/Dockerfile index 6e25442..22c65e6 100644 --- a/bmd2Samps/Dockerfile +++ b/bmd2Samps/Dockerfile @@ -1,4 +1,4 @@ -FROM rocker/tidyverse +FROM bioconductor/bioconductor_docker # To setup other dependencies #COPY setup.sh /setup.sh diff --git a/bmd2Samps_v2/Dockerfile b/bmd2Samps_v2/Dockerfile index a88c7f5..7b2f183 100644 --- a/bmd2Samps_v2/Dockerfile +++ b/bmd2Samps_v2/Dockerfile @@ -1,4 +1,4 @@ -FROM rocker/tidyverse +FROM bioconductor/bioconductor_docker # To setup other dependencies #COPY setup.sh /setup.sh diff --git a/exposome/Dockerfile b/exposome/Dockerfile index 6cf9910..0de21f2 100644 --- a/exposome/Dockerfile +++ b/exposome/Dockerfile @@ -1,4 +1,4 @@ -FROM rocker/tidyverse +FROM bioconductor/bioconductor_docker # To setup other dependencies #COPY setup.sh /setup.sh From 471e01b9759c715cf1528c321ed1a3a44af5a8fc Mon Sep 17 00:00:00 2001 From: sgosline Date: Fri, 12 May 2023 17:00:45 -0700 Subject: [PATCH 07/12] maybe updating will help --- dbSchema/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbSchema/Dockerfile b/dbSchema/Dockerfile index 3f779ef..4da8d3c 100644 --- a/dbSchema/Dockerfile +++ b/dbSchema/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7 +FROM python:3.9 # To setup other dependencies RUN apt-get update -qq && apt-get install -y net-tools \ curl \ From d304e167c1d99bf1237166a4ab2db84c06e9c736 Mon Sep 17 00:00:00 2001 From: sgosline Date: Thu, 18 May 2023 12:13:50 -0700 Subject: [PATCH 08/12] Update parseGexData.R --- zfExp/parseGexData.R | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/zfExp/parseGexData.R b/zfExp/parseGexData.R index 33dc0a9..ceea4cb 100644 --- a/zfExp/parseGexData.R +++ b/zfExp/parseGexData.R @@ -64,11 +64,12 @@ treat_names=data.frame(treatment=c('Acenaph_16PAH','BbF_16PAH', 'BjF_16PAH','BkF res<-diffex|> left_join(treat_names)|> dplyr::select(-c(control,treatment))|> - mutate(Project='Zebrafish',Link=c())|> - left_join(chem) + mutate(Project='Zebrafish',Link='')|> + left_join(chem)|> + dplyr::select(Project,cas_number,Conc,Link,nGenes,Chemical_ID) ##need to get mapping to drug name -write.table(full_tab,file ='srpDEGstats.tsv',sep='\t',quote=F,row.names=F,col.names=T) +write.table(res,file ='srpDEGstats.csv',sep=',',quote=F,row.names=F,col.names=T) \ No newline at end of file From c618423b534fed4fdfeb56c05abcc04124cba180 Mon Sep 17 00:00:00 2001 From: sgosline Date: Thu, 18 May 2023 13:09:12 -0700 Subject: [PATCH 09/12] tried new docker --- dbSchema/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbSchema/Dockerfile b/dbSchema/Dockerfile index 4da8d3c..029548e 100644 --- a/dbSchema/Dockerfile +++ b/dbSchema/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9 +FROM python:3.9-alpine3.18 # To setup other dependencies RUN apt-get update -qq && apt-get install -y net-tools \ curl \ From 97dbd2c54458ae19aab7a61a901ae98e2e10fcc2 Mon Sep 17 00:00:00 2001 From: sgosline Date: Thu, 18 May 2023 13:14:11 -0700 Subject: [PATCH 10/12] Update docker-build.yml --- .github/workflows/docker-build.yml | 130 ++++++++++++++--------------- 1 file changed, 65 insertions(+), 65 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 2635357..1737939 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -1,66 +1,66 @@ -name: Docker-build -defaults: - run: - working-directory: ./ -on: - push: - branches: - - "*" - -jobs: - build-and-push: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Login to DockerHub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_PASSWORD }} - - name: Build and push bmd - uses: docker/build-push-action@v3 - with: - context: zfBmd - push: true - tags: sgosline/srp-zfbmd:latest - platforms: linux/amd64,linux/arm64 - - name: Build and push bmd2Samps - uses: docker/build-push-action@v3 - with: - context: bmd2Samps - push: true - tags: sgosline/srp-bmd2samps:v1 - platforms: linux/amd64,linux/arm64 - - name: Build and push version 2 bmd2Samps - uses: docker/build-push-action@v3 - with: - context: bmd2Samps_v2 - push: true - tags: sgosline/srp-bmd2samps:latest - platforms: linux/amd64,linux/arm64 - - name: Build and push exposome - uses: docker/build-push-action@v3 - with: - context: exposome - push: true - tags: sgosline/srp-exposome:latest - platforms: linux/amd64,linux/arm64 - - name: Build and push dbSchema - uses: docker/build-push-action@v3 - with: - context: dbSchema - push: true - tags: sgosline/srp-dbschema - platforms: linux/amd64,linux/arm64 - - name: Build and push expression - uses: docker/build-push-action@v3 - with: - context: zfExp - push: true - tags: sgosline/srp-zfexp +name: Docker-build +defaults: + run: + working-directory: ./ +on: + push: + branches: + - "*" + +jobs: + build-and-push: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} + - name: Build and push bmd + uses: docker/build-push-action@v3 + with: + context: zfBmd + push: true + tags: sgosline/srp-zfbmd:latest + platforms: linux/amd64,linux/arm64 + - name: Build and push bmd2Samps + uses: docker/build-push-action@v3 + with: + context: bmd2Samps + push: true + tags: sgosline/srp-bmd2samps:v1 + platforms: linux/amd64,linux/arm64 + - name: Build and push version 2 bmd2Samps + uses: docker/build-push-action@v3 + with: + context: bmd2Samps_v2 + push: true + tags: sgosline/srp-bmd2samps:latest + platforms: linux/amd64,linux/arm64 + - name: Build and push exposome + uses: docker/build-push-action@v3 + with: + context: exposome + push: true + tags: sgosline/srp-exposome:latest + platforms: linux/amd64,linux/arm64 +# - name: Build and push dbSchema +# uses: docker/build-push-action@v3 +# with: +# context: dbSchema +# push: true +# tags: sgosline/srp-dbschema +# platforms: linux/amd64,linux/arm64 + - name: Build and push expression + uses: docker/build-push-action@v3 + with: + context: zfExp + push: true + tags: sgosline/srp-zfexp platforms: linux/amd64,linux/arm64 \ No newline at end of file From b0fea780226d3531dc0f8aa46ec2bda4fcbb900e Mon Sep 17 00:00:00 2001 From: sgosline Date: Thu, 18 May 2023 19:12:13 -0700 Subject: [PATCH 11/12] updated --- buildV3db.sh | 14 +++++++++++--- zfExp/parseGexData.R | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/buildV3db.sh b/buildV3db.sh index 8cd2637..773e374 100644 --- a/buildV3db.sh +++ b/buildV3db.sh @@ -8,6 +8,11 @@ else mkdir temp fi +##Catcmd adds two files together +catcmd() { + cat $1 >> $2 +} + #################################################### phase I,II data ##here we have the data from doo nam/lisa, we need to copy it into the temp directory #phase12 data @@ -73,6 +78,7 @@ grun="docker run -v "$PWD":/tmp sgosline/srp-exposome" echo $grun $grun + ##get the zf expression data gpull='docker pull sogsline/srp-zfexp' echo $gpull @@ -82,6 +88,10 @@ grun='docker run -v '$PWD':/tmp sgosline/srp-zfexp' echo $grun $grun +##then we have to concatenate the two together +catg='catcmd srpDEGstats.csv sigGeneStats.csv' +echo $catg +$catg ##then we run morph dpull="docker pull sgosline/srp-zfbmd" @@ -119,9 +129,7 @@ echo "Dose response\n" wc -l new_dose.csv echo "New Fits" wc -l new_fits.csv -catcmd() { - cat $1 >> $2 -} + catcmdf='catcmd new_fits1.csv new_fits.csv' diff --git a/zfExp/parseGexData.R b/zfExp/parseGexData.R index ceea4cb..b3cb9fc 100644 --- a/zfExp/parseGexData.R +++ b/zfExp/parseGexData.R @@ -69,7 +69,7 @@ res<-diffex|> dplyr::select(Project,cas_number,Conc,Link,nGenes,Chemical_ID) ##need to get mapping to drug name -write.table(res,file ='srpDEGstats.csv',sep=',',quote=F,row.names=F,col.names=T) +write.table(res,file ='/tmp/srpDEGstats.csv',sep=',',quote=F,row.names=F,col.names=T) \ No newline at end of file From 22e7aba48a470d8c4dc87497ad1a8bad2e73b65b Mon Sep 17 00:00:00 2001 From: sgosline Date: Fri, 19 May 2023 10:20:28 -0700 Subject: [PATCH 12/12] updated with values for friendly exposoome names --- exposome/exposome_summary_stats.R | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/exposome/exposome_summary_stats.R b/exposome/exposome_summary_stats.R index a59a2c7..b6a77bc 100644 --- a/exposome/exposome_summary_stats.R +++ b/exposome/exposome_summary_stats.R @@ -11,6 +11,10 @@ stop_for_status(res) projects <- fromJSON(fromJSON(rawToChar(res$content))) +##create a mapping to friendly names for projects +project_map<-data.frame(Project=c('ADIPO','HEPG2','MCF10A','TF-GATEs'), + friendlyName=c('Human adipocyte cell lines','Human Hepg2 cell lines','Human MCF10A cell lines','Human TF-GATEs')) + print(paste('We now have data from',length(projects),'projects')) #portal_name= 'https://montilab.bu.edu/Xposome-API/portals' @@ -134,7 +138,12 @@ map <-all.chems%>% sg.stats <- sig.genes%>% group_by(Project,cas_number,Conc,Link)%>% summarize(nGenes=n_distinct(Gene))%>% - left_join(map) + left_join(map)|> + left_join(project_map)|> + ungroup()|> + dplyr::select(-Project)|> + dplyr::rename(Project=friendlyName)|> + dplyr::select(Project,cas_number,Conc,Link,nGenes,Chemical_ID) write.table(sg.stats,file='/tmp/sigGeneStats.csv',sep=',',row.names=F) ##not using this for now: