RED-106: move default dictionary preload files from redaction-service to config-service
This commit is contained in:
parent
fbeaebab7d
commit
89f0edd304
@ -39,7 +39,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.iqser.red.service</groupId>
|
<groupId>com.iqser.red.service</groupId>
|
||||||
<artifactId>configuration-service-api-v1</artifactId>
|
<artifactId>configuration-service-api-v1</artifactId>
|
||||||
<version>0.9.0</version>
|
<version>0.10.7</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.drools</groupId>
|
<groupId>org.drools</groupId>
|
||||||
|
|||||||
@ -0,0 +1,10 @@
|
|||||||
|
package com.iqser.red.service.redaction.v1.server.client;
|
||||||
|
|
||||||
|
import org.springframework.cloud.openfeign.FeignClient;
|
||||||
|
|
||||||
|
import com.iqser.red.service.configuration.v1.api.resource.DictionaryResource;
|
||||||
|
import com.iqser.red.service.configuration.v1.api.resource.RulesResource;
|
||||||
|
|
||||||
|
@FeignClient(name = RulesResource.SERVICE_NAME, url = "http://" + RulesResource.SERVICE_NAME + ":8080")
|
||||||
|
public interface DictionaryClient extends DictionaryResource {
|
||||||
|
}
|
||||||
@ -1,19 +1,6 @@
|
|||||||
package com.iqser.red.service.redaction.v1.server.redaction.service;
|
package com.iqser.red.service.redaction.v1.server.redaction.service;
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
import javax.annotation.PostConstruct;
|
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import com.iqser.red.service.redaction.v1.server.redaction.utils.ResourceLoader;
|
|
||||||
import com.iqser.red.service.redaction.v1.server.redaction.utils.TextNormalizationUtilities;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
@ -22,37 +9,8 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class DictionaryService {
|
public class DictionaryService {
|
||||||
|
|
||||||
public static final String VERTEBRATES_CODE = "VERTEBRATE";
|
public static final String VERTEBRATES_CODE = "vertebrate";
|
||||||
public static final String ADDRESS_CODE = "ADDRESS";
|
public static final String ADDRESS_CODE = "address";
|
||||||
public static final String NAME_CODE = "NAME";
|
public static final String NAME_CODE = "name";
|
||||||
public static final String NO_REDACTION_INDICATOR = "NO_REDACTION_INDICATOR";
|
public static final String NO_REDACTION_INDICATOR = "default";
|
||||||
|
|
||||||
@Getter
|
|
||||||
private Map<String, Set<String>> dictionary = new HashMap<>();
|
|
||||||
|
|
||||||
@Getter
|
|
||||||
private long generation;
|
|
||||||
|
|
||||||
@PostConstruct
|
|
||||||
public void init() {
|
|
||||||
loadFromResourceFiles();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void updateDictionary() {
|
|
||||||
//TODO
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void loadFromResourceFiles() {
|
|
||||||
dictionary.computeIfAbsent(NAME_CODE, v -> new HashSet<>()).addAll(ResourceLoader.load("dictionaries/names.txt").stream().map(this::cleanDictionaryEntry).collect(Collectors.toList()));
|
|
||||||
dictionary.computeIfAbsent(VERTEBRATES_CODE, v -> new HashSet<>()).addAll(ResourceLoader.load("dictionaries/vertebrates.txt").stream().map(this::cleanDictionaryEntry).collect(Collectors.toList()));
|
|
||||||
dictionary.computeIfAbsent(ADDRESS_CODE, v -> new HashSet<>()).addAll(ResourceLoader.load("dictionaries/addresses.txt").stream().map(this::cleanDictionaryEntry).collect(Collectors.toList()));
|
|
||||||
dictionary.computeIfAbsent(NO_REDACTION_INDICATOR, v -> new HashSet<>()).addAll(ResourceLoader.load("dictionaries/NoRedactionIndicator.txt").stream().map(this::cleanDictionaryEntry).collect(Collectors.toList()));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private String cleanDictionaryEntry(String entry) {
|
|
||||||
return TextNormalizationUtilities.removeHyphenLineBreaks(entry).replaceAll("\\n", " ");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,37 +1,42 @@
|
|||||||
package com.iqser.red.service.redaction.v1.server.redaction.service;
|
package com.iqser.red.service.redaction.v1.server.redaction.service;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.util.CollectionUtils;
|
||||||
|
|
||||||
|
import com.iqser.red.service.configuration.v1.api.model.TypeResponse;
|
||||||
import com.iqser.red.service.redaction.v1.server.classification.model.Document;
|
import com.iqser.red.service.redaction.v1.server.classification.model.Document;
|
||||||
import com.iqser.red.service.redaction.v1.server.classification.model.Paragraph;
|
import com.iqser.red.service.redaction.v1.server.classification.model.Paragraph;
|
||||||
import com.iqser.red.service.redaction.v1.server.classification.model.TextBlock;
|
import com.iqser.red.service.redaction.v1.server.classification.model.TextBlock;
|
||||||
|
import com.iqser.red.service.redaction.v1.server.client.DictionaryClient;
|
||||||
import com.iqser.red.service.redaction.v1.server.redaction.model.Entity;
|
import com.iqser.red.service.redaction.v1.server.redaction.model.Entity;
|
||||||
import com.iqser.red.service.redaction.v1.server.redaction.model.SearchableText;
|
import com.iqser.red.service.redaction.v1.server.redaction.model.SearchableText;
|
||||||
import com.iqser.red.service.redaction.v1.server.redaction.model.Section;
|
import com.iqser.red.service.redaction.v1.server.redaction.model.Section;
|
||||||
import com.iqser.red.service.redaction.v1.server.tableextraction.model.Cell;
|
import com.iqser.red.service.redaction.v1.server.tableextraction.model.Cell;
|
||||||
import com.iqser.red.service.redaction.v1.server.tableextraction.model.Table;
|
import com.iqser.red.service.redaction.v1.server.tableextraction.model.Table;
|
||||||
|
|
||||||
|
import feign.FeignException;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
|
@Slf4j
|
||||||
public class EntityRedactionService {
|
public class EntityRedactionService {
|
||||||
|
|
||||||
private final DictionaryService dictionaryService;
|
private final DictionaryClient dictionaryClient;
|
||||||
private final DroolsExecutionService droolsExecutionService;
|
private final DroolsExecutionService droolsExecutionService;
|
||||||
|
|
||||||
|
|
||||||
public void processDocument(Document classifiedDoc) {
|
public void processDocument(Document classifiedDoc) {
|
||||||
|
|
||||||
dictionaryService.updateDictionary();
|
|
||||||
|
|
||||||
Set<Entity> documentEntities = new HashSet<>();
|
Set<Entity> documentEntities = new HashSet<>();
|
||||||
for (Paragraph paragraph : classifiedDoc.getParagraphs()) {
|
for (Paragraph paragraph : classifiedDoc.getParagraphs()) {
|
||||||
|
|
||||||
@ -95,13 +100,12 @@ public class EntityRedactionService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private Set<Entity> findEntities(SearchableText searchableText) {
|
private Set<Entity> findEntities(SearchableText searchableText) {
|
||||||
|
|
||||||
String normalizedInputString = searchableText.toString();
|
String normalizedInputString = searchableText.toString();
|
||||||
|
|
||||||
Set<Entity> found = new HashSet<>();
|
Set<Entity> found = new HashSet<>();
|
||||||
for (Map.Entry<String, Set<String>> entry : dictionaryService.getDictionary().entrySet()) {
|
for (Map.Entry<String, Set<String>> entry : getDictionaryEntry().entrySet()) {
|
||||||
for (String value : entry.getValue()) {
|
for (String value : entry.getValue()) {
|
||||||
int startIndex;
|
int startIndex;
|
||||||
int stopIndex = 0;
|
int stopIndex = 0;
|
||||||
@ -123,11 +127,25 @@ public class EntityRedactionService {
|
|||||||
return found;
|
return found;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Map<String, Set<String>> getDictionaryEntry() {
|
||||||
|
try {
|
||||||
|
TypeResponse typeResponse = dictionaryClient.getAllTypes();
|
||||||
|
if (typeResponse == null || CollectionUtils.isEmpty(typeResponse.getTypes())) {
|
||||||
|
return Collections.emptyMap();
|
||||||
|
} else {
|
||||||
|
List<String> types = typeResponse.getTypes().stream().map(typeResult -> typeResult.getType()).collect(Collectors.toList());
|
||||||
|
return types.stream().filter(s -> !s.equals("default")).collect(Collectors.toMap(s -> s, s -> dictionaryClient.getDictionaryForType(s).getEntries().stream().collect(Collectors.toSet())));
|
||||||
|
}
|
||||||
|
} catch (FeignException e) {
|
||||||
|
log.warn("Got some unknown feignException", e);
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private boolean isSeparator(char c) {
|
private boolean isSeparator(char c) {
|
||||||
return Character.isWhitespace(c) || Pattern.matches("\\p{Punct}", String.valueOf(c)) || c == '\"' || c == '‘' || c == '’';
|
return Character.isWhitespace(c) || Pattern.matches("\\p{Punct}", String.valueOf(c)) || c == '\"' || c == '‘' || c == '’';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void removeEntitiesContainedInLarger(Set<Entity> entities) {
|
public void removeEntitiesContainedInLarger(Set<Entity> entities) {
|
||||||
List<Entity> wordsToRemove = new ArrayList<>();
|
List<Entity> wordsToRemove = new ArrayList<>();
|
||||||
for (Entity word : entities) {
|
for (Entity word : entities) {
|
||||||
@ -139,6 +157,4 @@ public class EntityRedactionService {
|
|||||||
}
|
}
|
||||||
entities.removeAll(wordsToRemove);
|
entities.removeAll(wordsToRemove);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
In Vitro
|
|
||||||
In vitro
|
|
||||||
in vitro
|
|
||||||
@ -1,796 +0,0 @@
|
|||||||
Aquatic BioSystems Inc, Fort Collins, Colorado, USA
|
|
||||||
Aquatic BioSystems, Inc., Ft. Collins, Colorado, USA.
|
|
||||||
Biological Research Laboratory (BRL), Füllinsdorf, Switzerland.
|
|
||||||
Biological Serviced Section, Alderley Park, Macclesfield, Cheshire
|
|
||||||
Harlan Laboratories Ltd., Itingen,
|
|
||||||
Jealott’s Hill, International Research Station, Bracknell,
|
|
||||||
Jealott’s Hill, International Research Station, Bracknell, RG42 6EY, United Kingdom
|
|
||||||
Jealott’s Hill, International Research Station, Bracknell, RG42 6EY, United Kingdom.
|
|
||||||
Obtained from P. Hohler, trout breeding station Zeiningen, CH-4314 Zeiningen, Switzerland
|
|
||||||
P. Hohler, Forellenzucht Zeiningen, CH-4314 Zeiningen Switzerland
|
|
||||||
P.Hohler trout breeding station Zeiningen, CH-4314 Zeiningen, Swit-zerland, and held in the test facility for more than 2 weeks
|
|
||||||
RCC Biotechnology & Animal Breeding Division, Füllinsdorf,
|
|
||||||
RCC Biotechnology & Animal Breeding Division, Füllinsdorf, Switzerland
|
|
||||||
Sequani Limited, Ledbury, United Kingdom, BFI0274
|
|
||||||
Springborn Laboratories Inc., 790 Main St., Wareham, Massachusetts, 02571-1075, USA.
|
|
||||||
Syngenta, Jealott’s Hill, International Research Station, Bracknell, RG42 6EY, United Kingdom
|
|
||||||
adama max rudong 2014 - huifeng
|
|
||||||
animal metabolism, dietary exposure, product safety, research and development, ciba-geigy limited, basle, switzerland
|
|
||||||
aquatic bio systems, inc., fort collins, colorado.
|
|
||||||
aquatic bioassay laboratory, baton rouge, louisiana
|
|
||||||
arysta lifescience north america, llc, cary, nc, usa
|
|
||||||
arysta lifescience sas, noguères, france
|
|
||||||
bayer crop-science
|
|
||||||
bayer crop-science ag
|
|
||||||
bc potter, rosedean, woodhurst, cambridgeshire, england
|
|
||||||
biospheric inc., rockville, usa
|
|
||||||
birds obtained from m & m quail farm, 4090 campbell road, gillsville, ga 30543 u.s.a
|
|
||||||
brixham environmental laboratory, astrazeneca uk limited, brixham, uk
|
|
||||||
brixham environmental laboratory, brixham, uk
|
|
||||||
brixham environmental laboratory, brixham, united kingdom
|
|
||||||
brood stock maintained at springborn laboratories
|
|
||||||
buffalo creek quail farm, po box 579, ellerbe, nc
|
|
||||||
bybrook bass hatchery, connecticut
|
|
||||||
c.i.t, miserey, france
|
|
||||||
celsius property b.v., amsterdam, netherlands
|
|
||||||
central toxicology laboratory
|
|
||||||
central toxicology laboratory (ctl), cheshire, united kingdom
|
|
||||||
central toxicology laboratory (ctl), cheshire, united kingdom, hr2464
|
|
||||||
central toxicology laboratory, alderley park, macclesfield, cheshire uk
|
|
||||||
centre international de toxicologie (c.i.t.), miserey, 27005 evreux, france
|
|
||||||
charles river
|
|
||||||
charles river (uk) limited
|
|
||||||
charles river (uk) limited, margate, kent, ct9 4lt, england.
|
|
||||||
charles river aquaria, margate, uk
|
|
||||||
charles river breeding laboratories, raleigh, nc, usa
|
|
||||||
charles river deutschland gmbh, stolzenseeweg 32-36, d-88353 kisslegg / germany
|
|
||||||
charles river france
|
|
||||||
charles river laboratories edinburgh ltd, tranent, eh33 2ne
|
|
||||||
charles river laboratories edinburgh ltd, tranent, eh33 2ne, uk
|
|
||||||
charles river laboratories france, bp 0109, f-69592 l’arbresle
|
|
||||||
charles river laboratories, edinburgh, united kingdom
|
|
||||||
charles river laboratories, edinburgh, united kingdom, 38674
|
|
||||||
charles river laboratories, portage, mi
|
|
||||||
charles river laboratories, raleigh, nc, usa
|
|
||||||
charles river uk limited, margate, kent.
|
|
||||||
charles river, 76410, saint-aubin-les-elbeuf, france
|
|
||||||
cheshire, united kingdom,
|
|
||||||
china agricultural university, no.2, yuan ming yuan west road, haidian district, beijing, 100193, p.r. china
|
|
||||||
ciba-geigy agricultural division, 410 swing road, p.o. box 18300, greensboro, north carolina 27419
|
|
||||||
ciba-geigy basel, oekotoxikologie, basel, switzerland, 953609
|
|
||||||
ciba-geigy corp. environmental health centre, farmington, ct, usa.
|
|
||||||
ciba-geigy corp., greensboro, us
|
|
||||||
ciba-geigy corp., vero beach, us
|
|
||||||
ciba-geigy corporation agricultural division, environmental health centre (ehc), 400 farmington avenue, farmington, ct 06032
|
|
||||||
ciba-geigy limited, animal production unit, basle, switzerland.
|
|
||||||
ciba-geigy limited, animal production unit, stein, switzerland.
|
|
||||||
ciba-geigy limited, animal production, 4332 stein, switzerland
|
|
||||||
ciba-geigy limited, basle, switzerland, toxicology ii. laboratories, animal facilities of toxicology ii. laboratories of residue analysis unit, agricultural division ciba-geigy limited, basle.
|
|
||||||
ciba-geigy limited, metabolism and ecology department, r&d plant protection agricultural division, basle, switzerland
|
|
||||||
ciba-geigy limited, plant protection division, ch-4002 basle, switzerland
|
|
||||||
ciba-geigy limited, research and development department, product safety, safety evaluation, basle, switzerland.
|
|
||||||
ciba-geigy limited, tierfarm, 4334 sisseln, switzerland
|
|
||||||
ciba-geigy ltd. ch-4002 basle, switzerland
|
|
||||||
ciba-geigy ltd., basel, switzerland
|
|
||||||
ciba-geigy ltd., basel, switzerland,
|
|
||||||
ciba-geigy ltd., basle, ch
|
|
||||||
ciba-geigy ltd., genetic toxicology, basel, switzerland
|
|
||||||
ciba-geigy,greensboro, united states
|
|
||||||
citoxlab france
|
|
||||||
covance laboratories inc.9200 leesburg pike, vienna, virginia 22182
|
|
||||||
covance laboratories limited, harrogate, uk
|
|
||||||
covance laboratories ltd., north yorkshire, uk.
|
|
||||||
covance laboratories, harrogate, united kingdom
|
|
||||||
cultures maintained at wildlife international ltd. laboratories
|
|
||||||
division of toxicology, institute of environmental toxicology
|
|
||||||
eba inc.
|
|
||||||
eba inc., snow camp, usa
|
|
||||||
eg&g bionomics
|
|
||||||
epl inc., research triangle
|
|
||||||
eurofins agroscience services chem sas, vergèze, france
|
|
||||||
experimental toxicology, ciba-geigy limited, 4332 stein, switzerland
|
|
||||||
fine organics limited, seal sands, middlesbrough ts2 1ub, uk
|
|
||||||
genetic toxicology, novartis crop protection ag, ch-4002 basel, switzerland
|
|
||||||
granja perrone, são bernardo do campo - sp – brazil
|
|
||||||
harlan (ad zeist, the netherlands).
|
|
||||||
harlan france, zi le malcourlet, 03800 gannat / france
|
|
||||||
harlan laboratories b.v. kreuzelweg 53 5961 nm horst / the netherlands
|
|
||||||
harlan laboratories b.v. postbus 6174 5960 ad horst / the netherlands
|
|
||||||
harlan laboratories b.v., kreuzelweg 53, 5961 nm horst / the netherlands, postbus 6174, 5960 ad horst / the netherlands
|
|
||||||
harlan laboratories ltd., itingen, switzerland, d24665
|
|
||||||
harlan sprague dawley, inc., madison, wi.
|
|
||||||
harlan uk, shaw’s farm, blackthorn, bicester, oxon, ox6 0tp
|
|
||||||
harlan winkelmann gmbh, d-33178 borchen, germany
|
|
||||||
hazleton wisconsin
|
|
||||||
hazleton wisconsin, inc.
|
|
||||||
hazleton wisconsin, inc., 3301 kinsman boulevard, madison, wisconsin
|
|
||||||
houghton springs fish farm, dorset, uk
|
|
||||||
huntingdon research centre ltd, cambridgeshire, england
|
|
||||||
huntingdon research centre ltd., huntingdon, united kingdom
|
|
||||||
huntingdon research centre ltd., p.o. box 2, huntingdon, cambridgeshire, pe18 6es, england
|
|
||||||
ibc manufacturing co., memphis, tn, usa
|
|
||||||
j. cole, the county game farms, ashford, kent, england
|
|
||||||
jealott’s hill international, bracknell, berkshire, united kingdom
|
|
||||||
jiangsu huifeng agrochemicals co. ltd.
|
|
||||||
kleintierfarm madoerin ag, ch-4414 fuellinsdorf
|
|
||||||
m & m quail farm, 4090 campbell road, gillsville, ga 30543, u.s.a.
|
|
||||||
maryland exotic birds of pasadena, maryland usa
|
|
||||||
max (rudong) chemical co ltd
|
|
||||||
morse laboratories llc, 1525 fulton avenue, sacramento, ca 95825 usa
|
|
||||||
mount lassen trout farms, california
|
|
||||||
mr j. coles, the country game farms, ashford, kent, england.
|
|
||||||
mt. lassen trout farm, rt. 5, box 36, red bluff, california 98080
|
|
||||||
nichols rabbitry inc. ; lumberton, tx
|
|
||||||
nichols rabbitry inc; lumberton, tx., us
|
|
||||||
notox b.v., hertogenbosch, netherlands
|
|
||||||
novartis crop protection ag, basel, switzerland ciba-geigy ltd., basel, switzerland
|
|
||||||
novartis crop protection ag, product portfolio management, environmental safety, ecotoxicology, ch-4002 basel, switzerland
|
|
||||||
organics limited, middlesbrough, united kingdom
|
|
||||||
osage catfish./box 222/missouri 65065/usa
|
|
||||||
osage catfisheries inc., lake road 54-56, route 4, box 1500, osage beach, mo65065, usa
|
|
||||||
p. hohler / ch-4341 zeiningen, switzerland
|
|
||||||
p. hohler, trout breeding station zeiningen, switzerland
|
|
||||||
park, nc, usa
|
|
||||||
plant protection division ciba-geigy limited basle, switzerland. genetic toxicology cibageigy limited basle, switzerland
|
|
||||||
product safety laboratories, east brunswick, new jersey 08816-3206, usa
|
|
||||||
product safety labs, east brunswick, usa
|
|
||||||
rcc - biological research laboratories, füllinsdorf, switzerland,
|
|
||||||
rcc cytotest cell research gmbh, rossdorf, germany
|
|
||||||
rcc ltd, environmental chemistry & pharmanalytics, ch-4452 itingen / switzerland
|
|
||||||
rcc ltd, itingen, switzerland
|
|
||||||
rcc ltd, laboratory animal services, wölferstrasse 4, 4414 füllinsdorf, switzerland
|
|
||||||
rcc ltd., itingen, switzerland,
|
|
||||||
rcc ltd., itingen, switzerland, b18966, t009636-06
|
|
||||||
rcc ltd., laboratory animal services, ch-4414 füllinsdorf, switzerland
|
|
||||||
rcc ltd., toxicology, wölferstrasse 4, ch-4414 füllinsdorf, switzerland
|
|
||||||
rcc ltd., zelgliweg 1, 4452 itingen, switzerland
|
|
||||||
rcc, cytotest cell research gmbh (rcc-ccr), in den leppsteinwiesen19, 64380 rossdorf, germany
|
|
||||||
research department, pharmaceuticals division, ciba-geigy corporation, 556 morris avenue, summit, new jersey 07901
|
|
||||||
ricerca, inc., ohio, usa
|
|
||||||
rodent breeding unit, alderley park, macclesfield, uk
|
|
||||||
sequani limited, bromyard road, ledbury, herefordshire, hr8 1lh, united kingdom
|
|
||||||
sequani limited, ledbury, united kingdom
|
|
||||||
sequani limited, ledbury, united kingdom,
|
|
||||||
sipcamadvan, durham, nc, usa
|
|
||||||
smithers viscient, 790 main street, wareham, ma 02571-1037 usa
|
|
||||||
smithers viscient, 790 main street, wareham, ma, usa
|
|
||||||
smithers viscient, 790 main street, wareham, massachusetts 02571 usa
|
|
||||||
smithers viscient, 790 main street, wareham, massachusetts 02571-1037, usa
|
|
||||||
source tierfarm sisseln, switzerland
|
|
||||||
southwest bio-labs, inc.401 n. 17th street, suite 11, las cruces, nm 88005 usa.
|
|
||||||
spring creek trout hatchery, lewistown, montana, usa
|
|
||||||
springborn (europe) ag, horn, switzerland
|
|
||||||
springborn laboratories inc., wareham, usa
|
|
||||||
springborn laboratories, inc. 790 main street wareham, massachusetts 02571
|
|
||||||
springborn laboratories, inc. environmental sciences division, 790 main street, wareham, 02571, usa massachusetts
|
|
||||||
springborn laboratories, inc.,
|
|
||||||
springborn laboratories, inc., health and environmental sciences, 790 main street, wareham, massachusetts, 02571-1075, usa
|
|
||||||
springborn life sciences inc.,
|
|
||||||
springborn smithers laboratories, wareham, usa
|
|
||||||
stillmeadow inc. study number 9062-05,
|
|
||||||
stillmeadow inc., sugar land, united states,
|
|
||||||
stillmeadow inc., sugarland tx, usa
|
|
||||||
stillmeadow inc., sugarland tx, usa, 8065-04 8321-03
|
|
||||||
stillmeadow, inc, 12852 park one drive, sugar land, tx 77478, us
|
|
||||||
stillmeadow, inc., 12852 park one drive, sugar land, tx 77478, usa
|
|
||||||
syngenta - jealott’s hill, bracknell, united kingdom
|
|
||||||
syngenta -jealott’s hill international research centre, uk
|
|
||||||
syngenta central toxicology laboratory, alderley park, macclesfield, cheshire, uk
|
|
||||||
syngenta crop protection, llc, greensboro, nc, usa
|
|
||||||
syngenta crop protection, llc, greensboro, usa
|
|
||||||
syngenta crop protection, monthey, switzerland
|
|
||||||
syngenta ctl, alderley park, macclesfield, cheshire, sk10 4tj, uk
|
|
||||||
syngenta – jealott’s hill international, bracknell, berkshire, united kingdom
|
|
||||||
syngenta, jealott’s hill, international research station, bracknell, rg42 6ey, united kingdom
|
|
||||||
texas animal specialties, humble, tx
|
|
||||||
texas animal specialties, humble, tx, us
|
|
||||||
toxigeneticsinc. decatur, il, us
|
|
||||||
uk. charles river
|
|
||||||
veterinary health research pty ltd, nsw, australia
|
|
||||||
vischim srl, c/o lewis & harrison, llc, washington, dc, usa
|
|
||||||
vischim srl, milano, italy
|
|
||||||
wil research laboratories, llc, 1407 george road.ashland, oh, usa
|
|
||||||
wil research laboratories, llc, ashland, oh, usa
|
|
||||||
wil research laboratories, llc, ashland, oh, usa,
|
|
||||||
wil research, 1407 george road, ashland, oh, 44805-8946, usa
|
|
||||||
wil research, llc, 1407 george road, ashland, oh 44805-8946, usa
|
|
||||||
wildlife international a division of eag inc. 8598 commerce drive easton, md 21601
|
|
||||||
wildlife international ltd. cultures, 8651 brooks drive, easton, maryland 21601
|
|
||||||
wildlife international ltd., 8598 commerce drive, easton, maryland 21601, usa
|
|
||||||
wildlife international ltd., 8598 commerce drive, maryland 21601, usa
|
|
||||||
wildlife international ltd., easton md, usa
|
|
||||||
wildlife international ltd., easton, maryland 21601, usa
|
|
||||||
wildlife international ltd., easton, usa
|
|
||||||
wildlife international ltd., maryland, us
|
|
||||||
wildlife international ltd., maryland, usa
|
|
||||||
wildlife international, 8598 commerce drive, easton, md 21601 usa
|
|
||||||
wildlife international, a division of eag inc., 8598 commerce drive, easton, md 21601 usa
|
|
||||||
wise d.r. & wise r.e., monkfield, bourn, cambridgeshire, england
|
|
||||||
zeneca agrochemicals, jealott’s hill, united kingdom
|
|
||||||
zentralinstitut fur versuchstierzucht gmbh, hannover, germany",
|
|
||||||
Syngenta Ltd., Jealott’s Hill International Research Centre, Bracknell, Berkshire, RG42 6EY, UK.
|
|
||||||
Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, UK.
|
|
||||||
Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany
|
|
||||||
Harlan Laboratories Ltd, Itingen, Switzerland.
|
|
||||||
Bioassay Labor fuer biologische Analytik GmbH INF 515, 69120 Heidelberg, Germany
|
|
||||||
Syngenta Crop Protection Ltd.
|
|
||||||
Syngenta, Jealott’s Hill, Bracknell, United Kingdom
|
|
||||||
Charles River Laboratories, Preclinical Services, Tranent (PCS-EDI) Edinburgh, EH33 2NE, UK
|
|
||||||
CXR Biosciences, 2, James Lindsay Place, Dundee Technopole, Dundee, DD1 5JJ, Scotland, UK
|
|
||||||
CiToxLAB Hungary Ltd. H-8200 Veszprém, Szabadságpuszta Hungary
|
|
||||||
Charles River, Tranent, Edinburgh, EH33 2NE, UK
|
|
||||||
Charles River Laboratories Edinburgh Ltd., Tranent, Edinburgh, EH33 2NE, UK
|
|
||||||
BASF SE; Ludwigshafen/Rhein; Germany Fed.Rep.
|
|
||||||
Leatherhead Food Research (LFR), Molecular Sciences Department, Randalls Road, Leatherhead, Surrey, KT22 7RY, UK
|
|
||||||
Syngenta, Jealott’s Hill, Bracknell, United Kingdom
|
|
||||||
Department of Veterinary & Biomedical Sciences, 101 Life Sciences Building, Penn State University, University Park, PA 16802, USA
|
|
||||||
CiToxLAB Hungary Ltd., H-8200 Veszprém, Szabadságpuszta, Hungary
|
|
||||||
SafePharm Laboratories Ltd, Shardlow Business Park, Shardlow, Derbyshire, UK
|
|
||||||
Harlan Laboratories Ltd., Zelgliweg 1, 4452 Itingen, Switzerland
|
|
||||||
RCC, Cytotest Cell Research GmbH (RCC-CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany
|
|
||||||
Harlan, Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany
|
|
||||||
Harlan Laboratories Ltd. Zelgliweg 1, CH-4452 Itingen / Switzerland
|
|
||||||
Quotient Bioresearch (Rushden) Ltd., Pegasus Way, Crown Business Park, Rushden, Northamptonshire, NN10 6ER, UK
|
|
||||||
Charles River Laboratories Edinburgh, Ltd., Elphinstone Research Centre, Tranent, East Lothian, EH33 2NE, United Kingdom
|
|
||||||
CiToxLAB Hungary Ltd. H-8200 Veszprém, Szabadságpuszta, Hungary
|
|
||||||
Harlan Cytotest Cell Research GmbH, In den Leppsteinswiesen 19, 64380 Rossdorf Germany
|
|
||||||
Charles River, Tranent, Edinburgh, EH32 2NE, UK
|
|
||||||
Charles River Laboratories Edinburgh Ltd, Tranent, Edinburgh, EH33 2NE, UK
|
|
||||||
Harlan Cytotest Cell Research GmbH, (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany
|
|
||||||
Charles River UK Limited, Margate, Kent, UK
|
|
||||||
RCC Ltd., Biotechnology & Animal Breeding Division, 4414 Fuellinsdorf, Switzerland
|
|
||||||
Charles River (UK) Ltd., Margate, Kent, CT9 4LT, England
|
|
||||||
Charles River Ltd., Margate, Kent, United Kingdom
|
|
||||||
Charles River UK Ltd, Manston Road, Margate, Kent CT9 4LT, England, UK
|
|
||||||
Syngenta Crop Protection, Toxicology, 4332 Stein, Switzerland
|
|
||||||
Safepharm Laboratories Limited, Shardlow Business Park, Shardlow, Derbyshire, DE72 2GD, United Kingdom
|
|
||||||
Sequani Ltd, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom
|
|
||||||
Central Toxicology Laboratory, Alderley Park, Macclesfield, Cheshire, SK10 4TJ, UK
|
|
||||||
Charles River UK
|
|
||||||
Department of Veterinary & Biomedical Sciences, Penn State University
|
|
||||||
Syngenta Ltd. Jealott’s Hill International Research, Bracknell, Berks RG42 6EY
|
|
||||||
Charles River Laboratories, Research Models and Services Germany GmbH; Sandhofer Weg 7, 97633 Sulzfeld, Germany
|
|
||||||
Novartis Crop Protection AG, Toxicology, 4332 Stein, Switzerland
|
|
||||||
BRL Biological Research Laboratories Ltd., Wölferstrasse 4, 4414 Füllinsdorf, Switzerland
|
|
||||||
B&K Universal Ltd, Grimston, Aldbrough, Hull, HU11 4QE, East Yorkshire, UK
|
|
||||||
B&K Universal Ltd, Grimston, Aldborough, Hull, UK
|
|
||||||
Nunc GmbH & Co. KG, 65203 Wiesbaden, Germany
|
|
||||||
Fluka, 89203 Neu-Ulm, Germany
|
|
||||||
MERCK, 64293 Darmstadt, Germany
|
|
||||||
Charles River Laboratories, Research Models and Services Germany GmbH; Sandhofer Weg 7, 97633 Sulzfeld, Germany
|
|
||||||
Animal Production, Novartis Pharma AG, 4332 Stein, Switzerland
|
|
||||||
RCC Ltd., Biotechnology & Animal Breeding Division, 4414 Fuellinsdorf, Switzerland.
|
|
||||||
SYSTAT Software, Inc., 501, Canal Boulevard, Suite C, Richmond, CA 94804, USA
|
|
||||||
Safepharm Laboratories Limited, Shardlow Business Park, Shardlow, Derbyshire, DE72 2GD, United Kingdom
|
|
||||||
Charles River (UK) Limited, Margate, Kent, CT9 4LT, England
|
|
||||||
CXR Biosciences, 2 James Lindsay Place, Dundee Technopole, Dundee, DD1 5JJ, Scotland, UK
|
|
||||||
Granja Perrone, São Bernardo do Campo - SP – Brazil
|
|
||||||
Harlan Sprague-Dawley, Inc. Houston/Texas
|
|
||||||
P. Hohler, trout breeding station Zeiningen, 4314 Zeiningen, Switzerland
|
|
||||||
Spring Creek trout hatchery, Lewistown, Montana, USA
|
|
||||||
Springborn laboratories culture facility
|
|
||||||
Springborn culture
|
|
||||||
University of Texas
|
|
||||||
Institute for Plant Physiology, University of Göttingen, 37073 Göttingen, Germany
|
|
||||||
Bayer CropScience AG, 40789 Monheim, Germany
|
|
||||||
Koppert B. V. Berkel en Rodenrijs, Nederland
|
|
||||||
Bio-Test Labor GmbH, Sagerheide, Germany
|
|
||||||
Ciba-Geigy
|
|
||||||
Ciba-Geigy Ltd.
|
|
||||||
Harlan Laboratories Ltd., Itingen, Switzerland, D24643
|
|
||||||
Springborn Laboratories Inc., Wareham, USA
|
|
||||||
Springborn Laboratories (Europe) AG
|
|
||||||
Syngenta Eurofins - GAB, Niefern Öschelbronn, Germany
|
|
||||||
Syngenta Eurofins Agroscience Services EcoChem GmbH, N-Osch., Germany
|
|
||||||
Novartis Crop Protection AG, Basel, CH
|
|
||||||
Springborn (Europe) AG, Horn, Switzerland
|
|
||||||
Springborn Smithers Laboratories (Europe) AG, Horn, Switzerland
|
|
||||||
Syngenta Crop Protection AG, Basel, Switzerland
|
|
||||||
GAB Biotechnologie GmbH, Niefern, Germany
|
|
||||||
BioChem Agrar, Gerichshain, Germany
|
|
||||||
AgroChemex Ltd, Manningtree, United Kingdom
|
|
||||||
Ciba-Geigy Ltd., Basel, Switzerland
|
|
||||||
Ciba-Geigy Muenchwilen AG, Muenchwilen, Switzerland
|
|
||||||
Novartis Crop Protection Münchwilen AG, Münchwilen, Switzerland
|
|
||||||
Novartis Crop Protection AG, Basel, Switzerland
|
|
||||||
Ciba-Geigy Muenchwilen AG, Muenchwilen, Switzerland
|
|
||||||
Charles River Laboratories, Research Models and Services Germany GmbH; Sandhofer Weg 7, 97633 Sulzfeld, Germany
|
|
||||||
Alderley Park
|
|
||||||
Alderley Park Swiss
|
|
||||||
Stillmeadow, Inc., 12852 Park One Drive, Sugar Land, TX 77478, USA
|
|
||||||
Texas Animal Specialties, Humble, TX
|
|
||||||
Nichols Rabbitry Inc. ; Lumberton, TX
|
|
||||||
Charles River Laboratories., Wilmington, MA
|
|
||||||
Charles River Laboratories Edinburgh Ltd., Elphinstone Research Centre, Tranent, East Lothian, EH33 2NE
|
|
||||||
Syngenta Crop Protection, Monthey, Switzerland
|
|
||||||
Syngenta Crop Protection, Münchwilen, Switzerland
|
|
||||||
Fine Organics Limited, Middlesbrough, United Kingdom
|
|
||||||
Fine Organics Limited, Seal Sands, Middlesbrough TS2 1UB, UK
|
|
||||||
Syngenta Crop Protection, Inc., Greensboro, USA
|
|
||||||
Syngenta Technology & Projects, Huddersfield, United Kingdom
|
|
||||||
Syngenta Biosciences Pvt. Ltd., Ilhas Goa, India
|
|
||||||
Syngenta - Process Hazards Section, Huddersfield, United Kingdom
|
|
||||||
Syngenta Walloon Agricultural Research Centre, Gembloux, Belgium , 21764
|
|
||||||
Syngenta Crop Protection, Münchwilen, Switzerland, 300052719
|
|
||||||
Syngenta Crop Protection Münchwilen AG, Münchwilen, Switzerland, 109747
|
|
||||||
Syngenta Crop Protection, Münchwilen, Switzerland, 300073294
|
|
||||||
Syngenta - Jealott’s Hill, Bracknell, United Kingdom RCC Ltd., Itingen, Switzerland, B18977, T003446-06
|
|
||||||
Syngenta - Jealott’s Hill, Bracknell, United Kingdom RCC Ltd., Itingen, Switzerland, B18966, T009636-06
|
|
||||||
RCC Cytotest Cell Research GmbH, Rossdorf, Germany, RCC 107662
|
|
||||||
Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,
|
|
||||||
RCC Cytotest Cell Research GmbH, Rossdorf, Germany
|
|
||||||
WIL Research Laboratories, LLC, Ashland, OH, USA
|
|
||||||
Charles River Laboratories, Edinburgh, United Kingdom, 36955
|
|
||||||
Syngenta Crop Protection AG, Basel, Switzerland Stillmeadow Inc., Sugarland TX, USA
|
|
||||||
Novartis Crop Protection Inc., Greensboro, USA
|
|
||||||
Syngenta - Jealott’s Hill, Bracknell, United Kingdom
|
|
||||||
Eurofins - ADME Bioanalyses, Vergeze, France
|
|
||||||
BioChem GmbH, Cunnersdorf, Germany
|
|
||||||
Syngenta Syngenta Crop Protection, LLC, Greensboro, NC, USA
|
|
||||||
Syngenta Eurofins Agroscience Services Chem SAS, Vergèze, France
|
|
||||||
Syngenta Innovative Environmental Services, Witterswil, Switzerland
|
|
||||||
Ricerca Biosciences, LLC, Concord, OH, USA
|
|
||||||
Dr Knoell Consult GmbH, Mannheim, Germany
|
|
||||||
RCC Umweltchemie GmbH & Co. KG, Rossdorf, Germany
|
|
||||||
JSC International Ltd., Harrogate, United Kingdom
|
|
||||||
Wildlife International Ltd., Easton, Maryland 21601, USA
|
|
||||||
Syngenta Crop Protection, LLC, Greensboro, NC, USA
|
|
||||||
Novartis - Greensboro, Greensboro, USA
|
|
||||||
Smithers Viscient, 790 Main Street, Wareham, MA, USA
|
|
||||||
Syngenta Cambridge Environmental Assessments, United Kingdom
|
|
||||||
Ciba-Geigy Basel, Oekotoxikologie, Basel, Switzerland
|
|
||||||
RCC Ltd., Itingen, Switzerland
|
|
||||||
IBACON GmbH, Rossdorf, Germany
|
|
||||||
Envigo Research Limited, Shardlow, UK
|
|
||||||
Syngenta Crop Protection Münchwilen AG, Münchwilen, Switzerland
|
|
||||||
Ciba-Geigy Münchwilen AG, Münchwilen, Switzerland
|
|
||||||
Huntingdon Research Centre Ltd., Huntingdon, United Kingdom
|
|
||||||
Syngenta Technology & Projects, Huddersfield, United Kingdom
|
|
||||||
Harlan Laboratories Ltd., Shardlow, Derbyshire, UK
|
|
||||||
Dr. Specht & Partner Chem. Laboratorien GmbH, Hamburg, Germany
|
|
||||||
Institut Fresenius, Taunusstein, Germany
|
|
||||||
Syngenta - Jealott’s Hill International, Bracknell, Berkshire, United Kingdom
|
|
||||||
Ciba-Geigy Corp., Greensboro, USA
|
|
||||||
CIP Chemisches Institut Pforzheim GmbH, Pforzheim, Germany
|
|
||||||
Charles River Laboratories Edinburgh Ltd, Tranent, EH33 2NE, UK
|
|
||||||
Hazleton Laboratories, Madison, USA
|
|
||||||
Eurofins BioPharma, Planegg, Germany, 150556
|
|
||||||
Syngenta Environ. Health Center, Farmington, USA
|
|
||||||
Centre International de Toxicologie C.I.T., Evreux, France
|
|
||||||
Toxalim, Research Centre in Food Toxicology, F- 31027 Toulouse, France
|
|
||||||
Harlan Laboratories Ltd., Shardlow, Derbyshire, UK
|
|
||||||
CRS GmbH GmbH, In den Leppsteinswies en 19, 64380 Rossdorf Germany
|
|
||||||
Environ. Health Center, Farmington, USA
|
|
||||||
Ciba-Geigy Corp., Summit, USA
|
|
||||||
Ciba-Geigy Basel, Genetische Toxikologie, Basel, Switzerland
|
|
||||||
Ciba-Geigy Ltd., Stein, Switzerland
|
|
||||||
Novartis Crop Protection AG, Stein, Switzerland
|
|
||||||
Central Toxicology Laboratory (CTL), Cheshire, United Kingdom
|
|
||||||
Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom
|
|
||||||
Brixham Environmental Laboratory, Brixham, United Kingdom
|
|
||||||
Springborn Smithers Laboratories, Horn, Switzerland
|
|
||||||
Huntingdon Research Centre, Cambridgeshire, United Kingdom
|
|
||||||
Mambo-Tox Ltd., Southampton, United Kingdom
|
|
||||||
MITOX Consultants, Amsterdam, Netherlands
|
|
||||||
Charles River Aquaria, Margate, UK
|
|
||||||
Brixham Environmental Laboratory, Brixham, UK
|
|
||||||
O.Keller, Mörschwil, CH
|
|
||||||
Huntingdon Life Sciences Ltd., Huntingdon, UK
|
|
||||||
BTL Bio-Test Labor GmbH, Sagerheide, Germany
|
|
||||||
Mambo-Tox Ltd., Southampton, UK
|
|
||||||
Mambo-Tox Ltd. 2 Venture Road, University Science Park, Southampton SO16 7NP, United Kingdom
|
|
||||||
BioChem GmbH, Germany
|
|
||||||
PK Nützlingszuchten, Welzheim, Germany
|
|
||||||
BioChem agrar, Germany
|
|
||||||
Sautter & Stepper, Ammerbuch, Germany
|
|
||||||
Koppert, The Netherlands
|
|
||||||
Kraut & Rubeen (Doris Haber), Zeilstraße 40, 64367 Mühltal-Frankenhausen, Germany
|
|
||||||
Springborn Laboratories (Europe) AG, Seestrasse 21, CH-9326 Horn, Switzerland
|
|
||||||
Biologische Bundesanstalt (BBA), Braunschweig, Germany
|
|
||||||
Institut für Biologische Analytik und Consulting, IBACON GmbH, Arheilger Weg 17, 64380 Rossdorf, Germany
|
|
||||||
Abandoned vineyard, Northern Italy
|
|
||||||
Syngenta Limited, Cheshire, United Kingdom
|
|
||||||
Agrochemex, Lawford, United Kingdom
|
|
||||||
Staphyt, Inchy en Artois, France
|
|
||||||
Dermal Technology Laboratory Ltd., Staffordshire, UK
|
|
||||||
Ciba Agriculture, Whittlesford, United Kingdom
|
|
||||||
Bayer Crop Science AG, Monheim, Germany
|
|
||||||
tier3 solutions GmbH, Leichlingen, Germany
|
|
||||||
Mambo-Tox. Ltd., Southampton, United Kingdom
|
|
||||||
Syngenta Crop Protection AG, Stein, Switzerland
|
|
||||||
Stillmeadow Inc, Sugar Land, TX 77478, US
|
|
||||||
Texas Animal Specialities, Humble, TX, US
|
|
||||||
CiToxLAB, 8200 Veszprem, Szabadsagpuszta, Hungary
|
|
||||||
Syngenta Ltd, Jealott's Hill International Research Centre, Bracknell, Berkshire, RG42 6EY, United Kingdom
|
|
||||||
Stillmeadow, Inc, 12852 Park One Drive, Sugar Land
|
|
||||||
Syngenta Central Toxicology Laboratory, Alderley Park, Macclesfield, Cheshire, UK
|
|
||||||
Syngenta Limited, Alderley Park, Macclesfield, Cheshire, SK10 4TJ
|
|
||||||
Nichols Rabbitry Inc; Lumberton, TX., US
|
|
||||||
AgroChemex International Ltd, Aldhams Farm Research Station, Lawford, Essex, UK
|
|
||||||
Ciba Agriculture, Whittlesford, Cambridge, UK
|
|
||||||
Ricerca Inc., Department of Residue Analysis, Painesville OH, USA
|
|
||||||
Staphyt, 23 rue de Moeuvres, F-62860 Inchy en Artois, France
|
|
||||||
Dermal Technology Laboratory Ltd., Med IC4, Keele University Science and Business Park, Keele, Staffordshire, ST5 5NL, United Kingdom
|
|
||||||
Tier3 solutions GmbH, Kolberger Strasse 61-63 51381 Leverkusen, Germany
|
|
||||||
RCC Ltd, Environmental Chemistry & Pharmanalytics, CH-4452 Itingen / Switzerland
|
|
||||||
GAB Biotechnologie GmbH & IFU Umweltanalytik GmbH, Niefern-Öschelbronn, Germany
|
|
||||||
Biochem agrar, Germany
|
|
||||||
Bienenfarm Kern GmbH, Am Rehbacher Anger 10, 04249 Leipzig, Germany
|
|
||||||
Joaquin Cordero, Paseo de Colón No. 19, 41370 Cazalla (Sevilla), Spain
|
|
||||||
Mambo-Tox Ltd, Southampton, UK
|
|
||||||
GAB Biotechnologie GmbH & IFU Umweltanalytik GmbH, Niefern-Öschelbronn, Germany
|
|
||||||
Innovative Environmental Services (IES), Benkenstrasse 260, 4108 Witterswil, Switzerland
|
|
||||||
BioChem agrar GmbH, Kupferstraße 6, 04827 Gerichshain, Germany
|
|
||||||
RCC - Biological Research Laboratories, Füllinsdorf, Switzerland, 859442
|
|
||||||
RCC Ltd., Toxicology, Wölferstrasse 4, CH-4414 Füllinsdorf, Switzerland
|
|
||||||
RCC Ltd., Laboratory Animal Services, CH-4414 Füllinsdorf, Switzerland
|
|
||||||
Charles River Laboratories France, BP 0109, F-69592 L’Arbresle
|
|
||||||
Charles River Deutschland GmbH, Stolzenseeweg 32-36, D-88353 Kisslegg / Germany
|
|
||||||
Syngenta CTL, Alderley Park, Macclesfield, Cheshire, SK10 4TJ, UK
|
|
||||||
Harlan UK, Shaw’s Farm, Blackthorn, Bicester, Oxon, OX6 0TP
|
|
||||||
Syngenta Central Toxicology Laboratory, UK
|
|
||||||
RCC Ltd., Toxicology, Wölferstrasse 4, CH- 4414 Füllinsdorf, Switzerland
|
|
||||||
RCC Ltd, Itingen, Switzerland
|
|
||||||
P. Hohler, trout breeding station Zeiningen, Switzerland
|
|
||||||
SAG, Institute for Plant Physiology, University of Göttingen, Germany
|
|
||||||
GAB Biotechnologie GmbH, Niefern-Öschelbronn, Germany
|
|
||||||
Beekeeper Mr. Berthold Nengel, Brückenstraße 12, 56348 Dahlheim, Germany
|
|
||||||
Syngenta Crop Protection, Münchwilen, Switzerland, CHMU140561
|
|
||||||
Syngenta Crop Protection, Münchwilen, Switzerland
|
|
||||||
Sequani Limited, Ledbury, United Kingdom, BFI0516
|
|
||||||
PTRL Europe, Ulm, Germany
|
|
||||||
SGS Institut Fresenius GmbH, Taunusstein, Germany
|
|
||||||
CEM Analytical Services Ltd (CEMAS) - Berkshire, UK
|
|
||||||
PTRL Europe, Ulm, Germany
|
|
||||||
Sequani Limited, Ledbury, United Kingdom
|
|
||||||
SGS Institut Fresenius GmbH, Taunusstein, Germany
|
|
||||||
CEM Analytical Services, UK
|
|
||||||
Eurofins Agroscience Services Chem SAS, Vergà ̈ze, France
|
|
||||||
Novartis Services AG, Basel, Switzerland
|
|
||||||
BSL Bioservice Scientific, Planegg, Germany
|
|
||||||
Envigo CRS GmbH, Rossdorf, Germany
|
|
||||||
Envigo CRS GmbH, In den Leppsteinswiesen 19, 64380 Rossdorf, Germany
|
|
||||||
BASF Ltd., Ludwigshafen, Germany
|
|
||||||
ALS Laboratory Group, Edmonton, Alberta, Canada
|
|
||||||
Syngenta Crop Protection, Inc., Greensboro, USA
|
|
||||||
ADME - Bioanalyses, Vergeze, France
|
|
||||||
Battelle UK Ltd., Ongar, United Kingdom
|
|
||||||
SGS Institut Fresenius GmbH
|
|
||||||
Novartis Agro GmbH, Frankfurt, Germany
|
|
||||||
Supervision & Test Center Pesticide Safety Evaluation, China
|
|
||||||
T. R. Wilbury Laboratories, Inc., Marblehead, MA, USA
|
|
||||||
CEMAS, North Ascot, United Kingdom
|
|
||||||
EAG Laboratories PTRL Europe GmbH, Germany
|
|
||||||
Syngenta Crop Protection Inc., USA
|
|
||||||
Syngenta Crop Protection Inc., 410 Swing Road, Greensboro, NC 27409, USA
|
|
||||||
Huntingdon Research Centre Ltd., UK
|
|
||||||
Huntingdon Research Centre Ltd., England
|
|
||||||
T.R. Wilbury Laboratories, Inc., USA
|
|
||||||
Wildlife International Ltd., USA
|
|
||||||
RCC Ltd, Switzerland
|
|
||||||
RCC Ltd. Environmental Chemistry & Pharmanalytics Division CH-4452 Itingen/Switzerland
|
|
||||||
Harlan Laboratories Ltd., Switzerland
|
|
||||||
CIBA-GEIGY Ltd., Switzerland
|
|
||||||
Syngenta Crop Protection AG, Basel , Switzerland
|
|
||||||
Syngenta Crop Protection LLC, Greensboro, USA
|
|
||||||
PTRL Europe GmbH, Helmholtzstr. 22, Science Park, Ulm, Germany
|
|
||||||
PTRL Europe GmbH, Germany
|
|
||||||
CEM Analytical Services Ltd (CEMAS), Imperial House, Oaklands Business Centre, Oaklands Park, Wokingham, Berkshire, RG41 2FD UK
|
|
||||||
SGS INSTITUT FRESENIUS GmbH
|
|
||||||
Syngenta Ltd, Jealott’s Hill International Research Centre, Bracknell, Berkshire, RG42 6EY, UK
|
|
||||||
Fraunhofer Institute for Molecular Biology and Applied Ecology, IME, Auf dem Aberg 1, 57392 Schmallenberg, Germany
|
|
||||||
Eurofins Agroscience Services Chem SAS, 75B, Avenue du Pascalet, 30310 Vergèze, France
|
|
||||||
Innovative Environmental Services (IES) Ltd, Benkenstrasse 260, 4108 Witterswil, Switzerland
|
|
||||||
BSL Bioservice, Scientific Laboratories GmbH, Behringstrasse 6/8, 82152 Planegg, Germany
|
|
||||||
RCC Ltd, Zelgliweg 1, CH-4452 Itingen, Switzerland
|
|
||||||
RCC Ltd, Laboratory Animal Services, CH-4414 Fuellinsdorf
|
|
||||||
Harlan Cytotest Cell Research GmbH, In den Leppsteinswiesen 19, 64380 Rossdorf, Germany
|
|
||||||
Ciba-Geigy Limited, Basel, Switzerland
|
|
||||||
BASF SE, Experimental Toxicology and Ecology, 67056 Ludwigshafen, Germany
|
|
||||||
Ciba-Geigy Limited, Animal Production, 4332 Stein, Switzerland
|
|
||||||
RCC Ltd. Biotechnology & Animal Breeding Division, 4414 Füllinsdorf, Switzerland
|
|
||||||
Syngenta Ltd. Jealott’s Hill International Research Centre, Bracknell, Berks RG42 6EY
|
|
||||||
WIL Research Laboratories, LLC, 1407 George Road, Ashland, Ohio 44805-8946, USA
|
|
||||||
Charles River Laboratories Inc., Kingston, New York, USA
|
|
||||||
Syngenta, Jealott’s Hill International Research Centre, Bracknell, United Kingdom
|
|
||||||
Battelle UK Ltd
|
|
||||||
D.R. & R.E. Wise, Monkfield, Bourn, Cambridgeshire, England
|
|
||||||
Wildlife International. 8598 Commerce Drive, Easton, MD 21601 USA
|
|
||||||
Maryland Exotic Birds of Pasadena, MD 21122
|
|
||||||
Mr D. R. Wise, Monkfield, Bourn, Cambridgeshire, England
|
|
||||||
Cambridge Environmental Assessments, Battlegate Road, Boxworth, Cambridgeshire, CB23 4NN, UK
|
|
||||||
J. Coles, The County Game Farms, Ashford, Kent, England
|
|
||||||
Osage Catfisheries, MO 65 065, USA
|
|
||||||
Supervision and Test Center for Pesticide Safety Evaluation and Quality Control, 600 Shenliao Road, Tiexi District, Shengyang 110141, Liaoning Province, P.R. China
|
|
||||||
Syngenta, Jealott’s Hill International Research Centre, Bracknell, Berkshire, RG42 6EY
|
|
||||||
Harlan Laboratories Ltd., 4452 Itingen, Switzerland
|
|
||||||
Ciba-Geigy Ltd., Product Safety, Ecotoxicology, CH-4002 Basel, Switzerland
|
|
||||||
P. Hohler, CH-4314 Zeiningen
|
|
||||||
Cambridge Environmental Assessments, Battlegate Road, Boxworth, Cambridgeshire, CB23 4NN/UK
|
|
||||||
Wildlife International, A Division of EAG Inc. 8598 Commerce Drive Easton, MD 21601 USA
|
|
||||||
Novartis Crop Protection AG, Kanton Aargau, Switzerland.
|
|
||||||
RCC Ltd, CH-4452 Itingen, Switzerland
|
|
||||||
CEMAS, North Ascot, Berkshire, UK
|
|
||||||
Wilbury Laboratories Inc, 40 Doaks Lane, Marblehead, Massachusetts
|
|
||||||
P. Cummins Oyster Company, Pasadena, Maryland
|
|
||||||
Harlan Laboratories Ltd, Zelgliweg 1, 4452 Itingen/Switzerland
|
|
||||||
PK Nützlingszuchten, D-73642 Welzheim, Germany
|
|
||||||
Institut für Biologische Analytik und Consulting IBACON GmbH Arheilger Weg 17, 64380 Rossdorf, Germany
|
|
||||||
ABC Laboratories Inc., Analytical Chemistry and Field Services, 7200 E. ABC Lane, Columbia, Missouri
|
|
||||||
Ciba-Geigy Corporation, Farmington, CT, USA
|
|
||||||
Syngenta Ltd. Jealott’s Hill, Bracknell, United Kingdom
|
|
||||||
Eurofins Agroscience Services EcoChem GmbH, N- Osch., Germany
|
|
||||||
Ciba-Geigy Limited, Animal Production Unit, Basle, Switzerland
|
|
||||||
Ciba-Geigy Limited, Basle, Switzerland
|
|
||||||
Charles River Laboratories, Raleigh, NC, USA
|
|
||||||
Charles River (UK) Limited
|
|
||||||
Harlan Sprague Dawley, Inc., Madison, WI
|
|
||||||
CIBA-GEIGY Limited, Animal Production, 4332 Stein, Switzerland
|
|
||||||
CIBA-GEIGY Limited, 4332 Stein, Switzerland
|
|
||||||
Kleintierfarm Madoerin AG, CH-4414 Fuellinsdorf
|
|
||||||
CIBA-GEIGY Limited, Tierfarm, 4334 Sisseln, Switzerland
|
|
||||||
Animal production, CIBA-GEIGY Limited, 4332 Stain/Switzerland
|
|
||||||
Environmental Health Centre (EHC), 400 Farmington Avenue, Farmington, CT 06032
|
|
||||||
Charles River Laboratories, Kingston, NY
|
|
||||||
Harlan (Ad Zeist, the Netherlands)
|
|
||||||
Animal Production CIBA-GEIGY Limited 4332 Stein / Switzerland
|
|
||||||
Tierfarm, Sisseln, Switzerland
|
|
||||||
Zen-tralinstitut fur Versuchstier-zucht GmbH, Hannover, Germany
|
|
||||||
Charles River Laboratories, Portage, MI
|
|
||||||
CIBA-GEIGY Limited, Basel, Switzerland
|
|
||||||
Novartis Crop Protection AG, CH-4002 Basel, Switzerland
|
|
||||||
RCC Ltd., Biotechnology and animal breeding division, Fullinsdorf, Switzerland
|
|
||||||
Tierfarm Sisseln, Switzerland
|
|
||||||
Charles River Breeding Laboratories, Raleigh, NC, USA
|
|
||||||
Ciba-Geigy Corporation, Plant Protection Division, Environmental Health Center, 400 Farmington Avenue, Farmington, Connecticut 06032, USA
|
|
||||||
Charles River Breeding Laboratories, Inc., Raleigh, North Carolina USA
|
|
||||||
Charles River, 76410, Saint-Aubin-les-Elbeuf, France
|
|
||||||
Charles River Laboratories, Inc., Raleigh, NC, USA
|
|
||||||
WIL Research Laboratories, LLC, 1407 George Road, Ashland, OH 44805-8946 USA
|
|
||||||
RCC Ltd., Biotechnology & Animal Breeding Division, 4414 Fȕllinsdorf, Switzerland
|
|
||||||
Alderley Park, Macclesfield, Cheshire UK
|
|
||||||
Rodent Breeding Unit, Alderley Park, Macclesfield, UK
|
|
||||||
Harlan Winkelmann GmbH, D-33178 Borchen, Germany
|
|
||||||
WIL Research Laboratories, LLC, 1407 George Road.Ashland, OH 44805-8946 USA
|
|
||||||
Centre d’Elevage Charles River
|
|
||||||
CIBA-GEIGY Limited, Experimental Toxicology, 4332 Stein/Switzerland
|
|
||||||
Centre International de Toxicologie (C.I.T.), Miserey, 27005 Evreux, France
|
|
||||||
Centre Internationale de Toxicologie, Miserey, 27005 Evreux, France
|
|
||||||
CIBA-GEIGY Limited, Basle, Switzerland
|
|
||||||
Harlan Laboratories Ltd, Shardlow Business Park, Shardlow, Derbyshire, DE72 2GD, UK
|
|
||||||
Envigo CRS GmbH GmbH, In den Leppsteinswiesen 19, 64380 Rossdorf Germany
|
|
||||||
Ciba-Geigy Ltd., Genetic Toxicology, Basel, Switzerland
|
|
||||||
Toxalim, Research Centre in Food Toxicology, F-31027 Toulouse, France
|
|
||||||
Ciba-Geigy Corp, Plant Protection Division, Environmental Health Center, 400 Farmington Avenue, Farmington, Connecticut 06032, USA
|
|
||||||
Charles River France
|
|
||||||
Charles River US
|
|
||||||
WIL Research, LLC, 1407 George Road, Ashland, OH 44805-8946, USA
|
|
||||||
Novartis Crop Protection AG, Toxicology, 4332 Stein Switzerland
|
|
||||||
Syngenta Crop Protection, Health Assessment 2 Stein, 4332 Stein, Switzerland
|
|
||||||
RCC Ltd. Biotechnology and Animal Breeding Division, 4414 Füllinsdorf, Switzerland
|
|
||||||
Genetic Toxicology, Novartis Crop Protection AG, CH-40002 Basel, Switzerland
|
|
||||||
RCC - Cytotest Cell Research GmbH In den Leppsteinswiesen 19, D- 64380 Roβdorf, Germany
|
|
||||||
RCC - Cytotest Cell Research GmbH, In den Leppsteinswiesen 19, D-64380 Rofldorf, Germany
|
|
||||||
Ciba-Geigy Limited, Animal production, 4332 Stein, Switzerland
|
|
||||||
RCC Ltd., Zelgliweg 1, 4452 Itingen, Switzerland
|
|
||||||
RCC Ltd, Laboratory Animal Services, Wölferstrasse 4, 4414 Füllinsdorf, Switzerland
|
|
||||||
RCC Ltd, Laboratory Animal Services, 4414 Füllinsdorf, Switzerland
|
|
||||||
CIBA-GEIGY Limited, Basle, Switzerland
|
|
||||||
RCC Cytotest Cell Research GmbH (RCC-CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany
|
|
||||||
RCC Cytotest cell Research GmbH, In den Leppsteinwiesen 19, Rossdorf, Germany
|
|
||||||
Centre International de Toxicologie (CIT)
|
|
||||||
C iba-Geigy
|
|
||||||
Ciba-Geigy, Greensboro, North Carolina
|
|
||||||
Ciba-Geigy Corp., Greensboro, United States
|
|
||||||
Ciba-Geigy Vero Beach Research Center, Florida, USA
|
|
||||||
Ciba-Geigy Corporation, Environ. Health Center, Farmington, United States
|
|
||||||
Ciba-Geigy GmbH, Frankfurt a.Main, Germany
|
|
||||||
Ciba-Geigy Corp., Greensboro, United States
|
|
||||||
Wise D.R. & Wise R.E., Monkfield, Bourn, Cambridgeshire, England
|
|
||||||
Mr J. Coles, The Country Game Farms, Ashford, Kent, England
|
|
||||||
Maryland Exotic Birds of Pasadena, Maryland USA
|
|
||||||
J. Cole, The County Game Farms, Ashford, Kent, England
|
|
||||||
BC Potter, Rosedean, Woodhurst, Cambridgeshire, England
|
|
||||||
M & M Quail Farm, 4090 Campbell Road, Gillsville, GA 30543, U.S.A
|
|
||||||
Wildlife International A Division of EAG Inc. 8598 Commerce Drive Easton, MD 21601 USA
|
|
||||||
M & M Quail Farm, 4090 Campbell Road, Gillsville, GA 30543 U.S.A
|
|
||||||
China Agricultural University, No.2, Yuan Ming Yuan West Road, Haidian District, Beijing, 100193, P.R. China
|
|
||||||
Mt. Lassen Trout Farm, Rt. 5, Box 36, Red Bluff, California 98080
|
|
||||||
Bybrook Bass Hatchery, Connecticut
|
|
||||||
CIBA-GEIGY Ltd. CH-4002 Basle, Switzerland
|
|
||||||
Wildlife International Ltd. Cultures, 8651 Brooks Drive, Easton, Maryland 21601
|
|
||||||
Aquatic bioassay laboratory, Baton Rouge, Louisiana
|
|
||||||
P. Hohler/ CH-4314 Zeiningen, Switzerland
|
|
||||||
Houghton Springs Fish Farm, Dorset, UK
|
|
||||||
Cultures maintained at Wildlife International Ltd. Laboratories
|
|
||||||
Aquatic Bio Systems, Inc., Fort Collins, Colorado
|
|
||||||
Smithers Viscient, 790 Main Street, Wareham, Massachusetts 02571- 1037 USA
|
|
||||||
Smithers Viscient, 790 Main Street, Wareham, Massachusetts 02571 USA
|
|
||||||
Springborn laboratories
|
|
||||||
Syngenta Ltd. Jealott’s Hill International Research Centre Bracknell, Berkshire, RG42 6EY United Kingdom
|
|
||||||
Wildlife International Ltd., Maryland, USA
|
|
||||||
Wildlife International Ltd., Easton, USA
|
|
||||||
Smithers Viscient, 790 Main Street, Wareham, Massachusetts 02571 USA
|
|
||||||
Brixham Environmental Laboratory, AstraZeneca UK Limited, Brixham, UK
|
|
||||||
Springborn Laboratories Inc., Massachusetts 02571, USA
|
|
||||||
Smithers Viscient, 790 Main Street, Wareham, MA 02571-1037, USA
|
|
||||||
Wildlife International Ltd, Easton, MD, USA
|
|
||||||
Wildlife International A Division of EAG Inc. 8598 Commerce Drive Easton, MD 21601 USA
|
|
||||||
Smithers Viscient, 790 Main Street, Wareham, MA 02571-1037 USA
|
|
||||||
Ciba-Geigy Corporation, Post Office Box 18300, Greensboro, NC 27419, USA
|
|
||||||
Chesapeake Cultures, Hayes, Virginia
|
|
||||||
Smithers Viscient, 790 Main Street, Wareham, Massachusetts 02571-1037 USA
|
|
||||||
University of Sheffield, UK
|
|
||||||
Blue Frog Scientific Limited, Scott House, South St. Andrew Street, Edinburgh, EH2 2AZ, UK
|
|
||||||
MBL Aquaculture, Sarasota, Florida
|
|
||||||
Bayer AG (Pflanzenschutz Umweltforschung, Institut für Oekobiologie, D- 5090 Leverkusen)
|
|
||||||
Pflanzenphysiologisches Institut University, Nikolausberger Weg 180, D-3400 Göttingen, Germany
|
|
||||||
Envigo Research Limited Shardlow Business Park, Shardlow, Derbyshire, DE72 2GD, UK
|
|
||||||
Smithers Viscient, 790 Main Street, Wareham, Massachusetts 02571- 1037 USA
|
|
||||||
Wildlife International Ltd., Easton, Maryland, USA
|
|
||||||
David Francis, W.J. Mead Apiarist Supplies, Fowlmere, Cambridgshire
|
|
||||||
RCC AG, Itingen, Switzerland
|
|
||||||
Blades Biological Ltd, United Kingdom
|
|
||||||
ECT Oekotoxikologie GmbH, Germany
|
|
||||||
BioChem agrar, Labor für biologische und chemische, Analytik GmbH, Kupferstraße 6, 04827 Gerichshain, Germany
|
|
||||||
RCC Umweltchemie AG, P.O. Box, CH-4452 Itingen/BL, Switzerland
|
|
||||||
RCC Ltd, Environmental Chemistry & Pharmanalytics Division, CH-4452 Itingen, Switzerland
|
|
||||||
BioChem agrar Labor für biologische und chemische, Analytik GmbH, Kupferstraße 6 04827 Gerichshain, Germany
|
|
||||||
BioChem agrar, Labor für biologische und chemische, Analytik GmbH, Kupferstraße 6, 04827 Gerichshain, Germany
|
|
||||||
Pan-Agricultural Labs, Inc. 32380 Avenue 10 Madera, CA 93638 USA
|
|
||||||
Syngenta AG. Basel. Switzerland
|
|
||||||
Deutsche Sammlung von Mikroorganismen und Zellkulturen GmbH, Inhoffenstraße 7 B, 38124 Braunschweig, Germany
|
|
||||||
CIBA-GEIGY Ltd., Product Safety, Ecotoxicology, CH-4002 Basel, Switzerland
|
|
||||||
Springborn Smithers Laboratories 790 Main Street Wareham, MA 02571-1037
|
|
||||||
Syngenta crop protection AG, Research Biological science, Disease control, Stein
|
|
||||||
Syngenta Biosciences Pvt. Ltd., Ilhas Goa, India
|
|
||||||
Syngenta Technology & Projects, Huddersfield, United Kingdom
|
|
||||||
Stillmeadow. Inc.. 12852 Park One Drive. Sugar Land. TX 77478. USA
|
|
||||||
Texas Animal Specialties. Humble. TX
|
|
||||||
Nichols Rabbitry Inc. ; Lumberton. TX
|
|
||||||
Charles River Laboratories.. Wilmington. MA
|
|
||||||
Charles River Laboratories Edinburgh Ltd.. Elphinstone Research Centre. Tranent. East Lothian. EH33 2NE
|
|
||||||
Charles River Laboratories, Edinburgh, United Kingdom
|
|
||||||
tier3 solutions GmbH
|
|
||||||
tier3 solutions GmbH, Kolberger Str. 61-63, 51381 Leverkusen, Germany
|
|
||||||
Bayer CropScience AG
|
|
||||||
Syngenta, Jealott’s Hill International Research Centre, UK
|
|
||||||
Brixham Environmental Laboratory, Brixham, Devon, TQ5 8BA, UK
|
|
||||||
MITOX Consultants Science Park 408, 1098XH Amsterdam, The Netherlands
|
|
||||||
Eurofins Agrosciences Services EcoChem GmbH, Eutinger Str. 24, 75233 Niefern-Öschelbronn, Germany
|
|
||||||
Mambo-Tox Ltd., 2 Venture Road, Chilworth Science Park, Southampton SO16 7NP, United Kingdom
|
|
||||||
Biochem agrar GmbH, Gerichshain, Germany
|
|
||||||
“W. Neudorff GmbH KG”, An der Mühle 3, D- 31860 Emmertal
|
|
||||||
BioChem Agrar, Kupferstraβe 6, 04827 Gerichshain, Germany
|
|
||||||
Bayer CropScience AG, Monheim
|
|
||||||
BioChem agrar, Labor für biologische und chemische Analytik GmbH, Kupferstraße 6, 04827 Gerichshain, Germany
|
|
||||||
RIFCON GmbH, Hirschberg, Germany
|
|
||||||
Dr K Thomae GMBH, Chemisch-pharmazeutische Fabrik, D-7950 Biberach, Riss
|
|
||||||
Centre International de Toxicologie (C.I.T), Miserey, 27005 Evreux, France
|
|
||||||
Centre d’Elevage Lebeau, 78950 Gambais, France
|
|
||||||
CIBA-GEIGY Limited, Toxicology Services, Short-term Toxicology, 4332 Stein, Switzerland
|
|
||||||
Ciba-Geigy Ltd., CH-4002, Basel, Switzerland
|
|
||||||
Osage Catfish, Box 222, Missouri, USA
|
|
||||||
Mambo-Tox Ltd., 2 Venture Road, University Science Park, Southampton, SO16 7NP
|
|
||||||
Biologische Bundesanstalt (BBA), Berlin-Dahlem
|
|
||||||
“Bayer CropScience AG” Monheim
|
|
||||||
Zeneca Agrochemicals, Jealott’s Hill, United Kingdom
|
|
||||||
Eurofins Agroscience Services Chem GmbH, Hamburg, Germany
|
|
||||||
Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany
|
|
||||||
Smithers Viscient (ESG) Ltd, Harrogate, UK
|
|
||||||
Covance Laboratories Limited, Harrogate, UK
|
|
||||||
Central Toxicology Laboratory, Alderley Park, Macclesfield, Cheshire, UK
|
|
||||||
Biological Services Section, Alderley Park, Macclesfield, Cheshire, UK
|
|
||||||
Charles River
|
|
||||||
Harlan Cytotest Cell Research GmBH, Rossdorf, Germany
|
|
||||||
Syngenta Crop Protection, Inc., Greensboro, NC 27419, USA
|
|
||||||
Cambridge Environmental Assessments, Battlegate Road, Boxworth, Cambridgeshire
|
|
||||||
Central Toxicology Laboratory, Syngenta
|
|
||||||
Harlan Laboratories Ltd. Zelgliweg,445 Itingen/Switzerland
|
|
||||||
Tecsolve UK Ltd., Glendale Park, North Ascot, Berkshire
|
|
||||||
Harlan Laboratories Ltd, Zelgliweg 1, 4452 Itingen, Switzerland
|
|
||||||
Harlan Laboratories
|
|
||||||
Katz Biotech AG, Baruth, Germany
|
|
||||||
Mambo-Tox Ltd., 2 Venture Road, Chilworth Science Park, Southampton, SO16 7NP
|
|
||||||
BioChem agrar, 04827 Gerichshain, Germany
|
|
||||||
W. Neudorff, 31860 Emmerthal, Germany
|
|
||||||
W. Neudorff GmbH KG, An der Mühle 3, 31860 Emmerthal, Germany
|
|
||||||
BioChem agrar Labor für biologische und chemische Analytik GmbH, Kupferstraße 6 04827 Gerichshain, Germany
|
|
||||||
“Biologische Bundesanstalt (BBA)”, Berlin-Dahlem
|
|
||||||
BioChem agrar, Labor für biologische und chemische Analytik GmbH, Kupferstraβe 6, 04827 Gerichshain, Germany
|
|
||||||
Syngenta Crop Protection, Münchwilen, Switzerland
|
|
||||||
Ciba-Geigy Ltd., Basle, Switzerland
|
|
||||||
Ciba-Geigy Corporation , Greensboro, NC, USA
|
|
||||||
Ciba-Geigy Corp., Greensboro, NC, USA
|
|
||||||
Nauchi, Shiraimachi, Inba-Gun, Chiba, Japan
|
|
||||||
Animal Metabolism, Ciba-Geigy Ltd., Basle, Switzerland
|
|
||||||
Hazleton Wisconsin, Inc. Madison, Wisconsin USA
|
|
||||||
CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary
|
|
||||||
Hazleton Wisconsin, Inc. Madison, Wis- consin USA
|
|
||||||
Stillmeadow Inc., Sugar Land TX, USA
|
|
||||||
Ciba-Geigy Corporation, Summit, NJ, USA
|
|
||||||
Ciba-Geigy Corp., Environmental Health Center, Farmington, CT, USA
|
|
||||||
Ciba-Geigy Limited, Pharmaceutical Division, 4002 Basel / Switzerland
|
|
||||||
Ciba-Geigy Limited, Experimental Pathology, 4002 Basel/ Switzerland
|
|
||||||
Ciba-Geigy Limited, Experimental Pathol- ogy, 4002 Basel / Switzerland
|
|
||||||
Hazleton Wisconsin, Madison, WI, USA
|
|
||||||
Ciba-Geigy Toxicology Services, ShortTerm Toxicology, 4332 Stein/ Switzerland
|
|
||||||
Ciba-Geigy Limited, Experimental Pathology, 4002 Basel / Switzerland
|
|
||||||
Hazleton Biotechnologies Company, Kensington, Maryland, USA
|
|
||||||
Ciba-Geigy Limited, Genetic Toxicology, 4002 Basel / Switzerland
|
|
||||||
Hazleton Washington, Inc., Vienna, Virginia 22182, USA
|
|
||||||
Ciba-Geigy Limited, 4002 Basel / Switzerland
|
|
||||||
Hazleton Raltech, Inc., a Subsidiary of Hazleton Laboratories America, Inc., Madison, Wisconsin, USA
|
|
||||||
Experimental Pathology Laboratories, Research Triangle Park
|
|
||||||
Toxicology/Cell Biology, Novartis Crop Protection Inc., Basel, Switzerland
|
|
||||||
Toxigenics, Inc., Decatur, IL 62526, USA
|
|
||||||
Argus Research Laboratories, Inc., Perkasie, PA, USA
|
|
||||||
Argus Research Laboratories Inc., Horsham, Pennsylvania 19044, USA
|
|
||||||
Ciba-Geigy Ltd.,Stein, Switzerland
|
|
||||||
Ciba-Geigy Ltd., Genetic Toxicology, Basle, Switzerland
|
|
||||||
Novartis Crop Protection AG, Stein, CH
|
|
||||||
Safepharm Laboratories Ltd., Shadlow, United Kingdom
|
|
||||||
Sandoz Agro Ltd., Department of Toxicology CH-4132 Muttenz, Switzerland
|
|
||||||
Hazleton Washington, Inc. Vienna, Virginia, USA
|
|
||||||
CXR Biosciences. Laboratory
|
|
||||||
Ciba-Geigy Corp., Greensboro NC, USA
|
|
||||||
Ciba-Geigy Ltd., Basel, CH
|
|
||||||
Novartis Agro S.A., Aigues-Vives, F
|
|
||||||
Ciba-Geigy SA, Rueil-Malmaison, F
|
|
||||||
Novartis Agro S.A., Aigues-Vives, France
|
|
||||||
Osage Catfisheries Inc., Osage Beach, Missouri 65065, USA
|
|
||||||
Aquatic Biosystems Corvalis
|
|
||||||
EPA, Corvalis, OR
|
|
||||||
Ward’s Natural Science, ON
|
|
||||||
Chilliwack Hatchery
|
|
||||||
Sun Valley Trout Farm, Abbotsford BC
|
|
||||||
Chilliwack Hatchery, BC
|
|
||||||
P. Hohler, CH-4314 Zeiningen, Switzerland
|
|
||||||
University of Sheffield , UK
|
|
||||||
Wildlife International Ltd., Maryland, US
|
|
||||||
Ciba-Geigy Ltd., Basle, CH
|
|
||||||
Stillmeadow Inc., Sugar Land, United States
|
|
||||||
Hazleton Wisconsin, Inc
|
|
||||||
ToxigeneticsINc. Decatur, IL, US
|
|
||||||
EG&G Bionomics
|
|
||||||
Biospheric Inc., Rockville, USA
|
|
||||||
Bionomics Aquatic Tox. Lab., Wareham, USA
|
|
||||||
Springborn Laboratories Inc.
|
|
||||||
Syngenta – Jealott’s Hill International, Bracknell, Berkshire, United Kingdom
|
|
||||||
Wildlife International Ltd., Easton MD, USA
|
|
||||||
Springborn Smithers Laboratories, Wareham, USA
|
|
||||||
Springborn Life Sciences Inc
|
|
||||||
Eg&G Bionomics (Fl), Pensacola, USA
|
|
||||||
Harlan Laboratories Ltd., Itingen, Switzerland
|
|
||||||
Solvias AG, Basel, Switzerland
|
|
||||||
T.R. Wilbury Laboratories Inc., Massachusetts, USA
|
|
||||||
Ciba-Geigy Ltd., Basle, CH
|
|
||||||
Stillmeadow Inc., Sugar Land, TX, USA
|
|
||||||
Syngenta Crop Protection, Munchwilen, Switzerland
|
|
||||||
RCC - Biological Research Laboratories, Füllinsdorf, Switzerland
|
|
||||||
Covance Laboratories, Harrogate, United Kingdom
|
|
||||||
Battelle UK Ltd, Chelmsford, Essex, UK
|
|
||||||
Zeneca Agrochemicals, Jealott’s Hill Research Station, Bracknell, Berkshire, UK
|
|
||||||
Xenobiotic Laboratories, Inc., Plainsboro, USA
|
|
||||||
Fraunhofer Institute, Schmallenberg, Germany
|
|
||||||
PTRL West, Hercules CA, USA
|
|
||||||
Eurofins Agroscience Services GmbH, Niefern-Öschel., Germany
|
|
||||||
ICI Agrochemicals, Bracknell, Berkshire, United Kingdom
|
|
||||||
Chemex International plc, Cambridge, United Kingdom
|
|
||||||
BASF, Limburgerhof, Germany
|
|
||||||
RIFCON, Leichlingen, Germany
|
|
||||||
Eurofins - GAB, Niefern Öschelbronn, Germany
|
|
||||||
River Thames, Maidenhead, Berkshire, UK
|
|
||||||
Beach N o . 24, Hayling Island, Hampshire, UK
|
|
||||||
Jealott’s Hill International Research Centre, Bracknell, Berkshire, RG42 6EY, UK
|
|
||||||
Zeneca Agrochemical s, Jealott’s Hill, United Kingdom
|
|
||||||
Zeneca Agrochemicals, Jealott’s Hill, United Kingdom
|
|
||||||
Jealott’s Hill Research Station. Syngenta Crop protection AG
|
|
||||||
Bayer CropScience, Monheim, Germany
|
|
||||||
Huntingdon Life Sciences Ltd., Huntingdon, United Kingdom
|
|
||||||
Eurofins Agroscience Services EcoChem GmbH, N- Osch., Germany
|
|
||||||
Eurofins Agroscience Services EcoChem GmbH, NOsch., Germany
|
|
||||||
Tier3 solutions GmbH, Germany
|
|
||||||
Syngenta Crop Protection AG
|
|
||||||
Jealott’s Hill Research Centre. Syngenta Crop protection AG
|
|
||||||
RCC Umweltchemie GmbH & Co KG
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,233 +0,0 @@
|
|||||||
Vulpes vulpes
|
|
||||||
african clawed frog
|
|
||||||
agalychnis callidryas
|
|
||||||
amphibian
|
|
||||||
amphibians
|
|
||||||
American bullfrog tadpole
|
|
||||||
american toad
|
|
||||||
anad platyrhynchos
|
|
||||||
Anas platyrhynchos
|
|
||||||
anuran
|
|
||||||
anurans
|
|
||||||
apodemus syl vaticus
|
|
||||||
avian
|
|
||||||
bird
|
|
||||||
birds
|
|
||||||
bluegill
|
|
||||||
bluegill sunfish
|
|
||||||
bobwhite
|
|
||||||
bobwhite quail
|
|
||||||
bullfrog
|
|
||||||
Bufo americanus
|
|
||||||
brachydanio rerio
|
|
||||||
canary
|
|
||||||
carassius carassius
|
|
||||||
carp
|
|
||||||
catfish
|
|
||||||
cattle
|
|
||||||
cattles
|
|
||||||
channel catfish
|
|
||||||
Chinook
|
|
||||||
chicken
|
|
||||||
Colinus virginianus
|
|
||||||
colinus virginianus
|
|
||||||
Common carp
|
|
||||||
coturnix japonica
|
|
||||||
Coturnix japonica
|
|
||||||
cow
|
|
||||||
cows
|
|
||||||
Crucian carp
|
|
||||||
cyprinodon variegatus
|
|
||||||
cyprinus carpio
|
|
||||||
dog
|
|
||||||
dogs
|
|
||||||
duck
|
|
||||||
ducks
|
|
||||||
fathead minnow
|
|
||||||
fish
|
|
||||||
fishes
|
|
||||||
fox
|
|
||||||
frog
|
|
||||||
frogs
|
|
||||||
fudulus heteroclitus
|
|
||||||
fundulus heteroclitus
|
|
||||||
galaxias maculatus
|
|
||||||
galaxias truttaceus
|
|
||||||
gasterosteus aculeatus
|
|
||||||
goat
|
|
||||||
goats
|
|
||||||
guinea
|
|
||||||
guinea pig
|
|
||||||
guinea pigs
|
|
||||||
Guppy
|
|
||||||
hamster
|
|
||||||
hamsters
|
|
||||||
hen
|
|
||||||
hens
|
|
||||||
Hyla versicolor
|
|
||||||
ictalurus melas
|
|
||||||
ictalurus punctatus
|
|
||||||
japanese quail
|
|
||||||
japonica
|
|
||||||
lebistes reticulatus
|
|
||||||
leiostomus xanthurus
|
|
||||||
leisostomus xanthurus
|
|
||||||
lepomis macrochirus
|
|
||||||
livestock
|
|
||||||
livestocks
|
|
||||||
mallard duck
|
|
||||||
mammal
|
|
||||||
mammals
|
|
||||||
Mammalian
|
|
||||||
mice
|
|
||||||
midwestern anurans
|
|
||||||
monkey
|
|
||||||
mouse
|
|
||||||
northern bobwhite
|
|
||||||
o. mykiss
|
|
||||||
Oncorhynchus mykiss
|
|
||||||
Oncorhynchus
|
|
||||||
O. mykiss
|
|
||||||
oryzias melastigma
|
|
||||||
oryzias melastigma larvae
|
|
||||||
p. promelas
|
|
||||||
pagrus major
|
|
||||||
pig
|
|
||||||
pigeon
|
|
||||||
pigeons
|
|
||||||
pimephales promelas
|
|
||||||
Pseudacris triseriata
|
|
||||||
poecilia reticulata
|
|
||||||
poultry
|
|
||||||
quail
|
|
||||||
rabbit
|
|
||||||
rabbits
|
|
||||||
rainbow trout
|
|
||||||
Rana limnocharis
|
|
||||||
rana
|
|
||||||
limnocharis
|
|
||||||
rana pipiens
|
|
||||||
rat
|
|
||||||
rats
|
|
||||||
reptile
|
|
||||||
reptiles
|
|
||||||
ricefish
|
|
||||||
ruminant
|
|
||||||
ruminants
|
|
||||||
sheepshead minnow
|
|
||||||
sheepshead minnows
|
|
||||||
spea multiplicata
|
|
||||||
Salmo gairdneri
|
|
||||||
salmon
|
|
||||||
spotted march frog
|
|
||||||
tadpoles
|
|
||||||
treefrog
|
|
||||||
toad
|
|
||||||
terrestrial vertrebrates
|
|
||||||
Limnodynastes tasmaniensis
|
|
||||||
trout
|
|
||||||
Vulpes vulpes
|
|
||||||
wistar
|
|
||||||
xenopus laevis
|
|
||||||
xenpous leavis
|
|
||||||
zebra fish
|
|
||||||
zebrafish
|
|
||||||
Salmo gairdneri
|
|
||||||
minnow
|
|
||||||
minnows
|
|
||||||
Pimephales promela
|
|
||||||
Cyprinodon variegatus
|
|
||||||
limnodynastes
|
|
||||||
Rana catesbeiana
|
|
||||||
R. catesbeiana
|
|
||||||
coho salmon
|
|
||||||
Oncorhynchus tshawytscha
|
|
||||||
O. tshawytscha
|
|
||||||
tshawytscha
|
|
||||||
catesbeiana
|
|
||||||
kisutch
|
|
||||||
Pseudacris triseriata
|
|
||||||
Pseudacris
|
|
||||||
triseriata
|
|
||||||
Wood pigeon
|
|
||||||
Columba palumbus
|
|
||||||
palumbus
|
|
||||||
Columbidae
|
|
||||||
shrew
|
|
||||||
shrews
|
|
||||||
bank vole
|
|
||||||
common vole
|
|
||||||
vole
|
|
||||||
voles
|
|
||||||
lagomorph
|
|
||||||
Wood mouse
|
|
||||||
Apodemus sylvaticus
|
|
||||||
A. sylvaticus
|
|
||||||
Apodemus flavicollis
|
|
||||||
Apodemus
|
|
||||||
mus musculus
|
|
||||||
Microtus arvalis
|
|
||||||
Microtus agrestis
|
|
||||||
Microtus
|
|
||||||
Arvicola terrestris
|
|
||||||
Sorex araneus
|
|
||||||
Myodes glareolus
|
|
||||||
yellow-necked mouse
|
|
||||||
house mouse
|
|
||||||
Oryctolagus cuniculus
|
|
||||||
marten
|
|
||||||
martes
|
|
||||||
white-toothed shrew
|
|
||||||
greater white-toothed shrew
|
|
||||||
Lepus europaeus
|
|
||||||
brown hare
|
|
||||||
European brown hare
|
|
||||||
European rabbit
|
|
||||||
O. cuniculus
|
|
||||||
Crocidura russula
|
|
||||||
Chinese Hamster
|
|
||||||
Rat
|
|
||||||
Rats
|
|
||||||
Dog
|
|
||||||
Chinese hamsters
|
|
||||||
Chinese hamster
|
|
||||||
Mouse
|
|
||||||
Guinea pig
|
|
||||||
Wistar rats
|
|
||||||
Rabbit
|
|
||||||
mammalian
|
|
||||||
Japanese quail
|
|
||||||
Microtus subterraneus
|
|
||||||
Lepomis macrochirus
|
|
||||||
P. promelas
|
|
||||||
Cyprinus carpio
|
|
||||||
Fish
|
|
||||||
Ictalurus punctatus
|
|
||||||
Carassius carassius
|
|
||||||
Lepomis macrochirus
|
|
||||||
Poecilia reticulata
|
|
||||||
Lebistes reticulatus
|
|
||||||
Lepomis macrochirus
|
|
||||||
Leiostomus xanthurus
|
|
||||||
Pimephales promelas
|
|
||||||
Lepomis macrochirus
|
|
||||||
Albino rat
|
|
||||||
Hen
|
|
||||||
Goat
|
|
||||||
Livestock
|
|
||||||
Guinea Pigs
|
|
||||||
Hamster
|
|
||||||
wood mouse
|
|
||||||
Rabbits
|
|
||||||
Mice
|
|
||||||
Rainbow trout
|
|
||||||
Canary
|
|
||||||
Serinus canaria
|
|
||||||
Guinea Pig
|
|
||||||
Cow
|
|
||||||
Pigs
|
|
||||||
Poultry
|
|
||||||
Guinea-pigs
|
|
||||||
White rabbits
|
|
||||||
Birds
|
|
||||||
Wood mice
|
|
||||||
Loading…
x
Reference in New Issue
Block a user